sshguard-2.4.3/000755 001751 001751 00000000000 14447664720 014236 5ustar00kevinzkevinz000000 000000 sshguard-2.4.3/ylwrap000755 001751 001751 00000015314 14447664672 015514 0ustar00kevinzkevinz000000 000000 #! /bin/sh # ylwrap - wrapper for lex/yacc invocations. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2021 Free Software Foundation, Inc. # # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . get_dirname () { case $1 in */*|*\\*) printf '%s\n' "$1" | sed -e 's|\([\\/]\)[^\\/]*$|\1|';; # Otherwise, we want the empty string (not "."). esac } # guard FILE # ---------- # The CPP macro used to guard inclusion of FILE. guard () { printf '%s\n' "$1" \ | sed \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \ -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g' \ -e 's/__*/_/g' } # quote_for_sed [STRING] # ---------------------- # Return STRING (or stdin) quoted to be used as a sed pattern. quote_for_sed () { case $# in 0) cat;; 1) printf '%s\n' "$1";; esac \ | sed -e 's|[][\\.*]|\\&|g' } case "$1" in '') echo "$0: No files given. Try '$0 --help' for more information." 1>&2 exit 1 ;; --basedir) basedir=$2 shift 2 ;; -h|--h*) cat <<\EOF Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]... Wrapper for lex/yacc invocations, renaming files as desired. INPUT is the input file OUTPUT is one file PROG generates DESIRED is the file we actually want instead of OUTPUT PROGRAM is program to run ARGS are passed to PROG Any number of OUTPUT,DESIRED pairs may be used. Report bugs to . EOF exit $? ;; -v|--v*) echo "ylwrap $scriptversion" exit $? ;; esac # The input. input=$1 shift # We'll later need for a correct munging of "#line" directives. input_sub_rx=`get_dirname "$input" | quote_for_sed` case $input in [\\/]* | ?:[\\/]*) # Absolute path; do nothing. ;; *) # Relative path. Make it absolute. input=`pwd`/$input ;; esac input_rx=`get_dirname "$input" | quote_for_sed` # Since DOS filename conventions don't allow two dots, # the DOS version of Bison writes out y_tab.c instead of y.tab.c # and y_tab.h instead of y.tab.h. Test to see if this is the case. y_tab_nodot=false if test -f y_tab.c || test -f y_tab.h; then y_tab_nodot=true fi # The parser itself, the first file, is the destination of the .y.c # rule in the Makefile. parser=$1 # A sed program to s/FROM/TO/g for all the FROM/TO so that, for # instance, we rename #include "y.tab.h" into #include "parse.h" # during the conversion from y.tab.c to parse.c. sed_fix_filenames= # Also rename header guards, as Bison 2.7 for instance uses its header # guard in its implementation file. sed_fix_header_guards= while test $# -ne 0; do if test x"$1" = x"--"; then shift break fi from=$1 # Handle y_tab.c and y_tab.h output by DOS if $y_tab_nodot; then case $from in "y.tab.c") from=y_tab.c;; "y.tab.h") from=y_tab.h;; esac fi shift to=$1 shift sed_fix_filenames="${sed_fix_filenames}s|"`quote_for_sed "$from"`"|$to|g;" sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;" done # The program to run. prog=$1 shift # Make any relative path in $prog absolute. case $prog in [\\/]* | ?:[\\/]*) ;; *[\\/]*) prog=`pwd`/$prog ;; esac dirname=ylwrap$$ do_exit="cd '`pwd`' && rm -rf $dirname > /dev/null 2>&1;"' (exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 mkdir $dirname || exit 1 cd $dirname case $# in 0) "$prog" "$input" ;; *) "$prog" "$@" "$input" ;; esac ret=$? if test $ret -eq 0; then for from in * do to=`printf '%s\n' "$from" | sed "$sed_fix_filenames"` if test -f "$from"; then # If $2 is an absolute path name, then just use that, # otherwise prepend '../'. case $to in [\\/]* | ?:[\\/]*) target=$to;; *) target=../$to;; esac # Do not overwrite unchanged header files to avoid useless # recompilations. Always update the parser itself: it is the # destination of the .y.c rule in the Makefile. Divert the # output of all other files to a temporary file so we can # compare them to existing versions. if test $from != $parser; then realtarget=$target target=tmp-`printf '%s\n' "$target" | sed 's|.*[\\/]||g'` fi # Munge "#line" or "#" directives. Don't let the resulting # debug information point at an absolute srcdir. Use the real # output file name, not yy.lex.c for instance. Adjust the # include guards too. sed -e "/^#/!b" \ -e "s|$input_rx|$input_sub_rx|" \ -e "$sed_fix_filenames" \ -e "$sed_fix_header_guards" \ "$from" >"$target" || ret=$? # Check whether files must be updated. if test "$from" != "$parser"; then if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then echo "$to is unchanged" rm -f "$target" else echo "updating $to" mv -f "$target" "$realtarget" fi fi else # A missing file is only an error for the parser. This is a # blatant hack to let us support using "yacc -d". If -d is not # specified, don't fail when the header file is "missing". if test "$from" = "$parser"; then ret=1 fi fi done fi # Remove the directory. cd .. rm -rf $dirname exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.4.3/CHANGELOG.rst000644 001751 001751 00000027545 14447103051 016255 0ustar00kevinzkevinz000000 000000 ======= Changes ======= All notable changes to this project will be documented in this file. *Note on deprecation:* Deprecated features will be removed in the next non-bugfix release. If you would like to nominate a feature to be un-deprecated, contact the project mailing list. .. contents:: 2.4.3 ===== **Added** - Add signature for BIND - Add signature for Gitea - Add signature for Microsoft SQL Server for Linux - Add signature for OpenVPN Portshare - Add signature for user-defined HTTP attacks - Update signatures for Dovecot - Update signatures for Postfix **Fixed** - Fix memset off-by-one - Resolve DNS names in capability mode using casper 2.4.2 ===== **Added** - Recognize rejections from Postfix's postscreen daemon - The parser can now be changed using the *PARSER* and *POST_PARSER* options **Changed** - Remove some false positive attack signatures for SSH and Cyrus - Adjust log verbosity of some log messages - The *firewalld* backend now uses *firewall-cmd* instead of *iptables* to flush block lists 2.4.1 ===== **Added** - Recognize RFC 5424 syslog banners - Recognize busybox syslog -S banners - Recognize rsyslog banners - Recognize web services TYPO3, Contao, and Joomla - Update signatures for Dovecot - Update signatures for OpenSSH **Changed** - Whitelist entire 127.0.0.0/8 and ::1 block - Whitelist file allows inline comments **Fixed** - Fix FILES and LOGREADER configuration file options 2.4.0 ===== **Added** - Match "Failed authentication attempt" for Gitea **Changed** - Log human-readable service names instead of service code **Fixed** - Correctly terminate child processes when ``sshguard`` is killed **Removed** - No longer accept logs given via standard input 2.3.1 ===== **Fixed** - Fix OpenSSH "Did not receive identification string" - Fix syslog banner detection on macOS 2.3.0 ===== **Added** - Add signatures for Courier IMAP/POP and OpenVPN - Add signatures for TLS failures against Cyrus IMAP - Match more attacks against SSHD, Cockpit, and Dovecot - Update SSH invalid user signature for macOS **Changed** - Add to and remove from ipfw table quietly - Reduce "Connection closed... [preauth]" score to 2 - Switch ipsets to hash:net **Fixed** - Don't recreate existing ipsets - Match more log banners (Fix greedy SYSLOG_BANNER) 2.2.0 ===== **Added** - Add '--disable-maintainer-mode' in configure for package maintainers - BusyBox log banner detection - Match Exim "auth mechanism not supported" - Match Exim "auth when not advertised" - Match Postfix greylist early retry - OpenSMTPD monitoring support - Recognize IPv6 addresses with interface name **Changed** - Ignore CR in addition to LF - Only log attacks if not already blocked or whitelisted **Fixed** - Use correct signal names in driver shell script 2.1.0 ===== 2017-10-08 **Added** - Add **nftables** backend - Add monitoring support for new service: Cockpit, Linux server dashboard - Match "maximum authentication attempts" for SSH - Match Debian-style "Failed password for invalid user" for SSH - Add monitoring support for new service: Common webserver probes, in Common Log Format - Match 'Disconnecting invalid user' for SSH - Add monitoring support for new service: WordPress, in Common Log Format - Add monitoring support for new service: SSHGuard - Firewall backends now support blocking subnets. - Add new IPV6_SUBNET and IPV4_SUBNET configuration options. Defaults to traditional single-address blocking. - Add monitoring support for new service: OpenSMTPD **Changed** - Log whitelist matches with higher priority **Fixed** - Match port number in "invalid user" attack - FirewallD backend reloads firewall configuration less often. 2.0.0 ===== 2017-03-06 **Added** - Add **firewalld** backend - Add **ipset** backend - Annotate logs using **-a** flag to **sshg-parser** - Match "no matching cipher" for SSH - Preliminary support for Capsicum and pledge() - Resurrect **ipfilter** backend - Support reading from os_log on macOS 10.12 and systemd journal **Changed** - Add warning when reading from standard input - Build and install all backends by default - Improve log messages and tweak logging priorities - Runtime flags now configurable in the configuration file - SSHGuard *requires* a configuration file to start **Removed** - Remove process validation (**-f** option) **Fixed** - Fix **ipfw** backend on FreeBSD 11 - Fix initial block time - Update Dovecot pattern for macOS - Use standard score for Sendmail auth attack 1.7.1 ===== 2016-10-25 **Changed** - Allow multiple forward slashes in process name - Log released addresses only when debugging **Deprecated** - Process validation (``-f`` option) is deprecated **Fixed** - Adjust TIMESTAMP_ISO8601 for Mac OS X 10.12 - Fix build error in hosts backend - Fix empty functions in firewall scripts causing errors with Bash - Flush stdout after every line in sshg-parser 1.7.0 ===== 2016-08-08 **Added** - Add *sshg-logtail* - Add *sshg-parser* - Control firewall using *sshg-fw* - Match "no matching key exchange method" for SSH **Deprecated** - Hosts backend is deprecated - Logsuck (``-l`` option) is deprecated, use *sshg-logtail* instead - Process validation (``-f`` option) is deprecated **Removed** - Remove external hooks (``-e`` option) - Remove support for genfilt and ipfilter backends **Fixed** - Accept socklog messages without a timestamp - Fix excessive logging causing endless looping in logsuck - Fix undefined assignment of initial inode number 1.6.4 ===== 2016-04-28 - Match Postfix pre-authentication disconnects - Fix bashisms in iptables backend - Fix size argument in inet_ntop() call - Remove excessive logging when polling from files - Keep looking for unreadable files while polling - Update Dovecot signature for POP3 - Match "Connection reset" message for SSH - Resurrect PID file option by popular demand - Adjust default abuse threshold 1.6.3 ===== 2016-01-04 - Add sample systemd(8) unit file - Disable blacklisting by default - Fix `pfctl` command syntax with OpenBSD 5.8 - Implement logging as wrappers around syslog(2) - Improve log and error messages - Match sendmail authentication failures - Remove PID file option - Remove SIGTSTP and SIGCONT handler - Remove reverse mapping attack signature - Remove safe_fgets() and exit on interrupt - Terminate state entries for hosts blocked with pf - Update and shorten command-line usage - Use 'configure' to set feature-test macros 1.6.2 ===== 2015-10-12 - Make '-w' option backwards-compatible for iptables (James Harris) - Remove support for ip6fw and 'ipfw-range' option - Rewrite ipfw backend using command framework 1.6.1 ===== 2015-07-20 - Accept "Received disconnect" with optional prefix - Add support for socklog entries - Fix 'ipfw-rules-range' option in configure script - Fix build for 'ipfw' and 'hosts' backends - Fix integer comparisons of different types - Match attacks when syslog debugging is enabled 1.6.0 ===== 2015-05-02 - Add rules for Postfix SASL login attempts - Add support for ISO 8601 timestamps (David Caldwell) - Add support for external commands run on firewall events (-e) - Blacklist file is now human-readable (Armando Miraglia) - Check tcpwrapper file permissions regardless of local umask - Detect additional pre-auth disconnects - Fix ipfw crash when loading an empty blacklist (Jin Choi) - Fix log parsing on days beginning with zero - Fix log polling on filesystems with many files (Johann H. Hauschild) - Fix matching for Cyrus IMAP login via SASL - Fix syslog format detection on hosts with undefined hostname - Match SSH login failures with "via" suffix - Remove broken kqueue(2) support - Tweak option names and help strings - Update SSH "Bad protocol" signature - Use case-insensitive "invalid user" signature - Wait for xtables lock when using iptables command (James Harris) 1.5 === 2011-02-10 - logsucker: sshguard polls multiple log files at once - recognize syslog's "last message repeated N times" contextually and per-source - attackers now gauged with attack *dangerousness* instead of count (adjust your -a !) - improve IPv6 support - add detection for: Exim, vsftpd, Sendmail, Cucipop - improve Solaris support (thanks OpenCSW.org folks) - handle huge blacklists efficiently - improve logging granularity and descriptiveness - add -i command line option for saving PID file as an aid for startup scripts - update some attack signatures - many other improvements, see 1.5beta and 1.5rc changelogs for complete credits - fix a recognition problem for multilog files - fix log filtering on OSes with inverted priority declarations - fix file descriptor leak if "ps" command fails to run - fix whitelist module allowing some entries to be skipped (thanks Andrea Dal Farra) - fix segfault from invalid free() when all DNS lookups fail - fix assertion failure when logsucker is notified before the logging completes (thanks Colin Keith) 1.4 === 2009-09-23 - add touchiness: block repeated abusers for longer - add blacklisting: store frequent abusers for permanent blocking - add support for IPv6 in whitelisting (experimental) - sshguard ignores interrupted fgets() and reloads more seldom (thanks Keven Tipping) - debug mode now enabled with SSHGUARD_DEBUG environment variable (no "-d") - support non-POSIX libCs that require getopt.h (thanks Nobuhiro Iwamatsu) - import newer SimCList containing a number of fixes and improvements - firewall backends now block all traffic from attackers by default, not per-service - netfilter/iptables backend now verifies credentials at initialization - parser accepts "-" and "_" chars in process names - fix detection of some ProFTPd and pure-ftp messages - support log formats of new versions of ProFTPd - fix one dovecot pattern - correctly handle abuse threshold = 1 (thanks K. Tipping) - fix handling of IPv6 with IPFW under Mac OS X Leopard (thanks David Horn) - fix cmdline argument BoF exploitable by local users when sshguard is setuid - support blocking IPv6 addrs in backed "hosts.allow" - extend hosts.allow backend to support all service types - localhost addresses are now whitelisted a priori - extend IPv6 pattern for matching special addresses (eg, IPv4 embedded) - fix grammar to be insensitive to a log injection in sshd (thanks J. Oosterveen) 1.3 === 2008-10 - fix autoconf problem - automatically detect when ipfw supports IPv6 (thanks David Horn) - be sensitive to proftpd messages to auth facility, not daemon (thanks Andy Berkvam) - add sshd pattern for "Bad protocol" and "Did not receive identif string" 1.2 === 2008-09 - support for Cyrus IMAP - support for SSH "possible break-in attempt" messages - updated support for dovecot to include logging format of new versions - (thanks Michael Maynard) fix of IPF backend causing sshguard not to update /etc/ipf.rules (disallow IPv6) - fix detection of password when sshd doesn't log anything more than PAM 1.1 === 2008-07 - support suspension - support debug mode at runtime (-d) for helping users in problem solving - support for metalog logging format - fix parser bug when recognizing certain IPv6 addresses - fix segfault when the pipe to sshguard is closed unexpectedly - support for ipfilter as blocking backend (thanks Hellmuth Michaelis for feedback) - support for log messages authentication - support for AIX genfilt firewall (thanks Gabor Szittner) - fix "hosts" backend bug not discarding temporary files - add monitoring support for new services: - dovecot imap - UWimap imap and pop - FreeBSD's ftpd - ProFTPd - pure-ftpd 1.0 === 2007-05 - address whitelisting for protecting friend addressess - support for IPv6 - support for service multiplexing (behave differently for different services) - more powerful parsing (context-free): support multilog, autotranslate hostnames and easily extends to a lot of services - new blocking backend: "hosts" for /etc/hosts.deny - paths autodetected and adjustable from ./configure - script for trivially generating new custom backends 0.91 ==== 2007-03 - run away from scons and use autotools as building system 0.9 === 2007-02 - first public release sshguard-2.4.3/doc/000755 001751 001751 00000000000 14447664715 015007 5ustar00kevinzkevinz000000 000000 sshguard-2.4.3/configure000755 001751 001751 00000607230 14447664672 016163 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.71 for sshguard 2.4.3. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, # Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh as_nop=: if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="as_nop=: if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else \$as_nop case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ) then : else \$as_nop exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 blah=\$(echo \$(echo blah)) test x\"\$blah\" = xblah || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1" if (eval "$as_required") 2>/dev/null then : as_have_required=yes else $as_nop as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null then : else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$as_shell as_have_required=yes if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null then : break 2 fi fi done;; esac as_found=false done IFS=$as_save_IFS if $as_found then : else $as_nop if { test -f "$SHELL" || test -f "$SHELL.exe"; } && as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$SHELL as_have_required=yes fi fi if test "x$CONFIG_SHELL" != x then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno then : printf "%s\n" "$0: This script requires a shell more modern than all" printf "%s\n" "$0: the shells that I found on your system." if test ${ZSH_VERSION+y} ; then printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should" printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." else printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and $0: sshguard-users@lists.sourceforge.net about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_nop # --------- # Do nothing but, unlike ":", preserve the value of $?. as_fn_nop () { return $? } as_nop=as_fn_nop # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else $as_nop as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_nop # --------- # Do nothing but, unlike ":", preserve the value of $?. as_fn_nop () { return $? } as_nop=as_fn_nop # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='sshguard' PACKAGE_TARNAME='sshguard' PACKAGE_VERSION='2.4.3' PACKAGE_STRING='sshguard 2.4.3' PACKAGE_BUGREPORT='sshguard-users@lists.sourceforge.net' PACKAGE_URL='' ac_unique_file="src/sshguard.in" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_STDIO_H # include #endif #ifdef HAVE_STDLIB_H # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_header_c_list= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS BUILD_MAN_FALSE BUILD_MAN_TRUE RST2MAN_PROG LEXLIB LEX_OUTPUT_ROOT LEX ac_ct_AR AR YFLAGS YACC RANLIB am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V CSCOPE ETAGS CTAGS am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking enable_maintainer_mode enable_silent_rules enable_dependency_tracking ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS YACC YFLAGS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures sshguard 2.4.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/sshguard] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of sshguard 2.4.3:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-maintainer-mode disable make rules and dependencies not useful (and sometimes confusing) to the casual installer --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory YACC The `Yet Another Compiler Compiler' implementation to use. Defaults to the first program found out of: `bison -y', `byacc', `yacc'. YFLAGS The list of arguments that will be passed by default to $YACC. This script will default YFLAGS to the empty string to avoid a default value of `-d' given by some make applications. Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for configure.gnu first; this name is used for a wrapper for # Metaconfig's "Configure" on case-insensitive file systems. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF sshguard configure 2.4.3 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO" then : eval "$3=yes" else $as_nop eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext } then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link ac_configure_args_raw= for ac_arg do case $ac_arg in *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append ac_configure_args_raw " '$ac_arg'" done case $ac_configure_args_raw in *$as_nl*) ac_safe_unquote= ;; *) ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab. ac_unsafe_a="$ac_unsafe_z#~" ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g" ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;; esac cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by sshguard $as_me 2.4.3, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac printf "%s\n" "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Sanitize IFS. IFS=" "" $as_nl" # Save into config.log some information that might help in debugging. { echo printf "%s\n" "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo printf "%s\n" "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then printf "%s\n" "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then printf "%s\n" "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && printf "%s\n" "$as_me: caught signal $ac_signal" printf "%s\n" "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h printf "%s\n" "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then ac_site_files="$CONFIG_SITE" elif test "x$prefix" != xNONE; then ac_site_files="$prefix/share/config.site $prefix/etc/config.site" else ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi for ac_site_file in $ac_site_files do case $ac_site_file in #( */*) : ;; #( *) : ac_site_file=./$ac_site_file ;; esac if test -f "$ac_site_file" && test -r "$ac_site_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 printf "%s\n" "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 printf "%s\n" "$as_me: creating cache $cache_file" >&6;} >$cache_file fi as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H" # Test code for whether the C compiler supports C89 (global declarations) ac_c_conftest_c89_globals=' /* Does the compiler advertise C89 conformance? Do not test the value of __STDC__, because some compilers set it to 0 while being otherwise adequately conformant. */ #if !defined __STDC__ # error "Compiler does not advertise C89 conformance" #endif #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7 src/conf.sh. */ struct buf { int x; }; struct buf * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not \xHH hex character constants. These do not provoke an error unfortunately, instead are silently treated as an "x". The following induces an error, until -std is added to get proper ANSI mode. Curiously \x00 != x always comes out true, for an array size at least. It is necessary to write \x00 == 0 to get something that is true only with -std. */ int osf4_cc_array ['\''\x00'\'' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) '\''x'\'' int xlc6_cc_array[FOO(a) == '\''x'\'' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, int *(*)(struct buf *, struct stat *, int), int, int);' # Test code for whether the C compiler supports C89 (body of main). ac_c_conftest_c89_main=' ok |= (argc == 0 || f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]); ' # Test code for whether the C compiler supports C99 (global declarations) ac_c_conftest_c99_globals=' // Does the compiler advertise C99 conformance? #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L # error "Compiler does not advertise C99 conformance" #endif #include extern int puts (const char *); extern int printf (const char *, ...); extern int dprintf (int, const char *, ...); extern void *malloc (size_t); // Check varargs macros. These examples are taken from C99 6.10.3.5. // dprintf is used instead of fprintf to avoid needing to declare // FILE and stderr. #define debug(...) dprintf (2, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK #error "your preprocessor is broken" #endif #if BIG_OK #else #error "your preprocessor is broken" #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\''\0'\''; ++i) continue; return 0; } // Check varargs and va_copy. static bool test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str = ""; int number = 0; float fnumber = 0; while (*format) { switch (*format++) { case '\''s'\'': // string str = va_arg (args_copy, const char *); break; case '\''d'\'': // int number = va_arg (args_copy, int); break; case '\''f'\'': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); return *str && number && fnumber; } ' # Test code for whether the C compiler supports C99 (body of main). ac_c_conftest_c99_main=' // Check bool. _Bool success = false; success |= (argc != 0); // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[0] = argv[0][0]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\'' || dynamic_array[ni.number - 1] != 543); ' # Test code for whether the C compiler supports C11 (global declarations) ac_c_conftest_c11_globals=' // Does the compiler advertise C11 conformance? #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L # error "Compiler does not advertise C11 conformance" #endif // Check _Alignas. char _Alignas (double) aligned_as_double; char _Alignas (0) no_special_alignment; extern char aligned_as_int; char _Alignas (0) _Alignas (int) aligned_as_int; // Check _Alignof. enum { int_alignment = _Alignof (int), int_array_alignment = _Alignof (int[100]), char_alignment = _Alignof (char) }; _Static_assert (0 < -_Alignof (int), "_Alignof is signed"); // Check _Noreturn. int _Noreturn does_not_return (void) { for (;;) continue; } // Check _Static_assert. struct test_static_assert { int x; _Static_assert (sizeof (int) <= sizeof (long int), "_Static_assert does not work in struct"); long int y; }; // Check UTF-8 literals. #define u8 syntax error! char const utf8_literal[] = u8"happens to be ASCII" "another string"; // Check duplicate typedefs. typedef long *long_ptr; typedef long int *long_ptr; typedef long_ptr long_ptr; // Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1. struct anonymous { union { struct { int i; int j; }; struct { int k; long int l; } w; }; int m; } v1; ' # Test code for whether the C compiler supports C11 (body of main). ac_c_conftest_c11_main=' _Static_assert ((offsetof (struct anonymous, i) == offsetof (struct anonymous, w.k)), "Anonymous union alignment botch"); v1.i = 2; v1.w.k = 5; ok |= v1.i != 5; ' # Test code for whether the C compiler supports C11 (complete). ac_c_conftest_c11_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} ${ac_c_conftest_c11_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} ${ac_c_conftest_c11_main} return ok; } " # Test code for whether the C compiler supports C99 (complete). ac_c_conftest_c99_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} return ok; } " # Test code for whether the C compiler supports C89 (complete). ac_c_conftest_c89_program="${ac_c_conftest_c89_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} return ok; } " as_fn_append ac_header_c_list " stdlib.h stdlib_h HAVE_STDLIB_H" as_fn_append ac_header_c_list " string.h string_h HAVE_STRING_H" as_fn_append ac_header_c_list " inttypes.h inttypes_h HAVE_INTTYPES_H" as_fn_append ac_header_c_list " stdint.h stdint_h HAVE_STDINT_H" as_fn_append ac_header_c_list " strings.h strings_h HAVE_STRINGS_H" as_fn_append ac_header_c_list " sys/stat.h sys_stat_h HAVE_SYS_STAT_H" as_fn_append ac_header_c_list " sys/types.h sys_types_h HAVE_SYS_TYPES_H" as_fn_append ac_header_c_list " unistd.h unistd_h HAVE_UNISTD_H" as_fn_append ac_header_c_list " wchar.h wchar_h HAVE_WCHAR_H" as_fn_append ac_header_c_list " minix/config.h minix_config_h HAVE_MINIX_CONFIG_H" # Auxiliary files required by this configure script. ac_aux_files="ar-lib compile tap-driver.sh missing install-sh" # Locations in which to look for auxiliary files. ac_aux_dir_candidates="${srcdir}${PATH_SEPARATOR}${srcdir}/..${PATH_SEPARATOR}${srcdir}/../.." # Search for a directory containing all of the required auxiliary files, # $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates. # If we don't find one directory that contains all the files we need, # we report the set of missing files from the *first* directory in # $ac_aux_dir_candidates and give up. ac_missing_aux_files="" ac_first_candidate=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in $ac_aux_dir_candidates do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5 ac_aux_dir_found=yes ac_install_sh= for ac_aux in $ac_aux_files do # As a special case, if "install-sh" is required, that requirement # can be satisfied by any of "install-sh", "install.sh", or "shtool", # and $ac_install_sh is set appropriately for whichever one is found. if test x"$ac_aux" = x"install-sh" then if test -f "${as_dir}install-sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5 ac_install_sh="${as_dir}install-sh -c" elif test -f "${as_dir}install.sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5 ac_install_sh="${as_dir}install.sh -c" elif test -f "${as_dir}shtool"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5 ac_install_sh="${as_dir}shtool install -c" else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} install-sh" else break fi fi else if test -f "${as_dir}${ac_aux}"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5 else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}" else break fi fi fi done if test "$ac_aux_dir_found" = yes; then ac_aux_dir="$as_dir" break fi ac_first_candidate=false as_found=false done IFS=$as_save_IFS if $as_found then : else $as_nop as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. if test -f "${ac_aux_dir}config.guess"; then ac_config_guess="$SHELL ${ac_aux_dir}config.guess" fi if test -f "${ac_aux_dir}config.sub"; then ac_config_sub="$SHELL ${ac_aux_dir}config.sub" fi if test -f "$ac_aux_dir/configure"; then ac_configure="$SHELL ${ac_aux_dir}configure" fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 printf "%s\n" "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 printf "%s\n" "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 printf "%s\n" "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 printf "%s\n" "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 printf "%s\n" "$as_me: former value: \`$ac_old_val'" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 printf "%s\n" "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`${MAKE-make} distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 printf %s "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test ${enable_maintainer_mode+y} then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else $as_nop USE_MAINTAINER_MODE=yes fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 printf "%s\n" "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE ac_config_headers="$ac_config_headers src/common/config.h" am__api_version='1.16' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 printf %s "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if test ${ac_cv_path_install+y} then : printf %s "(cached) " >&6 else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac # Account for fact that we put trailing slashes in our PATH walk. case $as_dir in #(( ./ | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir/" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test ${ac_cv_path_install+y}; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 printf "%s\n" "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 printf %s "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`printf "%s\n" "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 printf "%s\n" "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_STRIP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 printf "%s\n" "$STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_STRIP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 printf "%s\n" "$ac_ct_STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5 printf %s "checking for a race-free mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if test ${ac_cv_path_mkdir+y} then : printf %s "(cached) " >&6 else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext" || continue case `"$as_dir$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir ('*'coreutils) '* | \ 'BusyBox '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test ${ac_cv_path_mkdir+y}; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 printf "%s\n" "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AWK+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 printf "%s\n" "$AWK" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AWK" && break done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval test \${ac_cv_prog_make_${ac_make}_set+y} then : printf %s "(cached) " >&6 else $as_nop cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } SET_MAKE= else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test ${enable_silent_rules+y} then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 printf %s "checking whether $am_make supports nested variables... " >&6; } if test ${am_cv_make_support_nested_variables+y} then : printf %s "(cached) " >&6 else $as_nop if printf "%s\n" 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='sshguard' VERSION='2.4.3' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h printf "%s\n" "#define VERSION \"$VERSION\"" >>confdefs.h # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # Variables for tags utilities; see am/tags.am if test -z "$CTAGS"; then CTAGS=ctags fi if test -z "$ETAGS"; then ETAGS=etags fi if test -z "$CSCOPE"; then CSCOPE=cscope fi # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi # Check whether --enable-silent-rules was given. if test ${enable_silent_rules+y} then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 printf %s "checking whether $am_make supports nested variables... " >&6; } if test ${am_cv_make_support_nested_variables+y} then : printf %s "(cached) " >&6 else $as_nop if printf "%s\n" 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' # Enable POSIX extensions on hosts that normally disable them. DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 printf %s "checking whether ${MAKE-make} supports the include directive... " >&6; } cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } case $?:`cat confinc.out 2>/dev/null` in #( '0:this is the am__doit target') : case $s in #( BSD) : am__include='.include' am__quote='"' ;; #( *) : am__include='include' am__quote='' ;; esac ;; #( *) : ;; esac if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 printf "%s\n" "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test ${enable_dependency_tracking+y} then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if test "$as_dir$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. set dummy ${ac_tool_prefix}clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "clang", so it can be a program name with args. set dummy clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi fi test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 printf %s "checking whether the C compiler works... " >&6; } ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test ${ac_cv_exeext+y} && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else $as_nop ac_file='' fi if test -z "$ac_file" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 printf %s "checking for C compiler default output file name... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 printf "%s\n" "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 printf %s "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else $as_nop { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 printf "%s\n" "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 printf %s "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 printf "%s\n" "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 printf %s "checking for suffix of object files... " >&6; } if test ${ac_cv_objext+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 printf "%s\n" "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 printf %s "checking whether the compiler supports GNU C... " >&6; } if test ${ac_cv_c_compiler_gnu+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_compiler_gnu=yes else $as_nop ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } ac_compiler_gnu=$ac_cv_c_compiler_gnu if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 printf %s "checking whether $CC accepts -g... " >&6; } if test ${ac_cv_prog_cc_g+y} then : printf %s "(cached) " >&6 else $as_nop ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes else $as_nop CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else $as_nop ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 printf "%s\n" "$ac_cv_prog_cc_g" >&6; } if test $ac_test_CFLAGS; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi ac_prog_cc_stdc=no if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5 printf %s "checking for $CC option to enable C11 features... " >&6; } if test ${ac_cv_prog_cc_c11+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c11=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c11_program _ACEOF for ac_arg in '' -std=gnu11 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c11=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c11" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c11" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c11" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; } CC="$CC $ac_cv_prog_cc_c11" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11 ac_prog_cc_stdc=c11 fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5 printf %s "checking for $CC option to enable C99 features... " >&6; } if test ${ac_cv_prog_cc_c99+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c99_program _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c99" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c99" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; } CC="$CC $ac_cv_prog_cc_c99" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 ac_prog_cc_stdc=c99 fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5 printf %s "checking for $CC option to enable C89 features... " >&6; } if test ${ac_cv_prog_cc_c89+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c89_program _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c89" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c89" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; } CC="$CC $ac_cv_prog_cc_c89" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 ac_prog_cc_stdc=c89 fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 printf %s "checking whether $CC understands -c and -o together... " >&6; } if test ${am_cv_prog_cc_c_o+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 printf "%s\n" "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 printf %s "checking dependency style of $depcc... " >&6; } if test ${am_cv_CC_dependencies_compiler_type+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 printf "%s\n" "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_header= ac_cache= for ac_item in $ac_header_c_list do if test $ac_cache; then ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default" if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then printf "%s\n" "#define $ac_item 1" >> confdefs.h fi ac_header= ac_cache= elif test $ac_header; then ac_cache=$ac_item else ac_header=$ac_item fi done if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes then : printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 printf %s "checking whether it is safe to define __EXTENSIONS__... " >&6; } if test ${ac_cv_safe_to_define___extensions__+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_safe_to_define___extensions__=yes else $as_nop ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 printf "%s\n" "$ac_cv_safe_to_define___extensions__" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined" >&5 printf %s "checking whether _XOPEN_SOURCE should be defined... " >&6; } if test ${ac_cv_should_define__xopen_source+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_should_define__xopen_source=no if test $ac_cv_header_wchar_h = yes then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include mbstate_t x; int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _XOPEN_SOURCE 500 #include mbstate_t x; int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_should_define__xopen_source=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source" >&5 printf "%s\n" "$ac_cv_should_define__xopen_source" >&6; } printf "%s\n" "#define _ALL_SOURCE 1" >>confdefs.h printf "%s\n" "#define _DARWIN_C_SOURCE 1" >>confdefs.h printf "%s\n" "#define _GNU_SOURCE 1" >>confdefs.h printf "%s\n" "#define _HPUX_ALT_XOPEN_SOCKET_API 1" >>confdefs.h printf "%s\n" "#define _NETBSD_SOURCE 1" >>confdefs.h printf "%s\n" "#define _OPENBSD_SOURCE 1" >>confdefs.h printf "%s\n" "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_BFP_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_DFP_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_LIB_EXT2__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_MATH_SPEC_FUNCS__ 1" >>confdefs.h printf "%s\n" "#define _TANDEM_SOURCE 1" >>confdefs.h if test $ac_cv_header_minix_config_h = yes then : MINIX=yes printf "%s\n" "#define _MINIX 1" >>confdefs.h printf "%s\n" "#define _POSIX_SOURCE 1" >>confdefs.h printf "%s\n" "#define _POSIX_1_SOURCE 2" >>confdefs.h else $as_nop MINIX= fi if test $ac_cv_safe_to_define___extensions__ = yes then : printf "%s\n" "#define __EXTENSIONS__ 1" >>confdefs.h fi if test $ac_cv_should_define__xopen_source = yes then : printf "%s\n" "#define _XOPEN_SOURCE 500" >>confdefs.h fi printf "%s\n" "## -------------- ## ## Program Checks ## ## -------------- ##" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_RANLIB+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 printf "%s\n" "$RANLIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_RANLIB+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 printf "%s\n" "$ac_ct_RANLIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi for ac_prog in 'bison -y' byacc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_YACC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$YACC"; then ac_cv_prog_YACC="$YACC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_YACC="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 printf "%s\n" "$YACC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$YACC" && break done test -n "$YACC" || YACC="yacc" if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AR+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 printf "%s\n" "$AR" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_AR+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 printf "%s\n" "$ac_ct_AR" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 printf %s "checking the archiver ($AR) interface... " >&6; } if test ${am_cv_ar_interface+y} then : printf %s "(cached) " >&6 else $as_nop ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO" then : am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 printf "%s\n" "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac for ac_prog in flex lex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_LEX+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$LEX"; then ac_cv_prog_LEX="$LEX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_LEX="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LEX=$ac_cv_prog_LEX if test -n "$LEX"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LEX" >&5 printf "%s\n" "$LEX" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$LEX" && break done test -n "$LEX" || LEX=":" if test "x$LEX" != "x:"; then cat >conftest.l <<_ACEOF %{ #ifdef __cplusplus extern "C" #endif int yywrap(void); %} %% a { ECHO; } b { REJECT; } c { yymore (); } d { yyless (1); } e { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ #ifdef __cplusplus yyless ((yyinput () != 0)); #else yyless ((input () != 0)); #endif } f { unput (yytext[0]); } . { BEGIN INITIAL; } %% #ifdef YYTEXT_POINTER extern char *yytext; #endif int yywrap (void) { return 1; } int main (void) { return ! yylex (); } _ACEOF { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for lex output file root" >&5 printf %s "checking for lex output file root... " >&6; } if test ${ac_cv_prog_lex_root+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_lex_root=unknown { { ac_try="$LEX conftest.l" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$LEX conftest.l") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && if test -f lex.yy.c; then ac_cv_prog_lex_root=lex.yy elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_root" >&5 printf "%s\n" "$ac_cv_prog_lex_root" >&6; } if test "$ac_cv_prog_lex_root" = unknown then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cannot find output from $LEX; giving up on $LEX" >&5 printf "%s\n" "$as_me: WARNING: cannot find output from $LEX; giving up on $LEX" >&2;} LEX=: LEXLIB= fi LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root if test ${LEXLIB+y} then : else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for lex library" >&5 printf %s "checking for lex library... " >&6; } if test ${ac_cv_lib_lex+y} then : printf %s "(cached) " >&6 else $as_nop ac_save_LIBS="$LIBS" ac_found=false for ac_cv_lib_lex in 'none needed' -lfl -ll 'not found'; do case $ac_cv_lib_lex in #( 'none needed') : ;; #( 'not found') : break ;; #( *) : LIBS="$ac_cv_lib_lex $ac_save_LIBS" ;; #( *) : ;; esac cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_found=: fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if $ac_found; then break fi done LIBS="$ac_save_LIBS" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lex" >&5 printf "%s\n" "$ac_cv_lib_lex" >&6; } if test "$ac_cv_lib_lex" = 'not found' then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: required lex library not found; giving up on $LEX" >&5 printf "%s\n" "$as_me: WARNING: required lex library not found; giving up on $LEX" >&2;} LEX=: LEXLIB= elif test "$ac_cv_lib_lex" = 'none needed' then : LEXLIB='' else $as_nop LEXLIB=$ac_cv_lib_lex fi ac_save_LIBS="$LIBS" LIBS= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing yywrap" >&5 printf %s "checking for library containing yywrap... " >&6; } if test ${ac_cv_search_yywrap+y} then : printf %s "(cached) " >&6 else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char yywrap (); int main (void) { return yywrap (); ; return 0; } _ACEOF for ac_lib in '' fl l do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_yywrap=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_yywrap+y} then : break fi done if test ${ac_cv_search_yywrap+y} then : else $as_nop ac_cv_search_yywrap=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_yywrap" >&5 printf "%s\n" "$ac_cv_search_yywrap" >&6; } ac_res=$ac_cv_search_yywrap if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" LEXLIB="$LIBS" fi LIBS="$ac_save_LIBS" fi if test "$LEX" != : then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether yytext is a pointer" >&5 printf %s "checking whether yytext is a pointer... " >&6; } if test ${ac_cv_prog_lex_yytext_pointer+y} then : printf %s "(cached) " >&6 else $as_nop # POSIX says lex can declare yytext either as a pointer or an array; the # default is implementation-dependent. Figure out which it is, since # not all implementations provide the %pointer and %array declarations. ac_cv_prog_lex_yytext_pointer=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define YYTEXT_POINTER 1 `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_lex_yytext_pointer=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_yytext_pointer" >&5 printf "%s\n" "$ac_cv_prog_lex_yytext_pointer" >&6; } if test $ac_cv_prog_lex_yytext_pointer = yes; then printf "%s\n" "#define YYTEXT_POINTER 1" >>confdefs.h fi fi rm -f conftest.l $LEX_OUTPUT_ROOT.c fi if test "$LEX" = :; then LEX=${am_missing_run}flex fi printf "%s\n" "## ----------------------------------- ## ## Headers, Types, and Compiler Checks ## ## ----------------------------------- ##" ac_fn_c_check_header_compile "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default" if test "x$ac_cv_header_getopt_h" = xyes then : printf "%s\n" "#define HAVE_GETOPT_H 1" >>confdefs.h fi for ac_header in capsicum_helpers.h libcasper.h do : as_ac_Header=`printf "%s\n" "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes" then : cat >>confdefs.h <<_ACEOF #define `printf "%s\n" "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF capsicum_found=candidate fi done if test "$capsicum_found" == "candidate" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing cap_init" >&5 printf %s "checking for library containing cap_init... " >&6; } if test ${ac_cv_search_cap_init+y} then : printf %s "(cached) " >&6 else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char cap_init (); int main (void) { return cap_init (); ; return 0; } _ACEOF for ac_lib in '' casper do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_cap_init=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_cap_init+y} then : break fi done if test ${ac_cv_search_cap_init+y} then : else $as_nop ac_cv_search_cap_init=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_cap_init" >&5 printf "%s\n" "$ac_cv_search_cap_init" >&6; } ac_res=$ac_cv_search_cap_init if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" capsicum_found=yes fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing cap_getaddrinfo" >&5 printf %s "checking for library containing cap_getaddrinfo... " >&6; } if test ${ac_cv_search_cap_getaddrinfo+y} then : printf %s "(cached) " >&6 else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char cap_getaddrinfo (); int main (void) { return cap_getaddrinfo (); ; return 0; } _ACEOF for ac_lib in '' cap_net do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_cap_getaddrinfo=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_cap_getaddrinfo+y} then : break fi done if test ${ac_cv_search_cap_getaddrinfo+y} then : else $as_nop ac_cv_search_cap_getaddrinfo=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_cap_getaddrinfo" >&5 printf "%s\n" "$ac_cv_search_cap_getaddrinfo" >&6; } ac_res=$ac_cv_search_cap_getaddrinfo if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" capsicum_found=yes fi fi if test "$capsicum_found" == "yes" then : printf "%s\n" "#define CAPSICUM 1" >>confdefs.h fi for ac_prog in rst2man rst2man.py do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_RST2MAN_PROG+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$RST2MAN_PROG"; then ac_cv_prog_RST2MAN_PROG="$RST2MAN_PROG" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RST2MAN_PROG="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RST2MAN_PROG=$ac_cv_prog_RST2MAN_PROG if test -n "$RST2MAN_PROG"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RST2MAN_PROG" >&5 printf "%s\n" "$RST2MAN_PROG" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$RST2MAN_PROG" && break done test -n "$RST2MAN_PROG" || RST2MAN_PROG="no" if test "x$RST2MAN_PROG" != xno; then BUILD_MAN_TRUE= BUILD_MAN_FALSE='#' else BUILD_MAN_TRUE='#' BUILD_MAN_FALSE= fi if test "$RST2MAN_PROG" == "no" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: rst2man not found; using pre-built man pages" >&5 printf "%s\n" "$as_me: WARNING: rst2man not found; using pre-built man pages" >&2;} fi printf "%s\n" "## ----------------- ## ## Library Functions ## ## ----------------- ##" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5 printf %s "checking for library containing gethostbyname... " >&6; } if test ${ac_cv_search_gethostbyname+y} then : printf %s "(cached) " >&6 else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char gethostbyname (); int main (void) { return gethostbyname (); ; return 0; } _ACEOF for ac_lib in '' nsl do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_gethostbyname=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_gethostbyname+y} then : break fi done if test ${ac_cv_search_gethostbyname+y} then : else $as_nop ac_cv_search_gethostbyname=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname" >&5 printf "%s\n" "$ac_cv_search_gethostbyname" >&6; } ac_res=$ac_cv_search_gethostbyname if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_create" >&5 printf %s "checking for library containing pthread_create... " >&6; } if test ${ac_cv_search_pthread_create+y} then : printf %s "(cached) " >&6 else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char pthread_create (); int main (void) { return pthread_create (); ; return 0; } _ACEOF for ac_lib in '' pthread do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_pthread_create=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_pthread_create+y} then : break fi done if test ${ac_cv_search_pthread_create+y} then : else $as_nop ac_cv_search_pthread_create=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_create" >&5 printf "%s\n" "$ac_cv_search_pthread_create" >&6; } ac_res=$ac_cv_search_pthread_create if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5 printf %s "checking for library containing socket... " >&6; } if test ${ac_cv_search_socket+y} then : printf %s "(cached) " >&6 else $as_nop ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char socket (); int main (void) { return socket (); ; return 0; } _ACEOF for ac_lib in '' socket do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_socket=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_socket+y} then : break fi done if test ${ac_cv_search_socket+y} then : else $as_nop ac_cv_search_socket=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_socket" >&5 printf "%s\n" "$ac_cv_search_socket" >&6; } ac_res=$ac_cv_search_socket if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi ac_config_files="$ac_config_files Makefile src/Makefile src/blocker/Makefile src/fw/Makefile src/parser/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 printf "%s\n" "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 printf %s "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5 printf "%s\n" "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BUILD_MAN_TRUE}" && test -z "${BUILD_MAN_FALSE}"; then as_fn_error $? "conditional \"BUILD_MAN\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh as_nop=: if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else $as_nop as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by sshguard $as_me 2.4.3, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"` cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ sshguard config.status 2.4.3 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) printf "%s\n" "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) printf "%s\n" "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) printf "%s\n" "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX printf "%s\n" "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "src/common/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/common/config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "src/blocker/Makefile") CONFIG_FILES="$CONFIG_FILES src/blocker/Makefile" ;; "src/fw/Makefile") CONFIG_FILES="$CONFIG_FILES src/fw/Makefile" ;; "src/parser/Makefile") CONFIG_FILES="$CONFIG_FILES src/parser/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers test ${CONFIG_COMMANDS+y} || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 printf "%s\n" "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`printf "%s\n" "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 printf "%s\n" "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 printf "%s\n" "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. case $CONFIG_FILES in #( *\'*) : eval set x "$CONFIG_FILES" ;; #( *) : set x $CONFIG_FILES ;; #( *) : ;; esac shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`printf "%s\n" "$am_mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`$as_dirname -- "$am_mf" || $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$am_mf" : 'X\(//\)[^/]' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` am_filepart=`$as_basename -- "$am_mf" || $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$am_mf" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` { echo "$as_me:$LINENO: cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles" >&5 (cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } || am_rc=$? done if test $am_rc -ne 0; then { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "Something went wrong bootstrapping makefile fragments for automatic dependency tracking. If GNU make was not used, consider re-running the configure script with MAKE=\"gmake\" (or whatever is necessary). You can also try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking). See \`config.log' for more details" "$LINENO" 5; } fi { am_dirpart=; unset am_dirpart;} { am_filepart=; unset am_filepart;} { am_mf=; unset am_mf;} { am_rc=; unset am_rc;} rm -f conftest-deps.mk } ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi sshguard-2.4.3/INSTALL.rst000644 001751 001751 00000002433 14152213136 016060 0ustar00kevinzkevinz000000 000000 =================== Installing SSHGuard =================== From a package repository ========================= SSHGuard is available as a package from several package repositories, usually under the name ``sshguard``. Building from source ==================== Obtain a source distribution from http://www.sshguard.net/. Extract the archive and run:: ./configure make && make install Alternatively, if you are building from the source repository:: git clone https://bitbucket.org/sshguard/sshguard.git cd sshguard/ autoreconf -i ./configure make && make install Build dependencies ------------------ - C compiler with support for the C99 standard - lex and yacc (or compatible variant) If you are building from the source repository, you also need: - Autoconf/Automake - Docutils Debian and Ubuntu ~~~~~~~~~~~~~~~~~ :: apt install autoconf automake byacc flex gcc python-docutils Fedora ~~~~~~ :: dnf install autoconf automake byacc flex gcc python-docutils FreeBSD ~~~~~~~ :: pkg install autotools byacc clang flex py27-docutils macOS ~~~~~ Requires Xcode_ with command line utilities and Homebrew_. :: brew install autoconf automake byacc docutils flex .. _Xcode: https://itunes.apple.com/app/xcode/id497799835 .. _Homebrew: http://brew.sh/ sshguard-2.4.3/install-sh000755 001751 001751 00000035776 14447664672 016272 0ustar00kevinzkevinz000000 000000 #!/bin/sh # install - install a program, script, or datafile scriptversion=2020-11-14.01; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 # Create dirs (including intermediate dirs) using mode 755. # This is like GNU 'install' as of coreutils 8.32 (2020). mkdir_umask=22 backupsuffix= chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -p pass -p to $cpprog. -s $stripprog installed files. -S SUFFIX attempt to back up existing files, with suffix SUFFIX. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG By default, rm is invoked with -f; when overridden with RMPROG, it's up to you to specify -f if you want it. If -S is not specified, no backups are attempted. Email bug reports to bug-automake@gnu.org. Automake home page: https://www.gnu.org/software/automake/ " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -p) cpprog="$cpprog -p";; -s) stripcmd=$stripprog;; -S) backupsuffix="$2" shift;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? # Don't chown directories that already exist. if test $dstdir_status = 0; then chowncmd="" fi else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dstbase=`basename "$src"` case $dst in */) dst=$dst$dstbase;; *) dst=$dst/$dstbase;; esac dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi case $dstdir in */) dstdirslash=$dstdir;; *) dstdirslash=$dstdir/;; esac obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false # The $RANDOM variable is not portable (e.g., dash). Use it # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap ' ret=$? rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null exit $ret ' 0 # Because "mkdir -p" follows existing symlinks and we likely work # directly in world-writeable /tmp, make sure that the '$tmpdir' # directory is successfully created first before we actually test # 'mkdir -p'. if (umask $mkdir_umask && $mkdirprog $mkdir_mode "$tmpdir" && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. test_tmpdir="$tmpdir/a" ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=${dstdirslash}_inst.$$_ rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && { test -z "$stripcmd" || { # Create $dsttmp read-write so that cp doesn't create it read-only, # which would cause strip to fail. if test -z "$doit"; then : >"$dsttmp" # No need to fork-exec 'touch'. else $doit touch "$dsttmp" fi } } && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # If $backupsuffix is set, and the file being installed # already exists, attempt a backup. Don't worry if it fails, # e.g., if mv doesn't support -f. if test -n "$backupsuffix" && test -f "$dst"; then $doit $mvcmd -f "$dst" "$dst$backupsuffix" 2>/dev/null fi # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.4.3/aclocal.m4000644 001751 001751 00000134662 14447664671 016117 0ustar00kevinzkevinz000000 000000 # generated automatically by aclocal 1.16.5 -*- Autoconf -*- # Copyright (C) 1996-2021 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.71],, [m4_warning([this file was generated for autoconf 2.71. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # Copyright (C) 2002-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.16' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.16.5], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.16.5])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # Copyright (C) 2011-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_AR([ACT-IF-FAIL]) # ------------------------- # Try to determine the archiver interface, and trigger the ar-lib wrapper # if it is needed. If the detection of archiver interface fails, run # ACT-IF-FAIL (default is to abort configure with a proper error message). AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([ar-lib])dnl AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) : ${AR=ar} AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], [AC_LANG_PUSH([C]) am_cv_ar_interface=ar AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a ]) AC_LANG_POP([C])]) case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) m4_default([$1], [AC_MSG_ERROR([could not determine $AR interface])]) ;; esac AC_SUBST([AR])dnl ]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. AS_CASE([$CONFIG_FILES], [*\'*], [eval set x "$CONFIG_FILES"], [*], [set x $CONFIG_FILES]) shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`AS_DIRNAME(["$am_mf"])` am_filepart=`AS_BASENAME(["$am_mf"])` AM_RUN_LOG([cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles]) || am_rc=$? done if test $am_rc -ne 0; then AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments for automatic dependency tracking. If GNU make was not used, consider re-running the configure script with MAKE="gmake" (or whatever is necessary). You can also try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking).]) fi AS_UNSET([am_dirpart]) AS_UNSET([am_filepart]) AS_UNSET([am_mf]) AS_UNSET([am_rc]) rm -f conftest-deps.mk } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking is enabled. # This creates each '.Po' and '.Plo' makefile fragment that we'll need in # order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl m4_ifdef([_$0_ALREADY_INIT], [m4_fatal([$0 expanded multiple times ]m4_defn([_$0_ALREADY_INIT]))], [m4_define([_$0_ALREADY_INIT], m4_expansion_stack)])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifset([AC_PACKAGE_NAME], [ok]):m4_ifset([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) # Variables for tags utilities; see am/tags.am if test -z "$CTAGS"; then CTAGS=ctags fi AC_SUBST([CTAGS]) if test -z "$ETAGS"; then ETAGS=etags fi AC_SUBST([ETAGS]) if test -z "$CSCOPE"; then CSCOPE=cscope fi AC_SUBST([CSCOPE]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Copyright (C) 1998-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_LEX # ----------- # Autoconf leaves LEX=: if lex or flex can't be found. Change that to a # "missing" invocation, for better error output. AC_DEFUN([AM_PROG_LEX], [AC_PREREQ([2.50])dnl AC_REQUIRE([AM_MISSING_HAS_RUN])dnl AC_REQUIRE([AC_PROG_LEX])dnl if test "$LEX" = :; then LEX=${am_missing_run}flex fi]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless 'enable' is passed literally. # For symmetry, 'disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], am_maintainer_other[ make rules and dependencies not useful (and sometimes confusing) to the casual installer])], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check whether make has an 'include' directive that can support all # the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) AS_CASE([$?:`cat confinc.out 2>/dev/null`], ['0:this is the am__doit target'], [AS_CASE([$s], [BSD], [am__include='.include' am__quote='"'], [am__include='include' am__quote=''])]) if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* AC_MSG_RESULT([${_am_result}]) AC_SUBST([am__include])]) AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # -*- Autoconf -*- # Obsolete and "removed" macros, that must however still report explicit # error messages when used, to smooth transition. # # Copyright (C) 1996-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should use the 'AC][_CONFIG_HEADERS' macro instead.])dnl AC_CONFIG_HEADERS($@)]) AC_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc AC_DIAGNOSE([obsolete], ['$0': this macro is obsolete. You should simply use the 'AC][_PROG_CC' macro instead. Also, your code should no longer depend upon 'am_cv_prog_cc_stdc', but upon 'ac_cv_prog_cc_stdc'.])]) AC_DEFUN([AM_C_PROTOTYPES], [AC_FATAL([automatic de-ANSI-fication support has been removed])]) AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2021 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR sshguard-2.4.3/ar-lib000755 001751 001751 00000013363 14447664672 015346 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Wrapper for Microsoft lib.exe me=ar-lib scriptversion=2019-07-04.01; # UTC # Copyright (C) 2010-2021 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # func_error message func_error () { echo "$me: $1" 1>&2 exit 1 } file_conv= # func_file_conv build_file # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN* | MSYS*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv in mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin | msys) file=`cygpath -m "$file" || echo "$file"` ;; wine) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_at_file at_file operation archive # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE # for each of them. # When interpreting the content of the @FILE, do NOT use func_file_conv, # since the user would need to supply preconverted file names to # binutils ar, at least for MinGW. func_at_file () { operation=$2 archive=$3 at_file_contents=`cat "$1"` eval set x "$at_file_contents" shift for member do $AR -NOLOGO $operation:"$member" "$archive" || exit $? done } case $1 in '') func_error "no command. Try '$0 --help' for more information." ;; -h | --h*) cat <`_ and contribute to discussions on issues you care about. - Vote for issues on the `issue tracker`_. - Report log messages that should or should not be identified as attacks on the `issue tracker`_. - Consider maintaining a package for SSHGuard on your operating system. .. _issue tracker: https://bitbucket.org/sshguard/sshguard/issues?status=new&status=open For Contributors ================ Architecture ------------ SSHGuard consists of a pipeline of programs that work together, depicted in ``_. In this diagram, processes shown with a dashed border are sandboxed, if sandboxing support is implemented for the OS in *sandbox_init()*. Currently, sandboxing is only implemented on FreeBSD with Capsicum and on OpenBSD with *pledge()*. **sshguard** reads the configuration file and spawns a pipeline. **sshg-logtail** monitors one or more log files, aggregates them, and pipes their contents to the next stage. **sshg-parser** reads its input and looks for attacks. If it finds an attack, it reports the service, remote address, address type (IPv4 or IPv6), and score ("dangerousness") to the next stage. The format is defined in *print_attack()* (``_). This is the only program you need to change to `add new signatures`_. **sshg-blocker** maintains a list of recent attackers. If there are enough attacks from an attacker in a given time interval, it commands the firewall backend to block the attacker's address. After a certain amount of time, **sshg-blocker** is also responsible for unblocking an attacker, or blacklisting if configured to do so. **sshg-fw-*** is one of several firewall backends. It reads firewall commands from its input and runs the appropriate system commands to do the firewall. Add New Signatures ------------------ Files to change: - ``_ - ``_ - ``_ If you are adding a new service, changes are also needed in: - ``_ - ``_ #. Obtain several samples of the log message you want to match. Add these attacks, along with the expected parse result, to *tests.txt*. #. Run ``make check``, to make sure your new tests fail. #. Create new tokens for parts of the string you want to match at the top of *attack_parser.y*, where the ``%token`` lines are. #. Add regular expressions for matching your new tokens in *attack_scanner.l*. #. Add grammar rules for your attack in *attack_parser.y*. A good starting point is to look at how the existing signatures are matached from the ``msg_single`` rule. #. Check that your new tests pass, and that you haven't broken existing tests. To help debug your rule, you can run *sshg-parser* directly with the ``-d`` flag. Firewall Backend Interface -------------------------- ``sshg-blocker`` sends line-delimited commands to a firewall backend through a pipe, which does the actual work of blocking and releasing addresses using the underlying firewall. The firewall backend must support these commands: - ``block ADDR KIND SUBNET_SIZE`` (fw_block() in *blocklist.c*). This command blocks an IP address block given in CIDR notation as *ADDR*/*SUBNET_SIZE* which is either IPv4 if *KIND* is '4' or IPv6 if *KIND* is '6'. As is the case with CIDR notation, a *SUBNET_SIZE* of 32 indicates that only one IP address must be blocked. Since the firewall backend likely runs with elevated permissions, implementations should validate their inputs. At its option, an implementation may gather several ``block`` commands to issue to the underlying backend at once to reduce overhead. - ``release ADDR KIND SUBNET_SIZE`` (fw_release() in *blocklist.c*). This command undoes the ``block`` command, taking the same arguments. The backend may assume that a ``release`` command is never issued without a corresponding ``block`` command. If block addresses overlap, it is up to the implementation to decide when to allow access through the firewall. For example, if both 1.2.3.4/32 and 1.2.3.0/24 were blocked, in that order, and 1.2.3.4/32 was released, the firewall backend may continue to block 1.2.3.4 until both are released, or may unblock it immediately. - ``flushonexit`` (main() in *blocker.c*). This command instructs the backend to release all blocked addresses when the backend exits. ``sshg-blocker`` will usually issue this command before any others. Implementations should release all blocked addresses, including those that do not have a corresponding ``block`` command (for example, blocks from a previous invocation). Submitting Your Patches ----------------------- We welcome your patches through: - Email submission in ``git format-patch`` form or as a unified diff to the SSHGuard Users' Mailing List - A BitBucket pull request For Committers ============== Commit Guidelines ----------------- - **Merge via fast-forward and rebase**. Where possible, merge pull requests and branches by rebasing on top of master and fast-forwarding, without creating a separate merge commit. Linear history makes it possible for us to bisect regressions. - **50 character subject line**, followed by a blank and more details in the body if needed, in the commit message. - **Work in topic branches as needed**. For changes big or small, feel free to use public topic branches in the SSHGuard repository. After review, they go in by rebasing master. Topic branches are usually deleted after merging. Force pushes are welcome in topic branches but not allowed in master. Issue Tracker Workflow ---------------------- An explanation of workflow states that aren't self-explanatory: Open Issue analyzed, fair game for someone to fix On hold Issue analyzed, fix deferred (e.g. due to coming architectural changes) Resolved Action taken, issue resolved Invalid Not an issue (e.g. external bugs, spam) Wontfix Intentional behavior or rejected feature requests Closed No action taken, issue resolved (e.g. already fixed in ``master``) Release Checklist ----------------- Before release, make sure that: #. Change log and documentation are up-to-date #. Version number is consistent in *configure.ac* and man pages #. Regenerate autotools: ``autoreconf -i`` #. Building and installing work from source tarball: ``make distcheck`` Then: 1. Tag release: ``git tag -s -m "Tag release" v`` #. Source tarball should have been generated from ``make distcheck`` already #. Sign source tarball ``./distsign `` #. Push tags: ``git push --tags`` #. Upload release files to SourceForge. #. Send release announcement to mailing lists. #. Announce release on website. sshguard-2.4.3/test-driver000755 001751 001751 00000011417 14447664672 016446 0ustar00kevinzkevinz000000 000000 #! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2018-03-07.03; # UTC # Copyright (C) 2011-2021 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <"$log_file" "$@" >>"$log_file" 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then tweaked_estatus=1 else tweaked_estatus=$estatus fi case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report the test outcome and exit status in the logs, so that one can # know whether the test passed or failed simply by looking at the '.log' # file, without the need of also peaking into the corresponding '.trs' # file (automake bug#11814). echo "$res $test_name (exit status: $estatus)" >>"$log_file" # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.4.3/README.rst000644 001751 001751 00000002473 14152213136 015713 0ustar00kevinzkevinz000000 000000 ======== SSHGuard ======== **sshguard** protects hosts from brute-force attacks against SSH and other services. It aggregates system logs and blocks repeat offenders using one of several firewall backends. - Website: https://www.sshguard.net/ - Bitbucket: https://bitbucket.org/sshguard/sshguard/ Installation ============ See ``_ for dependencies and detailed instructions. Briefly: If you are building from **Git**, run this first:: autoreconf -i Then, build it like a normal source distribution:: ./configure make && make install Usage ===== Copy the sample configuration file ``_ and follow the setup instructions in `sshguard-setup(7) `_. See `sshguard(8) `_ for additional options. Troubleshooting =============== See the "Troubleshooting" section in `sshguard-setup(7) `_. Contributing ============ See ``_>. License ======= **sshguard** is available under the terms of the `OpenBSD license `_, which is based on the ISC License. See ``_ for details. Authors ======= * Michele Mazzucchi , * T.J. Jones , * Kevin Zheng sshguard-2.4.3/missing000755 001751 001751 00000015336 14447664672 015653 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2021 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=https://www.perl.org/ flex_URL=https://github.com/westes/flex gnu_software_URL=https://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.4.3/depcomp000755 001751 001751 00000056020 14447664672 015624 0ustar00kevinzkevinz000000 000000 #! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2021 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.4.3/examples/000755 001751 001751 00000000000 14152213136 016034 5ustar00kevinzkevinz000000 000000 sshguard-2.4.3/Makefile.am000644 001751 001751 00000000324 14152213136 016251 0ustar00kevinzkevinz000000 000000 SUBDIRS = src EXTRA_DIST = doc/ examples/ CHANGELOG.rst CONTRIBUTING.rst INSTALL.rst README.rst dist_man_MANS = doc/sshguard-setup.7 doc/sshguard.8 if BUILD_MAN SUFFIXES=.rst .rst: $(RST2MAN_PROG) $< $@ endif sshguard-2.4.3/configure.ac000644 001751 001751 00000002622 14447102016 016507 0ustar00kevinzkevinz000000 000000 # Process this file with autoconf to produce a configure script. AC_PREREQ([2.60]) AC_INIT([sshguard], [2.4.3], [sshguard-users@lists.sourceforge.net]) AM_MAINTAINER_MODE([enable]) AC_CONFIG_SRCDIR([src/sshguard.in]) AM_CONFIG_HEADER([src/common/config.h]) AM_INIT_AUTOMAKE([foreign]) AM_SILENT_RULES([yes]) AC_REQUIRE_AUX_FILE([tap-driver.sh]) # Enable POSIX extensions on hosts that normally disable them. AC_USE_SYSTEM_EXTENSIONS AS_BOX([Program Checks]) AC_PROG_CC_C99 AC_PROG_RANLIB AC_PROG_YACC AM_PROG_AR AM_PROG_LEX AS_BOX([Headers, Types, and Compiler Checks]) AC_CHECK_HEADERS([getopt.h]) AC_CHECK_HEADERS([capsicum_helpers.h libcasper.h], capsicum_found=candidate) AS_IF([test "$capsicum_found" == "candidate"], [AC_SEARCH_LIBS([cap_init], [casper], [capsicum_found=yes])] [AC_SEARCH_LIBS([cap_getaddrinfo], [cap_net], [capsicum_found=yes])]) AS_IF([test "$capsicum_found" == "yes"], [AC_DEFINE([CAPSICUM], [1], [Use Capsicum])]) AC_CHECK_PROGS(RST2MAN_PROG, [rst2man rst2man.py], no) AM_CONDITIONAL([BUILD_MAN], [test "x$RST2MAN_PROG" != xno]) AS_IF([test "$RST2MAN_PROG" == "no"], [AC_MSG_WARN([rst2man not found; using pre-built man pages])]) AS_BOX([Library Functions]) AC_SEARCH_LIBS([gethostbyname], [nsl]) AC_SEARCH_LIBS([pthread_create], [pthread]) AC_SEARCH_LIBS([socket], [socket]) AC_OUTPUT([Makefile src/Makefile src/blocker/Makefile src/fw/Makefile src/parser/Makefile]) sshguard-2.4.3/src/000755 001751 001751 00000000000 14447664715 015031 5ustar00kevinzkevinz000000 000000 sshguard-2.4.3/compile000755 001751 001751 00000016350 14447664672 015627 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2021 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN* | MSYS*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/* | msys/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.4.3/COPYING000644 001751 001751 00000001775 14152213136 015263 0ustar00kevinzkevinz000000 000000 Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. This program uses components from the following projects, which are released under separate licenses: * Fowler/Noll/Vo Hash (fnv) library by chongo@mellis.com http://www.isthe.com/chongo/tech/comp/fnv/ Public Domain * SimCList library by mij@bitchx.it http://mij.oltrelinux.com/devel/simclist/ 3-clause BSD sshguard-2.4.3/Makefile.in000644 001751 001751 00000072754 14447664672 016330 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2021 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man7dir = $(mandir)/man7 am__installdirs = "$(DESTDIR)$(man7dir)" "$(DESTDIR)$(man8dir)" man8dir = $(mandir)/man8 NROFF = nroff MANS = $(dist_man_MANS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir distdir-am dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \ $(top_srcdir)/src/common/config.h.in COPYING ar-lib compile \ install-sh missing tap-driver.sh DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip # Exists only to be overridden by the user if desired. AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src EXTRA_DIST = doc/ examples/ CHANGELOG.rst CONTRIBUTING.rst INSTALL.rst README.rst dist_man_MANS = doc/sshguard-setup.7 doc/sshguard.8 @BUILD_MAN_TRUE@SUFFIXES = .rst all: all-recursive .SUFFIXES: .SUFFIXES: .rst am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): src/common/config.h: src/common/stamp-h1 @test -f $@ || rm -f src/common/stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) src/common/stamp-h1 src/common/stamp-h1: $(top_srcdir)/src/common/config.h.in $(top_builddir)/config.status @rm -f src/common/stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status src/common/config.h $(top_srcdir)/src/common/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f src/common/stamp-h1 touch $@ distclean-hdr: -rm -f src/common/config.h src/common/stamp-h1 install-man7: $(dist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(dist_man_MANS)'; \ test -n "$(man7dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man7dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man7dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.7[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^7][0-9a-z]*$$,7,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man7dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man7dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man7dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man7dir)" || exit $$?; }; \ done; } uninstall-man7: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man7dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.7[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^7][0-9a-z]*$$,7,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man7dir)'; $(am__uninstall_files_from_dir) install-man8: $(dist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(dist_man_MANS)'; \ test -n "$(man8dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.8[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \ done; } uninstall-man8: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man8dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.8[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-zstd: distdir tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ *.tar.zst*) \ zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(MANS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(man7dir)" "$(DESTDIR)$(man8dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-man install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-man7 install-man8 install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-man uninstall-man: uninstall-man7 uninstall-man8 .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ dist-zstd distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-man7 \ install-man8 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-am uninstall uninstall-am \ uninstall-man uninstall-man7 uninstall-man8 .PRECIOUS: Makefile @BUILD_MAN_TRUE@.rst: @BUILD_MAN_TRUE@ $(RST2MAN_PROG) $< $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.4.3/tap-driver.sh000755 001751 001751 00000046005 14447664672 016665 0ustar00kevinzkevinz000000 000000 #! /bin/sh # Copyright (C) 2011-2021 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . scriptversion=2013-12-23.17; # UTC # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u me=tap-driver.sh fatal () { echo "$me: fatal: $*" >&2 exit 1 } usage_error () { echo "$me: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat < # trap : 1 3 2 13 15 if test $merge -gt 0; then exec 2>&1 else exec 2>&3 fi "$@" echo $? ) | LC_ALL=C ${AM_TAP_AWK-awk} \ -v me="$me" \ -v test_script_name="$test_name" \ -v log_file="$log_file" \ -v trs_file="$trs_file" \ -v expect_failure="$expect_failure" \ -v merge="$merge" \ -v ignore_exit="$ignore_exit" \ -v comments="$comments" \ -v diag_string="$diag_string" \ ' # TODO: the usages of "cat >&3" below could be optimized when using # GNU awk, and/on on systems that supports /dev/fd/. # Implementation note: in what follows, `result_obj` will be an # associative array that (partly) simulates a TAP result object # from the `TAP::Parser` perl module. ## ----------- ## ## FUNCTIONS ## ## ----------- ## function fatal(msg) { print me ": " msg | "cat >&2" exit 1 } function abort(where) { fatal("internal error " where) } # Convert a boolean to a "yes"/"no" string. function yn(bool) { return bool ? "yes" : "no"; } function add_test_result(result) { if (!test_results_index) test_results_index = 0 test_results_list[test_results_index] = result test_results_index += 1 test_results_seen[result] = 1; } # Whether the test script should be re-run by "make recheck". function must_recheck() { for (k in test_results_seen) if (k != "XFAIL" && k != "PASS" && k != "SKIP") return 1 return 0 } # Whether the content of the log file associated to this test should # be copied into the "global" test-suite.log. function copy_in_global_log() { for (k in test_results_seen) if (k != "PASS") return 1 return 0 } function get_global_test_result() { if ("ERROR" in test_results_seen) return "ERROR" if ("FAIL" in test_results_seen || "XPASS" in test_results_seen) return "FAIL" all_skipped = 1 for (k in test_results_seen) if (k != "SKIP") all_skipped = 0 if (all_skipped) return "SKIP" return "PASS"; } function stringify_result_obj(result_obj) { if (result_obj["is_unplanned"] || result_obj["number"] != testno) return "ERROR" if (plan_seen == LATE_PLAN) return "ERROR" if (result_obj["directive"] == "TODO") return result_obj["is_ok"] ? "XPASS" : "XFAIL" if (result_obj["directive"] == "SKIP") return result_obj["is_ok"] ? "SKIP" : COOKED_FAIL; if (length(result_obj["directive"])) abort("in function stringify_result_obj()") return result_obj["is_ok"] ? COOKED_PASS : COOKED_FAIL } function decorate_result(result) { color_name = color_for_result[result] if (color_name) return color_map[color_name] "" result "" color_map["std"] # If we are not using colorized output, or if we do not know how # to colorize the given result, we should return it unchanged. return result } function report(result, details) { if (result ~ /^(X?(PASS|FAIL)|SKIP|ERROR)/) { msg = ": " test_script_name add_test_result(result) } else if (result == "#") { msg = " " test_script_name ":" } else { abort("in function report()") } if (length(details)) msg = msg " " details # Output on console might be colorized. print decorate_result(result) msg # Log the result in the log file too, to help debugging (this is # especially true when said result is a TAP error or "Bail out!"). print result msg | "cat >&3"; } function testsuite_error(error_message) { report("ERROR", "- " error_message) } function handle_tap_result() { details = result_obj["number"]; if (length(result_obj["description"])) details = details " " result_obj["description"] if (plan_seen == LATE_PLAN) { details = details " # AFTER LATE PLAN"; } else if (result_obj["is_unplanned"]) { details = details " # UNPLANNED"; } else if (result_obj["number"] != testno) { details = sprintf("%s # OUT-OF-ORDER (expecting %d)", details, testno); } else if (result_obj["directive"]) { details = details " # " result_obj["directive"]; if (length(result_obj["explanation"])) details = details " " result_obj["explanation"] } report(stringify_result_obj(result_obj), details) } # `skip_reason` should be empty whenever planned > 0. function handle_tap_plan(planned, skip_reason) { planned += 0 # Avoid getting confused if, say, `planned` is "00" if (length(skip_reason) && planned > 0) abort("in function handle_tap_plan()") if (plan_seen) { # Error, only one plan per stream is acceptable. testsuite_error("multiple test plans") return; } planned_tests = planned # The TAP plan can come before or after *all* the TAP results; we speak # respectively of an "early" or a "late" plan. If we see the plan line # after at least one TAP result has been seen, assume we have a late # plan; in this case, any further test result seen after the plan will # be flagged as an error. plan_seen = (testno >= 1 ? LATE_PLAN : EARLY_PLAN) # If testno > 0, we have an error ("too many tests run") that will be # automatically dealt with later, so do not worry about it here. If # $plan_seen is true, we have an error due to a repeated plan, and that # has already been dealt with above. Otherwise, we have a valid "plan # with SKIP" specification, and should report it as a particular kind # of SKIP result. if (planned == 0 && testno == 0) { if (length(skip_reason)) skip_reason = "- " skip_reason; report("SKIP", skip_reason); } } function extract_tap_comment(line) { if (index(line, diag_string) == 1) { # Strip leading `diag_string` from `line`. line = substr(line, length(diag_string) + 1) # And strip any leading and trailing whitespace left. sub("^[ \t]*", "", line) sub("[ \t]*$", "", line) # Return what is left (if any). return line; } return ""; } # When this function is called, we know that line is a TAP result line, # so that it matches the (perl) RE "^(not )?ok\b". function setup_result_obj(line) { # Get the result, and remove it from the line. result_obj["is_ok"] = (substr(line, 1, 2) == "ok" ? 1 : 0) sub("^(not )?ok[ \t]*", "", line) # If the result has an explicit number, get it and strip it; otherwise, # automatically assign the next test number to it. if (line ~ /^[0-9]+$/ || line ~ /^[0-9]+[^a-zA-Z0-9_]/) { match(line, "^[0-9]+") # The final `+ 0` is to normalize numbers with leading zeros. result_obj["number"] = substr(line, 1, RLENGTH) + 0 line = substr(line, RLENGTH + 1) } else { result_obj["number"] = testno } if (plan_seen == LATE_PLAN) # No further test results are acceptable after a "late" TAP plan # has been seen. result_obj["is_unplanned"] = 1 else if (plan_seen && testno > planned_tests) result_obj["is_unplanned"] = 1 else result_obj["is_unplanned"] = 0 # Strip trailing and leading whitespace. sub("^[ \t]*", "", line) sub("[ \t]*$", "", line) # This will have to be corrected if we have a "TODO"/"SKIP" directive. result_obj["description"] = line result_obj["directive"] = "" result_obj["explanation"] = "" if (index(line, "#") == 0) return # No possible directive, nothing more to do. # Directives are case-insensitive. rx = "[ \t]*#[ \t]*([tT][oO][dD][oO]|[sS][kK][iI][pP])[ \t]*" # See whether we have the directive, and if yes, where. pos = match(line, rx "$") if (!pos) pos = match(line, rx "[^a-zA-Z0-9_]") # If there was no TAP directive, we have nothing more to do. if (!pos) return # Let`s now see if the TAP directive has been escaped. For example: # escaped: ok \# SKIP # not escaped: ok \\# SKIP # escaped: ok \\\\\# SKIP # not escaped: ok \ # SKIP if (substr(line, pos, 1) == "#") { bslash_count = 0 for (i = pos; i > 1 && substr(line, i - 1, 1) == "\\"; i--) bslash_count += 1 if (bslash_count % 2) return # Directive was escaped. } # Strip the directive and its explanation (if any) from the test # description. result_obj["description"] = substr(line, 1, pos - 1) # Now remove the test description from the line, that has been dealt # with already. line = substr(line, pos) # Strip the directive, and save its value (normalized to upper case). sub("^[ \t]*#[ \t]*", "", line) result_obj["directive"] = toupper(substr(line, 1, 4)) line = substr(line, 5) # Now get the explanation for the directive (if any), with leading # and trailing whitespace removed. sub("^[ \t]*", "", line) sub("[ \t]*$", "", line) result_obj["explanation"] = line } function get_test_exit_message(status) { if (status == 0) return "" if (status !~ /^[1-9][0-9]*$/) abort("getting exit status") if (status < 127) exit_details = "" else if (status == 127) exit_details = " (command not found?)" else if (status >= 128 && status <= 255) exit_details = sprintf(" (terminated by signal %d?)", status - 128) else if (status > 256 && status <= 384) # We used to report an "abnormal termination" here, but some Korn # shells, when a child process die due to signal number n, can leave # in $? an exit status of 256+n instead of the more standard 128+n. # Apparently, both behaviours are allowed by POSIX (2008), so be # prepared to handle them both. See also Austing Group report ID # 0000051 exit_details = sprintf(" (terminated by signal %d?)", status - 256) else # Never seen in practice. exit_details = " (abnormal termination)" return sprintf("exited with status %d%s", status, exit_details) } function write_test_results() { print ":global-test-result: " get_global_test_result() > trs_file print ":recheck: " yn(must_recheck()) > trs_file print ":copy-in-global-log: " yn(copy_in_global_log()) > trs_file for (i = 0; i < test_results_index; i += 1) print ":test-result: " test_results_list[i] > trs_file close(trs_file); } BEGIN { ## ------- ## ## SETUP ## ## ------- ## '"$init_colors"' # Properly initialized once the TAP plan is seen. planned_tests = 0 COOKED_PASS = expect_failure ? "XPASS": "PASS"; COOKED_FAIL = expect_failure ? "XFAIL": "FAIL"; # Enumeration-like constants to remember which kind of plan (if any) # has been seen. It is important that NO_PLAN evaluates "false" as # a boolean. NO_PLAN = 0 EARLY_PLAN = 1 LATE_PLAN = 2 testno = 0 # Number of test results seen so far. bailed_out = 0 # Whether a "Bail out!" directive has been seen. # Whether the TAP plan has been seen or not, and if yes, which kind # it is ("early" is seen before any test result, "late" otherwise). plan_seen = NO_PLAN ## --------- ## ## PARSING ## ## --------- ## is_first_read = 1 while (1) { # Involutions required so that we are able to read the exit status # from the last input line. st = getline if (st < 0) # I/O error. fatal("I/O error while reading from input stream") else if (st == 0) # End-of-input { if (is_first_read) abort("in input loop: only one input line") break } if (is_first_read) { is_first_read = 0 nextline = $0 continue } else { curline = nextline nextline = $0 $0 = curline } # Copy any input line verbatim into the log file. print | "cat >&3" # Parsing of TAP input should stop after a "Bail out!" directive. if (bailed_out) continue # TAP test result. if ($0 ~ /^(not )?ok$/ || $0 ~ /^(not )?ok[^a-zA-Z0-9_]/) { testno += 1 setup_result_obj($0) handle_tap_result() } # TAP plan (normal or "SKIP" without explanation). else if ($0 ~ /^1\.\.[0-9]+[ \t]*$/) { # The next two lines will put the number of planned tests in $0. sub("^1\\.\\.", "") sub("[^0-9]*$", "") handle_tap_plan($0, "") continue } # TAP "SKIP" plan, with an explanation. else if ($0 ~ /^1\.\.0+[ \t]*#/) { # The next lines will put the skip explanation in $0, stripping # any leading and trailing whitespace. This is a little more # tricky in truth, since we want to also strip a potential leading # "SKIP" string from the message. sub("^[^#]*#[ \t]*(SKIP[: \t][ \t]*)?", "") sub("[ \t]*$", ""); handle_tap_plan(0, $0) } # "Bail out!" magic. # Older versions of prove and TAP::Harness (e.g., 3.17) did not # recognize a "Bail out!" directive when preceded by leading # whitespace, but more modern versions (e.g., 3.23) do. So we # emulate the latter, "more modern" behaviour. else if ($0 ~ /^[ \t]*Bail out!/) { bailed_out = 1 # Get the bailout message (if any), with leading and trailing # whitespace stripped. The message remains stored in `$0`. sub("^[ \t]*Bail out![ \t]*", ""); sub("[ \t]*$", ""); # Format the error message for the bailout_message = "Bail out!" if (length($0)) bailout_message = bailout_message " " $0 testsuite_error(bailout_message) } # Maybe we have too look for dianogtic comments too. else if (comments != 0) { comment = extract_tap_comment($0); if (length(comment)) report("#", comment); } } ## -------- ## ## FINISH ## ## -------- ## # A "Bail out!" directive should cause us to ignore any following TAP # error, as well as a non-zero exit status from the TAP producer. if (!bailed_out) { if (!plan_seen) { testsuite_error("missing test plan") } else if (planned_tests != testno) { bad_amount = testno > planned_tests ? "many" : "few" testsuite_error(sprintf("too %s tests run (expected %d, got %d)", bad_amount, planned_tests, testno)) } if (!ignore_exit) { # Fetch exit status from the last line. exit_message = get_test_exit_message(nextline) if (exit_message) testsuite_error(exit_message) } } write_test_results() exit 0 } # End of "BEGIN" block. ' # TODO: document that we consume the file descriptor 3 :-( } 3>"$log_file" test $? -eq 0 || fatal "I/O or internal error" # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: sshguard-2.4.3/src/Makefile.am000644 001751 001751 00000000666 14152213136 017051 0ustar00kevinzkevinz000000 000000 SUBDIRS = blocker fw parser EXTRA_DIST = sshguard.in noinst_HEADERS = common/address.h common/attack.h common/sandbox.h common/simclist.h dist_libexec_SCRIPTS = sshg-logtail sbin_SCRIPTS = sshguard CLEANFILES = sshguard script_subst = sed \ -e 's|@libexecdir[@]|$(libexecdir)|g' \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ -e 's|@sshguardversion[@]|$(VERSION)|g' sshguard: Makefile sshguard.in $(script_subst) $(srcdir)/$@.in > $@ sshguard-2.4.3/src/sshguard.in000644 001751 001751 00000005735 14152213136 017167 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshguard -- protect hosts from brute-force attacks libexec="@libexecdir@" version="@sshguardversion@" err() { echo "sshguard: $1" >&2 } setflag() { if [ -n "$2" ]; then flags="$flags -$1 $2" fi } usage() { cat << EOF Usage: sshguard [-v] [-h] [-a BLACKLIST-THRESHOLD] [-b BLACKLIST-FILE] [-i PID-FILE] [-p BLOCK_TIME] [-s DETECTION_TIME] [-w IP-ADDRESS | WHITELIST-FILE] EOF } clean_and_exit() { if [ -n "$PID_FILE" ]; then rm -f "$PID_FILE" fi exit } # Source configuration file config="@sysconfdir@/sshguard.conf" if [ ! -r $config ]; then err "Could not read '$config'" err "Please configure SSHGuard." exit 78 fi . $config # Runtime arguments override configuration options while getopts "b:l:p:s:a:w:i:hv" opt; do case $opt in a) THRESHOLD=$OPTARG;; b) BLACKLIST_FILE=$OPTARG;; i) PID_FILE=$OPTARG;; l) FILES="$FILES $OPTARG";; p) BLOCK_TIME=$OPTARG;; s) DETECTION_TIME=$OPTARG;; w) WHITELIST_ARG="$WHITELIST_ARG $OPTARG";; h) usage; exit;; v) echo "SSHGuard $version"; exit;; *) echo "Try 'sshguard -h' for help"; exit 1;; esac done # Check backend if [ -z "$BACKEND" ]; then err "BACKEND must be set in '$config'" exit 78 elif [ ! -x "$BACKEND" ]; then err "'$BACKEND' is not executable" exit 78 fi # Read config in to flags setflag 'a' "$THRESHOLD" setflag 'b' "$BLACKLIST_FILE" setflag 'p' "$BLOCK_TIME" setflag 's' "$DETECTION_TIME" setflag 'N' "$IPV6_SUBNET" setflag 'n' "$IPV4_SUBNET" if [ -n "$WHITELIST_ARG" ]; then for arg in $WHITELIST_ARG; do flags="$flags -w $arg" done elif [ -n "$WHITELIST_FILE" ]; then flags="$flags -w $WHITELIST_FILE" fi # Log source selection order: # runtime args, logreader and files, logreader, files, or stdin shift $((OPTIND-1)) if [ $# -gt 0 ]; then tailcmd="$libexec/sshg-logtail $@" elif [ -n "$LOGREADER" -a -n "$FILES" ]; then LOGREADER="$LOGREADER | grep --line-buffered '^'" FILESREAD="$libexec/sshg-logtail $FILES | grep --line-buffered '^'" tailcmd="( $LOGREADER & $FILESREAD )" elif [ -n "$LOGREADER" ]; then tailcmd="$LOGREADER" elif [ -n "$FILES" ]; then tailcmd="$libexec/sshg-logtail $FILES" elif [ -z "$tailcmd" ]; then err "$config is missing FILES and LOGREADER; please specify one" exit 1 fi if [ -n "$PID_FILE" ]; then if [ ! -e "$PID_FILE" ]; then echo "$$" > $PID_FILE else err "$PID_FILE already exists; is SSHGuard already running?" exit 1 fi fi # Select PARSER from configuration file or use default. Add POST_PARSER from # configuration file if it exists. RUN_PARSER=${PARSER:-$libexec/sshg-parser} if [ -n "$POST_PARSER" ]; then RUN_PARSER="$RUN_PARSER | $POST_PARSER" fi # Make sure to kill entire process group (subshell) on exit/interrupts. trap "clean_and_exit" INT TERM trap "kill 0" EXIT eval $tailcmd | eval "$RUN_PARSER" | \ $libexec/sshg-blocker $flags | $BACKEND & wait sshguard-2.4.3/src/Makefile.in000644 001751 001751 00000054514 14447664672 017111 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2021 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_libexec_SCRIPTS) \ $(noinst_HEADERS) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(sbindir)" SCRIPTS = $(dist_libexec_SCRIPTS) $(sbin_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = blocker fw parser EXTRA_DIST = sshguard.in noinst_HEADERS = common/address.h common/attack.h common/sandbox.h common/simclist.h dist_libexec_SCRIPTS = sshg-logtail sbin_SCRIPTS = sshguard CLEANFILES = sshguard script_subst = sed \ -e 's|@libexecdir[@]|$(libexecdir)|g' \ -e 's|@sysconfdir[@]|$(sysconfdir)|g' \ -e 's|@sshguardversion[@]|$(VERSION)|g' all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-dist_libexecSCRIPTS: $(dist_libexec_SCRIPTS) @$(NORMAL_INSTALL) @list='$(dist_libexec_SCRIPTS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-dist_libexecSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(dist_libexec_SCRIPTS)'; test -n "$(libexecdir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(libexecdir)'; $(am__uninstall_files_from_dir) install-sbinSCRIPTS: $(sbin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \ } \ ; done uninstall-sbinSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(sbindir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(SCRIPTS) $(HEADERS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(sbindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-dist_libexecSCRIPTS install-sbinSCRIPTS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-dist_libexecSCRIPTS uninstall-sbinSCRIPTS .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic cscopelist-am ctags ctags-am \ distclean distclean-generic distclean-tags distdir dvi dvi-am \ html html-am info info-am install install-am install-data \ install-data-am install-dist_libexecSCRIPTS install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-sbinSCRIPTS install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-am uninstall uninstall-am \ uninstall-dist_libexecSCRIPTS uninstall-sbinSCRIPTS .PRECIOUS: Makefile sshguard: Makefile sshguard.in $(script_subst) $(srcdir)/$@.in > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.4.3/src/parser/000755 001751 001751 00000000000 14447664721 016322 5ustar00kevinzkevinz000000 000000 sshguard-2.4.3/src/fw/000755 001751 001751 00000000000 14447664715 015445 5ustar00kevinzkevinz000000 000000 sshguard-2.4.3/src/sshg-logtail000755 001751 001751 00000000541 14152213136 017330 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-logtail -- poll from the ends of log files using `tail` # This file is part of SSHGuard. tailF="tail -F -n 0 $@" tailf="tail -f -n 0 $@" fallback() { eval $tailF 2>/dev/null || exec $tailf } case $(uname) in Darwin|FreeBSD|Linux|NetBSD) exec $tailF;; OpenBSD) exec $tailf;; *) fallback;; esac sshguard-2.4.3/src/blocker/000755 001751 001751 00000000000 14447664715 016452 5ustar00kevinzkevinz000000 000000 sshguard-2.4.3/src/common/000755 001751 001751 00000000000 14447664715 016321 5ustar00kevinzkevinz000000 000000 sshguard-2.4.3/src/common/sandbox.c000644 001751 001751 00000001206 14446632410 020104 0ustar00kevinzkevinz000000 000000 #include "config.h" #include "sandbox.h" #if defined(CAPSICUM) #include cap_channel_t *capcas, *capnet; #endif void sandbox_init() { #ifdef CAPSICUM capcas = cap_init(); if (capcas == NULL) { perror("Could not contact Casper"); } if (caph_enter_casper() < 0) { perror("Could not enter capability mode"); } capnet = cap_service_open(capcas, "system.net"); if (capnet == NULL) { perror("Could not open system.net service"); } cap_close(capcas); #endif #ifdef __OpenBSD__ if (pledge("dns stdio", NULL) != 0) { perror("Could not pledge"); } #endif } sshguard-2.4.3/src/common/address.h000644 001751 001751 00000004163 14152213136 020077 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /* maximum length of an address string */ #ifndef INET_ADDRSTRLEN # define INET_ADDRSTRLEN 16 #endif #ifndef INET6_ADDRSTRLEN # define INET6_ADDRSTRLEN 46 #endif #define ADDRLEN INET6_ADDRSTRLEN /* address kind codes */ #define ADDRKIND_IPv4 4 #define ADDRKIND_IPv6 6 /* an IPv4 address */ #define REGEXLIB_IPV4 "((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?|0)(\\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?|0)){3})" /* an IPv6 address, possibly compressed */ #define REGEXLIB_IPV6 "(::|(([a-fA-F0-9]{1,4}):){7}(([a-fA-F0-9]{1,4}))|(:(:([a-fA-F0-9]{1,4})){1,6})|((([a-fA-F0-9]{1,4}):){1,6}:)|((([a-fA-F0-9]{1,4}):)(:([a-fA-F0-9]{1,4})){1,6})|((([a-fA-F0-9]{1,4}):){2}(:([a-fA-F0-9]{1,4})){1,5})|((([a-fA-F0-9]{1,4}):){3}(:([a-fA-F0-9]{1,4})){1,4})|((([a-fA-F0-9]{1,4}):){4}(:([a-fA-F0-9]{1,4})){1,3})|((([a-fA-F0-9]{1,4}):){5}(:([a-fA-F0-9]{1,4})){1,2}))" /* an IPv4 address, mapped to IPv6 */ #define REGEXLIB_IPV4_MAPPED6 "(((0:){5}(0|[fF]{4})|:(:[fF]{4})?):{IPV4})" /* a hostname, "localhost" or at least 2nd level */ #define REGEXLIB_HOSTNAME "(localhost|([-a-zA-Z0-9]+\\.)+[a-zA-Z]+)" typedef struct { char value[ADDRLEN]; /* address of offender */ int kind; /* type of address addr */ } sshg_address_t; sshguard-2.4.3/src/common/service_names.c000644 001751 001751 00000002332 14446624517 021303 0ustar00kevinzkevinz000000 000000 #include "attack.h" struct service_s { enum service code; const char* name; }; static const struct service_s services[] = { {SERVICES_SSH, "SSH"}, {SERVICES_SSHGUARD, "SSHGuard"}, {SERVICES_UWIMAP, "UW IMAP"}, {SERVICES_DOVECOT, "Dovecot"}, {SERVICES_CYRUSIMAP, "Cyrus IMAP"}, {SERVICES_CUCIPOP, "CUCIPOP"}, {SERVICES_EXIM, "exim"}, {SERVICES_SENDMAIL, "Sendmail"}, {SERVICES_POSTFIX, "Postfix"}, {SERVICES_OPENSMTPD, "OpenSMTPD"}, {SERVICES_COURIER, "Courier"}, {SERVICES_FREEBSDFTPD, "FreeBSD FTPD"}, {SERVICES_PROFTPD, "ProFTPD"}, {SERVICES_PUREFTPD, "PureFTPD"}, {SERVICES_VSFTPD, "VSFTPD"}, {SERVICES_COCKPIT, "Cockpit"}, {SERVICES_CLF_UNAUTH, "CLF Unauthorized"}, {SERVICES_CLF_PROBES, "CLF Probes"}, {SERVICES_CLF_LOGIN_URL, "CMS Framework"}, {SERVICES_OPENVPN, "OpenVPN"}, {SERVICES_GITEA, "Gitea"}, {SERVICES_OPENVPN_PS, "OpenVPN Portshare"}, {SERVICES_MSSQL, "MSSQL"}, }; const char *service_to_name(enum service code) { for (unsigned int i = 0; i < sizeof(services)/sizeof(struct service_s); i++) { if (code == services[i].code) { return services[i].name; } } return "unknown service"; } sshguard-2.4.3/src/common/simclist.h000644 001751 001751 00000075776 14152213136 020323 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SimCList library. See http://mij.oltrelinux.com/devel/simclist */ #ifndef SIMCLIST_H #define SIMCLIST_H #ifdef __cplusplus extern "C" { #endif #include #include #include /* Be friend of both C90 and C99 compilers */ #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* "inline" and "restrict" are keywords */ #else # define inline /* inline */ # define restrict /* restrict */ #endif /** * Type representing list hashes. * * This is a signed integer value. */ typedef int32_t list_hash_t; #ifndef SIMCLIST_NO_DUMPRESTORE typedef struct { uint16_t version; /* dump version */ int64_t timestamp; /* when the list has been dumped, microseconds from UNIX epoch */ uint32_t list_size; uint32_t list_numels; list_hash_t list_hash; /* hash of the list when dumped, or 0 if invalid */ uint32_t dumpsize; int consistent; /* 1 if the dump is verified complete/consistent; 0 otherwise */ } list_dump_info_t; #endif /** * a comparator of elements. * * A comparator of elements is a function that: * -# receives two references to elements a and b * -# returns {<0, 0, >0} if (a > b), (a == b), (a < b) respectively * * It is responsability of the function to handle possible NULL values. */ typedef int (*element_comparator)(const void *a, const void *b); /** * an element synthesizer / sort key generator. * * Takes an element and returns an integer key suitable to direct sorting. * Elements are sorted by key of increasing value. To invert the sorting * direction, invert the sign of the key. * * @see list_sort() */ typedef long int (*element_keymaker)(const void *el); /** * a seeker of elements. * * An element seeker is a function that: * -# receives a reference to an element el * -# receives a reference to some indicator data * -# returns non-0 if the element matches the indicator, 0 otherwise * * It is responsability of the function to handle possible NULL values in any * argument. */ typedef int (*element_seeker)(const void *el, const void *indicator); /** * an element lenght meter. * * An element meter is a function that: * -# receives the reference to an element el * -# returns its size in bytes * * It is responsability of the function to handle possible NULL values. */ typedef size_t (*element_meter)(const void *el); /** * a function computing the hash of elements. * * An hash computing function is a function that: * -# receives the reference to an element el * -# returns a hash value for el * * It is responsability of the function to handle possible NULL values. */ typedef list_hash_t (*element_hash_computer)(const void *el); /** * a function for serializing an element. * * A serializer function is one that gets a reference to an element, * and returns a reference to a buffer that contains its serialization * along with the length of this buffer. * It is responsability of the function to handle possible NULL values, * returning a NULL buffer and a 0 buffer length. * * These functions have 3 goals: * -# "freeze" and "flatten" the memory representation of the element * -# provide a portable (wrt byte order, or type size) representation of the element, if the dump can be used on different sw/hw combinations * -# possibly extract a compressed representation of the element * * @param el reference to the element data * @param serialize_buffer reference to fill with the length of the buffer * @return reference to the buffer with the serialized data */ typedef void *(*element_serializer)(const void *restrict el, uint32_t *restrict serializ_len); /** * a function for un-serializing an element. * * An unserializer function accomplishes the inverse operation of the * serializer function. An unserializer function is one that gets a * serialized representation of an element and turns it backe to the original * element. The serialized representation is passed as a reference to a buffer * with its data, and the function allocates and returns the buffer containing * the original element, and it sets the length of this buffer into the * integer passed by reference. * * @param data reference to the buffer with the serialized representation of the element * @param data_len reference to the location where to store the length of the data in the buffer returned * @return reference to a buffer with the original, unserialized representation of the element */ typedef void *(*element_unserializer)(const void *restrict data, uint32_t *restrict data_len); /* [private-use] list entry -- olds actual user datum */ struct list_entry_s { void *data; /* doubly-linked list service references */ struct list_entry_s *next; struct list_entry_s *prev; }; /* [private-use] list attributes */ struct list_attributes_s { /* user-set routine for comparing list elements */ element_comparator comparator; /* user-set routine for synthesizing an element into an int value for sorting */ element_keymaker keymaker; /* user-set routing for seeking elements */ element_seeker seeker; /* user-set routine for determining the length of an element */ element_meter meter; int copy_data; /* user-set routine for computing the hash of an element */ element_hash_computer hasher; /* user-set routine for serializing an element */ element_serializer serializer; /* user-set routine for unserializing an element */ element_unserializer unserializer; }; /** list object */ typedef struct { struct list_entry_s *head_sentinel; struct list_entry_s *tail_sentinel; struct list_entry_s *mid; unsigned int numels; /* array of spare elements */ struct list_entry_s **spareels; unsigned int spareelsnum; #ifdef SIMCLIST_WITH_THREADS /* how many threads are currently running */ unsigned int threadcount; #endif /* service variables for list iteration */ int iter_active; unsigned int iter_pos; struct list_entry_s *iter_curentry; /* list attributes */ struct list_attributes_s attrs; } list_t; /** * initialize a list object for use. * * @param l must point to a user-provided memory location * @return 0 for success. -1 for failure */ int list_init(list_t *restrict l); /** * completely remove the list from memory. * * This function is the inverse of list_init(). It is meant to be called when * the list is no longer going to be used. Elements and possible memory taken * for internal use are freed. * * @param l list to destroy */ void list_destroy(list_t *restrict l); /** * set the comparator function for list elements. * * Comparator functions are used for searching and sorting. If NULL is passed * as reference to the function, the comparator is disabled. * * @param l list to operate * @param comparator_fun pointer to the actual comparator function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_comparator() */ int list_attributes_comparator(list_t *restrict l, element_comparator comparator_fun); /** * set the keymaker functions for list elements. * * @see element_keymaker * * @param l list to operate * @param keymaker_fun pointer to the actual keymaker function * @return 0 if the attribute was successfully set; -1 otherwise */ int list_attributes_keymaker(list_t *restrict l, element_keymaker keymaker_fun); /** * set a seeker function for list elements. * * Seeker functions are used for finding elements. If NULL is passed as reference * to the function, the seeker is disabled. * * @param l list to operate * @param seeker_fun pointer to the actual seeker function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_seeker() */ int list_attributes_seeker(list_t *restrict l, element_seeker seeker_fun); /** * require to free element data when list entry is removed (default: don't free). * * [ advanced preference ] * * By default, when an element is removed from the list, it disappears from * the list by its actual data is not free()d. With this option, every * deletion causes element data to be freed. * * It is responsability of this function to correctly handle NULL values, if * NULL elements are inserted into the list. * * @param l list to operate * @param metric_fun pointer to the actual metric function * @param copy_data 0: do not free element data (default); non-0: do free * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_meter() * @see list_meter_int8_t() * @see list_meter_int16_t() * @see list_meter_int32_t() * @see list_meter_int64_t() * @see list_meter_uint8_t() * @see list_meter_uint16_t() * @see list_meter_uint32_t() * @see list_meter_uint64_t() * @see list_meter_float() * @see list_meter_double() * @see list_meter_string() */ int list_attributes_copy(list_t *restrict l, element_meter metric_fun, int copy_data); /** * set the element hash computing function for the list elements. * * [ advanced preference ] * * An hash can be requested depicting the list status at a given time. An hash * only depends on the elements and their order. By default, the hash of an * element is only computed on its reference. With this function, the user can * set a custom function computing the hash of an element. If such function is * provided, the list_hash() function automatically computes the list hash using * the custom function instead of simply referring to element references. * * @param l list to operate * @param hash_computer_fun pointer to the actual hash computing function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_hash_computer() */ int list_attributes_hash_computer(list_t *restrict l, element_hash_computer hash_computer_fun); /** * set the element serializer function for the list elements. * * [ advanced preference ] * * Serialize functions are used for dumping the list to some persistent * storage. The serializer function is called for each element; it is passed * a reference to the element and a reference to a size_t object. It will * provide (and return) the buffer with the serialization of the element and * fill the size_t object with the length of this serialization data. * * @param l list to operate * @param serializer_fun pointer to the actual serializer function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_serializer() * @see list_dump_filedescriptor() * @see list_restore_filedescriptor() */ int list_attributes_serializer(list_t *restrict l, element_serializer serializer_fun); /** * set the element unserializer function for the list elements. * * [ advanced preference ] * * Unserialize functions are used for restoring the list from some persistent * storage. The unserializer function is called for each element segment read * from the storage; it is passed the segment and a reference to an integer. * It shall allocate and return a buffer compiled with the resumed memory * representation of the element, and set the integer value to the length of * this buffer. * * @param l list to operate * @param unserializer_fun pointer to the actual unserializer function * @return 0 if the attribute was successfully set; -1 otherwise * * @see element_unserializer() * @see list_dump_filedescriptor() * @see list_restore_filedescriptor() */ int list_attributes_unserializer(list_t *restrict l, element_unserializer unserializer_fun); /** * append data at the end of the list. * * This function is useful for adding elements with a FIFO/queue policy. * * @param l list to operate * @param data pointer to user data to append * * @return 1 for success. < 0 for failure */ int list_append(list_t *restrict l, const void *data); /** * insert data in the head of the list. * * This function is useful for adding elements with a LIFO/Stack policy. * * @param l list to operate * @param data pointer to user data to append * * @return 1 for success. < 0 for failure */ int list_prepend(list_t *restrict l, const void *restrict data); /** * extract the element in the top of the list. * * This function is for using a list with a FIFO/queue policy. * * @param l list to operate * @return reference to user datum, or NULL on errors */ void *list_fetch(list_t *restrict l); /** * retrieve an element at a given position. * * @param l list to operate * @param pos [0,size-1] position index of the element wanted * @return reference to user datum, or NULL on errors */ void *list_get_at(const list_t *restrict l, unsigned int pos); /** * return the maximum element of the list. * * @warning Requires a comparator function to be set for the list. * * Returns the maximum element with respect to the comparator function output. * * @see list_attributes_comparator() * * @param l list to operate * @return the reference to the element, or NULL */ void *list_get_max(const list_t *restrict l); /** * return the minimum element of the list. * * @warning Requires a comparator function to be set for the list. * * Returns the minimum element with respect to the comparator function output. * * @see list_attributes_comparator() * * @param l list to operate * @return the reference to the element, or NULL */ void *list_get_min(const list_t *restrict l); /** * retrieve and remove from list an element at a given position. * * @param l list to operate * @param pos [0,size-1] position index of the element wanted * @return reference to user datum, or NULL on errors */ void *list_extract_at(list_t *restrict l, unsigned int pos); /** * insert an element at a given position. * * @param l list to operate * @param data reference to data to be inserted * @param pos [0,size-1] position index to insert the element at * @return positive value on success. Negative on failure */ int list_insert_at(list_t *restrict l, const void *data, unsigned int pos); /** * expunge the first found given element from the list. * * Inspects the given list looking for the given element; if the element * is found, it is removed. Only the first occurence is removed. * If a comparator function was not set, elements are compared by reference. * Otherwise, the comparator is used to match the element. * * @param l list to operate * @param data reference of the element to search for * @return 0 on success. Negative value on failure * * @see list_attributes_comparator() * @see list_delete_at() */ int list_delete(list_t *restrict l, const void *data); /** * expunge an element at a given position from the list. * * @param l list to operate * @param pos [0,size-1] position index of the element to be deleted * @return 0 on success. Negative value on failure */ int list_delete_at(list_t *restrict l, unsigned int pos); /** * expunge an array of elements from the list, given their position range. * * @param l list to operate * @param posstart [0,size-1] position index of the first element to be deleted * @param posend [posstart,size-1] position of the last element to be deleted * @return the number of elements successfully removed */ int list_delete_range(list_t *restrict l, unsigned int posstart, unsigned int posend); /** * clear all the elements off of the list. * * The element datums will not be freed. * * @see list_delete_range() * @see list_size() * * @param l list to operate * @return the number of elements in the list before cleaning */ int list_clear(list_t *restrict l); /** * inspect the number of elements in the list. * * @param l list to operate * @return number of elements currently held by the list */ unsigned int list_size(const list_t *restrict l); /** * inspect whether the list is empty. * * @param l list to operate * @return 0 iff the list is not empty * * @see list_size() */ int list_empty(const list_t *restrict l); /** * find the position of an element in a list. * * @warning Requires a comparator function to be set for the list. * * Inspects the given list looking for the given element; if the element * is found, its position into the list is returned. * Elements are inspected comparing references if a comparator has not been * set. Otherwise, the comparator is used to find the element. * * @param l list to operate * @param data reference of the element to search for * @return position of element in the list, or <0 if not found * * @see list_attributes_comparator() * @see list_get_at() */ int list_locate(const list_t *restrict l, const void *data); /** * returns an element given an indicator. * * @warning Requires a seeker function to be set for the list. * * Inspect the given list looking with the seeker if an element matches * an indicator. If such element is found, the reference to the element * is returned. * * @param l list to operate * @param indicator indicator data to pass to the seeker along with elements * @return reference to the element accepted by the seeker, or NULL if none found */ void *list_seek(list_t *restrict l, const void *indicator); /** * inspect whether some data is member of the list. * * @warning Requires a comparator function to be set for the list. * * By default, a per-reference comparison is accomplished. That is, * the data is in list if any element of the list points to the same * location of data. * A "semantic" comparison is accomplished, otherwise, if a comparator * function has been set previously, with list_attributes_comparator(); * in which case, the given data reference is believed to be in list iff * comparator_fun(elementdata, userdata) == 0 for any element in the list. * * @param l list to operate * @param data reference to the data to search * @return 0 iff the list does not contain data as an element * * @see list_attributes_comparator() */ int list_contains(const list_t *restrict l, const void *data); /** * concatenate two lists * * Concatenates one list with another, and stores the result into a * user-provided list object, which must be different from both the * lists to concatenate. Attributes from the original lists are not * cloned. * The destination list referred is threated as virgin room: if it * is an existing list containing elements, memory leaks will happen. * It is OK to specify the same list twice as source, for "doubling" * it in the destination. * * @param l1 base list * @param l2 list to append to the base * @param dest reference to the destination list * @return 0 for success, -1 for errors */ int list_concat(const list_t *l1, const list_t *l2, list_t *restrict dest); /** * sort list elements. * * @warning Requires a comparator function to be set for the list. * * Sorts the list in ascending or descending order as specified by the versus * flag. The algorithm chooses autonomously what algorithm is best suited for * sorting the list wrt its current status. * * @param l list to operate * @param versus positive: order small to big; negative: order big to small * @return 0: sorting went OK non-0: errors happened * * @see list_attributes_comparator() * @see list_attributes_keymaker() */ int list_sort(list_t *restrict l, int versus); /** * start an iteration session. * * This function prepares the list to be iterated. * * @param l list to operate * @return 0 if the list cannot be currently iterated. >0 otherwise * * @see list_iterator_stop() */ int list_iterator_start(list_t *restrict l); /** * return the next element in the iteration session. * * @param l list to operate * @return element datum, or NULL on errors */ void *list_iterator_next(list_t *restrict l); /** * inspect whether more elements are available in the iteration session. * * @param l list to operate * @return 0 iff no more elements are available. */ int list_iterator_hasnext(const list_t *restrict l); /** * end an iteration session. * * @param l list to operate * @return 0 iff the iteration session cannot be stopped */ int list_iterator_stop(list_t *restrict l); /** * return the hash of the current status of the list. * * @param l list to operate * @param hash where the resulting hash is put * * @return 0 for success; <0 for failure */ int list_hash(const list_t *restrict l, list_hash_t *restrict hash); #ifndef SIMCLIST_NO_DUMPRESTORE /** * get meta informations on a list dump on filedescriptor. * * [ advanced function ] * * Extracts the meta information from a SimCList dump located in a file * descriptor. The file descriptor must be open and positioned at the * beginning of the SimCList dump block. * * @param fd file descriptor to get metadata from * @param info reference to a dump metainformation structure to fill * @return 0 for success; <0 for failure * * @see list_dump_filedescriptor() */ int list_dump_getinfo_filedescriptor(int fd, list_dump_info_t *restrict info); /** * get meta informations on a list dump on file. * * [ advanced function ] * * Extracts the meta information from a SimCList dump located in a file. * * @param filename filename of the file to fetch from * @param info reference to a dump metainformation structure to fill * @return 0 for success; <0 for failure * * @see list_dump_filedescriptor() */ int list_dump_getinfo_file(const char *restrict filename, list_dump_info_t *restrict info); /** * dump the list into an open, writable file descriptor. * * This function "dumps" the list to a persistent storage so it can be * preserved across process terminations. * When called, the file descriptor must be open for writing and positioned * where the serialized data must begin. It writes its serialization of the * list in a form which is portable across different architectures. Dump can * be safely performed on stream-only (non seekable) descriptors. The file * descriptor is not closed at the end of the operations. * * To use dump functions, either of these conditions must be satisfied: * -# a metric function has been specified with list_attributes_copy() * -# a serializer function has been specified with list_attributes_serializer() * * If a metric function has been specified, each element of the list is dumped * as-is from memory, copying it from its pointer for its length down to the * file descriptor. This might have impacts on portability of the dump to * different architectures. * * If a serializer function has been specified, its result for each element is * dumped to the file descriptor. * * * @param l list to operate * @param fd file descriptor to write to * @param len location to store the resulting length of the dump (bytes), or NULL * * @return 0 if successful; -1 otherwise * * @see element_serializer() * @see list_attributes_copy() * @see list_attributes_serializer() */ int list_dump_filedescriptor(const list_t *restrict l, int fd, size_t *restrict len); /** * dump the list to a file name. * * This function creates a filename and dumps the current content of the list * to it. If the file exists it is overwritten. The number of bytes written to * the file can be returned in a specified argument. * * @param l list to operate * @param filename filename to write to * @param len location to store the resulting length of the dump (bytes), or NULL * * @return 0 if successful; -1 otherwise * * @see list_attributes_copy() * @see element_serializer() * @see list_attributes_serializer() * @see list_dump_filedescriptor() * @see list_restore_file() * * This function stores a representation of the list */ int list_dump_file(const list_t *restrict l, const char *restrict filename, size_t *restrict len); /** * restore the list from an open, readable file descriptor to memory. * * This function is the "inverse" of list_dump_filedescriptor(). It restores * the list content from a (open, read-ready) file descriptor to memory. An * unserializer might be needed to restore elements from the persistent * representation back into memory-consistent format. List attributes can not * be restored and must be set manually. * * @see list_dump_filedescriptor() * @see list_attributes_serializer() * @see list_attributes_unserializer() * * @param l list to restore to * @param fd file descriptor to read from. * @param len location to store the length of the dump read (bytes), or NULL * @return 0 if successful; -1 otherwise */ int list_restore_filedescriptor(list_t *restrict l, int fd, size_t *restrict len); /** * restore the list from a file name. * * This function restores the content of a list from a file into memory. It is * the inverse of list_dump_file(). * * @see element_unserializer() * @see list_attributes_unserializer() * @see list_dump_file() * @see list_restore_filedescriptor() * * @param l list to restore to * @param filename filename to read data from * @param len location to store the length of the dump read (bytes), or NULL * @return 0 if successful; -1 otherwise */ int list_restore_file(list_t *restrict l, const char *restrict filename, size_t *len); #endif /* ready-made comparators, meters and hash computers */ /* comparator functions */ /** * ready-made comparator for int8_t elements. * @see list_attributes_comparator() */ int list_comparator_int8_t(const void *a, const void *b); /** * ready-made comparator for int16_t elements. * @see list_attributes_comparator() */ int list_comparator_int16_t(const void *a, const void *b); /** * ready-made comparator for int32_t elements. * @see list_attributes_comparator() */ int list_comparator_int32_t(const void *a, const void *b); /** * ready-made comparator for int64_t elements. * @see list_attributes_comparator() */ int list_comparator_int64_t(const void *a, const void *b); /** * ready-made comparator for uint8_t elements. * @see list_attributes_comparator() */ int list_comparator_uint8_t(const void *a, const void *b); /** * ready-made comparator for uint16_t elements. * @see list_attributes_comparator() */ int list_comparator_uint16_t(const void *a, const void *b); /** * ready-made comparator for uint32_t elements. * @see list_attributes_comparator() */ int list_comparator_uint32_t(const void *a, const void *b); /** * ready-made comparator for uint64_t elements. * @see list_attributes_comparator() */ int list_comparator_uint64_t(const void *a, const void *b); /** * ready-made comparator for float elements. * @see list_attributes_comparator() */ int list_comparator_float(const void *a, const void *b); /** * ready-made comparator for double elements. * @see list_attributes_comparator() */ int list_comparator_double(const void *a, const void *b); /** * ready-made comparator for string elements. * @see list_attributes_comparator() */ int list_comparator_string(const void *a, const void *b); /* metric functions */ /** * ready-made metric function for int8_t elements. * @see list_attributes_copy() */ size_t list_meter_int8_t(const void *el); /** * ready-made metric function for int16_t elements. * @see list_attributes_copy() */ size_t list_meter_int16_t(const void *el); /** * ready-made metric function for int32_t elements. * @see list_attributes_copy() */ size_t list_meter_int32_t(const void *el); /** * ready-made metric function for int64_t elements. * @see list_attributes_copy() */ size_t list_meter_int64_t(const void *el); /** * ready-made metric function for uint8_t elements. * @see list_attributes_copy() */ size_t list_meter_uint8_t(const void *el); /** * ready-made metric function for uint16_t elements. * @see list_attributes_copy() */ size_t list_meter_uint16_t(const void *el); /** * ready-made metric function for uint32_t elements. * @see list_attributes_copy() */ size_t list_meter_uint32_t(const void *el); /** * ready-made metric function for uint64_t elements. * @see list_attributes_copy() */ size_t list_meter_uint64_t(const void *el); /** * ready-made metric function for float elements. * @see list_attributes_copy() */ size_t list_meter_float(const void *el); /** * ready-made metric function for double elements. * @see list_attributes_copy() */ size_t list_meter_double(const void *el); /** * ready-made metric function for string elements. * @see list_attributes_copy() */ size_t list_meter_string(const void *el); /* hash functions */ /** * ready-made hash function for int8_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_int8_t(const void *el); /** * ready-made hash function for int16_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_int16_t(const void *el); /** * ready-made hash function for int32_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_int32_t(const void *el); /** * ready-made hash function for int64_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_int64_t(const void *el); /** * ready-made hash function for uint8_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_uint8_t(const void *el); /** * ready-made hash function for uint16_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_uint16_t(const void *el); /** * ready-made hash function for uint32_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_uint32_t(const void *el); /** * ready-made hash function for uint64_t elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_uint64_t(const void *el); /** * ready-made hash function for float elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_float(const void *el); /** * ready-made hash function for double elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_double(const void *el); /** * ready-made hash function for string elements. * @see list_attributes_hash_computer() */ list_hash_t list_hashcomputer_string(const void *el); #ifdef __cplusplus } #endif #endif sshguard-2.4.3/src/common/config.h.in000644 001751 001751 00000011455 14447664672 020354 0ustar00kevinzkevinz000000 000000 /* src/common/config.h.in. Generated from configure.ac by autoheader. */ /* Use Capsicum */ #undef CAPSICUM /* Define to 1 if you have the header file. */ #undef HAVE_CAPSICUM_HELPERS_H /* Define to 1 if you have the header file. */ #undef HAVE_GETOPT_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_LIBCASPER_H /* Define to 1 if you have the header file. */ #undef HAVE_MINIX_CONFIG_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDIO_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to 1 if you have the header file. */ #undef HAVE_WCHAR_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if all of the C90 standard headers exist (not just the ones required in a freestanding environment). This macro is provided for backward compatibility; new code need not use it. */ #undef STDC_HEADERS /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable general extensions on macOS. */ #ifndef _DARWIN_C_SOURCE # undef _DARWIN_C_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable X/Open compliant socket functions that do not require linking with -lxnet on HP-UX 11.11. */ #ifndef _HPUX_ALT_XOPEN_SOCKET_API # undef _HPUX_ALT_XOPEN_SOCKET_API #endif /* Identify the host operating system as Minix. This macro does not affect the system headers' behavior. A future release of Autoconf may stop defining this macro. */ #ifndef _MINIX # undef _MINIX #endif /* Enable general extensions on NetBSD. Enable NetBSD compatibility extensions on Minix. */ #ifndef _NETBSD_SOURCE # undef _NETBSD_SOURCE #endif /* Enable OpenBSD compatibility extensions on NetBSD. Oddly enough, this does nothing on OpenBSD. */ #ifndef _OPENBSD_SOURCE # undef _OPENBSD_SOURCE #endif /* Define to 1 if needed for POSIX-compatible behavior. */ #ifndef _POSIX_SOURCE # undef _POSIX_SOURCE #endif /* Define to 2 if needed for POSIX-compatible behavior. */ #ifndef _POSIX_1_SOURCE # undef _POSIX_1_SOURCE #endif /* Enable POSIX-compatible threading on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */ #ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__ # undef __STDC_WANT_IEC_60559_ATTRIBS_EXT__ #endif /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */ #ifndef __STDC_WANT_IEC_60559_BFP_EXT__ # undef __STDC_WANT_IEC_60559_BFP_EXT__ #endif /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */ #ifndef __STDC_WANT_IEC_60559_DFP_EXT__ # undef __STDC_WANT_IEC_60559_DFP_EXT__ #endif /* Enable extensions specified by ISO/IEC TS 18661-4:2015. */ #ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__ # undef __STDC_WANT_IEC_60559_FUNCS_EXT__ #endif /* Enable extensions specified by ISO/IEC TS 18661-3:2015. */ #ifndef __STDC_WANT_IEC_60559_TYPES_EXT__ # undef __STDC_WANT_IEC_60559_TYPES_EXT__ #endif /* Enable extensions specified by ISO/IEC TR 24731-2:2010. */ #ifndef __STDC_WANT_LIB_EXT2__ # undef __STDC_WANT_LIB_EXT2__ #endif /* Enable extensions specified by ISO/IEC 24747:2009. */ #ifndef __STDC_WANT_MATH_SPEC_FUNCS__ # undef __STDC_WANT_MATH_SPEC_FUNCS__ #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable X/Open extensions. Define to 500 only if necessary to make mbstate_t available. */ #ifndef _XOPEN_SOURCE # undef _XOPEN_SOURCE #endif /* Version number of package */ #undef VERSION /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a `char[]'. */ #undef YYTEXT_POINTER sshguard-2.4.3/src/common/sandbox.h000644 001751 001751 00000000466 14446632410 020120 0ustar00kevinzkevinz000000 000000 #pragma once #include "config.h" #if defined(CAPSICUM) #define WITH_CASPER #include #include #include extern cap_channel_t *capcas, *capnet; #define getaddrinfo(name, serv, hints, res) cap_getaddrinfo(capnet, name, serv, hints, res) #endif void sandbox_init(); sshguard-2.4.3/src/common/simclist.c000644 001751 001751 00000135024 14152213136 020275 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SimCList library. See http://mij.oltrelinux.com/devel/simclist */ /* SimCList implementation, version 1.4.4rc4 */ #include #include #include /* for setting errno */ #include #include /* for READ_ERRCHECK() and write() */ #include /* for open() etc */ #include /* for htons() */ #include #include /* for time() for random seed */ #include /* for gettimeofday() */ #include /* for open()'s access modes S_IRUSR etc */ #include #include /* work around lack of inttypes.h support in broken Microsoft Visual Studio compilers */ #if !defined(WIN32) || !defined(_MSC_VER) # include /* (u)int*_t */ #else # include typedef UINT8 uint8_t; typedef UINT16 uint16_t; typedef ULONG32 uint32_t; typedef UINT64 uint64_t; typedef INT8 int8_t; typedef INT16 int16_t; typedef LONG32 int32_t; typedef INT64 int64_t; #endif #ifndef SIMCLIST_NO_DUMPRESTORE /* convert 64bit integers from host to network format */ #define hton64(x) (\ htons(1) == 1 ? \ (uint64_t)x /* big endian */ \ : /* little endian */ \ ((uint64_t)((((uint64_t)(x) & 0xff00000000000000ULL) >> 56) | \ (((uint64_t)(x) & 0x00ff000000000000ULL) >> 40) | \ (((uint64_t)(x) & 0x0000ff0000000000ULL) >> 24) | \ (((uint64_t)(x) & 0x000000ff00000000ULL) >> 8) | \ (((uint64_t)(x) & 0x00000000ff000000ULL) << 8) | \ (((uint64_t)(x) & 0x0000000000ff0000ULL) << 24) | \ (((uint64_t)(x) & 0x000000000000ff00ULL) << 40) | \ (((uint64_t)(x) & 0x00000000000000ffULL) << 56))) \ ) /* convert 64bit integers from network to host format */ #define ntoh64(x) (hton64(x)) #endif /* some OSes don't have EPROTO (eg OpenBSD) */ #ifndef EPROTO #define EPROTO EIO #endif /* disable asserts */ #ifndef SIMCLIST_DEBUG #define NDEBUG #endif #include #ifdef SIMCLIST_WITH_THREADS /* limit (approx) to the number of threads running * for threaded operations. Only meant when * SIMCLIST_WITH_THREADS is defined */ #define SIMCLIST_MAXTHREADS 2 #endif /* * how many elems to keep as spare. During a deletion, an element * can be saved in a "free-list", not free()d immediately. When * latter insertions are performed, spare elems can be used instead * of malloc()ing new elems. * * about this param, some values for appending * 10 million elems into an empty list: * (#, time[sec], gain[%], gain/no[%]) * 0 2,164 0,00 0,00 <-- feature disabled * 1 1,815 34,9 34,9 * 2 1,446 71,8 35,9 <-- MAX gain/no * 3 1,347 81,7 27,23 * 5 1,213 95,1 19,02 * 8 1,064 110,0 13,75 * 10 1,015 114,9 11,49 <-- MAX gain w/ likely sol * 15 1,019 114,5 7,63 * 25 0,985 117,9 4,72 * 50 1,088 107,6 2,15 * 75 1,016 114,8 1,53 * 100 0,988 117,6 1,18 * 150 1,022 114,2 0,76 * 200 0,939 122,5 0,61 <-- MIN time */ #ifndef SIMCLIST_MAX_SPARE_ELEMS #define SIMCLIST_MAX_SPARE_ELEMS 5 #endif #ifdef SIMCLIST_WITH_THREADS #include #endif #include "simclist.h" /* minumum number of elements for sorting with quicksort instead of insertion */ #define SIMCLIST_MINQUICKSORTELS 24 /* list dump declarations */ #define SIMCLIST_DUMPFORMAT_VERSION 1 /* (short integer) version of fileformat managed by _dump* and _restore* functions */ #define SIMCLIST_DUMPFORMAT_HEADERLEN 30 /* length of the header */ /* header for a list dump */ struct list_dump_header_s { uint16_t ver; /* version */ int64_t timestamp; /* dump timestamp */ int32_t rndterm; /* random value terminator -- terminates the data sequence */ uint32_t totlistlen; /* sum of every element' size, bytes */ uint32_t numels; /* number of elements */ uint32_t elemlen; /* bytes length of an element, for constant-size lists, <= 0 otherwise */ int32_t listhash; /* hash of the list at the time of dumping, or 0 if to be ignored */ }; /* deletes tmp from list, with care wrt its position (head, tail, middle) */ static int list_drop_elem(list_t *restrict l, struct list_entry_s *tmp, unsigned int pos); /* set default values for initialized lists */ static int list_attributes_setdefaults(list_t *restrict l); #ifndef NDEBUG /* check whether the list internal REPresentation is valid -- Costs O(n) */ static int list_repOk(const list_t *restrict l); /* check whether the list attribute set is valid -- Costs O(1) */ static int list_attrOk(const list_t *restrict l); #endif /* do not inline, this is recursive */ static void list_sort_quicksort(list_t *restrict l, int versus, unsigned int first, struct list_entry_s *fel, unsigned int last, struct list_entry_s *lel); static inline void list_sort_selectionsort(list_t *restrict l, int versus, unsigned int first, struct list_entry_s *fel, unsigned int last, struct list_entry_s *lel); static void *list_get_minmax(const list_t *restrict l, int versus); static inline struct list_entry_s *list_findpos(const list_t *restrict l, int posstart); /* write() decorated with error checking logic */ #define WRITE_ERRCHECK(fd, msgbuf, msglen) do { \ if (write(fd, msgbuf, msglen) < 0) return -1; \ } while (0); /* READ_ERRCHECK() decorated with error checking logic */ #define READ_ERRCHECK(fd, msgbuf, msglen) do { \ if (read(fd, msgbuf, msglen) != msglen) { \ /*errno = EPROTO;*/ \ return -1; \ } \ } while (0); /* * Random Number Generator * * The user is expected to seed the RNG (ie call srand()) if * SIMCLIST_SYSTEM_RNG is defined. * * Otherwise, a self-contained RNG based on LCG is used; see * http://en.wikipedia.org/wiki/Linear_congruential_generator . * * Facts pro local RNG: * 1. no need for the user to call srand() on his own * 2. very fast, possibly faster than OS * 3. avoid interference with user's RNG * * Facts pro system RNG: * 1. may be more accurate (irrelevant for SimCList randno purposes) * 2. why reinvent the wheel * * Default to local RNG for user's ease of use. */ #ifdef SIMCLIST_SYSTEM_RNG /* keep track whether we initialized already (non-0) or not (0) */ static unsigned random_seed = 0; /* use local RNG */ static inline void seed_random() { if (random_seed == 0) random_seed = (unsigned)getpid() ^ (unsigned)time(NULL); } static inline long get_random() { random_seed = (1664525 * random_seed + 1013904223); return random_seed; } #else /* use OS's random generator */ # define seed_random() # define get_random() (rand()) #endif /* list initialization */ int list_init(list_t *restrict l) { if (l == NULL) return -1; seed_random(); l->numels = 0; /* head/tail sentinels and mid pointer */ l->head_sentinel = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); l->tail_sentinel = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); l->head_sentinel->next = l->tail_sentinel; l->tail_sentinel->prev = l->head_sentinel; l->head_sentinel->prev = l->tail_sentinel->next = l->mid = NULL; l->head_sentinel->data = l->tail_sentinel->data = NULL; /* iteration attributes */ l->iter_active = 0; l->iter_pos = 0; l->iter_curentry = NULL; /* free-list attributes */ l->spareels = (struct list_entry_s **)malloc(SIMCLIST_MAX_SPARE_ELEMS * sizeof(struct list_entry_s *)); l->spareelsnum = 0; #ifdef SIMCLIST_WITH_THREADS l->threadcount = 0; #endif list_attributes_setdefaults(l); assert(list_repOk(l)); assert(list_attrOk(l)); return 0; } void list_destroy(list_t *restrict l) { unsigned int i; list_clear(l); for (i = 0; i < l->spareelsnum; i++) { free(l->spareels[i]); } free(l->spareels); free(l->head_sentinel); free(l->tail_sentinel); } int list_attributes_setdefaults(list_t *restrict l) { l->attrs.comparator = NULL; l->attrs.seeker = NULL; /* also free() element data when removing and element from the list */ l->attrs.meter = NULL; l->attrs.copy_data = 0; l->attrs.hasher = NULL; /* serializer/unserializer */ l->attrs.serializer = NULL; l->attrs.unserializer = NULL; assert(list_attrOk(l)); return 0; } /* setting list properties */ int list_attributes_comparator(list_t *restrict l, element_comparator comparator_fun) { if (l == NULL) return -1; l->attrs.comparator = comparator_fun; assert(list_attrOk(l)); return 0; } int list_attributes_keymaker(list_t *restrict l, element_keymaker keymaker_fun) { if (l == NULL) return -1; l->attrs.keymaker = keymaker_fun; assert(list_attrOk(l)); return 0; } int list_attributes_seeker(list_t *restrict l, element_seeker seeker_fun) { if (l == NULL) return -1; l->attrs.seeker = seeker_fun; assert(list_attrOk(l)); return 0; } int list_attributes_copy(list_t *restrict l, element_meter metric_fun, int copy_data) { if (l == NULL || (metric_fun == NULL && copy_data != 0)) return -1; l->attrs.meter = metric_fun; l->attrs.copy_data = copy_data; assert(list_attrOk(l)); return 0; } int list_attributes_hash_computer(list_t *restrict l, element_hash_computer hash_computer_fun) { if (l == NULL) return -1; l->attrs.hasher = hash_computer_fun; assert(list_attrOk(l)); return 0; } int list_attributes_serializer(list_t *restrict l, element_serializer serializer_fun) { if (l == NULL) return -1; l->attrs.serializer = serializer_fun; assert(list_attrOk(l)); return 0; } int list_attributes_unserializer(list_t *restrict l, element_unserializer unserializer_fun) { if (l == NULL) return -1; l->attrs.unserializer = unserializer_fun; assert(list_attrOk(l)); return 0; } int list_append(list_t *restrict l, const void *data) { return list_insert_at(l, data, l->numels); } int list_prepend(list_t *restrict l, const void *data) { return list_insert_at(l, data, 0); } void *list_fetch(list_t *restrict l) { return list_extract_at(l, 0); } void *list_get_at(const list_t *restrict l, unsigned int pos) { struct list_entry_s *tmp; tmp = list_findpos(l, pos); return (tmp != NULL ? tmp->data : NULL); } void *list_get_max(const list_t *restrict l) { return list_get_minmax(l, +1); } void *list_get_min(const list_t *restrict l) { return list_get_minmax(l, -1); } /* REQUIRES {list->numels >= 1} * return the min (versus < 0) or max value (v > 0) in l */ static void *list_get_minmax(const list_t *restrict l, int versus) { void *curminmax; struct list_entry_s *s; if (l->attrs.comparator == NULL || l->numels == 0) return NULL; curminmax = l->head_sentinel->next->data; for (s = l->head_sentinel->next->next; s != l->tail_sentinel; s = s->next) { if (l->attrs.comparator(curminmax, s->data) * versus > 0) curminmax = s->data; } return curminmax; } /* set tmp to point to element at index posstart in l */ static inline struct list_entry_s *list_findpos(const list_t *restrict l, int posstart) { struct list_entry_s *ptr; float x; int i; /* accept 1 slot overflow for fetching head and tail sentinels */ if (posstart < -1 || posstart > (int)l->numels) return NULL; if (l->numels == 0) { /* fetching either head (-1) or tail (0) sentinels */ if (posstart == -1) return l->head_sentinel; return l->tail_sentinel; } x = (float)(posstart+1) / l->numels; if (x <= 0.25) { /* first quarter: get to posstart from head */ for (i = -1, ptr = l->head_sentinel; i < posstart; ptr = ptr->next, i++); } else if (x < 0.5) { /* second quarter: get to posstart from mid */ for (i = (l->numels-1)/2, ptr = l->mid; i > posstart; ptr = ptr->prev, i--); } else if (x <= 0.75) { /* third quarter: get to posstart from mid */ for (i = (l->numels-1)/2, ptr = l->mid; i < posstart; ptr = ptr->next, i++); } else { /* fourth quarter: get to posstart from tail */ for (i = l->numels, ptr = l->tail_sentinel; i > posstart; ptr = ptr->prev, i--); } return ptr; } void *list_extract_at(list_t *restrict l, unsigned int pos) { struct list_entry_s *tmp; void *data; if (l->iter_active || pos >= l->numels) return NULL; tmp = list_findpos(l, pos); data = tmp->data; tmp->data = NULL; /* save data from list_drop_elem() free() */ list_drop_elem(l, tmp, pos); l->numels--; assert(list_repOk(l)); return data; } int list_insert_at(list_t *restrict l, const void *data, unsigned int pos) { struct list_entry_s *lent, *succ, *prec; if (l->iter_active || pos > l->numels) return -1; /* this code optimizes malloc() with a free-list */ if (l->spareelsnum > 0) { lent = l->spareels[l->spareelsnum-1]; l->spareelsnum--; } else { lent = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); if (lent == NULL) return -1; } if (l->attrs.copy_data) { /* make room for user' data (has to be copied) */ size_t datalen = l->attrs.meter(data); lent->data = (struct list_entry_s *)malloc(datalen); memcpy(lent->data, data, datalen); } else { lent->data = (void*)data; } /* actually append element */ prec = list_findpos(l, pos-1); succ = prec->next; prec->next = lent; lent->prev = prec; lent->next = succ; succ->prev = lent; l->numels++; /* fix mid pointer */ if (l->numels == 1) { /* first element, set pointer */ l->mid = lent; } else if (l->numels % 2) { /* now odd */ if (pos >= (l->numels-1)/2) l->mid = l->mid->next; } else { /* now even */ if (pos <= (l->numels-1)/2) l->mid = l->mid->prev; } assert(list_repOk(l)); return 1; } int list_delete(list_t *restrict l, const void *data) { int pos, r; pos = list_locate(l, data); if (pos < 0) return -1; r = list_delete_at(l, pos); if (r < 0) return -1; assert(list_repOk(l)); return 0; } int list_delete_at(list_t *restrict l, unsigned int pos) { struct list_entry_s *delendo; if (l->iter_active || pos >= l->numels) return -1; delendo = list_findpos(l, pos); list_drop_elem(l, delendo, pos); l->numels--; assert(list_repOk(l)); return 0; } int list_delete_range(list_t *restrict l, unsigned int posstart, unsigned int posend) { struct list_entry_s *lastvalid, *tmp, *tmp2; unsigned int i; int movedx; unsigned int numdel, midposafter; if (l->iter_active || posend < posstart || posend >= l->numels) return -1; tmp = list_findpos(l, posstart); /* first el to be deleted */ lastvalid = tmp->prev; /* last valid element */ numdel = posend - posstart + 1; midposafter = (l->numels-1-numdel)/2; midposafter = midposafter < posstart ? midposafter : midposafter+numdel; movedx = midposafter - (l->numels-1)/2; if (movedx > 0) { /* move right */ for (i = 0; i < (unsigned int)movedx; l->mid = l->mid->next, i++); } else { /* move left */ movedx = -movedx; for (i = 0; i < (unsigned int)movedx; l->mid = l->mid->prev, i++); } assert(posstart == 0 || lastvalid != l->head_sentinel); i = posstart; if (l->attrs.copy_data) { /* also free element data */ for (; i <= posend; i++) { tmp2 = tmp; tmp = tmp->next; if (tmp2->data != NULL) free(tmp2->data); if (l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS) { l->spareels[l->spareelsnum++] = tmp2; } else { free(tmp2); } } } else { /* only free containers */ for (; i <= posend; i++) { tmp2 = tmp; tmp = tmp->next; if (l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS) { l->spareels[l->spareelsnum++] = tmp2; } else { free(tmp2); } } } assert(i == posend+1 && (posend != l->numels || tmp == l->tail_sentinel)); lastvalid->next = tmp; tmp->prev = lastvalid; l->numels -= posend - posstart + 1; assert(list_repOk(l)); return 0; } int list_clear(list_t *restrict l) { struct list_entry_s *s; if (l->iter_active) return -1; if (l->attrs.copy_data) { /* also free user data */ /* spare a loop conditional with two loops: spareing elems and freeing elems */ for (s = l->head_sentinel->next; l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS && s != l->tail_sentinel; s = s->next) { /* move elements as spares as long as there is room */ if (s->data != NULL) free(s->data); l->spareels[l->spareelsnum++] = s; } while (s != l->tail_sentinel) { /* free the remaining elems */ if (s->data != NULL) free(s->data); s = s->next; free(s->prev); } l->head_sentinel->next = l->tail_sentinel; l->tail_sentinel->prev = l->head_sentinel; } else { /* only free element containers */ /* spare a loop conditional with two loops: spareing elems and freeing elems */ for (s = l->head_sentinel->next; l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS && s != l->tail_sentinel; s = s->next) { /* move elements as spares as long as there is room */ l->spareels[l->spareelsnum++] = s; } while (s != l->tail_sentinel) { /* free the remaining elems */ s = s->next; free(s->prev); } l->head_sentinel->next = l->tail_sentinel; l->tail_sentinel->prev = l->head_sentinel; } l->numels = 0; l->mid = NULL; assert(list_repOk(l)); return 0; } unsigned int list_size(const list_t *restrict l) { return l->numels; } int list_empty(const list_t *restrict l) { return (l->numels == 0); } int list_locate(const list_t *restrict l, const void *data) { struct list_entry_s *el; int pos = 0; if (l->attrs.comparator != NULL) { /* use comparator */ for (el = l->head_sentinel->next; el != l->tail_sentinel; el = el->next, pos++) { if (l->attrs.comparator(data, el->data) == 0) break; } } else { /* compare references */ for (el = l->head_sentinel->next; el != l->tail_sentinel; el = el->next, pos++) { if (el->data == data) break; } } if (el == l->tail_sentinel) return -1; return pos; } void *list_seek(list_t *restrict l, const void *indicator) { const struct list_entry_s *iter; if (l->attrs.seeker == NULL) return NULL; for (iter = l->head_sentinel->next; iter != l->tail_sentinel; iter = iter->next) { if (l->attrs.seeker(iter->data, indicator) != 0) return iter->data; } return NULL; } int list_contains(const list_t *restrict l, const void *data) { return (list_locate(l, data) >= 0); } int list_concat(const list_t *l1, const list_t *l2, list_t *restrict dest) { struct list_entry_s *el, *srcel; unsigned int cnt; int err; if (l1 == NULL || l2 == NULL || dest == NULL || l1 == dest || l2 == dest) return -1; list_init(dest); dest->numels = l1->numels + l2->numels; if (dest->numels == 0) return 0; /* copy list1 */ srcel = l1->head_sentinel->next; el = dest->head_sentinel; while (srcel != l1->tail_sentinel) { el->next = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); el->next->prev = el; el = el->next; el->data = srcel->data; srcel = srcel->next; } dest->mid = el; /* approximate position (adjust later) */ /* copy list 2 */ srcel = l2->head_sentinel->next; while (srcel != l2->tail_sentinel) { el->next = (struct list_entry_s *)malloc(sizeof(struct list_entry_s)); el->next->prev = el; el = el->next; el->data = srcel->data; srcel = srcel->next; } el->next = dest->tail_sentinel; dest->tail_sentinel->prev = el; /* fix mid pointer */ err = l2->numels - l1->numels; if ((err+1)/2 > 0) { /* correct pos RIGHT (err-1)/2 moves */ err = (err+1)/2; for (cnt = 0; cnt < (unsigned int)err; cnt++) dest->mid = dest->mid->next; } else if (err/2 < 0) { /* correct pos LEFT (err/2)-1 moves */ err = -err/2; for (cnt = 0; cnt < (unsigned int)err; cnt++) dest->mid = dest->mid->prev; } assert(!(list_repOk(l1) && list_repOk(l2)) || list_repOk(dest)); return 0; } int list_sort(list_t *restrict l, int versus) { if (l->iter_active || (l->attrs.comparator == NULL && l->attrs.keymaker == NULL)) /* cannot modify list in the middle of an iteration */ return -1; if (l->numels <= 1) return 0; list_sort_quicksort(l, versus, 0, l->head_sentinel->next, l->numels-1, l->tail_sentinel->prev); assert(list_repOk(l)); return 0; } #ifdef SIMCLIST_WITH_THREADS struct list_sort_wrappedparams { list_t *restrict l; int versus; unsigned int first, last; struct list_entry_s *fel, *lel; }; static void *list_sort_quicksort_threadwrapper(void *wrapped_params) { struct list_sort_wrappedparams *wp = (struct list_sort_wrappedparams *)wrapped_params; list_sort_quicksort(wp->l, wp->versus, wp->first, wp->fel, wp->last, wp->lel); free(wp); pthread_exit(NULL); return NULL; } #endif static inline int el_compare(const list_t *l, const void *a, const void *b) { if (l->attrs.keymaker != NULL) { /* keymaker function available */ long int na, nb; na = l->attrs.keymaker(a); nb = l->attrs.keymaker(b); return (na - nb) - (nb - na); } /* use comparator function */ assert(l->comparator != NULL); return l->attrs.comparator(a, b); } static inline void list_sort_selectionsort(list_t *restrict l, int versus, unsigned int first, struct list_entry_s *fel, unsigned int last, struct list_entry_s *lel) { struct list_entry_s *cursor, *toswap, *firstunsorted; void *tmpdata; if (last <= first) /* <= 1-element lists are always sorted */ return; for (firstunsorted = fel; firstunsorted != lel; firstunsorted = firstunsorted->next) { /* find min or max in the remainder of the list */ for (toswap = firstunsorted, cursor = firstunsorted->next; cursor != lel->next; cursor = cursor->next) if (el_compare(l, toswap->data, cursor->data) * -versus > 0) toswap = cursor; if (toswap != firstunsorted) { /* swap firstunsorted with toswap */ tmpdata = firstunsorted->data; firstunsorted->data = toswap->data; toswap->data = tmpdata; } } } static void list_sort_quicksort(list_t *restrict l, int versus, unsigned int first, struct list_entry_s *fel, unsigned int last, struct list_entry_s *lel) { unsigned int pivotid; unsigned int i; register struct list_entry_s *pivot; struct list_entry_s *left, *right; void *tmpdata; #ifdef SIMCLIST_WITH_THREADS pthread_t tid; int traised; #endif if (last <= first) /* <= 1-element lists are always sorted */ return; if (last - first+1 <= SIMCLIST_MINQUICKSORTELS) { list_sort_selectionsort(l, versus, first, fel, last, lel); return; } /* base of iteration: one element list */ if (! (last > first)) return; pivotid = (get_random() % (last - first + 1)); /* pivotid = (last - first + 1) / 2; */ /* find pivot */ if (pivotid < (last - first + 1)/2) { for (i = 0, pivot = fel; i < pivotid; pivot = pivot->next, i++); } else { for (i = last - first, pivot = lel; i > pivotid; pivot = pivot->prev, i--); } /* smaller PIVOT bigger */ left = fel; right = lel; /* iterate --- left ---> PIV <--- right --- */ while (left != pivot && right != pivot) { for (; left != pivot && (el_compare(l, left->data, pivot->data) * -versus <= 0); left = left->next); /* left points to a smaller element, or to pivot */ for (; right != pivot && (el_compare(l, right->data, pivot->data) * -versus >= 0); right = right->prev); /* right points to a bigger element, or to pivot */ if (left != pivot && right != pivot) { /* swap, then move iterators */ tmpdata = left->data; left->data = right->data; right->data = tmpdata; left = left->next; right = right->prev; } } /* now either left points to pivot (end run), or right */ if (right == pivot) { /* left part longer */ while (left != pivot) { if (el_compare(l, left->data, pivot->data) * -versus > 0) { tmpdata = left->data; left->data = pivot->prev->data; pivot->prev->data = pivot->data; pivot->data = tmpdata; pivot = pivot->prev; pivotid--; if (pivot == left) break; } else { left = left->next; } } } else { /* right part longer */ while (right != pivot) { if (el_compare(l, right->data, pivot->data) * -versus < 0) { /* move current right before pivot */ tmpdata = right->data; right->data = pivot->next->data; pivot->next->data = pivot->data; pivot->data = tmpdata; pivot = pivot->next; pivotid++; if (pivot == right) break; } else { right = right->prev; } } } /* sort sublists A and B : |---A---| pivot |---B---| */ #ifdef SIMCLIST_WITH_THREADS traised = 0; if (pivotid > 0) { /* prepare wrapped args, then start thread */ if (l->threadcount < SIMCLIST_MAXTHREADS-1) { struct list_sort_wrappedparams *wp = (struct list_sort_wrappedparams *)malloc(sizeof(struct list_sort_wrappedparams)); l->threadcount++; traised = 1; wp->l = l; wp->versus = versus; wp->first = first; wp->fel = fel; wp->last = first+pivotid-1; wp->lel = pivot->prev; if (pthread_create(&tid, NULL, list_sort_quicksort_threadwrapper, wp) != 0) { free(wp); traised = 0; list_sort_quicksort(l, versus, first, fel, first+pivotid-1, pivot->prev); } } else { list_sort_quicksort(l, versus, first, fel, first+pivotid-1, pivot->prev); } } if (first + pivotid < last) list_sort_quicksort(l, versus, first+pivotid+1, pivot->next, last, lel); if (traised) { pthread_join(tid, (void **)NULL); l->threadcount--; } #else if (pivotid > 0) list_sort_quicksort(l, versus, first, fel, first+pivotid-1, pivot->prev); if (first + pivotid < last) list_sort_quicksort(l, versus, first+pivotid+1, pivot->next, last, lel); #endif } int list_iterator_start(list_t *restrict l) { if (l->iter_active) return 0; l->iter_pos = 0; l->iter_active = 1; l->iter_curentry = l->head_sentinel->next; return 1; } void *list_iterator_next(list_t *restrict l) { void *toret; if (! l->iter_active) return NULL; toret = l->iter_curentry->data; l->iter_curentry = l->iter_curentry->next; l->iter_pos++; return toret; } int list_iterator_hasnext(const list_t *restrict l) { if (! l->iter_active) return 0; return (l->iter_pos < l->numels); } int list_iterator_stop(list_t *restrict l) { if (! l->iter_active) return 0; l->iter_pos = 0; l->iter_active = 0; return 1; } int list_hash(const list_t *restrict l, list_hash_t *restrict hash) { struct list_entry_s *x; list_hash_t tmphash; assert(hash != NULL); tmphash = l->numels * 2 + 100; if (l->attrs.hasher == NULL) { #ifdef SIMCLIST_ALLOW_LOCATIONBASED_HASHES /* ENABLE WITH CARE !! */ #warning "Memlocation-based hash is consistent only for testing modification in the same program run." int i; /* only use element references */ for (x = l->head_sentinel->next; x != l->tail_sentinel; x = x->next) { for (i = 0; i < sizeof(x->data); i++) { tmphash += (tmphash ^ (uintptr_t)x->data); } tmphash += tmphash % l->numels; } #else return -1; #endif } else { /* hash each element with the user-given function */ for (x = l->head_sentinel->next; x != l->tail_sentinel; x = x->next) { tmphash += tmphash ^ l->attrs.hasher(x->data); tmphash +=* hash % l->numels; } } *hash = tmphash; return 0; } #ifndef SIMCLIST_NO_DUMPRESTORE int list_dump_getinfo_filedescriptor(int fd, list_dump_info_t *restrict info) { int32_t terminator_head, terminator_tail; uint32_t elemlen; off_t hop; /* version */ READ_ERRCHECK(fd, & info->version, sizeof(info->version)); info->version = ntohs(info->version); if (info->version > SIMCLIST_DUMPFORMAT_VERSION) { errno = EILSEQ; return -1; } /* timestamp */ READ_ERRCHECK(fd, & info->timestamp, sizeof(info->timestamp)); info->timestamp = hton64(info->timestamp); /* list terminator (to check thereafter) */ READ_ERRCHECK(fd, & terminator_head, sizeof(terminator_head)); terminator_head = ntohl(terminator_head); /* list size */ READ_ERRCHECK(fd, & info->list_size, sizeof(info->list_size)); info->list_size = ntohl(info->list_size); /* number of elements */ READ_ERRCHECK(fd, & info->list_numels, sizeof(info->list_numels)); info->list_numels = ntohl(info->list_numels); /* length of each element (for checking for consistency) */ READ_ERRCHECK(fd, & elemlen, sizeof(elemlen)); elemlen = ntohl(elemlen); /* list hash */ READ_ERRCHECK(fd, & info->list_hash, sizeof(info->list_hash)); info->list_hash = ntohl(info->list_hash); /* check consistency */ if (elemlen > 0) { /* constant length, hop by size only */ hop = info->list_size; } else { /* non-constant length, hop by size + all element length blocks */ hop = info->list_size + elemlen*info->list_numels; } if (lseek(fd, hop, SEEK_CUR) == -1) { return -1; } /* read the trailing value and compare with terminator_head */ READ_ERRCHECK(fd, & terminator_tail, sizeof(terminator_tail)); terminator_tail = ntohl(terminator_tail); if (terminator_head == terminator_tail) info->consistent = 1; else info->consistent = 0; return 0; } int list_dump_getinfo_file(const char *restrict filename, list_dump_info_t *restrict info) { int fd, ret; fd = open(filename, O_RDONLY, 0); if (fd < 0) return -1; ret = list_dump_getinfo_filedescriptor(fd, info); close(fd); return ret; } int list_dump_filedescriptor(const list_t *restrict l, int fd, size_t *restrict len) { struct list_entry_s *x; void *ser_buf; uint32_t bufsize; struct timeval timeofday; struct list_dump_header_s header; if (l->attrs.meter == NULL && l->attrs.serializer == NULL) { errno = ENOTTY; return -1; } /**** DUMP FORMAT **** [ ver timestamp | totlen numels elemlen hash | DATA ] where DATA can be: @ for constant-size list (element size is constant; elemlen > 0) [ elem elem ... elem ] @ for other lists (element size dictated by element_meter each time; elemlen <= 0) [ size elem size elem ... size elem ] all integers are encoded in NETWORK BYTE FORMAT *****/ /* prepare HEADER */ /* version */ header.ver = htons( SIMCLIST_DUMPFORMAT_VERSION ); /* timestamp */ gettimeofday(&timeofday, NULL); header.timestamp = (int64_t)timeofday.tv_sec * 1000000 + (int64_t)timeofday.tv_usec; header.timestamp = hton64(header.timestamp); header.rndterm = htonl((int32_t)get_random()); /* total list size is postprocessed afterwards */ /* number of elements */ header.numels = htonl(l->numels); /* include an hash, if possible */ if (l->attrs.hasher != NULL) { if (htonl(list_hash(l, & header.listhash)) != 0) { /* could not compute list hash! */ return -1; } } else { header.listhash = htonl(0); } header.totlistlen = header.elemlen = 0; /* leave room for the header at the beginning of the file */ if (lseek(fd, SIMCLIST_DUMPFORMAT_HEADERLEN, SEEK_SET) < 0) { /* errno set by lseek() */ return -1; } /* write CONTENT */ if (l->numels > 0) { /* SPECULATE that the list has constant element size */ if (l->attrs.serializer != NULL) { /* user user-specified serializer */ /* get preliminary length of serialized element in header.elemlen */ ser_buf = l->attrs.serializer(l->head_sentinel->next->data, & header.elemlen); free(ser_buf); /* request custom serialization of each element */ for (x = l->head_sentinel->next; x != l->tail_sentinel; x = x->next) { ser_buf = l->attrs.serializer(x->data, &bufsize); header.totlistlen += bufsize; if (header.elemlen != 0) { /* continue on speculation */ if (header.elemlen != bufsize) { free(ser_buf); /* constant element length speculation broken! */ header.elemlen = 0; header.totlistlen = 0; x = l->head_sentinel; if (lseek(fd, SIMCLIST_DUMPFORMAT_HEADERLEN, SEEK_SET) < 0) { /* errno set by lseek() */ return -1; } /* restart from the beginning */ continue; } /* speculation confirmed */ WRITE_ERRCHECK(fd, ser_buf, bufsize); } else { /* speculation found broken */ WRITE_ERRCHECK(fd, & bufsize, sizeof(size_t)); WRITE_ERRCHECK(fd, ser_buf, bufsize); } free(ser_buf); } } else if (l->attrs.meter != NULL) { header.elemlen = (uint32_t)l->attrs.meter(l->head_sentinel->next->data); /* serialize the element straight from its data */ for (x = l->head_sentinel->next; x != l->tail_sentinel; x = x->next) { bufsize = l->attrs.meter(x->data); header.totlistlen += bufsize; if (header.elemlen != 0) { if (header.elemlen != bufsize) { /* constant element length speculation broken! */ header.elemlen = 0; header.totlistlen = 0; x = l->head_sentinel; /* restart from the beginning */ continue; } WRITE_ERRCHECK(fd, x->data, bufsize); } else { WRITE_ERRCHECK(fd, &bufsize, sizeof(size_t)); WRITE_ERRCHECK(fd, x->data, bufsize); } } } /* adjust endianness */ header.elemlen = htonl(header.elemlen); header.totlistlen = htonl(header.totlistlen); } /* write random terminator */ WRITE_ERRCHECK(fd, & header.rndterm, sizeof(header.rndterm)); /* list terminator */ /* write header */ lseek(fd, 0, SEEK_SET); WRITE_ERRCHECK(fd, & header.ver, sizeof(header.ver)); /* version */ WRITE_ERRCHECK(fd, & header.timestamp, sizeof(header.timestamp)); /* timestamp */ WRITE_ERRCHECK(fd, & header.rndterm, sizeof(header.rndterm)); /* random terminator */ WRITE_ERRCHECK(fd, & header.totlistlen, sizeof(header.totlistlen)); /* total length of elements */ WRITE_ERRCHECK(fd, & header.numels, sizeof(header.numels)); /* number of elements */ WRITE_ERRCHECK(fd, & header.elemlen, sizeof(header.elemlen)); /* size of each element, or 0 for independent */ WRITE_ERRCHECK(fd, & header.listhash, sizeof(header.listhash)); /* list hash, or 0 for "ignore" */ /* possibly store total written length in "len" */ if (len != NULL) { *len = sizeof(header) + ntohl(header.totlistlen); } return 0; } int list_restore_filedescriptor(list_t *restrict l, int fd, size_t *restrict len) { struct list_dump_header_s header; unsigned long cnt; void *buf; uint32_t elsize, totreadlen, totmemorylen; memset(& header, 0, sizeof(header)); /* read header */ /* version */ READ_ERRCHECK(fd, &header.ver, sizeof(header.ver)); header.ver = ntohs(header.ver); if (header.ver != SIMCLIST_DUMPFORMAT_VERSION) { errno = EILSEQ; return -1; } /* timestamp */ READ_ERRCHECK(fd, & header.timestamp, sizeof(header.timestamp)); /* list terminator */ READ_ERRCHECK(fd, & header.rndterm, sizeof(header.rndterm)); header.rndterm = ntohl(header.rndterm); /* total list size */ READ_ERRCHECK(fd, & header.totlistlen, sizeof(header.totlistlen)); header.totlistlen = ntohl(header.totlistlen); /* number of elements */ READ_ERRCHECK(fd, & header.numels, sizeof(header.numels)); header.numels = ntohl(header.numels); /* length of every element, or '0' = variable */ READ_ERRCHECK(fd, & header.elemlen, sizeof(header.elemlen)); header.elemlen = ntohl(header.elemlen); /* list hash, or 0 = 'ignore' */ READ_ERRCHECK(fd, & header.listhash, sizeof(header.listhash)); header.listhash = ntohl(header.listhash); /* read content */ totreadlen = totmemorylen = 0; if (header.elemlen > 0) { /* elements have constant size = header.elemlen */ if (l->attrs.unserializer != NULL) { /* use unserializer */ buf = malloc(header.elemlen); for (cnt = 0; cnt < header.numels; cnt++) { READ_ERRCHECK(fd, buf, header.elemlen); list_append(l, l->attrs.unserializer(buf, & elsize)); totmemorylen += elsize; } } else { /* copy verbatim into memory */ for (cnt = 0; cnt < header.numels; cnt++) { buf = malloc(header.elemlen); READ_ERRCHECK(fd, buf, header.elemlen); list_append(l, buf); } totmemorylen = header.numels * header.elemlen; } totreadlen = header.numels * header.elemlen; } else { /* elements have variable size. Each element is preceded by its size */ if (l->attrs.unserializer != NULL) { /* use unserializer */ for (cnt = 0; cnt < header.numels; cnt++) { READ_ERRCHECK(fd, & elsize, sizeof(elsize)); buf = malloc((size_t)elsize); READ_ERRCHECK(fd, buf, elsize); totreadlen += elsize; list_append(l, l->attrs.unserializer(buf, & elsize)); totmemorylen += elsize; } } else { /* copy verbatim into memory */ for (cnt = 0; cnt < header.numels; cnt++) { READ_ERRCHECK(fd, & elsize, sizeof(elsize)); buf = malloc(elsize); READ_ERRCHECK(fd, buf, elsize); totreadlen += elsize; list_append(l, buf); } totmemorylen = totreadlen; } } READ_ERRCHECK(fd, &elsize, sizeof(elsize)); /* read list terminator */ elsize = ntohl(elsize); /* possibly verify the list consistency */ /* wrt hash */ /* don't do that if (header.listhash != 0 && header.listhash != list_hash(l)) { errno = ECANCELED; return -1; } */ /* wrt header */ if (totreadlen != header.totlistlen && (int32_t)elsize == header.rndterm) { errno = EPROTO; return -1; } /* wrt file */ if (lseek(fd, 0, SEEK_CUR) != lseek(fd, 0, SEEK_END)) { errno = EPROTO; return -1; } if (len != NULL) { *len = totmemorylen; } return 0; } int list_dump_file(const list_t *restrict l, const char *restrict filename, size_t *restrict len) { int fd; size_t sizetoret; fd = open(filename, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); if (fd < 0) return -1; sizetoret = list_dump_filedescriptor(l, fd, len); close(fd); return sizetoret; } int list_restore_file(list_t *restrict l, const char *restrict filename, size_t *restrict len) { int fd; size_t totdata; fd = open(filename, O_RDONLY, 0); if (fd < 0) return -1; totdata = list_restore_filedescriptor(l, fd, len); close(fd); return totdata; } #endif /* ifndef SIMCLIST_NO_DUMPRESTORE */ static int list_drop_elem(list_t *restrict l, struct list_entry_s *tmp, unsigned int pos) { if (tmp == NULL) return -1; /* fix mid pointer. This is wrt the PRE situation */ if (l->numels % 2) { /* now odd */ /* sort out the base case by hand */ if (l->numels == 1) l->mid = NULL; else if (pos >= l->numels/2) l->mid = l->mid->prev; } else { /* now even */ if (pos < l->numels/2) l->mid = l->mid->next; } tmp->prev->next = tmp->next; tmp->next->prev = tmp->prev; /* free what's to be freed */ if (l->attrs.copy_data && tmp->data != NULL) free(tmp->data); if (l->spareelsnum < SIMCLIST_MAX_SPARE_ELEMS) { l->spareels[l->spareelsnum++] = tmp; } else { free(tmp); } return 0; } /* ready-made comparators and meters */ #define SIMCLIST_NUMBER_COMPARATOR(type) int list_comparator_##type(const void *a, const void *b) { return( *(type *)a < *(type *)b) - (*(type *)a > *(type *)b); } SIMCLIST_NUMBER_COMPARATOR(int8_t) SIMCLIST_NUMBER_COMPARATOR(int16_t) SIMCLIST_NUMBER_COMPARATOR(int32_t) SIMCLIST_NUMBER_COMPARATOR(int64_t) SIMCLIST_NUMBER_COMPARATOR(uint8_t) SIMCLIST_NUMBER_COMPARATOR(uint16_t) SIMCLIST_NUMBER_COMPARATOR(uint32_t) SIMCLIST_NUMBER_COMPARATOR(uint64_t) SIMCLIST_NUMBER_COMPARATOR(float) SIMCLIST_NUMBER_COMPARATOR(double) int list_comparator_string(const void *a, const void *b) { return strcmp((const char *)b, (const char *)a); } /* ready-made metric functions */ #define SIMCLIST_METER(type) size_t list_meter_##type(const void *el) { if (el) { /* kill compiler whinge */ } return sizeof(type); } SIMCLIST_METER(int8_t) SIMCLIST_METER(int16_t) SIMCLIST_METER(int32_t) SIMCLIST_METER(int64_t) SIMCLIST_METER(uint8_t) SIMCLIST_METER(uint16_t) SIMCLIST_METER(uint32_t) SIMCLIST_METER(uint64_t) SIMCLIST_METER(float) SIMCLIST_METER(double) size_t list_meter_string(const void *el) { return strlen((const char *)el) + 1; } /* ready-made hashing functions */ #define SIMCLIST_HASHCOMPUTER(type) list_hash_t list_hashcomputer_##type(const void *el) { return (list_hash_t)(*(type *)el); } SIMCLIST_HASHCOMPUTER(int8_t) SIMCLIST_HASHCOMPUTER(int16_t) SIMCLIST_HASHCOMPUTER(int32_t) SIMCLIST_HASHCOMPUTER(int64_t) SIMCLIST_HASHCOMPUTER(uint8_t) SIMCLIST_HASHCOMPUTER(uint16_t) SIMCLIST_HASHCOMPUTER(uint32_t) SIMCLIST_HASHCOMPUTER(uint64_t) SIMCLIST_HASHCOMPUTER(float) SIMCLIST_HASHCOMPUTER(double) list_hash_t list_hashcomputer_string(const void *el) { size_t l; list_hash_t hash = 123; const char *str = (const char *)el; char plus; for (l = 0; str[l] != '\0'; l++) { if (l) plus = hash ^ str[l]; else plus = hash ^ (str[l] - str[0]); hash += (plus << (CHAR_BIT * (l % sizeof(list_hash_t)))); } return hash; } #ifndef NDEBUG static int list_repOk(const list_t *restrict l) { int ok, i; struct list_entry_s *s; ok = (l != NULL) && ( /* head/tail checks */ (l->head_sentinel != NULL && l->tail_sentinel != NULL) && (l->head_sentinel != l->tail_sentinel) && (l->head_sentinel->prev == NULL && l->tail_sentinel->next == NULL) && /* empty list */ (l->numels > 0 || (l->mid == NULL && l->head_sentinel->next == l->tail_sentinel && l->tail_sentinel->prev == l->head_sentinel)) && /* spare elements checks */ l->spareelsnum <= SIMCLIST_MAX_SPARE_ELEMS ); if (!ok) return 0; if (l->numels >= 1) { /* correct referencing */ for (i = -1, s = l->head_sentinel; i < (int)(l->numels-1)/2 && s->next != NULL; i++, s = s->next) { if (s->next->prev != s) break; } ok = (i == (int)(l->numels-1)/2 && l->mid == s); if (!ok) return 0; for (; s->next != NULL; i++, s = s->next) { if (s->next->prev != s) break; } ok = (i == (int)l->numels && s == l->tail_sentinel); } return ok; } static int list_attrOk(const list_t *restrict l) { int ok; ok = (l->attrs.copy_data == 0 || l->attrs.meter != NULL); return ok; } #endif sshguard-2.4.3/src/common/attack.h000644 001751 001751 00000006522 14446624517 017741 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once #include #include "address.h" enum service { SERVICES_ALL = 0, //< anything SERVICES_SSH = 100, //< ssh SERVICES_SSHGUARD = 110, //< SSHGuard SERVICES_BIND = 120, //< BIND (named) SERVICES_UWIMAP = 200, //< UWimap for imap and pop daemon SERVICES_DOVECOT = 210, //< dovecot SERVICES_CYRUSIMAP = 220, //< cyrus-imap SERVICES_CUCIPOP = 230, //< cucipop SERVICES_EXIM = 240, //< exim SERVICES_SENDMAIL = 250, //< sendmail SERVICES_POSTFIX = 260, //< postfix SERVICES_OPENSMTPD = 270, //< OpenSMTPD SERVICES_COURIER = 280, //< Courier IMAP/POP SERVICES_FREEBSDFTPD = 300, //< ftpd shipped with FreeBSD SERVICES_PROFTPD = 310, //< ProFTPd SERVICES_PUREFTPD = 320, //< Pure-FTPd SERVICES_VSFTPD = 330, //< vsftpd SERVICES_COCKPIT = 340, //< cockpit management dashboard SERVICES_CLF_UNAUTH = 350, //< HTTP 401 in common log format SERVICES_CLF_PROBES = 360, //< probes for common web services SERVICES_CLF_LOGIN_URL = 370, //< CMS framework logins in common log format SERVICES_OPENVPN = 400, //< OpenVPN SERVICES_OPENVPN_PS = 410, //< OpenVPN Portshare SERVICES_GITEA = 500, //< Gitea SERVICES_MSSQL = 600, //< Microsoft SQL Server for Linux }; /* an attack (source address & target service info) */ typedef struct { sshg_address_t address; //< Address enum service service; //< Service int dangerousness; //< Danger level } attack_t; /* profile of an attacker */ typedef struct { attack_t attack; /* attacker address, target service */ time_t whenfirst; /* first time seen (or blocked) */ time_t whenlast; /* last time seen (or blocked) */ time_t pardontime; /* minimum seconds to wait before releasing address when blocked */ unsigned int numhits; /* #attacks for attacker tracking; #abuses for offenders tracking */ unsigned int cumulated_danger; /* total danger incurred (before or after blocked) */ } attacker_t; int attack_addr_seeker(const void *el, const void *key); int attack_from_hostname(attack_t *attack, const char *name); void attackerinit(attacker_t *restrict ipe, const attack_t *restrict attack); int attackt_whenlast_comparator(const void *a, const void *b); const char *service_to_name(enum service code); sshguard-2.4.3/src/blocker/sshguard_options.c000644 001751 001751 00000010437 14216652616 022205 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include "config.h" #include #include #include #include #ifdef HAVE_GETOPT_H #include #endif #include "sshguard_options.h" #include "sshguard_whitelist.h" sshg_opts opts; static void usage(void) { fprintf(stderr, "sshg-blocker: invalid command-line\n"); } /** * Initialize options to defaults. */ static void options_init(sshg_opts *opt) { opt->pardon_threshold = 2 * 60; opt->stale_threshold = 30 * 60; opt->abuse_threshold = 30; opt->blacklist_threshold = 0; opt->blacklist_filename = NULL; opt->subnet_ipv6 = 128; opt->subnet_ipv4 = 32; } int get_options_cmdline(int argc, char *argv[]) { int optch; options_init(&opts); while ((optch = getopt(argc, argv, "b:p:s:a:w:i:N:n:")) != -1) { switch (optch) { case 'b': opts.blacklist_filename = (char *)malloc(strlen(optarg) + 1); if (sscanf(optarg, "%u:%s", &opts.blacklist_threshold, opts.blacklist_filename) != 2) { usage(); return -1; } break; case 'p': /* pardon threshold interval */ opts.pardon_threshold = strtol(optarg, (char **)NULL, 10); if (opts.pardon_threshold < 1) { fprintf(stderr, "Doesn't make sense to have a pardon time lower than 1 second. Terminating.\n"); usage(); return -1; } break; case 's': /* stale threshold interval */ opts.stale_threshold = strtol(optarg, (char **)NULL, 10); if (opts.stale_threshold < 1) { fprintf(stderr, "Doesn't make sense to have a stale threshold lower than 1 second. Terminating.\n"); usage(); return -1; } break; case 'a': /* abuse threshold count */ opts.abuse_threshold = strtol(optarg, (char **)NULL, 10); break; case 'w': /* whitelist entries */ if (optarg[0] == '/' || optarg[0] == '.') { /* add from file */ if (whitelist_file(optarg) != 0) { fprintf(stderr, "Could not handle whitelisting for %s.\n", optarg); usage(); return -1; } } else { /* add raw content */ if (whitelist_add(optarg) != 0) { fprintf(stderr, "Could not handle whitelisting for %s.\n", optarg); usage(); return -1; } } break; case 'N': /* IPv6 subnet size */ opts.subnet_ipv6 = strtol(optarg, (char **)NULL, 10); break; case 'n': /* IPv4 subnet size */ opts.subnet_ipv4 = strtol(optarg, (char **)NULL, 10); break; default: /* or anything else: print help */ usage(); return -1; } } if (opts.blacklist_filename && opts.blacklist_threshold < opts.abuse_threshold) { fprintf(stderr, "error: blacklist (%u) is less than abuse threshold (%u)\n", opts.blacklist_threshold, opts.abuse_threshold); return -1; } return 0; } sshguard-2.4.3/src/blocker/sshguard_blacklist.h000644 001751 001751 00000003211 14152213136 022444 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /** * Load blacklist from the given file. Return a list with the contents of the * blacklist. Do not destroy or free the returned list. * * @param filename full path of the file containing the black list * @return NULL in case of error, or a list containing blacklisted entries */ list_t *blacklist_load(const char *filename); /** * Add an entry to the blacklist. * * @param filename full path of the file containing the black list * @param newel ip entry to add */ void blacklist_add(const attacker_t *restrict newel); /** * Lookup if an address is present in the blacklist. * * @param addr address to look up (value + type) * * @return <0 if error; 1 if (addr,addrkind) present in blacklist, 0 otherwise */ int blacklist_contains(const sshg_address_t *restrict addr); sshguard-2.4.3/src/blocker/sshguard_whitelist.h000644 001751 001751 00000007366 14152213136 022527 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /** * Initialize the whitelisting subsystem. * * Any other whitelist_*() function must be executed * after this. This function cannot be executed twice * unless whitelist_fin() occurred in between. * * @return 0 if success, <0 if failure * * @see whitelist_fin() */ void whitelist_init(void); /** * End a session for configuring the whitelist. */ void whitelist_conf_fin(void); /** * Terminate the whitelisting subsystem. * * No calls to any whitelist_*() function can occur after * this, unless whitelist_init() is called first. */ void whitelist_fin(void); /** * Adds entries to whitelist from file. * * The file is human readable and line-based. Entries look like: * * # comment line (a '#' as very first character) * # a single ip address * 1.2.3.4 * # address blocks in CIDR notation * 127.0.0.0/8 * 10.11.128.0/17 * 192.168.0.0/24 * # hostnames * rome-fw.enterprise.com * hosts.friends.com * * @param filename The filename containing whitelist entries * @return 0 if success, -1 if unable to open filename */ int whitelist_file(const char *restrict filename); /** * Wrapper for _add_ip, _add_block and _add_host. * * @return 0 if success, <0 if failure * * @see whitelist_add_ipv4() * @see whitelist_add_ipv6() * @see whitelist_add_block4() * @see whitelist_add_block6() * @see whitelist_add_host() */ int whitelist_add(const char *restrict str); /** * Add an IPv4 address to the whitelist. * * @param ip ip address, in dotted decimal notation * @return 0 if success, <0 if failure */ int whitelist_add_ipv4(const char *restrict ip); /** * Add an IPv6 address to the whitelist. * * @param ip ip address, in numerical string notation * @return 0 if success, <0 if failure */ int whitelist_add_ipv6(const char *restrict ip); /** * Add an IPv4 address block to the whitelist * * @param address character string representation of ip address * @param masklen length of bits to mask in address block * * @return 0 if success, -1 if invalid address */ int whitelist_add_block4(const char *restrict address, int masklen); /** * Add an IPv6 address block to the whitelist * * @param address character string representation of ip address * @param masklen length of bits to mask in address block * * @return 0 if success, -1 if invalid address */ int whitelist_add_block6(const char *restrict address, int masklen); /** * add an ip address to the whitelist based on a hostname * * @param host the hostname to whitelist * @return 0 if success -1 if host could not be resolved */ int whitelist_add_host(const char *restrict host); /** * search for an address in the whitelist * * @param addr the address to search for * @param addrkind the type of address, one of * ADDRKIND_IPv4 or ADDRKIND_IPv6 * * @return 1 if the address exists in the whitelist, 0 if it doesn't */ int whitelist_match(const char *restrict addr, int addrkind); sshguard-2.4.3/src/blocker/sshguard_log.h000644 001751 001751 00000001634 14152213136 021264 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once #include #include #define sshguard_log syslog sshguard-2.4.3/src/blocker/fnv.h000644 001751 001751 00000007357 14152213136 017404 0ustar00kevinzkevinz000000 000000 /* * fnv - Fowler/Noll/Vo- hash code * * @(#) $Revision: 5.4 $ * @(#) $Id: fnv.h,v 5.4 2009/07/30 22:49:13 chongo Exp $ * @(#) $Source: /usr/local/src/cmd/fnv/RCS/fnv.h,v $ * *** * * Fowler/Noll/Vo- hash * * The basis of this hash algorithm was taken from an idea sent * as reviewer comments to the IEEE POSIX P1003.2 committee by: * * Phong Vo (http://www.research.att.com/info/kpv/) * Glenn Fowler (http://www.research.att.com/~gsf/) * * In a subsequent ballot round: * * Landon Curt Noll (http://www.isthe.com/chongo/) * * improved on their algorithm. Some people tried this hash * and found that it worked rather well. In an EMail message * to Landon, they named it the ``Fowler/Noll/Vo'' or FNV hash. * * FNV hashes are designed to be fast while maintaining a low * collision rate. The FNV speed allows one to quickly hash lots * of data while maintaining a reasonable collision rate. See: * * http://www.isthe.com/chongo/tech/comp/fnv/index.html * * for more details as well as other forms of the FNV hash. * *** * * NOTE: The FNV-0 historic hash is not recommended. One should use * the FNV-1 hash instead. * * To use the 32 bit FNV-0 historic hash, pass FNV0_32_INIT as the * Fnv32_t hashval argument to fnv_32_buf() or fnv_32_str(). * * To use the 64 bit FNV-0 historic hash, pass FNV0_64_INIT as the * Fnv64_t hashval argument to fnv_64_buf() or fnv_64_str(). * * To use the recommended 32 bit FNV-1 hash, pass FNV1_32_INIT as the * Fnv32_t hashval argument to fnv_32_buf() or fnv_32_str(). * * To use the recommended 64 bit FNV-1 hash, pass FNV1_64_INIT as the * Fnv64_t hashval argument to fnv_64_buf() or fnv_64_str(). * * To use the recommended 32 bit FNV-1a hash, pass FNV1_32A_INIT as the * Fnv32_t hashval argument to fnv_32a_buf() or fnv_32a_str(). * * To use the recommended 64 bit FNV-1a hash, pass FNV1A_64_INIT as the * Fnv64_t hashval argument to fnv_64a_buf() or fnv_64a_str(). * *** * * Please do not copyright this code. This code is in the public domain. * * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. * * By: * chongo /\oo/\ * http://www.isthe.com/chongo/ * * Share and Enjoy! :-) */ #if !defined(__FNV_H__) #define __FNV_H__ #include #include #define FNV_VERSION "5.0.2" /* @(#) FNV Version */ /* * 32 bit FNV-0 hash type */ typedef uint32_t Fnv32_t; /* * 32 bit FNV-0 zero initial basis * * This historic hash is not recommended. One should use * the FNV-1 hash and initial basis instead. */ #define FNV0_32_INIT ((Fnv32_t)0) /* * 32 bit FNV-1 and FNV-1a non-zero initial basis * * The FNV-1 initial basis is the FNV-0 hash of the following 32 octets: * * chongo /\../\ * * NOTE: The \'s above are not back-slashing escape characters. * They are literal ASCII backslash 0x5c characters. * * NOTE: The FNV-1a initial basis is the same value as FNV-1 by definition. */ #define FNV1_32_INIT ((Fnv32_t)0x811c9dc5) #define FNV1_32A_INIT FNV1_32_INIT #if 0 /* hash_32.c */ Fnv32_t fnv_32_buf(void *buf, size_t len, Fnv32_t hashval); Fnv32_t fnv_32_str(const char *buf, Fnv32_t hashval); #endif /* hash_32a.c */ #if 0 Fnv32_t fnv_32a_buf(void *buf, size_t len, Fnv32_t hashval); #endif Fnv32_t fnv_32a_str(const char *str, Fnv32_t hashval); #endif /* __FNV_H__ */ sshguard-2.4.3/src/blocker/blocklist.c000644 001751 001751 00000007531 14152213136 020566 0ustar00kevinzkevinz000000 000000 #include #include #include #include #include #include "blocklist.h" #include "simclist.h" #include "sshguard_blacklist.h" #include "sshguard_log.h" #include "sshguard_options.h" /* list of addresses currently blocked (offenders) */ static list_t hell; /* mutex against races between insertions and pruning of lists */ static pthread_mutex_t list_mutex; unsigned int fw_block_subnet_size(int inet_family) { if (inet_family == 6) { return opts.subnet_ipv6; } else if (inet_family == 4) { return opts.subnet_ipv4; } assert(0); } static void fw_block(const attack_t *attack) { unsigned int subnet_size = fw_block_subnet_size(attack->address.kind); printf("block %s %d %u\n", attack->address.value, attack->address.kind, subnet_size); fflush(stdout); } static void fw_release(const attack_t *attack) { unsigned int subnet_size = fw_block_subnet_size(attack->address.kind); printf("release %s %d %u\n", attack->address.value, attack->address.kind, subnet_size); fflush(stdout); } static void unblock_expired() { attacker_t *tmpel; int ret; time_t now = time(NULL); pthread_testcancel(); pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &ret); pthread_mutex_lock(&list_mutex); for (unsigned int pos = 0; pos < list_size(&hell); pos++) { tmpel = list_get_at(&hell, pos); /* skip blacklisted hosts (pardontime = infinite/0) */ if (tmpel->pardontime == 0) continue; /* process hosts with finite pardon time */ if (now - tmpel->whenlast > tmpel->pardontime) { /* pardon time passed, release block */ sshguard_log(LOG_INFO, "%s: unblocking after %lld secs", tmpel->attack.address.value, (long long)(now - tmpel->whenlast)); fw_release(&tmpel->attack); list_delete_at(&hell, pos); free(tmpel); /* element removed, next element is at current index (don't step * pos) */ pos--; } } pthread_mutex_unlock(&list_mutex); pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &ret); pthread_testcancel(); } static void *unblock_loop() { while (1) { /* wait some time, at most opts.pardon_threshold/3 + 1 sec */ sleep(1 + ((unsigned int)rand() % (1 + opts.pardon_threshold / 2))); unblock_expired(); } pthread_exit(NULL); return NULL; } void blocklist_init() { pthread_t tid; list_init(&hell); list_attributes_seeker(&hell, attack_addr_seeker); /* start thread for purging stale blocked addresses */ pthread_mutex_init(&list_mutex, NULL); if (pthread_create(&tid, NULL, unblock_loop, NULL) != 0) { perror("pthread_create()"); exit(2); } } bool blocklist_contains(attack_t attack) { attacker_t *tmpent = NULL; pthread_mutex_lock(&list_mutex); tmpent = list_seek(&hell, &attack.address); pthread_mutex_unlock(&list_mutex); return tmpent != NULL; } void blocklist_add(attacker_t *tmpent) { fw_block(&tmpent->attack); pthread_mutex_lock(&list_mutex); list_append(&hell, tmpent); pthread_mutex_unlock(&list_mutex); } static void block_list(list_t *list) { list_iterator_start(list); while (list_iterator_hasnext(list)) { attacker_t *next = list_iterator_next(list); fw_block(&next->attack); } list_iterator_stop(list); } void blacklist_load_and_block() { list_t *blacklist = blacklist_load(opts.blacklist_filename); if (blacklist == NULL) { sshguard_log(LOG_ERR, "blacklist: could not open %s: %m", opts.blacklist_filename); exit(66); } sshguard_log(LOG_INFO, "blacklist: blocking %u addresses", (unsigned int)list_size(blacklist)); block_list(blacklist); } sshguard-2.4.3/src/blocker/sshguard_whitelist.c000644 001751 001751 00000034024 14152213136 022511 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include #include #include #include #include #include #include #include #include #include "address.h" #include "simclist.h" #include "sshguard_log.h" #include "sshguard_whitelist.h" #define WHITELIST_SRCLINE_LEN 300 /* number of bits in the address types */ #define IPV4_BITS 32 #define IPV6_BITS 128 regex_t wl_ip4reg, wl_ip6reg, wl_hostreg; list_t whitelist; /* an address with mask */ typedef struct { int addrkind; union { struct { in_addr_t address; in_addr_t mask; } ip4; /* an IPv4 address w/ mask */ struct { struct in6_addr address; struct in6_addr mask; } ip6; /* an IPv6 address w/ mask */ } address; } addrblock_t; /* tell if IPv4 addr1 and addr2 are equivalent modulo mask */ static int match_ip4(in_addr_t addr1, in_addr_t addr2, in_addr_t mask) { return ((addr1 & mask) == (addr2 & mask)) ? 1 : 0; } /* tell if IPv6 addr1 and addr2 are equivalent modulo mask */ static int match_ip6(const struct in6_addr *restrict addr1, const struct in6_addr *restrict addr2, const struct in6_addr *restrict mask) { for (unsigned int i = 0; i < sizeof(addr1->s6_addr) && mask->s6_addr[i] != 0; i++) { if ((addr1->s6_addr[i] & mask->s6_addr[i]) != (addr2->s6_addr[i] & mask->s6_addr[i])) return 0; } return 1; } static size_t whitelist_meter() { return sizeof(addrblock_t); } static int whitelist_compare(const void *a, const void *b) { int ret; const addrblock_t *A = (const addrblock_t *)a; const addrblock_t *B = (const addrblock_t *)b; if ( A->addrkind != B->addrkind ) return (A->addrkind > B->addrkind ? 1 : -1); switch (A->addrkind) { case ADDRKIND_IPv4: if (A->address.ip4.address != B->address.ip4.address) return (A->address.ip4.address > B->address.ip4.address ? 1 : -1); if (A->address.ip4.mask != B->address.ip4.mask) return (A->address.ip4.mask > B->address.ip4.mask ? 1 : -1); break; case ADDRKIND_IPv6: ret = memcmp(& A->address.ip6.address, & B->address.ip6.address, sizeof(B->address.ip6.address)); if (ret != 0) return ret; ret = memcmp(& A->address.ip6.mask, & B->address.ip6.mask, sizeof(B->address.ip6.mask)); if (ret != 0) return ret; break; } return 0; } void whitelist_conf_fin() { regfree(&wl_ip4reg); regfree(&wl_ip6reg); regfree(&wl_hostreg); } void whitelist_init() { list_init(&whitelist); list_attributes_copy(&whitelist, whitelist_meter, 1); list_attributes_comparator(&whitelist, whitelist_compare); if (regcomp(&wl_ip4reg, "^" REGEXLIB_IPV4 "$", REG_EXTENDED) != 0) { abort(); } if (regcomp(&wl_ip6reg, "^" REGEXLIB_IPV6 "$", REG_EXTENDED) != 0) { abort(); } if (regcomp(&wl_hostreg, "^" REGEXLIB_HOSTNAME "$", REG_EXTENDED) != 0) { abort(); } } void whitelist_fin() { list_destroy(&whitelist); } int whitelist_file(const char *restrict filename) { FILE *src; char line[WHITELIST_SRCLINE_LEN]; int lineno = 0; size_t len; char* pos; if (filename == NULL) return -1; src = fopen(filename, "r"); if (src == NULL) { sshguard_log(LOG_ERR, "whitelist: unable to open input file %s: %s", filename, strerror(errno)); return -1; } while (fgets(line, WHITELIST_SRCLINE_LEN, src) != NULL) { lineno++; /* handle comment lines */ if (line[0] == '#' || line[0] == '\n') continue; /* strip trailing '\n' */ len = strlen(line); if (len == 0) continue; if (line[len-1] == '\n') line[len-1] = '\0'; /* handling line */ /* trim inline comments and whitespace */ pos = line; strsep(&pos, " \t#"); if (whitelist_add(line) != 0) { sshguard_log(LOG_ERR, "whitelist: Unable to handle line %d from whitelist file \"%s\".", lineno, filename); } } fclose(src); return 0; } int whitelist_add(const char *str) { /* try address/mask first */ if (regexec(&wl_ip4reg, str, 0, NULL, 0) == 0) { /* plain IPv4 address */ sshguard_log(LOG_DEBUG, "whitelist: add '%s' as plain IPv4.", str); return whitelist_add_ipv4(str); } else if (regexec(&wl_ip6reg, str, 0, NULL, 0) == 0) { /* plain IPv6 address */ sshguard_log(LOG_DEBUG, "whitelist: add '%s' as plain IPv6.", str); return whitelist_add_ipv6(str); } else if (regexec(&wl_hostreg, str, 0, NULL, 0) == 0) { /* hostname to be resolved */ sshguard_log(LOG_DEBUG, "whitelist: add '%s' as host.", str); return whitelist_add_host(str); } else if (strrchr(str, '/') != NULL) { /* CIDR form (net block) */ char *pos; char buf[ADDRLEN+5]; unsigned int masklen; strncpy(buf, str, sizeof(buf)); buf[sizeof(buf)-1] = '\0'; pos = strrchr(buf, '/'); *pos = '\0'; masklen = (unsigned int)strtol(pos+1, (char **)NULL, 10); if (masklen == 0 && pos[1] != '0') { sshguard_log(LOG_WARNING, "whitelist: mask specified as '/%s' makes no sense.", pos+1); return -1; } if (masklen == 0 && errno != EINVAL) { /* could not convert the mask to an integer value */ sshguard_log(LOG_WARNING, "whitelist: could not parse line \"%s\" as plain IP nor IP block nor host name", str); return -1; } if (regexec(&wl_ip4reg, buf, 0, NULL, 0) == 0) { if (masklen > IPV4_BITS) { /* sanity check for netmask */ sshguard_log(LOG_WARNING, "whitelist: mask length '%u' makes no sense for IPv4.", masklen); return -1; } if (masklen == IPV4_BITS) { /* de-genere case with full mask --> plain address */ return whitelist_add_ipv4(buf); } return whitelist_add_block4(buf, masklen); } else if (regexec(&wl_ip6reg, buf, 0, NULL, 0) == 0) { if (masklen > IPV6_BITS) { /* sanity check for netmask */ sshguard_log(LOG_WARNING, "whitelist: mask length '%u' makes no sense for IPv6.", masklen); return -1; } if (masklen == IPV6_BITS) { /* de-genere case with full mask --> plain address */ return whitelist_add_ipv6(buf); } return whitelist_add_block6(buf, masklen); } } else { /* line not recognized */ sshguard_log(LOG_WARNING, "whitelist: could not parse line \"%s\" as plain IP nor IP block nor host name.", str); return -1; } return -1; } int whitelist_add_block4(const char *restrict address, int masklen) { addrblock_t ab; /* parse block line */ ab.addrkind = ADDRKIND_IPv4; if (inet_pton(AF_INET, address, & ab.address.ip4.address) != 1) { sshguard_log(LOG_WARNING, "whitelist: could not interpret address '%s': %s.", address, strerror(errno)); return -1; } ab.address.ip4.mask = htonl(0xFFFFFFFF << (IPV4_BITS-masklen)); if (! list_contains(& whitelist, &ab)) { list_append(& whitelist, &ab); sshguard_log(LOG_DEBUG, "whitelist: add IPv4 block: %s with mask %d.", address, masklen); } else { sshguard_log(LOG_DEBUG, "whitelist: skipping IPv4 block: %s/%d -- already present.", address, masklen); } return 0; } int whitelist_add_block6(const char *restrict address, int masklen) { addrblock_t ab; int bytelen, bitlen; uint8_t bitmask; /* parse block line */ ab.addrkind = ADDRKIND_IPv6; if (inet_pton(AF_INET6, address, & ab.address.ip6.address.s6_addr) != 1) { sshguard_log(LOG_WARNING, "whitelist: could not interpret address '%s': %s.", address, strerror(errno)); return -1; } bytelen = masklen / 8; /* compile the "all 1s" part */ memset(ab.address.ip6.mask.s6_addr, 0xFF, bytelen); /* compile the "crossing byte" */ if (bytelen == sizeof(ab.address.ip6.mask.s6_addr)) return 0; /* compile the remainder "all 0s" part */ bitlen = masklen % 8; bitmask = 0xFF << (8 - bitlen); ab.address.ip6.mask.s6_addr[bytelen] = bitmask; memset(& ab.address.ip6.mask.s6_addr[bytelen+1], 0x00, sizeof(ab.address.ip6.mask.s6_addr) - bytelen - 1); if (! list_contains(& whitelist, &ab)) { list_append(& whitelist, &ab); sshguard_log(LOG_DEBUG, "whitelist: add IPv6 block: %s with mask %d.", address, masklen); } else { sshguard_log(LOG_DEBUG, "whitelist: skipping IPv6 block: %s/%d -- already present.", address, masklen); } return 0; } int whitelist_add_ipv4(const char *restrict ip) { addrblock_t ab; ab.addrkind = ADDRKIND_IPv4; inet_pton(AF_INET, ip, & ab.address.ip4.address); ab.address.ip4.mask = 0xFFFFFFFF; if (! list_contains(& whitelist, &ab)) { list_append(&whitelist, & ab); sshguard_log(LOG_DEBUG, "whitelist: add plain IPv4 %s.", ip); } else { sshguard_log(LOG_DEBUG, "whitelist: skipping plain IPv4 %s -- already present.", ip); } return 0; } int whitelist_add_ipv6(const char *restrict ip) { addrblock_t ab; ab.addrkind = ADDRKIND_IPv6; if (inet_pton(AF_INET6, ip, &ab.address.ip6.address.s6_addr) != 1) { sshguard_log(LOG_ERR, "whitelist: add ipv6: Could not add %s.", ip); return -1; } memset(ab.address.ip6.mask.s6_addr, 0xFF, sizeof(ab.address.ip6.mask.s6_addr)); if (! list_contains(& whitelist, &ab)) { list_append(&whitelist, & ab); sshguard_log(LOG_DEBUG, "whitelist: add plain IPv6 %s.", ip); } else { sshguard_log(LOG_DEBUG, "whitelist: skipping plain IPv6 %s -- already present.", ip); } return 0; } int whitelist_add_host(const char *restrict host) { struct addrinfo *hostaddrs; struct addrinfo *addriter; int ret, numaddresses; ret = getaddrinfo(host, NULL, NULL, & hostaddrs); if (ret != 0) { sshguard_log(LOG_ERR, "Could not resolve hostname '%s': %s.", host, gai_strerror(ret)); return -1; } /* iterate on all results, whitelist each based on its type */ for (numaddresses = 0, addriter = hostaddrs; addriter != NULL; addriter = addriter->ai_next, ++numaddresses) { /* convert result to printable format */ char addrstring[ADDRLEN]; switch (addriter->ai_family) { case AF_INET: /* IPv4 */ if (inet_ntop(addriter->ai_family, & ((struct sockaddr_in *)addriter->ai_addr)->sin_addr.s_addr, addrstring, ADDRLEN) == NULL) continue; whitelist_add_ipv4(addrstring); break; case AF_INET6: /* IPv6 */ if (inet_ntop(addriter->ai_family, & ((struct sockaddr_in6 *)addriter->ai_addr)->sin6_addr, addrstring, ADDRLEN) == NULL) continue; whitelist_add_ipv6(addrstring); break; default: --numaddresses; } } /* free all resolve stuff */ freeaddrinfo(hostaddrs); sshguard_log(LOG_DEBUG, "whitelist: add hostname '%s' with %d addresses.", host, numaddresses); return 0; } int whitelist_match(const char *restrict addr, int addrkind) { in_addr_t addrent; struct in6_addr addrent6; addrblock_t *entry; switch (addrkind) { case ADDRKIND_IPv4: if (inet_pton(AF_INET, addr, &addrent) != 1) { sshguard_log(LOG_WARNING, "whitelist: could not interpret ip address '%s'.", addr); return 0; } /* compare with every IPv4 entry in the list */ list_iterator_start(&whitelist); while (list_iterator_hasnext(&whitelist)) { entry = (addrblock_t *)list_iterator_next(&whitelist); if (entry->addrkind != ADDRKIND_IPv4) continue; if (match_ip4(addrent, entry->address.ip4.address, entry->address.ip4.mask)) { list_iterator_stop(&whitelist); return 1; } } list_iterator_stop(&whitelist); break; case ADDRKIND_IPv6: if (inet_pton(AF_INET6, addr, &addrent6.s6_addr) != 1) { sshguard_log(LOG_WARNING, "whitelist: could not interpret ip address '%s'.", addr); return 0; } /* compare with every IPv6 entry in the list */ list_iterator_start(&whitelist); while (list_iterator_hasnext(&whitelist)) { entry = (addrblock_t *)list_iterator_next(&whitelist); if (entry->addrkind != ADDRKIND_IPv6) continue; if (match_ip6(&addrent6, &entry->address.ip6.address, &entry->address.ip6.mask)) { list_iterator_stop(&whitelist); return 1; } } list_iterator_stop(&whitelist); break; default: /* not recognized */ /* make errors apparent */ assert(0); } return 0; } sshguard-2.4.3/src/blocker/attack.c000644 001751 001751 00000002111 14152213136 020034 0ustar00kevinzkevinz000000 000000 #include #include #include #include "attack.h" int attackt_whenlast_comparator(const void *a, const void *b) { const attacker_t *aa = (const attacker_t *)a; const attacker_t *bb = (const attacker_t *)b; return ((aa->whenlast > bb->whenlast) - (aa->whenlast < bb->whenlast)); } void attackerinit(attacker_t *restrict ipe, const attack_t *restrict attack) { assert(ipe != NULL && attack != NULL); strcpy(ipe->attack.address.value, attack->address.value); ipe->attack.address.kind = attack->address.kind; ipe->attack.service = attack->service; ipe->whenfirst = ipe->whenlast = time(NULL); ipe->numhits = 1; ipe->cumulated_danger = attack->dangerousness; } int attack_addr_seeker(const void *el, const void *key) { const sshg_address_t *adr = (const sshg_address_t *)key; const attacker_t *atk = (const attacker_t *)el; assert(atk != NULL && adr != NULL); if (atk->attack.address.kind != adr->kind) return 0; return (strcmp(atk->attack.address.value, adr->value) == 0); } sshguard-2.4.3/src/blocker/sshguard_blacklist.c000644 001751 001751 00000011633 14152213136 022446 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2011 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include #include #include #include #include "attack.h" #include "simclist.h" #include "sshguard_blacklist.h" #include "sshguard_log.h" #define BL_MAXBUF 1024 #define stringify(x) xstr(x) #define xstr(x) #x static FILE *blacklist_file; static list_t *blacklist; static size_t attacker_el_meter(const void *el) { if (el) {} return sizeof(attacker_t); } /* INTERFACE FUNCTIONS */ static void blacklist_close() { assert(blacklist_file != NULL && blacklist != NULL); fclose(blacklist_file); blacklist_file = NULL; list_destroy(blacklist); free(blacklist); blacklist = NULL; } list_t *blacklist_load(const char *filename) { char blacklist_line[BL_MAXBUF]; unsigned int linecnt; assert(blacklist_file == NULL && blacklist == NULL); blacklist_file = fopen(filename, "a+"); if (blacklist_file == NULL) { return NULL; } blacklist = (list_t *)malloc(sizeof(list_t)); list_init(blacklist); list_attributes_copy(blacklist, attacker_el_meter, 1); rewind(blacklist_file); /* loading content of the file in the blacklist */ for (linecnt = 1; fgets(blacklist_line, BL_MAXBUF, blacklist_file) != NULL; ++linecnt) { attacker_t newattacker; /* discard empty lines and lines starting with a white-space or # */ if (isspace(blacklist_line[0]) || blacklist_line[0] == '#') { while (blacklist_line[strlen(blacklist_line)-1] != '\n') { /* consume until end of line */ if (fgets(blacklist_line, BL_MAXBUF, blacklist_file) == NULL) return blacklist; } continue; } long long blacklist_time; int service_no; if (sscanf(blacklist_line, "%lld|%d|%d|%" stringify(ADDRLEN) "s", &blacklist_time, &service_no, &newattacker.attack.address.kind, newattacker.attack.address.value) != 4) { sshguard_log(LOG_WARNING, "blacklist: ignoring malformed line %d", linecnt); continue; } newattacker.whenlast = (time_t)blacklist_time; newattacker.attack.service = (enum service)service_no; if (newattacker.attack.address.kind != ADDRKIND_IPv4 && newattacker.attack.address.kind != ADDRKIND_IPv6) { /* unknown address type */ sshguard_log(LOG_WARNING, "blacklist: unknown address type on line %d", linecnt); continue; } /* initialization of other default information */ newattacker.attack.dangerousness = 1; newattacker.whenfirst = 0; newattacker.pardontime = 0; newattacker.numhits = 1; newattacker.cumulated_danger = 1; /* add new element to the blacklist */ list_append(blacklist, & newattacker); } atexit(blacklist_close); return blacklist; } void blacklist_add(const attacker_t *restrict newel) { assert(blacklist_file != NULL && blacklist != NULL); if (blacklist_contains(&newel->attack.address)) { sshguard_log(LOG_WARNING, "blacklist: %s is already blacklisted", newel->attack.address.value); return; } int retval = fprintf(blacklist_file, "%lld|%d|%d|%s\n", (long long)newel->whenlast, newel->attack.service, newel->attack.address.kind, newel->attack.address.value); if (retval > 0) { sshguard_log(LOG_DEBUG, "blacklist: added %s", newel->attack.address.value); fflush(blacklist_file); list_append(blacklist, newel); } else { sshguard_log(LOG_ERR, "blacklist: could not add %s: %s", newel->attack.address.value, strerror(errno)); } } int blacklist_contains(const sshg_address_t *restrict addr) { if (blacklist == NULL) { // Blacklist hasn't been loaded yet. return -1; } list_attributes_seeker(blacklist, attack_addr_seeker); attacker_t *restrict el = list_seek(blacklist, addr); return (el != NULL); } sshguard-2.4.3/src/blocker/hash_32a.c000644 001751 001751 00000007604 14152213136 020171 0ustar00kevinzkevinz000000 000000 /* * hash_32 - 32 bit Fowler/Noll/Vo FNV-1a hash code * * @(#) $Revision: 5.1 $ * @(#) $Id: hash_32a.c,v 5.1 2009/06/30 09:13:32 chongo Exp $ * @(#) $Source: /usr/local/src/cmd/fnv/RCS/hash_32a.c,v $ * *** * * Fowler/Noll/Vo hash * * The basis of this hash algorithm was taken from an idea sent * as reviewer comments to the IEEE POSIX P1003.2 committee by: * * Phong Vo (http://www.research.att.com/info/kpv/) * Glenn Fowler (http://www.research.att.com/~gsf/) * * In a subsequent ballot round: * * Landon Curt Noll (http://www.isthe.com/chongo/) * * improved on their algorithm. Some people tried this hash * and found that it worked rather well. In an EMail message * to Landon, they named it the ``Fowler/Noll/Vo'' or FNV hash. * * FNV hashes are designed to be fast while maintaining a low * collision rate. The FNV speed allows one to quickly hash lots * of data while maintaining a reasonable collision rate. See: * * http://www.isthe.com/chongo/tech/comp/fnv/index.html * * for more details as well as other forms of the FNV hash. *** * * To use the recommended 32 bit FNV-1a hash, pass FNV1_32A_INIT as the * Fnv32_t hashval argument to fnv_32a_buf() or fnv_32a_str(). * *** * * Please do not copyright this code. This code is in the public domain. * * LANDON CURT NOLL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO * EVENT SHALL LANDON CURT NOLL BE LIABLE FOR ANY SPECIAL, INDIRECT OR * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THIS SOFTWARE. * * By: * chongo /\oo/\ * http://www.isthe.com/chongo/ * * Share and Enjoy! :-) */ #include #include "fnv.h" /* * 32 bit magic FNV-1a prime */ #define FNV_32_PRIME ((Fnv32_t)0x01000193) #if 0 /* * fnv_32a_buf - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a buffer * * input: * buf - start of buffer to hash * len - length of buffer in octets * hval - previous hash value or 0 if first call * * returns: * 32 bit hash as a static hash type * * NOTE: To use the recommended 32 bit FNV-1a hash, use FNV1_32A_INIT as the * hval arg on the first call to either fnv_32a_buf() or fnv_32a_str(). */ Fnv32_t fnv_32a_buf(void *buf, size_t len, Fnv32_t hval) { unsigned char *bp = (unsigned char *)buf; /* start of buffer */ unsigned char *be = bp + len; /* beyond end of buffer */ /* * FNV-1a hash each octet in the buffer */ while (bp < be) { /* xor the bottom with the current octet */ hval ^= (Fnv32_t)*bp++; /* multiply by the 32 bit FNV magic prime mod 2^32 */ #if defined(NO_FNV_GCC_OPTIMIZATION) hval *= FNV_32_PRIME; #else hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24); #endif } /* return our new hash value */ return hval; } #endif /* * fnv_32a_str - perform a 32 bit Fowler/Noll/Vo FNV-1a hash on a string * * input: * str - string to hash * hval - previous hash value or 0 if first call * * returns: * 32 bit hash as a static hash type * * NOTE: To use the recommended 32 bit FNV-1a hash, use FNV1_32A_INIT as the * hval arg on the first call to either fnv_32a_buf() or fnv_32a_str(). */ Fnv32_t fnv_32a_str(const char *str, Fnv32_t hval) { unsigned const char *s = (unsigned char *)str; /* unsigned string */ /* * FNV-1a hash each octet in the buffer */ while (*s) { /* xor the bottom with the current octet */ hval ^= (Fnv32_t)*s++; /* multiply by the 32 bit FNV magic prime mod 2^32 */ #if defined(NO_FNV_GCC_OPTIMIZATION) hval *= FNV_32_PRIME; #else hval += (hval<<1) + (hval<<4) + (hval<<7) + (hval<<8) + (hval<<24); #endif } /* return our new hash value */ return hval; } sshguard-2.4.3/src/blocker/Makefile.in000644 001751 001751 00000062357 14447664672 020536 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2021 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : libexec_PROGRAMS = sshg-blocker$(EXEEXT) subdir = src/blocker ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(libexecdir)" PROGRAMS = $(libexec_PROGRAMS) am_sshg_blocker_OBJECTS = sandbox.$(OBJEXT) service_names.$(OBJEXT) \ simclist.$(OBJEXT) attack.$(OBJEXT) blocker.$(OBJEXT) \ blocklist.$(OBJEXT) hash_32a.$(OBJEXT) \ sshguard_blacklist.$(OBJEXT) sshguard_options.$(OBJEXT) \ sshguard_whitelist.$(OBJEXT) sshg_blocker_OBJECTS = $(am_sshg_blocker_OBJECTS) sshg_blocker_LDADD = $(LDADD) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/common depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/attack.Po ./$(DEPDIR)/blocker.Po \ ./$(DEPDIR)/blocklist.Po ./$(DEPDIR)/hash_32a.Po \ ./$(DEPDIR)/sandbox.Po ./$(DEPDIR)/service_names.Po \ ./$(DEPDIR)/simclist.Po ./$(DEPDIR)/sshguard_blacklist.Po \ ./$(DEPDIR)/sshguard_options.Po \ ./$(DEPDIR)/sshguard_whitelist.Po am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(sshg_blocker_SOURCES) DIST_SOURCES = $(sshg_blocker_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE sshg_blocker_SOURCES = \ ../common/sandbox.c \ ../common/service_names.c \ ../common/simclist.c \ attack.c \ blocker.c \ blocklist.c \ blocklist.h \ fnv.h \ hash_32a.c \ sshguard_blacklist.c \ sshguard_blacklist.h \ sshguard_log.h \ sshguard_options.c \ sshguard_options.h \ sshguard_whitelist.c \ sshguard_whitelist.h all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/blocker/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/blocker/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(libexecdir)" && rm -f $$files clean-libexecPROGRAMS: -test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS) sshg-blocker$(EXEEXT): $(sshg_blocker_OBJECTS) $(sshg_blocker_DEPENDENCIES) $(EXTRA_sshg_blocker_DEPENDENCIES) @rm -f sshg-blocker$(EXEEXT) $(AM_V_CCLD)$(LINK) $(sshg_blocker_OBJECTS) $(sshg_blocker_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attack.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blocker.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blocklist.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hash_32a.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sandbox.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/service_names.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simclist.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sshguard_blacklist.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sshguard_options.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sshguard_whitelist.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` sandbox.o: ../common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sandbox.o -MD -MP -MF $(DEPDIR)/sandbox.Tpo -c -o sandbox.o `test -f '../common/sandbox.c' || echo '$(srcdir)/'`../common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sandbox.Tpo $(DEPDIR)/sandbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/sandbox.c' object='sandbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sandbox.o `test -f '../common/sandbox.c' || echo '$(srcdir)/'`../common/sandbox.c sandbox.obj: ../common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sandbox.obj -MD -MP -MF $(DEPDIR)/sandbox.Tpo -c -o sandbox.obj `if test -f '../common/sandbox.c'; then $(CYGPATH_W) '../common/sandbox.c'; else $(CYGPATH_W) '$(srcdir)/../common/sandbox.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sandbox.Tpo $(DEPDIR)/sandbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/sandbox.c' object='sandbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sandbox.obj `if test -f '../common/sandbox.c'; then $(CYGPATH_W) '../common/sandbox.c'; else $(CYGPATH_W) '$(srcdir)/../common/sandbox.c'; fi` service_names.o: ../common/service_names.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT service_names.o -MD -MP -MF $(DEPDIR)/service_names.Tpo -c -o service_names.o `test -f '../common/service_names.c' || echo '$(srcdir)/'`../common/service_names.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/service_names.Tpo $(DEPDIR)/service_names.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/service_names.c' object='service_names.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o service_names.o `test -f '../common/service_names.c' || echo '$(srcdir)/'`../common/service_names.c service_names.obj: ../common/service_names.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT service_names.obj -MD -MP -MF $(DEPDIR)/service_names.Tpo -c -o service_names.obj `if test -f '../common/service_names.c'; then $(CYGPATH_W) '../common/service_names.c'; else $(CYGPATH_W) '$(srcdir)/../common/service_names.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/service_names.Tpo $(DEPDIR)/service_names.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/service_names.c' object='service_names.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o service_names.obj `if test -f '../common/service_names.c'; then $(CYGPATH_W) '../common/service_names.c'; else $(CYGPATH_W) '$(srcdir)/../common/service_names.c'; fi` simclist.o: ../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT simclist.o -MD -MP -MF $(DEPDIR)/simclist.Tpo -c -o simclist.o `test -f '../common/simclist.c' || echo '$(srcdir)/'`../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simclist.Tpo $(DEPDIR)/simclist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/simclist.c' object='simclist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o simclist.o `test -f '../common/simclist.c' || echo '$(srcdir)/'`../common/simclist.c simclist.obj: ../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT simclist.obj -MD -MP -MF $(DEPDIR)/simclist.Tpo -c -o simclist.obj `if test -f '../common/simclist.c'; then $(CYGPATH_W) '../common/simclist.c'; else $(CYGPATH_W) '$(srcdir)/../common/simclist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simclist.Tpo $(DEPDIR)/simclist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/simclist.c' object='simclist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o simclist.obj `if test -f '../common/simclist.c'; then $(CYGPATH_W) '../common/simclist.c'; else $(CYGPATH_W) '$(srcdir)/../common/simclist.c'; fi` ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(libexecdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libexecPROGRAMS mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/attack.Po -rm -f ./$(DEPDIR)/blocker.Po -rm -f ./$(DEPDIR)/blocklist.Po -rm -f ./$(DEPDIR)/hash_32a.Po -rm -f ./$(DEPDIR)/sandbox.Po -rm -f ./$(DEPDIR)/service_names.Po -rm -f ./$(DEPDIR)/simclist.Po -rm -f ./$(DEPDIR)/sshguard_blacklist.Po -rm -f ./$(DEPDIR)/sshguard_options.Po -rm -f ./$(DEPDIR)/sshguard_whitelist.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libexecPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/attack.Po -rm -f ./$(DEPDIR)/blocker.Po -rm -f ./$(DEPDIR)/blocklist.Po -rm -f ./$(DEPDIR)/hash_32a.Po -rm -f ./$(DEPDIR)/sandbox.Po -rm -f ./$(DEPDIR)/service_names.Po -rm -f ./$(DEPDIR)/simclist.Po -rm -f ./$(DEPDIR)/sshguard_blacklist.Po -rm -f ./$(DEPDIR)/sshguard_options.Po -rm -f ./$(DEPDIR)/sshguard_whitelist.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libexecPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libexecPROGRAMS cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libexecPROGRAMS install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-libexecPROGRAMS .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.4.3/src/blocker/sshguard_options.h000644 001751 001751 00000003562 14152213136 022200 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /* dynamic configuration options */ typedef struct { time_t pardon_threshold; /* minimal time before releasing an address */ time_t stale_threshold; /* time after which suspicious entries remained idle are forgiven */ unsigned int abuse_threshold; /* number of attacks before raising an abuse */ unsigned int blacklist_threshold; /* number of abuses after which blacklisting the attacker */ char *blacklist_filename; /* NULL to disable blacklist, or path of the blacklist file */ unsigned int subnet_ipv6; /* size of subnets to block, CIDR notation */ unsigned int subnet_ipv4; /* size of subnets to block, CIDR notation */ } sshg_opts; extern sshg_opts opts; /** * Parses user options from the command line, environment, config file or * whatever. * * After execution, this function leaves the "opts" global variable compiled * with the user's preferences. * * @return 0 iff success; -1 if failure */ int get_options_cmdline(int argc, char *argv[]); sshguard-2.4.3/src/blocker/blocker.c000644 001751 001751 00000024162 14152213136 020220 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include "config.h" #include #include #include #include #include #include #include #include "blocklist.h" #include "sandbox.h" #include "simclist.h" #include "sshguard_blacklist.h" #include "sshguard_log.h" #include "sshguard_options.h" #include "sshguard_whitelist.h" /** Keep track of the exit signal received. */ static volatile sig_atomic_t exit_sig = 0; /* FUNDAMENTAL DATA STRUCTURES */ /* These lists are all lists of attacker_t structures. * limbo and hell maintain "temporary" entries: in limbo, entries are deleted * when the address is detected to have abused a service (right after it is * blocked); in hell, it is deleted when the address is released. * * The list offenders maintains a permanent history of the abuses of * attackers, their first and last attempt, the number of abuses etc. These * are maintained for entire runtime. When the number of abuses exceeds a * limit, an address might be blacklisted (if blacklisting is enabled with * -b). After blacklisting, the block of an attacker is released, because it * has already been blocked permanently. * * The invariant of "offenders" is: it is sorted in decreasing order of the * "whenlast" field. */ /* list of addresses that failed some times, but not enough to get blocked */ list_t limbo; /* list of offenders (addresses already blocked in the past) */ list_t offenders; /* handler for termination-related signals */ static void sigfin_handler(); /* called at exit(): flush blocked addresses and finalize subsystems */ static void finishup(void); /* handle an attack: addr is the author, addrkind its address kind, service the attacked service code */ static void report_address(attack_t attack); /* cleanup false-alarm attackers from limbo list (ones with too few attacks in too much time) */ static void purge_limbo_stale(void); static void init_log(int debug) { int flags = LOG_NDELAY | LOG_PID; int dest = LOG_AUTH; if (debug) { flags |= LOG_PERROR; dest = LOG_LOCAL6; } else { setlogmask(LOG_UPTO(LOG_INFO)); } // Set local time zone and open log before entering sandbox. tzset(); openlog("sshguard", flags, dest); } int main(int argc, char *argv[]) { int sshg_debugging = (getenv("SSHGUARD_DEBUG") != NULL); init_log(sshg_debugging); srand(time(NULL)); /* pending, blocked, and offender address lists */ list_init(&limbo); list_attributes_seeker(& limbo, attack_addr_seeker); blocklist_init(); list_init(&offenders); list_attributes_seeker(& offenders, attack_addr_seeker); list_attributes_comparator(& offenders, attackt_whenlast_comparator); // Initialize whitelist before parsing arguments. whitelist_init(); if (get_options_cmdline(argc, argv) != 0) { exit(64); } // Initialize firewall printf("flushonexit\n"); fflush(stdout); if (opts.blacklist_filename != NULL) { blacklist_load_and_block(); } /* termination signals */ signal(SIGTERM, sigfin_handler); signal(SIGHUP, sigfin_handler); signal(SIGINT, sigfin_handler); atexit(finishup); sandbox_init(); /* whitelist localhost */ if ((whitelist_add("127.0.0.0/8") != 0) || (whitelist_add("::1") != 0)) { fprintf(stderr, "Could not whitelist localhost. Terminating...\n"); exit(1); } whitelist_conf_fin(); sshguard_log(LOG_INFO, "Now monitoring attacks."); char buf[1024]; attack_t parsed_attack; while (fgets(buf, sizeof(buf), stdin) != NULL) { if (sscanf(buf, "%d %46s %d %d\n", (int*)&parsed_attack.service, parsed_attack.address.value, &parsed_attack.address.kind, &parsed_attack.dangerousness) == 4) { report_address(parsed_attack); } else { sshguard_log(LOG_ERR, "Could not parse attack data."); exit(65); } } if (feof(stdin)) { sshguard_log(LOG_DEBUG, "Received EOF from stdin."); } } void log_block(attacker_t *tmpent, attacker_t *offenderent) { char time_msg[128] = "forever"; const time_t time = tmpent->pardontime; unsigned int subnet_size = fw_block_subnet_size(tmpent->attack.address.kind); if (time > 0) { if (snprintf(time_msg, sizeof(time_msg), "for %lld secs", (long long)time) < 0) { abort(); } } sshguard_log(LOG_INFO, "Blocking \"%s/%u\" %s (%u attacks in %lld " "secs, after %d abuses over %lld secs.)", tmpent->attack.address.value, subnet_size, time_msg, tmpent->numhits, (long long)(tmpent->whenlast - tmpent->whenfirst), offenderent->numhits, (long long)(offenderent->whenlast - offenderent->whenfirst)); } /* * This function is called every time an attack pattern is matched. * It does the following: * 1) update the attacker infos (counter, timestamps etc) * --OR-- create them if first sight. * 2) block the attacker, if attacks > threshold (abuse) * 3) blacklist the address, if the number of abuses is excessive */ static void report_address(attack_t attack) { attacker_t *tmpent = NULL; attacker_t *offenderent; assert(attack.address.value != NULL); assert(memchr(attack.address.value, '\0', sizeof(attack.address.value)) != NULL); /* clean list from stale entries */ purge_limbo_stale(); /* address already blocked? (can happen for 100 reasons) */ if (blocklist_contains(attack)) { sshguard_log(LOG_DEBUG, "%s has already been blocked.", attack.address.value); return; } if (whitelist_match(attack.address.value, attack.address.kind)) { sshguard_log(LOG_DEBUG, "%s: not blocking (on whitelist)", attack.address.value); return; } sshguard_log(LOG_NOTICE, "Attack from \"%s\" on service %s with danger %u.", attack.address.value, service_to_name(attack.service), attack.dangerousness); /* search entry in list */ tmpent = list_seek(& limbo, & attack.address); if (tmpent == NULL) { /* entry not already in list, add it */ /* otherwise: insert the new item */ tmpent = malloc(sizeof(attacker_t)); attackerinit(tmpent, & attack); list_append(&limbo, tmpent); } else { /* otherwise, the entry was already existing, update with new data */ tmpent->whenlast = time(NULL); tmpent->numhits++; tmpent->cumulated_danger += attack.dangerousness; } if (tmpent->cumulated_danger < opts.abuse_threshold) { /* do nothing now, just keep an eye on this guy */ return; } /* otherwise, we have to block it */ /* find out if this is a recidivous offender to determine the * duration of blocking */ tmpent->pardontime = opts.pardon_threshold; offenderent = list_seek(& offenders, & attack.address); if (offenderent == NULL) { /* first time we block this guy */ sshguard_log(LOG_DEBUG, "%s: first block (adding as offender.)", tmpent->attack.address.value); offenderent = (attacker_t *)malloc(sizeof(attacker_t)); /* copy everything from tmpent */ memcpy(offenderent, tmpent, sizeof(attacker_t)); /* adjust number of hits */ offenderent->numhits = 1; list_prepend(& offenders, offenderent); assert(! list_empty(& offenders)); } else { /* this is a previous offender, update dangerousness and last-hit timestamp */ offenderent->numhits++; offenderent->cumulated_danger += tmpent->cumulated_danger; offenderent->whenlast = tmpent->whenlast; } /* At this stage, the guy (in tmpent) is offender, and we'll block it anyway. */ /* Let's see if we _also_ need to blacklist it. */ if (opts.blacklist_filename != NULL && offenderent->cumulated_danger >= opts.blacklist_threshold) { /* this host must be blacklisted -- blocked and never unblocked */ tmpent->pardontime = 0; /* insert in the blacklisted db iff enabled */ if (opts.blacklist_filename != NULL) { blacklist_add(offenderent); } } else { /* compute blocking time wrt the "offensiveness" */ for (unsigned int i = 0; i < offenderent->numhits - 1; i++) { tmpent->pardontime *= 2; } } list_sort(& offenders, -1); log_block(tmpent, offenderent); /* append blocked attacker to the blocked list, and remove it from the pending list */ blocklist_add(tmpent); assert(list_locate(& limbo, tmpent) >= 0); list_delete_at(& limbo, list_locate(& limbo, tmpent)); } static void purge_limbo_stale(void) { sshguard_log(LOG_DEBUG, "Purging old attackers."); time_t now = time(NULL); for (unsigned int pos = 0; pos < list_size(&limbo); pos++) { attacker_t *tmpent = list_get_at(&limbo, pos); if (now - tmpent->whenfirst > opts.stale_threshold) { list_delete_at(&limbo, pos); free(tmpent); pos--; } } } static void finishup(void) { sshguard_log(LOG_INFO, "Exiting on %s.", exit_sig == SIGHUP ? "SIGHUP" : "signal"); whitelist_fin(); closelog(); } static void sigfin_handler(int sig) { exit_sig = sig; exit(0); } sshguard-2.4.3/src/blocker/blocklist.h000644 001751 001751 00000000354 14152213136 020567 0ustar00kevinzkevinz000000 000000 #pragma once #include #include "attack.h" unsigned int fw_block_subnet_size(int inet_family); bool blocklist_contains(attack_t); void blocklist_add(attacker_t *); void blocklist_init(); void blacklist_load_and_block(); sshguard-2.4.3/src/blocker/Makefile.am000644 001751 001751 00000000660 14446632410 020472 0ustar00kevinzkevinz000000 000000 AM_CFLAGS=-I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE libexec_PROGRAMS = sshg-blocker sshg_blocker_SOURCES = \ ../common/sandbox.c \ ../common/service_names.c \ ../common/simclist.c \ attack.c \ blocker.c \ blocklist.c \ blocklist.h \ fnv.h \ hash_32a.c \ sshguard_blacklist.c \ sshguard_blacklist.h \ sshguard_log.h \ sshguard_options.c \ sshguard_options.h \ sshguard_whitelist.c \ sshguard_whitelist.h sshguard-2.4.3/src/fw/sshg-fw-ipset.sh000644 001751 001751 00000000651 14152213136 020457 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-ipset # This file is part of SSHGuard. fw_init() { ipset -quiet create -exist sshguard4 hash:net family inet ipset -quiet create -exist sshguard6 hash:net family inet6 } fw_block() { ipset -quiet add -exist sshguard$2 $1/$3 } fw_release() { ipset -quiet del -exist sshguard$2 $1/$3 } fw_flush() { ipset -quiet flush sshguard4 ipset -quiet flush sshguard6 } fw_fin() { : } sshguard-2.4.3/src/fw/Makefile.in000644 001751 001751 00000056546 14447664672 017534 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2021 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : libexec_PROGRAMS = sshg-fw-hosts$(EXEEXT) subdir = src/fw ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(libexecdir)" PROGRAMS = $(libexec_PROGRAMS) am_sshg_fw_hosts_OBJECTS = hosts.$(OBJEXT) simclist.$(OBJEXT) sshg_fw_hosts_OBJECTS = $(am_sshg_fw_hosts_OBJECTS) sshg_fw_hosts_LDADD = $(LDADD) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } SCRIPTS = $(libexec_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/common depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/hosts.Po ./$(DEPDIR)/simclist.Po am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(sshg_fw_hosts_SOURCES) DIST_SOURCES = $(sshg_fw_hosts_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE EXTRA_DIST = sshg-fw.in sshg-fw-firewalld.sh sshg-fw-ipfilter.sh sshg-fw-ipfw.sh sshg-fw-ipset.sh sshg-fw-iptables.sh sshg-fw-nft-sets.sh sshg-fw-null.sh sshg-fw-pf.sh libexec_SCRIPTS = sshg-fw-firewalld \ sshg-fw-ipfilter \ sshg-fw-ipfw \ sshg-fw-ipset \ sshg-fw-iptables \ sshg-fw-nft-sets \ sshg-fw-null \ sshg-fw-pf CLEANFILES = $(libexec_SCRIPTS) sshg_fw_hosts_SOURCES = fw.h hosts.c ../common/simclist.c SUFFIXES = .sh all: all-am .SUFFIXES: .SUFFIXES: .sh .c .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/fw/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/fw/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(libexecdir)" && rm -f $$files clean-libexecPROGRAMS: -test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS) sshg-fw-hosts$(EXEEXT): $(sshg_fw_hosts_OBJECTS) $(sshg_fw_hosts_DEPENDENCIES) $(EXTRA_sshg_fw_hosts_DEPENDENCIES) @rm -f sshg-fw-hosts$(EXEEXT) $(AM_V_CCLD)$(LINK) $(sshg_fw_hosts_OBJECTS) $(sshg_fw_hosts_LDADD) $(LIBS) install-libexecSCRIPTS: $(libexec_SCRIPTS) @$(NORMAL_INSTALL) @list='$(libexec_SCRIPTS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(libexec_SCRIPTS)'; test -n "$(libexecdir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(libexecdir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hosts.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simclist.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` simclist.o: ../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT simclist.o -MD -MP -MF $(DEPDIR)/simclist.Tpo -c -o simclist.o `test -f '../common/simclist.c' || echo '$(srcdir)/'`../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simclist.Tpo $(DEPDIR)/simclist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/simclist.c' object='simclist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o simclist.o `test -f '../common/simclist.c' || echo '$(srcdir)/'`../common/simclist.c simclist.obj: ../common/simclist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT simclist.obj -MD -MP -MF $(DEPDIR)/simclist.Tpo -c -o simclist.obj `if test -f '../common/simclist.c'; then $(CYGPATH_W) '../common/simclist.c'; else $(CYGPATH_W) '$(srcdir)/../common/simclist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simclist.Tpo $(DEPDIR)/simclist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/simclist.c' object='simclist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o simclist.obj `if test -f '../common/simclist.c'; then $(CYGPATH_W) '../common/simclist.c'; else $(CYGPATH_W) '$(srcdir)/../common/simclist.c'; fi` ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(SCRIPTS) installdirs: for dir in "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(libexecdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libexecPROGRAMS mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/hosts.Po -rm -f ./$(DEPDIR)/simclist.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libexecPROGRAMS install-libexecSCRIPTS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/hosts.Po -rm -f ./$(DEPDIR)/simclist.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libexecPROGRAMS uninstall-libexecSCRIPTS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libexecPROGRAMS cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libexecPROGRAMS install-libexecSCRIPTS install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-libexecPROGRAMS \ uninstall-libexecSCRIPTS .PRECIOUS: Makefile sshg-fw-firewalld: sshg-fw.in sshg-fw-firewalld.sh sshg-fw-ipfilter: sshg-fw.in sshg-fw-ipfilter.sh sshg-fw-ipfw: sshg-fw.in sshg-fw-ipfw.sh sshg-fw-ipset: sshg-fw.in sshg-fw-ipset.sh sshg-fw-iptables: sshg-fw.in sshg-fw-iptables.sh sshg-fw-nft-sets: sshg-fw.in sshg-fw-nft-sets.sh sshg-fw-null: sshg-fw.in sshg-fw-null.sh Sshg-fw-pf: sshg-fw.in sshg-fw-pf.sh .sh: cat $< $(srcdir)/sshg-fw.in > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.4.3/src/fw/fw.h000644 001751 001751 00000002420 14152213136 016204 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once #include "attack.h" #define FWALL_OK 0 #define FWALL_ERR -1 /** * Start the firewall process. */ int fw_init(void); /** * Stop the firewall process. */ int fw_fin(void); /** * Block an address associated with an attack. */ int fw_block(const attack_t *attack); /** * Release an address associated with an attack. */ int fw_release(const attack_t *attack); /** * Release all blocked addresses. */ int fw_flush(void); sshguard-2.4.3/src/fw/sshg-fw-iptables.sh000644 001751 001751 00000001076 14152213136 021140 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-iptables # This file is part of SSHGuard. run_iptables() { cmd=iptables if [ "6" = "$2" ]; then cmd=ip6tables fi # Check if iptables supports the '-w' flag. if $cmd -w -V >/dev/null 2>&1; then $cmd -w $1 else $cmd $1 fi } fw_init() { run_iptables "-L -n" } fw_block() { run_iptables "-I sshguard -s $1/$3 -j DROP" $2 } fw_release() { run_iptables "-D sshguard -s $1/$3 -j DROP" $2 } fw_flush() { run_iptables "-F sshguard" 4 run_iptables "-F sshguard" 6 } fw_fin() { : } sshguard-2.4.3/src/fw/Makefile.am000644 001751 001751 00000002101 14152213136 017447 0ustar00kevinzkevinz000000 000000 AM_CFLAGS=-I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE EXTRA_DIST = sshg-fw.in sshg-fw-firewalld.sh sshg-fw-ipfilter.sh sshg-fw-ipfw.sh sshg-fw-ipset.sh sshg-fw-iptables.sh sshg-fw-nft-sets.sh sshg-fw-null.sh sshg-fw-pf.sh libexec_PROGRAMS = sshg-fw-hosts libexec_SCRIPTS = sshg-fw-firewalld \ sshg-fw-ipfilter \ sshg-fw-ipfw \ sshg-fw-ipset \ sshg-fw-iptables \ sshg-fw-nft-sets \ sshg-fw-null \ sshg-fw-pf sshg-fw-firewalld: sshg-fw.in sshg-fw-firewalld.sh sshg-fw-ipfilter: sshg-fw.in sshg-fw-ipfilter.sh sshg-fw-ipfw: sshg-fw.in sshg-fw-ipfw.sh sshg-fw-ipset: sshg-fw.in sshg-fw-ipset.sh sshg-fw-iptables: sshg-fw.in sshg-fw-iptables.sh sshg-fw-nft-sets: sshg-fw.in sshg-fw-nft-sets.sh sshg-fw-null: sshg-fw.in sshg-fw-null.sh Sshg-fw-pf: sshg-fw.in sshg-fw-pf.sh CLEANFILES=$(libexec_SCRIPTS) sshg_fw_hosts_SOURCES = fw.h hosts.c ../common/simclist.c SUFFIXES=.sh .sh: cat $< $(srcdir)/sshg-fw.in > $@ sshguard-2.4.3/src/fw/sshg-fw-ipfilter.sh000644 001751 001751 00000001112 14152213136 021142 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-ipfilter # This file is part of SSHGuard. IPFILTER_CMD=ipf IPFILTER_CONF=/etc/ipfilter.conf fw_init() { : } fw_block() { FAM="" if [ -n "$2" ]; then FAM="-$2" fi echo "block in quick proto tcp from $1/$3 to any" | \ ${IPFILTER_CMD} ${FAM} -A -f - } fw_release() { FAM="" if [ -n "$2" ]; then FAM="-$2" fi echo "block in quick proto tcp from $1/$3 to any" | \ ${IPFILTER_CMD} ${FAM} -A -r -f - } fw_flush() { ${IPFILTER_CMD} -Fa && ${IPFILTER_CMD} -f ${IPFILTER_CONF} } fw_fin() { : } sshguard-2.4.3/src/fw/sshg-fw-pf.sh000644 001751 001751 00000000456 14152213136 017743 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-pf # This file is part of SSHGuard. fw_init() { pfctl -q -t sshguard -T show > /dev/null } fw_block() { pfctl -q -k $1 -t sshguard -T add $1/$3 } fw_release() { pfctl -q -t sshguard -T del $1/$3 } fw_flush() { pfctl -q -t sshguard -T flush } fw_fin() { : } sshguard-2.4.3/src/fw/sshg-fw-ipfw.sh000644 001751 001751 00000000746 14152213136 020305 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-ipfw # This file is part of SSHGuard. IPFW_TABLE=22 fw_init() { # Starting in FreeBSD 11, tables must first be created. ipfw table ${IPFW_TABLE} create 2>/dev/null || \ ipfw table ${IPFW_TABLE} list > /dev/null } fw_block() { ipfw -q table ${IPFW_TABLE} add $1/$3 } fw_release() { ipfw -q table ${IPFW_TABLE} delete $1/$3 } fw_flush() { ipfw table ${IPFW_TABLE} flush } fw_fin() { ipfw table ${IPFW_TABLE} destroy 2>/dev/null } sshguard-2.4.3/src/fw/sshg-fw.in000644 001751 001751 00000001144 14152213136 017327 0ustar00kevinzkevinz000000 000000 die() { echo "$(basename "$0"): $2" >&2 exit "$1" } fw_init || die 69 "Could not initialize firewall" cleanup() { trap "" EXIT if [ "YES" = "$flushonexit" ]; then fw_flush fi fw_fin exit } trap cleanup EXIT INT TERM while read -r cmd address addrtype cidr; do case $cmd in block) fw_block "$address" "$addrtype" "$cidr";; release) fw_release "$address" "$addrtype" "$cidr";; flush) fw_flush;; flushonexit) flushonexit=YES;; *) die 65 "Invalid command";; esac done sshguard-2.4.3/src/fw/sshg-fw-null.sh000644 001751 001751 00000000553 14152213136 020306 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-null # This file is part of SSHGuard. fw_init() { echo "===>>> Initializing (null) firewall" } fw_block() { echo "===>>> Blocking $1/$3 (null)" } fw_release() { echo "===>>> Releasing $1/$3 (null)" } fw_flush() { echo "===>>> Flushing blocked addresses (null)" } fw_fin() { echo "===>>> Cleaning up (null) firewall" } sshguard-2.4.3/src/fw/hosts.c000644 001751 001751 00000024716 14152213136 016737 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include #include #include #include #include #include #include #include "fw.h" #include "simclist.h" #ifndef HOSTSFILE_PATH # define HOSTSFILE_PATH "/etc/hosts.allow" #endif #define HOSTS_MAXCMDLEN 1024 /* hosts_access limits line length. How many addresses per line to use? */ #define HOSTS_ADDRS_PER_LINE 8 #define HOSTS_SSHGUARD_PREFIX "###sshguard###\n" #define HOSTS_SSHGUARD_SUFFIX "###sshguard###\n" typedef struct { char addr[ADDRLEN]; int addrkind; } addr_service_t; int hosts_updatelist(); int hosts_clearsshguardblocks(void); list_t hosts_blockedaddrs; FILE *hosts_file; /* buffer to hold the name of temporary configuration files. Set once, in fw_init() */ #define MAX_TEMPFILE_NAMELEN 60 static char tempflname[MAX_TEMPFILE_NAMELEN] = ""; size_t addr_service_meter(const void *el) { return sizeof(addr_service_t); } int addr_service_comparator(const void *a, const void *b) { addr_service_t *A = (addr_service_t *)a; addr_service_t *B = (addr_service_t *)b; return !((strcmp(A->addr, B->addr) == 0) && (A->addrkind == B->addrkind)); } static FILE *make_temporary_conffile(void) { FILE *f; f = fopen(tempflname, "w+"); if (f == NULL) return NULL; /* make sure to secure file permissions (-rw-r--r--) */ if (chmod(tempflname, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) != 0) { /* could not secure perms, return full failure */ perror("could not chmod"); fclose(f); unlink(tempflname); return NULL; } return f; } static int install_temporary_conffile() { if (rename(tempflname, HOSTSFILE_PATH) != 0) { perror("could not rename temporary file"); return FWALL_ERR; } return FWALL_OK; } int fw_init() { char buf[HOSTS_MAXCMDLEN]; FILE *tmp, *deny; /* set the filename of the temporary configuration file */ if (snprintf(tempflname, MAX_TEMPFILE_NAMELEN, "%s-sshguard.%u", HOSTSFILE_PATH, getpid()) >= MAX_TEMPFILE_NAMELEN) { fprintf(stderr, "'tempflname' buffer too small to hold '%s-sshguard.%u!'", HOSTSFILE_PATH, getpid()); return FWALL_ERR; } hosts_clearsshguardblocks(); /* place sshguard block delimiters (header/footer) into HOSTSFILE_PATH */ deny = fopen(HOSTSFILE_PATH, "r+"); if (deny == NULL) { perror("could not open hosts.allow"); return FWALL_ERR; } tmp = make_temporary_conffile(); if (tmp == NULL) { perror("could not create temporary file"); fclose(deny); return FWALL_ERR; } fprintf(tmp, "%s%s", HOSTS_SSHGUARD_PREFIX, HOSTS_SSHGUARD_SUFFIX); /* copy the original content of HOSTSFILE_PATH into tmp */ while (fgets(buf, HOSTS_MAXCMDLEN, deny) != NULL) { fprintf(tmp, "%s", buf); } fclose(tmp); fclose(deny); /* install temporary conf file into main file */ if (install_temporary_conffile() != FWALL_OK) return FWALL_ERR; list_init(&hosts_blockedaddrs); list_attributes_copy(&hosts_blockedaddrs, addr_service_meter, 1); list_attributes_comparator(&hosts_blockedaddrs, addr_service_comparator); return FWALL_OK; } int fw_fin() { hosts_clearsshguardblocks(); list_destroy(&hosts_blockedaddrs); return FWALL_OK; } int fw_block(const attack_t *attack) { addr_service_t ads; strcpy(ads.addr, attack->address.value); ads.addrkind = attack->address.kind; list_append(&hosts_blockedaddrs, &ads); return hosts_updatelist(); } int fw_release(const attack_t *attack) { int pos; if ((pos = list_locate(&hosts_blockedaddrs, attack->address.value)) < 0) { return FWALL_ERR; } list_delete_at(&hosts_blockedaddrs, pos); return hosts_updatelist(); } int fw_flush(void) { list_clear(&hosts_blockedaddrs); return hosts_updatelist(); } int hosts_updatelist() { char buf[HOSTS_MAXCMDLEN]; FILE *tmp, *deny; /* open hosts.allow file */ deny = fopen(HOSTSFILE_PATH, "r+"); if (deny == NULL) { perror("could not open hosts.allow"); return FWALL_ERR; } /* create/open a temporary file */ tmp = make_temporary_conffile(); if (tmp == NULL) { perror("could not create temporary file"); fclose(deny); return FWALL_ERR; } /* copy everything until sshguard prefix line */ while (fgets(buf, HOSTS_MAXCMDLEN, deny) != NULL) { fprintf(tmp, "%s", buf); if (strcmp(buf, HOSTS_SSHGUARD_PREFIX) == 0) break; } /* sanity check */ if (strcmp(buf, HOSTS_SSHGUARD_PREFIX) != 0) { fprintf(stderr, "hosts.allow file did not contain sshguard rules block\n"); fclose(deny); fclose(tmp); unlink(tempflname); return FWALL_ERR; } if (list_size(& hosts_blockedaddrs) > 0) { addr_service_t *curr; fprintf(tmp, "ALL :"); for (unsigned int cnt = 0; cnt < list_size(&hosts_blockedaddrs); cnt++) { curr = (addr_service_t *)list_get_at(&hosts_blockedaddrs, cnt); /* block lines differ depending on IP Version */ switch (curr->addrkind) { case ADDRKIND_IPv4: fprintf(tmp, " %s", curr->addr); break; case ADDRKIND_IPv6: fprintf(tmp, " [%s]", curr->addr); break; } if (((cnt+1) % HOSTS_ADDRS_PER_LINE) == 0) { /* switch to new line */ fprintf(tmp, " : DENY\nALL : "); } } fprintf(tmp, " : DENY\n"); } fprintf(tmp, HOSTS_SSHGUARD_SUFFIX); /* getting to the end of the original block */ while (fgets(buf, HOSTS_MAXCMDLEN, deny)) { if (strcmp(buf, HOSTS_SSHGUARD_SUFFIX) == 0) break; } /* sanity check */ if (strcmp(buf, HOSTS_SSHGUARD_SUFFIX) != 0) { fprintf(stderr, "hosts.allow file's sshguard rules block was malformed\n"); fclose(deny); fclose(tmp); unlink(tempflname); return FWALL_ERR; } /* copy the rest of the original file */ while (fgets(buf, HOSTS_MAXCMDLEN, deny)) { fprintf(tmp, "%s", buf); } fclose(tmp); fclose(deny); /* move tmp over to deny */ if (install_temporary_conffile() != FWALL_OK) { perror("could not rename temporary file"); return FWALL_ERR; } #if 0 fseek(tmp, 0, SEEK_SET); fseek(deny, 0, SEEK_SET); while(fgets(buf, HOSTS_MAXCMDLEN, tmp) != NULL) { fprintf(deny, "%s", buf); } ftruncate(fileno(deny), ftell(tmp)); fclose(tmp); fclose(deny); close(fd); unlink(tempflname); #endif return FWALL_OK; } int hosts_clearsshguardblocks(void) { char buf[HOSTS_MAXCMDLEN]; int docopy; FILE *tmp, *deny; /* open deny file */ deny = fopen(HOSTSFILE_PATH, "r+"); if (deny == NULL) { perror("could not open hosts.allow file"); return FWALL_ERR; } /* create/open a temporary file */ tmp = make_temporary_conffile(); if (tmp == NULL) { perror("could not create temporary file"); fclose(deny); return FWALL_ERR; } /* save to tmp only those parts that are not sshguard blocks */ docopy = 1; while (fgets(buf, HOSTS_MAXCMDLEN, deny) != NULL) { switch (docopy) { case 1: if (strcmp(buf, HOSTS_SSHGUARD_PREFIX) == 0) { docopy = 0; } else { fprintf(tmp, "%s", buf); } break; case 0: if (strcmp(buf, HOSTS_SSHGUARD_SUFFIX) == 0) { docopy = 1; } break; } } fclose(tmp); fclose(deny); /* move tmp over to deny */ if (install_temporary_conffile() != FWALL_OK) { perror("could not rename temporary file"); return FWALL_ERR; } return FWALL_OK; } static bool fill_attack(attack_t *attack, const char *addr, const char *type) { if (addr == NULL || type == NULL) { return false; } long long addrtype = strtoll(type, NULL, 10); if (addrtype != 4 && addrtype != 6) { return false; } static sshg_address_t address; strncpy(address.value, addr, ADDRLEN); address.kind = addrtype; attack->address = address; return true; } void backend_main(const char *name) { if (fw_init() != FWALL_OK) { fprintf(stderr, "%s: Could not initialize firewall\n", name); exit(69); } atexit((void (*)(void))fw_fin); char buf[128]; while (fgets(buf, sizeof(buf), stdin) != NULL) { const char *sep = " \n"; char *cmd = strtok(buf, sep); char *address = strtok(NULL, sep); char *type = strtok(NULL, sep); if (strcmp(cmd, "block") == 0) { attack_t attack; if (!fill_attack(&attack, address, type)) { fprintf(stderr, "%s: Invalid arguments to block\n", name); exit(65); } fw_block(&attack); } else if (strcmp(cmd, "release") == 0) { attack_t attack; if (!fill_attack(&attack, address, type)) { fprintf(stderr, "%s: Invalid arguments to release\n", name); exit(65); } fw_release(&attack); } else if (strcmp(cmd, "flush") == 0) { fw_flush(); } else if (strcmp(cmd, "flushonexit") == 0) { atexit((void (*)(void))fw_flush); } else { fprintf(stderr, "%s: Invalid command\n", name); exit(65); } } } int main() { backend_main("sshg-fw-hosts"); } sshguard-2.4.3/src/fw/sshg-fw-firewalld.sh000644 001751 001751 00000001630 14152213136 021302 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-firewalld # This file is part of SSHGuard. FIREW_CMD="firewall-cmd --quiet" fw_init() { ${FIREW_CMD} --query-rich-rule="rule family=ipv6 source ipset=sshguard6 drop" || { ${FIREW_CMD} --permanent --new-ipset="sshguard6" --type="hash:net" --option="family=inet6" ${FIREW_CMD} --permanent --add-rich-rule="rule family=ipv6 source ipset=sshguard6 drop" } ${FIREW_CMD} --query-rich-rule="rule family=ipv4 source ipset=sshguard4 drop" || { ${FIREW_CMD} --permanent --new-ipset="sshguard4" --type="hash:net" --option="family=inet" ${FIREW_CMD} --permanent --add-rich-rule="rule family=ipv4 source ipset=sshguard4 drop" } ${FIREW_CMD} --reload } fw_block() { ${FIREW_CMD} --ipset="sshguard$2" --add-entry="$1/$3" } fw_release() { ${FIREW_CMD} --ipset="sshguard$2" --remove-entry="$1/$3" } fw_flush() { ${FIREW_CMD} --reload } fw_fin() { : } sshguard-2.4.3/src/fw/sshg-fw-nft-sets.sh000644 001751 001751 00000002173 14152213136 021077 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshg-fw-nft-sets # This file is part of SSHGuard. CMD_NFT=nft NFT_TABLE=sshguard NFT_CHAIN=blacklist NFT_SET=attackers proto() { if [ "6" = "$1" ]; then echo ip6 else echo ip fi } run_nft() { ${CMD_NFT} $1 $(proto $3) "${NFT_TABLE}" "$2" > /dev/null 2>&1 } fw_init() { run_nft "add table" "" 4 run_nft "add table" "" 6 run_nft "add chain" "${NFT_CHAIN}"' { type filter hook input priority -10 ; }' 4 run_nft "add chain" "${NFT_CHAIN}"' { type filter hook input priority -10 ; }' 6 # Create sets run_nft "add set" "${NFT_SET} { type ipv4_addr; flags interval; }" 4 run_nft "add set" "${NFT_SET} { type ipv6_addr; flags interval; }" 6 # Rule to drop sets' IP run_nft "add rule" "${NFT_CHAIN} ip saddr @${NFT_SET} drop" 4 run_nft "add rule" "${NFT_CHAIN} ip6 saddr @${NFT_SET} drop" 6 } fw_block() { run_nft "add element" "${NFT_SET} { $1/$3 }" $2 } fw_release() { run_nft "delete element" "${NFT_SET} { $1/$3 }" $2 } fw_flush() { fw_fin fw_init } fw_fin() { # Remove tables run_nft "delete table" "" 4 run_nft "delete table" "" 6 } sshguard-2.4.3/src/parser/attack_scanner.c000644 001751 001751 00035150073 14447664720 021463 0ustar00kevinzkevinz000000 000000 #line 2 "attack_scanner.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ /* %not-for-header */ /* %if-c-only */ /* %if-not-reentrant */ /* %endif */ /* %endif */ /* %ok-for-header */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 6 #define YY_FLEX_SUBMINOR_VERSION 4 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* %if-c++-only */ /* %endif */ /* %if-c-only */ /* %endif */ /* %if-c-only */ /* %endif */ /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ /* %if-c-only */ #include #include #include #include /* %endif */ /* %if-tables-serialization */ /* %endif */ /* end standard C headers. */ /* %if-c-or-c++ */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined(__FreeBSD__) || \ (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #ifndef SIZE_MAX #define SIZE_MAX (~(size_t)0) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ /* %endif */ /* begin standard C++ headers. */ /* %if-c++-only */ /* %endif */ /* TODO: this is always defined, so inline it */ #define yyconst const #if defined(__GNUC__) && __GNUC__ >= 3 #define yynoreturn __attribute__((__noreturn__)) #else #define yynoreturn #endif /* %not-for-header */ /* Returned upon end-of-file. */ #define YY_NULL 0 /* %ok-for-header */ /* %not-for-header */ /* Promotes a possibly negative, possibly signed char to an * integer in range [0..255] for use as an array index. */ #define YY_SC_TO_UI(c) ((YY_CHAR) (c)) /* %ok-for-header */ /* %if-reentrant */ /* %endif */ /* %if-not-reentrant */ /* %endif */ /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. * Ditto for the __ia64__ case accordingly. */ #define YY_BUF_SIZE 32768 #else #define YY_BUF_SIZE 16384 #endif /* __ia64__ */ #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif /* %if-not-reentrant */ extern int yyleng; /* %endif */ /* %if-c-only */ /* %if-not-reentrant */ extern FILE *yyin, *yyout; /* %endif */ /* %endif */ #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) #define YY_LINENO_REWIND_TO(ptr) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { /* %if-c-only */ FILE *yy_input_file; /* %endif */ /* %if-c++-only */ /* %endif */ char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ int yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ /* %if-not-reentrant */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ /* %endif */ /* %ok-for-header */ /* %endif */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) #define yy_current_buffer YY_CURRENT_BUFFER /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* %if-c-only Standard (non-C++) definition */ /* %if-not-reentrant */ /* %not-for-header */ /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = NULL; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; /* %ok-for-header */ /* %endif */ void yyrestart ( FILE *input_file ); void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size ); void yy_delete_buffer ( YY_BUFFER_STATE b ); void yy_flush_buffer ( YY_BUFFER_STATE b ); void yypush_buffer_state ( YY_BUFFER_STATE new_buffer ); void yypop_buffer_state ( void ); static void yyensure_buffer_stack ( void ); static void yy_load_buffer_state ( void ); static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size ); YY_BUFFER_STATE yy_scan_string ( const char *yy_str ); YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len ); /* %endif */ void *yyalloc ( yy_size_t ); void *yyrealloc ( void *, yy_size_t ); void yyfree ( void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer( yyin, YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer( yyin, YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */ /* Begin user sect3 */ #define yywrap() (/*CONSTCOND*/1) #define YY_SKIP_YYWRAP #define FLEX_DEBUG typedef flex_uint8_t YY_CHAR; FILE *yyin = NULL, *yyout = NULL; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char yytext[]; /* %% [1.5] DFA */ /* %if-c-only Standard (non-C++) definition */ static yy_state_type yy_get_previous_state ( void ); static yy_state_type yy_try_NUL_trans ( yy_state_type current_state ); static int yy_get_next_buffer ( void ); static void yynoreturn yy_fatal_error ( const char* msg ); /* %endif */ /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ /* %% [2.0] code to fiddle yytext and yyleng for yymore() goes here \ */\ yyleng = (int) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ /* %% [3.0] code to copy yytext_ptr to yytext[] goes here, if %array \ */\ if ( yyleng >= YYLMAX ) \ YY_FATAL_ERROR( "token too large, exceeds YYLMAX" ); \ yy_flex_strncpy( yytext, (yytext_ptr), yyleng + 1 ); \ (yy_c_buf_p) = yy_cp; /* %% [4.0] data tables for the DFA and the user's section 1 definitions go here */ #define YY_NUM_RULES 105 #define YY_END_OF_BUFFER 106 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static const flex_int16_t yy_accept[29841] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 106, 104, 103, 103, 104, 103, 104, 104, 104, 104, 104, 96, 96, 96, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 103, 103, 104, 27, 27, 103, 104, 103, 104, 104, 104, 104, 104, 104, 104, 42, 44, 104, 56, 104, 104, 104, 104, 104, 70, 103, 103, 104, 104, 0, 0, 103, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 102, 102, 0, 102, 102, 102, 102, 102, 96, 0, 96, 96, 96, 96, 0, 0, 94, 0, 0, 0, 0, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 0, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 27, 27, 27, 27, 27, 27, 27, 0, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 44, 54, 56, 56, 102, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 95, 0, 0, 0, 102, 0, 0, 0, 0, 95, 95, 0, 0, 102, 102, 102, 102, 0, 0, 0, 94, 0, 0, 102, 0, 102, 0, 96, 94, 96, 96, 0, 0, 0, 0, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 0, 0, 0, 0, 0, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 0, 27, 27, 27, 27, 27, 27, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 54, 56, 102, 60, 60, 62, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 95, 95, 102, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 95, 95, 102, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 0, 102, 0, 0, 102, 0, 0, 0, 0, 96, 94, 96, 0, 0, 0, 0, 94, 94, 0, 94, 0, 94, 94, 94, 0, 0, 0, 0, 0, 102, 0, 102, 102, 102, 0, 102, 0, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 0, 0, 0, 0, 0, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 21, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 0, 94, 0, 94, 94, 94, 0, 27, 27, 27, 27, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 0, 94, 0, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 102, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 95, 95, 95, 102, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 95, 95, 95, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 94, 0, 0, 94, 94, 94, 0, 94, 0, 94, 94, 94, 102, 0, 0, 102, 0, 0, 0, 0, 102, 0, 96, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 102, 0, 102, 102, 102, 0, 102, 0, 102, 102, 102, 102, 102, 102, 102, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 102, 102, 102, 102, 102, 0, 102, 102, 0, 102, 102, 21, 21, 21, 21, 21, 21, 21, 21, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 27, 27, 27, 27, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 95, 102, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 95, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 102, 0, 102, 102, 0, 0, 96, 0, 0, 0, 63, 63, 0, 65, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 102, 0, 102, 102, 0, 0, 0, 0, 102, 0, 102, 0, 102, 58, 102, 0, 102, 0, 102, 102, 102, 0, 102, 0, 102, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 102, 102, 102, 0, 102, 102, 0, 102, 102, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 65, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 0, 27, 27, 27, 27, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 65, 0, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 95, 0, 92, 92, 92, 92, 0, 0, 0, 0, 7, 0, 95, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 94, 0, 0, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 0, 0, 102, 0, 96, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 0, 58, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 102, 0, 0, 95, 95, 0, 102, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 102, 0, 102, 0, 102, 59, 102, 102, 0, 0, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 0, 0, 0, 102, 102, 102, 0, 102, 102, 15, 15, 15, 15, 15, 15, 102, 102, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 102, 0, 18, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 27, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 72, 72, 0, 0, 0, 0, 0, 0, 0, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 0, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 92, 92, 92, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 102, 0, 96, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 102, 102, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 95, 102, 0, 0, 0, 0, 0, 0, 0, 0, 95, 95, 95, 0, 102, 0, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 102, 0, 0, 95, 95, 0, 102, 0, 102, 0, 0, 0, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 0, 0, 0, 0, 102, 0, 102, 0, 0, 102, 0, 0, 0, 0, 15, 15, 0, 102, 102, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 27, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 72, 0, 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 94, 0, 0, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 102, 0, 96, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 95, 95, 95, 102, 95, 95, 0, 0, 0, 95, 95, 0, 0, 0, 0, 95, 0, 102, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 95, 102, 0, 0, 0, 0, 0, 0, 0, 0, 95, 95, 95, 0, 102, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 102, 0, 102, 57, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 102, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 94, 94, 94, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 94, 94, 94, 72, 0, 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 54, 56, 0, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 0, 102, 102, 0, 0, 96, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 94, 0, 0, 0, 0, 0, 0, 0, 32, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 58, 0, 0, 0, 0, 0, 95, 102, 95, 0, 7, 0, 95, 7, 0, 0, 0, 58, 95, 0, 0, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 95, 95, 95, 102, 95, 95, 0, 0, 0, 95, 95, 0, 0, 0, 0, 95, 0, 102, 0, 102, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 102, 0, 0, 95, 95, 0, 102, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 25, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 94, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 94, 72, 0, 0, 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 54, 56, 0, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 94, 0, 0, 0, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 102, 102, 0, 0, 96, 101, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 58, 0, 0, 0, 95, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 58, 0, 58, 0, 0, 0, 0, 0, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 59, 0, 0, 0, 0, 0, 95, 102, 95, 0, 7, 0, 95, 7, 0, 0, 0, 59, 95, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 95, 102, 0, 0, 0, 0, 0, 0, 0, 0, 95, 95, 95, 0, 102, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 48, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 101, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 101, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 0, 72, 0, 0, 0, 0, 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 44, 54, 54, 54, 56, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 102, 0, 96, 0, 0, 0, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 59, 0, 0, 0, 95, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 59, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 95, 95, 95, 102, 95, 95, 0, 0, 0, 95, 95, 0, 0, 0, 0, 95, 0, 102, 0, 102, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 0, 48, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 72, 0, 0, 0, 0, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 44, 44, 54, 54, 54, 56, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 94, 0, 0, 94, 0, 94, 94, 0, 0, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 102, 0, 96, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 57, 0, 0, 0, 0, 0, 95, 102, 95, 0, 7, 0, 95, 7, 0, 0, 0, 57, 95, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 0, 72, 0, 0, 0, 0, 35, 35, 35, 35, 35, 46, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 44, 54, 54, 54, 56, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 94, 94, 0, 94, 94, 94, 94, 94, 0, 0, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 0, 0, 102, 0, 96, 0, 0, 0, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 93, 93, 93, 93, 0, 0, 0, 0, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 0, 0, 0, 95, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 57, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 93, 93, 93, 93, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 93, 93, 93, 93, 72, 0, 0, 0, 0, 35, 35, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 44, 54, 54, 56, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 102, 0, 96, 0, 0, 0, 94, 94, 94, 94, 94, 0, 94, 94, 94, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 0, 94, 94, 94, 93, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 0, 94, 94, 94, 93, 72, 0, 0, 0, 0, 0, 35, 35, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 44, 54, 54, 56, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 100, 0, 100, 0, 96, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 72, 0, 0, 0, 0, 35, 35, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 94, 94, 94, 94, 94, 94, 0, 0, 0, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 100, 100, 0, 102, 0, 100, 0, 96, 0, 0, 0, 94, 94, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 94, 94, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 0, 94, 94, 94, 94, 94, 94, 72, 0, 0, 0, 0, 35, 35, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 0, 0, 60, 62, 0, 64, 64, 64, 64, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 100, 0, 96, 0, 0, 0, 94, 94, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 94, 94, 94, 72, 0, 0, 0, 0, 0, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 0, 0, 60, 62, 0, 64, 64, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 100, 100, 0, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 27, 27, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 0, 0, 60, 62, 0, 64, 64, 64, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 27, 27, 0, 0, 29, 29, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 0, 0, 60, 62, 0, 64, 64, 64, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 74, 85, 85, 85, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 69, 0, 0, 0, 0, 0, 27, 27, 69, 0, 29, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 69, 0, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 54, 54, 56, 0, 0, 0, 60, 62, 0, 64, 64, 64, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 18, 0, 0, 0, 0, 0, 27, 0, 29, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 72, 0, 0, 0, 35, 46, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 54, 54, 0, 0, 0, 0, 0, 60, 62, 0, 64, 64, 64, 69, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 102, 102, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, 0, 0, 0, 0, 27, 0, 29, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 29, 29, 29, 29, 29, 0, 0, 72, 0, 0, 0, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 54, 0, 0, 0, 0, 0, 0, 64, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 0, 74, 85, 85, 69, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 99, 99, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 36, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, 0, 0, 0, 69, 27, 0, 29, 29, 29, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 29, 29, 29, 29, 0, 0, 0, 0, 69, 29, 29, 29, 0, 0, 72, 0, 0, 0, 35, 46, 0, 0, 0, 0, 69, 0, 69, 0, 0, 0, 44, 54, 0, 0, 0, 0, 0, 0, 64, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 74, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 0, 0, 0, 98, 98, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 75, 0, 0, 69, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, 69, 0, 0, 27, 0, 29, 29, 29, 0, 0, 0, 29, 29, 29, 29, 29, 0, 0, 69, 0, 0, 0, 0, 0, 0, 29, 29, 29, 29, 0, 0, 0, 0, 29, 29, 29, 0, 0, 72, 0, 0, 0, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 44, 54, 0, 0, 0, 0, 0, 0, 64, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 74, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, 0, 0, 27, 0, 29, 29, 0, 69, 29, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 29, 29, 29, 29, 0, 0, 0, 0, 29, 29, 29, 0, 0, 69, 0, 0, 69, 35, 46, 69, 0, 0, 0, 0, 0, 0, 0, 44, 54, 0, 0, 0, 0, 0, 0, 64, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 69, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 74, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 27, 0, 29, 29, 0, 29, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 29, 29, 29, 29, 0, 0, 0, 0, 29, 29, 29, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 44, 54, 0, 0, 0, 0, 0, 0, 64, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 74, 69, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 0, 12, 0, 0, 0, 27, 0, 29, 29, 0, 29, 29, 29, 0, 0, 0, 0, 0, 29, 29, 29, 29, 0, 0, 0, 0, 29, 29, 29, 0, 0, 0, 0, 35, 0, 69, 0, 0, 0, 0, 0, 44, 54, 0, 0, 0, 0, 0, 0, 64, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 6, 0, 69, 0, 0, 0, 0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 0, 36, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 0, 12, 0, 0, 0, 27, 0, 29, 29, 0, 29, 29, 29, 0, 0, 0, 0, 29, 29, 29, 29, 29, 29, 0, 0, 0, 0, 29, 29, 0, 31, 0, 0, 35, 0, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 0, 0, 66, 64, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 69, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 6, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 66, 0, 55, 36, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 21, 0, 12, 0, 0, 0, 27, 0, 29, 29, 0, 29, 29, 29, 0, 0, 0, 29, 29, 29, 29, 29, 29, 29, 29, 29, 0, 0, 0, 29, 29, 0, 0, 35, 0, 0, 0, 0, 0, 0, 44, 44, 51, 51, 0, 0, 0, 0, 0, 66, 66, 66, 66, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 69, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 21, 0, 12, 0, 0, 0, 27, 0, 29, 29, 0, 29, 29, 0, 0, 29, 29, 29, 29, 29, 29, 29, 29, 0, 0, 0, 29, 29, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 0, 0, 66, 66, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 6, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 27, 0, 29, 0, 29, 29, 0, 0, 29, 29, 29, 29, 29, 29, 29, 29, 0, 0, 0, 29, 29, 0, 0, 35, 0, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 0, 0, 66, 66, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 0, 0, 0, 0, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 23, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 27, 0, 29, 69, 29, 29, 0, 0, 29, 29, 29, 29, 29, 29, 29, 29, 0, 0, 0, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 0, 0, 66, 66, 64, 0, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 0, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 83, 27, 0, 29, 29, 29, 0, 0, 29, 29, 29, 29, 29, 0, 0, 83, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 0, 0, 66, 66, 64, 0, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 69, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 27, 0, 29, 29, 29, 0, 0, 29, 29, 29, 29, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 0, 0, 66, 66, 64, 0, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 74, 85, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 66, 36, 0, 0, 0, 0, 43, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 27, 27, 27, 27, 0, 0, 0, 0, 0, 29, 29, 29, 0, 0, 29, 29, 0, 0, 29, 69, 0, 0, 0, 0, 38, 0, 0, 44, 51, 0, 0, 0, 0, 69, 66, 66, 64, 0, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 0, 69, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 27, 27, 27, 27, 0, 0, 0, 0, 0, 29, 29, 0, 0, 29, 29, 69, 0, 29, 33, 33, 0, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 0, 66, 66, 0, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 27, 27, 27, 27, 0, 0, 0, 0, 0, 29, 29, 69, 0, 29, 29, 0, 29, 33, 0, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 0, 66, 66, 0, 69, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 27, 27, 27, 27, 0, 0, 0, 0, 0, 29, 29, 0, 29, 29, 0, 29, 33, 0, 0, 0, 0, 40, 0, 44, 51, 0, 0, 0, 0, 66, 66, 0, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 69, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 69, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 69, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 27, 27, 27, 0, 0, 0, 0, 29, 0, 29, 29, 0, 29, 33, 0, 38, 38, 0, 0, 44, 51, 0, 0, 0, 0, 66, 66, 0, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 69, 0, 0, 26, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 84, 0, 0, 0, 27, 27, 84, 0, 0, 29, 0, 29, 29, 0, 29, 33, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 69, 66, 66, 0, 69, 77, 76, 76, 69, 76, 76, 76, 69, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 66, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 27, 0, 0, 0, 29, 0, 29, 29, 0, 29, 33, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 66, 66, 0, 69, 76, 69, 76, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 69, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 69, 76, 76, 76, 76, 76, 76, 76, 76, 76, 69, 76, 85, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 22, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 27, 0, 0, 0, 29, 0, 29, 29, 0, 33, 38, 0, 0, 0, 0, 44, 51, 0, 0, 0, 66, 64, 64, 64, 64, 64, 0, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 69, 76, 76, 76, 76, 76, 76, 69, 76, 76, 76, 85, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 11, 66, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 27, 27, 0, 0, 0, 29, 0, 29, 0, 33, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 66, 64, 64, 64, 68, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 84, 85, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 11, 0, 66, 0, 69, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 27, 27, 84, 0, 0, 0, 29, 0, 33, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 66, 64, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 29, 0, 33, 0, 0, 0, 0, 0, 44, 51, 0, 0, 0, 66, 64, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 29, 0, 33, 0, 0, 0, 38, 0, 44, 51, 0, 0, 0, 66, 64, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 66, 0, 0, 69, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 21, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 33, 0, 0, 0, 0, 44, 51, 0, 0, 0, 66, 64, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 69, 77, 77, 77, 77, 78, 78, 69, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 84, 85, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 84, 0, 66, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 21, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 29, 0, 33, 0, 0, 0, 0, 44, 51, 0, 0, 0, 66, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 84, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 16, 21, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 29, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 78, 78, 78, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 21, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 29, 0, 33, 0, 38, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 69, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 78, 69, 78, 76, 76, 76, 76, 76, 69, 76, 76, 76, 76, 76, 69, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 21, 0, 0, 27, 0, 0, 0, 84, 0, 0, 29, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 78, 76, 76, 69, 76, 76, 76, 69, 76, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 21, 0, 0, 27, 0, 29, 0, 0, 0, 0, 29, 0, 33, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 84, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 21, 0, 0, 27, 0, 29, 29, 29, 29, 29, 0, 0, 0, 0, 29, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 21, 69, 0, 27, 69, 29, 29, 29, 29, 0, 0, 0, 0, 29, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 21, 0, 29, 29, 29, 29, 29, 0, 84, 0, 0, 29, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 21, 0, 29, 29, 29, 29, 29, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 16, 21, 0, 29, 29, 29, 29, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 69, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 29, 29, 29, 29, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 68, 77, 77, 77, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 0, 0, 16, 0, 29, 29, 29, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 68, 77, 77, 69, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 29, 29, 29, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 68, 77, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 29, 29, 29, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 68, 77, 77, 77, 77, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 29, 29, 29, 0, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 77, 77, 69, 77, 76, 76, 76, 76, 76, 76, 69, 76, 76, 76, 76, 76, 76, 76, 69, 76, 0, 0, 0, 0, 0, 0, 0, 71, 69, 0, 0, 0, 0, 69, 16, 0, 29, 29, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 76, 76, 69, 76, 76, 76, 76, 69, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 29, 29, 0, 29, 0, 0, 0, 0, 0, 0, 0, 69, 0, 0, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 29, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 29, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 16, 0, 29, 0, 0, 0, 0, 69, 0, 69, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 87, 29, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 29, 0, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 0 } ; static const YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 5, 1, 6, 7, 1, 1, 1, 8, 9, 10, 1, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 42, 48, 49, 50, 51, 52, 53, 42, 42, 54, 55, 56, 57, 56, 58, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 68, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static const YY_CHAR yy_meta[84] = { 0, 1, 1, 2, 3, 4, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, 1, 1, 1, 1, 1, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 1, 3, 1, 3, 3, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static const flex_int32_t yy_base[35545] = { 0, 0, 0,145490,145489, 0, 0, 79, 80, 83, 84, 85, 86,145488,145487,145478,145477,145467,145466,145456,145455, 145449,145448,145402,145401,145400,145399,145398,145397,145396,145395, 145394,145393,145392,145391,145435,145434,145379,145378,145386,145378, 145422,145421,145375,145374,145404,145403,145406,145405,145405,145404, 145403,145402, 0, 0, 0, 0, 88, 89,145406,145368, 92, 96, 63, 104, 83, 159, 242, 300, 358, 114, 126, 240, 441, 266, 484, 544, 262, 43, 271, 45, 217, 612,145372,145331, 215, 410,145343,145328,145339,145351, 94, 276, 81, 688, 115, 461, 465, 460, 308, 466, 498, 739, 31,145325,145338, 436,145317,145328,145335, 775, 533, 849, 341, 648, 791, 907, 664, 546, 572, 238, 240, 545, 633, 650, 117, 118, 241,145350,145313, 516, 314, 447, 764, 280, 659, 803, 298, 797,145348, 286, 676, 508, 815, 497, 495, 0, 488, 519, 787, 876, 979, 1037, 929, 950, 1001, 1116, 125, 559, 668, 1128, 275, 1149, 1192, 1250, 1308,145352, 884, 1391, 1449, 1528, 336, 1588, 1648,145351, 1716, 1780, 566, 1214, 556, 1272, 1413, 1552, 1612, 1638, 1578, 1833, 1660, 1882,145333, 979, 145288,145285,145297,145299,145286,145286,145308,145295, 523,145308, 145287,145293, 1681,145320,145306,145270,145277, 417,145309,145274, 145280, 271,145258,145259,145300,145289,145264,145192,145085,145010, 145005, 602, 1943, 541, 733, 651, 678, 1106, 877, 1518, 1118, 1680, 1738, 1181, 878, 1613, 684, 1211, 1750, 1682, 1210, 1239, 1752, 455, 456, 604, 1122, 640, 1710, 2007, 662, 1823, 2090, 2148, 2202, 1904, 755, 0, 820,145030, 1173, 789, 1209, 2263, 850, 2120, 904, 1761, 2324, 905, 955, 1171, 2393, 2465, 2537, 2605, 1952, 1866, 1794, 215, 643, 1972, 413, 827, 1503, 847, 550, 75, 2176, 1372, 145029, 806, 665, 977,145028, 853, 1757,145027,145024, 1121, 1208, 1264, 1405, 2089, 2224, 2252, 539, 2382, 2114, 730, 1174, 2313, 2669, 2752, 2810, 2868, 2951, 1015, 3030, 1787, 3079, 3143, 2404, 1258, 2417, 2438, 1398, 3185,145022, 1932, 1743,145026,144997,144995, 2463, 3249, 1177, 3307, 3364, 3421, 145023, 3504, 852, 3562, 3645, 3703, 3761, 2488, 2508, 3819, 145022, 3902, 3979, 4062, 1542, 4141,145021, 1875, 4209, 1745, 4269, 1797, 4333,145009, 4391, 4449, 2559, 2582, 1520, 2595, 2627, 3929, 1826, 2780, 1763, 4491, 1798, 3043, 2749, 2834, 2809, 4540,145016,145007, 2639, 4600, 581,145034, 951, 1574, 713,145032,145028, 952,145027, 840, 1264, 1175, 1124, 1405, 689, 534, 1204, 1222, 1580, 1534, 843, 526, 3109, 974, 1549,144977, 731, 4649, 215, 1913, 388, 1200, 1805, 1571, 1873, 1920, 1346,144946, 1943, 1596, 1737, 1344, 1470, 1550, 1199, 1723, 1837, 2107, 4701, 1822, 2147, 978, 4772, 2153, 2154, 2175, 2087, 4821, 4242, 2178, 2497, 4895, 2223, 4953, 2234, 3044, 3020, 5036, 1582, 3215, 903, 1706, 1371, 5091, 1854, 2442, 1843, 2221, 3273, 2281, 2282, 2461, 5152, 2514, 3124, 3033, 3034, 2179, 3330, 4573, 2536, 4390, 5224, 3156, 5296, 2364, 3150, 3151, 5379, 2088, 1093, 2180, 2136, 3392, 2315, 2731, 1707, 605, 1949, 2412, 2354, 2423, 1263, 4151, 1106, 2551, 1522, 1603,144975, 2152, 2067, 1604, 1754,144973, 2151,144959, 2257, 2427, 3653, 3051, 5448, 1655, 1709, 1897, 2797, 2254, 2356, 2358, 3036, 4677, 1501, 3532, 5512, 3731, 1894, 5570, 4713, 2499, 4741, 5628,144963, 5711, 5769, 5827, 5885, 3249, 3307, 5943,144962, 6026, 3061, 3653, 6105, 3093, 6154, 3663, 3094, 6218, 3169, 2498, 6260, 3161, 4349, 3501, 3783, 6309, 1942, 2400, 1382, 4232, 2786, 6373, 6430, 2460, 6487, 6544, 2755, 2342, 6601, 6684, 1921, 6742, 6800,144961, 6883, 6941, 7024, 7082, 0, 2423, 3364, 4477, 2513, 3053, 7140, 7198,144960, 7281,144965, 7360,144956,144947, 2063, 7439, 3664, 7488, 3667, 3668, 7548, 3671, 4350, 4407, 3681, 7597, 7661, 7718, 7775, 7832, 3902, 3951, 4131, 4174, 4251, 4161, 2463, 2547, 2593, 3175, 7875, 3721, 7924, 4282, 3176, 3938, 4504, 4505, 4781, 7973,144953,144944, 8037, 2611, 4303, 3093, 2527,144933, 4633, 2446, 4843, 2712, 3146, 1085, 987, 2994, 2086, 2728, 2249, 2407, 3035, 1865, 3036, 5034, 4861, 2733, 2735, 3037, 8105, 2786,144902, 2559, 2769, 2791, 3048, 3047, 3153, 2402, 2562, 8178, 2512, 3151, 3117, 8257, 3214, 3154, 3085, 8319, 3245, 3470, 8375, 2736, 4312, 2807, 3484, 8434, 3248, 3302, 3363, 3683, 8505, 3797, 8584, 4353, 4320, 4427, 4506, 4791, 8633, 5061, 3318, 3611, 4919, 3188, 3657,144937, 8682, 4241, 3654, 5120, 4240, 4431, 3486, 3905, 4278, 8739, 4495, 4336, 4394, 4543, 8811, 3919, 8890, 4409, 4502, 4662, 5163, 5081, 8939, 4575, 3264, 3190, 3340, 4605, 3283, 3690, 4199, 3708,144936,144935, 3265, 5251, 3900, 3192, 3006, 4346, 3362, 3490, 3505, 3771, 1366, 3506, 3627, 4465, 4374, 4602, 4375, 3904, 3772, 3906, 3631, 4262, 4259, 4387, 4318, 3707, 4389, 4392, 9003, 5377, 9061, 3661, 4769, 4813, 9119, 9177, 9235, 4428, 4816,144967, 4819, 5065, 9293, 5142,144938, 9320, 3686, 3901, 5130, 9374, 9457, 9515, 9573, 9656, 9714, 0, 3771, 5404, 5513, 9772, 9830,144937,144928, 9885, 4467, 9934, 4755, 4519, 9983, 4524, 5185, 5413, 4726,10047, 5161,10089, 4615,10138, 5162, 4549, 4728, 5529, 5708, 3717, 4460, 2564, 5437,10202,10259, 3488, 5594, 4245,10316,10373,10456, 4244, 10514,10572,10630,10687,144933,144915,10770,10828,10886, 5736, 5769, 6181,10944,11027, 4406,11094,11152,11210,144919,144910, 11293,11372,144914,144905, 4497,11440, 4663, 5165,11489, 4690, 11549, 5166, 4729, 4691,11598, 4724,11658, 5261, 4710, 4904, 5786, 6095,11718,11782, 4574,11839, 5849, 5907, 6129, 4339, 11896,11939, 6218, 4243, 3773, 4534, 4854,144889, 5067, 4317, 11988, 4727, 5262,12037, 4754, 6119, 6235, 5180, 5267, 6273, 6275, 4591, 7370,12086,144911,144902, 7521, 6247, 3338, 5054, 3336, 3118,12150, 4514, 2788, 4803, 2226, 3935, 4402,144935, 4482,144931, 4622,12208, 4405,12266, 4580,12340,12395, 7379, 6339,144921, 4639,12444,144852, 1623, 4510, 4619, 4758, 4835, 4168, 4749, 4872, 3883,12516, 6372, 4809, 4669,144886, 4574, 12588, 4776,12646,12703,12759, 5029,144850, 4835, 4777, 4838, 5202, 5064,12808,12864, 4855, 4893, 5147, 5408, 5080, 5166, 5394, 5525, 5547, 5548,12938, 5100, 5414,13006, 5183, 6389, 6390, 5579, 5490, 6447, 6503,13066, 5035, 5228, 4748, 8202, 6567, 5094, 5229, 5677, 5552, 5484,13115, 7048, 5691, 5692, 5345, 5745, 5806, 5223, 5514, 6082, 6410, 6723, 5775, 6466, 13187, 5530, 5788,13255, 5718, 6504, 6681, 5835, 5789, 6700, 6880,13315, 5707, 4851, 1788, 5843, 5365, 5779, 6264, 6375, 6155, 6443, 4652, 6279, 3775, 4451, 4894, 4853, 5254, 4655, 5002, 5410,13379, 5086, 5221, 6526, 5439, 5521, 5038, 5182, 5554, 5089, 5555, 5226, 5725, 5438, 5571, 8279,13437, 6253, 5842, 8307, 6298, 6446,13492,13556,13614, 5895, 6467, 6726, 5179, 6766, 6470, 7124,13672,13730, 5351,13788,13871,13929, 13987,14045, 6908, 7024, 7691,14103,14183, 5921, 6322,14232, 6137,14281, 6692, 6168, 6099,14330, 6237,14379, 6703, 6118, 6324, 7098, 7099,14443,14485, 6290, 6706,14534, 6293, 7452, 7429, 6507, 6890, 7453, 7454, 6523,14598,14678, 5839,14744, 7627, 7741, 8003,14801,14858, 5840, 5883,14941,14999,15082, 15140,15223, 0, 5911, 7168, 7580, 7802,15306, 5215, 7860, 15376,15434,15517,15596,144886,144877, 5526, 7897, 7946,15676, 15705,15730, 6392,15779, 7100, 6395,15839, 6400, 8138, 7792, 7118, 7101,15888, 6427, 7148,15937, 6465, 8211, 8134, 7538, 7503, 8213, 8135,16001,16059,16116,16173,16231, 6681, 8342, 8364, 7350, 5523, 5812, 6249,144869,530678, 7412, 6157, 8398, 8420,16286,16315,16340, 6484,16389, 7530, 6194, 7612, 8215, 8136,16450, 8457, 8574,16467,144873,144864, 8704, 7478, 6111, 16527, 5536, 6361, 4849, 6471, 6524,16591,16649,16707,16765, 16848,16906,16964, 6525,17022, 6487, 6392, 6218,144898,17079, 4347,17137,144897,17195, 6312, 7487, 6404, 7412,144896, 6414, 6881,17259, 6559,17317,17374,17430, 4832, 8713, 5766,17490, 5018, 6085, 799, 8479, 8608,17573, 5699, 5405, 7522, 5152, 17646,17713,17796, 6129, 4740, 8751, 6330,17874,17931, 6722, 17988,18045, 6734, 6319, 6725,18099, 6473, 7144, 6728, 6080, 5794, 5553,144848,18132, 6864, 7120,18203,18252,18308, 6719, 7477, 7410, 7697, 8316, 6866, 7023, 7022, 7550, 7699, 7551, 18382,18440,144847,144838,18483, 7106,18543, 7561, 7705, 7988, 8646, 8137, 7379,144852, 7831,18576, 7020, 5442,18627, 9854, 8777,144870,18660, 7698, 7939,18729,18786, 9027,144868, 7409, 7554, 8140, 8374, 8711, 8709, 6862, 7122, 8144, 6724, 8635, 7716, 8893,18858,18930,144839,144830,18987, 7393,19047, 8221, 7735, 8216, 8903, 8904, 7504,144844, 8940,144831, 6224, 6699, 7829, 7618,144830, 7648, 7590, 8255, 7669, 7975, 7977, 6557, 7443, 7761, 7084, 6867, 7369, 7598, 7790, 7640,19111,19169, 7791, 7866, 8205, 8395, 7868, 7658, 6159,19223, 7918, 6670, 19305, 8636,19363, 9118, 7700,19418, 9176, 7493, 8317,19486, 8154, 8431, 7994,19550,19608, 7887, 9201, 8929, 8970,11055, 9291, 9038,19666,19724, 8212,19782,19865,19923,20006, 0, 6511, 9090, 9143, 9487, 9263, 9321,20086,20115,20152, 7956, 20201, 9003, 8120,20250, 8130, 9730, 9512, 8292, 9302,20299, 8131, 9464,20348, 8132, 9731, 9788, 8388, 9465, 9789, 9898, 20412,20466,20494,20522,20551,20576, 8265,20625, 9522, 7890, 8762, 9899, 9948,20686,20715,20746,20809, 6739,20882, 9516, 7776, 9680,10013,10168, 7641, 8267, 7730,20939,21016,21074, 21157,21215,21273, 9656, 9876, 9960, 9811,21331,21394,21451, 21528,21586,21669,21748,144834,144825, 8368,21816, 8293, 9534, 21865, 8354,21925, 9732, 8764, 7915,21974, 8469,22023, 9733, 8214, 8997,10054,10055,10111,10230,22084,22113,22138, 8598, 22187, 9734, 8599,10153,10276,10453,22248,10344, 7405,22280, 22337,22392,10077, 7731, 6081, 6386, 8942,22402, 8661, 9791, 22451, 8663,10463,10473,10279, 9792,10530,10531,22500,10596, 22549,144828,144819, 8370,10653, 7833,11478,22613, 7733,22662, 5852, 8432,11118, 7021,22727, 8371,22785,22842,22898, 9096, 22962,23020,23078,23161,23219,23277,23335,144825, 9756,23418, 23476,23534,144842, 6837, 8317,23591, 7123, 7644,23665,23723, 23781,23839,23922,23980,24038, 7755,24096, 6472, 8605,24153, 5760, 4576, 7448,144780, 8171,24230, 8422, 8679,11381, 8428, 24308,24365, 9874,24422,24479, 7835, 8399, 9654,24533, 9019, 10240, 8637, 8680, 7538, 7524,24593, 7742, 7897,12353, 9814, 24676, 7571, 8675, 8617, 8127,24741, 9531, 9785, 7948,24823, 9935, 8655,24906,144777, 6555,11518,24980,25037, 8865,10852, 8159,25094,25151,10910, 8252, 8897,144805, 6137, 5407, 8681, 144783, 7893, 8981, 9879, 8881,25206, 8604,25262, 9984, 8884, 8754, 9002,10139,25336, 8722,10277,25404, 8724,10786,10767, 10550,10278,10787,11024,25464, 8900, 8894, 8433,11627, 8980, 9497, 9115,25513, 9154,11025,11043,11555,11522,11687,10493, 11599, 9495, 8906, 9717,11730,10551,25585, 9078,10476,25653, 9079,11453,11454,10638,10789,11455,11731,25713,144782, 9064, 7940, 9018,10261, 9241,10106,10102,10200,144781, 9065, 9890, 9974,10615,10616,11137, 9985,11663,10333, 8879, 9949, 7494, 3682, 9164, 7818, 9433, 9207, 7889, 9715, 8597,25777,25835, 8312, 8742, 9240,10004,10239, 7642, 7981,25889,25967,26045, 26123,26202,26280,26358,26436,26514,26592,26671,26749,26827, 26906,26984,27062,27140, 7993,27222,27280,10296,12294, 9456, 10302,27335, 9265,12544,10495, 9845, 9212,27406, 8096,12820, 11761,11804,10555,12832,10812,27464,27522, 8749,27580,27638, 10202,11392,11868,27696, 9912,11035,27764, 9916,27813,11160, 11612,10053,27862,10121,27911,11172,10443,11732,11903,11856, 27960,144791, 9304, 5049,28009,10478,28058,11174,11029,11817, 11913,11953, 9466,144790,28107,10536,11574,28156,10580,11954, 12003,12050,11575,12052,12166,28205,28269,28330,12116, 9989, 9091,10472, 9191, 9436, 4773, 9092,10003,12472,11948,10045, 12612, 7038,28407,28464, 9631,11053,10276,10714,10773,10547, 28543,28620,28697,28755, 0, 8469,11403,28838,10494,11054, 28900,28958,29037,144780,144771, 9106, 8939, 9508,10211,11162, 29105,10792,29154,11640,11175,29214,11178,12167,12224,12101, 11700,29263,11362,11744,29312,11468,12225,12356,12186,11846, 12357,12367,29361,11472,11914,29410,11473,12409,12385,12244, 11916,12410,12411,29459,29523,29580,12013,12150, 9526,10454, 8372,10588,11038,11827,11911,12294,29648,11504,29697,12060, 11054,12362,12662,12513,12222,11830,29748,12588,12646,12725, 12748,29797,144778,144769, 9905,10784, 9774,29857, 9702, 9234, 29906,12876, 9906,29977,30034, 9174,30091,30148,10049, 9801, 9653,30202, 9826,10297,11538,12056,30266,144803,30324,30382, 144775,30465,30523,30606,30664,30722,30805,30863,30921,11762, 30978,144774,144764,10811,31061,31119,144768,31176,11092, 9110, 31233,10142,144783,11694,31290,10275,31348,31405,31464,11116, 11565, 9760,10754,13037,10030,31547,11541,31605,31662,31718, 11524,31782,31840,31898,31981,32039,32097,32155,144752,12301, 32238,32296,32354,32411,32490,10805,10100,32547,144729,32605, 8215,11600,10548,10644,32659,32730,32787,11173,12904,12188, 32844,32901,13137,11691,10468,11106,10614, 9988,32971, 8574, 33054, 9136,10107,10143,33112,33179, 8213,10048, 9151,33258, 10201,10469, 6429,10552,12477,11551,10884,33315,10733,10882, 10613,11109,33377,13284,13345,13127,33434,33491,14623,13403, 10826,10883,11347, 8347,33554, 9954, 9437,11632,11630,11707, 11708,33597,12496,11646,11781,12253,12075,33668,33726,144731, 144722,33769,11745,33829,12169,11561,12363,12663,12852,11532, 144736,33880,13028,13088,13097, 8707,11028,11380,11444,11872, 11910,12264,12714,11912,33929,12718,13414,12187,12289,11842, 13592,13591,34001,34073,144728,144718,34130,11790,34190,12359, 11950,12413,13534,13454,11831,144732,34241,13149,13159,13306, 9438,10203,13378,11391,12512,12368,12408, 9652,12045,12868, 11978,12448,12058,13482,12302,12106,12532,10574,10807,11053, 10887, 8768,34305,34376, 8943,11629,34430,11837,12149,12076, 12195,12464,11951,34484,34562,34640,34718,34796,34874,34952, 35030,35108,35186,12801,12223,13443,12481,12303,13686,13649, 13546,35264,35342,13626,12007, 877,12002,10499,11007,11761, 9492,12497,11492,11895, 2104,11132,12370,11071, 9236,35424, 13443,13468,13544,12402,12587,12622,35479,14706,12719,12780, 13707,10750,11525,13569,144751,12810,13710,35550,13908,12008, 35608, 0, 9309,13636,35691,35749,144723,144713,35792,12172, 35841,12664,12173,35890,12412,13878,13868,12666,12665,35939, 12559,13048,35988,12560,13888,13945,12890,13457,13946,14173, 36037,12668,13465,36086,12700,14196,14197,13056,13575,14198, 14247,36135,12159,12217,12839,12836,36184,13268,36233,13723, 11979,13269,14294,14343,12841,12333,36284,13758,14009,14067, 36348,36421,14409,14564,11989,11564,10295,12249,12042,12414, 13629,11649, 8369,11393,12291,13645,11135,13249,13333,12413, 12461,12450,11738,14824,11768,36499,36556, 6227,12311, 5357, 12546,11683,10209,12550,13400,12503, 7558,36613,36670,36727, 12054,36793,12720,36850,36929,144720,144711,12661,36997,13328, 13891,37046,13329,37106,13948,13563,10499,37155,13330,37204, 13949,12221,13564,14344,14345,11855,12554,13759,13681,37253, 13576,37302,14254,12295,13700,14450,14451,13943,12616,12732, 12909,13944,13884,37351,13995,37400,14255,12873,14500,14632, 14634,14016,13070,37451,14473,14510,14598,37515,37572,14772, 14744,12999,12867,12207,14380,37640,14081,14257,37689,14211, 14636,14938,14549,14258,15328,15079,37738,14966,37787,10453, 14801,12899,37836,144718,144709,14174,13270,13391,37900,37954, 14284,14221,38022,38093,38150,13371,15586,10885,38207,38264, 15810,11431,14319,11822,13304,38334,38392,13085,38450,144716, 144705,38533,38591,144712,38674,13717,38732,38790,144711,38873, 38931,38989,13714,39046,13716,39129,39187,39244,12323,39297, 39380,12998,13885,144667,39435,14000,39472,39529,14270,39586, 39643,13570,12721,14381,39698,14272,15322,13572, 8993,13005, 5471,13258,39747,15967,14351,39818,39875,12191,39932,39989, 13855,13886,13042,40043,14041,14424,13985,14505,40107,144725, 40165,40223,144697,40306,40364,40447,40505,40563,40646,40704, 40762,14658,40819,144696,144686,13466,40902,40960,144680,41017, 41074,41151,13370,13434,13451,13612,41208,41266,41324,41382, 41465,41523,41581,13837,41639,11337,41696, 9304,12681,14626, 14629,14204,11721,41758,15616,16258,16422,41815,41872,41931, 16647,14283,15359,15314,13909,12870,42002,42085,42143,42200, 13624,12777,13125,42257,10136,13527,14632,14271,13930,15293, 13245,15666,16043,13686,42329, 9854,13942,42356,14040,42410, 15083,13463,15696,16139,16197,14422,42467,42526,16496,16557, 144702,13056,14684,42590,10783,12892,14382,15287,14486,14665, 15701,14664,14621,15574,14535,42673,14213,14948,42741,14215, 15743,15333,15332,15089,15744,15745,42801,42850,42901,12615, 15801,11007,13335,14742,14160,14767,15843,15845,15702,15891, 16038,14300,14441,14299,15842,16311,42965,14362,15101,43033, 14715,15902,16008,15384,15383,16018,16076,43093,43142,43193, 13010,16173,14056,13854,16518,14637,16255,15816,15903,14285, 13970,15694,16594,15817,15097,16291,15098,15393,16014,16342, 14812,15385,14423,13712,14001,14368,11602,43257,144673,43336, 11690,14502,43390,10645,10840,14939,16015,14955,11927,43444, 43522,43600,43678,43756,43835,15354,15864,15774, 6721,13964, 15982,43915,13270,16063,14391,16310,16211,43993,44071,15346, 15868,15903,15712,14565,14711,16319,15274,15581,16279,16433, 15347,16550,15865,15819,14892,16355,16256,16038,11495,44153, 16905,16392,15698,44208,16262,44259,44320,17511,144700,16058, 15061,16686,16095,16637,44391,44449,16693,14342,44507,15626, 16268,44575,15763,44624,16540,16619,14498,44673,16021,44722, 16613,14499,16685,16656,16856,44771,144677,14253, 8767,44820, 16024,44869,16666,15331,16715,16922,16923,15313,144676,144674, 144673,15620, 9766,44918,16123,44967,16726,15585,16855,16981, 17038,15950,144671,45018,17048,17101,17137,45067,16329,16727, 45116,16365,17153,17154,16875,16729,17211,17212,45165,17281, 45214,13334,17317,45278,45356,17318,14701,17399,15337,14942, 12713,14446,14681,14677,15064,16096,16188,14384,14554,14487, 15380,15303,45414,45471,45548,17373,15702,15752,12331,45605, 45662,15746,45719,45776,45833,45898,45955,46012,15778,15589, 14766,46077,46156,144663,144654,14159,14755,15100,16318,16599, 46224,16480,46273,16867,15930,46333,16354,16100,16942,144661, 46382,16541,16924,46431,16398,16101,17000,144660,17580,17217, 46480,16609,16925,46529,16399,16289,17057,144658,17581,17219, 46578,46627,16611,16982,46676,16444,16396,17087,144655,17595, 17480,46725,46776,14553,17421,46840,46897,46955,47013,17484, 16363,17617,16424,14596,14644,17661,16722,16859,16978,17584, 47056,16669,47105,16983,16443,17173,17803,17793,16980,16863, 47154,17668,17825,17842,17030,17896,17953,18010,47203,16189, 47252,144654,144644,18067,47316,11310,47387,47441,16260,17179, 17254,18075,14798,16516,47524,18173,18264,18319,47581,47638, 47686,18380,14940,15812,16515,47757,47815,47873,47956,48014, 48097,48155,48232,48290,48373,48450,17001,17836,15814,48508, 16112,48591,48649,48706,15986,15914,15981,15699,17093,144602, 48761,48832,48889,15985,16832,48946,49003,49071,17588,16474, 16460, 8065,16394,16537,16713,17539,49093,49164,49221,16655, 18330,16057,49278,49335,18406,16115,16861,16172,17174,49405, 49463,16361,49521,144642,144632,49604,49662,144637,49745,16947, 49803,49861,144623,49944,50002,50060,17483,50117,17076,50200, 50258,50315,50372,50435,17038,17176,17467,18514,16691,50492, 17225,50550,50607,50663,17612,50727,50785,50843,50926,50984, 51042,51100,144617,18076,51183,51241,51299,13914,17183,17179, 17258,17240,14957,51352,17832,51406,18100,17372,18637,18719, 18757,18193,51463,51522,51582,18808,144644,15768,51653,12655, 51711,18092,51794,51851,16717,13998,15063,15334,51908,51966, 17480,17242,15815,15853,17321,17644,17631,144610,15588,15927, 15587,18274,17021,14720,17395,17466,16185,16421,16046,16288, 18798,18167,16595,18831,16907,52043,16646,18856,16488,16531, 52100,52158,18462,18565,18575,15955,18341,17161,18218,52228, 144572,144571,16545,16865,17853,17777,16980,18417,17656,17002, 17553,18096,52292,52350,144611,144602,52393,16930,52453,17155, 17064,17909,18865,17813,16857,144616,52504,17988,18045,18505, 17346,18887,18957,19011,52553,16943,15654,17625,17632,16814, 18928,19177,18727,18917,17913,17762,17387,18946,18307,52617, 52689,144607,144598,52746,17336,52806,18118,17218,17939,19060, 18296,17206,144612,52857,18616,18649,18659,18204,19138,19234, 19256,52906,17135,16663,16235,19021,17907,18413,17461,18682, 17420,17857,17917,17558,18089,18210,19052,18212,18758,19049, 18914,18102,16908,16230,16963,52970,17312,17460,53024,14293, 17775,16689,18412,14814,14815,53078,17658,17943,17005,53146, 53224,53302,53380,53458,53536,53614,53692,53772,53850,53930, 144631,144596,144601,144548,144568,144564,144546,144533,144539,12057, 17812,13119,144538,144515,144579,14018,144532,54008,54086,54164, 54243,54321,17975,18166,18180,54399,54477,12070,18026,16541, 15873,17294,19146,16482,18042,18241,17551,13358,15251,17341, 54557,144518,18233,13225,18300,19016,13660,54639,54694,19090, 18452,18377,54762,18454,16186,144534,144529,54830,19182,54894, 18960,16864,54952,55010,144555,144545,55053,17684,55102,18284, 17391,55151,18341,17555,18533,144552,55200,18189,18525,55249, 18399,17887,18744,144550,19313,19128,55298,18292,19191,55347, 18690,17889,18771,144549,19321,19205,55396,55445,18355,19206, 55494,18691,18091,18974,144548,19341,19379,55543,55594,17270, 18820,17515,18011,18333,19260,55643,18700,55692,19323,18475, 19062,19392,19386,18344,18213,55741,19302,19441,19450,18701, 19461,19497,19510,55790,55854,19022,17928,18427,18887,17833, 17799,18354,18722,19475,18224,19548,18537,17986,18021,17095, 55912,55969,56026,56083,56140,18689,20105,18824,19638,18766, 56217,56274,18859,18885,56331,56388,18886,56445,56502,56559, 56638,56695,19688,56752,56809,56866,17247,56945,57024,144547, 144538,18439,57092,18742,19324,57141,57201,19068,18859,19192, 144545,57250,57310,144544,144530,19156,18861,57359,144536,18290, 11601,57408,57457,144528,144518,19231,18932,18736,144532,144530, 144516,18915,12262,57506,57555,144503,144494,19234,19067,18920, 144508,57606,19578,19752,19865,144505,144504,18959,13459,57655, 57704,144496,144487,19315,19127,19028,144500,57753,19887,20076, 20127,57802,57866,57923,19188,57980,19222,20378,19364,20174, 144487,17331,16132,19393,58048,19267,19381,58097,19322,19198, 19387,144491,20214,20142,58146,58195,17998,20272,20321,20439, 20456,19112,58244,144490,144481,17657,20598,20651,58308,19549, 20770,20204,58353,17074,58408,20813,19135,20905,20982,21297, 19701,58465,58524,58573,21355,144513,19178,20349,58644,58702, 58785,58843,58926,58984,59041,19072,19510,19373,19544,18982, 18032,59120,59197,59274,59332,19683,59415,17776,20351,18265, 21194,19585,59473,59530,18885,59587,59649,16382,16380,19696, 144440,19643,19639,59721,59778,59835,59896,59965,19711,19862, 144452,17302,18430,19863,20426,20497,20525,18515,20173,60002, 21417,21494,21738,60059,60116,60164,21895,18913,19210,19504, 60235,60293,60351,60434,60492,60575,60633,60710,60768,60851, 60928,19396,20127,19370,60986,19663,61069,61127,61184,61241, 61317,18427,19352,19703,61359,22055,20146,61430,61487,19373, 61544,61601,19256,17394,19704,61655,20172,20270,20194,20221, 61719,144479,61777,61835,144446,61918,61976,62059,62117,62175, 62258,62316,62374,20526,62431,144445,144436,19861,62514,62572, 144441,62629,20195,17821,17041,18907,18680,20388,20676,20428, 20240,20342,20499,20242,19644,20487,20292,21768,21931,20293, 22220,20457,62686,20527,62739,20646,62810,62867,18763,62924, 19710,144415,20528,20627,20794,63004,144432,63068,20352,17628, 18824,20398,16534,18074,18956,19265,19417,20079, 6096,20319, 20429,17549,19335,21239,22104,18437,19361,19203,19054,19271, 19580,19499,18120,19409,19451,19314,20126,19697,20570,20269, 18604,19025,20143,20312,20706,15590,19860,20500,20313,20458, 63125,63208,63266,20746,63324,19528,63392,20534,63456,20855, 20232,21044,21556,20535,63498,63562,20816,20561,20396,20051, 19488, 7941,19250,20775,20524,21523,20395,20550,20805,20897, 63620,20420,20947,63688,20866,20117,20845,144435,21174,21013, 63748,63799,20232,20991,63848,21780,19616,18044,20629,20712, 21136,21866,21392,22140,22259,19841,20708,20771,21867,22025, 63912,20607,20957,63980,20867,20459,21164,144434,21829,21830, 64040,64091,20805,21996,64140,22305,19372,20589,20592,20128, 21307,20315,20995,20123,20869,21456,21202,20956,21928,21930, 20953,20640,21011,19463,19726,18535,64204,64261,20215,18477, 64314,19408,20483,20594,19546,20761,64368,64425,20129,22108, 21173,20707,64478,64556,21324,22109,21986,21138,64636,22215, 64716,20996,20794,20845,20861,21175,20232,22316,21292,18183, 144393,20733,21130,21412,20883,20450,20772,17835,144392,21507, 21376,20915,21266,21310,21987,21283,21193,21459,21480,22315, 64794,64872,64950,22381,21995,21345,21402,21708,22118,22076, 21791,65030,22160,65110,144419,20973,144425,144363,144357,144353, 144346,144334,144341,18131,21264,20234,144338,144327,144396,20789, 144349,22117,22314,22318,22382,22305,21495,21792,17742,20868, 21448,21408,22488,21919,21543,21156,21230,22478,144340,144351, 21191,144348,144393,22224,65192,22502,20678,65250,20609,22425, 65318,65367,21437,20895,22074,144355,65416,65465,144351,144322, 21810,21329,65514,144336,21008,14054,65563,65612,144328,144317, 22032,21430,21323,144330,144329,144328,21519,19164,65661,65710, 144320,144311,22132,21831,21751,144325,65761,22528,22571,22580, 144324,144323,21999,19724,65810,65859,144312,144290,22181,21832, 22038,144304,65908,22613,22635,22684,65957,66006,21915,22734, 66055,22366,21870,22513,144296,22744,22650,66104,66153,21152, 22807,22864,22984,66217,19464,19654,21353,19551,20642,21932, 22406,21231,21287,20705,21509,22887,21769,21409,22960,22260, 21936,66300,66357,21942,66414,66471,22153,66528,66585,66642, 21989,23185,21154,21905,23618,66708,66765,22272,22108,21947, 66822,66879,22300,22270,66936,66993,22321,67050,67107,67164, 67223,67280,23241,22350,67337,67394,22632,67451,67508,67565, 16835,67624,67703,144293,144271,21484,67786,67844,144273,144263, 67887,67936,144268,67996,144265,144256,22368,21986,68045,144263, 68094,144262,144253,22396,22030,68143,144260,68192,144259,144245, 22494,22130,68241,68290,144252,68339,144241,144228,22542,22195, 68388,68439,21284,22842,68488,144222,68537,144216,144207,22543, 22342,68586,68635,22192,23020,68699,68756,21525,23042,21196, 21819,22706,20911,21867,22424,22141,68799,68848,144214,144204, 22628,22367,22642,21978,68897,23161,23299,23418,68946,22465, 23443,23498,23556,22014,68995,144211,144201,22818,22472,69059, 14780,18657,22725,69101,22708,23689,22636,22710,22712,23471, 22056,22261,22839,23018,23747,24157,22733,23946,69172,22764, 69214,23177,69285,23257,69343,69426,69483,21352,22033,22341, 22766,21383,22228,22940,22991,21763,13046,69540,69597,69654, 22283,69720,69778,21458,23661,23216,69861,20925,69918,69976, 20411,22145,22888,144235,70039,23274,70093,23588,70150,70210, 70272,70341,70378,23415,19705,23157,24004,23678,70419,20551, 70474,24234,23200,24062,24119,24331,23258,70531,70590,70639, 24274,144235,23474,24209,70710,70768,70851,70909,70992,71050, 71107,22849,23550,22937,23193,22730,22934,71186,71263,71340, 71398,23682,71481,21527,22765,22422,24210,23416,71539,71596, 71653,71710,22153,23542,23455,23607,71752,71823,71880,22974, 24388,22608,71937,71994,24445,22841,23682,23015,23578,72064, 72122,23575,72180,144206,144196,72263,72321,144203,72404,23646, 72462,72520,144202,72603,72661,72719,23739,72776,23577,72859, 72917,72974,20745,17048,22289,22238,22656,24507,24543,23159, 22611,23490,23233,24113,24212,23663,23488,23231,22503,23648, 23920,23206,23767,23738,23548,22840,23491,23621,24583,22949, 23768,23291,23934,73031,73088,23657,21985,73145,21177,24167, 144192,530678,24605,24168,23935,24581,73228,23997,22281,22444, 23784,22650, 7785,23262,22197,23550,24095, 8176,23651,22491, 73285,24537,22539,24699,22970,23797,22612,22653,22652,22443, 22735,23761,23919,21871,22568,22504,23487,22332,22796,22493, 22855,73368,144196,73451,144179,73509,24676,24741,24763,73567, 22940,23810,73635,23542,73684,23973,23722,73748,23929,23435, 73790,23732,24913,24476,73839,19608,19164,21464,23271,23544, 23936,23783,24140,24170,24054,23903,23978,24303,73903,73961, 144182,144171,74004,74064,144165,144150,24023,23176,23790,144164, 74115,24783,24792,24935,74164,24249,25007,25065,25122,23937, 23695,24382,24505,24398,25159,24941,25130,25183,23959,24190, 24536,25180,74228,74300,144156,144146,74357,74417,144153,144144, 24082,23260,23987,144156,74468,24951,25037,25094,74517,24316, 25246,25284,25305,23909,24083,23740,24111,24154,24458,23967, 24307,24025,25208,24435,24376,24703,24978,24607,23031,22741, 24075,23737,74581,74638,24156,24265,22740,74691,23472,24267, 24156,24036,24150,74745,74802,24236,24144,24322,24614,21348, 74855,74933,75011,75089,75167,75245,22702,24254,24568,22921, 75325,75405, 7131,17885,24372,24154,23411,24866,23545,24230, 24317,24668,24178,24876,24177,25400,25130,25169,24312,25375, 24569,25123,23582,75483,75561,24359,25214,24460,24937,25132, 25479,25191,75642,25115,75722,24218,23753,24373,22647,24575, 24285,24443,24474,25390,24666,20041,144108,23179,25147,25443, 23253,25372,24571,23123,144107,25431,24927,25182,24415,25111, 25389,25433,25434,24865,25483,25490,24266,25508,24510,25515, 23035,25680,144108,25736,144122,21773,144139,25688,75804,25793, 24270,75862,75920,144141,144132,75963,76012,144137,76061,144121, 144100,24756,24187,76110,144102,76159,144101,144090,24757,24377, 76208,144097,76257,144094,144084,24758,24481,76306,76355,144091, 76404,144090,144081,25043,24673,76453,76504,24106,25558,76553, 144088,76602,144086,144062,25458,24675,76651,76700,24795,25799, 23425,24554,25046,25172,76749,76798,144051,144037,25647,24690, 25208,24991,76847,25835,25860,25879,76896,23185,25890,25918, 25959,25971,76960,24347,24480,25998,26035,26044,24928,25111, 77043,77100,25178,25288,77157,77214,77291,25413,25403,77348, 77405,25439,77462,77519,77576,77641,77698,77755,25286,24939, 25703,24996,77820,77877,25478,25511,25307,77934,77991,25525, 25515,25428,78048,78105,25527,25521,78162,78219,25729,78276, 78352,78409,78466,78523,25731,26075,25540,78580,78637,25758, 25650,78694,78751,25761,78808,78884,78941,25539,78998,79077, 144040,144030,22853,79160,144037,79228,79288,144036,144027,79337, 79397,144031,144022,25762,25643,79446,144027,144017,79495,79544, 144012,144001,25103,143980,143938,25482,20564,79593,79642,143911, 143867,25799,143876,79693,25900,26117,26126,143860,25842,23715, 79742,79791,143835,143820,25919,143783,79840,26135,26152,26192, 79889,143750,25921,24433,79938,79987,143735,143709,25922,143610, 80036,26201,26210,26231,80085,80149,26270,80232,26276,26282, 25646,25035,26033,80300,143546,80349,143539,143521,25763,25658, 80398,80447,24903,26309,26348,26369,26389,80496,143522,143501, 26426,143500,24035,26435,26448,24736,25689,26126,26467,26511, 25238,25894,25036,25668,24942,25931,26320,25850,24361,25239, 25117,26344,25968,26047,25395,25970,26032,26048,26124,26523, 25987,26343,26345,80560,80617,80694,26582,25926,25734,25965, 80751,80808,25970,80865,80922,80979,81044,81101,81158,25736, 81223,17144,26552,26063,81281,23623,81338,81402,25199,25924, 26037, 0,81460,26556,81515,81586,23981,23938,26220,81649, 26579,26623,26441,26125,26204,26300,26141,26201,26279,26128, 26663,26657,26378,26704,81720,25278,81762,26140,81833,26468, 81891,81974,82031,22223,25227,25508,26000,25649,23537,24385, 26007,21874,25398,82088,82145,82202,23625,82268,82326,24657, 26571,26207,82409,24076,25164,82466,26512,25775,26469,26424, 26658,26707,25279,26516,82533,26748,26758,26817,82590,82647, 82695,26826,25533,25687,26367,82766,82824,82882,82965,83023, 83106,83164,83241,83299,83382,83459,26595,26752,25773,83517, 25774,83600,83658,83715,143390,83772,25232,25259,26755,26305, 26907,26307,26476,26039,26547,26274,26628,26619,26659,26816, 25920,26240,26161,26379,26532,26235,26615,25990,83835,23923, 83892,24704,26821,26754,26814,25727,23680,25937,24755,26425, 26200,25441,26464,26051,26491,24287,24997,26818,26598, 9033, 26286,83975,26916,26935,26974,24550,26554,26843,84045,143317, 26630,26315,26586,26677,26439,25891,25155,26501,26985,25851, 26994,26929,26550,26360,26148,26591,26711,26662,84109,84192, 27016,84250, 0,26587,27056,84308,84366,143254,143236,84409, 26786,84458,26845,26789,84507,26803,27066,27004,26840,84571, 26881,84613,26857,84662,26946,26850,26875,27068,27032,26692, 26793,24897,25800,25988,26221,22318,26989,26987,27049,27026, 27065,27082,84726,143233,84794,143231,143197,26884,26049,84854, 84905,26952,27091,84954,27140,24600,26846,27097,26848,27111, 27141,27171,27201,27258,26982,27113,27199,27080,85018,143082, 85086,143081,142958,27060,26206,85146,85197,27148,27170,85246, 27280,22408,27246,26354,27285,27303,26842,27180,27287,27256, 27305,23016,27160,27208,27326,530678,27345,27366,27367,27309, 27532,27339,27415,26924,27346,26670,26398,27050,26155,85310, 24692,26272,27284,26789,25852,26438,26963,27089,27384,85367, 27436,27310,27136,26038,85420,85498,85578,85658,85736,26623, 85814,85892,26643,27377,27380,27384,27386,27443, 0,27387, 27474,27444,27500,27551,27853,27501,27557,27558,27559,27612, 85970,27561,86048,86126,86204,86282,86360,86438,27412,27434, 27436,27324,27470,27609,27730,27482,27541,26246,86518,86598, 25799,27412,26582,26555,26559,20434,142890,26663,27619,26907, 26686,27109,27742,142880,27415,26892,27781,27734,27790,27743, 28189,27748,27498,27792,28291,27856,27595,27863,26713,142809, 142790,27933,27989,142792,26751,27961,28046,86680,27963,26905, 86738,142728,86806,86855,142724,142622,86904,86953,142617,142598, 27565,27024,87002,142512,142480,87051,87100,142399,142220,27142, 142095,142029,27291,26296,87149,87198,141956,141869,27301,141801, 87249,28035,28086,28129,141572,27349,27128,87298,87347,141560, 141430,27397,141441,87396,28138,28178,28187,87445,141430,27472, 27170,87494,87543,141259,141082,27506,140984,87592,28269,28330, 28352,87641,87690,140976,87739,140961,140926,27758,27161,87788, 87837,27252,28373,28429,28486,87888,87950,27802,28509,27873, 28565,28663,28721,28860,26837,88033,88090,27107,27336,27507, 88147,88204,88261,88318,88375,27564,27515,27513,88452,88509, 27601,27569,88566,88623,27640,88680,88737,88794,88873,88930, 29127,88987,89044,89101,27145,28924,27921,140800, 0,27644, 27645,27786,140785, 0,27830,27860,27955,89180,89237,27869, 27873,27957,140622, 0,27874,27875,140585, 0,28003,140493, 0,27929,89294,89351,27959,27876,29188,27958,140380, 0, 28008,27971,28055,140358, 0,28056,28004,140223, 0,28054, 140160, 0,28203,89408,89487,140037,139935,28048,89570,89628, 28204,89671,89720,139913,89780,139813,139803,89829,139634,89878, 139224,139214,139227,28220,89927,139107,89976,139106,138920,90036, 90085,138801,90134,138223,137844,90183,90234,28075,28382,90283, 137806,90332, 412, 493,90381,90430,28090,28407,90479, 1253, 90528, 1584, 1762,90577,90626,28111,28464,90690,29027,90747, 29049,90805,27182,14924,28538,28225,27210,28571,90873,90922, 1878, 2298,27475,28228,90971,28620,28642,28672,91020,28229, 29058,29236,29285,29847,91069, 2737, 2914,27806,28100,91133, 8840,28264,28558,29901,28481,29489,28522,28523,28422,28194, 28268,27368,28542,28677,29145,28487,28177,28460,28553,28554, 28127,91210,91267,91324,91381,91438,28476,30000,28215,30176, 28133,91515,91572,28482,28290,91629,91686,28524,91743,91800, 91857,91936,91993,29334,92050,92107,92164,24987,28848,28681, 92243,28150,28241,92300,28405,28714, 3132,28855,29097,28851, 92367,24495,92434,28029,28618,29189,30057,30114,28862,28402, 28557,28861,28678,28881,29146,29143,28818,29188,29144,29332, 28615,29099,29234,28325,27561,29257,29304,30232,28895,29148, 29306,92496,92553,92630,29431,28575,28180,28334,92687,92744, 28689,92801,92858,92915,92980,93037,93094,28854,93159,25695, 29402,29283,93217,28852,29057,31690,29331,93274,25925,28226, 15272,29447,30630,29460,93306,27203,93361,29925,29187,30829, 30887,31142,29502,93418,93477,93526,31571, 3279,29353,29685, 93597,93655,93738,93796,93879,93937,93994,28593,29338,27782, 28304,28382,29339,94073,94150,94227,94285,29484,94368,27509, 29401,27931,29785,29462,94426,94483,29504,94540,29403,28342, 29190,29509,29742,29718,29355,29669,29687,29688,31780,29758, 32438,29786,29689,29894,29047,29700,28885,26377,94602,28421, 94659,94742,29698,29787,29790,29054,28883,29235,29118,27964, 28528,29096,27627,16431,28679,29284,29230,29422,29537,28637, 29690,94819,94902,27841,94970,29543,29884,27888,30291,29830, 29473,95019,29662,95068,25095,29098,26841,27480,29327,29769, 29660,27308,29382,28579,27012,30348,29278,29659,30688,29897, 25484,28804,28476,28582,95132,95215,95273,29977,30324,30465, 95316,28846,29551,95365,28908,95414,29919,29923,29372,95463, 29540,95512,29933,29994,30099,31068,30145,95576,95618,29546, 29943,95667,29548,31078,30221,30192,30211,31192,31193,95731, 95793,29371,28886,28403,29817,29935,31098,29972,29788,31306, 95859,95917,29053,95960,96020, 3328, 3384, 3499,29063,96071, 30490,30606,30805,96120,29238,30943,31370,31427,29717,29425, 30014,30010,30135,31209,30210,31214,31613,31989,31788,31329, 30032,29904,32618,31212,96184,96256,29537,96313,96373, 3933, 4025, 4213,29654,96424,31318,31405,31547,96473,29666,31862, 32061,32119,28472,32681,30048,30165,30640,31584,30621,30300, 29279,29903,31332,31979,31678,31998,30876,29713,26525,29302, 30104,29663,27058,96537,30017,29277,29712,30074,29662,29762, 29764,31184,96594,30108,31644,29875,96647,96725,32296,96805, 96885,32263,32354,32570,29968,29811,30840,32331,32404,30161, 30204,31095,29953,30227,30111,31754,30094,28244,31034,27255, 31986,32516,96954,32703,32692,32490,97017,97095,97173,31245, 31667,97253,97333,30438,30041,32269,31566,31207,32326,30872, 32761,32327,31613,31761,32384, 0,30149,31664,32330,32276, 32415,32582,32334,32583,32416,32417,32759,30579,32418,32804, 32703,32805,30778,31071,32691,30164,30677,29503, 0, 4427, 30066,32872,32928,30110,32745,97413,33070,32802,30177,97468, 97526,29712,97569,97618, 4552,97667, 4915, 5063,97716, 5206, 97765, 5588, 5691, 5783,30209,97814, 5904,97863, 5997, 6310, 97912,97961, 6655,98010, 6903, 7022,98059,98110,29813,32097, 98159, 7252,98208, 7376, 7889,98257,98306,30167,32238,98355, 8319,98404, 8476, 8641,98453,98502,30267,32901,30472,29714, 31082,98551,98600, 9126, 9191,30672,31167,98649,32943,33076, 33112,98698,31240,33134,33201,33222,30295,98762,33281,29352, 29763,30340,30650,33337,33520,30208,98845,98902,30486,28688, 30654,98959,99016,30941,99073,99130,31180,99187,99244,99301, 28829,30850,99367,99424,31196,29853,30853,99481,99538,31236, 30811,99595,99652,31282,99709,99766,99823,99882,99939,33456, 31423,99996,100053,31608,100110,100167,100224,29927,30861,100283, 100340,31611,30912,30909,31156,32637,31819,31586,32488,100383, 31567,100440,100519, 9444, 9666,30679,100602, 9764,100681, 9824, 100730, 9943, 9949,10040,31339,27977,100779,10164,10297,100828, 10509,31554,28075,100877,10634,10821,100928,33179,33258,33315, 10912,31620,28894,100977,11027,11129,101026,33377,33405,33434, 101075,11271,31633,29986,101124,11771,11941,101173,33555,33576, 33608,101222,12204,31698,30027,101271,12391,12479,101320,33619, 33637,33666,101369,101433,33291,33692,101516,30932,33724,28698, 31157,32526,101584,12591,101633,12608,12696,101693,101742,30278, 33748,31062,31381,31274,101791,12830,12878,101855,27524,33792, 33801,31688,33478,32753,31838,31965,32825,31270,30070,31769, 31962,33819,32629,33940,33494,31821,32005,32392,101938,101995, 31664,102052,102109,31775,102166,102223,102280,31108,33962,31345, 31107,34028,102346,102403,31795,31109,31163,102460,102517,31832, 31223,102574,102631,31992,102688,102745,102802,102861,102918,34100, 32060,102975,103032,32118,103089,103146,103203,30908,33823,31100, 103262,31059,103319,103392,26036,31132,13309,33868,103464,31245, 103525,30243,33663,34458,32018,34072,32513,32824,32398,32530, 32710,32633,32528,32617,33174,31602,32725,32585,32823,31665, 32233,103582,103639,103696,103753,103810,32297,34119,31786,34163, 31220,103887,103944,32355,31830,104001,104058,32432,104115,104172, 104229,104308,104365,34212,104422,104479,104536,30197,33881,32571, 104615,32564,31852,34459,34554,30582,29991,104672,29121,31968, 31588,33127,104719,33882,34563,33430,32714,33933,33471,33193, 33176,33314,33108,34593,34474,33375,34634,104790,30917,104832, 33432,104903,33967,104961,105044,105101,28288,30252,31668,32433, 31248,30287,32002,33025,28104,26949,105158,105215,105272,30286, 105338,105396,30848,33932,33312,105479,31331,105536,30441,31186, 32054,33110,33527,33410,33839,33901,33984,32767,33066,33141, 33065,34708,33870,33585,34730,33628,33343,33987,34183,29428, 32614,30149,105593,32343,34141,34242,34234,31824,31293,32485, 32204,31060,32505,32294,29881,32474,30859,31961,17675,33741, 19110,32413,105670,105728,33910,34430,105786,32555,33646,105854, 32642,105903,34009,33676,33782,33470,105952,32727,34485,34475, 106001,32899,32918,34643,34720,34786,33135,32634,32025,31246, 106065,34825,106148, 0,31416,34674,31416,31661,32741,32050, 106216,32917,106265,34038,33393,106314,33394,34750,34489,33734, 34039,106363,33498,34081,106412,33733,34758,34582,33842,34145, 34800,34610,106476,33666,34231,34499,34645,106518,33843,106567, 34256,33698,33995,34836,34801,34731,34567,106631,106689,31294, 33190,32792,34501,34553,34850,33665,33508,33917,106762,13533, 106830,13616,13866,106890,106941,31434,34872,106990,31513,32716, 32902,33224,34035,34636,34166,34877,34879,34905,34756,33515, 33394,34866,34907,107054,14002,107122,14249,14295,107182,107233, 32109,34947,107282,33670,32253,34983,31854,33820,34471,34823, 34097,33961,33835,34493,34638,34902,34894,34921,33564,34602, 34262,32590,31695,32742,33139,34552,32830,33218,32680,32903, 32931,33035,33498,34211,34938,33699,34396,31963,107342,107420, 107498,107578,107656,107734,107812,34061,107892,35020,35030,35059, 35100,35040,35116,35137,35176,35191,35216,35265,35276,107970, 108048,108126,108204,108282,108349,35293,35349,35371,108428,108508, 35449,35468,35714,34391,35026,32791,32199,34455,35445,35447, 34638,34843,34914,34221,34330,34609,34918,34127,30641,34218, 32505,35262,35689,108577,35771,35866,35747,33790,35421,35125, 34787,34078,32562,14380,14377,35913,35299,35217,34990,33492, 108644,14480,108712,14552,108761,14665,15045,15074,32420,30102, 108810,15194,15387,108859,15495,33845,30475,108908,15774,15849, 108959,35572,35875,35924,15996,33942,30931,109008,16076,16167, 109057,35969,36010,36019,109106,16288,33965,31288,109155,16610, 16662,109204,36059,36068,36108,109253,16926,34036,31558,109302, 17014,17268,109351,36117,36157,36166,109400,109449,17337,109498, 17424,17486,109547,109596,32123,36206,35052,32258,109660,36262, 36314,35070,36370,35131,32916,35109,34728,34088,109743,109800, 34430,33878,33072,109857,109914,34452,34505,109971,110028,34512, 34562,110085,110142,34556,110199,110256,110313,110378,110435,110492, 33986,110557,110614,34561,34636,34010,110671,110728,34672,34726, 34011,110785,110842,34677,34729,110899,110956,34748,111013,111089, 111146,111203,111260,34780,36464,34854,111317,111374,34787,34874, 111431,111488,34921,111545,111621,111678,27114,35527,111735,111814, 17515,17602,32587,111897,111955,34944,112009,18062,18114,112058, 18224,18278,112109,36215,36348,36392,112158,18384,18393,112209, 32383,36421,112258,18478,18531,112307,33138,36443,112356,18686, 18757,112405,33270,36521,112454,18868,18954,112503,33340,36556, 112567,36579,112624,35782,36613,30879,33614,35319,34214,32124, 35219,112667,18981,19301,112716,36635,36670,36692,112765,36751, 35380,112814,19505,19861,112878,112961,113019,36815,36919,36938, 34089,113102,35000,35327,113147,113211,113288,113365,19841,33137, 113422,30636,35148,35347,34760,35164,35126,35167,35206,35438, 35300,34776,34846,35439,35218,37076,35494,35813,37481,36273, 35472,113484,113541,34977,34891,113598,113655,113732,34989,34940, 113789,113846,35185,113903,113960,114017,114082,114139,114196,34170, 35422,36773,35528,114261,114318,35286,34955,34238,114375,114432, 35289,35052,35110,114489,114546,35372,35062,114603,114660,35374, 114717,114793,114850,114907,114964,35375,37019,35098,115021,115078, 35416,35134,115135,115192,35483,115249,115325,115382,35414,35531, 35481,35689,33039,115439,115510,34164,33571,19933,36452,115590, 35842,35547,35484,37098,35940,35783,35786,36438,35323,33724, 36203,35785,37866,36363,37924,36706,35686,36437,36346,115649, 115706,35542,115763,115820,35802,115877,115934,115991,35233,38033, 35548,35442,38293,116057,116114,35938,35332,35565,116171,116228, 36231,35494,116285,116342,36282,116399,116456,116513,116572,116629, 37177,36283,116686,116743,36458,116800,116857,116914,34007,37100, 35688,116973,36236,36510,37113,34520,39273,33269,33931,117030, 34460,33723,34203,35269,35960,36465,38116,38173,36436,36222, 36612,36008,35687,36347,37036,36479,36514,36552,36693,36666, 36722,36991,37077,36057,36610,36725,36790,38333,36058,36156, 36205,117087,117144,117221,37225,36491,35566,35697,117278,117335, 36747,117392,117449,117506,117571,117628,117685,35567,117750,26673, 37247,36107,117808,28345,34632,34367,34074,36810,37144,38871, 39407,39671,36804,34876,36713,33844,34136,37013,37016,117865, 37146,37149,37254,37255,34245,34697,33569,35139,35127,35759, 34739,36927,35778,35324,34184,35690,31563,35708,117924,118007, 0,33753,36949,118090,118148,20083,20202,118191,35006,118240, 37279,35074,118289,35495,37315,37316,37317,37365,118338,35819, 118387,37366,35980,37413,37414,37415,31631,35253,38044,35901, 38416,39771,38756,38897,30339,34560,35169,118451,118509,37383, 37540,118552,35856,37425,118601,36735,118650,37464,37466,36127, 118699,36958,118748,37522,36728,37653,37654,37429,36789,37079, 37323,37643,118797,36959,118846,37665,37011,37703,37704,37751, 37708,37371,118895,36960,37714,118944,36962,37753,37800,37802, 37761,38223,37944,118993,119057,119134,35321,35942,36989,37174, 37340,37224,36611,37929,119192,119250,37015,119293,20355,20545, 119344,37812,37976,38093,119393,34945,34797,37418,37222,37710, 38224,38295,37789,39195,37913,38371,35944,36239,38251,38712, 119457,119529,37170,119586,20631,20636,119637,38362,38533,38561, 119686,35943,34892,37857,37218,38222,37887,36457,38243,35957, 37500,38671,38220,37528,37928,38672,36237,37514,36513,35106, 35498,34566,35538,36304,35189,36030,33379,35238,36485,37291, 38965,36744,36683,119746,119824,119904,119983,120061,120141,38958, 37777,37292,33350, 0,34704,37939,38215,37239,35395,37670, 37241,38184,38703,120219,120297,120375,25939,28598,120453,35694, 120533,35910,37019,31816,120613,120680,120747,120813,120879,120945, 121011,121077,121143,121209,121275,121341,121407,121475,121541,121607, 34397,37291,38160,22075,36806,39166,37405,36759,35028,20796, 20897,38969,40019,39168,36155,121688,121746,37318,121789,21020, 21016,121838,21398,21632,121889,38931,39129,39157,121938,21731, 21820,121989,36042,39319,122038,21888,21965,122087,36302,39328, 122136,22684,22792,122185,36373,39380,122234,23142,23214,122283, 36582,39446,37657,37090,38044,122332,23437,23546,122381,39472, 39494,39529,122430,38060,122494,39707,40073,39841,38126,39287, 37166,39898,38393,36779,122577,122634,37416,36229,36110,122691, 122748,37652,36297,37115,122805,122862,37655,36503,37180,122919, 122976,37695,37415,123033,123090,37747,123147,123204,123261,123340, 123397,39551,123454,123511,123568,23796, 0,37971,37752,37201, 23912, 0,38039,37891,37502,123647,123704,38040,38015,37662, 24137, 0,38042,38046,24141, 0,37831,24267, 0,38051, 123761,123818,38209,38140,39608,37712,24368, 0,38267,38141, 37733,24603, 0,38293,38210,24745, 0,38296,24891, 0, 38297,37388,39955,123875,123954,24968,25216,124037,124095,124153, 38355,25258, 0,38533,124207,36586,39729,25279, 0,38534, 124258,25536, 0,38535,124307,25777, 0,38554,124356,25853, 0,38655,124405,124469,37214,40108,124552,124609,38714,124666, 124749,124807,124890,40189,39793,36383,37729,39228,124933,26088, 26202,124982,36639,39818,39761,125031,26283,26361,125095,125153, 40132,40331,40469,36302,38400,38739,125223,125287,26421,125364, 125422,125505,125563,125620,125697,39875,125755,37550,125823,38880, 125887,40527,38071,40668,39014,38696,125940,126004,126062,38682, 126120,126178,126236,126294,126360,126417,126474,126531,126608,35259, 36680,38267,39701,38390,38968,40728,40983,41099,37495,39127, 126665,126722,38684,38399,37808,126779,126836,126893,126950,127007, 38716,38866,37833,127084,127141,39190,38879,127198,127255,39193, 127312,127369,127426,127505,127562,41230,127619,127676,127733,30662, 41290,39993,26524, 0,39194,38979,37975,26583, 0,39196, 38993,37977,127812,127869,39197,38995,38136,26639, 0,39207, 39176,27207, 0,38978,27334, 0,39244,127926,127983,39245, 39279,41487,38195,27355, 0,39381,39390,38749,27406, 0, 39402,39400,27470, 0,39247,27653, 0,39407,39468,38148, 38092,37634,128040,128097,27757,37355,27798,38164,128156,39599, 37455,39582,39947,39128,39544,39225,39601,39470,39641,39527, 38203,38165,38149,38869,41547,38870,39642,41605,39911,39717, 128234,128291,39409,39533,128348,128405,128482,39645,39590,128539, 128596,39700,128653,128710,128767,128832,128889,128946,38960,40020, 40918,40044,129011,129068,39702,39742,39321,129125,129182,39764, 39824,39322,129239,129296,39765,39881,129353,129410,39767,129467, 129543,129600,129657,129714,39913,41661,39922,129771,129828,39924, 39938,129885,129942,39992,129999,130075,130132,39323,40031,39584, 40046,39702,37759,40663,40079,40463,40080,39204,40141,40460, 40304,41724,37051,38049,40015,33570,39229,37914,35423,40939, 41875,39816,41838,40016,40144,39833,40103,40018,40017,40145, 40146,40446,39525,39871,39931,40683,39627,39467,130189,130246, 130303,130360,130417,40001,41921,40044,42083,39388,130494,130551, 40010,40154,130608,130665,40287,130722,130779,130836,130915,130972, 41943,131029,131086,131143,37101,40941,40148,131222,30607,30461, 37458,36512,40321,41964,40522,42284,42515,42556,42774,39918, 37930,37885,39672,40660,131279,131346,40943,40720,41032,38271, 36943,36627,38499,37804,38713,39378,39381,40128,37290,37047, 131416,31189,39409,131499,131557,40784,41042,131600,40444,40922, 131649,40455,131698,40924,40483,39646,131747,40512,131796,41024, 40662,40654,41108,41109,131845,40541,41081,131894,40682,41110, 41167,40769,41082,41168,41321,131958,42109,38331,39423,39990, 40900,42166,43083,34781,38509,38860,132024, 0,38668,41346, 39581,39829,40916,40305,132092,40770,132141,41112,40797,132190, 40967,41774,41712,41052,41116,132239,41014,41170,132288,41025, 41775,41869,41171,41244,42217,41909,132337,41173,41259,132386, 41174,42426,42254,41264,41501,42427,42464,132435,40759,40926, 41773,41203,132484,41265,132533,41516,41127,41331,42489,42490, 42291,41113,132584,41465,41973,42143,132648,132726,34899,39630, 40285,39813,41597,40742,41463,41794,132784,27885,28021,132854, 38985,42200,39095,37292,39413,41246,41683,41797,42119,42255, 42273,42844,42376,40287,42176,42447,42777,43136,43403,42239, 42804,132918,28151,28262,132988,39139,42351,40445,38886,43445, 40481,41224,41500,41033,41282,40459,40632,41251,42870,41694, 41650,41886,40718,41160,37390,37901,38069,38975,40147,39173, 38378,40426,38746,41508,41311,39198,40691,41134,40719,42778, 41510,41598,41745,40974,40940,133048,133126,133206,133284,41531, 41890,133365,42934,41031,34467,42294,30836,42441,41709,41789, 33645,41589,133443,133521,28300,133599,133677,41016,41477,36774, 37124,41164,40887,40970,31056,35794,40049,41653,41620,40485, 37900,40995,42444,38727,38901,133757,40602,41102,133838,42838, 39619,43392,41742,41851,36148, 0,36579,42179,42280,42367, 42258,42361,42495,42497,42827,39735,38287,43143,41220,41509, 39542,28431,42853,133918,43082,39832,133973,134031,41698,28491, 0,41739,134076,39497,43055,28585, 0,41882,134127,28698, 0,41939,134176,28842, 0,42077,134225,28903, 0,42078, 134274,134323,28907,29047,134372,40788,43165,41601,134436,41335, 42159,42272,41536,43223,42751,43512,43043,43326,40716,134519, 134576,42203,40438,41062,134633,134690,42207,41212,41507,134747, 134804,42292,41587,41567,134861,134918,42413,41804,134975,135032, 42417,135089,135146,135203,135262,135319,43521,42422,135376,135433, 42526,135490,135547,135604,29234, 0,42528,41805,41684,41741, 43135,43182,43388,43419,135649,41227,43553,41755,135706,135785, 29371,29445,135868,135926,135984,136067,43590,43600,43610,41901, 42814,136137,136201,43631,29493,43668,43393,136274,136328,40897, 136411,41336,136494,136552,43677,43707,43746,42815,42916,136622, 136686,40703,29602,136763,41353,136846,41653,43756,39131,37216, 43423,136925,29656,29842,136976,43765,43479,137025,29923,29989, 137089,137147,137230,137288,137365,43787,137423,42301,137491,42484, 137555,43833,42445,43845,43693,42829,137608,42863,137672,137730, 137788,137846,137912,37830,137969,138027,138104,43863,138162,138219, 138277,30155,42749,138360,138417,138474,30337,138531,138588,138665, 138723,138781,138838,43912,43921,43944,138881,42783,43106,138930, 42876,138990,43119,43208,139054,42877,43105,139096,42924,43407, 43530,139160,139218,42076,42864,139276,139334,139392,43049,139449, 139507,139565,139630,139687,139744,139801,139866,139923,139980,43050, 140037,140094,140151,140217,41776,140270,42279,43788,43871,43983, 43932,43994,140339,44061,44072,41795,140394,140451,43051,42091, 41858,140508,140565,43092,140622,140679,43108,140736,140793,140850, 42208,41860,140916,140973,43191,42456,41900,141030,141087,43396, 42508,141144,141201,43397,141258,141315,141372,141431,141488,44181, 43401,141545,141602,43440,141659,141716,141773,41072,43195,141832, 141889,43444,42524,41967,42238,44007,43464,44008,43542,141932, 41542,43987,43454,43525,41279,43605,141989,43608,40745,30766, 43449,142059,43484,39487,43666,42843,44010,44151,44248,44270, 43805,43602,142126,142183,43445,42538,42089,142240,142297,142354, 142411,142468,43474,42539,42455,142545,142602,43518,42784,142659, 142716,43520,142773,142830,142887,142966,143023,44331,143080,143137, 143194,33549,44350,44084,30806, 0,43552,43091,42481,30808, 0,43559,43206,42780,143273,143330,43606,43318,42781,30865, 0,43702,43480,31351, 0,43684,31422, 0,43703,143387, 143444,43715,43758,44413,43138,31553, 0,43780,43781,43189, 31623, 0,43789,43803,31715, 0,43764,31717, 0,43859, 43838,42892,43527,43839,44082,43909,43840,43914,43887,43885, 44035,44340,44031,43916,43918,44016,41583,43108,41248,40976, 43638,42313,44069,44182,44152,43917,44080,43991,44177,44258, 43696,44085,45244,44280,45300,44426,44178,44345,44139,143501, 143558,43863,143615,143672,43872,143729,143786,143843,43941,45322, 43933,43361,45514,143909,143966,43939,44023,43672,144023,144080, 43993,44067,144137,144194,44086,144251,144308,144365,144424,144481, 44597,44088,144538,144595,44091,144652,144709,144766,39996,44184, 43531,144825,42922,43405,41073,42448,45860,44295,44353,44662, 44421,44422,46039,46323,44596,44297,41796,44267,44155,144882, 144952,44710,44674,44772,41015,41933,40488,43134,43162,42160, 41462,31742,39888,145015,145073,31983,33446,41519,145156,145239, 0,41593,44471,42407,43526,44197,43713,145307,43477,145356, 44637,44032,145405,44125,44687,44736,44289,44649,145454,44290, 44744,145503,44340,44785,44786,44457,44746,44882,44883,44639, 44690,44691,44788,145552,44360,145601,44747,44296,44458,44884, 44933,44789,44787,145665,44996,45380,44586,45437,44857,43711, 44614,44667,42282,42311,43517,145723,44364,44846,145772,44485, 145821,44940,44982,43919,145870,44657,145919,44941,43997,45031, 45032,45033,44447,44693,44890,44968,145968,44752,146017,44943, 44092,45082,45129,45130,44937,44939,45038,45069,45088,45119, 146066,44842,146115,45089,44237,45179,45180,45478,45186,45135, 146166,45414,45570,45605,146215,44843,45190,146264,44844,45479, 45621,45229,45227,45622,45679,146313,45742,146362,42113,45689, 146426,41937,41698,32489,44346,44792,45645,44694,44858,45007, 146484,146542,44195,146587,41637,42156,44987,44889,45390,45752, 45524,45906,45963,45698,45509,45814,45934,45999,45992,44427, 45259,45700,45820,46276,46385,146651,146723,44631,146782,34257, 42518,42215,46165,43642,45313,45447,35748,45120,45263,45166, 45289,45789,45909,44984,45480,42818,43446,42773,44369,43158, 43047,44727,43377,44463,44860,43791,44824,44888,45603,45071, 45216,44004,45660,44347,146842,146920,147000,147078,147156,32084, 46187,147236,45103,45309,46233,44924,45333,45807,46467,45501, 147314,147392,147470,147548,147626,147704,45727,45578,45757,45942, 45045,45097,45747,45871,45237,45445,45885,46544,45822,46691, 45914,45868,44701,46299,46200,46128,147782,147862,147940,45668, 148021,46407,46408,37439,36270,44966,42291,46195,33659,46262, 45142,46250,33988,46228,41871,45486,45732,45502,44186,32070, 46470,46383,46472,44158,148103,148173,32241,32234,148224,40112, 148288,45373,46806,45430,46637,46863,44274,46921,46686,43860, 148371,148428,44832,44134,44354,148485,148542,45133,44241,44620, 148599,148656,45176,44453,44670,148713,148770,45613,44880,45041, 148827,148884,45682,45029,148941,148998,45796,149055,149131,149188, 149245,149302,45834,46551,45177,149359,149416,45959,45362,149473, 149530,45993,149587,149663,149720,47343,46841,149777,149856,32312, 32409,45233,149939,149997,150055,45869,46298,150138,46606,46659, 46301,46360,46445,150195,150253,150311,150369,150435,44590,45034, 47414,150492,150549,150607,46050,46346,150690,46708,46977,46751, 46366,46494,150747,150805,150863,150921,150987,45240,151044,151102, 151160,47040,151218,151272,45080,43599,46523,47282,151340,32492, 32651,151404,151462,151520,151578,32675,46013,151661,151718,151795, 151853,151911,151968,46955,47079,47088,152011,46146,46504,152060, 46359,152120,46750,46738,152184,46446,45312,152226,46463,47118, 47119,45539,46040,152290,152348,152406,46242,152463,152521,152579, 152644,152701,152766,45181,152823,152881,152939,152996,153053,153110, 46440,153172,153236,153293,153351,45552,46490,153434,153491,153548, 153605,46491,153662,153719,153776,153842,153900,153958,46492,154015, 47237,154072, 0,42922,47176,39711,42265,32738,47120,154115, 46591,154164,46789,46790,154224,46791,47404,47313,46847,45607, 46545,46904,154273,46848,154322,47020,45314,47265,47540,47541, 154386,154444,154502,45266,154560,154618,154676,46547,154733,45612, 154790,154848,154906,46741,154963,155021,155079,155158,155215,155272, 47603,155329,155386,155444,155502,155581,46751,155638,155695,155772, 44811,46854,45766,155829,155886,46976,155943,156000,156057,156122, 156179,156236,156301,156358,45336,45369,47029,47660,45643,46384, 45836,47197,47711,156424,46838,156479,156536,46994,45824,45460, 156593,156650,47015,45962,156707,156764,47114,46237,156821,156878, 47117,156935,156992,157049,157114,157171,157228,45565,157293,157350, 47119,46788,45652,157407,157464,47121,46887,45940,157521,157578, 47169,46889,157635,157692,47171,157749,157825,157882,157939,157996, 47172,47779,46903,158053,158110,47201,47003,158167,158224,47251, 158281,158357,158414,45563,47700,46581,46159,47241,45529,43156, 45701,158471,47258,45734,32859,158538,45972,46158,47331,46697, 47755,47366,48198,158607,48416,48731,46819,158662,158719,47300, 47005,46041,158776,158833,47317,158890,158947,47338,159004,159061, 159118,47104,46162,159184,159241,47408,47200,46295,159298,159355, 47415,47250,159412,159469,47439,159526,159583,159640,159699,159756, 48772,47440,159813,159870,47449,159927,159984,160041,45641,47255, 160100,160157,47450,47326,46378,45993,47619,47370,47560,47685, 160200,46019,47539,47429,47012,46160,47448,46374,47433,44663, 47744,46161,44587,46629,33070,47451,44060,47576,47371,46913, 47093,46422,46215,47490,47617,47752,47125,47577,47794,47193, 48790,47194,47821,49025,47962,47432,160257,160314,47459,47347, 160371,160428,160505,47508,47379,160562,160619,47528,160676,160733, 160790,160855,160912,160969,46479,46630,48113,47126,161034,161091, 47531,47454,46523,161148,161205,47601,47515,46748,161262,161319, 47630,47527,161376,161433,47656,161490,161566,161623,161680,161737, 47659,48799,47585,161794,161851,47704,47681,161908,161965,47706, 162022,162098,162155,46772,47561,47688,47954,33140,46628,46714, 46797,49047,49115,48189,49362,48407,47828,48607,47800,48249, 47400,48105,46912,47624,47795,162212,162291,48134,48445,48172, 44683,47532,46395,47536,46445,46519,37327,45274,162353,162411, 44886,33203,47720,42102,162469,162527,47984,48254,162570,47281, 47832,162619,47726,162668,48116,47766,47049,162717,47793,162766, 48119,47317,48133,48665,48666,47661,47829,48166,48458,162815, 47972,162864,48163,48192,48381,48848,48703,48460,48108,162913, 47973,48610,162962,48122,48849,48906,48391,48611,48962,48963, 163011,163075,49105,49403,49187,47957,49244,48099,49487,48374, 46855,45427,47147,45355,45715,48608,47822,163137,48177,163186, 48668,47050,163235,48082,47272,48669,33239,163284,48268,48740, 163333,48191,47593,49056,33318,49124,49294,163382,48370,48744, 163431,48383,47689,49061,33334,49295,49332,163480,163529,48478, 48850,163578,48409,47797,49137,33381,49412,49377,163627,163678, 45233,48916,48447,48449,48847,48702,163727,48613,163776,48851, 47932,49142,49422,49601,48961,48886,163825,49221,49278,49632, 43050,49827,49945,50224,163874,46288,47537,45831,48632,48628, 48925,48433,45756,48927,48243,44730,48733,48429,49046,49753, 49982,49953,50266,50275,50323,50332,50380,49981,163934,49783, 50041,50351,48594,48686,50296,50531,49983,50471,47209,48244, 45895,48922,49197,48577,48106,48722,48986,49363,49175,49743, 49756,48944,49118,46481,48246,44958,48408,48462,43757,46853, 48604,49069,48662,49018,46910,47415,48625,49286,49146,49317, 48958,46766,164002,164080,164158,164236,164315,164393,164471,164549, 164627,164705,164784,164862,164940,165019,165097,165175,165253,165333, 165412,49383,49476,35865,165492,50082,50464,50578,50607,165570, 165648,165726,165804,165882,46361,36139,49200,48701,49123,49125, 50223,48835,49978,48615,49251,46598,46643,49554,165962,46745, 49571,40592,50162,50219,49412,166042,35528,49969,166122,49332, 48832,48946,166202,48810,50043,49331,48593,48429,50475,50183, 33447,50359,49017,49785,44809,33539,50418,50638,50733,46484, 166284,50725,49746,50809,50950,51008,50553,50631,51066,45507, 166342,166399,48081,47707,48220,166456,166513,48838,47761,48437, 33748, 0,49067,48236,48741,33891, 0,49114,49225,48792, 166570,166627,49286,49285,48794,34073, 0,49355,49372,34185, 0,49420,34260, 0,49447,166684,166741,49737,49469,51263, 48796,34358, 0,49752,49470,48845,34373, 0,49766,49614, 34437, 0,49762,34602, 0,49795,166798,51321,166856,166935, 34656,34733,48905,167018,167076,167134,167217,167275,167317,49125, 49964,50068,167381,50755,50293,49735,49951,167438,167496,167554, 49965,167611,167669,167727,167792,167849,167914,46543,49125,51343, 50927,167971,168054,168131,168189,168247,168289,50095,50394,50350, 168353,50399,49794,50184,168410,168468,168526,50321,168583,168641, 168699,168764,168821,168886,49127,168943,169026,49081,38391,169109, 169168,46742,46231,50472,51429,50985,169236,34803,34972,169300, 169358,50376,169416,169474,49810,169557,169614,169671,169728,169794, 169852,169910,50380,169967,51490,170024, 0,48702,51042,45087, 48199,35030,50393,170067,50285,170116,50499,50432,170176,50442, 51199,50744,50500,50051,50398,50644,170225,50443,170274,50645, 49337,50649,51200,51460,49425,170338,170396,170454,50437,170511, 50262,170568,170626,170684,50438,170741,170799,170857,170936,170993, 171050,171108,171166,171245,50498,41270,171302,171360,171418,50513, 171475,171532,171589,50551,171646,171703,171760,50496,51531,47314, 50552,171826,171884,49453,50687,171967,172024,172101,51182,50769, 172158,172215,172273,50791,50718,172330,172387,50792,172444,172501, 172558,172623,172680,172737,172802,172860,172918,50910,172975,50720, 50968,173032,51352,51406,51553,173075,50991,51064,173124,51065, 173184,51201,51219,51170,173233,51202,173282,51471,51257,51249, 51605,51606,49791,50774,173331,51205,51564,173380,51277,51607, 51608,51307,51593,51810,51610,173444,173527,173585,173643,173720, 173778,173836,51483,173893,50775,51489,49989,173950,174008,174066, 51496,174123,50917,174180,174238,174296,51524,174353,174411,174469, 174528,174585,174642,174699,51873,51525,51526,174756,174814,174872, 51575,174929,174987,175045,175104,175161,50933,175218,175275,175332, 175389,175446,51580,35204,50991,49990,175523,175580,51596,51045, 175637,175694,51606,175751,175808,175865,175944,176001,176058,176115, 176172,176251,176308,49020,51636,51479,51932,51991,51574,52066, 51982,51297,51659,51404,50766,176374,176431,51608,51245,50044, 176488,176545,51609,51303,50045,176602,176659,51653,51412,50245, 176716,176773,51654,51490,176830,176887,51657,176944,177001,177058, 177137,177194,52250,177251,177308,177365,35272, 0,51659,51535, 50247,35287, 0,51660,51584,50276,177444,177501,51666,51775, 50299,35345, 0,51796,51784,35508, 0,50659,35682, 0, 51797,177558,177615,51798,51800,52314,50360,35752, 0,51801, 51802,50362,35888, 0,51808,51832,35934, 0,51316,36014, 0,51814,50924,52424,51558,51220,51848,47636,48887,36511, 177672,48352,36077,530678,177734,51865,51864,51979,52583,48983, 51480,52022,51980,52643,177802,50196,177857,177914,51889,51841, 50402,177971,178028,51900,51855,178085,178142,51986,51914,178199, 178256,51993,178313,178370,178427,178492,178549,178606,51285,178671, 178728,52024,51915,51286,178785,178842,52035,51988,51287,178899, 178956,52084,52033,179013,179070,52100,179127,179203,179260,179317, 179374,52101,52475,52049,179431,179488,52102,52103,179545,179602, 52104,179659,179735,179792,47955,52348,52367,52024,52083,51807, 49602,52238,52687,52308,52273,36153,52274,49408,43982,44569, 36339,50799,38133,52394,50982,52106,52717,52777,52936,51443, 52246,179849,179906,52107,52252,51345,179963,180020,180077,180134, 180191,52113,52284,51867,180268,180325,52342,52296,180382,180439, 52351,180496,180553,180610,180689,180746,52526,180803,180860,180917, 44272,52994,52446,36367, 0,52354,52310,51895,36439, 0, 52356,52341,51954,180996,181053,52361,52357,51956,36440, 0, 52392,52407,36501, 0,52031,36613, 0,52419,181110,181167, 52428,52468,52828,51957,36672, 0,52470,52476,52000,36687, 0,52519,52548,36814, 0,52471,36945, 0,52520,52594, 50616,49045,52547,49586,49910,41636,53105,53136,53158,52799, 53214,52634,53236,52895,50583,51923,52054,51999,51556,181224, 181300,52675,52632,52633,47367,45131,50181,48339,48930,45914, 40920,48788,181357,181415,52521,181458,52549,47717,181522, 0, 49192,52768,47634,47826,52718,52396,181590,52374,181639,52652, 52616,181688,52660,52870,52871,52733,52697,181737,52707,52872, 181786,52732,53178,53124,52921,52977,53186,53200,181835,52787, 53007,181884,52837,53247,53249,53122,53086,53264,53251,181933, 52277,52999,53160,53106,181982,52838,182031,53246,52493,53278, 53292,53294,53289,53244,182082,53148,53331,53370,182146,49599, 49238,49048,49754,53379,53079,53388,53229,53411,50239,46132, 49293,182209,52839,53300,182258,182307,52869,52217,53317,36947, 182356,182405,36949,37047,52955,52467,52571,52983,53389,53159, 182454,182503,37057,37306,52957,52492,53413,52997,53272,53397, 53432,53430,182552,182601,37411,37454,53080,52498,53434,53398, 182652,53456,53487,53526,53457,53459,53461,53526,182701,182750, 37537,37626,53206,52518,53527,53463,182799,53567,53604,53613, 182848,182897,52920,53417,182946,53298,52573,53320,37684,53537, 53540,182995,183044,49353,53622,53645,53684,44293,49392,50043, 51650,52365,53652,51444,52041,53520,49477,46816,51525,52784, 53076,53307,53496,53521,53671,53647,53674,53707,53717,53713, 53723,183104,53787,53808,53803,52082,50495,53680,53728,53764, 53823,50496,49917,49758,53485,53297,52797,51191,53478,53750, 53757,53851,52335,53751,53530,53164,50606,46131,46914,52618, 49987,50197,51344,51495,53708,52722,52998,52057,52112,53793, 52275,53610,53203,52430,50395,183172,183250,183328,183406,183484, 183562,183640,183718,183796,183874,53830,53809,52974,53770,52743, 53837,53868,53802,183952,184032,184110,184188,53931,184268,37711, 53941,53959,53999,184346,184424,53844,49921,46793,45810,48631, 41695,51521,50040,52905,53304,52554,47146,51340,53498,45486, 184502,184580,184658,184738,184816,184894,53965,53932,51744,52832, 53347,53540,53505,53657,184974,53900, 0,37741,50957,37749, 37760,37783,37855,37865,37930,38000,38897,52336,40257,38179, 38219,38356,52535,38313,53966,53919,53975,53978,53929,53426, 53620,38495,53677,185054,54014,54016,185135,54090,54115,38299, 38381,38500,54154,54166,54194,54247,38657,43330,54089,53240, 53337,38676,38920,54061,185215,54195,51465,54217,50743,54311, 54258,52925,54043,54320,54352,54389,47171,185270,185327,52720, 52699,52651,39011, 0,53166,52867,52877,47300,53616,50295, 53077,53476,54400,46526,185384,185441,52716,185498,185577,39017, 39166,39227,185660,185718,185776,185834,185891,185949,39291,53617, 186032,50557,51454,39300,53778,53087,53638,186089,54411,54467, 54477,52958,186147,186205,186263,53708,186320,53334,186377,186435, 186493,53764,186550,186608,186666,186745,186802,186859,186917,186975, 187054,53765,49961,46000,187111,187169,187227,53858,187284,52608, 52654,39391,53859,53566,53861,53335,187341,187399,187457,53878, 187514,53789,187571,187629,187687,53883,187744,187802,187860,187939, 187996,188053,188111,188169,188248,53967,48836,188305,54486,188363, 188430,49279,51777,54040,54246,188498,39387,39466,188562,188620, 54028,53897,188678,188736,53705,188819,188876,188933,54062,188990, 189047,189104,189169,189234,189292,189350,54064,189407,53982,54085, 189464,54508,54557,54566,189507,53634,54034,189556,53700,189616, 54126,54103,54165,189665,54037,189714,54175,54189,54125,54283, 54218,53729,54097,189763,54099,54265,189812,54138,54329,54375, 54179,54330,54529,54531,189876,189953,190011,190069,54116,190126, 54160,54188,53817,190183,190241,190299,54201,190356,54253,190413, 190471,190529,54261,190586,190644,190702,190761,190818,54271,190875, 190933,190991,54319,191048,191106,191164,191223,191280,54317,191337, 191403,191461,191519,54324,191576,54320,54345,191633,191690,191767, 54358,54335,191824,191881,54406,191938,191995,192052,192117,192174, 192231,53936,39540,54408,192296,192354,54192,192437,192494,192551, 192608,192665,54410,54636,54409,192742,192799,192856,192913,54413, 54416,54217,192970,193027,54424,54429,193084,193141,54431,193198, 193255,193312,193391,193448,54667,193505,193562,193619,193698,193756, 193814,54436,193871,54435,54479,54257,54490,193928,194011, 0, 49475,54586,53756,53790,54509,53947,194079,54282,194128,54597, 54575,194188,54596,54703,54684,54707,54646,194237,54601,54647, 194286,54609,54709,54713,54711,54676,54727,54733,54442,54717, 54732,54769,54750,194335,54611,194384,54728,54500,54773,54777, 54779,54771,54787,194448,194531,54894,54916,54950,53800,54747, 54803,194601,39505,194665,194723,194780,194838,194896,54510,194953, 54520,54642,54560,54713,195010,195068,195126,54775,195183,54768, 54778,54565,195240,195298,195356,54789,195413,54788,195470,195528, 195586,54790,195643,195719,195777,195835,195911,54800,195968,196025, 54804,54974,54794,54795,196082,196140,196198,54915,196255,54813, 196312,196370,196428,54944,196485,196561,196619,196677,196753,54973, 196810,196867,196924,54987,196981,197038,54988,197095,197152,197209, 54956,54566,197275,197332,54992,55001,54610,197389,197446,54994, 55010,197503,197560,55011,197617,197674,197731,197790,197847,55014, 197904,197961,55016,198018,198075,198132,198191,53255,45717,51969, 55026,55820,198260,55878,55091,55935,55140,55992,55189,54066, 198315,198372,55017,55018,54670,198429,198486,55051,55050,54672, 198543,198600,55052,55062,54675,198657,198714,55063,55097,198771, 198828,55064,198885,198942,198999,199058,199115,55271,55066,199172, 199229,55101,199286,199343,199400,39652, 0,55110,55100,54698, 54871,55243,55287,55531,55144,199445,53954,56049,55123,55193, 199502,54890,53256,52278,49584,199560,53669,199617,55647,55301, 55242,56106,56183,55337,56240,55385,55398,55434,55142,55270, 199674,199731,55112,55148,54701,199788,199845,55113,55157,54853, 199902,199959,55158,55161,54856,200016,200073,55162,55196,200130, 200187,55209,200244,200301,200358,200437,200494,55516,200551,200608, 200665,39705, 0,55210,55197,54898,39771, 0,55211,55297, 55020,200744,200801,55304,55307,55273,39819, 0,55309,55313, 39820, 0,55264,39879, 0,55311,200858,200915,55345,55343, 55577,55392,39948, 0,55355,55346,55393,39951, 0,55356, 55394,39997, 0,55410,40011, 0,55359,55436,56297,55487, 55339,55438,54156,56604,55483,53907,40136,55632,52798,53951, 46911,40109,55544,53453,55587,55466,56354,55534,56411,200968, 56468,56525,55025,201023,201080,55404,55395,55442,201137,201194, 55414,201251,201308,55454,201365,201422,201479,55444,55490,201545, 201602,55552,55540,55493,201659,201716,55593,55604,201773,201830, 55606,201887,201944,202001,202060,202117,55714,55608,202174,202231, 55609,202288,202345,202402,50922,55645,202461,202518,55611,55642, 55538,55684,55686,55730,55833,55735,202561,55764,55636,55634, 54891,54725,50352,52914,54169,55743,55781,55744,55888,55925, 56911,56002,57033,56059,57174,56100,55683,51401,55018,55093, 202618,55927,56153,55779,56178,54476,50354,50902,51239,50996, 54374,202681,55682,202753,202811,55654,55655,202854,40157,55690, 49126,202903,55418,56148,202952,55423,203001,56159,55919,55756, 203050,55767,203099,56160,55809,55977,56566,56567,56157,56568, 56569,56645,203148,55805,203197,56586,55810,56034,56711,56592, 56646,56582,56649,56703,56710,56759,203246,55861,203295,56656, 55870,56091,56769,56826,56761,56708,203346,56836,56888,56920, 203395,55862,56772,203444,55920,57105,57106,56158,57042,57107, 57191,203493,57279,203542,50488,57164,203606,55239,57301,56116, 56193,57043,54388,57584,56250,51573,54044,52468,54574,55460, 56712,55792,203649,203698,40172,203747,40293,40289,56259,55894, 203796,40312,203845,40434,40427,56260,55924,203894,40523,203943, 40617,40622,56261,55928,203992,204041,40690,204090,40693,40699, 56290,56122,204139,204190,50743,57223,204239,40766,204288,40890, 40884,56316,56123,204337,204386,51070,57332,56326,56330,57113, 56386,204435,204484,40963,40974,56373,56342,57379,56387,204533, 57341,57430,57439,204582,47958,57832,58274,58330,53150,41014, 52821,47753,55891,56846,56025,56346,56460,41132,53533,53834, 53871,56842,56733,56693,56790,57222,58425,57477,57363,58493, 57508,56750,57657,57756,58444,56272,56421,58099,58452,58563, 58197,54249,54480,55194,50529,56402,56617,55706,56430,56432, 56515,57478,58480,56766,56861,56021,55866,54378,54788,55486, 41133,54255,52719,41188,56401,54344,56513,54624,55094,56345, 57461,54818,56516,57330,55586,204642,204720,204798,204876,204954, 205033,56816,57136,56509,43801,54929,57069,205113,43179,57486, 51004,57586,57327,205191,205271,205349,57679,205429,205509,205589, 57000,57466,205667,205745,56453,57324,57520,57825,56586,55722, 57684,57000,57215,57488,58297,57183,57843,57422,57340,56703, 57719,57584,57680,205823,205901,205979,206059,206139,206218,56578, 57671,57171,56802,57130,57900,57527,58020,55218,54622,57353, 58395,55849,57672,56495,56492,57626,57010,56577,56843,56496, 56625,58467,57627,57170,57673,56575,57425,58542,58016,57356, 56830,58492,57222,57722,57193,58296,58543,206297,206377,206455, 206533,206613,41207,58121,58173,58167,56743,57952,58225,58949, 41461,57792,57558,57302,41169,57805,58091,58148,55583,54768, 51346,49233,58603,59063,58645,56218,59086,48063,41264,56023, 58499,56257,206695,206752,57456,56074,56493,206809,206866,57504, 206923,207000,207079,41327,41338,51185,53018,207162,207220,207278, 57514,207335,207392,207450,207508,41465,41537,56207,57612,57114, 56208,59012,59142,58787,50805,207591,207649,207707,57614,207764, 56800,57673,57115,207821,207879,207937,57718,207994,57247,208051, 208109,208167,57751,208224,208282,208340,208399,208456,57766,208513, 208571,208629,57767,208686,208744,208802,208861,208918,57454,50941, 208975,209041,209099,209157,57770,209214,57566,57800,57246,57605, 209271,209348,209406,209464,57801,209521,57621,57847,57432,209578, 209636,209694,57867,209751,57857,209808,209866,209924,57869,209981, 210039,210097,210156,210213,57872,210270,210328,210386,57873,210443, 210501,210559,210618,210675,57874,210732,210798,59173,59219,210881, 210951,54530,51849,58234,211034,57595,59439,55952,211077,41625, 41692,211141,211199,57878,57923,57433,211257,211315,211398,211455, 211512,57879,58045,211569,211626,57924,211683,211740,211797,211876, 211933,211990,212069,212127,212185,58057,212242,58058,58060,57676, 58061,58672,212299, 0,51919,58813,56024,56212,58346,58110, 212342,57056,212391,58426,58159,212451,58257,59232,58923,58416, 58427,212500,58258,58544,212549,58315,59233,59000,58591,58546, 59234,59049,57701,57559,58199,59147,58924,212598,58316,212647, 58651,57766,58617,59489,59074,59148,58937,212711,212768,212826, 212884,58066,212941,58144,58340,57702,58397,212998,213056,213114, 58341,213171,58472,58421,57799,213228,213286,213344,58468,213401, 58506,213458,213516,213574,58469,213631,213707,213765,213823,213899, 58540,58520,213956,214014,214072,58542,214129,58572,214186,214244, 214302,58571,214359,214435,214493,214551,214627,58597,214684,214741, 214814,214872,214930,58598,214987,58600,58607,57853,58636,215044, 215101,215158,215215,215272,58665,58777,57931,215349,215406,58785, 58795,215463,215520,58786,215577,215634,215691,215770,215827,59552, 215884,215941,215998,58169,216077,216135,216192,58918,216249,216306, 58965,216363,216420,216477,58974,59609,59052,58193,216543,216600, 58968,216657,216714,58987,58975,58295,216771,216828,59022,59044, 58296,216885,216942,59053,59069,216999,217056,59101,217113,217170, 217227,217286,217343,59677,59104,217400,217457,59155,217514,217571, 217628,217687,217745,217803,59156,217860,59111,59181,58325,59138, 58501,217917,217975,59299,59415,218018,218067,41761,218116,58507, 218176,59235,41891,59103,218225,59204,218274,59481,59231,59493, 59737,59738,59287,59288,59490,59541,218323,59247,218372,59491, 59432,59594,59794,59795,59615,59487,218421,59310,59656,218470, 59492,59857,59832,59855,59657,59868,59860,218519,218583,218641, 59495,59686,218724,59920,59932,59944,59538,59862,218781,54707, 218839,218897,41945, 0,42063,59454, 0,59139,59511,58970, 59187,58971,42204, 0,42206,59550, 0,59201,59571,58972, 59230,218954,219012,219070,59651,219127,59421,59652,59086,42331, 0,42394,59676, 0,59422,42398, 0,59515,42493,42509, 0,42644,59680, 0,59573,59705,59605,219184,219241,59725, 59671,60081,59461,59574,42752, 0,42755,59727, 0,59712, 59728,59575,42896, 0,42910,59759, 0,59729,43316, 0, 59606,43332,43333, 0,43406,59781, 0,59655,59782,59780, 219298,219355,59784,59785,219412,219469,219546,59835,59786,219603, 219660,59871,219717,219774,219831,219896,219953,220010,59708,220075, 220132,59891,59836,59710,220189,220246,59895,59838,59734,220303, 220360,59934,59845,220417,220474,59939,220531,220607,220664,220721, 220778,59940,59958,220835,220892,59960,59962,220949,221006,59983, 221063,221139,221196,221253,53403,54907,48888,60038,58198,59892, 59988,58247,60138,60178,60189,60212,60234,56253,221330,221387, 59986,59992,59738,221444,221501,60004,60005,59766,221558,221615, 60014,60008,59768,221672,221729,60015,60040,59820,221786,221843, 60079,60048,221900,221957,60097,222014,222090,222147,222204,222261, 60100,60675,60049,222318,222375,60134,60063,222432,222489,60136, 222546,222622,222679,60894,60259,60614,222736,222794,58983,59790, 56709,57097,56845,43414,60163,60220,60591,60279,61207,222848, 61265,60854,61370,60440,61347,60907,58321,222903,222960,60137, 60107,59851,223017,223074,60138,60120,59990,223131,223188,60184, 60159,60044,223245,223302,60228,60160,223359,223416,60241,223473, 223530,223587,223646,223703,61452,60277,223760,223817,60295,223874, 223931,223988,43425, 0,60296,60202,60045,56425,60671,60432, 60612,61106,224033,56580,61510,59849,60620,224090,58287,60301, 61629,61664,54316,43481,61160,55021,57300,55315,43595,57883, 55166,60864,61567,57353,60057,61085,60696,61717,224144,59177, 224199,224256,60297,60226,60047,224313,224370,60299,60242,224427, 224484,60300,60283,224541,224598,60434,224655,224712,224769,224834, 224891,224948,60102,225013,225070,60435,60311,60104,225127,225184, 60436,60438,60279,225241,225298,60446,60441,225355,225412,60448, 225469,225545,225602,225659,225716,60559,62081,60565,225773,225830, 60575,60566,225887,225944,60579,226001,226077,226134,55950,61392, 60706,58118,57081,53833,57476,57546,55463,61163,62713,61200, 61274,62761,60588,63486,61520,59413,60073,56126,58087,57348, 226191,51577,60697,61111,61391,55507,56737,58184,52616,57472, 46972,226248,56228,226305,226363,60582,60578,60447,57267,58580, 59269,57159,57940,58922,60648,60719,226406,59694,226455,60604, 60418,226504,60913,60589,60688,43763,226553,60037,60732,226602, 60914,60619,60936,43766,61390,61598,226651,60656,60947,226700, 61053,60690,61134,43842,61726,61736,226749,226798,60733,60948, 226847,61054,60838,61135,43893,62274,61915,226896,226947,52235, 61317,60944,61079,61275,61630,226996,60737,227045,61146,60856, 61376,62275,62056,61278,61082,227094,61799,61943,62139,58112, 62340,62771,62995,227143,62397,61463,62595,62833,62890,61623, 62259,63232,57646,58500,57473,227192,44003,227241,227290,44081, 44180,227339,227388,44192,44286,61056,60857,61368,61674,61539, 227437,227486,44347,44341,62530,61396,61453,62714,61772,227535, 227584,44573,44582,62715,61541,227635,62374,62514,62572,61543, 62772,61773,227684,227733,44594,44661,63701,61599,227782,62629, 62654,62686,227831,61774,63702,61913,227880,227929,44766,44823, 63703,61914,227978,62867,63068,63096,228027,228076,44833,228125, 44885,44971,61112,60910,228174,228223,52925,63208,63290,62605, 56120,45030,47213,57178,59163,62075,60832,59412,61199,57743, 61201,61325,61685,62759,62762,59599,62808,63464,63754,63769, 63801,63541,64016,64183,64093,60275,61227,64240,64241,64248, 64404,58288,58374,58599,62350,61718,58447,59026,63682,62057, 62070,61498,62256,61197,62330,58498,59079,57877,59149,51615, 45031,61226,56462,60448,59633,61657,45078,45126,61110,61659, 60184,61555,58338,55710,228283,228361,228439,228517,228595,228673, 228751,228829,228909,228987,229067,45293,45377,45383,45406,45422, 45453,45501,45526,47013,59466,51636,45606,45600,45842,60613, 45889,229145,229223,229301,229380,229458,60551,61192,61284,229536, 229616,229694,61348,229774,229854,229932,55651,53062,58160,59934, 52398,58905,58749,59937,61554,58906,53298,60716,61626,52495, 230012,230092,230170,55796,54865,58382,60706,54155,58907,59020, 59938,61730,58985,54904,60851,62235,52774,230250,49077,230328, 230406,47472,61439,57639,55328,60142,63363,46364,61381,61635, 61354,48538,46931,56964,230486,45956,61377,46179,61632,63359, 230564,230642,230720,230800,230880,230958,61404,62105,61698,62077, 62079,62485,62487,62230,61691,62232,62796,63217,61764,63428, 59863,54453,56302,63475,63372,61025,63370,62486,63378,63477, 62657,63539,63832,63181,63228,63963,62246,63513,62278,62545, 231038,46648,231118,231198,231278,46291,63541,64243,61241,63721, 61696,53617,63740,62073,59922,46359,62717,231360,63840,58068, 58765,51953,58786,64450,64479,63459,64488,64510,62390,231408, 63990,61545,64546,53990,46567,59023,231465,231522,60928,62522, 61141,231579,231637,231694,231751,231830,46587,46629,62662,62766, 231913,231971,232029,61276,232086,62636,61902,232143,232201,61203, 62800,61228,232284,232342,232400,232458,62649,232515,62816,62713, 61663,62873,232572,232630,232688,62743,232745,63028,63068,62101, 232802,232860,232918,63069,232975,63078,233032,233090,233148,63215, 233205,233281,233339,233397,233473,63460,63256,233530,233588,233646, 63509,233703,63272,233760,233818,233876,63562,233933,234009,234067, 234125,234201,63697,234258,55794,234315,234388,234446,234504,63723, 234561,63273,63746,62104,63404,62717,234618,234676,234734,63756, 234791,63406,63757,62768,63416,234848,234906,234964,63758,235021, 63495,63797,62769,235078,235136,235194,63807,235251,63497,235308, 235366,235424,63808,235481,235557,235615,235673,235749,63810,63522, 235806,235864,235922,63813,235979,63552,236036,236094,236152,63817, 236209,236285,236343,236401,236477,63846,236534,236591,236664,236722, 236785,59036,60098,64029,236868,236926,64555,62645,236980,237019, 46901,46967,237083,237141,63856,63698,62797,237199,237257,237314, 63857,63782,63030,237371,237428,63858,63844,237485,237542,63860, 237599,237656,237713,237772,237829,63861,237886,237943,238000,238059, 238117,238175,63986,238232,63991,63997,63251,64006,63253,238289, 64115,64173,64368,238332,62067,64054,238381,63720,238441,64153, 64008,63838,238490,64065,238539,64224,64031,64066,64385,64104, 238588,47107,58399,49814,238637,64067,238686,64283,64103,64182, 64564,64565,58609,47108,238735,64069,64386,238784,64154,64581, 64587,64212,64387,64589,64615,238833,238897,47262, 0,47320, 64185, 0,64037,64210,63254,64268,63492,47324, 0,47374, 64242, 0,64282,64269,63493,64296,238954,239012,239070,64368, 239127,64297,64374,63523,47391, 0,47395,64381, 0,64372, 47463, 0,64192,47464,47511, 0,47570,64388, 0,64309, 64406,64415,63547,47626, 0,47679,64445, 0,64432,64446, 63551,47837, 0,48142,64452, 0,64447,48145, 0,64456, 48146,48198, 0,48250,64481, 0,64488,64503,64508,54069, 239184,239242,239300,64506,239357,64510,64554,63710,64555,63770, 239414,239471,64576,239528,239585,64593,239642,239699,239756,64577, 63795,239822,239879,64603,64612,64023,239936,239993,64610,64614, 240050,240107,64622,240164,240221,240278,240337,240394,64666,64624, 240451,240508,64626,240565,240622,240679,240738,240795,64627,64617, 240852,240909,240986,64629,64631,241043,241100,64636,241157,241214, 241271,241336,241393,241450,64112,50783,60128,241515,241572,64638, 64649,241629,241706,64113,241763,241820,64661,64662,64117,241877, 241934,64664,64668,64216,241991,242048,64690,64677,242105,242162, 64692,242219,242295,242352,242409,242466,64693,64719,64683,242523, 242580,64712,64702,242637,242694,64714,242751,242827,242884,242941, 242999,243057,64715,243114,64716,64717,64274,64718,64275,243171, 0,56020,64746,60945,62312,64640,62878,243239,64532,243288, 64768,64566,243348,64755,64770,64785,64787,64788,243397,64756, 64789,243446,64790,64792,64800,64803,64807,64826,64829,243495, 64810,64846,243544,64834,64857,64863,64867,64870,64880,64881, 243593,64876,64886,64905,64924,243642,64883,243691,64909,64692, 64931,64935,64899,64952,64953,243742,64984,65030,65039,243806, 64903,64943,64957,243889,64960,243931,50177,51399,243995,48253, 0,48562,64804, 0,64742,64808,64292,64746,64411,61582, 64983,64955,65028,64981,244038,64249,65054,244095,244152,64882, 64837,64579,244209,244266,244323,244380,244437,64900,64937,64726, 244514,244571,64951,64982,244628,244685,64987,244742,244799,244856, 244935,244992,245049,245106,245163,48575, 0,64997,65032,64786, 48579, 0,65036,65034,64961,245242,245299,65038,65041,65007, 48641, 0,65040,65047,48690, 0,65067,48709, 0,65055, 245356,245413,65060,65062,65098,48770, 0,65084,65075,65109, 48771, 0,65087,65085,48819, 0,65088,48821, 0,65094, 245470,60885,61729,59080,65356,65115,66323,65119,65146,66380, 65120,66437,65453,64848,245548,245605,65108,65110,65146,245662, 245719,65128,65112,65153,48952, 0,65140,65174,65202,49005, 0,65147,65192,65221,245776,245833,65193,65195,65339,49007, 0,65196,65198,49185, 0,65313,49282, 0,65199,245890, 245947,65200,65314,65536,65342,49341, 0,65205,65324,65344, 49411, 0,65326,65329,49484, 0,65333,49485, 0,65330, 246004,66494,65454,65369,246062,60233,59194,59511,59240,55545, 55967,65405,65409,65600,65388,65553,65410,65467,66551,65698, 66608,65601,66666,64985,246120,246177,65365,65364,65412,246234, 246291,65422,65377,65413,246348,246405,65423,65462,65461,246462, 246519,65424,65463,65508,246576,246633,65471,65475,246690,246747, 65480,246804,246880,246937,246994,247051,65483,65744,65529,247108, 247165,65562,65569,247222,247279,65573,247336,247412,247469,67784, 65847,66092,247526,247584,65613,65662,67712,67842,55929,49548, 65604,56081,247642,61904,49786,64861,60305,65655,66731,66788, 65799,66845,65897,65614,65946,65652,65751,247700,247757,65574, 65610,65509,247814,247871,65622,65620,65511,247928,247985,65668, 65658,65512,248042,248099,65671,65705,248156,248213,65672,248270, 248327,248384,248463,248520,66028,248577,248634,248691,49944, 0, 65673,65706,65557,50063, 0,65718,65708,65559,248770,248827, 65759,65709,65560,50187, 0,65760,65770,50302, 0,65674, 50304, 0,65771,248884,248941,65772,65776,66901,65656,50317, 0,65808,65806,65782,50419, 0,65818,65809,50422, 0, 65775,50481, 0,65819,65848,66959,65852,65851,65849,60446, 61361,60848,62267,67969,65995,69123,69089,69202,66333,66390, 69236,61164,65997,59760,63067,65505,70006,62071,55910,65853, 66656,66056,60693,56082,61240,61757,58536,51760,65850,62129, 248998,249056,65906,65867,65934,249099,59431,249148,64963,65933, 249197,249246,65922,65920,66117,50553,249295,249344,50656,50650, 65923,65924,65972,65973,66069,66072,249393,249442,50719,50795, 66049,65969,66073,66071,66118,66119,66121,66166,249491,249540, 50943,50996,66147,65971,66167,66123,249591,66300,67015,67050, 66170,66171,66663,66665,249640,249689,51046,51055,66399,65999, 67057,67016,249738,67079,67107,67129,249787,249836,65348,67172, 249885,66400,66018,66422,51228,67239,66664,249934,249983,56667, 67189,67303,67166,62531,67360,66504,63560,66566,67417,67474, 66618,62074,54215,56775,63586,66168,64423,250032,250081,51230, 250130,51283,51276,250179,51301,250228,51350,51399,67231,64499, 250277,51408,250326,51669,51664,250375,250424,51781,250473,51893, 51904,250522,250573,57009,67223,250622,52065,250671,52116,52111, 250720,250769,57611,67337,250818,52120,250867,52309,52303,250916, 250965,57821,67394,66526,67799,66637,251014,251063,52327,52383, 67858,66527,251112,67451,67508,67530,251161,54577,69025,69113, 69226,61884,52737,56595,66393,66780,66429,66336,66951,59997, 64774,66561,66670,66741,67891,67938,68017,68408,68716,68066, 68097,67260,66782,251225,68146,68195,68382,66122,62538,68293, 68342,69265,69464,66855,68491,68539,69463,56847,61530,62297, 66431,66837,58248,67549,66482,66719,66934,67999,65124,66833, 59077,61899,61052,61035,61900,62295,66428,66723,66721,63281, 66539,62331,62823,62992,251304,251382,69108,69221,67542,66336, 251462,67839,251542,60607,60917,64812,66843,58415,67200,65878, 53128,52410,60516,67538,66897,58353,66321,58606,54785,52412, 67154,65350,66433,66929,64632,67231,65572,66801,66018,67517, 66974,251620,251698,67080,67081, 0,251778,251856,251934,252012, 252091,252169,252247,252325,252403,252481,252560,252638,252716,252795, 252873,252951,253031,66700,63171,66142,66703,59251,61895,66427, 67237,64107,67528,56286,62731,52554,66816,67262,67544,253111, 253189,253267,253345,253424,253502,253580,253658,253736,253814,253893, 253971,254049,254128,254206,254284,254364,67678,63511,66143,67291, 62786,62686,67521,67905,65716,67925,56382,64047,52571,67347, 68375,67676,254444,254524,254602,254680,254758,67680,67754,62098, 66830,67088,67541,67767,67859,254838,67814,254918,52619,62783, 52744,52800,52943,52989,53068,53256,53364,54930,62951,61290, 53481,53525,53736,65837,53705,67865,67869,67968,68021,67972, 67820,67910,55028,254996,255074,255152,255230,255308,68563,68109, 255388,255468,67137,55554,68612,68110,68127,66663,68070,68220, 68130,68169,68171,67694, 0,68058,68222,64427,68224,68790, 65886,68270,68316,67251,68365,68258,67900,68405,68825,68454, 68455,68262,255548,63393,255628,255708,255786,66948,64674,59584, 59936,63542,63678,65766,62478,68013,66889,65912,60667,64054, 67855,56062,255866,255946,256024,68504,65002,61320,63182,64219, 63679,66799,64516,68210,66945,66858,61379,65506,68059,57173, 256104,54956,68524,68564,67682,68550,66000,68948,67297,65084, 53963,68243,68291,256186,68389,56273,55852,66915,65910,68788, 66094,69506,69563,69620,67427,256235,63044,256292,256349,256406, 256463,256542,54053,54276,67758,67067,256625,256683,256741,65967, 256798,66349,66022,66699,66518,256855,256913,66783,54364, 0, 54422,66626, 0,66575,67576,66784,66576,66813,54437, 0, 54486,67708, 0,66633,67778,66921,66814,256996,257054,257112, 67797,257169,67230,67836,67010,54694, 0,54810,67857, 0, 67343,54897, 0,67991,55013,55027, 0,55123,67894, 0, 68012,67962,67457,67058,55169, 0,55220,68008, 0,67512, 68044,67710,55222, 0,55314,68153, 0,67901,55315, 0, 68334,55417,55467, 0,55470,68190, 0,68433,68289,68003, 63725,57720,257226,257284,257342,68350,257399,68043,68398,67934, 68056,67975,55661, 0,55664,68402, 0,68191,68447,68092, 68240,68141,55712, 0,55759,68450, 0,68338,68457,68216, 68352,257456,257514,257572,68487,257629,68385,68497,68239,55801, 0,55858,68498, 0,68386,55860, 0,68456,55916,56068, 0,56071,68535, 0,68552,68549,68435,68335,56146, 0, 56220,68595, 0,68593,68597,68509,56275, 0,56334,68600, 0,68596,56352, 0,68581,56389,56505, 0,56601,68634, 0,68629,68644,68643,61388,68685,257686,68726,57096,63793, 68789,257748,257825,257883,69681,257926,56697,56691,257990,258048, 68645,68649,68583,258106,258163,68647,68680,68746,258220,258277, 68699,68747,68764,258334,258391,68757,68763,258448,258505,68797, 258562,258638,258695,258752,258809,68798,68766,258866,258923,68807, 258980,259056,259113,259170,259228,259286,68808,259343,68811,68847, 68845,68846,68869,259400, 0,59772,68919,66311,66523,68863, 67348,259468,67810,259517,68778,68352,259577,68515,68959,68961, 69010,68972,259626,68567,69008,259675,68874,69129,69242,69130, 69066,69680,69282,259724,68877,69067,259773,68880,69877,69651, 69292,69133,69878,69679,259822,68997,69180,69296,69298,259871, 68928,259920,69137,68860,69433,69934,69935,69439,69437,259971, 69597,69748,69861,260035,56737, 0,56796,68914, 0,68944, 68915,68893,68957,68918,67126,69021,64695,260092,260150,260208, 68961,260265,69061,69063,68940,69120,68989,260322,260379,69156, 69163,260436,260493,69172,69233,260550,260607,69176,260664,260721, 260778,260843,260900,260957,69046,261022,261079,69234,69239,69047, 261136,261193,69243,69293,69070,261250,261307,69286,69407,261364, 261421,69299,261478,261554,261611,261668,261725,69438,70115,69416, 261782,261839,69440,69443,261896,261953,69467,262010,262086,262143, 262200,262257,69521,69473,69273,262314,262371,262428,262485,262542, 69524,69474,69472,262619,262676,69638,69489,262733,262790,69720, 262847,262904,262961,263040,263097,70178,263154,263211,263268,57921, 263347,263404,69721,69530,69498,263461,263518,263575,263652,56799, 0,69722,69546,69528,56855, 0,69741,69603,69640,263709, 263766,69864,69660,69642,57005, 0,69865,69676,57043, 0, 69876,57047, 0,69881,263823,263880,69921,69863,70221,69643, 57259, 0,69922,69869,69645,57309, 0,69924,69920,57474, 0,69905,57549, 0,69925,263937,263995,264053,69960,264110, 69926,69976,69682,69936,69708,264152,68974,70020,264201,69056, 264261,70021,69995,69870,264310,69512,264359,70022,69933,70023, 70281,70239,70104,70166,70179,70183,264408,69994,264457,70024, 69957,70100,70283,70243,70279,70184,70277,70280,70296,70314, 264506,70034,264555,70035,70078,70241,70385,70311,70305,70386, 264606,70408,70420,70474,264655,70039,70158,264704,70041,70490, 70313,70309,70233,70491,70528,264753,70553,264802,60881,70579, 264866,264924,57550,57760,264982,59303,65073,265039,265096,265153, 70030,70026,70112,265210,265267,70074,265324,265381,70153,265438, 265495,265552,70193,70138,265618,265675,70214,70218,70141,265732, 265789,70216,70219,265846,265903,70220,265960,266017,266074,266133, 266190,70247,266247,266304,70291,266361,266418,266475,58042, 0, 70292,70309,70187,67484,70548,70357,70359,70361,70338,266534, 63245,65603,66973,70578,70650,70672,71016,71073,71129,71152, 71211,71288,69521,266592,266649,70380,70476,70368,58044, 0, 70381,70477,70414,58643,69704,59701,70579,68697,71505,63999, 266706,266763,69272,70580,69424,266820,69701,64105,59941,63739, 66021,62690,67708,70627,70676,71008,71619,71123,71266,71562, 69134,71676,71740,69555,266878,266935,70478,70481,70482,266992, 267049,70485,70535,70516,58154, 0,70494,70586,70547,58238, 0,70588,70593,70559,267106,267163,70591,70594,70614,58254, 0,70608,70643,58255, 0,70646,58345, 0,70645,267220, 267277,70661,70652,71764,70691,58396, 0,70666,70701,70694, 58451, 0,70702,70713,58454, 0,70668,58545, 0,70714, 267334,71781,71171,70846,267392,70108,66298,70723,71067,70849, 71083,70298,58656,64109,267450,267507,70721,58811,65122,71120, 71846,267560,71903,71202,72018,71242,72062,71319,70830,267615, 267672,70719,70718,70697,267729,267786,70723,70841,70863,267843, 267900,70857,70855,70864,267957,268014,70860,70861,268071,268128, 70973,268185,268242,268299,268358,268415,72625,70976,268472,268529, 70998,268586,268643,268700,58911, 0,70999,71124,70870,69634, 71346,71261,71031,71804,268745,70534,72601,71199,71124,268802, 66858,58964,68889,61793,69497,70727,73901,71572,70990,71973, 73959,74037,71629,71005,71172,66098,71265,68158,73933, 0, 74257,74329,68508,69554,268860,71244,71320,64308,69718,64548, 66108,69737,60400,63224,67446,268918,268976,71170,71133,71035, 269019,59105,68111,67279,67405,71219,67718,269068,269117,59183, 269166,59185,59270,71066,71006,269215,59415,269264,59419,59522, 71295,71065,269313,59532,269362,59533,59581,71296,71118,269411, 269460,59590,269509,59637,59645,71326,71169,269558,269609,61498, 71481,269658,59819,269707,59821,59815,71520,71188,269756,269805, 62583,72092,71209,71348,71357,71951,269854,269903,59875,60108, 71638,71216,71717,71783,269952,72122,72144,72263,270001,66093, 72486,72883,73533,71856,72742,71913,62884,73054,60288,60112, 68816,72003,60130,66877,70285,270050,60185,62315,60180,270099, 60254,60304,71648,71785,71651,270148,60560,60555,270197,71652, 72677,71935,270246,60620,60665,270297,72291,72404,72429,71707, 72989,72004,270346,60731,60844,270395,72462,72719,72859,270444, 71708,73467,72008,270493,60934,61069,270542,72917,72942,72974, 270591,71709,73654,72063,270640,61098,61127,270689,73031,73088, 73110,270738,270787,61155,270836,61175,61218,270885,270934,63881, 73228,73714,68208,63567,70181,71477,72050,71480,69155,71200, 64106,71824,72950,73724,71974,70440,71718,73459,73656,73793, 74085,73762,270994,73765,73029,271063,73488,73811,71774,74007, 74165,74331,74266,74287,74359,74560,69863,71258,71259,74040, 74617,74618,74781,74625,71007,67759,64146,73466,71496,71479, 71807,74213,74068,71952,71607,71549,69247,67262,71526,68911, 69127,71664,71820,71991,71891,72260,72644,71667,72021,73934, 65109,271131,271209,271287,271365,271443,271521,62351,68661,71314, 271601,271681,64280,64919,71321,68397,65376,71319,63059,71770, 68785,69950,68591,72031,70269,72634,73411,72631,70147,73205, 72635,72941,64442,271759,271838,72965,271918,271996,272074,272152, 272230,272308,272386,272464,272542,272620,272698,73808,73761,73633, 72620,73705,73810,74396,74044,272778,66089,66270,74035,71940, 66291,73198,64804,72583,71772,72233,71137,68803,73424,70328, 74386,74071,272858,272936,273014,273092,273170,273248,273326,273404, 273482,273560,273638,73973,74084,73972,74085,73769,74131,74398, 74133,273718,66559,66984,74250,73455,66407,73486,65696,72608, 71938,73619,73620,70831,73823,72112,74718,74324,273798,273878, 273956,274034,69018,71670,73854,73655,73762,74619,73926,274115, 73712,274195,67966,68344,72563,71178,71556,72085,73652,66731, 74341,72097,63347,61189,67747,73201,74134,63978,73065,70833, 61432,61242,71734,72700,71842,71667,70624,74184,73605,73925, 74183,74340,74400,274273,274351,274429,274507,274574,74490,74499, 74824,274653,274733,74864,74884,74943,71884,74484,70685,67355, 74032,74722,74914,73202,73198,68261,72692,72424,74145,72099, 68660,73601,71307,74853,74932,274802,75001,75013,75022,72687, 72958,274867,274945,275023,275101,66674,67268,69525,69983,67184, 67470,73443,73765,67185,67059,67358,73469,71502,275181,73862, 73718,74179,74540,73815,73610,74850,72951,72392,74091,74626, 73929,74568,73721,74046,72033,74911,74249,74497,275261,275339, 275417,275495,68485,67947,70519,69986,67526,67471,74162,74394, 67530,69179,67359,74140,72030,275575,74501,74551,74223,74790, 74245,73768,74909,74482,74609,74718,75025,74296,74988,74910, 74529,72251,74994,74824,74725,275655,275735,74692,71006,65009, 64567,75060,72858,61338,75077,75087,275817,68159,68056,75100, 69614,75157,67447,61363,74286,75166,75125,72678,75180,67795, 275884,275941,72988,74328,73468,275998,276056,276114,73683,276171, 71586,73967,72607,71588,72622,276228,61475, 0,61585,74255, 0,71927,74370,72632,72725,73708,70589,73457,72370,67124, 276286,276344,276402,74644,276459,72866,74647,74339,72924,74438, 61586, 0,61666,74666, 0,73037,74783,74463,73235,74467, 74645,74879,67682,75235,276516,276574,71122,73493,276657,276714, 276771,276848,75246,75202,61676,69428,62128,276906,276964,74822, 73693,74492,277022,277079,74829,73847,74493,61738, 0,74880, 73852,74541,277136,277193,74940,74128,74543,61922, 0,74958, 74173,62250, 0,74569,62265, 0,75018,62392, 0,75020, 74311,74624,62394, 0,75090,74673,62520, 0,74686,62635, 0,75091,277250,277308,277366,75095,277423,74735,75096,74656, 74792,74760,277465,71299,74953,277514,72280,277574,75063,75191, 74729,277623,73458,277672,75177,74788,75255,75260,75265,75129, 75187,75268,75273,277721,73517,277770,75259,74801,75261,75315, 75278,75309,75190,75313,75328,75331,75330,277819,73664,277868, 75329,74829,75332,75348,75358,75334,75353,277919,75407,75416, 75434,277968,74916,75377,278017,74987,75445,75453,75373,75459, 75464,75477,278066,75514,278115,65220,75551,278179,62648,278236, 278294,278352,75107,278409,74824,75119,74912,75019,74996,278466, 278523,75174,75069,75159,278580,278637,75200,75097,75203,278694, 278751,75204,75125,278808,278865,75247,278922,278979,279036,279115, 279172,75561,279229,279286,279343,62651, 0,75256,75277,75344, 62885, 0,75267,75300,75355,279422,279479,75379,75372,75389, 62887, 0,75427,75430,62888, 0,75412,62998, 0,75460, 279536,279593,75463,75462,75591,75409,62999, 0,75467,75465, 75411,63001, 0,75472,75478,63074, 0,75481,63209, 0, 75479,279650,279707,75483,75486,75413,279764,279821,75507,279878, 279935,75508,279992,280049,280106,75513,75520,280172,280229,75554, 75556,75521,280286,280343,75555,75557,280400,280457,75564,280514, 280571,280628,280687,280744,75642,75585,280801,280858,75589,280915, 280972,281029,63679,281088,281145,75594,75558,75587,281202,281259, 75598,281316,281373,281430,281496,63230, 0,75635,75559,75601, 75655,75656,75657,75689,75714,281559,75621,281616,281674,281732, 75637,281789,75608,75651,75663,75641,75685,71818,71878,75696, 72418,281831,75040,281880,75715,75678,281940,75698,75699,75662, 63288,281989,75673,75725,282038,75706,75708,75733,63388,75755, 75749,282087,75730,75736,282136,75807,75711,75751,63442,75813, 75821,282185,282234,75774,75824,282283,75815,75814,75832,63494, 75870,75878,282332,282383,66523,75942,75871,75875,75879,75904, 282432,75881,282481,75898,75817,75927,75976,75977,75984,75931, 282530,76034,76043,76083,68790,76482,76926,77236,282579,282643, 282700,282766,282823,282880,75724,75653,75850,282937,282994,75873, 75752,283051,283108,75971,75810,283165,283222,75972,283279,283336, 283393,283458,283515,283572,75878,283637,283694,75975,75962,75985, 283751,283808,75978,76076,76037,283865,283922,76077,76105,283979, 284036,76078,284093,284169,284226,284283,284340,76109,76107,284397, 284454,76119,76120,284511,284568,76121,284625,284701,284758,70089, 71970,72685,76162,76130,77066,76639,76131,76198,77123,77180, 76786,73997,284815,284872,76122,76155,76038,284929,284986,76157, 285043,75898,68625,285120,69538,68890,73194,73782,64246,74364, 76219,76199,76202,77314,76295,77371,77428,77485,77542,77599, 77664,74194,285178,285235,76168,76158,76082,63819, 0,76175, 76171,76083,69959,75345,72457,76308,74489,77721,70231,285292, 285349,75205,76247,76249,285406,74890,76300,76344,77782,76393, 63818,530678,65860,285464,285521,76206,75934,64231,70091,77271, 76406,76442,76298,76407,77843,77900,77957,76542,78014,73026, 285578,285635,76219,76205,76084,285692,285749,76255,76215,76106, 285806,285863,76256,76217,76108,285920,285977,76267,76265,76301, 286034,286091,76269,76304,286148,286205,76312,286262,286338,286395, 286452,286509,76314,76722,76350,286566,286623,76354,76352,286680, 286737,76364,286794,286870,286927,78318,78071,77224,286984,287042, 75723,73963,66339,64202,77076,78841,77133,76591,79086,76396, 73907,76505,76693,74136,74210,71690,76417,76224,79278,72876, 64289,287100,287158,76543,75594,73854,76319,71535,74456,76397, 76645,65718,71536,66412,287216,287274,76365,76403,76353,73042, 76420,73098,74369,287317,64311,287366,287415,64412,64405,287464, 287513,64429,64477,76418,76419,76518,76519,76811,287562,287611, 64659,64790,76568,76615,76616,76617,76812,287660,287709,65214, 65329,76664,76666,287760,76771,76869,76878,76813,77251,77241, 287809,287858,65426,65421,77597,78113,287907,77043,77548,77820, 287956,78114,78115,78118,288005,288054,65478,65523,78169,78128, 288103,77906,78077,78162,288152,288201,65578,288250,65632,65625, 76520,76443,288299,288348,67463,78191,78242,77381,78375,78432, 76808,78489,78546,77173,288402,77438,72875,78603,69537,65717, 74814,71634,73747,76902,74873,288444,65777,65821,288493,65866, 65955,288544,78219,78276,78298,288593,65964,66013,288644,67595, 78327,288693,66024,66180,288742,69423,78409,288791,66301,66337, 288840,70088,78466,288889,66414,66522,288938,71769,78523,76456, 77252,76653,288987,66569,66564,289036,78580,78637,78659,289085, 75063,75777,73463,76454,77230,76694,76574,71538,76573,77174, 77552,77243,77308,77536,78768,77356,78844,77999,78759,78845, 78882,79309,78730,289145,77607,289213,77620,77742,77894,289281, 78920,78732,79339,79400,80539,77558,76866,80596,79449,80673, 79497,79498,74563,70090,75935,77715,78670,75518,77200,77416, 77475,77111,76567,68867,73958,74011,72380,76471,78001,76841, 76721,76596,77590,77168,77685,77041,74070,289349,289427,289507, 289587,289665,70999,289743,289821,78728,77885,77624,77999,77756, 0,76713,77247,78727,77470,78806,78918,78190,78864,78865, 78785,78920,289899,78786,289977,290055,290133,290211,290289,290367, 78736,290447,290525,290603,290681,290759,290837,290916,77164,76864, 76482,69087,72423,73070,290996,66592,77702,72443,79258,79257, 77114,77649,77746,78056,71453,73879,77113,72449,76686,73214, 77419,79052,73496,78303,78624,73881,79050,291076,291154,291232, 291310,291388,291466,291545,77299,77062,76783,71113,74933,77723, 291625,66972,77971,72881,79366,79367,77360,78805,78835,78912, 77476,77277,77791,74655,78648,75091,77729,79323,75398,79053, 79060,75907,79206,291705,291785,291863,291941,77537,77321,76879, 77367,77839,79205,77895,77953,76521,76619,292021,292101,67083, 78391,74725,69262,69802,67127,66588,77050,78010,76336,68920, 77444,79207,66589,78131,68421,79512,78655,79411,79316,79625, 78768,79265,78312,292179,292257,292335,292413,72700,73668,79331, 71910,292493,78441,69684,68967,292573,292640,292707,292773,292839, 292905,292971,293037,293103,293169,293235,293301,293369,293435,293501, 70294,76478,79270,79662,79423,293580,293658,293736,79460,79424, 78863,79757,78056,77742,79572,78778,79322,79380,79953,78083, 80069,78916,79318,78681,79559,79525,79474,293816,69141,78505, 75793,74386,76519,79516,67376,77554,78328,76637,69667,70475, 77622,79479,66729,78892,68736,79574,79564,293896,293974,294052, 79607,79608,79707,80364,79019,78810,79673,79521,79475,79621, 80462,79527,80519,79569,79626,78738,79708,79720,79677,294132, 70798,78562,75948,77422,78160,79762,69025,77604,79350,77725, 71899,71767,77916,79669,66783,79059,70376,79772,79807,294212, 294292,294359,79724,71614,78680,79832,77306,66812,79843,81005, 294440,75176,70145,80640,80774,78252,294500,77878,72648,78674, 80831,79238,75717,66895,294557,77459,79706,294614,294672,294730, 78890,294787,78343,79459,76694,78472,76697,75901,66938,294844, 294902,294960,79553,295017,78529,79555,76746,78586,76919,66996, 81184,79685,74622,75062,295074,295131,79653,295188,295245,295302, 295368,295426,295484,79752,78641,77233,295542,295599,79800,78812, 77606,79863,295656,295714,295772,79851,295829,79334,79852,77865, 79392,77951,74520,76607,78951,77831,295871,79624,295920,79903, 77949,295980,79806,78003,79904,67168,296029,79869,79911,296078, 79900,78004,79951,67229,79952,79953,296127,79914,79915,296176, 79901,78652,80049,67469,80050,80051,296225,296274,79963,80009, 296323,79949,78707,80100,67527,80313,80314,296372,296423,72150, 80371,79990,80086,80321,80087,296472,79967,296521,80012,78762, 80315,80411,80460,80419,80401,296570,80381,80529,80663,72121, 81247,81360,81482,296619,296683,296740,296797,79857,79751,78869, 296854,296911,79902,79756,78929,296968,297025,79999,79839,79081, 297082,297139,80000,79950,297196,297253,80003,297310,297367,297424, 297483,297540,80887,80045,297597,297654,80046,297711,297768,297825, 67845, 0,80097,80047,79443,78464,80598,80437,80597,80485, 297870,77717,297927,297984,80098,80051,79517,298041,298098,80099, 80100,298155,298212,80101,80309,298269,298326,80316,298383,298440, 298497,298562,298619,298676,79518,298741,298798,80317,80311,79638, 298855,298912,80407,80410,79663,298969,299026,80409,80446,299083, 299140,80414,299197,299273,299330,299387,299444,80455,80944,80456, 299501,299558,80461,80459,299615,299672,80464,299729,299805,299862, 76001,299919,299976,80494,80493,79664,300033,300090,300167,80750, 80541,80550,300224,300281,80563,300338,300395,300452,300517,300574, 300631,300696,300738,79971,80013,300787,300847,80343,79734,80580, 67882,300896,300945,67946,68228,80572,79804,80692,80702,80709, 80819,300994,301043,68285,68351,80679,79999,80710,80821,80876, 80920,81052,80933,301092,301141,68534,68625,80767,80391,81055, 80977,301192,81101,81123,81158,80993,80995,81292,81237,301241, 301290,68650,68751,80768,80543,81294,81221,301339,81338,81402, 81424,301388,301437,80017,80987,301486,80793,80546,80625,68859, 81535,81457,301535,301584,76240,81506,81526,81077,301648,301705, 76868,301778,301835,80568,80606,80686,301892,301949,80698,80732, 80708,302006,302063,80789,80846,80796,302120,302177,80903,80854, 302234,302291,81001,302348,302405,302462,302541,302598,302655,302712, 302769,69162, 0,81007,80855,80856,69227, 0,81046,81047, 80880,302848,302905,81121,81105,80909,69298, 0,81158,81177, 69411, 0,80907,69540, 0,81159,302962,303019,81179,81213, 80967,69641, 0,81207,81262,81006,69662, 0,81282,81270, 69904, 0,81241,69963, 0,81283,73810,72873,75781,81566, 81608,81637,81660,79391,81750,76819,70587,81279,81565,77442, 303076,303133,81288,81298,81008,303190,303248,303305,80634,77817, 79763,78595,72932,74789,71821,76917,73964,71482,77948,81645, 81455,81773,81795,81456,81682,81997,82054,82111,74646,303362, 303419,81293,81355,81211,303476,303533,81295,303590,81686,73027, 303667,73084,80468,82229,81849,82493,77054,75383,303725,78366, 70164,76002,81368,70217,77713,81647,81839,82168,82432,82613, 82669,81458,82720,82709,78047,303782,303839,81359,81358,81212, 303896,303953,81444,81406,81445,70323, 0,81521,81522,81446, 70337, 0,81524,81523,81447,304010,304067,81541,81525,81553, 70606, 0,81542,81575,70650, 0,81548,70739, 0,81598, 304124,304181,81599,81603,82788,81600,70858, 0,81620,81604, 81601,70977, 0,81651,81655,70996, 0,81671,71093, 0, 81667,304238,82764,81816,81781,304296,78787,75485,75566,83207, 83425,82007,83801,84827,82064,304350,82121,82048,85119,81703, 78117,79328,81624,80879,79660,85396,74409,79489,81706,82264, 304407,82452,82160,79732,76802,74921,80076,80339,80749,77476, 74347,304465,304523,81669,81673,81680,304566,80878,78230,81727, 80630,304615,304664,71173,304713,71290,71289,304762,71719,304811, 71886,71933,81847,80461,304860,72000,304909,72015,72056,304958, 305007,72263,305056,72266,72261,305105,305156,76425,81974,305205, 72270,305254,72285,72398,305303,305352,76777,82409,305401,72408, 305450,72481,72566,305499,305548,77185,82533,81850,82275,82277, 305597,305646,72581,72715,82278,82494,305695,82561,82590,82619, 305744,75619,83738,85424,85451,80711,82445,81099,84274,82989, 83265,78292,305798,74282,76053,73085,80960,78405,77231,81766, 78462,305842,77344,82849,77388,81770,78519,305891,77696,81772, 78575,305940,77972,81794,78576,305989,78161,82188,81157,306038, 306087,72738,72868,306136,77570,82965,81787,75663,72874,82181, 78675,82200,79414,81681,82249,82219,82495,82726,83114,83656, 82728,83666,84316,82407,82686,306196,306264,82531,83143,306332, 84381,83637,84345,83694,84461,80790,82607,84550,84551,85289, 84587,84588,72913,81235,75314,82426,82453,72969,82071,83104, 82042,84382,82096,76099,77796,76516,81836,76718,76151,81295, 78792,82156,81534,82159,82099,81815,81603,306400,306478,83382, 306558,306638,83628,83434,84491,81808,82621,83357,83635,80373, 82623,82785,82106,82620,82033,83078,78009,78253,82682,81677, 83145,83216,306707,84597,84220,84338,306770,306848,83141,306929, 307007,307085,307163,307241,307319,307397,307475,307553,307633,307711, 307789,307867,307945,308024,308102,81690,82598,83426,73223,82693, 83071,81815,72940,72927,81074,73006,73310,73471,78838,73416, 73489,73662,76335,80718,308182,308260,308338,308416,308494,308572, 308650,308728,308806,308886,308964,309042,309120,309198,309277,309355, 81735,82634,83438,74900,83100,83729,82694,73675,73707,81375, 73888,73953,74000,79021,74020,74020,74043,79821,81441,309435, 309515,309593,309671,309749,84626,83796,309829,309909,82797,74429, 84831,83733,84285,83792,82775,84884,84396,83817,83818,84389, 0,84422,84522,83638,84390,84484,84896,84400,84643,84490, 84435,84886,82938,84639,84822,85123,84920,84223,309987,310065, 310143,310221,75209,76732,79109,310301,82160,84369,310382,84651, 84652,85210,84653,84869,76149, 0,78391,84932,84944,84818, 85174,84918,85176,85222,81690,310460,82155,310540,310618,310696, 74545,82503,77439,80064,80884,84016,74196,82039,82381,80021, 75490,74313,81083,310776,74083,82500,75883,83562,83799,82045, 84023,84025,83195,82251,83085,83353,83198,79301,83060,79382, 83413,79879,81987,84149,80280,83743,82198,80626,83439,310856, 310934,311012,76283,83719,79824,81915,82455,84938,77218,82597, 82942,80491,76461,77004,83131,311092,74267,84768,76476,84154, 84268,83197,85126,85293,83431,84143,84798,83814,83557,81988, 83686,81447,83786,81542,83414,85093,82173,84831,85177,82561, 85392,311172,311252,85447,84021,81055,76642,85122,83730,74520, 85325,311334,311392,77837,76457,82279,85503,85529,84672,82467, 75012,82283,311455,84362,84252,311512,311570,311628,82845,311685, 82702,83145,82703,82759,82757,82776,311742,311800,311858,83174, 311915,83231,83650,82811,83248,82842,83812,77288,82588,85574, 311972,312029,83855,83389,312086,312143,84193,312200,312257,312314, 312379,312436,312501,312563,81559,84423,312612,312672,84607,83120, 84520,74688,312721,312770,74730,74780,84831,83673,85107,85149, 85460,85250,312819,312868,74838,74851,85097,83728,85479,85198, 85248,85249,85500,85490,312917,312966,74910,74966,85163,84034, 85501,85308,313017,85583,85607,85658,85384,85538,85584,85613, 313066,313115,75054,75185,85263,84260,85630,85583,313164,85667, 85687,85726,313213,313262,84471,84578,313311,85266,84266,84968, 75312,85632,84919,313360,313409,78304,85735,85744,85768,313473, 313530,84256,83590,84374,313587,313644,84370,83704,84454,313701, 313758,84623,84506,84456,313815,313872,84671,84516,84529,313929, 313986,85162,84608,314043,314100,85264,314157,314233,314290,314347, 314404,85291,85804,84609,314461,314518,85302,84792,314575,314632, 85311,314689,314765,314822,314879,314936,85317,84793,84697,314993, 315050,85318,84964,84876,315107,315164,85324,85084,84900,315221, 315278,85351,85153,315335,315392,85368,315449,315506,315563,315642, 315699,85821,315756,315813,315870,75414, 0,85371,85155,84977, 75431, 0,85395,85358,85125,315949,316006,85396,85406,85126, 75474, 0,85397,85446,75620, 0,85370,75675, 0,85420, 316063,316120,85467,85512,85847,85219,75721, 0,85499,85524, 85244,75745, 0,85522,85539,75765, 0,85418,75866, 0, 85545,85889,316177,316234,85602,85541,85327,316291,316348,316405, 316462,316519,85611,85900,85604,85485,316596,316653,85660,85669, 316710,316767,85682,316824,316881,316938,317017,317074,85922,317131, 317188,317245,317324,81985,82142,85691,85690,317366,317415,75987, 317475,76059,76120,85582,85504,317524,76181,317573,76327,76363, 85634,85549,317622,76419,317671,76571,76591,85662,85732,317720, 317769,76808,317818,76821,76814,85740,85734,317867,317918,79598, 85964,317967,76891,318016,76921,77016,85742,85771,318065,318114, 79893,85973,85825,85847,85973,85849,318163,318212,77045,77077, 85823,85792,85995,85877,318261,86038,86047,86056,318310,78676, 86079,86118,86129,318374,318451,318508,85738,85751,85827,318565, 318622,85760,85758,85844,318679,318736,85851,85814,85893,318793, 318850,85861,85917,318907,318964,85895,319021,319078,319135,319194, 319251,85916,319308,319365,85929,319422,319479,319536,77088, 0, 85969,85933,85898,84805,86076,85962,86139,86153,83463,85971, 78335,83121,86157,86197,86206,86219,86272,86281,86295,319585, 86350,86317,86391,83581,78350,84190,319642,319699,319756,86120, 86196,84036,78923,78385,77250,85810,77876,81155,86001,86195, 86431,86439,86453,86508,86519,83758,78406,84510,86536,80845, 319813,319870,85971,85980,86008,319927,319985,320042,86318,85895, 86051,86119,86164,86154,86599,86609,83256,83598,320099,78520, 86044,77159,85978,86426,86678,86634,87866,88056,88113,86941, 87088,88170,85897,320156,320213,85984,85985,86013,77292, 0, 85994,86062,86085,78461,86285,82405,86128,86302,88227,78715, 320270,320327,86337,86429,86380,320384,86205,79266,78633,86244, 86844,83846,88418,87909,88839,86383,320438,86523,82267,86144, 86269,89146,79091,86428,85628,86603,320495,86451,86476,86288, 77347,80504,86107,86240,86273,77603,81156,320553,320611,86078, 86141,86315,320654,77338,81728,320703,77392,81006,77438,320752, 77466,77514,84383,86521,86607,320801,77523,77569,320850,86534, 86631,86608,320899,77591,77633,320950,86702,86886,86926,86539, 86822,86966,320999,77682,77677,321048,87024,87033,87073,321097, 86541,86967,86970,321146,77699,77694,321195,87128,87171,87180, 321244,86606,87211,87213,321293,77820,77815,321342,87271,87280, 87320,321391,321440,77922,321489,77937,77930,321538,321587,80819, 87329,87208,86914,85369,88284,78008,77971,86480,88341,87061, 85471,88475,78536,79698,321638,78907,86361,82963,321687,80823, 85256,81204,86369,86827,78104,86424,87350,87319,87367,87368, 87448,89579,87449,87497,321747,88066,321816,321884,321952,78007, 87466,87496,87595,88413,87644,88545,82550,87547,88602,88660, 87741,87693,87742,87809,79908,86440,88044,87838,86473,86874, 79248,80561,78499,83457,79507,85894,86388,87170,86551,86385, 86570,86084,86597,86322,322020,322098,322176,322256,322334,322412, 322490,322570,87378,87523,87569,87666,87764,88536,88761,88375, 88952,88848,88897,89010,322648,322726,322804,87126,322884,322962, 323040,88382,88771,86966,84867,323120,88178,82817,85982,86688, 87213,86940,87403,86214,87558,87087,84618,83313,84930,77982, 85170,86095,86090,78191,82116,86763,86646,79998,81303,86172, 323200,323278,323356,88923,89021,87727,87060,323436,88483,82958, 86043,87208,87877,87405,87453,87384,88128,87851,85447,86186, 86256,78042,86450,86595,86106,79932,84264,86764,87612,81372, 82600,86632,323516,323597,323675,323753,323820,88318,89073,89101, 323899,323979,89202,89155,89520,87373,87559,87366,83051,88181, 88600,88769,87416,87561,87864,83218,86823,87567,87876,84429, 84640,87656,83995,88208,89321,324048,89508,89650,88737,324111, 324189,324267,79069,80716,81370,86250,324347,87656,87309,324427, 89380,88538,81080,79567,80574,88361,78191,88574,81757,87729, 81077,83604,324505,324583,324664,324742,324820,324898,88657,87874, 86258,86414,87768,87424,88356,87984,324978,87822,88540,88432, 89077,88600,88041,87980,88342,78754,80912,78176,78315,81349, 87465,87710,87113,78392,78438,82427,78709,78843,78944,84933, 79016,79210,79302,82683,87665,325058,325136,325214,325292,89211, 88766,88128,88403,88574,88660,88823,88824,325372,88934,88995, 89127,89643,89071,88648,88433,89012,79646,82637,79391,79401, 82775,88730,88980,87374,79426,79442,86834,79543,79756,79804, 85389,79749,79894,79999,85545,88094,325452,325532,82256,87568, 86599,82489,88888,88048,80168,89252,325614,82069,84800,87583, 89477,88294,89749,89771,88567,80937,86807,83793,85497,82227, 86916,90009,325676,325733,86276,86537,86950,325790,325847,86609, 86698,325904,325961,86820,326018,326075,326132,326211,326268,326325, 326382,326439,326518,84570,86826,88810,87117,326560,326609,80295, 326669,80296,80385,87703,86965,326718,80471,326767,80491,80497, 88076,86994,326816,80637,326865,80658,80652,88132,86995,326914, 326963,80753,327012,80770,80878,88190,87141,327061,327112,81985, 89294,327161,80923,327210,80943,81131,88661,87142,327259,327308, 84799,89351,87840,88031,89254,89580,327357,327406,81225,81258, 88754,87200,89581,88272,327455,89499,89701,89802,327504,81676, 90212,90656,90771,327568,327625,86968,86818,87244,327682,327739, 87214,86853,87273,81268, 0,87836,87394,87274,81403, 0, 88408,87455,87322,327796,327853,88493,87540,87420,81423, 0, 88569,87602,81476, 0,88580,81530, 0,88629,327910,327967, 88636,87892,89851,87518,81605, 0,88664,88022,87665,81627, 0,88775,88138,81656, 0,88667,81842, 0,89107,328024, 328081,89121,88196,87686,328138,328195,89164,88251,87687,328252, 328309,89200,88324,87688,328366,328423,89218,88441,328480,328537, 89221,328594,328651,328708,328767,328824,89900,89243,328881,328938, 89294,328995,329052,329109,82189, 0,89295,88458,87736,89587, 91140,90688,89594,90745,329154,89950,91162,329211,329268,89296, 329325,329382,89314,329439,329496,329553,88519,91099,87512,87785, 329619,329676,89354,88669,87810,329733,329790,89355,88744,329847, 329904,89582,329961,330018,330075,330134,330191,90058,89583,330248, 330305,89606,330362,330419,330476,330535,330577,82210,330626,330686, 82230,82382,330735,330784,82429,82466,88946,87800,89508,89948, 89673,330833,330882,82476,82506,90106,89674,89722,90154,89723, 330931,330980,82592,82626,90155,89724,331031,89811,89999,90256, 89929,90304,89930,331080,331129,82651,82682,90352,89931,331178, 90265,90403,90412,331227,90087,90353,90088,331276,331325,82737, 82775,90451,90089,331374,90501,90510,90550,331423,331472,82785, 331521,82827,82938,89557,88102,331570,331619,85091,90559,91233, 90910,331683,331761,331818,89612,88784,88497,331875,331932,89718, 88879,88558,331989,332046,89732,88977,88638,332103,332160,89844, 88993,88785,332217,332274,89845,89055,332331,332388,89846,332445, 332521,332578,332635,332692,89847,89169,332749,332806,89893,89170, 332863,332920,89937,332977,333053,333110,86993,85370,83398,90126, 88589,90128,89292,91290,91347,91404,90960,333157,85676,333214, 333271,89939,90172,90255,90007,85660,84248,86381,89194,83120, 89969,85756,84249,88944,90185,91481,91538,91057,91595,91652, 91009,333318,91709,89645,91766,85754,83239,89921,333375,333432, 333489,90325,91137,90008,89327,91186,91884,83144,89166,85096, 90171,83127,85700,91172,88868,91823,92016,90186,91248,92073, 92130,92186,90012,333546,333603,90002,89184,89033,333660,333717, 90011,333774,91191,83696,333851,84175,87366,87830,91357,90322, 92209,89640,88405,90617,92327,91414,88409,92394,90086,88735, 90253,89196,93447,83617,88928,90369,90628,333909,90629,91058, 85891,86524,89497,84191,90402,89643,86917,84172,86653,333967, 334025,90095,89228,89035,87912,90338,88215,87063,88160,90351, 88256,334068,83260,83378,334117,83447,83576,334168,90713,90895, 90944,334217,83643,83639,334268,88060,91000,334317,83703,83710, 334366,88101,91460,334415,83732,83753,334464,88119,91490,334513, 83820,83815,334562,88329,91715,90444,90447,91885,334611,83836, 83938,334660,91910,91936,91958,334709,92456,92519,90586,334763, 89574,85575,89970,92575,90883,87758,84307,87204,86209,90431, 90324,90571,85138,87499,90580,90549,91589,92001,92316,92395, 92317,92581,90707,91284,334816,92610,92205,92666,92895,92280, 92413,90592,90937,92723,92902,92724,92837,92781,92942,89741, 90938,91335,90433,91275,90590,89047,89770,87498,89772,89217, 90471,90254,91090,90915,90965,90469,91192,90579,86675,334884, 334962,335042,335121,335199,335279,92560,89842,85230, 0,87240, 90996,91580,91471,90319,91694,91084,91808,91470,335357,93009, 335437,335515,335593,335671,335749,335827,335905,87660,89699,88771, 92210,88356,92664,90249,90993,88698,335985,87754,92173,88160, 88507,91086,90139,87117,84036,87843,84882,88965,88332,336065, 336143,336221,336299,336377,336455,336533,88757,90481,90260,92214, 88907,92721,91834,92053,89063,336613,88750,92323,88449,89024, 91220,90582,88662,84059,89609,85520,90399,88942,336693,336773, 336851,336929,86389,86538,337007,87095,337087,90166,92033,86317, 337167,337234,337301,337367,337433,337499,337565,337631,337697,337763, 337829,337895,337961,338029,338095,338161,86433,90207,91391,338238, 338316,338394,338472,338550,91115,338630,86533,87256,338710,91452, 91549,91777,91834,91298,91900,91546,91663,92387,92748,338790, 338868,338946,91509,91480,91986,90655,91708,92835,91832,339027, 92325,89777,89844,89823,92566,90402,92141,89919,92607,93069, 90986,89593,85766,88098,89208,90300,90055,92105,90699,91026, 86593,88289,91126,92236,87558,84331,90714,339107,339185,339263, 91794,91834,92043,92461,92518,93071,92546,339344,92369,89848, 90005,91836,92758,92072,92398,92153,93194,93070,91637,90542, 85957,88196,91025,91160,91907,92184,91161,91119,88005,88465, 91276,92652,88406,85880,91332,339424,339504,91571,92772,92422, 91451,91586,84210,92873,339586,90470,88583,90932,88126,93183, 92497,93384,85656,90010,92354,91570,93034,88887,89097,89639, 89352,90224,93486,339644,339701,92034,89719,89805,93036,339758, 339815,92284,90130,90129,339872,339929,92389,90328,339986,340043, 92393,340100,340157,340214,340273,340330,92571,340387,340444,92584, 340501,340558,340615,340674,340716,84472,340765,340825,84532,84569, 340874,340923,84638,84798,91034,90201,92063,92643,92700,340972, 341021,84834,84842,92757,92494,92582,93045,92856,341070,341119, 84930,85077,93102,92695,341170,93159,93217,93274,93121,93282, 93225,341219,341268,85140,85186,93374,93359,341317,93304,93537, 93548,341366,93435,93451,93452,341415,341464,85196,85259,93557, 93595,341513,93625,93738,93766,341562,341611,85314,341660,85356, 85390,91616,90445,341709,341758,88885,93879,93903,92917,341822, 341879,92611,90575,90737,85478, 0,92641,90624,91121,90686, 91842,90743,91418,91991,93960,88718,341936,341993,92644,91202, 91282,342050,342107,92725,91258,91312,342164,342221,92751,91428, 91424,342278,342335,92803,91635,91674,342392,342449,92807,91733, 342506,342563,92814,342620,342696,342753,342810,342867,92871,94037, 91749,342924,342981,92872,91790,343038,343095,92915,343152,343228, 343285,343342,343400,343457,92936,91792,343514,343571,343648,92937, 91806,343705,343762,92943,343819,343876,343933,343998,344055,344112, 91788,91283,344177,344234,92983,91849,92035,344291,344348,92984, 91892,92038,344405,344462,93029,91999,344519,344576,93040,344633, 344709,344766,344823,344880,93043,94192,92040,344937,344994,93105, 92097,345051,345108,93115,345165,345241,345298,345355,89368,93224, 91510,345397,345446,85480,345506,85640,85735,345555,85801,345604, 85901,86047,93226,90187,345653,86171,345702,86230,86224,345751, 345800,86312,345849,86405,86527,345898,345949,89906,93937,345998, 86554,346047,86592,86692,346096,346145,90240,94016,346194,86805, 346243,86862,86857,346292,346341,90386,94095,93613,94039,94005, 346390,346439,86881,86916,94100,93614,346488,94122,94150,94172, 346537,91703,94568,94770,95759,346601,346659,346716,93116,92113, 92152,346773,346830,93220,92154,92232,86962, 0,93276,92233, 92258,87124, 0,93277,92249,92291,346887,346944,93278,92423, 92328,87294, 0,93342,92557,87342, 0,92514,87343, 0, 93345,347001,347058,93375,92620,92331,87345, 0,93399,92690, 92451,87346, 0,93402,92790,87419, 0,92588,87440, 0, 93419,90274,89551,90296,93475,93558,92143,94392,91667,91014, 92475,94506,94449,93107,95239,91741,91193,347115,93154,93555, 94193,88335,91246,90936,87452,530678,93482,91757,90596,91073, 93580,93358,94189,93736,95542,95697,95818,93895,347162,92179, 347219,347276,93421,94010,94149,94363,93449,95889,95915,93970, 89822,90024,91322,92567,87496,89004,94441,95007,95991,95305, 94011,96150,91722,91362,94071,94521,92086,347333,347390,93484, 92805,92477,347447,347505,347562,94015,92048,94525,92495,88220, 91947,96211,96254,94618,347615,94385,94006,95009,96284,95402, 94380,87584,93050,93053,96623,91912,92257,95231,95589,91035, 94758,95062,91378,92640,92641,92329,94087,94437,90977,91528, 91247,347672,347730,93485,92848,92678,347773,92787,92010,93161, 92982,92328,93496,93275,347824,91947,94254,93003,93556,93489, 347873,93233,93559,93739,347922,93377,93584,93740,347971,93421, 94058,94228,348020,348069,87636,87677,348118,93188,94624,93373, 96342,95858,94764,94244,90499,90888,93375,92146,88142,92144, 92325,93476,91571,94049,94740,95290,94500,96024,95962,95435, 95369,95465,95552,94526,95040,95484,348182,95590,96581,96516, 96348,96611,94035,94522,95963,96627,96630,87781,96736,95688, 93855,95466,94382,94160,93445,92510,92730,87843,87881,94442, 95212,94587,94612,95559,95623,94466,95780,92784,348261,348339, 348419,348497,94376,348578,95102,92699,93262,95230,89328,95004, 94992,94459,88221,94433,95055,348658,348738,348816,348894,95348, 96047,348972,95940,349050,349128,349206,95650,349284,349362,349440, 349518,96758,96446,96102,96457,96802,349587,96812,96834,96715, 349652,349732,349810,349888,96883,96893,349966,96917,350044,350122, 350200,96405,350278,350356,350434,350512,96964,96973,96989,97018, 97048,350581,97098,97124,97107,350646,350726,350805,350883,87869, 350961,351039,93039,94724,91134,89309,89473,90933,90496,88940, 93512,91851,95208,93975,94109,89772,92088,95035,91623,91638, 351119,93907,93564,351200,95247,94559,97134,94747,95502,92808, 0,93076,95044,95341,95394,95250,95390,95329,95396,95597, 94152,351278,351356,95731,93541,90643,92258,92725,91681,94110, 92549,95334,94737,94206,91318,92839,95280,92200,351434,351512, 94951,351592,95796,95246,351673,97202,90395,93316,91580,95594, 93996,351753,351831,351909,95342,94058,95446,93856,94938,95035, 95243,95166,94742,93135,95380,95439,96514,94589,95682,95393, 351989,95925,93127,92454,90908,95553,93256,92602,94751,89144, 88471,88071,88456,94486,90725,93254,352069,352147,352225,95479, 95477,95552,95442,95585,96145,95754,95701,95285,94939,96037, 95784,96595,95829,95830,95942,352305,96497,94743,94461,92934, 95555,94169,94502,95682,91477,91474,88354,91099,94744,91745, 94500,352385,352465,96249,92843,94217,93051,95012,88586,96634, 96552,94349,94582,97254,96182,97263,96434,92365,95714,95777, 96279,94383,94096,94183,95010,352547,352604,94352,95205,92988, 352661,352718,95036,95523,93430,352775,352832,95478,96015,93767, 352889,352946,95568,96016,353003,353060,95793,353117,353193,353250, 353307,353364,95958,96068,353421,353478,96118,96069,353535,353592, 96119,353649,353725,353782,353839,94110,96212,94226,353881,353930, 88821,353990,88894,89115,354039,89198,354088,89202,89236,96213, 94971,354137,89561,354186,89683,89816,354235,354284,89826,354333, 89971,89964,354382,354433,93414,97285,354482,90057,354531,90152, 90272,354580,354629,95209,97333,354678,90425,354727,90427,90470, 354776,354825,95700,97342,96123,96285,96124,354874,354923,90587, 90629,96379,96199,354972,97362,97402,97422,355021,95808,97466, 97524,99328,355085,355142,96185,96211,94470,355199,355256,96215, 96266,94551,355313,355370,96286,96311,95231,90692, 0,96324, 96325,95411,90707, 0,96348,96338,95488,355427,355484,96399, 96370,95643,90767, 0,96471,96387,90769, 0,95998,90890, 0,96483,355541,355598,96485,96470,97435,95895,91015, 0, 96486,96518,96045,91017, 0,96540,96527,91077, 0,96307, 91137, 0,96550,355655,355712,355769,355826,96551,96585,96046, 355883,355940,355997,356054,356111,96623,96627,96188,356188,356245, 96633,96629,356302,356359,96647,356416,356473,356530,356609,356666, 97591,356723,356780,356837,91194,91371, 0,96648,96649,96247, 91384, 0,96654,96658,96248,356916,356973,96663,96664,96287, 91442, 0,96672,96666,91458, 0,96309,91519, 0,96679, 357030,357087,96684,96683,97640,96291,91589, 0,96731,96708, 96382,91592, 0,96732,96751,91633, 0,96469,91673, 0, 96753,357144,357186,91689,96110,91778,357246,91802,91796,96765, 96838,96822,357295,91844,91946,357344,96836,96893,96855,357393, 91955,91987,357444,97490,97548,97689,96993,97020,97050,357493, 92012,92044,357542,97698,97738,97747,357591,97021,97128,97069, 357640,92066,92102,357689,97787,97796,97836,357738,97022,97147, 97162,357787,92164,92366,357836,97845,97885,97894,357885,357934, 92513,357983,92516,92533,358032,358081,95743,97934,97499,358145, 358202,96755,96768,96467,92594, 0,96772,96835,96525,94334, 96837,95913,97137,96886,93601,94523,94440,94562,98868,98925, 97211,358249,97351,95914,97256,98982,97998,95214,358306,97541, 97161,96141,95274,96157,96921,96592,94563,95586,96996,98047, 97373,99039,97100,93158,97285,99096,98196,96760,99153,96965, 93737,358363,95358,97540,97883,97131,97023,97955,95011,94737, 95778,96884,92678,95713,97258,99210,99267,98245,99390,99447, 98070,358410,98392,98099,99504,97156,94054,97145,358467,358524, 358581,97289,98689,98111,95754,96523,96378,101666,100406,98344, 98296,97045,97201,92726,95661,95928,95033,100528,96035,98441, 99553,98454,96363,98456,94583,95593,96412,96808,97338,95355, 96477,97146,96542,92941,95427,358638,358696,96806,96850,96915, 358739,92847,93894,358790,93599,95867,97634,358839,97950,99561, 98020,99618,99675,98121,96882,96575,97068,97044,97639,97410, 97411,97098,98162,98163,98278,98425,98553,98554,99329,99834, 99316,98572,358899,98670,98843,358968,98919,99033,98555,99745, 99803,99862,96772,97251,99918,99919,99975,102307,98860,98160, 97368,98127,97007,95710,94423,92871,95995,93078,96171,97366, 97293,96260,98153,97454,97154,98652,97209,97252,98394,95792, 359036,359116,359194,359272,359352,98686,97580,98266,98216,97169, 97559,99350,99686,97012,98528,359432,359512,359590,359668,100053, 100078,98185,100248,98335,359737,98678,100195,98432,95300,98523, 97934,96293,97254,97090,97985,359802,359882,359960,360038,100110, 100305,100167,100672,100705,360107,100753,100764,100340,95461,98535, 97935,96604,97544,97191,98091,360170,360248,360326,360404,360482, 360560,98174,97985,97897,99440,97602,97987,97177,98580,97937, 98036,98041,99554,98039,99668,98181,98230,97938,99860,98331, 98237,360638,360718,360796,98224,360877,100551,98675,95548,97014, 97336,97622,99117,93250,98588,97180,98331,96172,98311,360955, 361033,98427,98369,98516,99696,98090,98183,99740,98330,98533, 98576,99955,98434,99916,98575,98614,98532,100794,99575,98676, 361111,361189,361267,361347,361425,361503,361583,100811,100861,96060, 96701,96926,96001,361663,361743,361821,361899,361977,99723,100354, 100904,100953,97712,100962,101003,99901,97762,101097,100313,99796, 100794,97811,362044,101106,101146,101256,101244,101293,101353,101206, 362112,101607,101618,101715,362177,362257,362335,362413,362491,101719, 100992,101966,102023,97713,102080,101768,99958,98951,101724,101335, 101755,101760,100026,362558,101938,102132,101995,102189,102052,102425, 102280,362626,102541,102374,102166,93100,362691,98564,362771,97562, 97337,99288,93113,102090,95229,102654,95734,100831,99088,97424, 94723,96685,95831,97016,362853,362910,98567,96971,97102,93236, 0,98708,97355,97517,93361, 0,98714,97369,97530,362967, 363024,98826,98067,97617,93362, 0,98829,98068,93365, 0, 97859,93479, 0,98886,363081,363138,98943,98117,97661,93483, 0,99057,98303,97740,93746, 0,99114,98401,93850, 0, 98470,93938, 0,99143,363195,363237,93941,98151,93986,363297, 94074,94094,98858,100012,98915,363346,94190,94349,363395,98972, 100013,99029,363444,94372,94422,363495,102346,102403,102482,99086, 100384,99198,363544,94618,94778,363593,102517,102574,102598,363642, 99143,101390,99200,363691,94873,94959,363740,102631,102710,102745, 363789,99257,102231,99378,363838,94985,95074,363887,102767,102802, 102824,363936,363985,95218,364034,95412,95511,364083,364132,97440, 102861,99457,364196,364253,99179,98510,97839,364310,364367,99228, 98511,98205,95522, 0,99303,98661,98279,99071,101046,99362, 100980,100222,364409,98030,364466,364523,99323,364580,364637,99408, 98696,98596,364694,364751,99522,364808,364865,99633,364922,364979, 365036,98835,98624,365102,365159,99636,98836,98671,365216,365273, 99690,98893,365330,365387,99722,365444,365501,365558,365617,365674, 102883,99747,365731,365788,99770,365845,365902,365959,95614, 0, 99779,98950,98673,99167,99282,99224,99281,100108,366004,99405, 98024,100009,98856,366057,95662,95656,366106,95851,95901,366157, 102940,102975,102997,366206,95956,95973,366257,97552,103032,366306, 95999,96033,366355,97646,103054,366404,96081,96077,366453,97701, 103089,366502,96131,96125,366551,97966,103111,99492,102234,99665, 366600,96190,96211,366649,103146,103168,103203,366698,366762,366819, 99780,99007,98889,98174,96258,96852,99031,103228,103285,101162, 101644,99305,99807,100125,99881,98368,96463,99030,99090,98116, 98216,98272,103422,103486,103335,366866,102304,99477,100249,103548, 103350,98917,366923,102400,101176,98914,102550,99555,103853,99498, 98973,98971,99015,99204, 0,99116,100376,99649,100262,99496, 103605,103662,103719,103395,366970,99976,367027,367084,99824,100522, 101292,101744,99144,96729,103372,104274,102607,104581,104741,102664, 99972,96637,99891,104820,97309,99868,103849,104245,100241,98310, 98567,99493,99258,99978,99751,99607,99610,99612,97280,367141, 367199,99863,99120,99145,98458,100119,98913,97170,98464,97055, 103341,100316,103776,97523,97759,367257,98605,100353,100166,99521, 99142,100346,103390,103450,99804,100832,103895,102308,100930,367336, 103426,367404,101993,101746,103542,103923,103980,104037,100882,99889, 103336,103379,104094,99240,104854,99810,101653,100682,99422,99664, 99027,98364,97707,97805,99666,99230,99726,99605,100773,100165, 99721,100866,97856,367472,367552,367631,100076,367711,104194,103917, 104336,104389,103841,100152,367791,367869,367947,368025,368103,368181, 368259,368337,368415,368493,368573,99380,98309,101186,99375,368653, 368731,368809,368887,368965,369043,369121,369199,369277,369355,369435, 100881,99967,101597,99562,369513,369591,369669,369747,99312,97428, 101006,100484,99442,99842,104080,100748,102184,100480,100313,100460, 99669,100664,369827,99828,100955,99772,103559,100993,100993,369907, 98679,102091,369987,101358,102434,102457,370067,100986,103812,100784, 102140,101135,102443,101231,370145,370223,96742,101771,99546,100080, 100138,103796,98979,100020,100843,99194,98388,97867,100234,370303, 96222,100489,97575,101349,102143,370381,370459,100845,370539,99458, 370619,370699,370779,370859,96268,101287,101149,370939,371019,371097, 371175,371242,104172,104252,104422,104447,104479,105123,104645,371310, 104701,104763,104558,97553,100257,371375,98646,101352,101764,99385, 99287,99979,101965,371455,371535,371613,371691,371758,104876,104672, 104731,105072,104790,105237,105505,371826,105560,105621,105044,100800, 101098,371891,98684,101604,103245,100367,99855,100706,102671,371971, 97935,99072,101324,96327,102933,105181,103008,99722,102703,102858, 102239,100771,100356,100671,99979,372053,372110,101172,100975,100704, 96369, 0,101377,101025,100727,100897,101314,101668,102240,101313, 100925,372167,99663,103218,101323,372220,96522,96618,372269,96673, 96680,372320,104903,104931,105215,372369,96805,96892,372420,100184, 105338,372469,96917,96914,372518,100734,105366,372567,96969,97068, 372616,100909,105479,372665,97081,97150,372714,101032,105536,102107, 103766,102699,372763,97203,97292,372812,105593,105642,105670,372861, 372925,372982,101756,101171,101070,373039,373097,373154,373211,101808, 101657,101100,373268,373325,101938,101675,373382,373439,101940,101739, 373496,373553,101941,373610,373667,373724,373789,373846,373903,101101, 373968,374025,101997,101815,101145,374082,374139,102052,102063,101168, 374196,374253,102090,102115,374310,374367,102229,374424,374500,374557, 374614,374671,102235,105876,102306,374728,374785,102300,102357,374842, 374899,102302,374956,375032,375089,101669,102673,102473,102050,102934, 102701,375133,101129,105692,102236,103247,103201,375193,102237,103249, 103273,375242,102379,103420,103275,375291,102401,103448,103295,375340, 375400,97365,97362,375449,101276,105750,375513,375570,102347,102407, 101170,99893,98827,102474,102898,106442,106507,106597,106655,104502, 103031,102798,103104,99087,102905,97575,103479,98970,100782,101286, 102475,102743,106860,107152,104552,103675,101664,102801,103487,103942, 103512,106716,107315,103541,375623,101639,98212,103540,97741,103713, 100029,103597,106555,103892,107337,101667,100979,103562,107347,106882, 102800,107411,103259,101117,375680,103711,104228,103999,101731,99283, 103672,103770,107453,105191,107488,103423,101381,102860,107530,102515, 102572,104825,104130,103927,101755,103710,103982,103650,103767,103765, 101578,101754,98346,375737,375795,102680,102633,102214,375838,102012, 106031,104061,107020,104309,99708,98442,375902,375960,105925,105935, 105974,100123,102953,104023,376030,97722,102629,103848,103029,103793, 100339,101904,103952,104039,104227,104487,106237,105258,104363,104097, 376090,376158,104477,106493,105080,104830,107157,104268,104269,106268, 107380,106317,101756,100183,105280,103590,102998,99382,102068,103144, 102227,102513,103763,104240,103373,103507,104523,104095,105042,103961, 99752,376226,376306,376384,376462,376542, 0,106339,105984,106294, 106389,376622,376702,376780,376858,376936,377014,104588,377092,98857, 104023,99146,100228,377172,377252,377330,377408,377486,377564,103761, 377642,97865,102060,98076,100360,377720,377798,377876,377956,378034, 378112,106195,104276,102726,103127,104538,105248,104085,103791,378192, 103980, 0,98267,103062,98368,98472,98495,98612,98656,98855, 98906,99208,101242,102020,98921,98966,99208,102891,99280,104039, 104639,105973,104817,104460,103364,104277,100363,104543,378272,105260, 104592,378353,106498,106922,99369,99498,99502,106972,106912,107215, 107306,378431,378509,378587,107213,105305,103415,103590,104562,105252, 104872,106582,378667,104660,378747,99575,103118,99639,99602,99667, 99777,99864,100004,100016,100735,101340,102315,100033,100063,100230, 102948,100259,105839,105105,106384,106640,104871,104640,105108,100637, 378825,378903,104750,378983,106190,100306,379063,379143,379221,104575, 103304,102412,101912,102670,101952,101177,103559,103690,104517,103811, 102810,103243,105252,102161,379301,379381,379459,106431,103596,102811, 102254,103509,102300,103892,103810,104166,105083,103923,102813,103707, 106377,102892,379539,102169,105091,379619,379697,379775,102241,102312, 379853,103076,103599,105711,103427,103382,104122,104701,379933,100461, 100490,103842,102428,102716,104352,105916,103014,380013,380091,380169, 103726,103988,380247,103077,104102,106237,103532,103713,104643,106553, 380327,100511,103975,103929,102642,103666,104703,106229,103171,104191, 104733,106315,100527,106492,102759,105591,106568,103424,103087,104057, 102419,100696,380409,380466,104849,103093,103988,103986,105257,105534, 105099,106561,106005,380510,102699,107498,105477,106675,106255,380570, 105631,106717,106416,380619,105668,106718,106644,380668,105726,106719, 106645,380717,380777,100777,100915,380826,102986,107575,380890,380947, 104924,103802,104132,381004,381061,381118,381175,381232,105046,103879, 104215,381289,381346,105340,104039,104218,381403,381460,105359,104219, 104523,381517,381574,105479,104246,381631,381688,105480,381745,381802, 381859,381938,381995,107585,382052,382109,382166,100924, 0,105556, 104372,104553,100971, 0,105615,104429,105118,382245,382302,105749, 104605,105260,100972, 0,105871,105044,101050, 0,105594,101071, 0,106313,382359,382416,106468,105148,107608,105261,101099, 0, 106524,105543,105622,101217, 0,106528,105732,101239, 0,105947, 101290, 0,106529,382460,105924,106720,106881,382520,104324,104547, 106415,105251,104419,107650,107378,107659,106943,105494,107406,106672, 106820,106944,104131,101287,530678,107185,106022,106583,101363,107154, 107724,107733,107765,107807,107739,106833,107234,107338,106365,106366, 107882,101955,104382,101377,530678,107223,104559,107817,107924,107964, 382574,107423,105279,107486,107969,107979,103751,382631,107336,107345, 105061,106823,108049,107848,108058,108083,107143,106646,106911,108129, 102122,106942,107579,107534,107407,105114,107275,106723,106981,106978, 107276,103202,106850,104171,103100,105276,382688,382746,106829,105997, 105875,382789,101487,103258,108118,106724,104325,382853,382936,382994, 107904,383052,105354,383120,107003,383184,108204,106533,108233,108163, 106581,383226,107248,383290,103799,101577,107412,106704,105847,104789, 106417,107551,107187,107932,107696,108173,107646,383344,107648,383413, 383481,383549,101609,108209,108256,107609,107494,107501,107808,107973, 108086,104732,107762,107487,106847,105594,105214,104752,107011,107158, 106588,107676,107160,107400,106432,107159,107270,107458,107173,383617, 383697,383775,383855,383935,107969,107660,107273,384015,384093,384171, 384249,107373,107456,384330,384410,107572,107631,384488,384566,384644, 107615,107689,104116,101599,107725,104236,384723,384801,384879,384959, 385039,385118,107321,106331,107966,107503,107552,107956,107645,108103, 106282,104823,107328,107787,105823,107706,105845,107760,107791,106962, 107406,107451,106283,107574,107871,107873,107798,107943,106332,108001, 108224,108034,106358,107759,108132,108035,107652,107973,108250,108254, 385197,385277,385355,385433,385513, 0,108358,108367,108264,108074, 108430,108381,108457,385591,385669,108038,107485,108229,108249,108251, 108377,108272,385750,108157,107094,385830,107782,105619,108264,104477, 107962,103856,108359,108066,105442,101638,104654,105656,108361,108122, 108183,104635,107237,101719,107809,105519,107993,108354,108399,108362, 108400,108429,108179,108431,108470,385908,385986,108279,102901,386066, 386144,386222,386300,105620,104799,107555,104834,103948,104441,108409, 108390,104075,105849,105360,107886,105998,386380,108025,108277,107733, 108473,108451,108100,108462,108442,108477,108482,108544,107377,108460, 108138,108343,107175,108491,108541,108495,386460,386538,386616,386694, 105948,107161,107899,106225,104384,104443,108434,108391,105687,106462, 105748,108169,106699,386774,108271,108545,108497,108570,108540,108461, 108563,108550,108565,108688,108727,108551,108776,108687,108689,107957, 108825,108743,108569,386854,386934,107699,387014,387094,387172,387250, 101707,102420,106436,105032,106969,108095,108750,105266,105863,106239, 108740,108737,103654,108718,102533,108039,387330,387410,387488,387566, 101708,105498,107448,105697,108211,108166,107392,108341,101777,101778, 108785,108775,102123,106538,102055,103121,103266,107224,107930,102140, 108849,106570,108860,108528,108511,107814,106630,102362,387648,387705, 108767,106215,107658,387749,107772,108831,108427,387809,387873,387930, 108868,387987,388044,108869,106924,108465,388101,388158,108870,107874, 108615,388215,388272,108871,108529,108735,388329,388386,108873,108725, 388443,388500,108906,388557,388614,388671,388730,388787,108931,108924, 388844,388901,108925,388958,389015,389072,102519, 0,108926,108726, 108783,389118,102576,102624,102750,102790,108981,108262,108991,108391, 102846,109051,109766,108996,109823,109143,108980,109010,109029,109058, 108919,109059,108862,109082,109193,108880,109880,109290,109937,109077, 109078,109176,109157,109587,109205,109292,110340,109486,109093,109130, 109107,109131,109002,109994,110051,109389,109341,108953,108997,109206, 109207,108994,109094,110519,108105,103343,109146,111055,109138,109254, 109401,109549,109548,109323,109754,109048,109519,109450,106819,109141, 109180,389182,389240,109214,109005,108832,109277,109425,109741,109285, 110108,109556,108801,107584,389298,102822,389381,106650,389439,109476, 109520,110142,389497,107995,109317,389566,108336,389615,109365,109414, 389679,109279,108823,389721,108726,110159,109364,389770,104122,104898, 108254,109195,109568,104831,109242,109453,109817,110197,110207,110386, 109550,109741,109833,389830,110178,110236,110293,109516,106474,110414, 110415,110300,109376,109870,110506,109110,109912,109969,109473,106626, 107489,109243,108021,109342,109811,109345,110061,109293,109390,109142, 389898,389978,390056,390136,108720,390214,390292,390370,390448,390528, 390608,105706,109568,390686,109413,110475,390766,390846,109329,109569, 390924,391002,391080,391160,391240,391318,109575,109702,109581,109529, 109572,109944,109887,109761,109703,109330,107641,109039,109942,110123, 109483,105015,108212,110175,109379,109869,109979,110176,110227,110359, 110233,110530,110534,110394,110047,110422,110114,110186,110173,110229, 391398,103225,391478,391558,102840,110409,110588,110295,110532,109377, 391636,391714,109988,110351,109888,110274,110453,110575,110587,110508, 109762,109945,391794,391874,103601,109866,108118,107890,109222,103125, 102995,110035,110533,109577,105062,109526,110413,103009,110260,105121, 110633,110355,110642,110595,110658,110590,110565,110650,391952,392030, 110690,110689,392110,392188,392266,110469,110701,110651,110744,109922, 110308,110704,110705,110706,110756,110858,110733,110772,110754,110761, 110443,110820,110811,110816,392346,104019,110010,108133,109269,109281, 110933,104386,110051,110766,104152,105302,110461,110483,103411,110792, 105177,110873,110973,392426,392504,392582,110868,110874,110821,110937, 110847,110646,110930,110873,110936,110964,111048,110818,111076,110984, 110879,110641,111124,111097,111065,392662,104229,110618,108426,110159, 110244,111180,106958,110385,110918,105443,106367,110678,110758,103530, 110906,106174,111121,111050,392742,392822,110934,392902,392980,393058, 393136,111066,111114,393214,393292,110979,110981,393373,393453,106896, 111176,111012,104575,111171,110850,393531,393609,393687,111154,111171, 393765,393843,111112,111172,103662,103717,107077,111224,108524,103767, 111227,108566,106669,108825,109756,103844,111275,110149,109854,110523, 110743,105667,103940,393926,393983,394040,110856,110445,108884,394097, 394154,111027,111080,108907,394211,394268,111102,111097,108928,394325, 394382,111160,111156,108957,394439,394496,111184,111241,394553,394610, 111263,394667,394743,394800,394857,394914,111267,111339,111268,394971, 395028,111269,111306,395085,395142,111274,395199,395275,395332,109757, 103997,530678,109871,111397,110100,111428,111332,111011,107190,109758, 109984,111389,110212,111276,109490,111511,111561,111587,111644,110025, 111372,111436,111429,111464,110417,108426,109814,110215,107271,111583, 111804,111895,111921,111980,111953,110008,110298,111485,109408,109928, 111834,111654,111328,110672,108924,115468,108702,111315,111940,111985, 111663,110270,111331,111471,110572,110272,111239,109121,110011,395389, 395447,111358,111321,109845,395490,108950,104341,108050,395554,395637, 112084,395695, 0,109525,111567,395753,395811,104562,104692,395854, 110850,395903,111225,111086,395952,111325,112022,111999,111439,396016, 111695,396058,111394,396107,111696,111240,111628,112023,112072,107681, 108889,110071,111558,109144,111330,111863,111470,111835,111984,112129, 112078,112152,111562,113190,112546,112261,111071,112603,113267,109464, 112130,111692,111824,106284,110621,107770,111426,111608,111912,110656, 111695,110795,110799,111928,111472,112013,108322,396167,396245,396325, 396405,396483,396561,112132,396641,396721,106960,396799,396877,112232, 396957,397037,107317,397115,397193,397271,397349,397427,112222,112122, 397507,397587,111004,109188,112284,112178,111550,111652,111991,112287, 112191,112239,112242,112296, 0,112096,112332,109189,112319,112396, 112022,112336,112381,112147,112385,112353,112173,112420,112480,112584, 112035,112325,397667,110780,397747,109863,112438,112481,112432,112522, 397825,397903,397981,112644,112582,398061,398141,112206,109953,112693, 112586,112651,112467,112694,112793,112245,112653,112695,112654, 0, 112445,112729,112743,112320,112753,113188,112418,112791,112799,112680, 113125,112616,112754,112934,113075,113171,112762,398219,398297,398375, 398455,398533,398611,105515,112519,108746,110932,111335,112081,107139, 111395,111464,105971,109524,111776,398691,104703,112746,107513,112924, 111847,111869,112937,113085,110968,112540,112800,112645,111021,110512, 109234,111358,109331,111502,113194,110287,112940,113076,111102,113212, 398771,398849,398927,106799,113162,111122,111496,111651,112487,110108, 111892,112189,108414,109777,111798,399007,104716,112908,108506,113251, 112785,112915,113214,113265,112444,113083,113267,113239,113058,111159, 111552,113135,112742,113286,113274,112947,113285,113184,113057,113289, 399087,399167,113106,399245,399323,399401,110902,113326,113315,106594, 113334,399481,399561,110912,113347,113341,112557,112037,113316,399639, 104867,111377,113383,113347,108983,113391,399719,399799,111423,113373, 113398,112733,112322,113440,113401,107688,111665,105009,113464,105157, 113370,111448,110273,112348,399881,399938,399995,112172,111962,110187, 400052,400109,112223,112106,110423,105218, 0,112256,112155,111305, 105232, 0,112404,112205,111690,400166,400223,112463,112254,111693, 105501, 0,112577,112403,105601, 0,112498,105688, 0,113094, 400280,400337,113158,112499,113563,111912,105746, 0,113424,112556, 111988,105996, 0,113443,112616,106119, 0,112609,106232, 0, 113465,112456,113136,113226,113501,113621,113680,113227,113556,113481, 113596,109926,107839,113521,400391,113555,113525,110475,113755,113613, 113650,113654,112718,114044,113765,109318,112566,108818,110730,113690, 111808,113812,113869,113926,110357,113597,113861,113640,113957,113787, 110491,110156,113642,110064,114759,112516,112802,113804,114002,113788, 114123,114001,113998,113325,113270,113379,113466,113585,113666,111358, 112633,400428,400486,113468,112676,112181,400529,106576,111555,111618, 110597,400593,400676,400734,113732,114111,114196,400777,113219,113923, 400826,113343,400875,113925,113797,113863,400924,113429,400973,113968, 113966,114055,114213,114099,401037,401079,113457,113982,401128,113506, 114277,114219,114214,114155,114278,114221,401192,111578,114118,114154, 114244,114227,114333,114003,113584,114302,113611,113774,114354,114356, 114411,114413,114449,114223,114563,114677,114326,114299,114430,114468, 114526,114080,114582,114639,106706,114611,114601,113152,401254,107523, 106853,110708,111068,113683,113833,113688,113803,113886,113685,113406, 113609,109524,401314,401393,401473,401553,401631,401709,401787,401867, 401947,402025,402103,402181,402261,402341,402419,402497,402575,402653, 402720,114768,114823,114793,402799,402879,114929,114850,115100,113934, 114102,113849,113822,114435,114295,114827,113647,114100,114116,113455, 113998,114347,113848,113901,114348,109576,114462,115048,402948,115216, 115295,114964,114343,114244,403013,403093,114170,113457,111567,403171, 403249,403316,115078,115158,115249,403395,403475,115347,115325,115555, 114044,114393,114350,114207,114661,114941,115224,114492,114507,114465, 114490,114464,114263,114579,114085,114048,114578,111914,114684,115540, 403544,115564,115677,115439,403607,403685,403763,403843,403921,403999, 404077,115356,114693,114326,114440,114520,114635,114697,404157,114607, 114827,114664,115569,114830,114761,114639,114817,111093,109733,107194, 107236,110096,114425,114872,114942,107284,107373,107745,107828,107881, 114122,107894,107941,108165,111659,114944,404237,404315,404393,404471, 115681,115221,114854,114968,114971,115433,114990,404551,114989,115143, 115227,115740,115237,115407,115059,115085,111350,110293,108277,108486, 110876,115128,115318,115228,108566,108659,108977,109043,109385,114389, 109371,109407,109582,113797,114945,404631,404711,114758,404789,404867, 114499,115329,114577,115358,114894,404947,405027,114528,113487,115092, 112620,405105,405183,114554,115408,115461,115359,115486,405263,405343, 114668,113701,115108,113880,113909,109869,112408,109705,115607,115036, 114042,115843,111620,405425,405482,113970,112968,112610,109821, 0, 114281,113105,112837,111807,115176,113480,114714,114962,115900,111811, 114676,115205,114921,115247,115647,115611,115633,113612,405536,405570, 115722,115628,112808,115957,116015,114703,115761,115760,115835,117187, 112029,113192,110574,113098,116080,116023,116137,116194,113899,115818, 115974,116000,111883,114153,114826,110473,119086,113345,115207,116269, 116326,116243,115472,115492,115723,115367,114359,115381,112148,113404, 405641,405699,114495,113277,114004,113859,115517,114328,114418,114444, 114155,405757,116541,405840, 0,112337,116200,114218,114275,115518, 114903,405908,114812,405957,114982,114981,406006,115029,115780,116301, 115885,115609,406055,115113,115657,406104,115400,116302,116415,115942, 115725,116416,116473,406168,115816,115872,116300,115875,406210,115482, 406259,116236,115739,115998,116588,116589,116357,115931,406323,113694, 116129,406393,116383,116265,116414,115648,116379,406464,115894,115744, 116665,406498,116646,116495,116667,115796,116637,116760,116019,116090, 116722,116779,115707,116836,109836,115094,116751,116242,114620,111214, 112369,112420,111911,113537,115148,115946,115833,115600,115948,116437, 114616,406566,406644,406724,406804,406882,406960,407040,407120,407198, 407276,407356,407436,407514,407592,407670,407748,115209,115355,116075, 113585,407828,115471,115151,114070,407908,407975,408042,408108,408174, 408240,408306,408372,408438,408504,408570,408636,408704,408770,408836, 115429,115428,116124,116549,115657,408915,408995,409062,116131,112484, 409139,409217,115495,115539,116268,113722,409297,116020,116523,115620, 409377,409444,409511,409577,409643,409709,409775,409841,409907,409973, 410039,410105,410171,410239,410305,410371,115477,115520,116257,410448, 410528,410606,410684,115726,116248,116606,116356,116679,116834,116720, 410765,112078,115548,115992,116871,114871,114637,115721,116893,116777, 116313,115792,113756,113683,114621,115256,116029,116308,115541,109982, 116027,116194,116930,113741,111284,115674,410845,410923,411001,115990, 116362,116966,116787,116960,117007,116987,411082,112687,115867,116192, 117017,116536,116419,116616,117064,117119,116474,115972,113914,115239, 116361,116365,116414,116540,116422,113376,116085,116536,117044,114270, 113815,116425,411162,411242,116828,411320,411398,117198,411476,411554, 411632,411712,411792,116542,116604,113049,411870,411948,117255,412026, 412104,412182,412262,412342,116658,116656,113978,116934,114848,116240, 109888,116900,116855,115932,117358,113167,412424,412481,116241,115972, 114590,116808,116981,112941,116627,116798,116741,117139,114559,412535, 116299,117010,116354,110962,116493,117028,117140,117085,117533,117254, 115859,111970,115037,115593,117415,116496,117143,117293,116996,114892, 412606,115777,116548,119222,115805,116897,117745,117350,117464,117159, 117120,116586,116126,116355,116911,115832,116188,412664,412722,116810, 116104,115123,412765,115003,116468,110040,412829,412887,117278,117474, 412930,116225,116931,412979,116705,413028,116991,117037,117123,413077, 116708,413126,117048,117147,117343,117587,117294,117083,117142,117586, 117387,413175,116765,413224,117105,117197,117484,117588,117523,117643, 117388,413273,116770,117295,413322,116822,117644,117645,117591,117297, 117702,117708,413371,413435,113497,413509,413580,117698,117787,117789, 116898,413648,413682,117537,117521,413750,413819,117701,117845,117732, 117841,118098,118146,117183,116954,118127,117069,118164,113898,116643, 116872,116339,115976,112960,113599,116861,116923,117317,116071,117204, 116471,117522,117351,113958,413887,413965,414046,414126,414204,414282, 414362,414442,414520,414598,414678,414758,414836,414914,414992,415070, 110875,116313,116424,415150,116315,117246,415231,117600,117176,118217, 117658,117845,115308, 0,115309,117659,117839,117728,117836,117842, 118119,118218,117062,415309,117345,415389,415469,118172,118057,116739, 415547,415625,116929,117197,112164,116653,415705,117308,113344,415786, 118127,118099,118266,118173,118182,115485, 0,116693,118268,118274, 118226,118275,118314,118276,118316,118317,117417,415866,415944,416022, 117770,117400,117194,117838,118318,118304,118353,118355,116990,118410, 118367,118977,117615,118175,118369,416102,118482,117116,112270,116012, 118302,111432,116090,114495,117370,110259,110558,117399,114225,116631, 416182,416260,416338,118372,117724,117655,118371,118412,118480,118428, 118430,117192,118483,118482,119276,117767,118431,118518,416418,118566, 117456,113136,116778,118532,116917,116949,114820,117424,110275,115156, 117550,115609,117253,416498,416578,116126,416656,416734,118051,118158, 114322,416814,416894,118577,118521,117704,416972,417050,118122,118423, 114930,417130,417210,118580,118526,117719,116497,117641,110405,118651, 118604,117765,116642,116815,417292,417349,117406,117854,116729,117848, 116870,118640,117492,118670,116111,117667,118103,118736,117070,117529, 118603,118602,118719,115285,115914,116515,115491,119249,118834,118638, 118671,118720,118749,115323,116726,417406,417464,118835,114443,119501, 116413,117822,118750,118994,118897,118693,118101,118431,118965,118739, 117611,113222,116727,417522,417580,117883,117884,117073,417623,110421, 117371,118106,118786,118839,118546,417687, 0,116798,118874,117462, 117584,118667,118702,417755,117300,417804,118665,118448,417853,118675, 118713,118811,118861,118908,417902,118678,118910,417951,118727,119142, 119131,119007,118921,119150,119258,418000,118772,119008,418049,118776, 119307,119308,119076,119065,119357,119358,418098,117694,118143,119095, 119176,418147,118812,418196,119101,118230,119112,119359,119408,119264, 118769,418247,119418,119457,119479,418311,117850,418386,119038,119114, 119041,119117,118357,418454,118934,119223,119014,418522,119394,119506, 119502,119558,119165,119527,119511,119227,119542,118812,119680,117202, 119575,119627,119311,116899,110650,115819,117831,118192,118309,118935, 119074,118938,118462,118985,116971,418592,418673,418751,418829,418909, 418990,419068,419146,419226,419307,419385,419463,419541,110788,117795, 118077,118266,419621,118762,119141,419701,119671,119563,117659,117063, 115603,119657,114403,119326,119228,118931,116204,117395,419779,419857, 419938,420018,117368,119514,119063,420096,420174,117502,118202,118928, 116186,420254,118559,116288,420334,119709,119707,118123,118363,116570, 118918,119677,117255,119749,119395,119172,118554,118396,420414,420494, 420572,420650,420728,119708,119740,119775,119855,119535,119822,119754, 119770,119836,119851,119832,119858,119859,420795,119933,119975,119988, 120013,120062,120051,420863,120141,120152,120170,420928,421008,421086, 421164,421242,119864,120069,120209,120303,119866,120219,119898,120030, 120229,120032,120227,120235,119960,421309,120326,120382,120404,120454, 120482,120463,421377,120536,120562,120642,421442,421522,117568,421600, 421678,120647,119556,119156,421758,421838,120713,119515,119614,421916, 421994,120679,119700,119306,422074,422154,120771,119562,119700,111049, 119094,119860,119769,119929,111117,120021,120112,120458,120179,119700, 119314,118801,117465,118282,119036,120051,120057,120142,117788,119799, 120269,111333,119175,119512,119946,113749,115190,117626,117408,119453, 120255,120064,120277,111502,117791,118592,119178,115716,422236,422294, 120011,120254,120324,120335,120413,118837,120780,117466,119829,120354, 120356,120332,120352,119332,119539,120833,119909,119702,119382,117709, 422352,422410,118160,119259,118335,118664,120229,119407,115876,120378, 422465,120488,120503,422487,119272,119652,422536,119376,422585,120093, 120239,118485,422634,119609,422683,120244,118567,120370,120427,120507, 120337,120410,120514,120550,422732,119740,422781,120252,118885,120572, 120653,120690,120536,120585,120601,120616,120689,120784,422830,119746, 422879,120623,119189,120577,120843,120844,120786,120718,422930,120758, 120866,120893,422979,119794,120790,423028,119798,120906,120907,120627, 120794,120910,120908,423077,120959,423126,119426,120932,423190,119172, 120808,120954,120981,120983,120040,120014,120505,121000,120867,120985, 121003,120988,120687,120614,120491,121047,119980,121010,119626,120868, 120714,120747,118376,117844,119845,119864,120561,119937,120408,119414, 119881,120513,117821,423246,423326,423404,423483,423563,423643,423721, 423800,423880,423960,424038,424116,424194,424272,120610,424352,118194, 116633,424432,121035,121038,121041,120980,120822,120603,121067,120181, 121103,121068,424512,424592,121098,121007,120856,424670,424748,424826, 119419,120977,424906,118849,121037,424986,121104,121108,121109,121132, 121112,121168,121115,121171,121179,121202,121172,425066,425146,425224, 425302,425369,121230,121239,121261,121296,121307,121286,425437,121375, 121438,121364,119499,119592,121139,117365,120995,118485,118576,119278, 121169,425502,425582,425660,425738,425805,121459,121494,121485,121524, 121551,121569,425873,121619,121635,121653,119735,119929,121260,118387, 121150,118879,119565,119336,121171,425938,426016,426094,121560,119895, 120087,426174,426254,119915,121203,121140,426332,426410,121687,120852, 120427,426490,426570,119966,121338,121272,121284,426649,121366,121364, 111583,121412,426683,121610,121432,121395,118958,115076,115771,120590, 121330,121607,121724,121726,121730,121732,121036,121611,119058,121760, 121517,121790,121408,121828,115910,119921,119001,118809,121626,121743, 121762,121763,120701,120293,426720,121826,426775,121839,121404,121718, 118075,123306,119088,121131,121890,121891,122618,121141,120842,120118, 121733,123613,120569,121296,120225,119986,426812,426870,119871,119635, 120434,426913,120172,426974,427008,121959,121842,120101,120173,120909, 121494,427064,119952,427113,121708,120609,427162,121007,120646,121510, 111814,427211,120360,121852,427260,121341,120683,121512,112019,121952, 121853,427309,120444,121864,427358,121375,120685,121580,112133,121953, 121967,427407,427456,120789,121915,427505,121800,120779,121581,112304, 122002,122003,427554,427605,121324,122060,121409,121731,122010,122088, 427654,121088,427703,121963,120984,121904,122004,122101,122107,122008, 427752,122069,122158,122167,117152,122460,123283,123590,427801,112371, 122222,122090,122235,120947,122129,122227,122613,122237,122615,122255, 122206,122352,122335,122157,122727,118756,122383,123955,121905,118691, 119606,118358,118913,121383,122304,121483,121829,122575,120267,118959, 427863,427943,428022,428100,428180,428260,428339,428417,428497,428577, 428656,428734,122297,120788,119264,117705,118253,112783,119134,118399, 121757,121998,120063,119363,120508,121902,118961,428812,428890,121547, 428970,122364,121371,429051,122577,119650,120115,121115,121583,121866, 429131,429211,122259,121880,120204,429289,429367,429447,121679,429527, 122365,122662,122249,122719,122150,122298,121908,122238,120489,122756, 122402,429608,429688,429766,429844,120264,120281,122222,118992,122157, 119437,120277,120423,122368,122607,122830,122884,122947,123061,123000, 429924,430004,430082,430160,120597,120930,122371,120662,122413,119775, 120989,121064,122701,123114,123172,123226,123367,123482,123622,430238, 430316,121099,122651,122721,430396,430476,123728,122320,121113,430554, 430632,121258,122803,122725,430712,430792,123791,122323,121173,430871, 430905,122764,122784,112334,430973,431007,122955,123069,122885,113351, 116168,122286,122649,431075,122877,123433,122689,122059,121641,431127, 122875,123105,123162,123219,123276,123355,122917,122974,121675,120651, 120709,120829,123031,123088,123074,121169,122641,431164,431219,431253, 122906,123050,123248,121305,124067,116469,122632,123438,123688,123526, 123070,122423,122819,122124,122433,119887,122094,431324,431382,121374, 120967,121345,431425,112451,118593,431486,122277,123490,122675,431542, 121251,122642,431591,431640,122962,121487,123182,112467,431689,431738, 112554,112632,122963,121702,122803,123145,123662,123146,431787,431836, 112713,112753,123300,122078,123954,123202,123203,123259,123956,123338, 431885,431934,113091,113447,123403,122103,123957,123452,431985,123534, 123568,123647,123453,123509,124073,123702,432034,432083,113642,113841, 123407,122197,124108,123510,432132,123761,123818,123979,432181,432230, 121579,123417,432279,123496,122198,123239,113967,123664,124104,432328, 432377,121911,124037,124154,124097,123719,124182,124072,119514,124075, 123716,124201,124212,124003,122585,122879,123623,124588,121756,124310, 122239,124228,124209,122801,120114,120770,122155,122386,123102,122936, 123794,124130,122993,122820,432437,432515,432594,432672,432751,432829, 123787,123730,124129,124130,121973,121465,123794,122356,124074,124131, 124186,123288,124389,123378,123307,121822,124273,124234,124239,432907, 432985,433063,433143,433221,433299,433379,124340,124378,119330,119575, 121716,121587,114036,433459,123098,433539,122154,433617,433695,433773, 433853,433931,434009,434089,124387,124579,114031,114207,121129,114477, 114506,116805,434169,434249,114562,434327,434405,121150,121764,122411, 123295,124247,123551,114640,114669,114748,122287,117036,434485,434565, 0,434643,434721,122269,122662,122591,124564,124249,123785,114739, 114990,115354,122386,121768,434799,434877,124365,434955,124887, 0, 435035,118821,435115,122229,435193,435271,124584,435349,124900, 0, 435429,119676,435509,123275,435588,123273,124903,124298,115447,435656, 124346,124906,124925,124593,122093,121855,124217,435724,435776,124983, 124408,124936,124984,115552,435844,124765,124927,435912,125022,125032, 124551,124377,117585,120900,122079,122347,124974,123928,125080,124763, 123487,435964,124349,125071,124568,124624,122294,125330,122733,122952, 125235,125322,125025,125003,124585,125052,123395,121143,120315,436035, 436093,121954,122638,122790,122385,123660,124106,122638,125074,125077, 125263,122759,122818,124112,124312,436136,436185,115636,436234,116156, 116222,124949,123257,436283,116329,436332,116414,116548,125051,123410, 436381,116558,436430,116703,116855,125081,123495,436479,436528,116958, 436577,117018,117124,125217,123926,436626,436677,122913,124771,436726, 117150,436775,117231,117315,125239,124151,436824,436873,123029,125386, 124746,124887,125303,124935,436922,436971,117325,117442,125241,124221, 125521,125091,437020,125505,125563,125585,437069,118231,125642,125721, 125853,437130,125633,125325,123319,437201,125649,437235,125676,125874, 125914,125618,125918,125984,125075,121901,124550,125647,124271,122876, 121449,122714,123670,124897,125271,123107,125350,123721,125677,125302, 125326,125663,117509,437303,437381,120790,123549,120805,123374,123554, 125866,122787,122813,123792,124009,122543,121197,123154,437461,117842, 124386,122773,125192,124950,437539,437617,124225,437697,123107,437777, 437857,437937,117938,125602,123730,438017,122924,438095,438173,124581, 438253,123263,438333,438413,438493,118050,123609,125893,124378,123895, 438573,438653,438731,438809,118731,123036,119782,125054,124187,438889, 438969,125895,124006,125068,439049,439127,439205,439283,439361,439439, 439517,124558,118100,118244,123453,118338,123792,118633,439596,124566, 439674,439752,439833,123266,123788,439911,120444,439989,440067,440148, 123358,125379,125606,126041,123596,125713,125943,125988,126099,126010, 124747,123925,124939,440227,125899,126103,126046,126003,126163,125903, 126134,440295,440347,126157,126215,126252,126277,124269,122688,125304, 125351,126161,126217,126219,126223,126275,126061,126177,125508,125948, 125990,126336,126048,123947,121851,126162,126281,126308,126339,125503, 125863,125376,124748,124396,123217,440418,440476,124116,124403,124429, 440519,124575,126106,126403,440568,118989,440617,440666,119151,119171, 440715,440764,119266,119281,125580,124735,125094,126322,125825,440813, 440862,119439,119449,126432,125696,125826,126489,126356,440911,440960, 119521,119530,126538,125999,441011,126474,126531,126578,126176,126552, 126358,441060,441109,119648,119827,126623,126260,441158,126608,126665, 126687,441207,126413,126737,126416,441256,441305,119848,119924,126794, 126548,441354,126722,126779,126836,441403,441452,119982,441501,120055, 120112,125655,124899,441550,441599,124635,126858,126916,126698,441660, 126965,126397,125363,441728,126880,441796,126986,126574,126891,126987, 126276,125324,121315,127020,125945,123160,124164,125576,125577,125579, 125900,126020,121661,126118,126104,126192,125678,120159,124901,441864, 441942,442020,126752,126333,125477,125481,126364,126447,126392,126446, 442100,126339,442180,120299,124174,120399,120365,120504,120580,120634, 120666,120847,122869,122155,125070,120924,120993,121325,124511,121392, 126503,126585,126699,126581,126690,126700,126900,124723,442258,442336, 125477,442416,126443,121398,442496,124751,126591,125966,442574,442652, 126748,442732,124955,442812,442892,442970,126848,121948,125046,124080, 125628,122629,122976,125265,126251,126125,125284,125047,125681,125981, 123946,443050,443130,443208,126907,123647,125227,124174,125870,125240, 125287,125657,126830,126844,126041,125516,125958,126965,125211,443288, 125233,127010,127012,127035,443366,443444,443522,443600,126061,124575, 443680,443760,125367,127013,126968,443838,443916,121401,126533,125072, 443996,444076,125568,127017,127092,444154,124841,126695,444232,124850, 126912,126989,127155,125027,125926,126092,127064,127099,444311,127120, 127184,127107,126165,124973,126906,127124,127177,127236,127182,126851, 127101,444372,127213,127238,127240,127140,127270,126341,126377,126472, 126529,127292,444440,127327,127349,127139,127196,127201,127297,127299, 125658,126663,126834,127384,127409,127353,127410,127439,127413,127355, 127293,126990,126396,125985,127356,127385,126292,444495,444553,125821, 125041,126254,444596,121501,122398,127467,127454,124900,126625,127030, 444645,444694,121517,444743,121569,121576,444792,121632,444841,121650, 121742,126964,125295,444890,121756,444939,121884,121953,444988,445037, 121983,445086,121998,122003,445135,445186,125573,127527,445235,122303, 445284,122341,122347,445333,445382,126253,127584,445431,122425,445480, 122651,122691,445529,445578,126437,127619,127023,127441,127500,445627, 445676,122809,122843,127442,127253,445725,127641,127676,127698,445774, 123339,127755,127778,127835,127484,127884,127234,127465,127825,127522, 128000,127906,127674,127731,126569,126425,127882,127943,127728,122861, 126910,126123,127036,127492,127745,127487,127560,127386,127617,127788, 124308,445834,445912,127269,127289,127748,127846,127883,127903,127940, 445993,127834,123389,446073,127896,126427,127412,123828,127832,125799, 127976,127285,126514,122905,125802,127070,128041,127676,127440,126237, 123648,122962,127784,127545,126521,127722,127469,128027,127833,127697, 127941,128072,128131,446151,446229,127113,126819,446309,446389,125185, 124995,446467,446545,127951,127960,446625,446703,446781,446859,124165, 126882,126880,126617,125896,123668,127913,127543,126285,126256,126140, 127692,127018,446939,127435,128011,127963,128056,127062,127991,128130, 127957,128017,128068,128115,127337,128142,128126,127849,126695,128144, 128156,128077,447019,447097,447175,447253,126681,127068,127301,126967, 126744,126743,128055,128162,127158,126789,126314,128184,127161,447333, 127763,128203,128133,128221,128010,128078,128159,128202,128158,128242, 128307,127902,128268,128208,127988,128067,128326,128259,128264,447413, 447493,125198,125339,447571,447649,128320,128321,447729,447809,126448, 127590,447887,447965,128375,128377,448045,448125,126757,127591,128207, 127158,128376,127681,128306,128246,127244,128447,127898,448204,128112, 128391,448238,128173,128308,128251,128422,128497,128444,128478,127443, 127910,128519,128525,128466,128521,128577,128582,128634,128523,127730, 127997,127690,127318,126319,448299,448351,128689,128691,128554,128611, 128082,128636,128608,127575,127808,128694,128751,128747,448419,128754, 128868,128365,128384,128215,127771,128499,125884,448456,448514,128302, 126954,128339,127029,128356,127573,125885,448569,128665,448591,123035, 127079,123029,448640,123131,123181,128419,128776,128708,448689,123250, 123255,448738,128592,128904,128774,448787,123347,123446,448838,128858, 128946,128969,128619,128972,128884,448887,123499,123505,448936,129033, 129068,129090,448985,128651,128973,128885,449034,123571,123698,449083, 129125,129147,129182,449132,128969,129197,129006,449181,123765,123781, 449230,129239,129261,129296,449279,449328,123937,449377,124018,124031, 449426,449475,127706,129318,129376,128811,128392,128638,129446,129448, 128748,128798,128613,127269,128552,129361,128676,128443,128780,127871, 127979,128905,128363,128026,128750,128435,128667,128901,124528,449535, 449613,128517,128433,128840,128972,129153,129155,129158,129315,128443, 127650,449693,449773,125247,129049,127789,127243,128413,125970,124127, 128202,129327,128512,124312,128861,129382,124217,128992,125467,129387, 129045,129426,129438,129454,129112,129226,129329,449851,449929,129418, 129503,450009,450089,129456,127346,450167,450245,129484,129468,450325, 450403,450481,129159,129514,129390,129397,129361,128870,129517,128627, 128745,129283,129616,128934,129577,129452,129461,128819,129635,129551, 129441,450561,126041,129525,127988,129009,129313,129691,126197,128315, 129521,128660,126455,125469,129106,129551,124375,129567,125660,129677, 129618,450641,450719,450797,129570,129633,129519,129638,129576,129579, 129744,129626,129516,129694,129844,129692,129748,129739,129719,129662, 129806,129797,129779,450877,126570,129607,128577,129371,129470,129919, 126928,128717,129733,129155,126742,126626,129220,129752,124690,129801, 125675,129859,129959,450957,451037,129835,126153,451115,451193,451271, 451349,451429,451509,129860,451587,451665,451743,451821,451901,451981, 129862,452059,128500,452137,128974,452216,129366,130041,452250,129028, 452318,129811,452386,129700,128977,129727,452420,129979,129869,129788, 128099,129079,129956,128301,127883,129502,129900,129922,130015,129983, 129957,130119,130059,128041,128693,128138,128690,452454,130090,130111, 130113,130037,130116,129336,452522,130115,129367,128743,130173,130230, 452556,130226,130283,129614,129841,129697,129725,129921,452593,452651, 129829,129300,128880,452694,128441,452755,130168,129136,130007,129250, 452811,124903,124985,452860,125101,125631,452911,130273,130325,130360, 452960,125653,125814,453011,128612,130382,453060,125936,125944,453109, 129249,130417,453158,126016,126171,453207,129307,130439,453256,126305, 126380,453305,129941,130459,130013,130460,130184,453354,126407,126427, 453403,130516,130551,130573,453452,130594,130011,130174,130647,130701, 130036,130197,130114,129840,130622,130616,130200,128897,130088,130012, 130032,129639,130175,130480,130092,130279,130222,130263,130227,453512, 453590,453668,130679,130680,453748,453828,130333,127658,130752,130741, 130641,130449,130701,130809,130645,130730,130810,130702, 0,129913, 130813,130834,130816,130838,130892,130841,130891,130895,130869,130945, 130390,130870,130990,130888,130991,130524,453906,453984,454062,454142, 454222,130943,129916,454300,454378,454456,130618,454536,454614,454692, 127482,130341,128957,130049,130105,130830,127150,129968,130263,129867, 127888,127466,130169,454772,126510,130284,127279,131006,131047,130451, 131008,131116,130403,130422,130943,130866,130481,130563,130733,129282, 130759,129307,130581,131043,129686,130980,130951,130026,131058,454852, 454930,455008,127945,131037,128987,130108,130265,131120,127583,130557, 130582,130641,128385,128404,130704,455088,126587,131062,128796,131136, 131137,130620,131094,131195,130793,131060,131114,131140,130792,130872, 130832,130087,131037,130445,131143,131199,130677,131152,131173,130765, 131202,455168,455248,131220,131109,455326,455404,131240,455484,455564, 131239,455642,455720,131251,455800,455880,131248,129750,131252,130453, 131264,455959,131359,456027,128926,130540,131515,131234,456095,456163, 131591,131593,456197,131650,130243,128912,129085,129081,129123,128746, 128782,129424,129390,131012,456265,131601,131312,131639,131603,131686, 131331,129548,129237,130316,127826,131688,131699,131784,131343,130412, 131352,456317,131605,129597,129138,131941,131748,131937,131741,131237, 130678,131129,131154,130845,456388,456446,129983,130682,131041,456489, 126665,129447,131374,131512,130432,131350,130759,130473,131353,130910, 456540,130161,131522,130509,131594,131355,456589,130549,131643,131478, 456638,130631,131718,131495,456687,130930,131767,131737,456736,456785, 126838,126963,456834,131116,131867,131942,131344,131934,132390,132144, 132193,132527,132629,132242,132291,131800,131328,129810,129526,132113, 131895,131052,131938,130595,130729,131184,131333,131516,132162,131555, 132340,131786,127458,456894,456972,457039,132123,132166,132518,457118, 457198,132506,132264,132555,131575,131766,131670,131268,132254,132308, 132309,131630,131718,131921,131946,130797,131624,131773,131770,131198, 131721,130677,132165,132412,457267,132674,132696,132607,457330,457408, 457486,457566,457646,131883,131681,457724,457802,457880,457958,458039, 458117,458195,458273,132415,132261,131780,131826,132064,132269,132270, 132162,458353,131936,132316,132273,132407,132317,132418,132371,132514, 128922,129650,127033,127007,128549,131464,131544,132448,127050,127154, 131923,127346,127554,127655,131537,127639,127775,127912,129722,132411, 458433,458511,458589,458667,132700,132636,132517,132566,132598,132832, 132701,132569,458747,132616,132831,132996,132960,132966,132677,132828, 132963,129029,129907,128061,128103,130603,131866,132211,132548,128129, 128137,132666,128198,128247,128299,131735,128260,128329,128353,131250, 132709,458827,458907,132698,132426,458985,459063,132828,459143,459223, 133003,459301,459379,132984,459459,459539,133004,132962,131831,132981, 131923,132663,133040,129897,130105,459618,133054,459669,459730,459798, 128514,133068,133083,131027,131178,133069,459832,133090,133020,133095, 459900,133097,133084,130245,131179,130358,131259,133113,133136,133088, 131966,133075,133142,128594,131563,133107,133191,133211,131258,132875, 133120,131858,459955,460013,130858,131645,131131,131701,133117,132094, 131354,133176,460058,130971,132406,133111,460107,133216,133162,133218, 133226,460168,133231,133220,133222,133233,133173,133227,133224,131608, 133214,132388,131702,133166,128649,128670,133153,133272,131332,131497, 132379,131789,131556,460236,460314,131336,131781,132215,130446,460394, 133238,133246,129217,460474,460541,460608,460674,460740,460806,460872, 460938,461004,461070,461136,461202,461268,461336,461402,461468,130814, 131937,133235,461545,461625,461705,133251,133257,461783,461863,461941, 462019,132113,132823,133271,132662,133030,133312,133175,462100,133304, 130602,132158,133293,133313,133265,131862,133266,133325,133322,132626, 131821,130141,130197,131928,132051,133322,133317,132097,131945,129592, 133011,132839,133339,131082,129420,132342,462180,462258,462336,132664, 133273,133368,133302,133351,133371,133370,462417,133398,132111,132208, 133376,133402,133342,133383,133276,133403,133401,132687,133338,130328, 130327,132696,133051,133410,133401,133368,132158,131617,133400,133423, 133430,131811,130881,133418,462497,462577,133439,133465,462655,462733, 133461,462813,462893,133472,462971,463049,133481,463129,463209,133491, 133436,133473,133495,133488,133536,132608,133538,133563,463288,133573, 133580,131712,133544,133585,133614,133515,133604,463356,133601,133556, 132474,133164,130766,132293,133648,133650,133608,133559,133663,133285, 133641,133686,133708,133637,133688,133697,133696,133524,133662,463427, 463485,132747,132852,132186,463528,133546,133593,133678,133715,133727, 133594,133762,133773,463589,133770,133776,133780,133792,133734,133795, 133693,131857,133768,133778,133852,133855,133856,133777,133869,133858, 133848,133755,133841,133731,133771,133871,130228,463657,463735,128863, 130941,130510,133058,463815,133824,129385,463896,133680,133311,133930, 133892,133895,132544, 0,132569,133950,133896,133909,133931,133951, 133953,133979,134004,133593,463976,464056,133890,464136,464214,464292, 133811,133662,133825,133853,133855,133991,133910,133933,133952,132941, 134005,134003,134059,133983,134012,134042,464372,134104,133138,131738, 132177,134062,129773,132228,134087,131189,131741,128749,130324,133173, 130475,130028,464452,464530,464608,133934,134055,134060,134094,134106, 134141,134143,134108,134110,133099,134190,134155,134356,134018,134156, 134159,464688,134241,133518,132426,132253,134211,133025,132304,134209, 133399,131962,128771,130684,133703,130989,133259,464768,464848,133925, 133352,464926,465004,134517,465084,465164,134042,465242,465320,134537, 465400,465480,134167,134242,134290,134170,133817,134313,133985,134364, 134242,132523,134240,134292,131592,131475,133600,133893,133380,134327, 134326,134560,134532,134375,134591,134617,133579,133283,133479,134118, 465559,134613,134688,134093,134534,130625,135619,134556,134671,134365, 134530,134646,134227,134289,465614,465672,133595,133766,132284,465715, 128832,134246,134373,134674,134726,134557,134728,134783,134785,134821, 134840,134842,134897,134666,134729,133797,133907,134527,134926,134983, 135789,134989,134533,134703,134757,134620,134615,134618,134643,134705, 134702,131375,465775,465853,465931,466009,466087,466165,466245,466323, 133878,466404,135060,134937,134356,134044,133908,131947,134781,134249, 134837,134349,134262,133228,134480,466484,466564,133257,466644,466724, 466802,466880,466958,134989,135101,135174,135233,134819,135203,135062, 135281,134879,135089,134880,135276,134994,135106,467025,135262,135347, 135376,135404,135433,135455,135574,467093,135627,135897,135512,467158, 467238,467316,467394,467472,135622,135277,136159,136245,134935,136171, 135761,135899,134967,135547,135108,136156,135624,135463,467539,136648, 136686,135868,136223,136947,137009,136956,467607,137255,137335,137230, 467672,467752,133713,135083,467830,467908,467986,468066,468146,133958, 468224,468302,468380,468460,468540,134049,134901,136297,135048,135620, 131797,131663,133886,133990,134233,134555,134802,133419,134237,132981, 134339,134536,134819,134630,134731,135298,135544,133535,134276,134732, 134117,468619,135788,135603,134884,135238,134286,136249,468687,137068, 135127,134898,135902,134632,134363,468724,468782,134137,134379,133387, 132844,134985,134228,135049,135336,135905,137305,135261,135793,136978, 137065,137070,137264,137326,135616,135431,135763,134755,135097,135672, 136507,136505,136263,135500,134844,135601,134878,136212,135163,134780, 134329,468836,468914,132048,136236,468994,134344,135745,469074,136146, 134952,136660,137364,135926,137502,136233,136145,135929,137580,137581, 469154,469234,469314,469392,469470,469537,137637,137694,136708,137752, 137871,137934,137846,469605,138027,138132,137672,134723,134764,135232, 133509,134905,136218,133032,131292,134551,137315,469670,469750,469828, 469906,469973,137912,137991,138049,138184,138162,138382,138501,470041, 138555,138635,138360,134765,134777,135298,133627,134962,137275,134890, 132459,134659,137334,470106,470184,470262,470340,470420,470498,470576, 470654,470734,137073,470813,137538,137535,135144,135036,135335,138070, 137018,137075,135758,134743,134758,135092,135098,137540,137584,136684, 136997,137599,132685,137746,137804,137586,135476,137302,137774,136508, 136506,136266,136491,470884,470942,134759,134519,135304,470985,136217, 135409,137542,137985,135471,136715,137613,137874,138056,138454,138086, 138025,138434,136919,135352,138227,138596,138233,138425,138544,138545, 138599,136724,138625,135938,137327,137511,137512,135650,137286,135276, 471045,471123,471203,135631,471283,137718,137759,135611,138688,135755, 135896,135335,136980,135164,138394,137058,471364,471444,471522,471600, 135409,135831,137600,134678,136945,138071,135233,135355,134953,137893, 138805,138860,138665,137390,138910,138746,138981,138962,471680,471760, 471838,471916,135894,135900,137601,134947,137008,138073,135238,135411, 135308,137894,139076,139127,138781,139182,139246,139054,139363,139416, 471994,472072,137715,130907,138205,139234,139473,133987,137717,138090, 137800,138510,135913,136131,135523,132158,138083,138357,137298,138403, 136218,138623,138882,137716,138708,138736,137628,137981,139097,135564, 472154,472212,135548,135480,136502,472255,129028,136272,136492,138852, 138432,136699,138547,139255,138886,139371,139409,139546,139544,139316, 472316,139596,139390,139052,137843,136509,139010,139812,139171,139289, 139809,139515,138229,138453,136642,138458,138626,139552,137106,137228, 472384,472462,472540,472620,472698,472776,472856,139588,139653,129112, 129280,133720,129402,129371,132439,472936,473016,129660,473094,473172, 135003,135446,134552,135799,137244,134893,137762,138145,129663,129723, 136154,129844,135748,129864,132488,473252,473332, 0,473410,473488, 135520,136657,135902,136726,137685,135051,137819,138202,130155,130285, 136684,130448,136454,130513,135223,139609,139100,139723,140178,136944, 137380,139674,138855,134675,137085,137028,137382,139313,137313,137521, 139704,135563,139728,138739,137982,139173,139172,139518,138602,137571, 473570,473628,136620,135786,137238,136285,137096,136722,138415,138080, 139175,139318,137948,138710,139781,473683,139883,139783,139846,139902, 473752,139904,138455,138511,136980,137669,139880,139695,140225,139752, 139516,139988,137612,138835,138825,139405,139288,139956,131703,473820, 473898,136590,473978,135338,474058,474138,130671,135829,138589,138191, 136865,474218,474296,474374,135054,136147,138706,133850,137514,136932, 138123,474454,474534,136467,138995,134547,138966,137464,474612,474690, 474768,474846,474924,475002,475080,137757,137823,130745,130976,136162, 136899,131106,137761,136869,139291,139959,139787,140060,137967,137247, 140017,139907,138507,137351,136600,136612,139963,137888,139702,137310, 140109,139992,139909,139493,139098,139730,138604,475163,475221,137294, 137093,137956,475264,139117,138931,138934,138777,475325,140131,140167, 140273,140247,140263,140133,140137,140275,140248,138884,131207,139879, 140050,140312,140341,139989,140107,139756,139548,139462,138585,139147, 138497,475393,475471,139782,475551,139008,475631,133699,140306,139382, 140308,475709,475787,475865,136881,139333,135169,139769,475945,476025, 136710,140367,139660,139942,140351,476103,131479,138140,139985,135511, 140062,476183,476263,137036,140377,139896,140056,140402,139699,140111, 140337,140474,137496,140466,140544,137671,138049,138214,135639,140546, 140022,139759,138603,140549,140291,140343,140261,140598,140377,140150, 476345,476403,137489,137780,138829,476446,131557,139404,139742,140436, 138780,140601,140658,140660,140696,140715,140810,140717,140772,140829, 139592,138898,140521,141383,140635,140522,139521,140224,139008,139842, 138814,140179,139274,138597,476506,476584,139869,140517,476664,476744, 138844,138338,476822,476900,476980,138969,140595,139174,477060,136680, 138963,139992,137890,477138,477216,477296,139498,140596,140599,477376, 137461,139184,140049,138435,140551,140232,140720,140874,138022,140431, 140751,134972,138982,139293,138664,140723,139578,140775,137688,140833, 140378,140577,140930,140666,140924,139561,477458,477516,138221,137973, 139121,137725,140878,139275,139864,140276,140278,138041,140952,140836, 140954,141012,141066,141068,477571,140949,140430,141784,141152,141038, 141209,140923,140982,140315,140633,140523,140410,140791,137773,477639, 477717,140950,141004,477797,477877,140251,136578,477955,478033,478111, 478189,478267,478347,478427,140686,136602,478505,478583,478661,478739, 478817,478897,478977,140811,136930,140806,141046,141123,141281,138703, 141127,141130,139394,139906,138568,138837,141237,139319,140867,138980, 141273,141010,141131,140927,141212,139408,479059,479117,139384,138599, 139495,479160,140233,140356,141183,141352,141407,141410,141470,141413, 479221,141124,139053,141496,141328,141559,141385,141100,140575,140417, 140468,141188,140748,139064,479289,479367,479445,140880,479525,479605, 141168,139114,479683,479761,141120,137210,479841,479921,141279,139654, 479999,480077,141172,138168,480157,480237,141401,140690,141275,141625, 137687,141524,141526,135927,138336,139849,139279,141617,139337,141583, 141386,141327,141069,140958,141521,131837,139451,135775,138222,140053, 480304,131844,140149,140915,141695,141697,141753,141808,141619,141887, 140877,141672,141673,141846,141786,141214,141845,140899,141503,141669, 140258,138679,480364,480442,480520,480598,480679,480759,141117,141522, 480837,480915,141657,140788,480995,481075,141400,141694,481153,481231, 141680,141283,481311,481391,141459,141753,141562,141955,139647,141760, 140130,138793,139176,139273,141812,138138,141903,141817,141900,141920, 141671,139465,139562,141323,140677,141414,141045,481470,142003,142005, 142045,141181,141839,142073,142134,142137,142479,142066,141502,140400, 141302,141976,141930,140349,481538,481618,481698,141543,141812,481776, 481854,141860,141805,481934,482014,141803,141869,482092,482170,141955, 141970,482250,482330,142030,142032,142162,142263,140662,138682,139760, 139464,140734,142164,139643,142219,141758,141923,142140,142220,140848, 482397,141471,141238,482458,142333,142200,142314,142335,141199,142311, 142305,142424,142422,142310,142011,140531,142021,142143,140808,139788, 482528,482608,141329,139773,482686,482764,142181,142046,482844,482924, 141499,139839,483002,483080,142352,142328,483160,483240,142017,139902, 142371,142568,140196,141041,139903,141142,137845,142391,140336,142451, 142001,142336,142020,142222,141017,483307,132285,141876,141312,142497, 142506,142638,142524,142640,142619,142449,142729,142558,142615,142616, 142672,142196,142138,142454,142527,132378,483369,483449,139643,142596, 483527,483605,483683,142391,483763,483843,140093,142622,483921,483999, 484077,142526,484157,484237,140986,142679,142695,484315,133927,138968, 134261,138391,138388,132435,142703,144911,142453,142787,142504,139966, 141447,141084,142809,142811,142847,484376,142135,142898,143205,142781, 142916,142922,142726,141588,141770,142255,484446,484524,484602,484680, 484758,484839,141415,142751,141485,142871,142792,141614,141047,138907, 138695,140255,140018,132509,143871,142221,142812,142868,142466,142276, 143059,142867,142932,484918,141682,142923,143148,143207,143223,142897, 142739,140588,142502,142613,142927,143030,142953,143300,138117,132660, 138448,135407,138119,143061,144981,484986,143062,142977,141927,142236, 142946,143174,143117,142086,143151,143230,143341,143343,143091,143344, 140638,142696,143179,143414,139480,137942,132679,132878,135462,143176, 145693,143063,143120,141674,142337,143310,143367,142698,143150,143455, 143457,143458,143514,143509,141215,142542,143369,143586,140470,133179, 140134,140651,139352,143231,143591,146456,143254,143480,142788,142295, 143424,141259,144890,143680,143515,144376,143339,143626,142444,142197, 143403,133079,138751,141276,139304,139718,138018,143628,143540,143629, 143122,141924,142664,143539,143197,143683,143743,143740,143794,143087, 142014,142982,142874,143652,133160,137127,140304,140441,140650,133181, 143705,143768,143374,142639,143575,143235,143797,143917,143974,143916, 142817,142256,143594,133493,140011,133513,133618,141099,143709,143659, 143827,138922,143824,141666,143920,144777,143923,143922,142869,142983, 143978,133704,140841,138970,141586,143980,143769,143537,144002,144091, 144088,144094,143454,143255,143404,143518,138698,142036,140292,141517, 143825,143999,144060,144145,144208,144146,142813,143689,143657,141160, 140142,138808,140364,144008,144205,144265,144262,144378,143288,143134, 144154,142047,141400,141689,134050,144227,144322,144321,143977,142396, 143096,144038,138408,134152,141048,142120,144066,144437,144435,144090, 143306,143420,143655,140985,135125,134166,141506,144438,144489,144331, 143020,143822,134420,140035,141979,141907,144495,144546,144431,143290, 141934,141277,141788,141401,144549,144603,144609,142529,140421,140538, 141631,140496,144660,146156,144150,143819,141402,141801,141572,141847, 144717,144666,144839,134676,139621,142094,142050,144663,144780,144264, 139423,141688,141575,142023,146494,145001,145323,142027,142116,142213, 142231,145475,144836,144838,141957,142389,142344,142383,145573,145025, 144375,142273,134788,142632,134890,145622,145694,144722,142459,136269, 134990,142117,145026,145621,144261,141364,142617,140186,140693,145724, 145793,144494,142029,139229,143070,142448,145841,145842,144889,142168, 142447,139622,141787,146383,145891,144434,142446,142790,142537,142531, 145939,146135,144776,142576,141118,142864,142941,145940,145727,143919, 135464,140206,142535,142557,145989,142532,139638,142074,142803,146495, 142807,135637,141687,142708,146037,142997,135791,135876,142904,135957, 135961,143056,142747,142944,142996,143003,143002,143110,143303,143001, 136065,136321,143186,142754,140519,143499,143004,140826,143113,142959, 143114,143670,143209,142960,143395,142339,136409,142191,138463,136732, 143418,136748,143531,143247,143288,143592,136844,143192,143420,143577, 143285,143653,143492,143711,136929,143742,143588,143706,137049,143759, 143708,143805,143308,143765,143472,137258,143858,140778,137261,143873, 143892,143719,137275,143720,143479,143222,143746,143878,143874,137394, 143879,143570,143901,143950,143713,143964,142553,144005,137396,143907, 143727,143861,144007,143984,143860,144011,143378,137411,137629,530678, 485062,485070,485078,485086,485094,485102,485110,485118,485126,485134, 485142,485150,485158,485166,485174,485182,485190,485198,485206,485214, 485222,485230,485238,485246,485254,485262,485270,485278,485286,485294, 485302,485310,485318,485326,485334,485342,485350,485358,485366,485374, 485382,485390,485398,485406,485414,485422,485430,485438,485446,485454, 485462,485470,485478,485486,485494,485502,485510,485518,485526,485534, 485542,485550,485558,485566,485574,485582,485590,485598,485606,485614, 485622,485630,485638,485646,485654,485662,485670,485678,485686,485694, 485702,485710,485718,485726,485734,485742,485750,485758,485766,485774, 485782,485790,485797,485805,485813,485821,485829,485837,485845,485853, 485861,485869,485877,485885,485893,485901,485909,485917,485925,485933, 485941,485949,485957,485965,485973,485981,485989,485997,486005,486013, 486021,486029,486037,486045,486053,486061,486069,486077,486085,486093, 486101,486109,486117,486125,486133,486141,486149,486157,486165,486173, 486181,486189,486197,486205,486213,486221,486229,486237,486245,486253, 486261,486269,486277,486285,486293,486301,486309,486317,486325,486333, 486341,486349,486357,486365,486373,486381,486389,486397,486405,486413, 486421,486429,486437,486445,486453,486461,486469,486477,486485,486493, 486501,486509,486517,486525,486533,486541,486549,486557,486565,486573, 486581,486589,486597,486605,486613,486621,486629,486637,486645,486653, 486661,486669,486677,486685,486693,486701,486709,486717,486725,486733, 486741,486749,486757,486765,486773,486781,486789,486797,486805,486813, 486821,486829,486837,486845,486853,486861,486869,486877,486885,486893, 486901,486909,486917,486925,486933,486941,486949,486957,486965,486973, 486981,486989,486997,487005,487013,487021,487029,487037,487045,487053, 487061,487069,487077,487085,487093,487101,487109,487117,487125,487133, 487141,487149,487157,487165,487173,487181,487189,487197,487205,487213, 487221,487229,487237,487245,487253,487261,487269,487277,487285,487293, 487301,487309,487317,487325,487333,487341,487349,487357,487365,487373, 487381,487389,487397,487405,487413,487421,487429,487437,487445,487453, 487461,487469,487477,487485,487493,487501,487509,487517,487525,487533, 487541,487549,487557,487565,487573,487581,487589,487597,487605,487613, 487621,487629,487637,487645,487653,487661,487669,487677,487685,487693, 487701,487709,487717,487725,487733,487741,487749,487757,487765,487773, 487781,487789,487797,487805,487813,487821,487829,487837,487845,487853, 487861,487869,487877,487885,487893,487901,487909,487917,487925,487933, 487941,487949,487957,487965,487973,487981,487989,487997,488005,488013, 488021,488029,488037,488045,488053,488061,488069,488077,488085,488093, 488101,488109,488117,488125,488133,488141,488149,488157,488165,488173, 488181,488189,488197,488205,488213,488221,488229,488237,488245,488253, 488261,488269,488277,488285,488293,488301,488309,488317,488325,488333, 488341,488349,488357,488365,488373,488381,488389,488397,488405,488413, 488421,488429,488437,488445,488453,488461,488469,488477,488485,488493, 488501,488509,488517,488525,488533,488541,488549,488557,488565,488573, 488581,488589,488597,488605,488613,488621,488629,488637,488645,488653, 488661,488669,488677,488685,488693,488701,488709,488717,488725,488733, 488741,488749,488757,488765,488773,488781,488789,488797,488805,488813, 488821,488829,488837,488845,488853,488861,488869,488877,488885,488893, 488901,488909,488917,488925,488933,488941,488949,488957,488965,488973, 488981,488989,488997,489005,489013,489021,489029,489037,489045,489053, 489061,489069,489077,489085,489093,489101,489109,489117,489125,489133, 489141,489149,489157,489165,489173,489181,489189,489197,489205,489213, 489221,489229,489237,489245,489253,489261,489269,489277,489285,489293, 489301,489309,489317,489325,489333,489341,489349,489357,489365,489373, 489381,489389,489397,489405,489413,489421,489429,489437,489445,489453, 489461,489469,489477,489485,489493,489501,489509,489517,489525,489533, 489541,489549,489557,489565,489573,489581,489589,489597,489605,489613, 489621,489629,489637,489645,489653,489661,489669,489677,489685,489693, 489701,489709,489717,489725,489733,489741,489749,489757,489765,489773, 489781,489789,489797,489805,489813,489821,489829,489837,489845,489853, 489861,489869,489877,489885,489893,489901,489909,489917,489925,489933, 489941,489949,489957,489965,489973,489981,489989,489997,490005,490013, 490021,490029,490037,490045,490053,490061,490069,490077,490085,490093, 490101,490109,490117,490125,490133,490141,490149,490157,490165,490173, 490181,490189,490197,490205,490213,490221,490229,490237,490245,490253, 490261,490269,490277,490285,490293,490301,490309,490317,490323,490329, 490337,490345,490353,490361,490369,490377,490385,490393,490401,490409, 490417,490425,490433,490441,490449,490457,490465,490473,490481,490489, 490497,490505,490513,490521,490529,490537,490545,490553,490561,490569, 490577,490585,490593,490601,490609,490617,490625,490633,490641,490649, 490657,490665,490673,490681,490689,490697,490705,490713,490721,490729, 490737,490745,490753,490761,490769,490777,490785,490793,490801,490809, 490817,490825,490833,490841,490849,490857,490865,490873,490881,490889, 490897,490905,490913,490921,490929,490937,490945,490953,490961,490969, 490977,490985,490993,491001,491009,491017,491025,491033,491041,491049, 491057,491065,491073,491081,491089,491097,491105,491113,491121,491129, 491137,491145,491153,491161,491169,491177,491185,491193,491201,491209, 491217,491225,491233,491241,491249,491257,491265,491273,491281,491289, 491297,491305,491313,491321,491329,491337,491345,491353,491361,491369, 491377,491385,491393,491401,491409,491417,491425,491433,491441,491449, 491457,491465,491473,491481,491489,491497,491505,491513,491521,491529, 491537,491545,491553,491561,491569,491577,491585,491593,491601,491609, 491617,491625,491633,491641,491649,491657,491665,491673,491681,491689, 491697,491705,491713,491721,491729,491737,491745,491753,491761,491769, 491777,491785,491793,491801,491809,491817,491825,491833,491841,491849, 491857,491865,491873,491881,491889,491897,491905,491913,491921,491929, 491937,491945,491953,491961,491969,491977,491985,491993,492001,492009, 492017,492025,492033,492041,492049,492057,492065,492073,492081,492089, 492097,492105,492113,492121,492129,492137,492145,492153,492161,492169, 492177,492185,492193,492201,492209,492217,492225,492233,492241,492249, 492257,492265,492273,492281,492289,492297,492305,492313,492321,492329, 492337,492345,492353,492361,492369,492377,492385,492393,492401,492409, 492417,492425,492433,492441,492449,492457,492465,492473,492481,492489, 492497,492505,492513,492521,492529,492537,492545,492553,492561,492569, 492577,492585,492593,492601,492609,492617,492625,492633,492641,492649, 492657,492665,492673,492681,492689,492697,492705,492713,492721,492729, 492737,492745,492753,492761,492769,492777,492785,492793,492801,492809, 492817,492825,492833,492841,492849,492857,492865,492873,492881,492889, 492897,492905,492913,492921,137641,492927,492933,492941,492949,492957, 492965,492973,492981,492989,492997,493005,493013,493021,493029,493037, 493045,493053,493061,493069,493077,493085,493093,493101,493109,493117, 493125,493133,493141,493149,493157,493165,493173,493181,493189,493197, 493205,493213,493221,493229,493237,493245,493253,493261,493269,493277, 493285,493293,493301,493309,493317,493325,493333,493341,493349,493357, 493365,493373,493381,493389,493397,493405,493413,493421,493429,493437, 493445,493453,493461,493469,493477,493485,493493,493501,493509,493517, 493525,493533,493541,493549,493557,493565,493573,493581,493589,493597, 493605,493613,493621,493629,493637,493645,493653,493661,493669,493677, 493685,493693,493701,493709,493717,493725,493733,493741,493749,493757, 493765,493773,493781,493789,493797,493805,493813,493821,493829,493837, 493845,493853,493861,493869,493877,493885,493893,493901,493909,493917, 493925,493933,493941,493949,493957,493965,493973,493981,493989,493997, 494005,494013,494021,494029,494037,494045,494053,494061,494069,494077, 494085,494093,494101,494109,494117,494125,494133,494141,494149,494157, 494165,494173,494181,494189,494197,494205,494213,494221,494229,494237, 494245,494253,494261,494269,494277,494285,494293,494301,494309,494317, 494325,494333,494341,494349,494357,494365,494373,494381,494389,494397, 494405,494413,494421,494429,494437,494445,494453,494461,494469,494477, 494485,494493,494501,494509,494517,494525,494533,494541,494549,494557, 494565,494573,494581,494589,494597,494605,494613,494621,494629,494637, 494645,494653,494661,494669,494677,494685,494693,494701,494709,494717, 494725,494733,494741,494749,494757,494765,494773,494781,494789,494797, 494805,494813,494821,494829,494837,494845,494853,494861,494869,494877, 494885,494893,494901,494909,494917,494925,494933,494941,494949,494957, 494965,494973,494981,494989,494997,495005,495013,495021,495029,495037, 495045,495053,495061,495069,495077,495085,495093,495101,495109,495117, 495125,495133,495141,495149,495157,495165,495173,495181,495189,495197, 495205,495213,495221,495229,495237,495245,495253,495261,495269,495277, 495285,495293,495301,495309,495317,495325,495333,495341,495349,495357, 495365,495373,495381,495389,495397,495405,495413,495421,495429,495437, 495445,495453,495461,495469,495477,495485,495493,495501,495509,495517, 495525,495533,495541,495549,495557,495565,495573,495581,495589,495597, 495605,495613,495621,495629,495637,495645,495653,495661,495669,495677, 495685,495693,495701,495709,495717,495725,495733,495741,495749,495757, 495765,495773,495781,495789,495797,495805,495813,495821,495829,495837, 495845,495853,495861,495869,495877,495885,495893,495901,495909,495917, 495925,495933,495941,495949,495957,495965,495973,495981,495989,495997, 496005,496013,496021,496029,496037,496045,496053,496061,496069,496077, 496085,496093,496101,496109,496117,496125,496133,496141,496149,496157, 496165,496173,496181,496189,496197,496205,496213,496221,496229,496237, 496245,496253,496261,496269,496277,496285,496293,496301,496309,496317, 496325,496333,496341,496349,496357,496365,496373,496381,496389,496397, 496405,496413,496421,496429,496437,496445,496453,496461,496469,496477, 496485,496493,496501,496509,496517,496525,496533,496541,496549,496557, 496565,496573,496581,496589,496597,496605,496613,496621,496629,496637, 496645,496653,496661,496669,496677,496685,496693,496701,496709,496717, 496725,496733,496741,496749,496757,496765,496773,496781,496789,496797, 496805,496813,496821,496829,496837,496845,496853,496861,496869,496877, 496885,496893,496901,496909,496917,496925,496933,496941,496949,496957, 496965,496973,496981,496989,496997,497005,497013,497021,497029,497037, 497045,497053,497061,497069,497077,497085,497093,497101,497109,497117, 497125,497133,497141,497149,497157,497165,497173,497181,497189,497197, 497205,497213,497221,497229,497237,497245,497253,497261,497269,497277, 497285,497293,497301,497309,497317,497325,497333,497341,497349,497357, 497365,497373,497381,497389,497397,497405,497413,497421,497429,497437, 497445,497453,497461,497469,497477,497485,497493,497501,497509,497517, 497525,497533,497541,497549,497557,497565,497573,497581,497589,497597, 497605,497613,497621,497629,497637,497645,497653,497661,497669,497677, 497685,497693,497701,497709,497717,497725,497733,497741,497749,497757, 497765,497773,497781,497789,497797,497805,497813,497821,497829,497837, 497845,497853,497861,497869,497877,497885,497893,497901,497909,497917, 497925,497933,497941,497949,497957,497965,497973,497981,497989,497997, 498005,498013,498021,498029,498037,498045,498053,498061,498069,498077, 498085,498093,498101,498109,498117,498125,498133,498141,498149,498157, 498165,498173,498181,498189,498197,498205,498213,498221,498229,498237, 498245,498253,498261,498269,498277,498285,498293,498301,498309,498317, 498325,498333,498341,498349,498357,498365,498373,498381,498389,498397, 498405,498413,498421,498429,498437,498445,498453,498461,498469,498477, 498485,498493,498501,498509,498517,498525,498533,498541,498549,498557, 498565,498573,498581,498589,498597,498605,498613,498621,498629,498637, 498645,498653,498661,498669,498677,498685,498693,498701,498709,498717, 498725,498733,498741,498749,498757,498765,498773,498781,498789,498797, 498805,498813,498821,498829,498837,498845,498853,498861,498869,498877, 498885,498893,498901,498909,498917,498925,498933,498941,498949,498957, 498965,498973,498981,498989,498997,499005,499013,499021,499029,499037, 499045,499053,499061,499069,499077,499085,499093,499101,499109,499117, 499125,499133,499141,499149,499157,499165,499173,499181,499189,499197, 499205,499213,499221,499229,499237,499245,499253,499261,499269,499277, 499285,499293,499301,499309,499317,499325,499333,499341,499349,499357, 499365,499373,499381,499389,499397,499405,499413,499421,499429,499437, 499445,499453,499461,499469,499477,499485,499493,499501,499509,499517, 499525,499533,499541,499549,499557,499565,499573,499581,499589,499597, 499605,499613,499621,499629,499637,499645,499653,499661,499669,499677, 499685,499693,499701,499709,499717,499725,499733,499741,499749,499757, 499765,499773,499781,499789,499797,499805,499813,499821,499829,499837, 499845,499853,499861,499869,499877,499885,499893,499901,499909,499917, 499925,499933,499941,499949,499957,499965,499973,499981,499989,499997, 500005,500013,500021,500029,500037,500045,500053,500061,500069,500077, 500085,500093,500101,500109,500117,500125,500133,500141,500149,500157, 500165,500173,500181,500189,500197,500205,500213,500221,500229,500237, 500245,500253,500261,500269,500277,500285,500293,500301,500309,500317, 500325,500333,500341,500349,500357,500365,500373,500381,500389,500397, 500405,500413,500421,500429,500437,500445,500453,500461,500469,500477, 500485,500493,500501,500509,500517,500525,500533,500541,500549,500557, 500565,500573,500581,500589,500597,500605,500613,500621,500629,500637, 500645,500653,500661,500669,500677,500685,500693,500701,500709,500717, 500725,500733,500741,500749,500757,500765,500773,500781,500789,500797, 500805,500813,500821,500829,500837,500845,500853,500861,500869,500877, 500885,500893,500901,500909,500917,500925,500933,500941,500949,500957, 500965,500973,500981,500989,500997,501005,501013,501021,501029,501037, 501045,501053,501061,501069,501077,501085,501093,501101,501109,501117, 501125,501133,501141,501149,501157,501165,501173,501181,501189,501197, 501205,501213,501221,501229,501237,501245,501253,501261,501269,501277, 501285,501293,501301,501309,501317,501325,501333,501341,501349,501357, 501365,501373,501381,501389,501397,501405,501413,501421,501429,501437, 501445,501453,501461,501469,501477,501485,501493,501501,501509,501517, 501525,501533,501541,501549,501557,501565,501573,501581,501589,501597, 501605,501613,501621,501629,501637,501645,501653,501661,501669,501677, 501685,501693,501701,501709,501717,501725,501733,501741,501749,501757, 501765,501773,501781,501789,501797,501805,501813,501821,501829,501837, 501845,501853,501861,501869,501877,501885,501893,501901,501909,501917, 501925,501933,501941,501949,501957,501965,501973,501981,501989,501997, 502005,502013,502021,502029,502037,502045,502053,502061,502069,502077, 502085,502093,502101,502109,502117,502125,502133,502141,502149,502157, 502165,502173,502181,502189,502197,502205,502213,502221,502229,502237, 502245,502253,502261,502269,502277,502285,502293,502301,502309,502317, 502325,502333,502341,502349,502357,502365,502373,502381,502389,502397, 502405,502413,502421,502429,502437,502445,502453,502461,502469,502477, 502485,502493,502501,502509,502517,502525,502533,502541,502549,502557, 502565,502573,502581,502589,502597,502605,502613,502621,502629,502637, 502645,502653,502661,502669,502677,502685,502693,502701,502709,502717, 502725,502733,502741,502749,502757,502765,502773,502781,502789,502797, 502805,502813,502821,502829,502837,502845,502853,502861,502869,502877, 502885,502893,502901,502909,502917,502925,502933,502941,502949,502957, 502965,502973,502981,502989,502997,503005,503013,503021,503029,503037, 503045,503053,503061,503069,503077,503085,503093,503101,503109,503117, 503125,503133,503141,503149,503157,503165,503173,503181,503189,503197, 503205,503213,503221,503229,503237,503245,503253,503261,503269,503277, 503285,503293,503301,503309,503317,503325,503333,503341,503349,503357, 503365,503373,503381,503389,503397,503405,503413,503421,503429,503437, 503445,503453,503461,503469,503477,503485,503493,503501,503509,503517, 503525,503533,503541,503549,503557,503565,503573,503581,503589,503597, 503605,503613,503621,503629,503637,503645,503653,503661,503669,503677, 503685,503693,503701,503709,503717,503725,503733,503741,503749,503757, 503765,503773,503781,503789,503797,503805,503813,503821,503829,503837, 503845,503853,503861,503869,503877,503885,503893,503901,503909,503917, 503925,503933,503941,503949,503957,503965,503973,503981,503989,503997, 504005,504013,504021,504029,504037,504045,504053,504061,504069,504077, 504085,504093,504101,504109,504117,504125,504133,504141,504149,504157, 504165,504173,504181,504189,504197,504205,504213,504221,504229,504237, 504245,504253,504261,504269,504277,504285,504293,504301,504309,504317, 504325,504333,504341,504349,504357,504365,504373,504381,504389,504397, 504405,504413,504421,504429,504437,504445,504453,504461,504469,504477, 504485,504493,504501,504509,504517,504525,504533,504541,504549,504557, 504565,504573,504581,504589,504597,504605,504613,504621,504629,504637, 504645,504653,504661,504669,504677,504685,504693,504701,504709,504717, 504725,504733,504741,504749,504757,504765,504773,504781,504789,504797, 504805,504813,504821,504829,504837,504845,504853,504861,504869,504877, 504885,504893,504901,504909,504917,504925,504933,504941,504949,504957, 504965,504973,504981,504989,504997,505005,505013,505021,505029,505037, 505045,505053,505061,505069,505077,505085,505093,505101,505109,505117, 505125,505133,505141,505149,505157,505165,505173,505181,505189,505197, 505205,505213,505221,505229,505237,505245,505253,505261,505269,505277, 505285,505293,505301,505309,505317,505325,505333,505341,505349,505357, 505365,505373,505381,505389,505397,505405,505413,505421,505429,505437, 505445,505453,505461,505469,505477,505485,505493,505501,505509,505517, 505525,505533,505541,505549,505557,505565,505573,505581,505589,505597, 505605,505613,505621,505629,505637,505645,505653,505661,505669,505677, 505685,505693,505701,505709,505717,505725,505733,505741,505749,505757, 505765,505773,505781,505789,505797,505805,505813,505821,505829,505837, 505845,505853,505861,505869,505877,505885,505893,505901,505909,505917, 505925,505933,505941,505949,505957,505965,505973,505981,505989,505997, 506005,506013,506021,506029,506037,506045,506053,506061,506069,506077, 506085,506093,506101,506109,506117,506125,506133,506141,506149,506157, 506165,506173,506181,506189,506197,506205,506213,506221,506229,506237, 506245,506253,506261,506269,506277,506285,506293,506301,506309,506317, 506325,506333,506341,506349,506357,506365,506373,506381,506389,506397, 506405,506413,506421,506429,506437,506445,506453,506461,506469,506477, 506485,506493,506501,506509,506517,506525,506533,506541,506549,506557, 506565,506573,506581,506589,506597,506605,506613,506621,506629,506637, 506645,506653,506661,506669,506677,506685,506693,506701,506709,506717, 506725,506733,506741,506749,506757,506765,506773,506781,506789,506797, 506805,506813,506821,506829,506837,506845,506853,506861,506869,506877, 506885,506893,506901,506909,506917,506925,506933,506941,506949,506957, 506965,506973,506981,506989,506997,507005,507013,507021,507029,507037, 507045,507053,507061,507069,507077,507085,507093,507101,507109,507117, 507125,507133,507141,507149,507157,507165,507173,507181,507189,507197, 507205,507213,507221,507229,507237,507245,507253,507261,507269,507277, 507285,507293,507301,507309,507317,507325,507333,507341,507349,507357, 507365,507373,507381,507389,507397,507405,507413,507421,507429,507437, 507445,507453,507461,507469,507477,507485,507493,507501,507509,507517, 507525,507533,507541,507549,507557,507565,507573,507581,507589,507597, 507605,507613,507621,507629,507637,507645,507653,507661,507669,507677, 507685,507693,507701,507709,507717,507725,507733,507741,507749,507757, 507765,507773,507781,507789,507797,507805,507813,507821,507829,507837, 507845,507853,507861,507869,507877,507885,507893,507901,507909,507917, 507925,507933,507941,507949,507957,507965,507973,507981,507989,507997, 508005,508013,508021,508029,508037,508045,508053,508061,508069,508077, 508085,508093,508101,508109,508117,508125,508133,508141,508149,508157, 508165,508173,508181,508189,508197,508205,508213,508221,508229,508237, 508245,508253,508261,508269,508277,508285,508293,508301,508309,508317, 508325,508333,508341,508349,508357,508365,508373,508381,508389,508397, 508405,508413,508421,508429,508437,508445,508453,508461,508469,508477, 508485,508493,508501,508509,508517,508525,508533,508541,508549,508557, 508565,508573,508581,508589,508597,508605,508613,508621,508629,508637, 508645,508653,508661,508669,508677,508685,508693,508701,508709,508717, 508725,508733,508741,508749,508757,508765,508773,508781,508789,508797, 508805,508813,508821,508829,508837,508845,508853,508861,508869,508877, 508885,508893,508901,508909,508917,508925,508933,508941,508949,508957, 508965,508973,508981,508989,508997,509005,509013,509021,509029,509037, 509045,509053,509061,509069,509077,509085,509093,509101,509109,509117, 509125,509133,509141,509149,509157,509165,509173,509181,509189,509197, 509205,509213,509221,509229,509237,509245,509253,509261,509269,509277, 509285,509293,509301,509309,509317,509325,509333,509341,509349,509357, 509365,509373,509381,509389,509397,509405,509413,509421,509429,509437, 509445,509453,509461,509469,509477,509485,509493,509501,509509,509517, 509525,509533,509541,509549,509557,509565,509573,509581,509589,509597, 509605,509613,509621,509629,509637,509645,509653,509661,509669,509677, 509685,509693,509701,509709,509717,509725,509733,509741,509749,509757, 509765,509773,509781,509789,509797,509805,509813,509821,509829,509837, 509845,509853,509861,509869,509877,509885,509893,509901,509909,509917, 509925,509933,509941,509949,509957,509965,509973,509981,509989,509997, 510005,510013,510021,510029,510037,510045,510053,510061,510069,510077, 510085,510093,510101,510109,510117,510125,510133,510141,510149,510157, 510165,510173,510181,510189,510197,510205,510213,510221,510229,510237, 510245,510253,510261,510269,510277,510285,510293,510301,510309,510317, 510325,510333,510341,510349,510357,510365,510373,510381,510389,510397, 510405,510413,510421,510429,510437,510445,510453,510461,510469,510477, 510485,510493,510501,510509,510517,510525,510533,510541,510549,510557, 510565,510573,510581,510589,510597,510605,510613,510621,510629,510637, 510645,510653,510661,510669,510677,510685,510693,510701,510709,510717, 510725,510733,510741,510749,510757,510765,510773,510781,510789,510797, 510805,510813,510821,510829,510837,510845,510853,510861,510869,510877, 510885,510893,510901,510909,510917,510925,510933,510941,510949,510957, 510965,510973,510981,510989,510997,511005,511013,511021,511029,511037, 511045,511053,511061,511069,511077,511085,511093,511101,511109,511117, 511125,511133,511141,511149,511157,511165,511173,511181,511189,511197, 511205,511213,511221,511229,511237,511245,511253,511261,511269,511277, 511285,511293,511301,511309,511317,511325,511333,511341,511349,511357, 511365,511373,511381,511389,511397,511405,511413,511421,511429,511437, 511445,511453,511461,511469,511477,511485,511493,511501,511509,511517, 511525,511533,511541,511549,511557,511565,511573,511581,511589,511597, 511605,511613,511621,511629,511637,511645,511653,511661,511669,511677, 511685,511693,511701,511709,511717,511725,511733,511741,511749,511757, 511765,511773,511781,511789,511797,511805,511813,511821,511829,511837, 511845,511853,511861,511869,511877,511885,511893,511901,511909,511917, 511925,511933,511941,511949,511957,511965,511973,511981,511989,511997, 512005,512013,512021,512029,512037,512045,512053,512061,512069,512077, 512085,512093,512101,512109,512117,512125,512133,512141,512149,512157, 512165,512173,512181,512189,512197,512205,512213,512221,512229,512237, 512245,512253,512261,512269,512277,512285,512293,512301,512309,512317, 512325,512333,512341,512349,512357,512365,512373,512381,512389,512397, 512405,512413,512421,512429,512437,512445,512453,512461,512469,512477, 512485,512493,512501,512509,512517,512525,512533,512541,512549,512557, 512565,512573,512581,512589,512597,512605,512613,512621,512629,512637, 512645,512653,512661,512669,512677,512685,512693,512701,512709,512717, 512725,512733,512741,512749,512757,512765,512773,512781,512789,512797, 512805,512813,512821,512829,512837,512845,512853,512861,512869,512877, 512885,512893,512901,512909,512917,512925,512933,512941,512949,512957, 512965,512973,512981,512989,512997,513005,513013,513021,513029,513037, 513045,513053,513061,513069,513077,513085,513093,513101,513109,513117, 513125,513133,513141,513149,513157,513165,513173,513181,513189,513197, 513205,513213,513221,513229,513237,513245,513253,513261,513269,513277, 513285,513293,513301,513309,513317,513325,513333,513341,513349,513357, 513365,513373,513381,513389,513397,513405,513413,513421,513429,513437, 513445,513453,513461,513469,513477,513485,513493,513501,513509,513517, 513525,513533,513541,513549,513557,513565,513573,513581,513589,513597, 513605,513613,513621,513629,513637,513645,513653,513661,513669,513677, 513685,513693,513701,513709,513717,513725,513733,513741,513749,513757, 513765,513773,513781,513789,513797,513805,513813,513821,513829,513837, 513845,513853,513861,513869,513877,513885,513893,513901,513909,513917, 513925,513933,513941,513949,513957,513965,513973,513981,513989,513997, 514005,514013,514021,514029,514037,514045,514053,514061,514069,514077, 514085,514093,514101,514109,514117,514125,514133,514141,514149,514157, 514165,514173,514181,514189,514197,514205,514213,514221,514229,514237, 514245,514253,514261,514269,514277,514285,514293,514301,514309,514317, 514325,514333,514341,514349,514357,514365,514373,514381,514389,514397, 514405,514413,514421,514429,514437,514445,514453,514461,514469,514477, 514485,514493,514501,514509,514517,514525,514533,514541,514549,514557, 514565,514573,514581,514589,514597,514605,514613,514621,514629,514637, 514645,514653,514661,514669,514677,514685,514693,514701,514709,514717, 514725,514733,514741,514749,514757,514765,514773,514781,514789,514797, 514805,514813,514821,514829,514837,514845,514853,514861,514869,514877, 514885,514893,514901,514909,514917,514925,514933,514941,514949,514957, 514965,514973,514981,514989,514997,515005,515013,515021,515029,515037, 515045,515053,515061,515069,515077,515085,515093,515101,515109,515117, 515125,515133,515141,515149,515157,515165,515173,515181,515189,515197, 515205,515213,515221,515229,515237,515245,515253,515261,515269,515277, 515285,515293,515301,515309,515317,515325,515333,515341,515349,515357, 515365,515373,515381,515389,515397,515405,515413,515421,515429,515437, 515445,515453,515461,515469,515477,515485,515493,515501,515509,515517, 515525,515533,515541,515549,515557,515565,515573,515581,515589,515597, 515605,515613,515621,515629,515637,515645,515653,515661,515669,515677, 515685,515693,515701,515709,515717,515725,515733,515741,515749,515757, 515765,515773,515781,515789,515797,515805,515813,515821,515829,515837, 515845,515853,515861,515869,515877,515885,515893,515901,515909,515917, 515925,515933,515941,515949,515957,515965,515973,515981,515989,515997, 516005,516013,516021,516029,516037,516045,516053,516061,516069,516077, 516085,516093,516101,516109,516117,516125,516133,516141,516149,516157, 516165,516173,516181,516189,516197,516205,516213,516221,516229,516237, 516245,516253,516261,516269,516277,516285,516293,516301,516309,516317, 516325,516333,516341,516349,516357,516365,516373,516381,516389,516397, 516405,516413,516421,516429,516437,516445,516453,516461,516469,516477, 516485,516493,516501,516509,516517,516525,516533,516541,516549,516557, 516565,516573,516581,516589,516597,516605,516613,516621,516629,516637, 516645,516653,516661,516669,516677,516685,516693,516701,516709,516717, 516725,516733,516741,516749,516757,516765,516773,516781,516789,516797, 516805,516813,516821,516829,516837,516845,516853,516861,516869,516877, 516885,516893,516901,516909,516917,516925,516933,516941,516949,516957, 516965,516973,516981,516989,516997,517005,517013,517021,517029,517037, 517045,517053,517061,517069,517077,517085,517093,517101,517109,517117, 517125,517133,517141,517149,517157,517165,517173,517181,517189,517197, 517205,517213,517221,517229,517237,517245,517253,517261,517269,517277, 517285,517293,517301,517309,517317,517325,517333,517341,517349,517357, 517365,517373,517381,517389,517397,517405,517413,517421,517429,517437, 517445,517453,517461,517469,517477,517485,517493,517501,517509,517517, 517525,517533,517541,517549,517557,517565,517573,517581,517589,517597, 517605,517613,517621,517629,517637,517645,517653,517661,517669,517677, 517685,517693,517701,517709,517717,517725,517733,517741,517749,517757, 517765,517773,517781,517789,517797,517805,517813,517821,517829,517837, 517845,517853,517861,517869,517877,517885,517893,517901,517909,517917, 517925,517933,517941,517949,517957,517965,517973,517981,517989,517997, 518005,518013,518021,518029,518037,518045,518053,518061,518069,518077, 518085,518093,518101,518109,518117,518125,518133,518141,518149,518157, 518165,518173,518181,518189,518197,518205,518213,518221,518229,518237, 518245,518253,518261,518269,518277,518285,518293,518301,518309,518317, 518325,518333,518341,518349,518357,518365,518373,518381,518389,518397, 518405,518413,518421,518429,518437,518445,518453,518461,518469,518477, 518485,518493,518501,518509,518517,518525,518533,518541,518549,518557, 518565,518573,518581,518589,518597,518605,518613,518621,518629,518637, 518645,518653,518661,518669,518677,518685,518693,518701,518709,518717, 518725,518733,518741,518749,518757,518765,518773,518781,518789,518797, 518805,518813,518821,518829,518837,518845,518853,518861,518869,518877, 518885,518893,518901,518909,518917,518925,518933,518941,518949,518957, 518965,518973,518981,518989,518997,519005,519013,519021,519029,519037, 519045,519053,519061,519069,519077,519085,519093,519101,519109,519117, 519125,519133,519141,519149,519157,519165,519173,519181,519189,519197, 519205,519213,519221,519229,519237,519245,519253,519261,519269,519277, 519285,519293,519301,519309,519317,519325,519333,519341,519349,519357, 519365,519373,519381,519389,519397,519405,519413,519421,519429,519437, 519445,519453,519461,519469,519477,519485,519493,519501,519509,519517, 519525,519533,519541,519549,519557,519565,519573,519581,519589,519597, 519605,519613,519621,519629,519637,519645,519653,519661,519669,519677, 519685,519693,519701,519709,519717,519725,519733,519741,519749,519757, 519765,519773,519781,519789,519797,519805,519813,519821,519829,519837, 519845,519853,519861,519869,519877,519885,519893,519901,519909,519917, 519925,519933,519941,519949,519957,519965,519973,519981,519989,519997, 520005,520013,520021,520029,520037,520045,520053,520061,520069,520077, 520085,520093,520101,520109,520117,520125,520133,520141,520149,520157, 520165,520173,520181,520189,520197,520205,520213,520221,520229,520237, 520245,520253,520261,520269,520277,520285,520293,520301,520309,520317, 520325,520333,520341,520349,520357,520365,520373,520381,520389,520397, 520405,520413,520421,520429,520437,520445,520453,520461,520469,520477, 520485,520493,520501,520509,520517,520525,520533,520541,520549,520557, 520565,520573,520581,520589,520597,520605,520613,520621,520629,520637, 520645,520653,520661,520669,520677,520685,520693,520701,520709,520717, 520725,520733,520741,520749,520757,520765,520773,520781,520789,520797, 520805,520813,520821,520829,520837,520845,520853,520861,520869,520877, 520885,520893,520901,520909,520917,520925,520933,520941,520949,520957, 520965,520973,520981,520989,520997,521005,521013,521021,521029,521037, 521045,521053,521061,521069,521077,521085,521093,521101,521109,521117, 521125,521133,521141,521149,521157,521165,521173,521181,521189,521197, 521205,521213,521221,521229,521237,521245,521253,521261,521269,521277, 521285,521293,521301,521309,521317,521325,521333,521341,521349,521357, 521365,521373,521381,521389,521397,521405,521413,521421,521429,521437, 521445,521453,521461,521469,521477,521485,521493,521501,521509,521517, 521525,521533,521541,521549,521557,521565,521573,521581,521589,521597, 521605,521613,521621,521629,521637,521645,521653,521661,521669,521677, 521685,521693,521701,521709,521717,521725,521733,521741,521749,521757, 521765,521773,521781,521789,521797,521805,521813,521821,521829,521837, 521845,521853,521861,521869,521877,521885,521893,521901,521909,521917, 521925,521933,521941,521949,521957,521965,521973,521981,521989,521997, 522005,522013,522021,522029,522037,522045,522053,522061,522069,522077, 522085,522093,522101,522109,522117,522125,522133,522141,522149,522157, 522165,522173,522181,522189,522197,522205,522213,522221,522229,522237, 522245,522253,522261,522269,522277,522285,522293,522301,522309,522317, 522325,522333,522341,522349,522357,522365,522373,522381,522389,522397, 522405,522413,522421,522429,522437,522445,522453,522461,522469,522477, 522485,522493,522501,522509,522517,522525,522533,522541,522549,522557, 522565,522573,522581,522589,522597,522605,522613,522621,522629,522637, 522645,522653,522661,522669,522677,522685,522693,522701,522709,522717, 522725,522733,522741,522749,522757,522765,522773,522781,522789,522797, 522805,522813,522821,522829,522837,522845,522853,522861,522869,522877, 522885,522893,522901,522909,522917,522925,522933,522941,522949,522957, 522965,522973,522981,522989,522997,523005,523013,523021,523029,523037, 523045,523053,523061,523069,523077,523085,523093,523101,523109,523117, 523125,523133,523141,523149,523157,523165,523173,523181,523189,523197, 523205,523213,523221,523229,523237,523245,523253,523261,523269,523277, 523285,523293,523301,523309,523317,523325,523333,523341,523349,523357, 523365,523373,523381,523389,523397,523405,523413,523421,523429,523437, 523445,523453,523461,523469,523477,523485,523493,523501,523509,523517, 523525,523533,523541,523549,523557,523565,523573,523581,523589,523597, 523605,523613,523621,523629,523637,523645,523653,523661,523669,523677, 523685,523693,523701,523709,523717,523725,523733,523741,523749,523757, 523765,523773,523781,523789,523797,523805,523813,523821,523829,523837, 523845,523853,523861,523869,523877,523885,523893,523901,523909,523917, 523925,523933,523941,523949,523957,523965,523973,523981,523989,523997, 524005,524013,524021,524029,524037,524045,524053,524061,524069,524077, 524085,524093,524101,524109,524117,524125,524133,524141,524149,524157, 524165,524173,524181,524189,524197,524205,524213,524221,524229,524237, 524245,524253,524261,524269,524277,524285,524293,524301,524309,524317, 524325,524333,524341,524349,524357,524365,524373,524381,524389,524397, 524405,524413,524421,524429,524437,524445,524453,524461,524469,524477, 524485,524493,524501,524509,524517,524525,524533,524541,524549,524557, 524565,524573,524581,524589,524597,524605,524613,524621,524629,524637, 524645,524653,524661,524669,524677,524685,524693,524701,524709,524717, 524725,524733,524741,524749,524757,524765,524773,524781,524789,524797, 524805,524813,524821,524829,524837,524845,524853,524861,524869,524877, 524885,524893,524901,524909,524917,524925,524933,524941,524949,524957, 524965,524973,524981,524989,524997,525005,525013,525021,525029,525037, 525045,525053,525061,525069,525077,525085,525093,525101,525109,525117, 525125,525133,525141,525149,525157,525165,525173,525181,525189,525197, 525205,525213,525221,525229,525237,525245,525253,525261,525269,525277, 525285,525293,525301,525309,525317,525325,525333,525341,525349,525357, 525365,525373,525381,525389,525397,525405,525413,525421,525429,525437, 525445,525453,525461,525469,525477,525485,525493,525501,525509,525517, 525525,525533,525541,525549,525557,525565,525573,525581,525589,525597, 525605,525613,525621,525629,525637,525645,525653,525661,525669,525677, 525685,525693,525701,525709,525717,525725,525733,525741,525749,525757, 525765,525773,525781,525789,525797,525805,525813,525821,525829,525837, 525845,525853,525861,525869,525877,525885,525893,525901,525909,525917, 525925,525933,525941,525949,525957,525965,525973,525981,525989,525997, 526005,526013,526021,526029,526037,526045,526053,526061,526069,526077, 526085,526093,526101,526109,526117,526125,526133,526141,526149,526157, 526165,526173,526181,526189,526197,526205,526213,526221,526229,526237, 526245,526253,526261,526269,526277,526285,526293,526301,526309,526317, 526325,526333,526341,526349,526357,526365,526373,526381,526389,526397, 526405,526413,526421,526429,526437,526445,526453,526461,526469,526477, 526485,526493,526501,526509,526517,526525,526533,526541,526549,526557, 526565,526573,526581,526589,526597,526605,526613,526621,526629,526637, 526645,526653,526661,526669,526677,526685,526693,526701,526709,526717, 526725,526733,526741,526749,526757,526765,526773,526781,526789,526797, 526805,526813,526821,526829,526837,526845,526853,526861,526869,526877, 526885,526893,526901,526909,526917,526925,526933,526941,526949,526957, 526965,526973,526981,526989,526997,527005,527013,527021,527029,527037, 527045,527053,527061,527069,527077,527085,527093,527101,527109,527117, 527125,527133,527141,527149,527157,527165,527173,527181,527189,527197, 527205,527213,527221,527229,527237,527245,527253,527261,527269,527277, 527285,527293,527301,527309,527317,527325,527333,527341,527349,527357, 527365,527373,527381,527389,527397,527405,527413,527421,527429,527437, 527445,527453,527461,527469,527477,527485,527493,527501,527509,527517, 527525,527533,527541,527549,527557,527565,527573,527581,527589,527597, 527605,527613,527621,527629,527637,527645,527653,527661,527669,527677, 527685,527693,527701,527709,527717,527725,527733,527741,527749,527757, 527765,527773,527781,527789,527797,527805,527813,527821,527829,527837, 527845,527853,527861,527869,527877,527885,527893,527901,527909,527917, 527925,527933,527941,527949,527957,527965,527973,527981,527989,527997, 528005,528013,528021,528029,528037,528045,528053,528061,528069,528077, 528085,528093,528101,528109,528117,528125,528133,528141,528149,528157, 528165,528173,528181,528189,528197,528205,528213,528221,528229,528237, 528245,528253,528261,528269,528277,528285,528293,528301,528309,528317, 528325,528333,528341,528349,528357,528365,528373,528381,528389,528397, 528405,528413,528421,528429,528437,528445,528453,528461,528469,528477, 528485,528493,528501,528509,528517,528525,528533,528541,528549,528557, 528565,528573,528581,528589,528597,528605,528613,528621,528629,528637, 528645,528653,528661,528669,528677,528685,528693,528701,528709,528717, 528725,528733,528741,528749,528757,528765,528773,528781,528789,528797, 528805,528813,528821,528829,528837,528845,528853,528861,528869,528877, 528885,528893,528901,528909,528917,528925,528933,528941,528949,528957, 528965,528973,528981,528989,528997,529005,529013,529021,529029,529037, 529045,529053,529061,529069,529077,529085,529093,529101,529109,529117, 529125,529133,529141,529149,529157,529165,529173,529181,529189,529197, 529205,529213,529221,529229,529237,529245,529253,529261,529269,529277, 529285,529293,529301,529309,529317,529325,529333,529341,529349,529357, 529365,529373,529381,529389,529397,529405,529413,529421,529429,529437, 529445,529453,529461,529469,529477,529485,529493,529501,529509,529517, 529525,529533,529541,529549,529557,529565,529573,529581,529589,529597, 529605,529613,529621,529629,529637,529645,529653,529661,529669,529677, 529685,529693,529701,529709,529717,529725,529733,529741,529749,529757, 529765,529773,529781,529789,529797,529805,529813,529821,529829,529837, 529845,529853,529861,529869,529877,529885,529893,529901,529909,529917, 529925,529933,529941,529949,529957,529965,529973,529981,529989,529997, 530005,530013,530021,530029,530037,530045,530053,530061,530069,530077, 530085,530093,530101,530109,530117,530125,530133,530141,530149,530157, 530165,530173,530181,530189,530197,530205,530213,530221,530229,530237, 530245,530253,530261,530269,530277,530285,530293,530301,530309,530317, 530325,530333,530341,530349,530357,530365,530373,530381,530389,530397, 530405,530413,530421,530429,530437,530445,530453,530461,530469,530477, 530485,530493,530501,530509,530517,530525,530533,530541,530549,530557, 530565,530573,530581,530589,530597,530605,530613,530621,530629,530637, 530645,530653,530661,530669 } ; static const flex_int32_t yy_def[35545] = { 0, 29840, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,29840,29841, 29841,29840,29841,29841,29841,29840,29842,29843,29840, 69, 69, 69,29842,29841,29841, 69, 76, 76, 76, 76, 76, 76, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82,29841,29841, 69, 69, 69, 69, 69, 69, 69, 102, 102, 102, 102, 102, 102, 102,29841, 29844,29845,29846,29847,29848,29849,29841,29841, 73,29850, 29841,29841,29841,29841,29841,29851,29841,29852, 102,29841, 29841,29841, 73,29841,29841,29841,29841, 73,29841,29841, 29841,29840,29841,29841,29841, 94,29841,29841,29841, 73, 29853,29840, 152, 152, 152, 73,29841, 152, 152, 152, 160, 73,29854,29843,29840, 164,29841,29855,29840, 69, 170, 73, 170, 173, 173,29856, 102, 170, 172, 170, 170, 170, 170,29841, 73, 73,29841,29841, 188, 169, 175, 175, 175, 173, 175, 175, 175, 173, 175, 175, 173, 173, 73, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175,29841,29841,29841,29841,29841,29841, 170, 102, 170, 102, 102, 170, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102,29841,29841,29857,29857,29857,29857,29840, 29857,29857,29858,29858, 254, 254,29857,29859,29859,29860, 29860,29860,29860,29860,29861,29861,29861,29861,29861,29861, 29861,29861,29861,29862,29862, 275, 275, 275,29841,29841, 29841, 73,29863,29863,29863,29841,29864,29841,29841,29841, 29865,29865,29865,29866,29867,29867, 102,29868,29869,29870, 29841,29841,29841,29841, 73, 73,29841,29841,29841,29841, 29841,29841,29840,29871,29872,29840,29840, 317, 73, 317, 317,29873, 317, 319, 317, 317, 317, 319,29841, 316, 317, 321, 321, 321, 73,29874,29841,29875,29875,29840, 340,29876,29841,29840,29877,29878,29878, 347, 347,29840, 350,29879,29840,29840, 354, 354, 356,29841, 319, 359, 359, 359,29879, 356,29880,29881, 353, 354, 361, 354, 354,29841,29841, 73,29841, 361, 376, 376, 376,29841, 29841,29841, 382, 382, 347, 356, 386, 356, 386, 386, 386, 356, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386,29841,29841, 29841,29841,29841, 354, 414, 354, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,29841,29841,29882,29882,29882,29882,29882,29882,29882, 29882,29882,29882,29882,29882,29882,29882,29883,29882,29840, 450, 450, 450,29883,29884,29884,29884,29884,29884,29884, 29884,29884,29884,29885,29885,29885,29885,29885,29885,29885, 29885,29885,29885,29885,29885,29885,29885,29885,29886,29885, 29840, 481, 481, 481,29886, 485,29841,29841,29841, 73, 29887,29887,29841,29888,29888,29888,29841,29841,29841,29841, 29841,29841,29889,29889,29890,29890,29890,29891, 414,29892, 29892,29893,29893,29894,29894,29894,29841,29841,29841,29841, 29841,29841,29841,29841,29841,29841,29841, 73,29895, 73, 29841,29896,29841,29841,29841,29840, 536,29897,29898,29899, 29899, 541, 541,29840, 544,29840, 546, 546, 73, 549, 549, 549, 546,29900, 546, 551, 551, 557, 557, 557, 541, 546, 562, 562, 562, 73,29841,29901,29901,29841, 29902,29902, 572,29841,29840,29903,29841,29904,29840, 579, 29905,29840,29906,29906, 584, 584, 584, 582, 572, 572, 29907,29840, 592,29840, 594, 594, 596, 596,29841, 73, 600, 600, 600, 602, 602, 605, 605, 605, 600, 596, 29908,29908,29909,29907, 614, 614, 614, 594, 605, 594, 29841,29841,29841,29910, 605, 625, 600, 625, 627, 625, 625, 625,29841,29841, 634, 634,29840, 610, 637, 610, 610, 610, 637, 610, 637, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610,29841,29841,29841, 29841,29841, 594, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663,29909, 663, 663, 663,29911, 663,29841, 29841,29912,29912,29912,29912,29912,29912,29912,29912,29912, 29912,29912,29912,29913,29840, 695, 695, 695, 697, 695, 695, 695, 697,29914,29914,29914,29914,29914,29914,29914, 29915,29915,29915,29915,29915,29915,29915,29915,29915,29915, 29915,29915,29915,29916,29840, 725, 725, 725, 727, 725, 725, 725, 727,29915,29841,29841,29841,29917,29917,29841, 29918,29918,29919,29920,29841,29841,29841,29841,29841,29921, 29921,29922,29922,29923, 663,29924,29925,29926,29926,29926, 29926,29841,29841,29841,29841,29841,29841,29841,29841,29841, 29841,29841,29927,29841,29928,29929,29929,29929,29930,29930, 29928,29841,29931,29932,29931,29931,29927, 787, 787,29841, 29841,29841,29931,29840,29933,29934,29840,29935,29935, 799, 799, 799, 797,29936,29936, 805, 805, 781, 808, 808, 808, 810, 810, 813, 813, 813, 808,29937, 813, 813, 820, 808, 820, 822, 820, 820, 820, 805, 805, 805, 781,29938,29938, 833,29841,29841,29939,29840,29940,29841, 29941,29941,29942,29840, 844, 844,29943,29944,29944, 849, 849, 849,29840,29939, 854,29945,29945,29840, 858, 858, 29840, 861, 862, 862,29841, 822, 866, 866, 866, 869, 869, 869, 866, 871, 871, 875, 871, 875, 877, 875, 875, 875, 862,29942, 884,29946, 857, 857, 857, 857, 29943, 877, 861,29841,29841,29841,29947,29948,29947,29841, 875, 901, 901, 901, 904, 904, 904, 901, 904, 901, 901,29841,29841,29841, 914, 914,29841, 854, 883, 854, 883, 883,29949, 854, 883, 854, 883, 883, 883, 883, 883, 883, 883,29950, 883,29950, 883,29951,29841,29841, 29841, 939,29841, 861, 944, 944, 944, 944, 944, 891, 944, 944, 936, 944,29946, 936, 891, 944,29952,29952, 29953,29952,29954,29954,29952, 964, 944,29841,29841,29955, 29955,29955,29955,29955,29955,29955,29955,29956,29955,29955, 29955,29957,29957,29955,29840, 985, 985, 985, 988, 988, 988, 985, 988, 985, 985, 985,29958,29958,29958,29958, 29958,29958,29958,29959,29959,29959,29959,29959,29959,29959, 29959,29959,29960,29959,29959,29959,29961,29961,29959,29961, 29840, 1021, 1021, 1021, 1024, 1024, 1024, 1021, 1024, 1021, 1021, 1021,29841,29841,29841,29962,29962,29841,29963,29963, 29964,29964,29965,29965,29841,29841,29841,29966,29966,29967, 29967,29968,29969,29970,29971,29972,29972,29972,29841,29841, 29841,29841,29841,29841,29841,29841,29841,29841,29973,29974, 29974,29974,29974,29974,29974,29975,29973,29841,29976,29976, 29977,29841,29976,29976,29978,29978,29841,29840,29979,29980, 29981,29981, 1092, 1092, 1092,29840, 1077, 1097, 1097, 1097, 1100, 1100, 1100, 1097, 1102, 1102, 1106, 1102, 1106, 1108, 1106, 1106, 1106,29982, 1106, 1115, 1115, 1115, 1118, 1118, 1118, 1115, 1118, 1115, 1115,29841,29983,29983,29841,29984, 29841,29841,29841,29985,29840,29841,29841,29986,29840,29987, 29840,29840, 1142, 1142, 1142, 1142, 1141,29985, 1148, 1077, 29988,29840,29840, 1153, 1154, 1154,29841, 1077, 1077, 1077, 1077, 1108, 1162, 1162, 1162, 1164, 1164, 1167, 1167, 1167, 1162, 1167, 1167, 1173, 1173, 1173, 1176, 1176, 1176, 1173, 1176, 1173, 1173,29989,29990,29991,29988,29987, 1188, 1077, 1077, 1153,29841,29841,29841,29841,29840,29992,29841, 1077, 1077, 1077, 1077, 1173, 1204, 1108, 1204, 1206, 1204, 1204, 1204, 1077, 1077,29841,29841, 1215, 1215,29841,29841, 1148, 1154, 1148, 1221, 1221,29993,29993,29994,29995,29996,29840, 29997,29995,29997,29993,29998, 1148, 1221, 1148, 1221,29999, 1221,30000, 1221,30000, 1221, 1148, 1221, 1148, 1221,30001, 30001,30002,30001,30003,30003,30001,29841,29841,29841, 1221, 1260, 1260, 1260, 1077, 1077,30004, 1260, 1260, 1148, 1260, 30005,29840,30004, 1260,30006,30006,30006,30007,30007,30006, 30008,30008, 1282, 1282,30006,30006,30006,30006,30006, 1282, 1260,29841,30009,30010,30010,30010,30010,30010,30010, 1297, 30010,30011,30011,30011,30010,30010,30010,30010,30012,30010, 30013,30013, 1312, 1312, 1312, 1315, 1315, 1315, 1317, 1315, 1315, 1315, 1312, 1312,30010,30014,30014,30014,30014,30014, 30014, 1329,30015,30015,30015,30015,30015,30015, 1336,30015, 30016,30017,30017,30017,30017,30015,30015,30015,30015,30018, 30015,30018,30019,30019, 1354, 1354, 1354, 1357, 1357, 1357, 1359, 1357, 1357, 1357, 1354, 1354,30015,30020,29841,29841, 30021,30022,30023,30024,30025,30026,30026,30026,30027,30027, 29841,29841,29841,30028,30028,30029,30029,30030,30031,30031, 30032,30033,30034,30034,30034,29841,29841,30035,29841,29841, 30036,30037,30038,30039,30039,30039,30039,30039,30039,30039, 30039,30039,30039,30040,30038,29841,29841,30037,29840,29841, 29841,30037,30041,30041,29841,29840,30042,29840,29840, 1429, 1429, 1429, 1429, 1428, 1415, 1415, 1415, 1415, 1415, 1439, 1439, 1439, 1441, 1441, 1444, 1444, 1444, 1439, 1444, 1444, 1450, 1450, 1450, 1453, 1453, 1453, 1450, 1453, 1450, 1450, 30043, 1415, 1415, 1415, 1415, 1450, 1466, 1439, 1466, 1468, 1466, 1466, 1466, 1415, 1415,30044,30044,29841,30045,29841, 29841,29841,29841,29841,29841,29841,29841,30046,30047,29840, 30048,30049,30049, 1493, 1493, 1493,29841,30050,30050,30046, 30051,29840,29840, 1503, 1504, 1504,29841, 1468, 1508, 1508, 1508, 1511, 1468, 1511, 1508, 1513, 1513, 1517, 1468, 1517, 1519, 1517, 1517, 1517, 1415, 1415, 1415, 1415, 1517, 1529, 1519, 1529, 1531, 1529, 1529, 1529, 1415, 1415, 1499,30052, 30053, 1415, 1503,29841,29841,29841,30054, 1529, 1548, 1548, 1548, 1551, 1551, 1551, 1548, 1551, 1548, 1548, 1531,29841, 29841, 1561, 1561,29841,29841,29841,29841,30055, 1499, 1504, 1570,30056,30056,30056,30057,30056,30058,30058,30056,30056, 30059,30060,29840,30061,30062,30063,29840, 1587,30056,30064, 30065,30066, 1499, 1570, 1499,30067,30068,30068,30069,30070, 30071,29840,30072,30070,30072,30068,30073, 1570, 1499,30074, 1499, 1570, 1499, 1570, 1499,30074,30075,30075,30075,30075, 30076,30076,30075,30077,30077, 1625, 1625,30075,30075,30075, 30075,30075,30078,30078,30078, 1570, 1636, 1616,30078,30078, 30079, 1636, 1636, 1499, 1636,30080,30078,30078, 1499,29840, 30078, 1499,30079, 1636,30081,30081,30082,30082, 1658,30081, 30081,30083,30083,30081,30081,30081,30081, 1663, 1636,30078, 30084,30084,30085,30085,30085,30085,30085,30085,30086,30085, 30085,30085,30087,29840, 1684, 1684, 1684, 1687, 1687, 1687, 1684, 1687, 1684, 1684, 1684,30088,30088,30088,30088,30089, 30089,30089,30089,30089,30090,30090,30090,30090,30089,30091, 30091,30089,30089,30089,30092,30092,29840, 1717, 1717, 1717, 1720, 1720, 1720, 1717, 1720, 1717, 1717, 1717,30093,30093, 30078,30078,30094,30095,30095,30095,30095,30096,30096,30097, 30098,30098,30098,30098,30099,30099,30099,30100,30100,30078, 30078,30078,30101,30101,30102,30102,30103,30078,30104,30104, 30105,30106,30107,30107,30107,30078,30078,30108,30108,30108, 30108,30108,30108,30108,30108,30108,30108,30108,30108,30108, 30108,30108,30108,30109,30078,30110,30110,30111,30112,30112, 30111,30112,30112,30112,30112,30112,30112,30113,30078,30078, 30114,29840,30114,30078,30114,30115,30115,30078,30116,30116, 1810, 1810, 1810,29840, 1814, 1814, 1814, 1817, 1817, 1817, 1814, 1819, 1819, 1823, 1819, 1823, 1825, 1823, 1823, 1823, 1823, 1831, 1831, 1831, 1831, 1835, 1825, 1835, 1837, 1835, 1835, 1835, 1831, 1831, 1831, 1845, 1845, 1845, 1848, 1848, 1848, 1845, 1848, 1845, 1845, 1837,30117,30117,30078,30078, 30078,30078,30078,30078,30078,30078,30078,30078,30078,30078, 30078,30078,30118,30118, 1874, 1874, 1874, 1874, 1874, 1874, 30119,30119,30120,29840, 1884, 1884, 1884,30121,30078, 1874, 30122,29840, 1892, 1893, 1893,30078, 1831, 1831, 1831, 1831, 1837, 1901, 1901, 1901, 1903, 1903, 1906, 1906, 1906, 1901, 1906, 1906, 1912, 1912, 1912, 1915, 1915, 1915, 1912, 1915, 1912, 1912, 1912, 1923, 1923, 1923, 1926, 1926, 1926, 1923, 1926, 1923, 1923, 1837,30121,29840, 1831, 1892,30078,30078, 30078,30123, 1831, 1831, 1831, 1831, 1923, 1947, 1837, 1947, 1949, 1947, 1947, 1947, 1831, 1831, 1947, 1957, 1957, 1957, 30078,30078, 1962, 1962,30078, 1935, 1935, 1893, 1968,30124, 30124,30124,30124,30125,30125,30124,30126,30126, 1978, 1978, 30124,30124,30124,30124,30124,30124,30127, 1978,30128,29840, 1990,30129,29840,30130,30128,29840,30131,30131,30132,30124, 29840, 2001, 2001,30124,30133,30132, 2006,30134,30135, 1968, 30136,30137,30138,30137,30139,30137,30140,30140,29840, 2018, 2018, 2018,30141,30141,30141,30142,30141,30143,30143,30141, 30141,30144,30145,29840,30146,30147,30148,29840, 2038,30141, 30149,30150,30151,30152,30136, 2045, 2045,30153, 2045,30154, 2045, 2045,30155,30155,30155,30156,30156, 2057,30155,30155, 30157,30157,30155,30155,30155,30155,30158,30158,29840, 2069, 30159,30158,30158,30158,30160,30152, 2069, 2045, 2076,30161, 30158,30158,30158,30158,30158,30158,30158,30160, 2069,30162, 30162,30162,30163,30162,30162,30162,30164,30164,30162,30162, 30162,30162,30162, 2098,30165,30158,30166,30167,30167,30167, 30167,30167,30168,30167,30167,30167,30169,30170,30170, 2119, 2119, 2119, 2122, 2122, 2122, 2124, 2122, 2122, 2122, 2119, 2119, 2119, 2132, 2132, 2132,30171,30171,30171,30172,30172, 30172,30172,30173,30173,30172,30174,30174,30172,30172,30172, 30175,30175,30176,30176, 2154, 2154, 2154, 2157, 2157, 2157, 2159, 2157, 2157, 2157, 2154, 2154, 2154, 2167, 2167, 2167, 30177,30158,30158,30178,30179,30179,30179,30180,30181,30182, 30182,30182,30183,30184,30184,30185,30185,30158,30158,30158, 30186,30186,29840, 2193,30187,30158,30188,30189,30190,30191, 30191,30191,30158,30192,30192,30192,30192,30192,30192,30192, 30192,30192,30192, 2213, 2213, 2213, 2213, 2213, 2213, 2213, 2213,30193,30193, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223,30158,30194, 30195,30195,30195,30196,30196,30196,30196,30196,30196,30196, 30196,30158,30158,30197,29840,30158,30197,30198,30197,30158, 29840, 2261, 2261, 2261,30199,30199, 2266, 2266, 2266, 2269, 2269, 2269, 2271, 2271, 2274, 2274, 2274, 2269, 2274, 2274, 2280, 2280, 2280, 2283, 2283, 2283, 2280, 2283, 2280, 2280, 2280, 2291, 2291, 2291, 2294, 2294, 2294, 2291, 2294, 2291, 2291, 2269, 2266, 2266, 2266, 2266, 2291, 2307, 2302, 2307, 2309, 2307, 2307, 2307, 2266, 2266, 2307, 2317, 2317, 2317, 30200,30200,30158,30158,30158,30158,30158,30158,30158,30158, 30158,30158,30158,30158,30158,30158,30158,30158,30158,30158, 30158,30158,30158,30158,30158,30201,30201, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347,30202,30202,30203, 2359,30204, 2347,29840, 2364, 2365, 2365,30158, 2266, 2369, 2369, 2369, 2372, 2309, 2372, 2369, 2374, 2374, 2378, 2309, 2378, 2380, 2378, 2378, 2378, 2266, 2266, 2266, 2266, 2378, 2390, 2380, 2390, 2392, 2390, 2390, 2390, 2266, 2266, 2266, 2266, 2266, 2266, 2390, 2404, 2392, 2404, 2406, 2404, 2404, 2404, 2266, 2266, 2404, 2414, 2414, 2414,30204,29840, 2266, 2364,30158,30158,30158,30205, 2404, 2426, 2426, 2426, 2429, 2429, 2429, 2426, 2429, 2426, 2426, 2406, 2266, 2414, 2439, 2439,30158,30158, 2443, 2443,30158, 2418, 2418,30206, 2364, 30207,30208,30207,30209,30209, 2455,30207,30207,30210,30210, 30207,30207,30207,30207,30207,30211,30212,30207,29840, 2469, 2469,30213,29840, 2473,30214,30207,30215,29840, 2478,30211, 30216,30217,30218,29840,30207,30219,30217,30220,30221, 2364, 30222,30221,30223,29840,30223,30223,30224,30224,30221,30225, 30225, 2501, 2501,30223,30223,30223,30223,30223, 2501, 2501, 2501,30226,30226,30226,30226,30227,30227,30226,30228,30228, 2520, 2520,30226,30226,30226,30226,30226,30226,30229, 2520, 30230,29840, 2532,30231,29840,30232,30230,29840,30233,30233, 30234,30226,29840, 2543, 2543,30226,30235,30234, 2548,30236, 30237,30237, 2552, 2552,30238,30238,30239,30240,30241,29840, 30242,30240,30242,30238,30243, 2552,30244, 2552, 2552,30245, 30245,30245,30245,30246,30245,30245,30245,30247,30247,30245, 30245,30245,30245,30245,30248,30248,29840,30249,30250,30250, 30248,30248,30248,30251, 2587, 2552, 2552,30248,30248,30248, 30248,30248,30248,30248,30251, 2587,30252,30252,30252,30253, 30252,30252,30252,30252,30252,30252,30254,30252,30252,30252, 2618,30252,30252,29840,30248,30255,30256,30256,30256,30256, 30257,30256,30256,30256,30258,29840, 2636, 2636, 2636, 2639, 2639, 2639, 2636, 2639, 2636, 2636, 2636, 2647, 2636, 2649, 2649,30259,30259,30260,30260,30260,30261,30261,30260,30262, 30262,30260,30260,30260,30263,30263,29840, 2667, 2667, 2667, 2670, 2670, 2670, 2667, 2670, 2667, 2667, 2667, 2678, 2667, 2680, 2680,30264,30248,30248,30265,30266,30266,30266,30267, 30268,30269,30269,30269,30270,30270,30270,30270,30271,30271, 30272,30272,30248,30248,30248,30273,30273,29840, 2708, 2708, 30274,30248,30275,30276,30277,30278,30278,30278,30248,30279, 30279,30279,30279,30279,30279, 2725, 2725, 2725, 2725, 2725, 2725,30280, 2725, 2725, 2725, 2725, 2725,30281,30281, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739, 2739,30248,30282, 30283,30284,30283,30283,30283,30283,30283,30283, 2766,30283, 30248,30285,29840,30285,30286,30286,30285,30248,29840, 2779, 2779, 2779, 2782, 2782, 2782, 2779, 2784, 2784, 2788, 2784, 2788, 2790, 2788, 2788, 2788, 2788, 2796, 2796, 2796, 2796, 2800, 2790, 2800, 2802, 2800, 2800, 2800, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 2814, 2802, 2814, 2816, 2814, 2814, 2814, 2796, 2796, 2796, 2824, 2824, 2824, 2796, 2828, 2828, 2828, 2831, 2831, 2831, 2828, 2831, 2828, 2828, 2816, 2796, 2824, 2841, 2841,30287,30287,30248,30248,30248,30248,30248, 30248,30248,30248,30248,30248,30248,30248,30248,30248,30248, 30248,30248,30288,30289,30288,30248, 2865, 2865, 2865,30290, 30290, 2871,30291,30291,30292,30293,30293,30294, 2871,30248, 2865,29840, 2882, 2883, 2883,30248, 2796, 2796, 2796, 2796, 2816, 2891, 2891, 2891, 2893, 2893, 2896, 2896, 2891, 2896, 2896, 2901, 2901, 2901, 2904, 2904, 2901, 2904, 2901, 2901, 2901, 2911, 2911, 2911, 2914, 2914, 2911, 2914, 2911, 2911, 2816, 2911, 2922, 2922, 2922, 2925, 2925, 2922, 2925, 2922, 2922, 2816, 2922, 2933, 2933,30295,30296,30297,30297,30248, 2796, 2882,30248,30248,30248,30298, 2796, 2796, 2796, 2796, 2922, 2951, 2816, 2951, 2953, 2951, 2951, 2951, 2796, 2796, 2933, 2961, 2961, 2961, 2796, 2796, 2796, 2796, 2961,30248, 30248, 2971, 2971,30248,30295, 2975,30299, 2882,30300,30301, 30301,30301,30300,30300,30302,30300,30300,30300,30303,30303, 30300,30300,30300,30300,30300,30304,30305,29840,30306,29840, 30307,30308,30309,29840,30308,30310,30311,30311,30300,29840, 30300,30312,30313,30314,30315, 2978,30315,30315,30316,29840, 30316,30317,30317, 3023,30315,30318,30318,30316,30316,30316, 30315, 3027, 3027, 3027,30319,30320,30319,30321,30321, 3039, 30319,30319,30322,30322,30319,30319,30319,30319,30319,30323, 30324,30319,29840, 3053, 3053,30325,29840, 3057,30326,30319, 30327,29840, 3062,30323,30328,30329,30330,29840,30319,30331, 30329,30332,30333,30333, 3074, 3074,30334,30334,30334,30335, 30334,30336,30336,30334,30334,30337,30338,29840,30339,30340, 30341,29840, 3092,30334,30342,30343,30344, 3074, 3074, 3074, 30345,30346,30346,30346,30346,30347,30346,30346,30346,30346, 30346,30346,30348,30346,30346,30346, 3114,30346,30349,30345, 29840,30350,30351,30351, 3124,30345,30345,30345,30352,30353, 3074, 3074,30345,30345,30345,30345,30345,30354,30345,30345, 30355,30355,30355,30355,30355,30355,30355,30355,30355,30355, 30355,30355,30355,30355,30355,30356,30355,30355,30355,30355, 30357,29840, 3162, 3162, 3162,30345, 3162, 3162, 3162, 3162, 3170, 3170,30345,30358,30359,30359,30359,30360,30359,30359, 30359,30361,30362,30362, 3184, 3184, 3184, 3187, 3187, 3187, 3189, 3187, 3187, 3187, 3184, 3184, 3184, 3197, 3197, 3197, 3184, 3184, 3184, 3184, 3197,30363,30363,30364,30364,30364, 30365,30365,30366,30366,30364,30364,30364,30367,30367,30368, 30368, 3221, 3221, 3221, 3224, 3224, 3224, 3226, 3224, 3224, 3224, 3221, 3221, 3221, 3234, 3234, 3234, 3221, 3221, 3221, 3221, 3234,30369,30345,30345,30345,30370,30371,30371,30371, 30372,30373,30374,30374,30374,30375,30375,30375,30376,30376, 30377,30377,30345,30345,30345,30378,30379,30380,30380,30380, 30381,30345,30345,30382,30383,30384,30385,30385,30345,30386, 30386,30386,30386,30386,30386,30386,30386,30387,30386,30387, 30388, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,30386,30386,30386, 30386,30386, 3312, 3312, 3312,30389,30389, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 30390, 3317, 3317, 3317, 3317, 3317,30345,30391,30392,30393, 30392,30392,30392,30392,30345,29840,29840,29840,30394,30395, 30394,30345,30396,30396, 3354, 3354, 3354, 3357, 3357, 3357, 3359, 3359, 3362, 3362, 3357, 3362, 3362, 3367, 3367, 3367, 3370, 3370, 3367, 3370, 3367, 3367, 3367, 3377, 3377, 3377, 3380, 3380, 3377, 3380, 3377, 3377, 3357, 3377, 3388, 3388, 3388, 3391, 3391, 3388, 3391, 3388, 3388, 3387, 3388, 3399, 3399, 3354, 3354, 3354, 3354, 3388, 3406, 3387, 3406, 3408, 3406, 3406, 3406, 3354, 3354, 3399, 3416, 3416, 3416, 3354, 3354, 3354, 3354, 3416,30397,30345,30345,30345,30345,30345, 30345,30345,30345,30345,30345,30345,30345,30345,30345,30345, 30398,30398,30399,30399,30400, 3442,30345, 3442,30345, 3442, 30401,30401, 3452, 3452,30402,30402, 3456,30403,30403,30404, 30405,30405, 3462,30406,30406,30407, 3442,29840, 3468, 3469, 3469,30345, 3354, 3473, 3473, 3473, 3473, 3476, 3476, 3473, 3476, 3477, 3477, 3482, 3482, 3482, 3482, 3482, 3488, 3488, 3488, 3488, 3483, 3492, 3492, 3492, 3492, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3483, 3504, 3504, 3504, 3504, 3488, 3488, 3488, 3512, 3512, 3512, 3488, 3488, 3488, 3488, 3488, 3483, 3520, 3520, 3520, 3520, 3488, 3488, 3512, 3528, 3528, 3528, 3528,30408,30408, 3534,29840, 3536,30345,30345, 3468, 30345,30345,30345,30409, 3488, 3545, 3545, 3545, 3548, 3548, 3545, 3548, 3545, 3545, 3483, 3528, 3556, 3556, 3488, 3488, 30345,30345,30345, 3563, 3563,30345, 3534, 3534,30410,30411, 30411,30412,30411,30411,30413,30411,30411,30411,30411,30411, 30411,30414,30411,30411,30411, 3583,30411,30411,30415,29840, 30416,29840,30417,30418,30418, 3595, 3595, 3595, 3595, 3595, 3595,30419,30419,30420,29840, 3595,30421,30411,30422,30411, 30411,30411,30414,30423,30345,30424,30424,30345,30345,30425, 29840,30425,30425,30426,30427,30427,30425,30425,30425,30345, 3626, 3626, 3626,30428,30429,30429,30429,30428,30428,30430, 30428,30428,30428,30431,30431,30428,30428,30428,30428,30428, 30432,30433,29840,30434,29840,30435,30436,30437,29840,30436, 30438,30439,30439,30428,29840,30428,30440,30441,30442,30443, 30443, 3671, 3671,30444,30444,30444,30444,30445,30445,30444, 30446,30446, 3682, 3682,30444,30444,30444,30444,30444,30444, 30447, 3682,30448,29840, 3694,30449,29840,30450,30448,29840, 30451,30451,30452,30444,29840, 3705, 3705,30444,30453,30452, 3710,30454,30455, 3671, 3671,30455,30456,30456,30456,30456, 30456,30456,30456,30456,30456,30456,30456,30456,30456,30456, 30456,30456,30457,30456,30456,30456,30458,30458,30455,29840, 30459,30460,30459,30459,30459,30455,30455,30461,30455,30455, 30455,30455, 3671, 3671,30455,30455,30455,30455,30455,30455, 30455,30455,30455,30462,30462,30462,30462,30462,30462,30462, 30462,30462,30462,30462,30462,30462,30462,30462,30462,30462, 30462,30462,30462,30462,30462,30462,30462,30462,30462,30462, 29840,30463,30464, 3791,29840, 3795,30455, 3795,30465, 3795, 3797, 3795, 3795, 3795,30455,30464, 3795, 3795, 3806, 3806, 3806,30455,30466,30467,30467,30468,30467,30467,30467,30469, 29840, 3821, 3821, 3821, 3824, 3824, 3821, 3824, 3821, 3821, 3821, 3821, 3832, 3832, 3831, 3835,30470,30470,30471,30471, 30471,30472,30472,30473,30473,30471,30471,30471,30474,30474, 29840, 3851, 3851, 3851, 3854, 3854, 3851, 3854, 3851, 3851, 3851, 3851, 3862, 3862, 3861, 3865,30475,30455,30455,30476, 30477,30477,30477,30478,30479,30480,30480,30481,30481,30482, 30482,30483,30483,30455,30455,30455,30484,30484,30485,30486, 30486,30486,30487,30455,30488,30489,30490,30490, 3898,30491, 30491,30455,30492,30492, 3904, 3904, 3904, 3904,30493, 3904, 30493, 3904,30494, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3911, 3904, 3904, 3904, 3904, 3904, 3904, 3904, 3904, 30495,30495,30495, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943,30496, 3943,30496, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3943, 3943, 3943, 3943, 3943, 3943, 3943, 3943,30455, 30455,30497,30498,30497,30497,30497,30455,29840,29840,29840, 30499,29840,29840,30500,30501,30500,30455,29840, 3998, 3998, 3998, 3998, 4001, 4001, 3998, 4001, 4002, 4002, 4007, 4007, 4007, 4007, 4007, 4013, 4013, 4013, 4013, 4008, 4017, 4017, 4017, 4017, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4008, 4029, 4029, 4029, 4029, 4013, 4013, 4013, 4037, 4037, 4037, 4013, 4013, 4013, 4013, 4013, 4008, 4045, 4045, 4045, 4045, 4013, 4013, 4037, 4053, 4053, 4053, 4053, 4013, 4058, 4058, 4058, 4061, 4061, 4058, 4061, 4058, 4058, 4008, 4053, 4069, 4069, 4013, 4013,29840,30455,30455,30455,30455,30455,30455, 30455,30455,30455,30455,30455,30455,30455,30455,30455,30455, 30455,30502,30502, 4093,30503,30503, 4096,30504,30504,30505, 4093,30455,30455, 4093,30455,30506,30506, 4107, 4107, 4107, 30507,30507, 4112, 4112,30508,30508, 4116,30509,30509,30510, 30511,30511, 4122, 4122,30512,30512, 4126,30513,30513,30514, 4093,29840, 4132, 4133, 4133,30455,30515,30515, 4138, 4138, 4138, 4138, 4141, 4141, 4144, 4141, 4141, 4141, 4144, 4149, 4149, 4151, 4149, 4149, 4149, 4149, 4156, 4156, 4158, 4156, 4156, 4156, 4141, 4156, 4164, 4164, 4166, 4164, 4164, 4164, 4163, 4164, 4172, 4172, 4164, 4175, 4175, 4177, 4175, 4175, 4175, 4163, 4172, 4183, 4183,30516,30517,30455, 4132,30455, 30455,30518, 4138, 4138, 4138, 4138, 4175, 4163, 4197, 4197, 4197, 4197, 4138, 4138, 4183, 4205, 4205, 4205, 4205, 4138, 4138, 4138, 4138,30455,30455, 4215, 4215,30455,30455,30516, 4220, 4220,30519,30519,30520,30519,30519,30519,30519,30519, 30519,30519,30519,30519,30519,30519,30519,30519,30521,30519, 30519,30519,30522,30519,29840,30523,30523, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247,30524,30524,30525, 4259,30526,29840, 4247,30527,30519,30521,30455,30528,30528, 30455,30455,30529,29840,30529,30455,30530,30455,30531,30529, 30529,30529,30531,30455, 4283,30532,30532,30533,30532,30532, 30534,30532,30532,30532,30532,30532,30532,30535,30532,30532, 30532, 4299,30532,30532,30536,29840,30537,29840,30538,30539, 30539, 4311, 4311, 4311, 4311, 4311, 4311,30540,30540,30541, 29840, 4311,30542,30532,30543,30532,30532,30532,30535,30544, 30545,30545, 4332, 4332,30546,30547,30546,30548,30548, 4339, 30546,30546,30549,30549,30546,30546,30546,30546,30546,30550, 30551,30546,29840, 4353, 4353,30552,29840, 4357,30553,30546, 30554,29840, 4362,30550,30555,30556,30557,29840,30546,30558, 30556,30559,30560, 4332, 4332,30560,30561,30561,30561,30561, 30561,30561,30561,30561,30561,30561,30561,30561,30561,30561, 30561,30561,30561,30561,30561,30561,30561,30561,30561,30561, 30561,30561,30561,30562,30562, 4405,30560,29840, 4408,30563, 30560,29840,30560,30563,30563,30563,30564,30560,30560,30560, 30560, 4332, 4332,30560,30560,30560,30560,30560,30560,30560, 29840,30565,30565,30565,30565,30565,30565,30565,30565,30565, 30565,30565,30565,30565,30565,30565,30565,30565,30565,30565, 30565,29840, 4452,30566,30560,30566, 4456, 4456, 4456,29840, 4460, 4460,30560, 4463,30560, 4463, 4460,30567, 4460, 4465, 4465, 4471, 4471, 4471, 4460, 4475, 4475, 4475, 4475, 4475, 30560,30568,30569,30569,30570,30569,30569,30571,30572,30572, 4490, 4490, 4490, 4490, 4493, 4493, 4493, 4493, 4490, 4490, 4490, 4501, 4501, 4501, 4501, 4490, 4490, 4490, 4490,30573, 30573,30574,30574,30574,30575,30575,30576,30576,30574,30574, 30577,30577,30578,30578, 4524, 4524, 4524, 4524, 4527, 4527, 4527, 4527, 4524, 4524, 4524, 4535, 4535, 4535, 4535, 4524, 4524, 4524, 4524,30579,30560,30560,30580,30581,30582,30583, 30584,30585,30586,30587,30587,30588,30588,30589,30589,30560, 30560,30560,30590,30590, 4564,30591,30592,30592,30592,30593, 30560,30594,30595,30596,30596, 4575, 4575,30597,30597,30560, 30598,30598,30598,30598,30598,30598, 4586, 4586, 4586,30599, 30600,30600, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4592, 4586, 4586, 4586, 4586, 4586, 4586,30601,30601, 4615, 4615, 4615, 4615, 4615, 4615, 4615,30602, 4615,30602, 4615, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4625, 4615, 4615, 4615, 4615, 4615, 4615, 4615, 4615,30560,30603,30604,30604, 30560,29840,29840,29840,29840,29840,29840,30605,30606,30605, 30560,30607,30607, 4673, 4673, 4673, 4673, 4676, 4676, 4679, 4676, 4676, 4676, 4679, 4684, 4684, 4686, 4684, 4684, 4684, 4684, 4691, 4691, 4693, 4691, 4691, 4691, 4676, 4691, 4699, 4699, 4701, 4699, 4699, 4699, 4698, 4699, 4707, 4707, 4699, 4710, 4710, 4712, 4710, 4710, 4710, 4698, 4707, 4718, 4718, 4673, 4673, 4673, 4673, 4710, 4698, 4725, 4725, 4725, 4725, 4673, 4673, 4718, 4733, 4733, 4733, 4733, 4673, 4673, 4673, 4673, 4673,29840,30560,30560,30560,30560,30560,30560,30560, 30608,30608, 4752, 4752,30609,30610,30609, 4757, 4757,30611, 30611, 4761,30612,30612,30613,30614,30614,30615, 4752,30560, 30560,30560,30616,30616, 4774, 4774, 4774,30617,30617, 4779, 4779, 4779,30618,30618, 4784, 4784,30619,30619, 4788,30620, 30621,30621,30622,30622, 4794, 4794, 4794,30623,30623, 4799, 4799,30624,30624, 4803,30625,30626,30626, 4752,29840, 4809, 4810, 4810,30560,29840, 4814, 4814, 4814, 4816, 4814, 4817, 4817, 4820, 4820, 4814, 4814, 4820, 4826, 4826, 4826, 4821, 4829, 4829, 4826, 4826, 4826, 4826, 4826, 4826, 4821, 4838, 4838, 4826, 4826, 4826, 4844, 4844, 4844, 4826, 4826, 4826, 4826, 4821, 4851, 4851, 4826, 4826, 4844, 4857, 4857, 4857, 4857, 4826, 4826, 4826, 4826, 4821, 4865, 4865, 4826, 4826, 4857, 4871, 4871, 4871, 4871,29840,30560,29840,30560, 4809, 30560,30560,30627, 4826, 4884, 4884, 4886, 4884, 4884, 4884, 4821, 4871, 4892, 4892, 4826, 4826,30560,30560, 4898, 4898, 30560,30560,30560, 4876, 4876,30628,30628,30629,30628,30628, 30628,30628,30628,30628,30628,30628,30628,30628,30628,30628, 30628,30628,30628,30628,30628,30628,30628,30628,30628,30628, 30628,30628,30628,30630,30631,30630,30628, 4936, 4936, 4936, 30632,30632, 4942,30633,30633,30634,30635,30635,30636, 4942, 30637, 4936,30638,30628,30639,30560,30640,30641,30560,30642, 30560,30643,30644,30645,30645,30644,30560, 4966,30646,30646, 30647,30646,30646,30646,30646,30646,30646,30646,30646,30646, 30646,30646,30646,30646,30648,30646,30646,30646,30649,30646, 29840,30650,30650, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993,30651,30651,30652, 5005,30653,29840, 4993, 30654,30646,30648,30655,30560,30656,30560,30560,30657,30658, 30658,30658,30657,30657,30659,30657,30657,30657,30660,30660, 30657,30657,30657,30657,30657,30661,30662,29840,30663,29840, 30664,30665,30666,29840,30665,30667,30668,30668,30657,29840, 30657,30669,30670,30671,30560,30656, 5056,30560,30672,30672, 30672,30672,30672,30672,30672,30672,30672,30672,30672,30672, 30672,30672,30672,30672,30672,30672,30672,30560,30673,30560, 29840, 5081,30674,30674,30674,30560,30560,30560,30560,30560, 30560,30560,30560, 5056, 5056,30560,30560,30560,30560,30560, 30560,29840, 5102, 5102, 5102,30560, 5102, 5102, 5102, 5109, 30675,30675,30675,30675,30675,30675,30675,30675,30675,30675, 30675,30675,30675,30675,30675,30675,30675,30675,29840,30676, 5129,30676, 5132, 5132, 5132,30677,30677, 5137, 5137,30560, 5140, 5140, 5140, 5142, 5142, 5145, 5145, 5145, 5140,30678, 5145, 5145, 5152,30560, 5152, 5154, 5152, 5152, 5152, 5137, 5137, 5137, 5137, 5137,30560,30679,30680,30680,30681,30680, 30680,30682,29840, 5173, 5173, 5175, 5173, 5173, 5173, 5173, 5173, 5181, 5181, 5180, 5184,30683,30683,30684,30684,30685, 30686,30686,30687,30687,30684,30684,30688,30688,29840, 5199, 5199, 5201, 5199, 5199, 5199, 5199, 5199, 5207, 5207, 5206, 5210,30689,30560,30560,30690,30691,30692,30692,30692,30692, 30692,30693,30694,30695,30695,29840,30695,30695,30695,30696, 30696,30697,30697,30698,30698,30560,30560,30560,30699,30700, 30699,30701,30701,30701,30702,30560,30703,30704,30705,30706, 30705,30705,30705,30560,30707,30707,30708,30708,30707, 5258, 30707,30707,30709, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 5258, 30707, 5258,30707,30707,30707,30707,30710,30710, 5288, 5288, 5288, 5288, 5288, 5288, 5288, 5288, 5288, 5288,30711,30711, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5300, 5288, 5288, 5288, 5288, 5288, 5288,30560,30712,30713,30713,30560,29840, 29840,29840,29840,29840,29840,30714,30714,30715,30714,30560, 29840, 5341, 5341, 5341, 5343, 5341, 5344, 5344, 5347, 5347, 5341, 5341, 5347, 5353, 5353, 5353, 5348, 5356, 5356, 5353, 5353, 5353, 5353, 5353, 5353, 5348, 5365, 5365, 5353, 5353, 5353, 5371, 5371, 5371, 5353, 5353, 5353, 5353, 5348, 5378, 5378, 5353, 5353, 5371, 5384, 5384, 5384, 5384, 5353, 5353, 5353, 5353, 5348, 5392, 5392, 5353, 5353, 5384, 5398, 5398, 5398, 5398, 5353, 5403, 5403, 5405, 5403, 5403, 5403, 5348, 5398, 5411, 5411, 5353, 5353, 5353,29840,30716,30716,30716, 30716,30716,30716,30716,30716,30717,30717, 5427, 5427, 5427, 30718,30718,30719,30719,30720, 5432, 5432, 5432,30721,30721, 5440, 5440,30722,30722, 5444,30723,30723,30724,30725,30725, 5450,30726,30726,30727,30716,30716,30716, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427,30728,30728, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469,30729,30729, 5484, 5484, 5484, 5484, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427,29840, 5504, 5505, 5505,30716,30730,30730, 5510, 5510, 5510, 5512, 5512, 5515, 5512, 5515, 5518, 5515, 5520, 5518, 5510, 5510, 5518, 5525, 5520, 5527, 5525, 5527, 5527, 5531, 5527, 5533, 5531, 5530, 5531, 5537, 5537, 5531, 5540, 5533, 5542, 5540, 5530, 5537, 5546, 5546, 5540, 5549, 5542, 5551, 5549, 5530, 5546, 5555, 5555,30731,30716,30732, 30716,29840,30716,30716,30733, 5510, 5510, 5510, 5549, 5530, 5569, 5569, 5510, 5510, 5555, 5575, 5575, 5575, 5575, 5510, 5510, 5510, 5510,30716,30716, 5585, 5585,30716,30716,30731, 5590,30734,30735,30734,30734,30734,30734,30734,30734,30734, 30734,30734,30734,30734,30734,30734,30734,30734,30734,30734, 30734,30736,30736,30737,30737,30738, 5613,30734, 5613,30734, 5613,30739,30739, 5623, 5623,30740,30740, 5627,30741,30741, 30742,30743,30743, 5633,30744,30744,30745, 5613,30746,30734, 30747,30716, 5590,30748,30716,30749,30750,30749,30716,30751, 30752,30716,30752,30753,30753,30754,30753,30753,30753,30753, 30753,30753,30753,30753,30753,30753,30753,30753,30753,30753, 30753,30753,30753,30753,30753,30753,30753,30753,30753,30753, 30753,30755,30756,30755,30753, 5684, 5684, 5684,30757,30757, 5690,30758,30758,30759,30760,30760,30761, 5690,30762, 5684, 30763,30753,30764,30765,30765,30765,30716,30766,30716,30716, 30716,30767,30767,30768,30767,30767,30769,30767,30767,30767, 30767,30767,30767,30770,30767,30767,30767, 5725,30767,30767, 30771,29840,30772,29840,30773,30774,30774, 5737, 5737, 5737, 5737, 5737, 5737,30775,30775,30776,29840, 5737,30777,30767, 30778,30767,30767,30767,30770,30779,30716,30766,30716,30716, 30780,30780,30780,30780,30780,30780,30780,30780,30780,30780, 30780,30780,30780,30780,30780,30780,30780,30716,30781,30716, 29840,30782,30783,30783,30783,30716,30716,30716,30716,30716, 30716,30716, 5758, 5758,30716,30716,30716,30716,30716,30716, 30716,29840,29840, 5803,30716, 5803, 5803, 5805, 5803, 5803, 5803,30716, 5803, 5803,30784,30784,30784,30784,30784,30784, 30784,30784,30784,30784,30784,30784,30784,30784,30784,30784, 30784,30784,30784,30784,29840,30785,30785, 5837, 5837, 5837, 30716, 5841, 5841, 5841, 5844,30716, 5844, 5841, 5846, 5846, 5850,30716, 5850, 5852, 5850, 5850, 5850,30786, 5850, 5859, 5859, 5859, 5862, 5862, 5862, 5859, 5862, 5859, 5859,30787, 30787, 5871,30716,30788,30789,30789,30790,30789,30789,30791, 30792,30792, 5882, 5882, 5882, 5884, 5884, 5882, 5882, 5882, 5890, 5890, 5890, 5890, 5882, 5882, 5882, 5882,30793,30793, 30794,30794,30795,30795,30795,30795,30796,30796,30797,30797, 30794,30794,30798,30798,30799,30799, 5916, 5916, 5916, 5918, 5918, 5916, 5916, 5916, 5924, 5924, 5924, 5924, 5916, 5916, 5916, 5916,30800,30716,30716,30801,30802,30803,30803,30803, 30804,30805,30806,30807,30807,30808,30808,30809,30809,30716, 30716,30716,30810,30811,30810,30812,30812,30813,30716,30814, 30815,30816,30817,30816,30816,30716,30818,30818, 5968,30819, 30819, 5968, 5968, 5968,30820, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5971, 5968, 5968, 5968, 5968, 5968,30821,30821,30821, 5999, 5999,30822,30822, 5999, 6003, 5999, 5999, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 6003, 5999, 6003, 5999, 5999, 5999, 5999,30716,30823,30824,30824,30716,30825,29840, 30826,29840,29840,30826,30827,30827,30827,30827,30716,30828, 30828, 6051, 6051, 6051, 6053, 6053, 6056, 6053, 6056, 6059, 6056, 6061, 6059, 6051, 6051, 6059, 6066, 6061, 6068, 6066, 6068, 6068, 6072, 6068, 6074, 6072, 6071, 6072, 6078, 6078, 6072, 6081, 6074, 6083, 6081, 6071, 6078, 6087, 6087, 6081, 6090, 6083, 6092, 6090, 6071, 6087, 6096, 6096, 6051, 6051, 6051, 6090, 6071, 6102, 6102, 6051, 6051, 6096, 6108, 6108, 6108, 6108, 6051, 6051, 6051, 6051, 6051,29840,30829,30829, 30829,30829,30829,30829,30829,30829,30830,30830, 6128, 6128, 6128,30831,30831, 6133,30832,30832, 6136,30833,30833,30834, 6133, 6133,30835,30835, 6144, 6144, 6144,30836,30836, 6149, 6149,30837,30837, 6153,30838,30838,30839,30840,30840, 6159, 6159,30841,30841, 6163,30842,30842,30843,30844,30844,30845, 30845, 6171, 6171, 6171,30844,30844,30844,30844,30844,30844, 6171,29840, 6182, 6183, 6183,30844,29840, 6187, 6187, 6187, 6189, 6191, 6191, 6189, 6189, 6189, 6189, 6197, 6197, 6187, 6189, 6189, 6189, 6189, 6204, 6204, 6204, 6207, 6207, 6207, 6189, 6189, 6189, 6189, 6214, 6214, 6207, 6217, 6217, 6217, 6217, 6189, 6189, 6189, 6189, 6225, 6225, 6217, 6228, 6228, 6228, 6228, 6189, 6189, 6189, 6189, 6236, 6236, 6228, 6239, 6239, 6239, 6239,29840,30844,30844,29840,30844, 6182,30844, 30844,30846, 6236, 6253, 6236, 6255, 6253, 6255, 6239, 6259, 6259, 6189,30844,30844,30844, 6265, 6265,29840,30844, 6244, 6244,30847,30848,30847,30847,30847,30847,30847,30847,30847, 30847,30847,30847,30847,30847,30847,30847,30847,30849,30849, 6290,30850,30850, 6293,30851,30851,30852, 6290,30847,30847, 6290,30847,30853,30853, 6304, 6304, 6304,30854,30854, 6309, 6309,30855,30855, 6313,30856,30856,30857,30858,30858, 6319, 6319,30859,30859, 6323,30860,30860,30861, 6290,30862,30847, 30863,30864,30865,30865,30864,30864,29840,30866,30867,30864, 30867,30868,30869,30868,30868,30868,30868,30868,30868,30868, 30868,30868,30868,30868,30868,30868,30868,30868,30868,30868, 30868,30870,30870,30871,30871,30872, 6363,30868, 6363,30868, 6363,30873,30873, 6373, 6373,30874,30874, 6377,30875,30875, 30876,30877,30877, 6383,30878,30878,30879, 6363,30880,30868, 30881,30882,30882,30882,30882,30883,30883,30884,30883,30883, 30883,30885,30885,30886,30885,30885,30885,30885,30885,30885, 30885,30885,30885,30885,30885,30885,30885,30887,30885,30885, 30885,30888,30885,29840,30889,30889, 6426, 6426, 6426, 6426, 6426, 6426, 6426, 6426, 6426, 6426,30890,30890,30891, 6438, 30892,29840, 6426,30893,30885,30887,30883,30884,30883,30883, 30894,30894,30894,30894,30894,30894,30894,30894,30894,30894, 30894,30894,30894,30894,30894,30894,30894,30894,30894,30883, 30883,30895,30896, 6448,30897,30897,30897,30883,30883,30883, 30883,30883,30883,30883, 6448, 6448,30883,30883,30883,30883, 30883,30883,30898,30898, 6494, 6494,29840, 6497, 6497,30883, 6500,30883, 6500, 6497, 6497, 6502, 6502, 6507, 6507, 6507, 6497,30899,30899,30899,30899,30899,30899,30899,30899,30899, 29840, 6521,29840, 6523, 6523, 6523,30883,30883,30883,30883, 30883, 6531, 6531, 6531, 6533, 6533, 6536, 6536, 6536, 6531, 6536, 6536, 6542, 6542, 6542, 6545, 6545, 6545, 6542, 6545, 6542, 6542,30900,30883,30883,30883,30883, 6542, 6558,30883, 6558, 6560, 6558, 6558, 6558,30883,30883,30901,30901, 6569, 30883,30902,30903,30903,30904,30903,30903,30905,29840, 6579, 6579, 6581, 6579, 6581, 6581, 6585, 6585, 6581,30906,30906, 30907,30907,30908,30908,30908,30909,30909,30910,30910,30907, 30907,30911,30911,29840, 6604, 6604, 6606, 6604, 6606, 6606, 6610, 6610, 6606,30912,30883,30883,30883,30913,30914,30915, 30915,30915,30916,30917,30918,30919,30919,30920,30920,30921, 30921,30883,30883,30883,30922,30922,30922,30923,30923,30924, 30883,30925,30926,30927,30927,30927,30927,30883,30928,30928, 30928,30929,30928,30928,30928,30930,30929, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657,30928, 30928,30928,30931,30931, 6674, 6674, 6674, 6674,30932,30932, 6674, 6674, 6674, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6680, 6674, 6674, 6674, 6674, 6674,30883,30883,30933, 30934,30934,30883,29840,29840,29840,30935,30935,30935,30883, 29840, 6721, 6721, 6721, 6723, 6725, 6725, 6723, 6723, 6723, 6723, 6731, 6731, 6721, 6723, 6723, 6723, 6723, 6738, 6738, 6738, 6741, 6741, 6741, 6723, 6723, 6723, 6723, 6748, 6748, 6741, 6751, 6751, 6751, 6751, 6723, 6723, 6723, 6723, 6759, 6759, 6751, 6762, 6762, 6762, 6762, 6723, 6723, 6723, 6723, 6770, 6770, 6762, 6773, 6773, 6773, 6773, 6770, 6778, 6770, 6780, 6778, 6780, 6773, 6784, 6784, 6723, 6723,29840,30883, 30883,30883,30883,30883,30883,30883,30883,30883,30936,30936, 6800, 6800, 6800,30937,30937, 6805, 6805,30938,30938, 6809, 6809,30939,30939, 6813,30940,30940,30941,30942,30942,30943, 6805,30944,30944, 6823, 6823, 6823,30945,30945, 6828, 6828, 6828,30946,30946, 6833, 6833,30947,30947, 6837,30948,30949, 30949,30950,30950, 6843, 6843, 6843,30951,30951, 6848, 6848, 30952,30952, 6852,30953,30954,30954,30955,30955,29840, 6859, 6860, 6860,30955,30956,30956, 6865, 6865, 6867, 6867, 6867, 6870, 6870, 6865, 6873, 6873, 6873, 6870, 6877, 6877, 6877, 6880, 6880, 6877, 6883, 6883, 6880, 6886, 6886, 6883, 6889, 6889, 6886, 6892, 6892, 6889, 6895, 6895, 6892, 6898, 6898, 30957,30955,30958,30955, 6859,30955,30955,30959, 6865, 6865, 6865, 6895, 6912, 6912, 6898, 6915, 6915, 6915, 6915,30955, 30955,30955, 6922, 6922,29840,30960,29840, 6927, 6927, 6927, 30955,30961, 6927, 6927, 6927,30962,30963,30964, 6935,30955, 30957, 6941,30965,30966,30965,30965,30965,30965,30965,30965, 30965,30965,30965,30965,30965,30965,30965,30965,30965,30965, 30965,30967,30967, 6963, 6963,30968,30969,30968, 6968, 6968, 30970,30970, 6972,30971,30971,30972,30973,30973,30974, 6963, 30965,30965,30965,30975,30975, 6985, 6985, 6985,30976,30976, 6990, 6990, 6990,30977,30977, 6995, 6995,30978,30978, 6999, 30979,30980,30980,30981,30981, 7005, 7005, 7005,30982,30982, 7010, 7010,30983,30983, 7014,30984,30985,30985, 6963,30986, 30965,30965,30987,30988,30988,30987,30987,29840,30989,30990, 30989,30987,30991,30992,30991,30991,30991,30991,30991,30991, 30991,30991,30991,30991,30991,30991,30991,30991,30991,30993, 30993, 7051,30994,30994, 7054,30995,30995,30996, 7051,30991, 30991, 7051,30991,30997,30997, 7065, 7065, 7065,30998,30998, 7070, 7070,30999,30999, 7074,31000,31000,31001,31002,31002, 7080, 7080,31003,31003, 7084,31004,31004,31005, 7051,31006, 30991,31007,31008,31008,31008,31008,31008,31009,31009,31010, 31009,31009,31009,31011,31011,31012,31011,31011,31011,31011, 31011,31011,31011,31011,31011,31011,31011,31011,31011,31011, 31011,31011,31011,31011,31011,31011,31011,31011,31011,31011, 31011,31013,31014,31013,31011, 7134, 7134, 7134,31015,31015, 7140,31016,31016,31017,31018,31018,31019, 7140,31020, 7134, 31021,31011,31022,31009,31009,31009,31009,31023,31023,31023, 31023,31023,31023,31023,31023,31009,31024,31024,31024,31010, 7170,31025,31025,31025,31009,31009,31009,31009,31009,31009, 31009,31009, 7170,31009,31009,31009,31009,31009,29840,29840, 7190, 7190, 7190,31026,31026, 7195, 7195,31009, 7198, 7198, 7198, 7200, 7200, 7203, 7203, 7203, 7198, 7203, 7203, 7209, 31009, 7209, 7211, 7209, 7209, 7209, 7195,31027,31027,31027, 31027,31027,31027,31027,31027,31027,31027,31028,31028, 7229, 7229, 7211, 7232, 7232, 7232, 7235, 7211, 7235, 7232, 7237, 7237, 7241, 7211, 7241, 7243, 7241, 7241, 7241,31009,31009, 31009,31009, 7241, 7253,31009, 7253, 7255, 7253, 7253, 7253, 31009,31009, 7253, 7263, 7263, 7263, 7266, 7266, 7266, 7263, 7266, 7263, 7263,31009,31029,31029,31009,31030,31031,31031, 31032,31031,31031,31033,31034,31034, 7286, 7286, 7288, 7288, 7286, 7291, 7291, 7291, 7291,31035,31035,31036,31036,31037, 31037,31037,31038,31038,31039,31039,31036,31036,31040,31041, 31042,31042, 7312, 7312, 7314, 7314, 7312, 7317, 7317, 7317, 7317,31043,31009,31009,31044,31045,31046,31046,31046,31047, 31048,31049,31050,31050,31051,31051,31052,31052,31009,31009, 31009,31053,31053,31054,31054,31055,31056,31057,31058,31059, 31060,31059,31009,31061,31061,31062,31061,31061,31062,31063, 7359, 7359, 7359, 7359, 7359, 7359, 7359, 7359, 7359, 7359, 7359, 7359, 7359,31061,31064,31064, 7376, 7376,31065, 7376, 31066, 7376, 7376, 7376,31066, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7376, 7376, 7376,31009,31009,31067,31068,31068,31009,29840, 29840,31069,31069,31069,31009,31070,31070, 7417, 7417, 7419, 7419, 7419, 7422, 7422, 7417, 7425, 7425, 7425, 7422, 7429, 7429, 7429, 7432, 7432, 7429, 7435, 7435, 7432, 7438, 7438, 7435, 7441, 7441, 7438, 7444, 7444, 7441, 7447, 7447, 7444, 7450, 7450, 7417, 7417, 7417, 7447, 7456, 7456, 7450, 7459, 7459, 7459, 7459, 7417,29840,31009,31009,31009,31009,31009, 31009,31009,31009,31009,31071,31071, 7476, 7476, 7476,31072, 31072, 7481, 7481, 7481,31073,31073, 7486, 7486, 7486,31074, 31074, 7491, 7491,31075,31075, 7495,31076,31076,31077,31078, 31078, 7501,31079,31079,31080, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481,31081,31081, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 31082,31082, 7532, 7532, 7532, 7532, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481,31009,31009,29840, 7554, 7555, 7555,31083,31084,31084, 7560, 7560, 7560, 7560, 7560, 7565, 7565, 7560, 7560, 7560, 7560, 7560, 7560, 7560, 7571, 7560, 7560, 7560, 7571, 7560, 7560, 7560, 7571,29840,31009,31009,31085,31085,31009,29840, 31086,29840,31086,31009, 7554,31009,31009,31087, 7560, 7599, 7599, 7571, 7602, 7602,31009,31009, 7606, 7606,31088,29840, 7610, 7610, 7610,31009, 7610, 7610, 7610,31089, 7617,31090, 29840,31090,31091,31092,31093, 7621,29840, 7627,31009, 7627, 31094, 7627, 7629, 7627, 7627, 7627,31009,31095,31095, 7627, 31093,31096,31096,31097,31098,31099,31099,31100,31091, 7641, 31009,31009,31101,31102,31102,31102,31102,31102,31102,31102, 31103,31103, 7662, 7662, 7662,31104,31104,31105,31105,31106, 7667, 7667, 7667,31107,31107, 7675, 7675,31108,31108, 7679, 31109,31109,31110,31111,31111, 7685,31112,31112,31113,31102, 31102,31102, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662,31114,31114, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704,31115,31115, 7719, 7719, 7719, 7719, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662,31116,31102, 31102,31117,31118,31118,31117,31117,29840,31119,31120,31119, 31117,31121,31122,31121,31121,31121,31121,31121,31121,31121, 31121,31121,31121,31121,31121,31121,31121,31121,31121,31121, 31123,31123, 7772, 7772,31124,31125,31124, 7777, 7777,31126, 31126, 7781,31127,31127,31128,31129,31129,31130, 7772,31121, 31121,31121,31131,31131, 7794, 7794, 7794,31132,31132, 7799, 7799, 7799,31133,31133, 7804, 7804,31134,31134, 7808,31135, 31136,31136,31137,31137, 7814, 7814, 7814,31138,31138, 7819, 7819,31139,31139, 7823,31140,31141,31141, 7772,31142,31121, 31121,31143,31143,31143,31143,31143,31143,31143,31143,31143, 31143,31143,31144,31144,31144,31144,31144,31144,31145,31146, 31145,31145,31145,31145,31145,31145,31145,31145,31145,31145, 31145,31145,31145,31145,31145,31145,31145,31145,31147,31147, 31148,31148,31149, 7870,31145, 7870,31145, 7870,31150,31150, 7880, 7880,31151,31151, 7884,31152,31152,31153,31154,31154, 7890,31155,31155,31156, 7870,31157,31145,31158,31144,31144, 31144,31144,31159,31159,31159,31159,31159,31159,31159,31159, 31159,31144,31160,31160,31161,31161,31162,31162,31162,31144, 31144,31144,31144,31144,31144,31144,31144, 7916,31144,31144, 29840,31144,31144,31163,31163, 7935, 7935,31144, 7938, 7938, 7938, 7941,31144, 7941, 7938, 7943, 7943, 7947,31144, 7947, 7949, 7947, 7947, 7947, 7947, 7955, 7955, 7955, 7958, 7958, 7958, 7955, 7958, 7955, 7955,31164,31165,31165,31165,31165, 31165,31165,31165,31165,31165,31165,29840, 7977, 7977, 7977, 31144,31144,31144,31144,31144, 7985, 7985, 7985, 7987, 7987, 7990, 7990, 7990, 7985, 7990, 7990, 7996, 7996, 7996, 7999, 7999, 7999, 7996, 7999, 7996, 7996, 7996, 8007, 8007, 8007, 8010, 8010, 8010, 8007, 8010, 8007, 8007,31144,31144,31144, 31144,31144, 8007, 8023,31144, 8023, 8025, 8023, 8023, 8023, 31144,31144, 8023, 8033, 8033, 8033,31166,31166,31144,31167, 31168,31168,31169,31168,31168,31170,29840, 8047, 8047, 8047, 8050, 8050,31171,31171,31172,31172,31173,31173,31173,31174, 31174,31175,31176,31172,31172,31177,31178,31178,31178,31173, 31178,29840, 8072, 8072, 8072, 8075, 8075,31179,31144,31144, 31180,31181,31182,31182,31182,31183,31184,31185,31186,31186, 31187,31187,31188,31188,31144,31144,31144,31189,31189,31190, 31190,31191,31192,31192,31192,31193,31194,31195,31196,31196, 31196,31196,31196,31195,31144,31197,31197,31198,31197, 8119, 31199,31198, 8122, 8122, 8122, 8122, 8122, 8122, 8122, 8122, 8122, 8119,31200,31200, 8134,31201,31201, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8137, 8134,31202, 8134, 8134,31202, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8159, 8134,31144,31203,31204,31204, 31144,29840,31205,31205,31205,31144,31206,31206, 8188, 8188, 8188, 8188, 8188, 8193, 8193, 8188, 8188, 8188, 8188, 8188, 8188, 8188, 8199, 8188, 8188, 8188, 8199, 8188, 8188, 8188, 8199, 8188, 8212, 8212, 8199, 8215, 8215, 8188,29840,31144, 31144,31144,31144,31144,31144,31144,31144,31144,31144,31207, 31207, 8231, 8231, 8231,31208,31208, 8236, 8236, 8236,31209, 31209, 8241, 8241, 8241,31210,31210, 8246, 8246,31211,31211, 8250,31212,31212,31213,31214,31214, 8256, 8256,31215,31215, 8260,31216,31216,31217, 8231, 8231, 8231, 8231, 8231,31144, 31144,31144,31144,31144,31144, 8231,31144,31144,29840, 8279, 8280, 8280,31218,31218,29840,29840, 8286, 8286, 8286, 8286, 8286, 8286,31219,31144, 8292,31144,31144,31144,29840, 8299, 29840,31144,31220,29840, 8304, 8304, 8304, 8304, 8304, 8304, 31221,31144, 8310,29840, 8314,29840,31144, 8279,31144,31144, 31222, 8285, 8322, 8322, 8322,31144,31144,31144, 8328, 8328, 31223,29840,31223,31224,31225, 8332,29840, 8337, 8328, 8337, 31226, 8337, 8339, 8337, 8337, 8337, 8328, 8337,31225,31227, 31227,31228,31229, 8349,31230,31231,31230,31144,31232,31233, 29840, 8361, 8357,31232,31234,31235,31144,31235,31236,31237, 31237,31238,31233, 8373, 8373, 8373, 8371, 8377, 8377,31144, 8380,31144, 8380, 8377,31238, 8377, 8382, 8382, 8388, 8388, 8388,31239,31240, 8371, 8371,31241,31241,31242, 8397,31243, 31243,31244,31245,31245,31246,31247,31242,31248,31248, 8409, 31249,31249,31250,31251, 8371, 8382, 8416,31252,31253,31253, 31253,31253,31253,31253,31253,31253,31254,31254, 8428, 8428, 8428,31255,31255, 8433,31256,31256, 8436,31257,31257,31258, 8433, 8433,31259,31259, 8444, 8444, 8444,31260,31260, 8449, 8449,31261,31261, 8453,31262,31262,31263,31264,31264, 8459, 8459,31265,31265, 8463,31266,31266,31267,31268,31268,31269, 31269, 8471, 8471, 8471,31268,31268,31268,31268,31268,31268, 8471,31270,31268,31268,31271,31271,31272,31271,31271,29840, 31271,31273,31274,31271,31275,31276,31276,31276,31276,31276, 31276,31276,31277,31277, 8504, 8504, 8504,31278,31278,31279, 31279,31280, 8509, 8509, 8509,31281,31281, 8517, 8517,31282, 31282, 8521,31283,31283,31284,31285,31285, 8527,31286,31286, 31287,31276,31276,31276, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504,31288,31288, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546,31289, 31289, 8561, 8561, 8561, 8561, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 31290,31276,31276,31291,31291,31291,31291,31291,31291,31291, 31291,31291,31291,31291,31291,31291,31292,31292,31292,31292, 31293,31292,31294,31295,31294,31294,31294,31294,31294,31294, 31294,31294,31294,31294,31294,31294,31294,31294,31294,31296, 31296, 8621,31297,31297, 8624,31298,31298,31299, 8621,31294, 31294, 8621,31294,31300,31300, 8635, 8635, 8635,31301,31301, 8640, 8640,31302,31302, 8644,31303,31303,31304,31305,31305, 8650, 8650,31306,31306, 8654,31307,31307,31308, 8621,31309, 31294,31310,31311,31311,31311,31311,31312,31312,31312,31312, 31312,31312,31312,31312,31312,31312,31311,31313,31313,31314, 31314,31315,31315,31315,31311,31311,31311,31311,31311,31311, 31311, 8681,31311,31316,29840, 8695,31311,31311,29840,29840, 8700, 8700, 8700,31311,31311,31311,31311,31311, 8708, 8708, 8708, 8710, 8710, 8713, 8713, 8713, 8708, 8713, 8713, 8719, 8719, 8719, 8722, 8722, 8722, 8719, 8722, 8719, 8719,31311, 31311,31311,31311, 8719, 8734,31311, 8734, 8736, 8734, 8734, 8734,31311,31311,31317,31318,31318,31318,31318,31318,31318, 31318,31318,31318,31318,31318,31311, 8756, 8756, 8756, 8759, 31311, 8759, 8756, 8761, 8761, 8765,31311, 8765, 8767, 8765, 8765, 8765,31311,31311,31311,31311, 8765, 8777,31311, 8777, 8779, 8777, 8777, 8777,31311,31311,31311,31311,31311,31311, 8777, 8791,31311, 8791, 8793, 8791, 8791, 8791,31311,31311, 8791, 8801, 8801, 8801, 8791, 8805, 8805, 8805, 8808, 8808, 8808, 8805, 8808, 8805, 8805,31311,31311, 8801, 8818, 8818, 31319,31311,31311,31320,31321,31321,31322,31321,31321,31323, 31324,31324, 8832, 8832,31325,31325,31326,31326,31327,31327, 31327,31328,31329,31330,31331,31331,31331,31331,31331,31326, 31326,31332,31333,31333,31333,31334,31334, 8857, 8857,31335, 31311,31311,31311,31336,31337,31338,31339,31340,31341,31342, 31342,31343,31343,31344,31344,31311,31311,31311,31345,31345, 31346,31346,31347,31348,31348,31348,31349,31350,31351,31352, 31352,31352,31351,31311,31353,31354,31355,31354,31354,31356, 31356,31355, 8902, 8902, 8902, 8902, 8902, 8902, 8902, 8902, 31357,31357,31357,31358,31358,31358, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916, 8916,31357,31359,31357, 8939, 31359, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 8941, 8939,31311,31360,31361,31361,31311,29840, 31362,31362,31362,31311,29840, 8965, 8966, 8966, 8966, 8966, 29840,31311,31311,31311,31311,31311,31311,31311,31311,31311, 31363,31363, 8982, 8982, 8982,31364,31364, 8987, 8987, 8987, 31365,31365, 8992, 8992, 8992,31366,31366, 8997, 8997, 8997, 31367,31367, 9002, 9002,31368,31368, 9006,31369,31370,31370, 31371,31371, 9012, 9012, 9012,31372,31372, 9017, 9017,31373, 31373, 9021,31374,31375,31375,31376,31376,29840, 9028, 9029, 9029,31376,31377,31378,29840, 9035, 9035,31379, 9035, 9035, 9035, 9035, 9035,31378,31380,31380,31381,31382,31376, 9044, 31376,31383,31384,29840, 9054, 9054,31385, 9054, 9054, 9054, 9054, 9054,31384,31386,31386,31387,31388, 9063,31389,31390, 31390, 9071,31391, 9029,31376,31376,31392,31376,31376, 9079, 9079,31393,31393,31394,29840, 9085, 9083,31395,31396,31397, 31397,31398,31394, 9093, 9093, 9093, 9091, 9097, 9097, 9079, 9100, 9079, 9100, 9097,31398, 9097, 9102, 9102, 9108, 9108, 9108, 9091, 9091,31399,31399,31400, 9115,31401,31401,31402, 31403,31404,31400, 9091,31405,31405,31406,31407,31407,31408, 9126, 9079,31406,31409,29840, 9126, 9133,31410,31410,31411, 31411, 9141,31412,31412,31413,31414,31414,31415, 9147,31415, 9135,31409, 9152, 9152, 9152, 9147, 9147, 9147, 9147, 9079, 9160, 9160, 9160, 9162, 9162, 9165, 9165, 9165, 9160, 9147, 9150, 9165, 9165, 9173, 9079, 9173, 9175, 9173, 9173, 9173, 31416,31416,31417, 9147,31418,31418,31419, 9186,31419, 9186, 31420,31420,31421, 9192,31422,31422,31423,31424,31425,31425, 9200,31421,31426,31426,31427,31428, 9189,31429,31430,31429, 31431, 9210, 9210,31432,31432, 9215,31433,31433,31434,31435, 31435,31436,31437,31438,31431,31431,31439,31440,31440,31440, 31440,31440,31440,31440,31440,31441,31441, 9237, 9237, 9237, 31442,31442, 9242, 9242,31443,31443, 9246, 9246,31444,31444, 9250,31445,31445,31446,31447,31447,31448, 9242,31449,31449, 9260, 9260, 9260,31450,31450, 9265, 9265, 9265,31451,31451, 9270, 9270,31452,31452, 9274,31453,31454,31454,31455,31455, 9280, 9280, 9280,31456,31456, 9285, 9285,31457,31457, 9289, 31458,31459,31459,31460,31460,31461,31460,31460,31462,31462, 31462,31463,31462,31462,29840,31464,31465,31462,31466,31467, 31467,31467,31467,31467,31467,31467,31467,31468,31468, 9319, 9319, 9319,31469,31469, 9324,31470,31470, 9327,31471,31471, 31472, 9324, 9324,31473,31473, 9335, 9335, 9335,31474,31474, 9340, 9340,31475,31475, 9344,31476,31476,31477,31478,31478, 9350, 9350,31479,31479, 9354,31480,31480,31481,31482,31482, 31483,31483, 9362, 9362, 9362,31482,31482,31482,31482,31482, 31482, 9362,31484,31482,31482,31485,31485,31485,31485,31486, 31487,31486,31486,31488,31489,31488,31486,31490,31491,31490, 31490,31490,31490,31490,31490,31490,31490,31490,31490,31490, 31490,31490,31490,31490,31490,31490,31492,31492, 9408, 9408, 31493,31494,31493, 9413, 9413,31495,31495, 9417,31496,31496, 31497,31498,31498,31499, 9408,31490,31490,31490,31500,31500, 9430, 9430, 9430,31501,31501, 9435, 9435, 9435,31502,31502, 9440, 9440,31503,31503, 9444,31504,31505,31505,31506,31506, 9450, 9450, 9450,31507,31507, 9455, 9455,31508,31508, 9459, 31509,31510,31510, 9408,31511,31490,31490,31512,31512,31512, 31512,31513,31513,31513,31513,31513,31513,31513,31513,31513, 31513,31513,31512,31514,31514,31515,31515,31516,31516,31516, 31512,31512,31512,31512,31512,31512, 9487,31512,31517,31517, 9500, 9500, 9500,31512,31518,31518, 9506, 9506,31512, 9509, 9509, 9509, 9512,31512, 9512, 9509, 9514, 9514, 9518,31512, 9518, 9520, 9518, 9518, 9518,31512,31512,31512,31512, 9518, 9530,31512, 9530, 9532, 9530, 9530, 9530,31512,31512, 9530, 9540, 9540, 9540, 9543, 9543, 9543, 9540, 9543, 9540, 9540, 31512,31519,31520,31520,31520,31520,31520,31520,31520,31520, 31520,31520,31520,31512,31512,31512,31512,31512, 9568, 9568, 9568, 9570, 9570, 9573, 9573, 9568, 9573, 9573, 9578, 9578, 9578, 9581, 9581, 9578, 9581, 9578, 9578, 9578, 9588, 9588, 9588, 9591, 9591, 9588, 9591, 9588, 9588,31512, 9588, 9599, 9599, 9599, 9602, 9602, 9599, 9602, 9599, 9599,31512, 9599, 9610, 9610,31512,31512,31512,31512, 9599, 9617,31512, 9617, 9619, 9617, 9617, 9617,31512,31512, 9610, 9627, 9627, 9627, 31512,31512,31512,31512, 9627,31512,31512,31521,31522,31522, 31523,31522,31522,31524,31525,31525,31526,31526,31527,31528, 31528,31529,31530,31530,31530,31530,31530,31531,31528,31532, 31532,31532,31526,31526,31533,31534,31534,31534,31535,31512, 31512,31536,31537,31538,31539,31540,31541,31542,31542,31543, 31543,31544,31544,31512,31512,31512,31545,31545,31546,31546, 31547,31548,31548,31548,31549,31550,31551,31552,31552,31552, 31551,31512,31553,31553,31553,31553,31553,31553,31553,31553, 31553,31553,31553,31553,31553,31553,31553,31553,31554,31555, 31554, 9721,31556,31556,31555, 9725, 9725, 9725, 9725,31557, 31558,31558,31559,31559, 9734, 9734, 9734, 9734, 9734, 9734, 9734, 9734, 9734, 9734, 9734, 9734, 9734, 9734,31560, 9734, 9734, 9734, 9734, 9734, 9732,31561, 9732, 9732,31561, 9759, 9759, 9759,31560, 9759, 9759, 9759, 9759, 9759, 9759, 9759, 31562,31563,31564,31564,31512,29840,31565,31565,31565,31512, 31566,31512,31512,31512,31512,31512,31512,31512,31512,31512, 31567,31567, 9792, 9792, 9792,31568,31568, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 31569,31569, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812,31570,31570, 9827, 9827, 9827, 9827, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797,31571,31512,29840, 9849, 9850, 9850,31512,31572,31573,29840,31573,31574, 9857, 9859, 9859, 9859,31574, 9856, 9859, 9857, 9857,31575,31575,31576, 9869,31577,31577,31578,31579,31580,31576,31512, 9857,31512, 31512,29840,31581,31582,31582,31583, 9885, 9887, 9887, 9887, 31583, 9887, 9885, 9885,31584,31584,31585, 9896,31586,31586, 31587,31588,31589,31585, 9885,29840,29840, 9907,31512,31590, 29840,31512,31512,31591,31512,31512,31512, 9917, 9917,31592, 31592, 9921,31593,29840, 9921,31594,31595,31595,31596,31597, 31597,31598, 9931,31598, 9924,31593, 9936, 9936, 9936, 9931, 9931, 9931, 9931, 9917, 9944, 9944, 9944, 9946, 9946, 9949, 9949, 9949, 9944, 9931, 9934, 9949, 9949, 9957, 9917, 9957, 9959, 9957, 9957, 9957, 9931,31599,31599,31600, 9967,31600, 9967,31601,31601,31602, 9973,31603,31603,31604,31605,31602, 31606,31606,31607,31608, 9970, 9931,31609,31609,31610, 9988, 31610,31611,31611, 9993,31612,31612,31613, 9988,31614,31614, 9991,31615,29840, 9988, 9991,31616,31617,31616,31614,10008, 31618,31619,31618,10013,10013,31620,31620,10017,31621,31621, 31622,31623,31623,31624,31625,31625,31626,10026,31626,10026, 10029,31615,10032,10032,10032,31614,10036,10036,10036,10039, 31614,10039,10036,10041,10041,10045,31614,10045,10047,10045, 10045,10045,10026,10029,10045,10055,10055,10055,10058,10058, 10058,10055,10058,10055,10055,29840,31627,31628,31629,31630, 31630,31631,10071,31631,10071,10074,10071,31632,31632,31633, 10079,31633,10079,31634,31634,31635,10085,31636,31636,31637, 31638,31635,31639,31639,10094,10094,10082,31640,31640,31641, 10099,31642,31642,31643,31644,31641,10074,31645,31645,31646, 31646,31647,10109,31648,10109,10109,31649,31649,10118,10118, 31650,31650,10122,31651,31651,31652,31653,31653,31654,31654, 31655,31656,31657,31648,31648,31658,31659,31659,31659,31659, 31659,31659,31659,31659,31659,31660,31660,10147,10147,10147, 31661,31661,10152,10152,10152,31662,31662,10157,10157,10157, 31663,31663,10162,10162,31664,31664,10166,31665,31665,31666, 31667,31667,10172,31668,31668,31669,10152,10152,10152,10152, 10152,10152,10152,10152,10152,10152,31670,31670,10188,10188, 10188,10188,10188,10188,10188,10188,10188,10188,10188,10188, 10188,31671,31671,10203,10203,10203,10203,10152,10152,10152, 10152,10152,10152,10152,10152,10152,10152,10152,10152,10152, 10152,10152,31659,31659,31672,31659,31659,31673,31673,31673, 31674,31673,31673,29840,31675,31676,31676,31677,31678,31678, 31678,31678,31678,31678,31678,31678,31679,31679,10248,10248, 10248,31680,31680,10253,10253,31681,31681,10257,10257,31682, 31682,10261,31683,31683,31684,31685,31685,31686,10253,31687, 31687,10271,10271,10271,31688,31688,10276,10276,10276,31689, 31689,10281,10281,31690,31690,10285,31691,31692,31692,31693, 31693,10291,10291,10291,31694,31694,10296,10296,31695,31695, 10300,31696,31697,31697,31698,31698,31699,31698,31698,31700, 31700,31700,31700,31700,31701,31702,31701,31703,31703,31703, 29840,31704,31703,31705,31706,31706,31706,31706,31706,31706, 31706,31707,31707,10333,10333,10333,31708,31708,31709,31709, 31710,10338,10338,10338,31711,31711,10346,10346,31712,31712, 10350,31713,31713,31714,31715,31715,10356,31716,31716,31717, 31706,31706,31706,10333,10333,10333,10333,10333,10333,10333, 10333,10333,10333,31718,31718,10375,10375,10375,10375,10375, 10375,10375,10375,10375,10375,10375,10375,10375,31719,31719, 10390,10390,10390,10390,10333,10333,10333,10333,10333,10333, 10333,10333,10333,10333,10333,10333,10333,10333,10333,31720, 31706,31706,31721,31721,31721,31721,31722,31722,31722,31722, 31722,31722,31722,31722,31722,31722,31721,31723,31723,31724, 31724,31725,31725,31725,31721,31721,31721,31721,31721,31721, 10431,31721,31726,31726,10444,31721,10444,31721,29840,10449, 10449,10449,31721,31721,31721,31721,31721,10457,10457,10457, 10459,10459,10462,10462,10462,10457,10462,10462,10468,10468, 10468,10471,10471,10471,10468,10471,10468,10468,10468,10479, 10479,10479,10482,10482,10482,10479,10482,10479,10479,31721, 31721,31721,31721,31721,10479,10495,31721,10495,10497,10495, 10495,10495,31721,31721,10495,10505,10505,10505,31727,31728, 31728,31728,31728,31728,31728,31728,31728,31728,31728,31728, 31728,31721,10522,10522,10522,31721,10525,10525,10522,10525, 10526,31721,10531,10531,10531,10531,31721,31721,31721,31721, 10531,31721,10541,10541,10541,10541,31721,31721,31721,31721, 31721,31721,10541,31721,10553,10553,10553,10553,31721,31721, 10553,10561,10561,10561,31721,31721,31721,31721,10553,31721, 10569,10569,10569,10569,31721,31721,10561,10577,10577,10577, 10577,10569,10582,10582,10582,10585,10585,10582,10585,10582, 10582,31721,10577,10593,10593,31721,31721,31721,31721,31729, 31730,31730,31731,31730,31730,31732,31733,31733,31734,31734, 31735,31735,31735,31735,31736,31736,31737,31738,31738,31738, 31739,31736,31740,31740,31740,31734,31734,31741,31742,31742, 31742,31743,31721,31721,31744,31745,31746,31747,31748,31749, 31750,31750,31751,31751,31752,31752,31721,31721,31721,31753, 31753,31754,31754,31755,31756,31756,31756,31757,31758,31759, 31760,31760,31760,31759,31721,31761,31761,31761,31761,31761, 31761,31761,31761,31761,31761,10675,10675,10675,10675,10675, 10675,10675,10675,31762,31763,31762,31762,31764,31763,10689, 10689,10689,10689,31765,31765,10695,10695,10695,10695,10695, 10695,10695,10695,10695,10695,10695,10695,10695,10695,10695, 31766,31766,31767,31768,31767,31767,10716,10716,10716,10716, 10716,10716,10716,10716,31768,10716,10725,10725,10725,10725, 10725,10725,10725,10725,10725,10725,10725,10725,10725,10725, 10725,10725,10725,10725,10716,10716,10716,10716,10716,10716, 10716,10716,10712,31769,10712,10712,31769,10757,10757,10725, 10725,10725,10757,10757,10757,10757,31770,31770,31771,31772, 31772,31721,29840,31773,31773,31773,31721,31721,31721,31721, 31721,31721,31721,31721,31721,31721,31721,31774,31774,10789, 10789,10789,10789,10789,10789,10789,10789,31721,31721,31721, 31721,31721,31721,10789,31775,31775,31721,29840,10808,10809, 10809,31776,31777,31778,31778,31779,31780,29840,10818,10815, 31779,10815,10815,10815,10815,10815,10821,31780,10828,10828, 10828,10815,31781,31781,31782,10834,31782,10834,31783,31783, 31784,10840,31785,31785,31786,31787,31784,31788,31788,31789, 31790,10837,31791,10815,31792,31792,31793,10856,31793,10856, 10856,10856,10856,10856,10859,10856,31794,31794,31795,10868, 31795,10868,31796,31796,31797,10874,31798,31798,31799,31800, 31797,31801,31801,31802,31803,10871,10856,31804,31791,31805, 29840,31791,31791,31806,31791,31791,10896,10896,31807,31807, 10900,10900,31808,29840,10900,31809,31810,31810,10908,31811, 31811,31812,31813,31814,31814,31815,10915,31815,10915,10918, 31808,10921,10921,10921,10896,10925,10925,10925,10928,10896, 10928,10925,10930,10930,10934,10896,10934,10936,10934,10934, 10934,10915,10918,10934,10944,10944,10944,10947,10947,10947, 10944,10947,10944,10944,31816,31817,31817,31818,10957,31818, 10957,10960,10957,31819,31819,31820,10965,31820,10965,31821, 31821,31822,10971,31823,31823,31824,31825,31822,10968,31826, 31826,31827,10981,31828,31828,31829,31830,31827,10960,31831, 31832,31832,31833,10992,31833,10992,10995,31834,31835,31834, 11000,11000,31836,31836,11004,31837,31837,31838,31839,31839, 31840,10992,31841,10995,31842,29840,10995,31843,31843,31844, 31844,31845,11019,31841,11019,31846,31846,31847,31847,11027, 11027,11027,31848,31848,11034,11034,31849,31849,11038,31850, 31850,31851,31852,31852,11044,31853,31853,31854,31855,31855, 31856,11050,31856,11050,11053,11050,11053,29840,29840,11059, 11059,11059,31841,31841,31841,31841,31841,11067,11067,11067, 11069,11069,11072,11072,11072,11067,11072,11072,11078,11078, 11078,11081,11081,11081,11078,11081,11078,11078,11053,31841, 31841,31841,31841,11078,11094,31841,11094,11096,11094,11094, 11094,31841,31841,29840,29840,11105,11105,11105,31841,11105, 11105,11105,11112,31857,31858,31859,31859,31860,11117,31860, 11117,11120,11117,11120,31861,31861,31862,11126,31862,11126, 11129,11126,31863,31863,31864,11134,31864,11134,31865,31865, 31866,11140,31867,31868,31868,31869,31866,11137,31870,31870, 11150,11150,11150,11129,31871,31871,31872,11156,31872,11156, 31873,31873,31874,11162,31875,31876,31876,31877,31874,11159, 31878,31879,31879,11173,31880,31880,11176,31881,31881,31882, 11173,11173,31883,31883,11184,11184,11184,31884,31884,11189, 11189,31885,31885,11193,31886,31886,31887,31888,31888,11199, 31889,31889,11202,31890,31890,31891,31892,31893,31893,31893, 31894,31895,31895,31895,31895,31895,31895,31895,31895,31895, 31896,31896,11222,11222,11222,31897,31897,11227,11227,11227, 31898,31898,11232,11232,11232,31899,31899,11237,11237,31900, 31900,11241,31901,31901,31902,31903,31903,11247,11247,31904, 31904,11251,31905,31905,31906,11222,11222,11222,11222,11222, 31895,31895,31895,31895,31895,31895,11222,31895,31895,31907, 31908,31895,31909,31909,31909,31910,31909,31911,31912,31912, 31913,31914,31914,31914,31914,31914,31914,31914,31914,31914, 31915,31915,11292,11292,11292,31916,31916,11297,11297,11297, 31917,31917,11302,11302,11302,31918,31918,11307,11307,31919, 31919,11311,31920,31920,31921,31922,31922,11317,31923,31923, 31924,11297,11297,11297,11297,11297,11297,11297,11297,11297, 11297,31925,31925,11333,11333,11333,11333,11333,11333,11333, 11333,11333,11333,11333,11333,11333,31926,31926,11348,11348, 11348,11348,11297,11297,11297,11297,11297,11297,11297,11297, 11297,11297,11297,11297,11297,11297,11297,31914,31914,31927, 31914,31914,31928,31928,31928,31929,29840,31930,31929,31929, 31929,29840,31931,31929,31932,31933,31933,31933,31933,31933, 31933,31933,31933,31934,31934,11395,11395,11395,31935,31935, 11400,31936,31936,11403,31937,31937,31938,11400,11400,31939, 31939,11411,11411,11411,31940,31940,11416,11416,31941,31941, 11420,31942,31942,31943,31944,31944,11426,11426,31945,31945, 11430,31946,31946,31947,31948,31948,31949,31949,11438,11438, 11438,31948,31948,31948,31948,31948,31948,11438,31950,31948, 31948,31951,31951,31951,31951,31952,31952,31952,31952,31952, 31952,31952,31952,31952,31952,31952,31952,31951,31953,31953, 31954,31951,31955,31955,31955,31951,31951,31951,31951,31951, 31951,31954,31951,31956,31956,11485,11485,31951,11488,11485, 31951,31951,11492,11492,11492,11495,31951,11495,11492,11497, 11497,11501,31951,11501,11503,11501,11501,11501,31951,31951, 31951,31951,11501,11513,31951,11513,11515,11513,11513,11513, 31951,31951,31951,31951,31951,31951,11513,11527,31951,11527, 11529,11527,11527,11527,31951,31951,11527,11537,11537,11537, 11527,11541,11541,11541,11544,11544,11544,11541,11544,11541, 11541,31951,31951,11537,11554,11554,31957,31958,31958,31958, 31958,31958,31958,31958,31958,31958,31958,31958,31951,31951, 31951,31951,31951,31951,11573,11573,11576,11573,11573,11573, 11576,11581,11581,11583,11581,11581,11581,11581,11588,11588, 11590,11588,11588,11588,31951,11588,11596,11596,11598,11596, 11596,11596,31951,11596,11604,11604,11596,11607,11607,11609, 11607,11607,11607,31951,11604,11615,11615,31951,31951,31951, 31951,11607,31951,11622,11622,11622,11622,31951,31951,11615, 11630,11630,11630,11630,31951,31951,31951,31951,31951,31959, 31960,31961,31961,31962,31961,31961,31963,31964,31964,31965, 31965,31966,31966,31966,31967,31967,31968,31969,31969,31969, 31970,31967,31971,31971,31971,31965,31965,31972,31973,31973, 31973,31974,31951,31951,31975,31976,31977,31978,31979,31980, 31981,31981,31982,31982,31983,31983,31951,31951,31951,31984, 31984,31985,31985,31986,31987,31988,31987,31989,31990,31991, 31992,31992,31992,31991,31951,31993,31993,31993,31993,31993, 31993,11711,11711,11711,11711,11711,11711,31994,11711,11711, 11711,11711,11711,31995,31996,31995,31997,31998,31999,31996, 11730,11730,32000,32000,11734,11734,11734,11734,11734,11734, 11734,11734,11734,11734,11734,11734,11734,11734,11734,11734, 11734,11734,11734,32001,32001,32002,32003,32003,32002,11759, 11759,11759,11759,11759,11759,11759,11759,11758,11759,11758, 11758,11758,11758,11758,11758,11758,11758,11758,11758,11758, 11758,11758,11758,11758,11758,11758,11758,11758,11758,11759, 11759,11759,11759,11759,11759,11759,11759,32001,32004,32001, 32001,32004,11802,11802,11802,11758,11758,11802,11802,11802, 32005,32006,32007,32007,29840,32008,32008,32008,31951,31951, 31951,31951,31951,31951,31951,31951,31951,31951,31951,31951, 31951,31951,32009,32009,11834,11834,11834,32010,32010,11839, 32011,29840,11842,11843,11843,32012,32012,32013,32013,32014, 11849,32014,32015,32015,29840,11855,11855,11849,11852,11849, 11852,11854,11854,11854,11854,32016,32016,32017,11867,32017, 11867,11870,11867,32018,32018,32019,11875,32019,11875,32020, 32020,32021,11881,32022,32022,32023,32024,32021,11878,32025, 32025,32026,11891,32027,32027,32028,32029,32026,11870,32030, 32031,32032,32032,32033,11903,32033,11903,11906,11903,11906, 32034,32035,32035,32036,11913,32036,11913,11916,11913,32037, 32037,32038,11921,32038,11921,32039,32039,32040,11927,32041, 32041,32042,32043,32040,11924,32044,32044,32045,11937,32046, 32046,32047,32048,32045,11916,32049,29840,32050,32050,32051, 29840,32050,32050,32052,32053,32050,32050,32050,32050,11959, 11959,32054,32054,11963,11963,11963,32055,29840,32056,32057, 32057,11971,11971,32058,32058,11975,32059,32059,32060,32061, 32061,32062,32063,32063,32064,11984,32064,11984,11987,11984, 11987,11968,32055,11993,11993,11993,32050,32050,32050,32050, 32050,12001,12001,12001,12003,12003,12006,12006,12006,12001, 12006,12006,12012,12012,12012,12015,12015,12015,12012,12015, 12012,12012,11987,32050,32050,32050,32050,12012,12028,32050, 12028,12030,12028,12028,12028,32050,32050,32065,32066,32066, 32067,12040,32067,12040,12043,12040,12043,32068,32068,32069, 12049,32069,12049,12052,12049,32070,32070,32071,12057,32071, 12057,32072,32072,32073,12063,32074,32075,32075,32076,32073, 12060,12052,32077,32077,32078,12074,32078,12074,32079,32079, 32080,12080,32081,32082,32082,32083,32080,12077,32084,32085, 32086,32086,32087,12092,32087,12092,12095,12092,12095,32088, 32088,32089,32089,32090,12101,12101,12101,32091,32091,12109, 12109,32092,32092,12113,32093,32093,32094,32095,32095,12119, 32096,32096,32097,12095,32098,32099,32099,12127,32100,32100, 12130,32101,32101,32102,12127,32103,32103,12127,32104,32104, 12140,32105,32105,12143,12140,12140,32106,32106,12148,12148, 12148,32107,32107,12153,12153,32108,32108,12157,32109,32109, 32110,32111,32111,12163,12163,32112,32112,12167,32113,32113, 32114,32115,32115,32116,12173,32116,12173,12176,12173,12176, 12176,32117,32117,12183,12183,32118,32118,12187,12187,12189, 32118,12189,12187,12191,12191,12195,32118,12195,12197,12195, 12195,12195,32118,32118,32118,32118,12195,12207,32118,12207, 12209,12207,12207,12207,32118,32118,12207,12217,12217,12217, 12220,12220,12220,12217,12220,12217,12217,32118,32119,29840, 12230,12230,32120,12230,12230,12230,12230,12230,32119,12239, 32121,32122,12173,12173,12176,12173,12176,12173,12176,12173, 12176,12176,12173,12173,12176,12173,12176,12173,12176,12173, 12176,32123,32123,32124,12263,32124,12263,12266,12263,12263, 12263,12266,12263,12266,12263,12263,12263,12263,12266,12263, 12263,12266,12263,12266,12266,12266,12266,32125,32125,12289, 12289,12289,12289,12176,12173,12173,12176,12173,12176,12173, 12176,12173,12173,12173,12176,12173,12176,12173,12173,12173, 12173,12176,12173,12173,12176,12173,12176,12176,12176,12176, 32126,32126,12322,12322,32127,32128,32127,12327,12327,32129, 32129,12331,32130,32130,32131,32132,32132,32133,12322,32134, 32134,12341,12341,12341,32135,32135,12346,12346,12346,32136, 32136,12351,12351,32137,32137,12355,32138,32139,32139,32140, 32140,12361,12361,32141,32141,12365,12365,32142,32142,12369, 32143,32144,32144,32145,32146,32146,32146,32147,32148,32148, 32148,32148,32148,32148,32148,32148,32148,32148,32149,32149, 12390,12390,12390,32150,32150,12395,12395,12395,32151,32151, 12400,12400,12400,32152,32152,12405,12405,12405,32153,32153, 12410,12410,32154,32154,12414,32155,32156,32156,32157,32157, 12420,12420,12420,32158,32158,12425,12425,32159,32159,12429, 32160,32161,32161,32162,32162,32163,32164,32164,32162,32165, 32165,32165,32165,32165,32165,32166,32166,32167,32168,32168, 32168,32168,32168,32168,32168,32168,32168,32169,32169,12459, 12459,12459,32170,32170,12464,12464,12464,32171,32171,12469, 12469,12469,32172,32172,12474,12474,32173,32173,12478,32174, 32174,32175,32176,32176,12484,12484,32177,32177,12488,32178, 32178,32179,12459,12459,12459,12459,12459,32168,32168,32168, 32168,32168,32168,12459,32168,32168,32180,32181,32168,32182, 32182,32182,32183,29840,32184,32183,32183,32183,29840,32185, 32183,32186,32187,32187,32187,32187,32187,32187,32187,32187, 32188,32188,12532,12532,12532,32189,32189,12537,12537,32190, 32190,12541,12541,32191,32191,12545,32192,32192,32193,32194, 32194,32195,12537,32196,32196,12555,12555,12555,32197,32197, 12560,12560,12560,32198,32198,12565,12565,32199,32199,12569, 32200,32201,32201,32202,32202,12575,12575,12575,32203,32203, 12580,12580,32204,32204,12584,32205,32206,32206,32207,32207, 32208,32207,32207,32209,32209,32209,32209,32210,32210,32210, 32210,32210,32210,32210,32210,32210,32210,32209,32211,32211, 32212,32209,32213,32213,32213,32209,32209,32209,32209,32209, 32209,32212,32209,32214,32214,12625,12625,12625,32209,32209, 32209,32209,32209,32209,32209,32209,32209,12637,12637,12637, 12639,12639,12642,12642,12637,12642,12642,12647,12647,12647, 12650,12650,12647,12650,12647,12647,12647,12657,12657,12657, 12660,12660,12657,12660,12657,12657,32209,12657,12668,12668, 12668,12671,12671,12668,12671,12668,12668,32209,12668,12679, 12679,32209,32209,32209,32209,12668,12686,32209,12686,12688, 12686,12686,12686,32209,32209,12679,12696,12696,12696,32209, 32209,32209,32209,12696,32215,32215,32215,32215,32215,32215, 32215,32215,32215,32215,32215,32209,12716,12716,32209,12718, 12716,12719,32209,12722,12722,12716,12716,32209,32209,32209, 12722,32209,12731,12731,32209,32209,32209,32209,32209,12731, 32209,12740,12740,32209,32209,12740,12746,12746,12746,32209, 32209,32209,12740,32209,12753,12753,32209,32209,12746,12759, 12759,12759,12759,32209,32209,32209,12753,32209,12767,12767, 32209,32209,12759,12773,12773,12773,12773,12767,12778,12778, 12780,12778,12778,12778,32209,12773,12786,12786,32209,32209, 32209,32216,32216,32217,32218,32219,32218,32218,32220,32221, 32222,32223,32223,32223,32224,32224,32225,32226,32226,32226, 32227,32224,32228,32228,32228,32222,32222,32229,32230,32231, 32231,32232,32209,32209,32233,32234,32235,32236,32237,32238, 32238,32239,32239,32240,32240,32209,32209,32209,32241,32242, 32242,32243,32244,32244,32244,32243,32245,32246,32247,32248, 32248,32248,32247,32209,32249,32249,32249,32249,32249,32249, 32249,32249,32250,32249,32250,12865,12865,12865,12865,12865, 12865,12865,12865,12865,12865,12865,12865,12865,12865,12865, 12865,32249,32249,32249,32249,32249,12886,12886,12886,32251, 32252,32251,32253,32254,32254,32255,12895,12895,12895,12895, 12895,12895,12895,12895,12895,12895,12895,12895,12895,12895, 32256,32256,32257,12912,12912,12912,12912,12912,12912,12912, 12912,12912,12912,12912,12912,12912,12912,32252,12928,32258, 32258,12931,12931,12931,12931,12931,12931,12931,12931,12931, 12931,12931,12931,12931,32259,12931,12931,12931,12931,12931, 32260,32260,32261,32262,32262,32261,12956,12956,12956,12956, 12956,12956,12956,12956,12956,12956,12955,12955,12955,12955, 12955,12955,12955,12955,12955,12955,12955,12955,12955,12955, 12955,12955,12955,12956,12956,12956,12956,12956,12956,12952, 32263,12952,32264,32265,32263,12995,12955,12955,12995,12995, 12995,32266,32267,32268,32268,29840,32269,32270,32269,32271, 32271,32271,32271,32271,32271,32271,32271,32271,32271,32271, 32271,32271,32271,32271,32271,32271,32272,32272,13028,13028, 13028,32273,32274,32275,29840,13035,13036,13036,32276,32276, 32277,32277,32278,13042,32278,13042,13045,32279,29840,13042, 13045,13045,32279,32280,32280,32281,13055,32281,13055,13058, 13055,13058,32282,32282,32283,13064,32283,13064,13067,13064, 32284,32284,32285,13072,32285,13072,32286,32286,32287,13078, 32288,32289,32289,32290,32287,13075,13067,32291,32291,32292, 13089,32292,13089,32293,32293,32294,13095,32295,32296,32296, 32297,32294,13092,32298,32299,32300,32301,32301,32302,13108, 32302,13108,13111,13108,13111,13111,32303,32303,32304,13118, 32304,13118,13121,13118,13121,32305,32305,32306,13127,32306, 13127,13130,13127,32307,32307,32308,13135,32308,13135,32309, 32309,32310,13141,32311,32312,32312,32313,32310,13138,13130, 32314,32314,32315,13152,32315,13152,32316,32316,32317,13158, 32318,32319,32319,32320,32317,13155,32321,32322,32323,32324, 29840,32325,32325,32326,32327,32327,32325,32325,32325,32325, 13180,13180,32328,32328,13184,13184,13184,32329,32330,32330, 13190,13190,13190,32331,32331,13195,13195,32332,32332,13199, 32333,32333,32334,32335,32335,13205,32336,32336,32337,32338, 32338,32339,13211,32339,13211,13214,13211,13214,13214,32329, 13220,13220,13220,13180,13224,13224,13224,13227,13180,13227, 13224,13229,13229,13233,13180,13233,13235,13233,13233,13233, 13233,13241,13241,13241,13241,13245,13235,13245,13247,13245, 13245,13245,13241,13241,13241,13255,13255,13255,13258,13258, 13258,13255,13258,13255,13255,13247,32340,13211,13211,13214, 13211,13214,13211,13214,13211,13214,13214,13211,13211,13214, 13211,13214,13211,13214,13211,13214,32341,32341,32342,13288, 32342,13288,13291,13288,13288,13288,13291,13288,13291,13288, 13288,13288,13288,13291,13288,13288,13291,13288,13291,13291, 13291,13291,13214,13211,13211,13214,13211,13214,13211,13214, 13211,13211,13211,13214,13211,13214,13211,13211,13211,13211, 13214,13211,13211,13214,13211,13214,13214,13214,13214,13211, 32343,32343,32344,13342,32344,13342,13345,13342,13345,13345, 32345,32345,13352,32346,32346,13355,32347,32347,32348,13352, 13352,32349,32349,13363,13363,13363,32350,32350,13368,13368, 32351,32351,13372,32352,32352,32353,32354,32354,13378,13378, 32355,32355,13382,32356,32356,32357,32358,32358,13388,13388, 32359,32360,32359,13393,13393,32361,32361,13397,32362,32362, 32363,32364,32364,32365,13388,32366,32366,32367,32367,13409, 13409,32368,32369,13409,32370,32370,13416,13416,13416,32371, 32371,13421,13421,13421,32372,32372,13426,13426,32373,32373, 13430,32374,32375,32375,32376,32376,13436,13436,13436,32377, 32377,13441,13441,32378,32378,13445,32379,32380,32380,32381, 32381,32382,13451,32382,13451,13454,13451,13454,13454,29840, 13460,13460,13460,32383,32383,32383,32383,32383,13468,13468, 13468,13470,13470,13473,13473,13473,13468,13473,13473,13479, 13479,13479,13482,13482,13482,13479,13482,13479,13479,13479, 13490,13490,13490,13493,13493,13493,13490,13493,13490,13490, 32383,32383,32383,32383,32383,13490,13506,32383,13506,13508, 13506,13506,13506,32383,32383,13506,13516,13516,13516,29840, 13520,13520,13520,32384,13520,13520,13526,13526,32385,13451, 13451,13454,13451,13454,13451,13454,13451,13454,13454,32383, 32383,32383,32383,32383,32383,13451,13454,32386,32386,13549, 13549,13549,32387,32387,32388,32388,32389,13554,13554,13554, 32390,32390,13562,13562,32391,32391,13566,32392,32392,32393, 32394,32394,32395,32395,32396,13549,13549,13549,13549,13549, 13549,13549,13549,13549,13549,32397,32397,13587,13587,13587, 13587,13587,13587,13587,13587,13587,13587,13587,13587,13587, 32398,32398,13602,13602,13602,13549,13549,13549,13549,13549, 13549,13549,13549,13549,13549,13549,13549,13549,13549,13549, 32399,32400,32400,32400,32401,32402,32402,32402,32402,32402, 32402,32402,32402,32402,32403,32403,13636,13636,13636,32404, 32404,13641,13641,13641,13641,13641,13641,13641,13641,13641, 13641,13641,13641,13641,32405,32405,13656,13656,13656,13656, 13656,13656,13656,13656,13656,13656,13656,13656,13656,32406, 32406,13671,13671,13671,13671,13641,13641,13641,13641,13641, 13641,13641,13641,13641,13641,13641,13641,13641,13641,13641, 32407,32402,32408,32402,32409,32402,32400,32400,32400,32400, 32400,32410,32410,32411,32412,32412,32412,32412,32412,32412, 32412,32412,32412,32412,32413,32413,13716,13716,13716,32414, 32414,13721,13721,13721,32415,32415,13726,13726,13726,32416, 32416,13731,13731,13731,32417,32417,13736,13736,32418,32418, 13740,32419,32420,32420,32421,32421,13746,13746,13746,32422, 32422,13751,13751,32423,32423,13755,32424,32425,32425,32426, 32426,32427,32428,32428,32426,32429,32429,32429,32430,29840, 32431,32430,32432,32430,29840,32430,32430,32433,32434,32434, 32434,32434,32434,32434,32434,32434,32434,32435,32435,13789, 13789,13789,32436,32436,13794,13794,13794,32437,32437,13799, 13799,13799,32438,32438,13804,13804,32439,32439,13808,32440, 32440,32441,32442,32442,13814,32443,32443,32444,13794,13794, 13794,13794,13794,13794,13794,13794,13794,13794,32445,32445, 13830,13830,13830,13830,13830,13830,13830,13830,13830,13830, 13830,13830,13830,32446,32446,13845,13845,13845,13845,13794, 13794,13794,13794,13794,13794,13794,13794,13794,13794,13794, 13794,13794,13794,13794,32434,32434,32447,32434,32434,32448, 32448,32448,32448,32449,32449,32449,32449,32449,32449,32449, 32449,32449,32449,32448,32450,32450,32451,32448,32448,32452, 32452,32452,32448,32448,32448,32448,32448,32448,32448,32448, 32453,32453,13902,13902,13902,32448,32448,32448,13908,13908, 13908,32448,13911,13911,13908,13911,13912,32448,13917,13917, 13917,13917,32448,32448,32448,32448,13917,32448,13927,13927, 13927,13927,32448,32448,32448,32448,32448,32448,13927,32448, 13939,13939,13939,13939,32448,32448,13939,13947,13947,13947, 32448,32448,32448,32448,13939,32448,13955,13955,13955,13955, 32448,32448,13947,13963,13963,13963,13963,13955,13968,13968, 13968,13971,13971,13968,13971,13968,13968,32448,13963,13979, 13979,32448,32448,32454,32454,32454,32454,32454,32454,32454, 32454,32454,32454,32454,32448,32448,32448,32448,32448,13998, 32448,14001,13998,14001,14004,14001,14006,14004,32448,32448, 14004,14011,14006,14013,14011,32448,14011,14017,14013,14019, 14017,32448,14017,14023,14023,14017,14026,14019,14028,14026, 32448,14023,14032,14032,14026,14035,14028,14037,14035,32448, 14032,14041,14041,32448,32448,32448,14035,32448,14047,14047, 32448,32448,14041,14053,14053,14053,14053,32448,32448,32448, 32448,32448,32455,32456,32457,32458,32457,32457,32459,32460, 32461,32462,32462,32462,32463,32463,32464,32465,32465,32465, 32466,32463,32463,29840,32467,32468,32468,32461,32461,32469, 32470,32470,32470,32462,32470,32471,32471,32472,32448,32448, 32473,32474,32475,32476,32477,32477,32478,32478,32479,32479, 32448,32448,32448,32480,32481,32482,32483,32483,32483,32482, 32484,32485,32485,32448,32486,32486,14126,14126,14126,14126, 32487,14126,32487,14126,14133,14133,14133,14133,14133,14133, 14133,14133,14133,14133,14133,14133,14133,14133,14133,14133, 14133,14133,14133,14126,14126,14126,14126,14126,14126,14126, 14126,32488,32488,32489,32489,32490,32491,32492,32492,32492, 32492,32492,32492,32492,32492,32492,32492,32492,32492,32492, 32492,32492,32491,14183,14183,14183,14183,14183,14183,14183, 14183,14183,14183,14183,14183,14183,14183,14183,14183,32493, 32494,32494,32494,32494,32494,32494,32494,32494,32494,32494, 32494,32494,32494,32494,32494,32493,14216,14216,14216,14216, 14216,14216,14216,14216,14216,14216,14216,14216,14216,14216, 14216,14216,32495,32495,32496,32496,32496,14237,14237,14237, 14237,14237,14237,14237,14237,32497,14237,32497,14248,14248, 14248,14248,14248,14248,14248,14248,14248,14248,14248,14248, 14248,14248,14248,14248,14248,14237,14237,14237,14237,14237, 14237,14237,14237,32498,32498,32499,32499,32499,14278,14278, 32500,32500,14278,14282,14278,14278,14282,14282,14282,14282, 14282,14282,14282,14282,14282,14282,14282,14282,14282,14282, 14282,14282,14282,14282,14282,14278,14282,14278,14278,14278, 14278,14275,32501,14275,32502,32502,32503,14316,14316,14316, 14316,14316,14316,14316,14316,14316,14316,14316,14316,14316, 14316,14316,32504,32504,32505,14334,14334,14334,14334,14334, 14334,14334,14334,14334,14334,14334,14334,14334,14334,14334, 32501,14351,14282,14282,14351,14351,32506,32507,32508,32508, 29840,32509,32509,32510,32509,32511,32511,32511,32511,32511, 32511,32511,32511,32511,32511,32511,32511,32512,32512,32513, 29840,14381,14382,14382,32514,32514,32515,32515,32516,14388, 32516,14388,14391,14388,14391,32517,29840,14391,14388,14388, 14391,14388,14391,14388,14391,14388,14391,14391,14388,14388, 14391,14388,14391,14388,14391,14388,14391,32518,32518,32519, 14419,32519,14419,14422,14419,14419,14419,14422,14419,14422, 14419,14419,14419,14419,14422,14419,14419,14422,14419,14422, 14422,14422,14422,14391,14388,14388,14391,14388,14391,14388, 14391,14388,14388,14388,14391,14388,14391,14388,14388,14388, 14388,14391,14388,14388,14391,14388,14391,14391,14391,14391, 32511,14388,32520,32520,32521,14474,32521,14474,14477,14474, 14477,14477,14474,14474,14477,14474,14477,14474,14477,14474, 14477,14477,14474,14474,14477,14474,14477,14474,14477,14474, 14477,32522,32522,32523,14503,32523,14503,14506,14503,14503, 14503,14506,14503,14506,14503,14503,14503,14503,14506,14503, 14503,14506,14503,14506,14506,14506,14506,14477,14474,14474, 14477,14474,14477,14474,14477,14474,14474,14474,14477,14474, 14477,14474,14474,14474,14474,14477,14474,14474,14477,14474, 14477,14477,14477,14477,14474,32524,32525,14381,32511,32511, 32526,32527,32528,32528,32511,32511,14566,14566,32529,32529, 14570,14570,14570,32530,32530,14575,14575,14575,32531,32531, 14580,14580,14580,32532,32532,14585,14585,32533,32533,14589, 32534,32535,32535,32536,32536,14595,14595,32537,32537,14599, 32538,32539,32539,32540,32540,32541,14605,32541,14605,14608, 14605,14608,14608,29840,14614,14614,14614,32542,32542,32542, 32542,32542,14622,14622,14622,14624,14624,14627,14627,14627, 14622,14627,14627,14633,14633,14633,14636,14636,14636,14633, 14636,14633,14633,14633,14644,14644,14644,14647,14647,14647, 14644,14647,14644,14644,32542,32542,32542,32542,32542,14644, 14660,32542,14660,14662,14660,14660,14660,32542,32542,14660, 14670,14670,14670,32543,14605,14605,14608,14605,14608,14605, 14608,14605,14608,14608,14605,14608,14605,32544,32544,32545, 14689,32545,14689,14692,14689,14692,14692,32546,32546,14699, 14699,32547,32547,14703,14703,32548,32548,14707,32549,32549, 32550,32551,32551,32552,14699,32553,32553,14717,14717,14717, 32554,32554,14722,14722,14722,32555,32555,14727,14727,32556, 32556,14731,32557,32558,32558,32559,32559,14737,14737,14737, 32560,32560,14742,14742,32561,32561,14746,32562,32563,32563, 32564,32564,14752,14752,14752,32565,32565,32566,32566,32567, 14757,14757,14757,32568,32568,14765,14765,32569,32569,14769, 32570,32570,32571,32572,32572,14775,32573,32573,32574,32575, 32576,32576,14782,14782,14782,32577,32577,32578,32579,14782, 14782,14782,14782,14782,14782,14782,14782,14782,14782,32580, 32580,14801,14801,14801,14801,14801,14801,14801,14801,14801, 14801,14801,14801,14801,32581,32581,14816,14816,14816,14816, 14782,14782,14782,14782,14782,14782,14782,14782,14782,14782, 14782,14782,14782,14782,14782,32582,32582,32583,14837,32583, 14837,14840,14837,14840,14840,32575,14846,14846,14846,14849, 32575,14849,14846,14851,14851,14855,32575,14855,14857,14855, 14855,14855,32575,32575,32575,32575,14855,14867,32575,14867, 14869,14867,14867,14867,32575,32575,32575,32575,32575,32575, 14867,14881,32575,14881,14883,14881,14881,14881,32575,32575, 14881,14891,14891,14891,14881,14895,14895,14895,14898,14898, 14898,14895,14898,14895,14895,32575,32575,14891,14908,14908, 32584,32584,14912,14912,32585,14912,14912,32586,32587,32587, 14920,14920,14920,32588,32588,14925,32589,32589,14928,32590, 32590,32591,14925,14925,32592,32592,14936,14936,14936,32593, 32593,14941,14941,32594,32594,14945,32595,32595,32596,32597, 32597,14951,32598,32598,14954,32599,32599,32600,14920,14920, 14920,14920,14920,32601,32601,32601,32601,32601,14920,32602, 32601,32601,32601,32603,32604,32604,32604,32604,32604,32604, 32604,32604,32604,32605,32605,14985,14985,14985,14985,14985, 14985,14985,14985,32604,32604,32604,32604,32604,32604,14985, 32606,32606,32604,32607,32604,32608,32604,32601,32601,32601, 32601,32601,32609,32609,32610,32611,32611,32611,32611,32611, 32611,32611,32611,32611,32612,32612,15026,15026,15026,32613, 32613,15031,15031,15031,15031,15031,15031,15031,15031,15031, 15031,15031,15031,15031,32614,32614,15046,15046,15046,15046, 15046,15046,15046,15046,15046,15046,15046,15046,15046,32615, 32615,15061,15061,15061,15061,15031,15031,15031,15031,15031, 15031,15031,15031,15031,15031,15031,15031,15031,15031,15031, 32616,32611,32617,32611,32618,32611,32619,32619,32619,32619, 32619,32601,29840,32601,32620,32620,32601,29840,32601,32621, 32622,32622,32622,32622,32622,32622,32622,32622,32622,32623, 32623,15111,15111,15111,32624,32624,15116,15116,15116,32625, 32625,15121,15121,15121,32626,32626,15126,15126,32627,32627, 15130,32628,32628,32629,32630,32630,15136,15136,32631,32631, 15140,32632,32632,32633,15111,15111,15111,15111,15111,32622, 32622,32622,32622,32622,32622,15111,32622,32622,32634,32635, 32622,32636,32636,32636,32636,32637,32637,32637,32637,32637, 32637,32637,32637,32637,32637,32636,32638,32638,32639,32640, 32639,32639,32636,32636,32641,32642,32642,32636,32636,32636, 32636,32643,32636,32636,32636,32644,32644,15197,15197,15197, 32636,15201,32636,32636,32636,32636,32636,32636,32636,15208, 15208,15211,15208,15208,15208,15211,15216,15216,15218,15216, 15216,15216,15216,15223,15223,15225,15223,15223,15223,32636, 15223,15231,15231,15233,15231,15231,15231,32636,15231,15239, 15239,15231,15242,15242,15244,15242,15242,15242,32636,15239, 15250,15250,32636,32636,32636,32636,15242,32636,15257,15257, 15257,15257,32636,32636,15250,15265,15265,15265,15265,32636, 32636,32636,32636,32645,32645,32645,32645,32645,32645,32645, 32645,32645,32645,32645,32645,32636,15286,32636,15286,32636, 15290,15290,32636,32636,32636,15290,15296,15296,32636,32636, 32636,32636,15296,15303,15303,15303,15306,15306,15306,32636, 32636,32636,15303,15313,15313,15306,15316,15316,15316,15316, 32636,32636,32636,15313,15324,15324,15316,15327,15327,15327, 15327,32636,32636,32636,15324,15335,15335,15327,15338,15338, 15338,15338,15335,15343,15335,15345,15343,32636,15338,15349, 15349,32636,32636,32646,32647,32648,32649,32648,32648,32650, 32651,32652,32653,32653,32653,32654,32654,32655,32656,32657, 32657,32658,32654,32654,32654,32654,32654,32654,32654,32659, 32659,32659,32659,32659,32660,32660,32652,32652,32661,32662, 32662,32662,32663,32663,32664,32636,32636,32665,32666,32667, 32668,32669,32669,32670,32670,32671,32671,32636,32636,32636, 32672,32673,32674,32675,32675,32675,32674,32676,32677,32677, 32636,32678,32678,32678,32678,32678,32678,15427,15427,15427, 32679,32679,15432,15432,15432,15432,15432,15432,15432,15432, 15432,15432,15432,15432,15432,15432,15432,15427,15427,15427, 15427,15427,15427,32680,32680,32681,32682,32683,32683,32683, 32683,32683,32683,32683,32683,32683,32683,15467,15467,15467, 15467,15467,15467,15467,15467,32682,15476,15476,15476,15476, 15476,15476,15476,15476,15476,15476,15476,15476,15476,15476, 15476,15476,32684,32685,32685,32685,32685,32685,32685,32685, 32685,32685,32685,15503,15503,15503,15503,15503,15503,15503, 15503,32684,15512,15512,15512,15512,15512,15512,15512,15512, 15512,15512,15512,15512,15512,15512,15512,15512,32686,32686, 32687,32687,15532,15532,15532,15532,15532,15532,15532,32688, 15532,32688,15532,15542,15542,15542,15542,15542,15542,15542, 15542,15542,15542,15542,15542,15542,15542,15542,15542,15542, 15542,15542,15542,15542,15542,15532,15532,15532,15532,15532, 15532,15532,15532,32689,32689,32690,32690,15577,15577,15577, 15577,32691,32691,15577,15577,15577,15583,15583,15583,15583, 15583,15583,15583,15583,15583,15583,15583,15583,15583,15583, 15583,15583,15583,15583,15577,15577,15577,15577,15577,15575, 15575,32692,32693,32693,32693,15615,15615,15615,15615,15615, 15615,15615,15615,15615,15615,15615,15615,15615,32692,15629, 15629,15629,15629,15629,15629,15629,15629,15629,15629,15629, 15629,15629,15629,15629,15629,15629,15629,15629,32694,32695, 32695,32695,15652,15652,15652,15652,15652,15652,15652,15652, 15652,15652,15652,15652,15652,32694,15666,15666,15666,15666, 15666,15666,15666,15666,15666,15666,15666,15666,15666,15666, 15666,15666,15666,15666,15666,32696,32696,15583,15687,15687, 32697,32698,32699,29840,32700,32701,32702,32701,32701,32701, 32701,32701,32701,32701,32701,32701,32701,32701,32701,32701, 32703,32703,15712,32704,32704,32705,32705,32706,15717,32706, 15717,15720,15717,15720,15720,32707,15717,15717,15720,15717, 15720,15717,15720,15717,15720,15720,15717,15720,32701,15717, 32708,32708,32709,15742,32709,15742,15745,15742,15745,15745, 15742,15742,15745,15742,15745,15742,15745,15742,15745,15745, 15742,15745,15742,32701,32710,29840,32701,32701,32711,32711, 32712,32713,32701,32701,32701,32701,32701,32714,32714,15779, 15779,15779,32715,32715,15784,15784,15784,15784,15784,15784, 15784,15784,32716,32716,15794,15794,15794,15794,15794,15794, 15794,15794,15794,15794,15794,15794,15794,15784,15784,15784, 15784,15784,15784,15784,15784,15784,15784,15784,15784,15784, 15784,15784,32717,32717,32718,15824,32718,15824,15827,15824, 15827,15827,32701,15833,15833,15833,15836,32701,15836,15833, 15838,15838,15842,32701,15842,15844,15842,15842,15842,32701, 32701,32701,32701,15842,15854,32701,15854,15856,15854,15854, 15854,32701,32701,32701,32701,32701,32701,15854,15868,32701, 15868,15870,15868,15868,15868,32701,32701,15868,15878,15878, 15878,15868,15882,15882,15882,15885,15885,15885,15882,15885, 15882,15882,32701,32701,15878,15895,15895,32719,15824,32720, 32720,32721,15901,32721,15901,15904,15901,15904,15904,32722, 32722,15911,15911,15911,32723,32723,15916,15916,15916,32724, 32724,15921,15921,32725,32725,15925,32726,32726,32727,32728, 32728,15931,32729,32729,32730,15911,15911,15911,15911,15911, 15911,15911,15911,15911,15911,32731,32731,15947,15947,15947, 15947,15947,15947,15947,15947,15947,15947,15947,15947,15947, 32732,32732,15962,15962,15962,15962,15911,15911,15911,15911, 15911,15911,15911,15911,15911,15911,15911,15911,15911,15911, 15911,32733,32733,15983,15983,15983,32734,32734,15988,32735, 32735,15991,32736,32736,32737,15988,15988,32738,32738,15999, 15999,15999,32739,32739,16004,16004,32740,32740,16008,32741, 32741,32742,32743,32743,16014,16014,32744,32744,16018,32745, 32745,32746,32747,32748,32748,16025,16025,16025,32749,32749, 16030,32750,32750,32751,32752,16025,16025,16025,16025,16025, 32747,32747,32747,32747,32747,32747,16025,32753,32753,32754, 16049,32754,16049,16052,16049,16052,16052,32747,32747,32747, 32747,32747,16062,16062,16062,16064,16064,16067,16067,16062, 16067,16067,16072,16072,16072,16075,16075,16072,16075,16072, 16072,16072,16082,16082,16082,16085,16085,16082,16085,16082, 16082,32747,16082,16093,16093,16093,16096,16096,16093,16096, 16093,16093,32747,16093,16104,16104,32747,32747,32747,32747, 16093,16111,32747,16111,16113,16111,16111,16111,32747,32747, 16104,16121,16121,16121,32747,32747,32747,32747,16121,32755, 32756,32757,32758,32758,16134,16134,16134,32759,32759,16139, 16139,32760,32760,16143,16143,32761,32761,16147,32762,32762, 32763,32764,32764,32765,16139,32766,32766,16157,16157,16157, 32767,32767,16162,16162,16162,32768,32768,16167,16167,32769, 32769,16171,32770,32771,32771,32772,32772,16177,16177,32773, 32773,16181,16181,32774,32774,16185,32775,32776,32776,32777, 32777,32777,32778,32779,32779,32779,32779,32779,32779,32779, 32779,32779,32780,32780,16204,16204,16204,32781,32781,16209, 32782,32783,32784,32785,32779,32777,32777,32777,32777,32777, 32777,32786,32787,32788,32788,32788,32788,32788,32788,32788, 32788,32788,32789,32789,16234,16234,16234,16234,16234,16234, 16234,16234,32788,32788,32788,32788,32788,32788,16234,32790, 32790,32788,32791,32788,32792,32788,32793,32793,32793,32793, 32777,29840,32777,32794,32794,16265,32795,32796,32777,32797, 32798,32798,32798,32798,32798,32798,32798,32798,32798,32798, 32799,32799,16282,16282,16282,32800,32800,16287,16287,16287, 32801,32801,16292,16292,16292,32802,32802,16297,16297,16297, 32803,32803,16302,16302,32804,32804,16306,32805,32806,32806, 32807,32807,16312,16312,16312,32808,32808,16317,16317,32809, 32809,16321,32810,32811,32811,32812,32812,32813,32814,32814, 32812,32815,32815,32815,32816,32816,32816,32816,32816,32816, 32816,32816,32816,32816,32816,32815,32817,32817,32818,32815, 32819,32820,32820,32821,32821,32815,32815,32815,32822,32822, 32822,32815,32815,32815,32823,32823,16366,16366,16366,32815, 32815,32815,32815,32815,16374,16374,32815,16376,16374,16377, 32815,16380,16380,16374,16374,32815,32815,32815,16380,32815, 16389,16389,32815,32815,32815,32815,32815,16389,32815,16398, 16398,32815,32815,16398,16404,16404,16404,32815,32815,32815, 16398,32815,16411,16411,32815,32815,16404,16417,16417,16417, 16417,32815,32815,32815,16411,32815,16425,16425,32815,32815, 16417,16431,16431,16431,16431,16425,16436,16436,16438,16436, 16436,16436,32815,16431,16444,16444,32815,32815,32824,32824, 32824,32824,32824,32824,32824,32824,32824,32824,32824,32824, 32824,32824,32815,32815,32815,32815,16466,16466,16466,16469, 16469,32815,16472,16472,16472,16469,16476,16476,16476,16479, 16479,16476,16482,16482,16479,16485,16485,16482,16488,16488, 16485,16491,16491,16488,16494,16494,16491,16497,16497,32815, 32815,32815,16494,16503,16503,16497,16506,16506,16506,16506, 32815,32825,32826,32827,32828,32827,32827,32829,32830,32831, 32831,32831,32832,32832,32833,32834,32834,32834,32834,32834, 32835,32835,32836,32832,32832,32832,32832,32832,32832,32831, 32837,32837,32837,32838,32838,32830,32830,32839,32839,32839, 32840,32840,32841,32815,32815,32842,32843,32844,32845,32846, 32846,32847,32848,32815,32815,32815,32849,32850,32851,32852, 32852,32852,32851,32853,32854,32854,32815,32855,32855,32856, 32856,32855,16581,32855,32855,16581,16581,16581,16581,16581, 16581,16581,16581,16581,16581,16581,16581,16581,16581,16581, 16581,16581,32855,16581,32855,32855,32855,32855,32857,32857, 32858,32859,32860,32860,32860,32860,32860,32860,16618,16618, 16618,16618,16618,16618,32859,16618,16618,16618,16618,16618, 16625,16625,16625,16625,16625,16625,16625,16625,16625,16625, 16625,16625,16625,16625,16625,16625,16625,32861,32862,32862, 32862,32862,32862,32862,16654,16654,16654,16654,16654,16654, 32861,16654,16654,16654,16654,16654,16661,16661,16661,16661, 16661,16661,16661,16661,16661,16661,16661,16661,16661,16661, 16661,16661,16661,32863,32863,32864,32864,16687,16687,16687, 16687,16687,16687,16687,16687,16687,16687,32865,32865,16699, 16699,16699,16699,16699,16699,16699,16699,16699,16699,16699, 16699,16699,16699,16699,16699,16699,16699,16687,16687,16687, 16687,16687,16687,32866,32866,32867,32867,16727,16727,16727, 16727,32868,16727,16727,16727,32868,16736,16736,16736,16736, 16736,16736,16736,16736,16736,16736,16736,16736,16736,16736, 16727,16727,16727,16725,16725,32869,32870,32870,16758,16758, 16758,16758,16758,16758,16758,16758,16758,16758,16758,16758, 16758,16758,16758,16758,16758,16758,16758,32869,16778,16778, 16778,16778,16778,16778,16778,16778,16778,16778,16778,16778, 16778,16778,16778,16778,16778,16778,16778,32871,32872,32872, 16800,16800,16800,16800,16800,16800,16800,16800,16800,16800, 16800,16800,16800,16800,16800,16800,16800,16800,16800,32871, 16820,16820,16820,16820,16820,16820,16820,16820,16820,16820, 16820,16820,16820,16820,16820,16820,16820,16820,16820,32873, 32873,16736,16841,16841,32874,32875,32876,29840,32877,32878, 32879,32878,32878,32878,32878,32878,32878,32878,32878,32878, 32878,32878,32878,32878,32880,32881,32881,32882,32882,32883, 16869,32883,16869,16872,16869,16872,16872,32878,16869,32884, 32884,32885,16881,32885,16881,16884,16881,16884,16884,16881, 32878,32878,32878,32878,32886,32886,16896,32887,32887,32888, 32889,32890,32890,16903,16903,16903,32891,32891,16908,16908, 16908,16908,32892,32892,32893,16914,32893,16914,16917,16914, 16917,16917,32878,32878,32878,32878,32878,16927,16927,16927, 16929,16929,16932,16932,16927,16932,16932,16937,16937,16937, 16940,16940,16937,16940,16937,16937,16937,16947,16947,16947, 16950,16950,16947,16950,16947,16947,32878,16947,16958,16958, 16958,16961,16961,16958,16961,16958,16958,32878,16958,16969, 16969,32878,32878,32878,32878,16958,16976,32878,16976,16978, 16976,16976,16976,32878,32878,16969,16986,16986,16986,32878, 32878,32878,32878,16986,32894,32895,32895,16997,16997,16997, 32896,32896,17002,17002,17002,32897,32897,17007,17007,17007, 32898,32898,17012,17012,32899,32899,17016,32900,32900,32901, 32902,32902,17022,17022,32903,32903,17026,32904,32904,32905, 16997,16997,16997,16997,16997,32878,32878,32878,32878,32878, 32878,16997,32906,32906,17044,17044,17044,32907,32907,17049, 17049,32908,32908,17053,17053,32909,32909,17057,32910,32910, 32911,32912,32912,32913,17049,32914,32914,17067,17067,17067, 32915,32915,17072,17072,17072,32916,32916,17077,17077,32917, 32917,17081,32918,32919,32919,32920,32920,17087,17087,17087, 32921,32921,17092,17092,32922,32922,17096,32923,32924,32924, 32925,32926,32926,17103,17103,17103,32927,32928,32927,32925, 17109,17109,32929,32929,17114,32930,32930,32931,32932,32932, 32933,32934,32925,17123,17123,17123,32925,17126,17126,17123, 17126,17127,32925,17132,17132,17132,17132,32925,32925,32925, 32925,17132,32925,17142,17142,17142,17142,32925,32925,32925, 32925,32925,32925,17142,32925,17154,17154,17154,17154,32925, 32925,17154,17162,17162,17162,32925,32925,32925,32925,17154, 32925,17170,17170,17170,17170,32925,32925,17162,17178,17178, 17178,17178,17170,17183,17183,17183,17186,17186,17183,17186, 17183,17183,32925,17178,17194,17194,32925,32925,32935,32936, 32925,32937,32937,17203,17203,17203,32938,32938,17208,17208, 17208,32939,32939,17213,17213,17213,32940,32940,17218,17218, 32941,32941,17222,32942,32942,32943,32944,32944,32945,32945, 32946,17208,17208,17208,17208,17208,17208,17208,17208,17208, 17208,32947,32947,17243,17243,17243,17243,17243,17243,17243, 17243,17243,17243,17243,17243,17243,32948,32948,17258,17258, 17258,17208,17208,17208,17208,17208,17208,17208,17208,17208, 17208,17208,17208,17208,17208,17208,32925,32925,32925,32949, 32950,32950,32950,32950,32950,32950,32950,32950,32950,32950, 32951,32951,17292,17292,17292,32952,32953,32954,32955,32956, 32956,32956,32925,32925,32925,32925,32925,32925,32957,32958, 32959,32959,32959,32959,32959,32959,32959,32959,32959,32960, 32960,17321,17321,17321,32961,32961,17326,32962,32963,32964, 32965,32959,32966,32966,32966,32966,32925,32925,32967,32968, 32969,32925,32968,29840,32925,32970,32971,32971,32971,32971, 32971,32971,32971,32971,32971,32972,32972,17357,17357,17357, 32973,32973,17362,17362,17362,17362,17362,17362,17362,17362, 17362,17362,17362,17362,17362,32974,32974,17377,17377,17377, 17377,17377,17377,17377,17377,17377,17377,17377,17377,17377, 32975,32975,17392,17392,17392,17392,17362,17362,17362,17362, 17362,17362,17362,17362,17362,17362,17362,17362,17362,17362, 17362,32976,32971,32977,32971,32978,32971,32925,32925,32979, 32979,32979,32979,32979,32979,32979,32979,32979,32979,32979, 32979,32979,32925,32980,32980,32981,32925,32982,32982,32983, 32984,32983,32983,32925,32925,32925,32985,32985,32925,32925, 32925,32986,32986,17453,17453,17453,32925,32925,32925,32925, 32925,32925,32925,17462,32925,17465,17462,17465,17468,17465, 17470,17468,32925,32925,17468,17475,17470,17477,17475,32925, 17475,17481,17477,17483,17481,32925,17481,17487,17487,17481, 17490,17483,17492,17490,32925,17487,17496,17496,17490,17499, 17492,17501,17499,32925,17496,17505,17505,32925,32925,32925, 17499,32925,17511,17511,32925,32925,17505,17517,17517,17517, 17517,32925,32925,32925,32925,32987,32987,32987,32987,32987, 32987,32987,32987,32987,32987,32925,32925,32925,32925,32925, 32925,32925,17542,17542,32925,32925,32925,17542,32925,32925, 32925,17548,32925,32925,32925,17548,32925,32925,32925,17548, 32925,17561,17561,17548,17564,17564,32925,32988,32989,32990, 32990,32990,32991,32992,32993,32993,32994,32995,32996,32996, 32996,32997,32997,32994,32994,32994,32994,32994,32994,32993, 32998,32998,32998,32999,32999,32992,32992,33000,33000,33000, 33001,33001,33002,32925,32925,33003,33004,33005,33006,33007, 33007,33008,33009,32925,32925,32925,33010,33011,33012,33013, 33013,33013,33012,33014,33015,33015,32925,33016,33016,17629, 33017,33017,17629,17629,17629,17632,17632,17632,17632,17632, 17632,17632,17632,17632,17632,17632,17632,17632,17632,17632, 17632,17629,17629,17629,17629,17629,33018,33018,33019,33020, 33021,33021,33021,33021,33021,33021,33021,33021,33020,33021, 33021,33021,33021,33021,33021,17675,17675,17675,17669,17669, 17669,17669,17669,17669,17669,17669,17669,17669,17669,17669, 17669,17669,17669,17669,33022,33023,33023,33023,33023,33023, 33023,33023,33023,33022,33023,33023,33023,33023,33023,33023, 17710,17710,17710,17704,17704,17704,17704,17704,17704,17704, 17704,17704,17704,17704,17704,17704,17704,17704,17704,33024, 33024,33025,33025,33025,17734,17734,33026,33026,17734,17738, 17734,17734,17738,17738,17738,17738,17738,17738,17738,17738, 17738,17738,17738,17738,17738,17738,17738,17738,17738,17738, 17738,17738,17734,17738,17734,17734,17734,17734,33027,33027, 33028,33028,17772,17772,17772,33029,17772,17772,33029,17779, 17779,17779,17779,17779,17779,17779,17779,17779,17779,17779, 17779,17779,17779,17779,17772,33027,17796,33030,33031,33031, 17800,17800,17800,17800,17800,17800,17800,17800,17800,17800, 17800,17800,17800,33030,17800,17800,17800,17800,17800,17814, 17814,17814,17814,17814,17814,17814,17814,17814,17814,17814, 17814,17814,17814,17814,17814,17814,17814,17814,17814,33032, 33033,33033,17842,17842,17842,17842,17842,17842,17842,17842, 17842,17842,17842,17842,17842,33032,17842,17842,17842,17842, 17842,17856,17856,17856,17856,17856,17856,17856,17856,17856, 17856,17856,17856,17856,17856,17856,17856,17856,17856,17856, 17856,33034,33034,17779,17883,17883,33035,33036,33037,29840, 33038,33039,33039,33040,33040,33040,33040,33040,33040,33040, 33040,33040,33041,33042,33042,33043,33043,33044,17907,33044, 17907,17910,17907,17910,17910,33040,33045,33045,33046,17918, 33046,17918,17921,17918,17921,17921,17893,33040,33040,33040, 33047,33047,17932,17932,33048,33048,17936,33049,33049,33050, 33051,33052,33053,33040,17944,17944,17944,33040,17947,17947, 17944,17947,17948,33040,17953,17953,17953,17953,33040,33040, 33040,33040,17953,33040,17963,17963,17963,17963,33040,33040, 33040,33040,33040,33040,17963,33040,17975,17975,17975,17975, 33040,33040,17975,17983,17983,17983,33040,33040,33040,33040, 17975,33040,17991,17991,17991,17991,33040,33040,17983,17999, 17999,17999,17999,17991,18004,18004,18004,18007,18007,18004, 18007,18004,18004,33040,17999,18015,18015,33040,33040,33054, 33054,18021,18021,18021,33055,33055,18026,18026,18026,33056, 33056,18031,18031,18031,33057,33057,18036,18036,18036,33058, 33058,18041,18041,33059,33059,18045,33060,33061,33061,33062, 33062,18051,18051,18051,33063,33063,18056,18056,33064,33064, 18060,33065,33066,33066,33067,33067,18066,18066,18066,33068, 33068,18071,18071,18071,33069,33069,18076,18076,18076,33070, 33070,18081,18081,33071,33071,18085,33072,33072,33073,33074, 33074,18091,33075,33075,33076,18071,18071,18071,18071,18071, 18071,18071,18071,18071,18071,33077,33077,18107,18107,18107, 18107,18107,18107,18107,18107,18107,18107,18107,18107,18107, 33078,33078,18122,18122,18122,18122,18071,18071,18071,18071, 18071,18071,18071,18071,18071,18071,18071,18071,18071,18071, 18071,33079,33080,33080,18144,18144,18144,33081,33081,33082, 33082,33083,18149,33079,18149,18149,33084,33084,18158,18158, 33085,33085,18162,33086,33086,33087,33088,33088,18168,33089, 33089,33090,33091,33079,33079,33079,33079,33079,33079,18178, 18178,18181,18178,18178,18178,18181,18186,18186,18188,18186, 18186,18186,18186,18193,18193,18195,18193,18193,18193,33079, 18193,18201,18201,18203,18201,18201,18201,33079,18201,18209, 18209,18201,18212,18212,18214,18212,18212,18212,33079,18209, 18220,18220,33079,33079,33079,33079,18212,33079,18227,18227, 18227,18227,33079,33079,18220,18235,18235,18235,18235,33079, 33079,33079,33079,33092,33093,33093,18246,18246,18246,33094, 33094,18251,18251,18251,33095,33095,18256,18256,18256,33096, 33096,18261,18261,33097,33097,18265,33098,33098,33099,33100, 33100,18271,33101,33101,18274,33102,33102,33103,18246,18246, 18246,18246,18246,33079,33079,33079,33079,33079,18246,33079, 33079,33079,33104,33105,33105,33105,33105,33105,33105,33105, 33105,33105,33105,33105,33105,33105,33106,33106,33107,33108, 33109,33109,33079,33079,33079,33110,33079,33079,33111,33112, 33113,33113,33113,33113,33113,33113,33113,33113,33113,33113, 33114,33114,18332,18332,18332,33115,33116,33117,33118,33119, 33119,33119,33120,33120,33120,33120,33079,33079,33121,33079, 33122,29840,33079,33123,33124,33124,33124,33124,33124,33124, 33124,33124,33124,33125,33125,18365,18365,18365,18365,18365, 18365,18365,18365,33124,33124,33124,33124,33124,33124,18365, 33126,33126,33124,33127,33124,33128,33124,33079,33079,33129, 33129,33129,33129,33129,33129,33129,33129,33129,33079,33130, 33130,33131,33079,33132,33132,33133,33134,33133,33133,33079, 33079,33079,33135,33135,33079,33079,33079,33136,33136,18419, 18419,18419,33079,18423,33079,33079,18426,33079,18426,33079, 18430,18430,33079,33079,33079,18430,18436,18436,33079,33079, 33079,33079,18436,18443,18443,18443,18446,18446,18446,33079, 33079,33079,18443,18453,18453,18446,18456,18456,18456,18456, 33079,33079,33079,18453,18464,18464,18456,18467,18467,18467, 18467,33079,33079,33079,18464,18475,18475,18467,18478,18478, 18478,18478,18475,18483,18475,18485,18483,33079,18478,18489, 18489,33079,33137,33137,33137,33137,33137,33137,33137,33137, 33137,33137,33137,33137,33079,33079,33079,33079,18505,33079, 33138,33139,33139,33139,33140,33141,33142,33142,33143,33144, 33144,33144,33145,33145,33143,33143,33143,33143,33143,18527, 33142,33146,33146,33146,33147,33147,33141,33141,33148,33148, 33148,33149,33149,33079,33079,33150,33151,33151,33152,33153, 33079,33079,33079,33154,33155,33156,33157,33157,33157,33156, 33158,33159,33159,33079,33160,33160,33160,33161,33160,33160, 33160,33161,18572,18572,18572,18572,18572,18572,18572,18572, 18572,18572,18572,18572,33160,33160,33160,33162,33163,33164, 33164,18591,18591,18591,18591,33163,18591,18591,18591,18591, 18591,18591,18591,18591,18591,18591,18596,18596,18596,18596, 18596,18596,18596,18596,18596,18596,18596,18596,18596,18596, 33165,33166,33166,18623,18623,18623,18623,33165,18623,18623, 18623,18623,18623,18623,18623,18623,18623,18623,18628,18628, 18628,18628,18628,18628,18628,18628,18628,18628,18628,18628, 18628,18628,33167,33167,33168,33168,18656,18656,18656,18656, 33169,33169,18656,18656,18656,18662,18662,18662,18662,18662, 18662,18662,18662,18662,18662,18662,18662,18662,18662,18662, 18662,18662,18662,18662,18656,18656,18656,18656,18656,33170, 33171,33170,18692,18692,18692,18692,33172,18692,18692,33172, 18700,18700,18700,18700,18700,18700,18700,18700,18700,18700, 18700,18692,33171,33171,33173,33174,33174,33174,18718,18718, 18718,18718,18718,18718,18718,18718,33173,18718,18718,18718, 18718,18718,18718,18718,18718,18718,18727,18727,18727,18727, 18727,18727,18727,18727,18727,18727,18727,18727,18727,18727, 18727,18727,18727,18727,18727,33175,33176,33176,33176,18759, 18759,18759,18759,18759,18759,18759,18759,33175,18759,18759, 18759,18759,18759,18759,18759,18759,18759,18768,18768,18768, 18768,18768,18768,18768,18768,18768,18768,18768,18768,18768, 18768,18768,18768,18768,18768,18768,33177,33177,18700,18798, 18798,33178,33179,33180,29840,33181,33182,33183,33183,33183, 33183,33183,33183,33183,33183,33183,33184,33185,33183,33183, 33183,33183,33186,33186,18824,18824,18824,33187,33187,18829, 18829,33188,33188,18833,33189,33189,33190,33191,33191,33192, 33192,33193,33194,33183,33183,33183,33183,33183,33183,18848, 18848,18851,18848,18848,18848,18851,18856,18856,18858,18856, 18856,18856,18856,18863,18863,18865,18863,18863,18863,33183, 18863,18871,18871,18873,18871,18871,18871,33183,18871,18879, 18879,18871,18882,18882,18884,18882,18882,18882,33183,18879, 18890,18890,33183,33183,33183,33183,18882,33183,18897,18897, 18897,18897,33183,33183,18890,18905,18905,18905,18905,33183, 33183,33183,33183,33195,33195,18915,18915,18915,33196,33196, 18920,18920,18920,18920,18920,18920,18920,18920,18920,18920, 18920,18920,18920,33197,33197,18935,18935,18935,18935,18935, 18935,18935,18935,18935,18935,18935,18935,18935,33198,33198, 18950,18950,18950,18950,18920,18920,18920,18920,18920,18920, 18920,18920,18920,18920,18920,18920,18920,18920,18920,33199, 33199,18971,18971,18971,33200,33200,18976,18976,18976,33201, 33201,18981,18981,18981,33202,33202,18986,18986,33203,33203, 18990,33204,33204,33205,33206,33206,18996,18996,33207,33207, 19000,33208,33208,33209,18971,18971,18971,18971,18971,33210, 33210,33210,33210,33210,33210,18971,33210,33211,33211,19019, 33212,33212,19022,33213,33213,33214,19019,33210,33210,19019, 33215,33215,19032,19032,19032,33216,33216,19037,19037,33217, 33217,19041,33218,33218,33219,33220,33220,19047,19047,33221, 33221,19051,33222,33222,33223,33224,33210,19057,19057,33210, 19059,19057,19060,33210,19063,19063,19057,19057,33210,33210, 33210,19063,33210,19072,19072,33210,33210,33210,33210,33210, 19072,33210,19081,19081,33210,33210,19081,19087,19087,19087, 33210,33210,33210,19081,33210,19094,19094,33210,33210,19087, 19100,19100,19100,19100,33210,33210,33210,19094,33210,19108, 19108,33210,33210,19100,19114,19114,19114,19114,19108,19119, 19119,19121,19119,19119,19119,33210,19114,19127,19127,33210, 33210,33225,33226,33226,19134,19134,19134,33227,33227,19139, 19139,19139,33228,33228,19144,19144,19144,33229,33229,19149, 19149,19149,33230,33230,19154,19154,33231,33231,19158,33232, 33233,33233,33234,33234,19164,19164,33235,33235,19168,19168, 33236,33236,19172,33237,33238,33238,33239,33239,33239,33240, 33241,33241,33241,33241,33241,33241,33241,33241,33241,33242, 33242,19191,33243,33244,33244,33239,33239,33239,33245,33246, 33245,33239,33239,33239,33247,33248,33248,33248,33248,33248, 33248,33248,33248,33248,33248,33248,33248,33248,33249,33249, 33250,33251,33252,33252,33253,33253,33253,33239,33239,33239, 33254,29840,33239,33255,33256,33256,33256,33256,33256,33256, 33256,33256,33256,33257,33257,19245,19245,19245,33258,33258, 19250,33259,33260,33261,33262,33256,33239,33239,33263,33263, 33263,33263,33263,33263,33263,33263,33263,33263,33263,33239, 33264,33264,33265,33239,33266,33266,33267,33268,33269,33269, 33239,33239,33239,33239,33270,33270,33239,33239,33239,33271, 33271,19291,19291,19291,33239,33239,33239,33239,33239,33239, 33239,33239,19302,19302,19302,19305,19305,33239,19308,19308, 19308,19305,19312,19312,19312,19315,19315,19312,19318,19318, 19315,19321,19321,19318,19324,19324,19321,19327,19327,19324, 19330,19330,19327,19333,19333,33239,33239,33239,19330,19339, 19339,19333,19342,19342,19342,19342,33272,33272,33272,33272, 33272,33272,33272,33272,33272,33272,33272,33239,33273,33274, 33274,33274,33275,33276,33277,33277,33278,33279,33279,33279, 33280,33280,33278,33278,33278,33277,33281,33281,33281,33282, 33282,33276,33276,33283,33283,33283,33284,33284,33239,33239, 33285,33286,33286,33287,33288,33239,33239,33239,33289,33290, 33291,33292,33292,33292,33291,33293,33294,33294,33239,33295, 33295,33296,33295,33295,33296,19415,19415,19415,19415,19415, 19415,19415,19415,19415,19415,19415,19415,19415,33295,33297, 33298,33299,33299,33299,33299,33299,33299,19437,19437,19437, 19437,19437,19437,19437,19437,19437,33298,19447,19447,19447, 19447,19447,19447,19447,19447,19447,19447,19447,19447,33300, 33301,33301,33301,33301,33301,33301,19466,19466,19466,19466, 19466,19466,19466,19466,19466,33300,19476,19476,19476,19476, 19476,19476,19476,19476,19476,19476,19476,19476,33302,33302, 33303,33303,19492,19492,33304,19492,33305,19492,19492,19492, 33305,19501,19501,19501,19501,19501,19501,19501,19501,19501, 19501,19501,19501,19501,19501,19501,19492,19492,19492,33306, 33307,33304,33308,33308,19524,33309,19524,19524,33309,19529, 19529,19529,19529,19529,19529,19529,19529,19529,19529,33310, 33311,33311,19542,19542,19542,19542,19542,19542,19542,33310, 19542,19542,19542,19542,19542,19542,19542,19542,19542,19542, 19550,19550,19550,19550,19550,19550,19550,19550,19550,19550, 19550,19550,19550,19550,19550,19550,19550,33312,33313,33313, 19580,19580,19580,19580,19580,19580,19580,33312,19580,19580, 19580,19580,19580,19580,19580,19580,19580,19580,19588,19588, 19588,19588,19588,19588,19588,19588,19588,19588,19588,19588, 19588,19588,19588,19588,19588,33314,33314,19529,19617,19617, 33315,33316,29840,33317,33318,33319,33319,33319,33319,33319, 33319,33319,33319,33320,33320,33320,33320,33321,33319,33319, 33319,33319,33319,33322,33322,19645,19645,19645,33319,33323, 33323,19651,19651,19651,33324,33324,19656,19656,33325,33325, 19660,33326,33326,33327,33328,33328,19666,33329,33329,19669, 33330,33330,33331,33332,33319,19675,19675,33319,19677,19675, 19678,33319,19681,19681,19675,19675,33319,33319,33319,19681, 33319,19690,19690,33319,33319,33319,33319,33319,19690,33319, 19699,19699,33319,33319,19699,19705,19705,19705,33319,33319, 33319,19699,33319,19712,19712,33319,33319,19705,19718,19718, 19718,19718,33319,33319,33319,19712,33319,19726,19726,33319, 33319,19718,19732,19732,19732,19732,19726,19737,19737,19739, 19737,19737,19737,33319,19732,19745,19745,33319,33319,33333, 33333,19751,19751,19751,19751,19751,19751,19751,19751,33319, 33319,33319,33319,33319,33319,19751,33334,33334,19768,19768, 19768,33335,33335,19773,19773,19773,33336,33336,19778,19778, 19778,33337,33337,19783,19783,19783,33338,33338,19788,19788, 33339,33339,19792,33340,33341,33341,33342,33342,19798,19798, 19798,33343,33343,19803,19803,33344,33344,19807,33345,33346, 33346,33347,33348,33348,19814,19814,33349,33350,33349,19819, 19819,33351,33351,19823,33352,33352,33353,33354,33354,33355, 19814,33356,33357,33357,19834,19834,19834,33358,33358,19839, 19839,19839,33359,33359,19844,19844,33360,33360,19848,33361, 33362,33362,33363,33363,19854,19854,19854,33364,33364,19859, 19859,33365,33365,19863,33366,33367,33367,33368,33356,33356, 33356,33356,33356,19872,33356,19875,19872,19875,19878,19875, 19880,19878,33356,33356,19878,19885,19880,19887,19885,33356, 19885,19891,19887,19893,19891,33356,19891,19897,19897,19891, 19900,19893,19902,19900,33356,19897,19906,19906,19900,19909, 19902,19911,19909,33356,19906,19915,19915,33356,33356,33356, 19909,33356,19921,19921,33356,33356,19915,19927,19927,19927, 19927,33356,33356,33356,33356,33369,33370,33370,19938,19938, 19938,33371,33371,19943,19943,19943,19943,19943,19943,19943, 19943,19943,19943,19943,19943,19943,33372,33372,19958,19958, 19958,19958,19958,19958,19958,19958,19958,19958,19958,19958, 19958,33373,33373,19973,19973,19973,19943,19943,19943,19943, 19943,19943,19943,19943,19943,19943,19943,19943,19943,19943, 19943,33356,33356,33356,33374,33375,33375,33375,33375,33375, 33375,33375,33375,33375,33375,33375,33375,33376,33377,33378, 33378,33356,33356,33356,33356,29840,33379,33356,33356,33356, 33380,33381,33381,33381,33381,33381,33381,33381,33381,33381, 33382,33382,20032,33383,33384,33384,33385,33385,33385,33385, 33356,33356,33356,33386,29840,33356,33387,33388,33388,33388, 33388,33388,33388,33388,33388,33388,33388,33389,33389,20059, 20059,20059,33390,33391,33392,33393,33394,33394,33394,33356, 33356,33395,33395,33395,33395,33395,33395,33395,33395,33395, 33395,33396,33397,33397,33398,33356,33399,33400,33400,33401, 33402,33402,33356,33356,33403,33356,33404,33404,33356,33356, 33356,33405,33405,20103,20103,20103,33356,33356,33356,33356, 33356,33356,33356,33356,33356,20115,20115,33356,33356,33356, 20115,33356,33356,33356,20121,33356,33356,33356,20121,33356, 33356,33356,20121,33356,20134,20134,20121,20137,20137,33406, 33406,33406,33406,33406,33406,33406,33406,33356,33407,33408, 33408,33408,33409,33410,33411,33411,33412,33413,33413,33413, 33414,33414,33412,33412,33411,33411,29840,33415,33415,33415, 33416,33416,33410,33410,33417,33417,33418,33356,33356,33356, 33419,33420,33421,33422,33356,33356,33356,33423,33424,33425, 33426,33426,33426,33425,33427,33428,33428,33356,33429,33429, 33430,33429,20202,33430,20204,20204,20204,20204,20204,20204, 20204,20204,20204,20202,33431,33432,33432,33433,33433,20217, 20217,33433,20217,33433,33433,33433,20217,33433,33433,33433, 33433,20217,20217,20217,20217,20217,20217,20217,20217,20217, 33434,33434,33435,33435,20242,20242,33435,20242,33435,33435, 33435,20242,33435,33435,33435,33435,20242,20242,20242,20242, 20242,20242,20242,20242,20242,33436,33436,33437,33437,20269, 33438,33438,20272,20272,20272,20272,20272,20272,20272,20272, 20272,20272,20272,20272,20272,20272,20272,20272,20272,20269, 33439,20269,20269,33439,20294,20294,20294,20294,20294,20294, 20294,20294,20294,20294,20294,20294,20294,20294,20294,20294, 20269,33440,33440,20313,20313,20313,20313,20313,20313,20313, 20313,20313,20313,20313,20313,20313,20313,20313,33441,33441, 20330,33442,20330,20330,33442,20335,20335,20335,20335,20335, 20335,33443,33444,33444,20344,20344,20344,20344,20344,20344, 20344,20344,20344,20344,20344,20344,20344,20344,20344,20344, 33443,20361,20361,20361,20361,20361,20361,20361,20361,20361, 20361,20361,20361,20361,20361,20361,33445,33446,33446,20379, 20379,20379,20379,20379,20379,20379,20379,20379,20379,20379, 20379,20379,20379,20379,20379,33445,20396,20396,20396,20396, 20396,20396,20396,20396,20396,20396,20396,20396,20396,20396, 20396,33447,33447,20335,20413,20413,33448,33449,29840,33450, 33450,33451,33451,33451,33451,33451,33451,33451,33452,33452, 33453,33451,33451,33451,33451,33454,33454,20437,20437,20437, 33455,33455,20442,20442,20442,33456,33456,20447,20447,20447, 33457,33457,20452,20452,33458,33458,20456,33459,33460,33460, 33461,33461,20462,20462,33462,33462,20466,20466,33463,33463, 20470,33464,33465,33465,33466,33451,33451,33451,33451,33451, 20479,33451,20482,20479,20482,20485,20482,20487,20485,33451, 33451,20485,20492,20487,20494,20492,33451,20492,20498,20494, 20500,20498,33451,20498,20504,20504,20498,20507,20500,20509, 20507,33451,20504,20513,20513,20507,20516,20509,20518,20516, 33451,20513,20522,20522,33451,33451,33451,20516,33451,20528, 20528,33451,33451,20522,20534,20534,20534,20534,33451,33451, 33451,33451,33467,33467,20544,20544,20544,33468,33468,20549, 20549,20549,33469,33469,20554,20554,20554,20554,20554,20554, 20554,20554,20554,20554,20554,20554,20554,33470,33470,20569, 20569,20569,20569,20569,20569,20569,20569,20569,20569,20569, 20569,20569,33471,33471,20584,20584,20584,20584,20554,20554, 20554,20554,20554,20554,20554,20554,20554,20554,20554,20554, 20554,20554,20554,33472,33472,33473,33473,20607,20607,20607, 33474,33474,33475,33475,33476,20612,20612,20612,33477,33477, 20620,20620,33478,33478,20624,33479,33479,33480,33481,33481, 20630,33482,33482,33483,33484,20607,20607,20607,20607,20607, 20607,20607,20607,20607,20607,33485,33485,20647,20647,20647, 20647,20647,20647,20647,20647,20647,20647,20647,20647,20647, 33486,33486,20662,20662,20662,20662,20607,20607,20607,20607, 20607,20607,20607,20607,20607,20607,20607,20607,20607,20607, 20607,33487,33484,20683,33484,20683,33484,20687,20687,33484, 33484,33484,20687,20693,20693,33484,33484,33484,33484,20693, 20700,20700,20700,20703,20703,20703,33484,33484,33484,20700, 20710,20710,20703,20713,20713,20713,20713,33484,33484,33484, 20710,20721,20721,20713,20724,20724,20724,20724,33484,33484, 33484,20721,20732,20732,20724,20735,20735,20735,20735,20732, 20740,20732,20742,20740,33484,20735,20746,20746,33484,33488, 33488,20751,20751,20751,20751,20751,20751,20751,20751,33484, 33484,33484,33484,33484,20751,33484,33484,33484,33489,33489, 33489,33489,33489,33489,33489,33489,33489,33489,33490,33491, 33491,33484,33484,33484,33492,33484,33484,33484,33493,33494, 33494,33494,33494,33494,33494,33494,33494,33494,33494,33494, 33494,33495,33496,33497,33497,33498,33498,33498,33484,33484, 33484,33484,29840,33484,33499,33500,33500,33500,33500,33500, 33500,33500,33500,33500,33500,33500,33500,33500,33501,33501, 33502,33503,33504,33504,33484,33484,33505,33505,33505,33505, 33505,33505,33505,33506,33506,33507,33507,33508,33484,33509, 33510,33510,33511,33511,33484,33484,33512,33512,33512,33484, 33513,33513,33484,33484,33484,33514,33514,20867,20867,20867, 33484,20871,33484,33484,33484,33484,33484,20874,33515,33515, 33515,33515,33515,33515,33515,33515,33484,33516,33517,33517, 33517,33518,33519,33520,33520,33521,33522,33522,33522,33523, 33523,33521,33520,33520,33520,33520,33520,33520,33520,33524, 33524,33525,33519,33519,33526,33526,33527,33484,33528,33529, 33530,33531,33484,33484,33484,33532,33532,33533,33533,33534, 33535,33535,33535,33534,33536,33536,33536,33536,33537,33484, 33538,33539,33538,33538,33539,20945,20945,20945,20945,20945, 20945,20945,20945,33540,33540,33541,33541,33542,33542,20959, 20959,20959,20959,20959,20959,20959,20959,20959,20957,20957, 20957,20957,20957,20957,20957,33543,33543,33544,33544,20979, 20979,20979,20979,20979,20979,20979,20979,20979,20977,20977, 20977,20977,20977,20977,20977,33545,33545,33545,33546,33546, 33546,21001,21001,21001,21001,21001,21001,21001,21001,21001, 21001,21001,21001,21001,21001,21001,21001,21001,21001,21001, 21001,33545,33547,33545,21024,33547,21026,21026,21026,21026, 21026,21026,21026,21026,21026,21026,21026,21026,21024,33548, 33548,21041,21041,21041,21041,21041,21041,21041,21041,21041, 21041,21041,21041,21041,21041,21041,21041,21041,21041,21041, 33549,33549,33549,33550,33549,33549,33550,21067,21067,21067, 21067,21067,21067,33551,33551,33552,33552,33552,21078,21078, 21075,21075,21078,21075,21078,21078,21078,21075,21078,21078, 21078,21078,21075,21075,21075,21075,21075,21075,21075,21075, 21075,21075,21075,21075,33553,33553,33554,33554,33554,21109, 21109,21106,21106,21109,21106,21109,21109,21109,21106,21109, 21109,21109,21109,21106,21106,21106,21106,21106,21106,21106, 21106,21106,21106,21106,21106,21067,33555,21067,33555,21139, 33556,33557,29840,33558,33559,33559,33559,33560,33560,33561, 33559,33559,33559,33559,33562,33562,21156,21156,21156,21156, 21156,21156,21156,21156,21156,21156,21156,21156,21156,33563, 33563,21171,21171,21171,21171,21171,21171,21171,21171,21171, 21171,21171,21171,21171,33564,33564,21186,21186,21186,21156, 21156,21156,21156,21156,21156,21156,21156,21156,21156,21156, 21156,21156,21156,21156,33565,33559,21206,33559,21206,33559, 21210,21210,33559,33559,33559,21210,21216,21216,33559,33559, 33559,33559,21216,21223,21223,21223,21226,21226,21226,33559, 33559,33559,21223,21233,21233,21226,21236,21236,21236,21236, 33559,33559,33559,21233,21244,21244,21236,21247,21247,21247, 21247,33559,33559,33559,21244,21255,21255,21247,21258,21258, 21258,21258,21255,21263,21255,21265,21263,33559,21258,21269, 21269,33559,33566,33566,21274,21274,21274,33567,33567,21279, 21279,21279,21279,21279,21279,21279,21279,33559,33559,33559, 33559,33559,33559,21279,33568,33568,21296,33569,33569,21299, 21299,21299,33570,33570,21304,33571,33571,21307,33572,33572, 33573,21304,21304,33574,33574,21315,21315,21315,33575,33575, 21320,21320,33576,33576,21324,33577,33577,33578,33579,33579, 21330,21330,33580,33580,21334,33581,33581,33582,21299,21299, 21299,21299,21299,33583,33583,33583,33583,33583,33583,21299, 33583,33583,33583,33583,21354,21354,21354,21357,21357,33583, 21360,21360,21360,21357,21364,21364,21364,21367,21367,21364, 21370,21370,21367,21373,21373,21370,21376,21376,21373,21379, 21379,21376,21382,21382,21379,21385,21385,33583,33583,33583, 21382,21391,21391,21385,21394,21394,21394,21394,33584,33584, 21400,21400,21400,33583,33583,33583,33585,33585,33585,33585, 33585,33585,33585,33586,33586,33583,33583,33587,33588,33583, 33583,33583,33589,33589,33589,33589,33589,33589,33589,33589, 33589,33589,33590,33591,33591,33592,33592,33592,33592,33592, 33592,33583,33583,33593,33594,33583,33595,33596,33596,33596, 33596,33596,33596,33596,33596,33596,33597,33597,21458,33598, 33599,33599,33583,33583,33600,33600,33600,33600,33600,33600, 33600,33601,33602,33603,33583,33604,33605,33605,33606,33583, 33583,33607,33607,33607,33608,33608,33583,33583,33583,33609, 33609,21491,21491,21491,33583,33583,33583,33583,33610,33610, 33610,33610,33610,33610,33610,29840,33611,33612,33612,33612, 33613,33614,33615,33615,33616,33617,33617,33618,33616,33615, 33615,33615,33615,33615,33615,33619,33619,33620,33614,33614, 33621,33621,33622,33583,33583,33623,33624,33625,33626,33583, 33583,33583,33627,33628,33629,33630,33630,33630,33629,33631, 33631,33632,33583,33633,33634,33633,21556,33634,21558,21558, 21558,21558,33635,33635,33636,33637,33637,33637,33637,33637, 33637,33637,33637,33637,33636,21575,21575,21575,21575,33638, 33639,33639,33639,33639,33639,33639,33639,33639,33639,33638, 21590,21590,21590,21590,33640,33640,33641,33641,21598,21598, 21598,21598,21598,21598,21598,21598,21598,21598,21598,21598, 21598,21598,33642,21598,21598,21598,21598,21598,21596,33643, 21596,21596,33643,21623,21623,21623,33642,21623,21623,21623, 21623,21623,21623,21623,33644,33644,21636,21636,21636,21636, 21636,21636,21636,21636,21636,21636,21636,21636,21636,33645, 21636,21636,21636,21636,21636,33646,33646,21657,33647,21657, 33645,33648,33649,33647,21664,21664,21664,33650,33650,33651, 33651,21671,21671,21671,21671,21671,21671,21671,21671,21671, 21671,21671,21671,21669,21669,33648,21669,21669,21669,21669, 21669,21669,21669,33652,33652,33653,33653,21697,21697,21697, 21697,21697,21697,21697,21697,21697,21697,21697,21697,21695, 21695,33649,21695,21695,21695,21695,21695,21695,21695,33654, 21664,33655,33656,29840,33657,33658,33658,33658,33659,33659, 33660,33658,33658,33658,33658,33661,33661,21737,21737,21737, 21737,21737,21737,21737,21737,33658,33658,33658,33658,33658, 21737,33662,33658,33658,33658,33658,21756,21756,21756,21759, 21759,33658,21762,21762,21762,21759,21766,21766,21766,21769, 21769,21766,21772,21772,21769,21775,21775,21772,21778,21778, 21775,21781,21781,21778,21784,21784,21781,21787,21787,33658, 33658,33658,21784,21793,21793,21787,21796,21796,21796,21796, 33663,33663,21802,21802,21802,33664,33665,33666,33666,21809, 21809,21809,33667,33667,21814,21814,33668,33668,21818,21818, 33669,33669,21822,33670,33670,33671,33672,33672,33673,21814, 33674,33674,21832,21832,21832,33675,33675,21837,21837,21837, 33676,33676,21842,21842,33677,33677,21846,33678,33679,33679, 33680,33680,21852,21852,21852,33681,33681,21857,21857,33682, 33682,21861,33683,33684,33684,33685,33685,33685,33685,33685, 33685,33685,21872,21872,33685,33685,33685,21872,33685,33685, 33685,21878,33685,33685,33685,21878,33685,33685,33685,21878, 33685,21891,21891,21878,21894,21894,33686,33686,21898,21898, 21898,33685,33685,33685,33687,33687,33687,33687,33687,33687, 33687,33688,33689,33685,33690,33691,33690,33685,33685,33685, 33685,33692,33692,33692,33692,33692,33692,33692,33693,33693, 33694,33694,33694,33694,33694,33685,33685,33695,33696,33695, 33685,33697,33698,33698,33698,33698,33698,33698,33698,33698, 33698,33698,33698,33698,33699,33700,33701,33701,33685,33685, 33702,33702,33702,33702,33702,33702,33703,33704,33705,33685, 33706,33707,33707,33708,33685,33709,33709,33709,33710,33710, 33711,33685,33685,33712,33712,21985,21985,21985,33685,33685, 33713,33713,33713,33713,33713,33713,33714,29840,21998,21998, 21998,33685,21998,21998,21998,22005,33715,33716,33716,33716, 33717,33718,33719,33720,33721,33721,33722,33720,33719,33719, 33719,33719,33719,33719,33723,33723,33724,33718,33718,33725, 33725,33726,33685,33727,33728,33729,33730,33685,33685,33685, 33731,33732,33733,33734,33734,33734,33733,33735,33735,33736, 33685,33737,33738,33737,33737,33738,22056,22056,22056,22056, 33739,33740,33740,33741,33741,33741,33741,22063,33741,22063, 22063,22063,22063,33742,33742,33743,33743,33743,33743,22075, 33743,22075,22075,22075,22075,33744,33744,33745,33746,33745, 33745,22091,22091,22091,22091,22091,22091,22091,22091,33746, 22091,22100,22100,22100,22100,22100,22100,22100,22100,22100, 22100,22100,22100,22100,22100,22100,22100,22100,22100,22091, 22091,22091,22091,22091,22091,22091,22091,22087,33747,22087, 22087,33747,22132,22132,22100,22100,22100,22132,22132,22132, 22132,33748,33748,33748,22144,22144,22144,22144,22144,22144, 22144,22144,33749,22144,33749,22155,22155,22155,22155,22155, 22155,22155,22155,22155,22155,22155,22155,22155,22155,22155, 22155,22155,22144,22144,22144,22144,22144,22144,22144,22144, 33750,33750,22182,33751,22182,22155,33752,33752,33753,22188, 22188,22188,22188,22188,22188,22188,22188,22188,22188,22188, 22188,22188,22188,22188,33754,33754,33755,22206,22206,22206, 22206,22206,22206,22206,22206,22206,22206,22206,22206,22206, 22206,22206,33751,22223,22223,33756,33757,33757,22228,22228, 33753,22228,22228,22228,22228,22228,22228,22228,33756,22239, 22188,22188,22239,22239,22239,22239,22239,33758,33759,33759, 22250,22250,33755,22250,22250,22250,22250,22250,22250,22250, 33758,22261,22206,22206,22261,22261,22261,22261,22261,22223, 33760,33761,29840,33762,33763,33764,33764,33765,33763,33763, 33763,33763,33766,33766,22284,22284,22284,33763,33763,33763, 33763,33763,33763,33763,22294,22294,33763,33763,33763,22294, 33763,33763,33763,22300,33763,33763,33763,22300,33763,33763, 33763,22300,33763,22313,22313,22300,22316,22316,33767,33767, 22320,22320,22320,33768,33768,33769,33770,33770,22328,22328, 22328,33771,33771,22333,22333,22333,33772,33772,22338,22338, 22338,33773,33773,22343,22343,33774,33774,22347,33775,33775, 33776,33777,33777,22353,33778,33778,33779,22333,22333,22333, 22333,22333,22333,22333,22333,22333,22333,33780,33780,22369, 22369,22369,22369,22369,22369,22369,22369,22369,22369,22369, 22369,22369,33781,33781,22384,22384,22384,22384,22333,22333, 22333,22333,22333,22333,22333,22333,22333,22333,22333,22333, 22333,22333,22333,33782,33782,33782,33782,33782,33782,33782, 33783,33784,33784,33784,33784,33784,33784,33785,33785,33785, 33785,33786,33782,33782,29840,33787,33782,33782,33788,33789, 33789,33789,33789,33789,33789,33789,33790,33791,33788,33788, 33788,33782,33782,33782,29840,33792,33782,33793,33793,33793, 33793,33793,33793,33793,33793,33793,33793,33794,33795,33795, 33782,33782,33796,33796,33796,33796,33796,33797,33798,33799, 33782,33800,33801,33801,33802,33782,33803,33803,33803,33804, 33804,33805,33805,33805,33782,33782,33806,33806,22488,22488, 22488,33782,22492,33782,33807,33807,33807,29840,33808,33809, 22498,29840,22502,33782,22502,33810,22502,22504,22502,22502, 22502,33782,22502,33809,22514,33811,33812,33812,33812,33813, 33814,33815,33816,33817,33817,33818,33816,33815,33815,33815, 33815,33815,22530,33819,33819,33820,33814,33814,33821,33821, 33822,33782,33823,33824,33825,33782,33782,33782,33826,33827, 33828,33829,33829,33829,33828,33830,33830,33831,33782,33832, 33833,33832,33834,33833,22564,22564,33835,33834,33836,33836, 33836,22571,22571,33837,33837,22575,22575,33838,33838,33838, 22580,22580,22568,22568,22568,22568,33839,33839,33840,33841, 33841,33840,22592,22592,22592,22592,22592,22592,22592,22592, 22591,22592,22591,22591,22591,22591,22591,22591,22591,22591, 22591,22591,22591,22591,22591,22591,22591,22591,22591,22591, 22591,22591,22592,22592,22592,22592,22592,22592,22592,22592, 33839,33842,33839,33839,33842,22635,22635,22635,22591,22591, 22635,22635,22635,33843,33843,22645,22645,22645,22645,22645, 22645,22645,33844,22645,22645,33844,22656,22656,22656,22656, 22656,22656,22656,22656,22656,22656,22656,22656,22656,22656, 22656,22656,22656,22656,22656,22656,22656,22645,22645,22645, 22645,22645,22645,22645,22645,33845,33845,22687,22687,33846, 33847,33847,33847,22693,22693,22693,22693,22693,22693,22693, 22693,22693,22693,22693,22693,22693,33846,22707,22707,22707, 22707,22707,22707,22707,22707,22707,22707,22707,22707,22707, 22707,22707,22707,22707,22707,22707,33848,33849,33849,33849, 22730,22730,22730,22730,22730,22730,22730,22730,22730,22730, 22730,22730,22730,33848,22744,22744,22744,22744,22744,22744, 22744,22744,22744,22744,22744,22744,22744,22744,22744,22744, 22744,22744,22744,33850,33850,22765,33851,33851,33852,33852, 22770,22693,22693,22770,22770,22770,22768,22770,22768,22768, 22707,22707,22768,22768,22768,22768,33853,33853,33854,33854, 22790,22730,22730,22790,22790,22790,22788,22790,22788,22788, 22744,22744,22788,22788,22788,22788,22765,33855,33856,29840, 33857,33858,33859,33859,33860,33858,33858,33858,33861,33861, 22820,22820,22820,33858,33858,33858,33858,22824,33862,33862, 22830,33863,33863,22833,22833,22833,33864,33864,22838,22838, 22838,33865,33865,22843,22843,22843,33866,33866,22848,22848, 33867,33867,22852,33868,33868,33869,33870,33870,22858,22858, 33871,33871,22862,33872,33872,33873,22833,22833,22833,22833, 22833,22824,22872,22872,22872,22872,22872,22833,22872,33874, 33875,33874,33876,33876,33876,33876,33876,33877,33877,33878, 22872,33879,33880,22872,33881,33881,33881,33881,33881,33881, 33882,33882,33882,33882,33883,33884,33884,33884,22872,22872, 33885,22872,33886,33886,33886,33886,33886,33886,33886,33887, 33887,22872,22872,33888,33888,33889,33890,33891,22872,33892, 33893,33893,33894,33895,33895,33895,33896,33896,33897,22872, 22872,33898,33898,22943,22943,22943,22872,22872,22872,22872, 33899,33899,33899,33899,29840,22955,33900,22872,33900,22959, 22959,22959,29840,22963,22963,22872,22966,22966,22966,22963, 33901,22963,22968,22968,22974,22974,22974,22963,22978,22978, 33902,33903,33903,33903,33904,33905,33906,33907,33907,33908, 33909,33906,33906,33906,33910,33910,33911,33905,33905,33912, 33912,33913,22872,33914,33915,33916,22872,22872,22872,33917, 33918,33919,33920,33920,33920,33919,33921,33921,33922,22872, 33923,33924,33923,33924,23024,33925,33926,33926,33926,33927, 33927,23031,23031,33925,23034,23034,33928,33928,23038,23038, 33929,33929,33930,33931,33931,33930,23046,23046,23046,23046, 23046,23046,23046,23046,23046,23046,23045,23045,23045,23045, 23045,23045,23045,23045,23045,23045,23045,23045,23045,23045, 23045,23045,23045,23046,23046,23046,23046,23046,23046,23042, 33932,23042,33933,33932,23084,23045,23045,23084,23084,23084, 33934,33934,23092,23092,23092,23092,23092,23092,23092,23092, 23092,23092,33935,33935,23104,23104,23104,23104,23104,23104, 23104,23104,23104,23104,23104,23104,23104,23104,23104,23104, 23104,23104,23092,23092,23092,23092,23092,23092,33936,33936, 23130,23130,33937,33938,33938,23135,23135,23135,23135,23135, 23135,23135,23135,23135,23135,23135,23135,23135,23135,23135, 23135,23135,23135,23135,33937,23155,23155,23155,23155,23155, 23155,23155,23155,23155,23155,23155,23155,23155,23155,23155, 23155,23155,23155,33939,33940,33940,23176,23176,23176,23176, 23176,23176,23176,23176,23176,23176,23176,23176,23176,23176, 23176,23176,23176,23176,23176,33939,23196,23196,23196,23196, 23196,23196,23196,23196,23196,23196,23196,23196,23196,23196, 23196,23196,23196,23196,33941,33941,23216,33933,33942,33942, 33942,23135,23135,33942,33942,23225,23225,33943,33943,23155, 23155,23229,23229,23229,23229,33944,33944,33944,23176,23176, 33944,33944,23242,23242,23218,23218,23196,23196,23218,23218, 23218,23218,23216,33945,33946,29840,33947,33948,33949,33950, 33948,33948,33948,33951,33952,33952,23266,23266,23266,33953, 33953,23271,23271,23271,33954,33954,23276,23276,23276,33955, 33955,23281,23281,23281,33956,33956,23286,23286,33957,33957, 23290,33958,33959,33959,33960,33960,23296,23296,23296,33961, 33961,23301,23301,33962,33962,23305,33963,33964,33964,33965, 33966,29840,33967,33968,33968,33969,33969,33970,33966,33971, 33972,33972,33972,33972,33966,33973,33973,33973,33973,33973, 33974,33974,33975,33976,33976,33966,33966,33977,33966,33978, 33978,33978,33978,33978,33978,33978,33979,33980,33966,33966, 33981,33981,33981,33982,33983,33984,33966,33985,33986,33987, 33988,33989,33989,33989,33990,33990,33991,33966,33966,33992, 33992,23371,23371,23371,33966,33966,33993,33993,29840,33994, 23379,33994,23382,23382,23382,33995,33995,23387,23387,33966, 23390,23390,23390,23392,23392,23395,23395,23395,23390,33996, 23395,23395,23402,33966,23402,23404,23402,23402,23402,23387, 23387,33997,33998,33999,34000,34001,34002,34003,34003,34004, 34005,34002,34002,34006,34006,34007,34008,34009,34010,33966, 34011,34012,34013,33966,33966,33966,34014,34015,34016,34017, 34017,34017,34016,34018,34018,34019,33966,34020,34020,34021, 34021,34022,34022,23453,34023,34023,23456,34024,34024,23459, 34025,34025,23462,34026,34026,34027,34027,34027,23468,23468, 34028,34028,23468,23472,23468,23468,23472,23472,23472,23472, 23472,23472,23472,23472,23472,23472,23472,23472,23472,23472, 23472,23472,23472,23472,23472,23468,23472,23468,23468,23468, 23468,23465,34029,23465,34029,23505,23472,23472,23505,23505, 34030,34030,34030,23513,23513,34031,34031,23513,23517,23513, 23513,23517,23517,23517,23517,23517,23517,23517,23517,23517, 23517,23517,23517,23517,23517,23517,23517,23517,23517,23517, 23517,23513,23517,23513,23513,23513,23513,34032,34032,34032, 34033,34034,34034,23553,23553,23553,23553,23553,23553,23553, 23553,23553,23553,23553,23553,34033,23553,23553,23553,23553, 23553,23566,23566,23566,23566,23566,23566,23566,23566,23566, 23566,23566,23566,23566,23566,23566,23566,23566,23566,23566, 34035,34036,34036,23593,23593,23593,23593,23593,23593,23593, 23593,23593,23593,23593,23593,34035,23593,23593,23593,23593, 23593,23606,23606,23606,23606,23606,23606,23606,23606,23606, 23606,23606,23606,23606,23606,23606,23606,23606,23606,23606, 34037,34037,23632,34038,34039,34039,23553,23553,23636,23636, 23636,34040,34040,23643,23566,23566,23643,23643,23643,34038, 23650,23593,23593,23650,23650,23650,34041,34041,23658,23606, 23606,23658,23658,23658,23632,34042,34043,29840,34044,34045, 34046,34047,34045,34045,34048,34049,34049,23677,23677,23677, 34050,34050,23682,23682,23682,23682,23682,23682,23682,23682, 23682,23682,23682,23682,23682,34051,34051,23697,23697,23697, 23697,23697,23697,23697,23697,23697,23697,23697,23697,23697, 34052,34052,23712,23712,23712,23712,23682,23682,23682,23682, 23682,23682,23682,23682,23682,23682,23682,23682,23682,23682, 23682,34053,34053,34053,34054,34055,34055,34055,34056,34056, 34057,34045,34045,34058,34058,34058,34058,34045,34059,34059, 34060,34060,34061,34062,34062,34045,34045,34045,34045,34063, 34063,34063,34063,34063,34063,34064,34064,34064,34064,34065, 34045,34045,34066,34067,34068,34045,34069,34070,34070,34071, 34070,34072,34073,34074,34074,34074,34075,34075,34076,34045, 34045,34077,34077,23793,23793,23793,34045,23797,34045,34078, 34078,29840,34079,34079,23804,23804,23804,34045,23808,23808, 23808,23811,34045,23811,23808,23813,23813,23817,34045,23817, 23819,23817,23817,23817,34080,23817,23826,23826,23826,23829, 23829,23829,23826,23829,23826,23826,34081,34082,34083,34083, 34083,34083,34083,34084,34085,34085,34085,34085,34086,34086, 34086,34086,34086,34087,34088,34088,34089,34090,34087,34091, 34092,34093,34094,34095,34096,34097,34098,34099,23819,23869, 23869,34100,34101,34102,34103,34103,34103,34102,34104,34104, 34105,23869,34106,34106,34107,34107,34108,34108,34108,34109, 34109,34110,34110,34110,34111,34111,34112,34112,34113,34113, 23900,23900,23900,23900,34114,34114,23900,23900,23900,23906, 23906,23906,23906,23906,23906,23906,23906,23906,23906,23906, 23906,23906,23906,23906,23906,23906,23906,23900,23900,23900, 23900,23900,23898,23898,34115,34115,23906,23936,23936,34116, 34116,23941,23941,23941,23941,34117,34117,23941,23941,23941, 23947,23947,23947,23947,23947,23947,23947,23947,23947,23947, 23947,23947,23947,23947,23947,23947,23947,23947,23947,23941, 23941,23941,23941,23941,34118,34118,34118,34119,34120,34120, 34120,23981,23981,23981,23981,23981,23981,23981,34119,23981, 23981,23981,23981,23981,23981,23981,23981,23981,23989,23989, 23989,23989,23989,23989,23989,23989,23989,23989,23989,23989, 23989,23989,23989,23989,23989,23989,34121,34122,34122,34122, 24020,24020,24020,24020,24020,24020,24020,34121,24020,24020, 24020,24020,24020,24020,24020,24020,24020,24028,24028,24028, 24028,24028,24028,24028,24028,24028,24028,24028,24028,24028, 24028,24028,24028,24028,24028,34123,34123,24057,34124,34124, 23989,23981,24060,24060,24060,34125,34125,23989,24067,24067, 24067,34126,34126,24028,24020,24073,24073,24073,34127,34127, 24028,24080,24080,24080,24057,34128,34129,29840,34130,34131, 34132,34133,34133,34134,34134,24095,24095,24095,24095,24095, 24095,24095,24095,34133,34133,34133,34133,34133,34133,24095, 34135,34135,34136,34137,34138,34138,34139,34133,34140,34140, 34140,34140,34133,34141,34141,34141,34142,34142,34143,34144, 34133,34133,34133,34133,34145,34145,34145,34145,34145,34146, 34146,34147,34133,34133,34148,34149,34150,34133,34151,34152, 34152,34153,34154,34155,34155,34156,34156,34157,34133,34133, 34158,34158,24162,24162,24162,34133,34133,34133,34133,34159, 34159,29840,24172,29840,24174,24174,24174,34133,34133,34133, 34133,34133,24182,24182,24182,24184,24184,24187,24187,24187, 24182,24187,24187,24193,24193,24193,24196,24196,24196,24193, 24196,24193,24193,34160,34133,34133,34133,34133,24193,24209, 34133,24209,24211,24209,24209,24209,34133,34133,34161,34162, 34163,34163,34163,34163,34163,34164,34165,34165,34165,34165, 34166,34166,34166,34166,34166,34167,34168,34169,34170,34167, 34171,34172,34173,34174,34175,34175,34176,34177,34178,34133, 34133,34133,34179,34180,34181,34182,34182,34182,34183,34183, 34133,34184,34184,34185,34185,34186,34186,34187,34187,34188, 34188,34189,34189,34190,34190,34191,34191,24277,24277,24277, 24277,34192,24277,24277,24277,34192,24286,24286,24286,24286, 24286,24286,24286,24286,24286,24286,24286,24286,24286,24286, 24277,24277,24277,24275,24275,34193,34193,24286,24307,24307, 34194,34194,24312,24312,24312,24312,34195,24312,24312,24312, 34195,24321,24321,24321,24321,24321,24321,24321,24321,24321, 24321,24321,24321,24321,24321,24321,24312,24312,24312,34196, 34197,34198,34198,24343,24343,24343,24343,24343,24343,24343, 34197,24343,24343,24343,24343,24343,24343,24343,24343,24343, 24351,24351,24351,24351,24351,24351,24351,24351,24351,24351, 24351,24351,24351,24351,24351,24351,34199,34200,34200,24379, 24379,24379,24379,24379,24379,24379,34199,24379,24379,24379, 24379,24379,24379,24379,24379,24379,24387,24387,24387,24387, 24387,24387,24387,24387,24387,24387,24387,24387,24387,24387, 24387,24387,34201,34201,24414,34202,34202,24343,34202,34202, 34202,34203,34203,24351,24423,24423,34204,34204,24379,34204, 34204,34204,34205,34205,24387,24434,24434,24414,34206,34207, 29840,34208,34209,34210,34211,34211,34212,34212,24448,24448, 24448,34213,34213,34211,34214,34215,34215,34216,34211,34217, 34217,34217,34217,34211,34218,34219,34219,34220,34221,34221, 34211,34211,34211,34211,34222,34222,34223,34223,34224,34211, 34225,34226,34227,34228,34211,34229,34230,34230,34231,34232, 34233,34233,34234,34234,34235,34211,34211,34236,34236,24499, 24499,24499,34211,34211,34237,34238,34239,34239,24508,24508, 34211,24511,24511,24511,24514,34211,24514,24511,24516,24516, 24520,34211,24520,24522,24520,24520,24520,34211,34211,34211, 34211,24520,24532,34211,24532,24534,24532,24532,24532,34211, 34211,24532,24542,24542,24542,24545,24545,24545,24542,24545, 24542,24542,34211,34240,34241,34242,34242,34242,34242,34242, 34243,34244,34244,34244,34244,34245,34245,34245,34245,34245, 34246,34247,34248,34249,34246,34250,34251,34252,34253,34254, 34255,34256,34211,34211,34211,34257,34258,34259,34260,34260, 34260,34261,34261,34211,34262,34262,34263,34263,34264,34264, 34265,34265,34266,34266,34267,34267,34268,34268,34269,34269, 24610,24610,24610,34270,24610,24610,34270,24617,24617,24617, 24617,24617,24617,24617,24617,24617,24617,24617,24617,24617, 24617,24617,24610,34268,24634,34271,34271,24617,24637,24637, 34272,34272,24642,24642,24642,24642,34273,24642,24642,34273, 24650,24650,24650,24650,24650,24650,24650,24650,24650,24650, 24650,24650,24650,24650,24650,24650,24642,34274,34275,34275, 24670,24670,24670,24670,24670,24670,24670,24670,24670,24670, 24670,24670,24670,24670,24670,34274,24686,24686,24686,24686, 24686,24686,24686,24686,24686,24686,24686,24686,24686,24686, 34276,34277,34277,24703,24703,24703,24703,24703,24703,24703, 24703,24703,24703,24703,24703,24703,24703,24703,34276,24719, 24719,24719,24719,24719,24719,24719,24719,24719,24719,24719, 24719,24719,24719,34278,34278,24735,34279,34279,24670,24738, 24738,34280,34280,24686,24743,24743,34281,34281,24703,24748, 24748,34282,34282,24719,24753,24753,34283,34284,29840,34285, 34286,34287,34288,34288,34289,34289,24766,24766,24766,34290, 34290,34291,34292,34293,34288,34294,34294,34294,34288,34295, 34296,34296,34297,34288,34288,34288,34288,34298,34298,34298, 34299,34299,34300,34288,34301,34302,34302,34303,34304,34305, 34288,34306,34307,34307,34308,34309,34310,34310,34311,34311, 34312,34288,34288,34313,34313,24815,24815,24815,34288,24819, 34288,34314,34314,34314,34314,29840,24826,24826,24826,34288, 34288,34288,34288,34288,24834,24834,24834,24836,24836,24839, 24839,24839,24834,24839,24839,24845,24845,24845,24848,24848, 24848,24845,24848,24845,24845,24845,24856,24856,24856,24859, 24859,24859,24856,24859,24856,24856,34288,34288,34288,34288, 34288,24856,24872,34288,24872,24874,24872,24872,24872,34288, 34288,24872,24882,24882,24882,34315,34316,34317,34317,34317, 34317,34317,34318,34319,34319,34319,34319,34320,34320,34320, 34320,34320,34321,34322,34323,34321,34324,34325,34326,34327, 34328,34329,34330,34288,34288,34288,34331,34332,34333,34334, 34334,34334,34335,34335,34288,34336,34336,34337,34337,34338, 34338,34339,34339,34340,34340,34341,34342,34341,24938,24938, 24938,24938,34343,24938,24938,34343,24946,24946,24946,24946, 24946,24946,24946,24946,24946,24946,24946,24938,34342,34342, 34344,34344,24946,24962,24962,34345,34345,24967,24967,24967, 24967,34346,24967,24967,34346,24975,24975,24975,24975,24975, 24975,24975,24975,24975,24975,24975,24975,24967,34347,34347, 34348,34348,34348,24993,24993,24990,24990,24993,24990,24993, 24993,24990,24993,24993,24993,24993,24990,24990,24990,24990, 24990,24990,24990,24990,24990,24990,24990,34349,34349,34350, 34350,34350,25022,25022,25019,25019,25022,25019,25022,25022, 25019,25022,25022,25022,25022,25019,25019,25019,25019,25019, 25019,25019,25019,25019,25019,25019,34351,34351,25048,34352, 34352,24993,25051,25051,34353,34353,24990,25056,25056,34354, 34354,25022,25061,25061,34355,34355,25019,25066,25066,34356, 34357,34357,34357,34357,29840,34358,34358,34358,34358,34359, 34360,34361,34361,34362,34362,34363,34364,34365,34361,34366, 34366,34361,34367,34368,34369,34361,34361,34361,34361,34370, 34371,34371,34372,34361,34373,34373,34373,34361,34374,34374, 34375,34375,34375,34375,34375,34376,34377,34361,34378,34379, 34379,34380,34381,34382,34382,34383,34383,34384,34361,34361, 34385,34385,25132,25132,25132,34361,34361,34361,34361,34386, 34386,34386,34386,34361,25144,25144,25144,25147,34361,25147, 25144,25149,25149,25153,34361,25153,25155,25153,25153,25153, 34361,34361,34361,34361,25153,25165,34361,25165,25167,25165, 25165,25165,34361,34361,34361,34361,34361,34361,25165,25179, 34361,25179,25181,25179,25179,25179,34361,34361,25179,25189, 25189,25189,25179,25193,25193,25193,25196,25196,25196,25193, 25196,25193,25193,34361,34361,25189,25206,25206,34387,34388, 34389,34389,34389,34389,34390,34391,34391,34391,34392,34392, 34392,34392,34393,34394,34395,34396,34397,34398,34399,34400, 34401,34402,34361,34361,34403,34404,34405,34406,34406,34406, 34407,34407,34361,34408,34408,34409,34409,34410,34410,34411, 34411,34412,34412,34413,34414,34415,34415,25257,34416,25257, 25257,34416,25262,25262,25262,25262,25262,25262,25262,25262, 25262,25262,34417,34417,25262,25274,25274,34414,34418,34418, 25280,25280,34419,25280,25280,34419,25286,25286,25286,25286, 25286,25286,25286,25286,25286,25286,25286,34420,34420,34421, 34421,25301,25301,25301,25301,25301,25301,25301,25301,25301, 25301,25301,25299,25299,25299,25299,25299,25299,25299,25299, 25299,34422,34422,34423,34423,25325,25325,25325,25325,25325, 25325,25325,25325,25325,25325,25325,25323,25323,25323,25323, 25323,25323,25323,25323,25323,34424,34425,34425,25301,25348, 25348,34426,34426,25299,25353,25353,34427,34427,25325,25358, 25358,34428,34428,25323,25363,25363,34429,34429,34429,34429, 29840,34430,34431,34430,34430,34432,34433,34434,34434,34435, 34435,34436,34436,34436,34436,34436,34437,34438,34434,34431, 34431,34439,34440,34441,34434,34434,34434,34434,34442,34443, 34443,34444,34445,34445,34446,34447,34447,34447,34447,34447, 34448,34449,34434,34450,34451,34451,34452,34453,34454,34454, 34455,34455,34455,34456,34434,34434,34457,34457,25428,25428, 25428,34434,34434,34458,34458,34458,34458,34434,34434,34434, 34434,34434,25442,25442,25442,25444,25444,25447,25447,25442, 25447,25447,25452,25452,25452,25455,25455,25452,25455,25452, 25452,25452,25462,25462,25462,25465,25465,25462,25465,25462, 25462,34434,25462,25473,25473,25473,25476,25476,25473,25476, 25473,25473,34434,25473,25484,25484,34434,34434,34434,34434, 25473,25491,34434,25491,25493,25491,25491,25491,34434,34434, 25484,25501,25501,25501,34434,34434,34434,34434,25501,34459, 34460,34460,34460,34461,34462,34462,34463,34463,34463,34464, 34465,34466,34467,34468,34469,34470,34471,34472,34473,34434, 34434,34474,34475,34476,34477,34477,34477,34478,34478,34434, 34479,34479,34480,34480,34481,34481,34482,34482,34483,34483, 34484,34484,25552,25552,25552,25552,25552,25552,25552,25552, 25552,25552,25552,25552,25552,25552,25552,34485,34485,25569, 34486,25569,25569,34486,25574,25574,25574,25574,25574,25574, 34487,34487,25574,25582,25582,34488,34488,34489,25587,34489, 25587,25587,25590,25590,25590,25590,25590,25590,25590,25590, 25590,34490,34490,34491,34491,25605,25605,25605,25605,25605, 25605,25605,25605,25605,25603,25603,25603,25603,25603,25603, 34492,34492,34493,34493,25624,25624,25624,25624,25624,25624, 25624,25624,25624,25622,25622,25622,25622,25622,25622,34494, 34494,25605,25641,25641,34495,34495,25603,25646,25646,34496, 34496,25624,25651,25651,34497,34497,25622,25656,25656,34498, 34498,34498,34498,29840,34499,34499,34500,34500,34501,34502, 34502,34503,34504,34504,34504,34504,34505,34506,34502,34499, 34499,34507,34507,34507,34507,34507,34508,34509,34502,34502, 34502,34502,34510,34511,34512,34513,34513,34514,34515,34515, 34515,34515,34515,34516,34517,34502,34518,34519,34520,34521, 34522,34522,34523,34523,34524,34502,34502,34525,34525,25719, 25719,25719,34502,25723,34502,34526,34526,34526,34526,34502, 25730,25730,25730,34502,25733,25733,25730,25733,25734,34502, 25739,25739,25739,25739,34502,34502,34502,34502,25739,34502, 25749,25749,25749,25749,34502,34502,34502,34502,34502,34502, 25749,34502,25761,25761,25761,25761,34502,34502,25761,25769, 25769,25769,34502,34502,34502,34502,25761,34502,25777,25777, 25777,25777,34502,34502,25769,25785,25785,25785,25785,25777, 25790,25790,25790,25793,25793,25790,25793,25790,25790,34502, 25785,25801,25801,34502,34502,34527,34527,34527,34528,34529, 34529,34530,34530,34530,34531,34532,34533,34534,34535,34536, 34537,34538,34539,34540,34502,34502,34541,34542,34543,34544, 34544,34545,34546,34502,34547,34547,34548,34548,34549,34549, 25840,25840,25840,25840,25840,25840,25840,25840,25840,25840, 25840,25840,25840,25840,25840,25840,25840,25840,25840,34550, 34550,34550,34551,34550,34550,34551,25866,25866,25866,25866, 25866,25866,25866,34552,25866,34552,25876,34553,34553,34553, 34554,34553,34553,34554,25884,25884,25884,25884,25884,25884, 25884,25884,34555,34555,25894,34556,34556,25897,25897,25897, 25897,25894,25897,25894,25894,25894,25894,25894,34557,34557, 25910,34558,34558,25913,25913,25913,25913,25910,25913,25910, 25910,25910,25910,25910,34559,34559,25897,34559,25928,25894, 34560,25894,34560,25933,34561,34561,25913,34561,25938,25910, 34562,25910,34562,25943,34563,34563,34563,34563,29840,34564, 34564,34565,34565,34566,34567,34567,34568,34569,34569,34569, 34569,34570,34571,34567,34564,34564,34572,34572,34572,34572, 34573,34574,34567,34567,34567,34567,34575,34576,34577,34578, 34567,34579,34579,34579,34579,34579,34580,34581,34567,34582, 34583,34584,34585,34586,34587,34587,34588,34567,34567,34589, 34589,26001,26001,26001,34567,34567,34567,34567,34590,34590, 34590,34567,34567,34567,34567,34567,34567,26016,26016,26019, 26016,26016,26016,26019,26024,26024,26026,26024,26024,26024, 26024,26031,26031,26033,26031,26031,26031,34567,26031,26039, 26039,26041,26039,26039,26039,34567,26039,26047,26047,26039, 26050,26050,26052,26050,26050,26050,34567,26047,26058,26058, 34567,34567,34567,34567,26050,34567,26065,26065,26065,26065, 34567,34567,26058,26073,26073,26073,26073,34567,34567,34567, 34567,34591,34591,34591,34592,34593,34593,34594,34594,34594, 34595,34596,34597,34598,34599,34600,34601,34602,34603,34567, 34567,34604,34605,34606,34607,34607,34608,34609,34609,34609, 34609,34609,34610,34611,34611,26115,26115,26115,26115,26115, 26115,26115,26115,26115,26115,26115,26115,26115,34612,26115, 26115,26115,26115,26115,34613,34613,26136,34614,26136,34612, 34615,34614,26142,26142,26142,34616,26142,34617,34617,26149, 34618,26149,34619,34620,34618,26155,26155,26155,26155,26155, 34619,34615,34621,34621,26164,26164,26164,26164,26164,34622, 34622,26171,26171,26171,34620,34623,34623,34623,34623,34623, 34623,26181,26162,26162,26162,26162,26162,26164,34624,26164, 34624,34624,34625,26171,26181,34626,26181,34626,34626,34627, 26162,34628,34628,34628,34629,34630,34630,34631,34631,34632, 34633,34633,34634,34635,34635,34635,34635,34636,34637,34630, 34630,34638,34638,34638,34638,34639,34640,34633,34633,34633, 34633,34641,34641,34641,34641,34641,34642,34643,34644,34645, 34645,34645,34645,34646,34633,34647,34648,34649,34650,34651, 34652,34652,34653,34654,34633,34655,34655,26257,26257,26257, 34633,34633,34656,34656,34633,26265,26265,34633,26267,26265, 26268,34633,26271,26271,26265,26265,34633,34633,34633,26271, 34633,26280,26280,34633,34633,34633,34633,34633,26280,34633, 26289,26289,34633,34633,26289,26295,26295,26295,34633,34633, 34633,26289,34633,26302,26302,34633,34633,26295,26308,26308, 26308,26308,34633,34633,34633,26302,34633,26316,26316,34633, 34633,26308,26322,26322,26322,26322,26316,26327,26327,26329, 26327,26327,26327,34633,26322,26335,26335,34633,34633,34657, 34657,34657,34658,34659,34659,34660,34660,34660,34661,34662, 34663,34664,34665,34666,34667,34668,34633,34633,34669,34670, 34671,34672,34672,34673,34674,34674,34674,34675,34675,34676, 34676,34676,26372,26372,26372,26372,26372,26372,26372,26372, 34677,26372,34677,26383,26383,26383,26383,26383,26383,26383, 26383,26383,26383,26383,26383,26383,26383,26383,26383,26383, 26372,26372,26372,26372,26372,26372,26372,26372,34678,34678, 26410,34679,26410,26383,34679,26415,26415,26415,34680,34680, 26420,34681,26420,34682,34682,34683,26425,26425,26425,26425, 26425,26425,26425,26425,26425,26425,26425,26425,26425,26425, 26425,34684,34684,34685,26443,26443,26443,26443,26443,26443, 26443,26443,26443,26443,26443,26443,26443,26443,26443,34681, 26460,26460,26460,26460,34683,34686,34687,34687,26468,26468, 34688,34688,26472,26472,26472,34685,34686,26477,26477,26477, 34689,34689,26482,26482,26482,34690,26468,26472,34691,26477, 26482,34692,34692,34693,34693,34693,34694,34694,34694,34695, 34695,34696,34697,34697,34698,34699,34699,34699,34700,34701, 34694,34702,34702,34702,34702,34703,34704,34697,34697,34697, 34697,34705,34705,34705,34705,34706,34707,34708,34709,34709, 34710,34697,34711,34712,34713,34714,34714,34714,34714,34694, 34715,34716,34717,34718,34718,34718,34697,34719,34719,26549, 26549,26549,34697,26553,34697,34720,34720,34697,34697,34697, 34697,34697,26561,34697,26564,26561,26564,26567,26564,26569, 26567,34697,34697,26567,26574,26569,26576,26574,34697,26574, 26580,26576,26582,26580,34697,26580,26586,26586,26580,26589, 26582,26591,26589,34697,26586,26595,26595,26589,26598,26591, 26600,26598,34697,26595,26604,26604,34697,34697,34697,26598, 34697,26610,26610,34697,34697,26604,26616,26616,26616,26616, 34697,34697,34697,34697,34721,34721,34722,34723,34723,34724, 34724,34724,34725,34726,34727,34728,34729,34730,34731,34732, 34697,34733,34734,34735,34736,34736,34737,34738,34738,34738, 34739,34740,34740,26653,26653,26653,26653,26653,26653,26653, 34741,26653,26653,34741,26664,26664,26664,26664,26664,26664, 26664,26664,26664,26664,26664,26664,26664,26664,26664,26664, 26664,26664,26664,26664,26664,26653,26653,26653,26653,26653, 26653,26653,26653,34742,34742,26695,26695,34743,34743,26699, 26699,34744,34744,26703,26703,34745,34746,34746,34746,26709, 26709,26709,26709,26709,26709,26709,26709,26709,26709,26709, 26709,26709,34745,26723,26723,26723,26723,26723,26723,26723, 26723,26723,26723,26723,26723,26723,26723,26723,26723,26723, 26723,26723,34747,34748,34748,34748,26746,26746,26746,26746, 26746,26746,26746,26746,26746,26746,26746,26746,26746,34747, 26760,26760,26760,26760,26760,26760,26760,26760,26760,26760, 26760,26760,26760,26760,26760,26760,26760,26760,26760,34749, 34749,26781,26781,34750,34750,26785,26785,34751,34751,26789, 26789,34752,34752,26793,26793,34753,34753,26797,26797,26785, 26789,26793,26797,34754,34754,34755,34755,34755,34756,34756, 34756,34756,34756,34756,34756,34757,34757,34758,34759,34759, 34760,34761,34761,34762,34756,34763,34763,34763,34764,34765, 34759,34759,34759,34759,34766,34766,34766,34766,34767,34768, 34769,34770,34770,34771,34759,34772,34773,34774,34756,34774, 34774,34775,34776,34777,34778,34778,34759,34779,34779,26859, 26859,26859,34759,34759,34759,34759,34780,34780,34759,26869, 34759,26869,34759,26873,26873,34759,34759,34759,26873,26879, 26879,34759,34759,34759,34759,26879,26886,26886,26886,26889, 26889,26889,34759,34759,34759,26886,26896,26896,26889,26899, 26899,26899,26899,34759,34759,34759,26896,26907,26907,26899, 26910,26910,26910,26910,34759,34759,34759,26907,26918,26918, 26910,26921,26921,26921,26921,26918,26926,26918,26928,26926, 34759,26921,26932,26932,34759,34781,34782,34783,34784,34784, 34785,34786,34787,34788,34789,34790,34791,34792,34792,34793, 34794,34795,34796,34796,34797,34798,34798,34798,34799,34800, 34800,26961,26961,26961,26961,26961,26961,26961,26961,26961, 26961,34801,34801,26973,26973,26973,26973,26973,26973,26973, 26973,26973,26973,26973,26973,26973,26973,26973,26973,26973, 26973,26961,26961,26961,26961,26961,26961,34802,34802,26999, 26999,34803,34803,27003,27003,34804,34804,27007,27007,34805, 34806,34806,27012,27012,27012,27012,27012,27012,27012,27012, 27012,27012,27012,27012,27012,27012,27012,27012,27012,27012, 27012,34805,27032,27032,27032,27032,27032,27032,27032,27032, 27032,27032,27032,27032,27032,27032,27032,27032,27032,27032, 27032,34807,34808,34808,27054,27054,27054,27054,27054,27054, 27054,27054,27054,27054,27054,27054,27054,27054,27054,27054, 27054,27054,27054,34807,27074,27074,27074,27074,27074,27074, 27074,27074,27074,27074,27074,27074,27074,27074,27074,27074, 27074,27074,27074,34809,34809,27095,27095,34810,34810,34810, 34810,34811,34811,27103,34812,34812,34812,34812,34813,34813, 27110,34810,27103,34812,27110,34814,34814,34815,34815,34815, 34816,34816,34816,34816,34816,34816,34816,34817,34818,34819, 34819,34819,34819,34819,34819,34820,34821,34821,34822,34816, 34823,34823,34824,34819,34819,34819,34819,34825,34825,34825, 34825,34826,34827,34828,34829,34829,34830,34819,34831,34832, 34816,34833,34833,34834,34835,34836,34837,34837,34838,34838, 27170,27170,27170,34819,34819,34839,34839,34819,34819,34819, 34819,27181,27181,27181,27184,27184,34819,27187,27187,27187, 27184,27191,27191,27191,27194,27194,27191,27197,27197,27194, 27200,27200,27197,27203,27203,27200,27206,27206,27203,27209, 27209,27206,27212,27212,34819,34819,34819,27209,27218,27218, 27212,27221,27221,27221,27221,34840,34841,34842,34843,34844, 34845,34846,34847,34848,34849,34850,34851,34852,34852,34853, 34854,34855,34856,34856,34857,34858,34858,34858,34859,34860, 34860,34860,27252,27252,34861,34861,27252,27256,27252,27252, 27256,27256,27256,27256,27256,27256,27256,27256,27256,27256, 27256,27256,27256,27256,27256,27256,27256,27256,27256,27256, 27252,27256,27252,27252,27252,27252,34862,34862,34862,34863, 34863,27291,27291,34864,34864,34864,27296,34865,34866,34866, 27300,27300,27300,27300,27300,27300,27300,27300,27300,27300, 27300,27300,27300,34865,27300,27300,27300,27300,27300,27314, 27314,27314,27314,27314,27314,27314,27314,27314,27314,27314, 27314,27314,27314,27314,27314,27314,27314,27314,27314,34867, 34868,34868,27342,27342,27342,27342,27342,27342,27342,27342, 27342,27342,27342,27342,27342,34867,27342,27342,27342,27342, 27342,27356,27356,27356,27356,27356,27356,27356,27356,27356, 27356,27356,27356,27356,27356,27356,27356,27356,27356,27356, 27356,34869,34869,27383,27383,34870,34870,27387,34871,34871, 27390,34872,34872,27393,34873,34873,27396,27387,27390,27393, 27396,34874,34874,34875,34875,34875,34876,34876,34876,34876, 34876,34876,34876,34877,34878,34879,34879,34879,34879,34879, 34879,34879,34879,34880,34881,34881,34882,34876,34883,34883, 34884,34879,34879,34879,34879,34885,34885,34885,34886,34887, 34888,34889,34889,34890,34879,34891,34892,34893,34893,34894, 34895,34896,34897,34897,34898,34898,27456,27456,27456,34879, 27460,34879,34899,34899,34879,34879,34879,34879,34879,34879, 34879,27471,27471,34879,34879,34879,27471,34879,34879,34879, 27477,34879,34879,34879,27477,34879,34879,34879,27477,34879, 27490,27490,27477,27493,27493,34900,34901,34902,34903,34904, 34904,34904,34904,34904,34904,34905,34906,34907,34908,34909, 34910,34911,34912,34913,34914,34915,34916,34916,34917,34918, 34918,34918,34919,34920,34920,27525,27525,27525,27525,34921, 34921,27525,27525,27525,27531,27531,27531,27531,27531,27531, 27531,27531,27531,27531,27531,27531,27531,27531,27531,27531, 27531,27531,27531,27525,27525,27525,27525,27525,34922,34922, 34922,34923,34923,27563,27563,34924,34924,34924,34924,34925, 34926,34926,34926,27573,27573,27573,27573,27573,27573,27573, 27573,34925,27573,27573,27573,27573,27573,27573,27573,27573, 27573,27582,27582,27582,27582,27582,27582,27582,27582,27582, 27582,27582,27582,27582,27582,27582,27582,27582,27582,27582, 34927,34928,34928,34928,27614,27614,27614,27614,27614,27614, 27614,27614,34927,27614,27614,27614,27614,27614,27614,27614, 27614,27614,27623,27623,27623,27623,27623,27623,27623,27623, 27623,27623,27623,27623,27623,27623,27623,27623,27623,27623, 27623,34929,34929,27653,27653,34930,34930,27657,34931,34931, 27660,34932,34932,27663,34933,34933,27666,27657,27660,27663, 27666,34934,34934,34935,34935,34936,34936,34936,34936,34936, 27678,34936,34937,34938,34938,34939,34940,34940,34941,34936, 34942,34942,34943,34938,34938,34938,34938,34944,34944,34945, 34946,34947,34947,34948,34938,34949,34950,34950,34951,34952, 34953,34954,34955,34955,27714,27714,27714,34938,34938,34938, 34956,34957,34938,34938,34938,34938,27723,34958,34959,34960, 34961,34962,34962,34962,34962,34962,34963,34964,34965,34966, 34967,34968,34969,34970,34971,34972,34973,34974,34974,34975, 34976,34976,34977,34978,34978,27755,27755,27755,27755,34979, 27755,27755,27755,34979,27764,27764,27764,27764,27764,27764, 27764,27764,27764,27764,27764,27764,27764,27764,27764,27755, 27755,27755,34980,34981,34981,27785,27785,34982,34983,34984, 34984,27791,27791,27791,27791,27791,27791,27791,34983,27791, 27791,27791,27791,27791,27791,27791,27791,27791,27791,27799, 27799,27799,27799,27799,27799,27799,27799,27799,27799,27799, 27799,27799,27799,27799,27799,27799,34985,34986,34986,27829, 27829,27829,27829,27829,27829,27829,34985,27829,27829,27829, 27829,27829,27829,27829,27829,27829,27829,27837,27837,27837, 27837,27837,27837,27837,27837,27837,27837,27837,27837,27837, 27837,27837,27837,27837,34987,34987,27866,27866,34988,34988, 27870,34989,34989,27873,34990,34990,27876,34991,34991,27879, 27870,27873,27876,27879,34992,34993,34994,34994,34994,34995, 34996,34996,34997,34998,34998,34999,34994,35000,35000,35001, 34996,34996,34996,34996,35002,35002,35003,35004,35005,34996, 35006,35007,35007,35008,35008,35008,35008,35009,35010,35011, 35011,27921,27921,27921,34996,35012,35012,35012,35013,35014, 35015,35016,35017,35018,35018,35018,35018,35018,35019,35020, 35021,35022,35023,35024,35024,35024,35024,35025,35025,35025, 35026,35027,35028,35028,35029,35029,35030,35031,35031,27959, 27959,27959,27959,35032,27959,27959,35032,27967,27967,27967, 27967,27967,27967,27967,27967,27967,27967,27967,27967,27967, 27967,27967,27967,27959,35033,35033,27986,35034,35035,35035, 27990,27990,27990,27990,27990,27990,27990,27990,27990,27990, 27990,27990,27990,27990,27990,27990,35034,28007,28007,28007, 28007,28007,28007,28007,28007,28007,28007,28007,28007,28007, 28007,28007,35036,35037,35037,28025,28025,28025,28025,28025, 28025,28025,28025,28025,28025,28025,28025,28025,28025,28025, 28025,35036,28042,28042,28042,28042,28042,28042,28042,28042, 28042,28042,28042,28042,28042,28042,28042,35038,35038,28059, 28059,35039,35039,28063,35040,35040,28066,35041,35041,28069, 35042,35042,28072,28063,28069,35043,35044,35045,35045,35046, 35047,35047,35047,35047,35047,35047,35047,35047,35047,35048, 35049,35050,35045,35051,35051,35052,35047,35047,35047,35047, 35053,35053,35054,35055,35056,35047,35057,35058,35058,35059, 35059,35059,35060,35061,35062,35062,28116,28116,28116,35047, 28120,35063,35063,35064,35065,35066,35067,35068,35069,35069, 35069,35069,35069,35070,35071,35072,35073,35074,35075,35075, 35075,35075,35076,35076,35076,35077,35078,35079,35079,35080, 35080,35081,35082,35082,35082,35082,35082,35082,35083,35082, 28160,35083,28162,28162,28162,28162,28162,28162,28162,28162, 28162,28162,28162,28162,28160,35084,35084,28177,35085,35085, 35086,35086,35086,28183,28183,28180,28180,28183,28180,28183, 28183,28183,28180,28183,28183,28183,28183,28180,28180,28180, 28180,28180,28180,28180,28180,28180,28180,28180,28180,35087, 35087,35088,35088,35088,28214,28214,28211,28211,28214,28211, 28214,28214,28214,28211,28214,28214,28214,28214,28211,28211, 28211,28211,28211,28211,28211,28211,28211,28211,28211,28211, 35089,35089,28242,28242,35090,35090,35090,35091,35091,28249, 35092,35092,35092,35093,35093,28255,35094,35095,35096,35097, 35098,35098,35098,35098,35098,35098,35098,35098,35098,35098, 35098,35099,35100,35101,35096,35102,35103,35098,35098,35098, 35098,35104,35104,35105,35106,35107,35098,35108,35096,35109, 35110,35111,35110,35112,35113,35114,35114,28297,28297,28297, 35098,35098,35098,35115,35115,35116,35117,35118,35119,35120, 35121,35121,35121,35121,35122,35123,35124,35125,35126,35126, 35127,35127,35128,35128,35129,35130,35131,35131,35132,35132, 35133,35134,35134,28333,28333,35135,28333,28333,35135,28339, 28339,28339,28339,28339,28339,28339,28339,28339,28339,28339, 35136,35137,35137,35138,35138,28355,28355,28355,28355,28355, 28355,28355,28355,28355,28355,28355,28355,28353,28353,28353, 28353,28353,28353,28353,28353,28353,28353,35139,35139,35140, 35140,28381,28381,28381,28381,28381,28381,28381,28381,28381, 28381,28381,28381,28379,28379,28379,28379,28379,28379,28379, 28379,28379,28379,35141,35142,35142,35142,35143,35144,35144, 35144,35145,35146,35147,35148,35149,35150,35150,35151,35152, 35148,35153,35154,35150,35150,35150,35150,35155,35155,35156, 35157,35158,35150,35159,35160,35161,35162,35162,35162,35162, 35162,35161,35163,35164,35164,28445,28445,28445,35150,35165, 35165,35166,35167,35168,35169,35170,35171,35172,35172,35172, 35173,35174,35175,35176,35177,35177,35177,35177,35177,35178, 35178,35179,35179,35180,35181,35182,35182,35183,35183,35184, 35185,35185,35186,28482,35186,28482,28482,28485,28485,28485, 28485,28485,28485,28485,28485,28485,35187,35187,35188,35188, 28500,28500,28500,28500,28500,28500,28500,28500,28500,28500, 28498,28498,28498,28498,28498,28498,28498,28498,35189,35189, 35190,35190,28522,28522,28522,28522,28522,28522,28522,28522, 28522,28522,28520,28520,28520,28520,28520,28520,28520,28520, 35191,35192,35193,35194,35195,35196,35197,35197,35198,35199, 35195,35200,35197,35197,35197,35197,35201,35202,35203,35204, 35197,35205,35206,35207,35208,35208,35208,35208,35207,35209, 35210,35210,28572,28572,28572,35197,28576,35211,35211,35212, 35213,35214,35215,35216,35217,35217,35217,35217,35217,35218, 35218,35218,35219,35220,35221,35222,35223,35223,35223,35224, 35224,35225,35225,35226,35227,35228,35228,35229,35229,35230, 35231,35231,35231,35232,35231,35231,35232,28617,28617,28617, 28617,28617,28617,28617,28617,35233,35233,28627,35234,35234, 28630,28630,28630,28630,28630,28630,28627,28630,28627,28627, 28627,28627,28627,28627,28627,35235,35235,28647,35236,35236, 28650,28650,28650,28650,28650,28650,28647,28650,28647,28647, 28647,28647,28647,28647,28647,35237,35238,35239,35240,35240, 35241,35242,35243,35240,35240,35240,35240,35244,35245,35246, 35247,35240,35248,35249,35250,35251,35251,35251,35250,35252, 35253,35253,28692,28692,28692,35240,35240,35240,35254,35254, 35255,35256,35257,35258,35259,35260,35260,35260,35260,35261, 35261,35261,35262,35263,35264,35265,35266,35266,35267,35267, 35268,35268,35269,35270,35271,35271,35272,35272,35273,35274, 35274,28731,35275,28731,35276,35275,28736,28736,28736,28736, 28736,35276,35277,35277,28744,28744,28744,28744,28744,28744, 28744,35278,35278,28753,28753,28753,28753,28753,35279,35279, 35279,35279,35279,35279,35279,28765,28765,28742,28742,28742, 28742,28742,28742,28742,35280,35281,35282,35283,35283,35283, 35284,35285,35283,35283,35283,35283,35286,35287,35288,35283, 35289,35290,35291,35291,35291,35290,35292,35293,35293,28799, 28799,28799,35283,35294,35294,35295,35296,35297,35297,35297, 35297,35297,35298,35298,35298,35298,35299,35300,35301,35302, 35302,35303,35303,35304,35304,35305,35306,35307,35307,35308, 35309,35310,35310,28833,35311,28833,35311,28837,28837,28837, 28837,35312,35313,35313,28844,28844,28844,28844,35314,35314, 28850,28850,28850,28850,28850,35312,28856,28856,28856,28856, 28856,35315,35315,28863,28863,28863,28863,28863,35316,35317, 35318,35319,35319,35320,35321,35319,35319,35319,35319,35322, 35323,35324,35319,35325,35326,35327,35327,35327,35326,35328, 35329,35329,28892,28892,28892,35319,28896,35330,35330,35331, 35332,35333,35333,35333,35333,35333,35334,35334,35334,35334, 35335,35336,35337,35337,35338,35338,35339,35339,35340,35341, 35342,35342,35343,35344,35345,35345,28926,28926,35346,35346, 28930,28930,35347,35347,35348,28934,28934,28934,35348,28939, 28939,28939,28939,35349,35349,35350,28945,28945,28945,35350, 28950,28950,28950,28950,35351,35352,35353,35354,35354,35355, 35356,35354,35354,35354,35354,35357,35358,35359,35354,35360, 35361,35362,35362,35362,35361,35363,35364,35364,28978,28978, 28978,35354,35354,35354,35365,35365,35366,35367,35368,35368, 35368,35368,35369,35369,35369,35370,35371,35372,35372,35373, 35373,35374,35374,35375,35376,35377,35377,35378,35379,35380, 35380,29011,29011,35381,35381,29015,29015,35382,35382,35382, 35382,35382,35383,35383,29024,29024,35384,35384,35384,35384, 35384,35385,35385,29033,29033,35386,35387,35388,35389,35389, 35390,35391,35389,35389,35389,35389,35392,35393,35394,35389, 35395,35396,35397,35397,35396,35398,35399,35399,29058,29058, 29058,35389,35400,35401,35402,35402,35402,35402,35403,35403, 35403,35404,35405,35406,35406,35407,35407,35408,35408,35409, 35410,35411,35412,35413,35414,35414,35414,29087,35415,35415, 29090,29090,35416,35416,29094,29094,35417,35417,29098,29098, 35418,35418,29102,29102,35419,35419,29106,29106,35420,35421, 35421,35422,35423,35421,35421,35421,35421,35424,35421,35425, 35426,35427,35427,35426,35428,35421,35421,35421,35421,35421, 35421,29131,35429,35430,35431,35431,35431,35432,35432,35433, 35434,35435,35435,35436,35436,35437,35437,35438,35439,35440, 35441,35442,35443,35443,35443,35443,35444,35444,29158,29158, 35445,35445,29162,29162,35446,35446,29166,29166,35447,35447, 29170,29170,35448,35448,29174,29174,35449,35450,35450,35451, 35450,35450,35450,35450,35452,35450,35453,35454,35455,35455, 35454,35456,35450,35450,35450,35457,35458,35459,35459,35459, 35460,35461,35462,35463,35463,35464,35464,35465,35465,35466, 35467,35468,35469,35470,35471,35472,35472,29217,29217,35473, 35473,29221,29221,35474,35474,29225,29225,35475,35475,29229, 29229,35476,35476,29233,29233,35477,35478,35478,35478,35478, 35478,35478,35479,35478,35480,35481,35482,35482,35481,35483, 35478,35484,35485,35486,35486,35486,35487,35486,35488,35489, 35489,35490,35490,35491,35491,35492,35493,35494,35495,35496, 35497,35497,29272,29272,35498,35498,29276,29276,35499,35499, 29280,29280,35500,35500,29284,29284,35501,35501,29288,29288, 35502,35503,35503,35503,35503,35503,35503,35504,35503,35505, 35506,35507,35507,35506,35508,35503,29306,35509,35510,35511, 35511,35511,35512,35511,35511,35513,35514,35514,35515,35515, 35516,35516,35517,35518,35519,35520,35521,35521,29328,29328, 35522,35522,35522,29333,35523,35523,29336,29336,35524,35524, 35524,29341,35525,35525,29344,29344,35526,29306,29348,29348, 29348,29348,29348,29348,35527,35528,35529,35529,35528,35530, 35531,35532,35533,35533,35534,35533,35535,35536,35536,35537, 35537,35538,35538,35539,35540,35541,35542,35543,35543,35543, 35543,35544,29341,29341,29341,29341,29344,35526,29348,29348, 29348,29348,29348,29348,35528,35529,35529,35528,35531,35532, 35533,35533,35534,35533,35535,35536,35536,35537,35537,35538, 35538,35539,35540,35541,29381,29341,35526,29348,29348,29348, 29348,29348,29348,35528,35528,35529,35529,35528,35531,35532, 35533,35534,35533,35535,35536,35536,35537,35537,35538,35538, 35540,35541,35526,29348,29348,29348,29348,29348,29348,35528, 35529,35529,35528,35531,35532,35533,35534,35535,35536,35536, 35537,35537,35538,35538,35540,35541,35526,29348,29348,29348, 29348,29348,29348,35528,35529,35529,35529,35528,35531,35532, 35533,35535,35536,35536,35537,35537,35538,35538,35540,35541, 35526,29348,29348,29348,29348,29348,29348,35528,35529,35529, 35528,35531,35532,35533,35535,35536,35536,35537,35537,35538, 35538,35540,35541,35526,29348,29348,29348,29348,29348,29348, 35528,35529,35529,35532,35533,35535,35536,35536,35537,35538, 35540,35541,35526,29348,29348,29348,29348,29348,35528,35529, 35529,35532,35533,35535,35536,35536,35537,35538,35540,35541, 35526,29348,29348,29348,29348,35528,35529,35529,35533,35536, 35536,35537,35538,35540,35541,35526,29348,29348,29348,29348, 35528,35529,35533,35536,35537,35538,35540,35541,35526,29348, 29348,29348,29348,35528,35529,35536,35537,35538,35540,35541, 35526,29348,29348,29348,29348,35529,35536,35537,35538,35540, 35541,35526,29348,29348,29348,29348,35529,35536,35537,35538, 35540,35541,35526,29348,29348,29348,29348,35536,35537,35538, 35541,35526,29348,29348,29348,29348,35536,35537,35538,35541, 29348,29348,29348,29348,35536,35537,35538,35541,29348,29348, 29348,29348,35536,35537,35538,35541,29348,29348,29348,29348, 35536,35537,35538,29348,29348,29348,29348,35536,35537,35538, 29348,29348,29348,29348,35536,35537,35538,29348,29348,29348, 29348,35536,35537,35538,29348,29348,29348,29348,35536,35537, 35538,29348,29348,29348,29348,35536,35537,35538,29348,29348, 29348,29348,35536,35537,35538,29348,29348,29348,29348,35536, 35537,35538,29348,29348,29348,29348,35536,35537,35538,29348, 29348,29348,29348,35536,35537,35538,29348,29348,29348,29348, 35536,35537,35538,29348,29348,29348,29348,35536,35537,35538, 29348,29348,29348,29348,35536,29348,29348,29348,29348,35536, 29348,29348,29348,29348,35536,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29348,29348,29348,29348,29348,29348, 0, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840 } ; static const flex_int32_t yy_nxt[530762] = { 0, 60, 61, 62, 63, 64, 65, 60, 60, 66, 67, 60, 60, 68, 67, 67, 69, 70, 71, 72, 72, 72, 72, 72, 72, 73, 60, 74, 60, 60, 60, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 82, 86, 87, 88, 89, 90, 91, 92, 82, 93, 82, 82, 82, 94, 60, 95, 60, 96, 97, 98, 99, 100, 101, 102, 102, 103, 102, 102, 104, 105, 102, 102, 106, 102, 102, 107, 102, 102, 108, 109, 102, 102, 111, 111, 113, 113, 114, 114, 115, 115, 137, 137, 141, 142, 147, 141, 142, 142, 140, 142, 234, 235, 112, 112, 141, 142, 144, 141, 116, 116, 140, 138, 138, 497, 196, 175, 143, 175, 140, 175, 175, 175, 175, 227, 498, 227, 292, 140, 178, 178, 178, 178, 178, 178, 178, 178, 178, 179, 216, 145, 180, 180, 180, 180, 180, 181, 182, 182, 182, 179, 140, 220, 140, 293, 329, 217, 221, 146, 139, 139, 140, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 150, 150, 152, 153, 154, 155, 155, 155, 155, 155, 155, 156, 139, 139, 139, 139, 157, 139, 158, 158, 158, 158, 158, 159, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 139, 139, 139, 139, 158, 158, 158, 158, 158, 158, 160, 160, 160, 160, 160, 161, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 139, 139, 286, 148, 149, 139, 139, 139, 227, 140, 139, 139, 139, 183, 183, 183, 183, 183, 183, 183, 183, 183, 179, 294, 200, 139, 139, 139, 139, 139, 139, 207, 284, 201, 140, 140, 162, 202, 664, 177, 187, 187, 187, 187, 187, 187, 187, 187, 175, 487, 147, 208, 175, 175, 139, 139, 139, 139, 139, 139, 140, 139, 163, 139, 139, 139, 139, 139, 139, 139, 285, 165, 139, 197, 140, 307, 299, 218, 194, 190, 140, 171, 139, 139, 139, 139, 139, 139, 139, 195, 179, 198, 140, 175, 166, 199, 219, 175, 175, 333, 259, 142, 175, 259, 386, 334, 175, 175, 140, 355, 304, 386, 139, 139, 139, 139, 139, 139, 179, 148, 167, 139, 139, 139, 150, 150, 139, 139, 168, 169, 150, 170, 171, 171, 171, 171, 171, 171, 171, 171, 172, 139, 139, 139, 139, 139, 139, 173, 173, 173, 173, 173, 174, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 171, 171, 171, 171, 171, 171, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139, 6227, 148, 184, 139, 139, 139, 284, 666, 139, 139, 139, 177, 209, 300, 185, 185, 185, 185, 185, 185, 185, 185, 186, 139, 139, 139, 139, 139, 139, 210, 190, 190, 171, 171, 162, 190, 190, 171, 171, 211, 140, 179, 179, 386, 285, 386, 179, 179, 140, 140, 311, 238, 139, 139, 139, 139, 188, 188, 188, 188, 188, 188, 188, 188, 188, 239, 142, 142, 190, 142, 171, 240, 188, 188, 188, 188, 188, 189, 228, 179, 230, 140, 227, 307, 432, 433, 231, 363, 140, 566, 140, 247, 142, 248, 247, 363, 229, 298, 232, 188, 188, 188, 188, 188, 188, 149, 287, 281, 309, 140, 310, 227, 140, 233, 190, 147, 173, 173, 173, 173, 173, 173, 173, 173, 173, 179, 249, 352, 360, 330, 312, 318, 140, 149, 140, 531, 353, 369, 140, 140, 324, 393, 363, 495, 250, 282, 282, 282, 282, 282, 282, 282, 282, 150, 411, 496, 394, 651, 657, 173, 173, 173, 173, 173, 173, 175, 175, 175, 175, 175, 175, 175, 175, 175, 191, 175, 175, 175, 192, 193, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 203, 288, 140, 638, 434, 495, 227, 175, 175, 175, 175, 175, 204, 261, 142, 262, 261, 496, 290, 412, 409, 289, 257, 227, 141, 142, 144, 141, 302, 141, 142, 144, 279, 140, 175, 175, 175, 175, 175, 175, 434, 141, 142, 140, 141, 330, 413, 318, 263, 175, 140, 140, 352, 175, 175, 222, 324, 363, 435, 145, 504, 353, 434, 331, 145, 293, 264, 223, 223, 223, 223, 223, 223, 223, 223, 223, 140, 146, 140, 488, 444, 363, 146, 224, 224, 224, 224, 224, 225, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 280, 662, 226, 642, 223, 223, 223, 223, 223, 223, 190, 650, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 307, 424, 140, 140, 301, 140, 175, 175, 175, 175, 175, 204, 141, 142, 144, 141, 150, 150, 150, 150, 150, 150, 150, 150, 150, 411, 144, 434, 266, 142, 267, 266, 534, 177, 177, 177, 177, 177, 177, 1638, 141, 142, 144, 141, 303, 257, 503, 145, 305, 306, 306, 306, 306, 306, 306, 306, 306, 259, 142, 145, 259, 455, 139, 268, 443, 146, 308, 308, 308, 308, 308, 308, 308, 308, 308, 145, 308, 146, 293, 456, 363, 269, 244, 363, 245, 246, 246, 140, 251, 252, 246, 246, 246, 146, 491, 246, 246, 246, 270, 284, 271, 254, 254, 254, 254, 254, 254, 254, 254, 255, 246, 246, 246, 246, 246, 246, 149, 352, 352, 140, 508, 256, 464, 144, 140, 296, 353, 353, 150, 150, 150, 150, 150, 150, 150, 150, 150, 285, 656, 257, 246, 246, 246, 265, 265, 646, 272, 273, 265, 265, 265, 2222, 493, 265, 265, 265, 145, 270, 577, 275, 275, 275, 275, 275, 275, 275, 275, 276, 265, 265, 265, 265, 265, 265, 146, 455, 464, 464, 705, 277, 323, 323, 323, 323, 323, 323, 323, 323, 323, 324, 415, 363, 363, 421, 465, 2743, 343, 265, 265, 265, 265, 325, 325, 325, 325, 325, 326, 327, 327, 327, 324, 270, 270, 473, 278, 139, 139, 506, 139, 139, 139, 139, 139, 139, 139, 139, 139, 464, 313, 139, 385, 385, 385, 385, 385, 385, 385, 385, 385, 139, 139, 139, 139, 139, 139, 139, 140, 640, 644, 507, 434, 314, 327, 327, 327, 327, 327, 327, 327, 327, 327, 324, 270, 474, 659, 175, 547, 930, 685, 139, 139, 139, 139, 139, 139, 324, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 316, 150, 317, 318, 318, 318, 318, 318, 318, 318, 318, 319, 139, 139, 139, 139, 139, 139, 318, 318, 318, 318, 318, 320, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 139, 139, 139, 322, 318, 318, 318, 318, 318, 318, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 149, 355, 352, 247, 142, 515, 247, 175, 363, 140, 179, 353, 150, 150, 150, 150, 150, 150, 150, 150, 328, 330, 140, 321, 321, 321, 321, 321, 321, 321, 321, 321, 150, 149, 929, 735, 748, 516, 434, 321, 321, 321, 321, 321, 332, 150, 150, 150, 150, 150, 150, 150, 150, 150, 261, 142, 257, 261, 163, 363, 335, 570, 648, 414, 417, 352, 321, 321, 321, 321, 321, 321, 139, 139, 353, 139, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 464, 363, 455, 140, 144, 647, 140, 352, 352, 139, 139, 139, 139, 139, 139, 139, 353, 353, 475, 363, 367, 339, 368, 368, 368, 368, 368, 368, 368, 368, 368, 179, 420, 457, 652, 270, 352, 145, 455, 139, 139, 139, 139, 139, 139, 353, 139, 139, 139, 139, 139, 139, 139, 139, 139, 517, 165, 139, 177, 177, 458, 363, 429, 679, 653, 667, 550, 139, 139, 139, 139, 139, 139, 139, 425, 556, 745, 6235, 367, 166, 368, 368, 368, 368, 368, 368, 368, 368, 368, 179, 430, 518, 140, 140, 519, 520, 610, 139, 139, 139, 139, 139, 139, 521, 139, 139, 139, 139, 139, 139, 139, 139, 139, 164, 139, 139, 164, 164, 164, 164, 164, 164, 164, 164, 164, 139, 139, 139, 139, 139, 139, 139, 340, 340, 340, 340, 340, 341, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 139, 139, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 1053, 139, 163, 139, 139, 139, 139, 139, 139, 139, 501, 344, 139, 676, 455, 140, 363, 177, 316, 177, 547, 502, 139, 139, 139, 139, 139, 139, 139, 324, 672, 321, 707, 367, 345, 368, 368, 368, 368, 368, 368, 370, 370, 370, 179, 177, 522, 830, 140, 523, 524, 649, 139, 139, 139, 176, 139, 139, 525, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 150, 150, 346, 347, 348, 349, 349, 349, 349, 349, 349, 150, 139, 139, 139, 139, 139, 139, 350, 350, 350, 350, 350, 351, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 139, 139, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 352, 355, 750, 606, 177, 140, 363, 284, 677, 353, 179, 354, 355, 355, 355, 355, 355, 355, 355, 355, 660, 661, 678, 774, 619, 595, 293, 356, 356, 356, 356, 356, 357, 367, 179, 370, 370, 370, 370, 370, 370, 370, 370, 370, 179, 285, 363, 416, 655, 492, 373, 606, 363, 140, 355, 355, 355, 355, 355, 355, 358, 374, 374, 374, 374, 374, 374, 374, 374, 374, 150, 359, 360, 360, 360, 360, 360, 360, 360, 360, 361, 457, 669, 6238, 177, 352, 455, 360, 360, 360, 360, 360, 362, 367, 353, 371, 371, 371, 371, 371, 371, 371, 371, 371, 179, 177, 654, 293, 296, 144, 751, 754, 669, 641, 360, 360, 360, 360, 360, 360, 363, 372, 372, 372, 372, 372, 372, 372, 372, 372, 177, 356, 356, 356, 356, 356, 356, 356, 356, 356, 179, 422, 145, 380, 380, 380, 380, 380, 380, 380, 380, 380, 352, 358, 352, 1262, 381, 423, 763, 140, 146, 353, 177, 353, 140, 150, 150, 150, 150, 150, 150, 150, 150, 150, 356, 356, 356, 356, 356, 356, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 203, 436, 455, 140, 764, 140, 434, 175, 175, 175, 175, 175, 204, 355, 352, 418, 352, 428, 547, 140, 601, 352, 179, 353, 257, 353, 144, 324, 437, 604, 353, 624, 706, 740, 175, 175, 175, 175, 175, 175, 139, 139, 562, 139, 163, 139, 139, 139, 139, 139, 139, 139, 466, 365, 139, 141, 142, 464, 279, 145, 680, 566, 547, 177, 139, 139, 139, 139, 139, 139, 139, 324, 601, 626, 675, 419, 366, 146, 553, 467, 177, 604, 629, 426, 140, 427, 248, 431, 609, 144, 140, 755, 270, 509, 139, 139, 139, 375, 445, 445, 445, 445, 445, 445, 445, 445, 445, 710, 376, 377, 377, 377, 377, 377, 377, 377, 377, 150, 434, 249, 1370, 683, 145, 668, 377, 377, 377, 377, 377, 378, 477, 177, 280, 140, 622, 623, 257, 250, 144, 455, 146, 274, 274, 274, 274, 274, 274, 274, 274, 274, 455, 377, 377, 377, 377, 377, 379, 382, 382, 382, 382, 382, 382, 382, 382, 382, 599, 175, 446, 6257, 709, 145, 681, 382, 382, 382, 382, 382, 383, 253, 253, 253, 253, 253, 253, 253, 253, 253, 595, 146, 140, 670, 765, 140, 937, 454, 782, 179, 486, 177, 382, 382, 382, 382, 382, 382, 410, 561, 561, 561, 561, 561, 561, 561, 561, 561, 477, 140, 223, 223, 223, 223, 223, 223, 223, 223, 223, 274, 274, 274, 274, 274, 274, 274, 274, 274, 149, 489, 671, 140, 741, 562, 665, 485, 321, 495, 177, 490, 490, 490, 490, 490, 490, 490, 490, 490, 150, 496, 840, 226, 674, 223, 223, 223, 223, 223, 223, 246, 246, 177, 438, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 439, 439, 439, 439, 439, 439, 439, 439, 439, 246, 246, 246, 246, 246, 246, 246, 440, 440, 440, 440, 440, 441, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 257, 246, 442, 246, 439, 439, 439, 439, 439, 439, 246, 246, 246, 246, 246, 246, 246, 246, 246, 443, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 734, 251, 446, 246, 246, 246, 753, 140, 246, 246, 246, 507, 526, 526, 526, 526, 526, 526, 526, 526, 526, 865, 526, 246, 246, 246, 246, 246, 246, 266, 142, 434, 266, 140, 256, 274, 175, 533, 533, 533, 533, 533, 533, 533, 533, 533, 436, 533, 737, 257, 2222, 434, 257, 246, 246, 246, 246, 246, 140, 251, 447, 246, 246, 246, 464, 932, 246, 246, 246, 257, 689, 448, 448, 448, 448, 448, 448, 448, 448, 448, 140, 246, 246, 246, 246, 246, 246, 688, 499, 248, 756, 434, 256, 436, 2754, 511, 507, 434, 434, 270, 500, 500, 500, 500, 500, 500, 500, 500, 752, 257, 257, 246, 246, 246, 449, 257, 257, 687, 687, 434, 140, 684, 249, 464, 140, 450, 451, 451, 451, 451, 451, 451, 451, 451, 248, 527, 149, 257, 363, 694, 250, 451, 451, 451, 451, 451, 452, 528, 528, 528, 528, 528, 528, 528, 528, 528, 529, 696, 270, 736, 466, 934, 719, 527, 373, 464, 699, 249, 451, 451, 451, 451, 451, 453, 459, 530, 530, 530, 530, 530, 530, 530, 530, 530, 529, 250, 460, 460, 460, 460, 460, 460, 460, 460, 460, 1239, 757, 768, 140, 175, 270, 513, 461, 461, 461, 461, 461, 462, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 464, 464, 463, 712, 460, 460, 460, 460, 460, 460, 468, 535, 535, 535, 535, 535, 535, 535, 535, 535, 566, 535, 469, 469, 469, 469, 469, 469, 469, 469, 469, 713, 140, 624, 284, 270, 270, 738, 470, 470, 470, 470, 470, 471, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 140, 726, 472, 743, 469, 469, 469, 469, 469, 469, 729, 285, 140, 769, 140, 770, 140, 270, 267, 308, 308, 308, 308, 308, 308, 308, 308, 308, 953, 308, 476, 476, 476, 476, 476, 476, 476, 476, 476, 316, 140, 555, 555, 555, 555, 555, 555, 555, 555, 555, 324, 268, 316, 758, 555, 555, 555, 555, 555, 555, 555, 555, 555, 324, 321, 742, 385, 385, 385, 269, 495, 175, 744, 316, 532, 555, 555, 555, 555, 555, 555, 140, 496, 829, 324, 516, 270, 265, 265, 149, 272, 477, 265, 265, 265, 457, 177, 265, 265, 265, 455, 150, 150, 150, 150, 150, 150, 150, 150, 150, 175, 935, 265, 265, 265, 265, 265, 265, 140, 464, 709, 140, 248, 277, 566, 585, 585, 585, 585, 585, 586, 587, 587, 587, 894, 814, 835, 714, 956, 139, 925, 265, 265, 265, 265, 587, 587, 587, 587, 587, 587, 587, 587, 587, 270, 249, 819, 140, 278, 265, 265, 267, 272, 478, 265, 265, 265, 692, 693, 265, 265, 265, 464, 250, 479, 479, 479, 479, 479, 479, 479, 479, 479, 814, 265, 265, 265, 265, 265, 265, 792, 175, 716, 854, 268, 277, 614, 615, 616, 617, 617, 617, 617, 617, 617, 140, 177, 270, 895, 140, 150, 922, 269, 265, 265, 265, 265, 367, 749, 618, 618, 618, 618, 618, 618, 618, 618, 618, 179, 270, 278, 480, 618, 618, 618, 618, 618, 618, 618, 618, 618, 179, 481, 482, 482, 482, 482, 482, 482, 482, 482, 140, 947, 177, 954, 1128, 177, 896, 482, 482, 482, 482, 482, 483, 620, 620, 620, 620, 620, 620, 620, 620, 620, 179, 190, 175, 385, 385, 385, 385, 385, 385, 385, 385, 385, 482, 482, 482, 482, 482, 484, 139, 139, 919, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 139, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139, 139, 139, 139, 139, 139, 536, 536, 536, 536, 536, 537, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 139, 139, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 175, 139, 139, 139, 139, 139, 139, 139, 139, 139, 626, 313, 139, 284, 6267, 140, 175, 145, 434, 629, 927, 933, 139, 139, 139, 139, 139, 139, 139, 538, 373, 631, 571, 941, 314, 942, 974, 337, 363, 739, 837, 374, 374, 374, 374, 374, 374, 374, 374, 374, 150, 285, 139, 139, 139, 139, 139, 139, 632, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 313, 139, 633, 633, 633, 633, 633, 633, 633, 633, 140, 139, 139, 139, 139, 139, 139, 329, 177, 766, 249, 948, 140, 539, 767, 945, 380, 380, 380, 380, 380, 380, 380, 380, 380, 177, 1237, 949, 257, 381, 177, 139, 139, 139, 322, 139, 139, 140, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 150, 150, 540, 541, 542, 543, 543, 543, 543, 543, 543, 150, 139, 139, 139, 139, 139, 139, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 531, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 546, 547, 547, 547, 547, 547, 547, 547, 547, 319, 139, 139, 139, 139, 139, 329, 547, 547, 547, 547, 547, 548, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 139, 139, 139, 322, 547, 547, 547, 547, 547, 547, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 149, 696, 175, 717, 718, 936, 938, 943, 140, 1047, 699, 549, 550, 550, 550, 550, 550, 550, 550, 550, 551, 758, 701, 139, 626, 696, 950, 550, 550, 550, 550, 550, 552, 629, 699, 464, 464, 931, 140, 140, 630, 700, 805, 175, 175, 631, 701, 771, 761, 702, 571, 324, 772, 516, 550, 550, 550, 550, 550, 550, 321, 321, 321, 321, 321, 321, 321, 321, 321, 150, 270, 270, 632, 702, 809, 805, 321, 321, 321, 321, 321, 332, 951, 812, 324, 177, 177, 140, 363, 855, 658, 658, 658, 658, 658, 658, 658, 658, 658, 562, 658, 175, 6337, 321, 321, 321, 321, 321, 321, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 466, 139, 139, 968, 267, 464, 921, 969, 957, 724, 726, 726, 139, 139, 139, 139, 139, 139, 329, 729, 729, 821, 898, 1224, 554, 716, 730, 316, 958, 805, 824, 731, 731, 175, 177, 140, 905, 268, 324, 1034, 270, 928, 139, 139, 139, 557, 558, 558, 558, 558, 558, 558, 558, 558, 150, 269, 899, 909, 732, 732, 329, 558, 558, 558, 558, 558, 559, 952, 177, 455, 177, 140, 270, 140, 900, 704, 704, 704, 704, 704, 704, 704, 704, 704, 905, 704, 1046, 1001, 558, 558, 558, 558, 558, 560, 139, 139, 455, 139, 139, 139, 139, 139, 139, 139, 139, 139, 567, 139, 139, 800, 800, 800, 800, 800, 801, 802, 802, 802, 139, 139, 139, 139, 139, 139, 139, 967, 434, 3685, 1045, 434, 569, 177, 971, 711, 711, 711, 711, 711, 711, 711, 711, 711, 979, 711, 257, 140, 140, 257, 139, 139, 139, 139, 139, 139, 464, 139, 139, 139, 139, 139, 139, 139, 139, 139, 284, 139, 139, 802, 802, 802, 802, 802, 802, 802, 802, 802, 139, 139, 139, 139, 139, 139, 139, 434, 1033, 363, 980, 363, 572, 270, 720, 720, 720, 720, 720, 720, 720, 720, 720, 455, 720, 257, 285, 1037, 6583, 998, 139, 139, 139, 139, 139, 464, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 139, 385, 385, 385, 385, 385, 385, 385, 385, 385, 139, 139, 139, 139, 139, 139, 139, 573, 149, 489, 293, 434, 572, 270, 1223, 1035, 1049, 981, 1221, 490, 490, 490, 490, 490, 490, 490, 490, 490, 150, 257, 139, 139, 139, 139, 139, 703, 139, 574, 139, 139, 139, 139, 139, 139, 139, 164, 165, 139, 164, 164, 164, 164, 164, 164, 164, 164, 164, 139, 139, 139, 139, 139, 139, 139, 340, 340, 340, 340, 340, 341, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 139, 139, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 434, 139, 139, 139, 139, 139, 139, 139, 139, 139, 821, 165, 139, 832, 434, 1050, 268, 6584, 257, 824, 507, 1130, 139, 139, 139, 139, 139, 139, 139, 527, 149, 826, 257, 972, 166, 507, 511, 576, 1051, 1054, 977, 775, 775, 775, 775, 775, 775, 775, 775, 775, 529, 270, 139, 139, 139, 139, 139, 139, 827, 139, 139, 139, 139, 139, 139, 139, 139, 139, 164, 139, 139, 578, 578, 578, 578, 578, 578, 578, 578, 578, 139, 139, 139, 139, 139, 139, 139, 579, 579, 579, 579, 579, 580, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 139, 139, 139, 139, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 139, 139, 455, 139, 163, 139, 139, 139, 139, 139, 139, 139, 758, 344, 139, 1002, 1003, 1062, 513, 1070, 759, 1055, 140, 805, 139, 139, 139, 139, 139, 139, 139, 581, 324, 809, 867, 999, 345, 867, 870, 807, 898, 876, 812, 604, 516, 464, 604, 874, 455, 817, 879, 867, 1071, 873, 139, 139, 139, 176, 139, 139, 604, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 582, 150, 140, 983, 566, 1126, 140, 1006, 760, 270, 140, 150, 139, 139, 139, 139, 139, 139, 527, 373, 902, 984, 1066, 583, 790, 150, 2189, 140, 495, 629, 781, 781, 781, 781, 781, 781, 781, 781, 781, 529, 1040, 139, 139, 139, 139, 139, 139, 1038, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 582, 150, 584, 584, 584, 584, 584, 584, 584, 584, 584, 150, 139, 139, 139, 139, 139, 139, 561, 561, 561, 1381, 330, 583, 561, 561, 561, 561, 561, 561, 561, 561, 561, 296, 140, 140, 1194, 140, 986, 1052, 1060, 139, 139, 139, 139, 139, 139, 699, 148, 375, 139, 139, 139, 150, 150, 139, 139, 164, 190, 150, 385, 385, 385, 385, 385, 385, 385, 385, 385, 150, 139, 139, 139, 139, 139, 139, 350, 350, 350, 350, 350, 351, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 139, 139, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 499, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 887, 887, 887, 887, 887, 887, 887, 887, 887, 139, 139, 139, 139, 139, 139, 139, 621, 1022, 1059, 140, 140, 589, 363, 140, 464, 140, 729, 372, 372, 372, 372, 372, 372, 372, 372, 372, 902, 177, 1061, 146, 139, 139, 139, 411, 1270, 629, 1087, 6608, 140, 888, 888, 888, 888, 888, 889, 890, 890, 890, 1011, 270, 566, 590, 139, 139, 1240, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 150, 150, 591, 591, 591, 591, 591, 591, 591, 591, 591, 150, 139, 139, 139, 139, 139, 139, 592, 592, 592, 592, 592, 593, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 139, 139, 139, 139, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 139, 139, 733, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 594, 595, 595, 595, 595, 595, 595, 595, 595, 172, 139, 139, 139, 139, 139, 139, 596, 596, 596, 596, 596, 597, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 595, 595, 595, 595, 595, 595, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 890, 890, 890, 890, 890, 890, 890, 890, 890, 288, 596, 596, 596, 596, 596, 596, 596, 596, 596, 179, 746, 746, 746, 746, 746, 746, 746, 746, 746, 747, 893, 893, 893, 893, 893, 893, 893, 893, 893, 179, 891, 140, 892, 893, 893, 893, 893, 893, 893, 893, 893, 893, 179, 596, 596, 596, 596, 596, 596, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 600, 601, 601, 601, 601, 601, 601, 601, 601, 602, 1267, 495, 149, 6609, 1039, 177, 601, 601, 601, 601, 601, 603, 691, 496, 150, 150, 150, 150, 150, 150, 150, 150, 150, 445, 445, 445, 445, 445, 445, 445, 445, 445, 876, 601, 601, 601, 601, 601, 601, 375, 831, 879, 464, 464, 434, 140, 140, 140, 880, 1005, 605, 606, 606, 606, 606, 606, 606, 606, 606, 150, 1008, 140, 257, 902, 140, 1133, 606, 606, 606, 606, 606, 607, 629, 139, 1061, 1193, 1063, 270, 270, 908, 464, 975, 976, 1136, 338, 338, 338, 338, 338, 338, 338, 338, 338, 606, 606, 606, 606, 606, 608, 139, 139, 989, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 434, 270, 1048, 363, 582, 140, 140, 1012, 993, 139, 139, 139, 139, 139, 139, 139, 821, 876, 257, 1065, 986, 589, 856, 1199, 464, 824, 879, 1015, 920, 699, 1056, 758, 825, 880, 293, 989, 992, 826, 881, 146, 139, 139, 139, 139, 139, 267, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 363, 270, 1608, 363, 516, 516, 827, 882, 1058, 139, 139, 139, 139, 139, 139, 139, 876, 140, 1022, 140, 268, 612, 140, 1064, 464, 879, 1078, 729, 1009, 1010, 1016, 1067, 722, 723, 1028, 1065, 986, 881, 269, 139, 139, 139, 139, 139, 139, 699, 139, 163, 139, 139, 139, 139, 139, 139, 139, 270, 365, 139, 140, 270, 703, 464, 1241, 758, 882, 1247, 571, 139, 139, 139, 139, 139, 139, 139, 613, 375, 1098, 1149, 150, 366, 363, 140, 6714, 1382, 190, 812, 385, 385, 385, 385, 385, 385, 385, 385, 385, 516, 270, 139, 139, 139, 625, 626, 626, 626, 626, 626, 626, 626, 626, 627, 853, 1025, 139, 902, 902, 986, 626, 626, 626, 626, 626, 628, 629, 629, 699, 464, 1127, 140, 1101, 908, 760, 992, 1029, 1107, 910, 910, 994, 1105, 1014, 898, 1157, 1243, 1110, 626, 626, 626, 626, 626, 626, 634, 634, 634, 634, 634, 634, 634, 634, 634, 1119, 1025, 270, 911, 911, 995, 140, 634, 634, 634, 634, 634, 635, 721, 267, 1018, 571, 177, 1195, 6724, 363, 1123, 1236, 1263, 476, 476, 476, 476, 476, 476, 476, 476, 476, 1019, 634, 634, 634, 634, 634, 634, 637, 843, 758, 1214, 1214, 464, 1275, 268, 1119, 1185, 1020, 175, 175, 175, 175, 175, 175, 175, 175, 175, 203, 2048, 363, 140, 1276, 269, 1116, 175, 175, 175, 175, 175, 204, 139, 516, 824, 175, 284, 1249, 1264, 270, 1011, 270, 1036, 338, 338, 338, 338, 338, 338, 338, 338, 338, 1245, 175, 175, 175, 175, 175, 175, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 1057, 140, 1379, 1022, 1159, 285, 175, 175, 175, 175, 175, 204, 729, 604, 1044, 1259, 177, 507, 526, 526, 526, 526, 526, 526, 526, 526, 526, 733, 526, 1386, 924, 1163, 1168, 177, 177, 177, 177, 177, 177, 140, 1166, 663, 682, 682, 682, 682, 682, 682, 682, 682, 682, 1177, 682, 1172, 533, 533, 533, 533, 533, 533, 533, 533, 533, 434, 533, 1174, 177, 1098, 1201, 1116, 1159, 1274, 1181, 773, 879, 140, 812, 629, 824, 604, 1168, 257, 535, 535, 535, 535, 535, 535, 535, 535, 535, 566, 535, 566, 566, 1205, 1098, 1655, 1070, 1177, 443, 686, 1275, 140, 1208, 812, 1280, 1293, 1265, 791, 455, 912, 1104, 439, 439, 439, 439, 439, 439, 439, 439, 439, 913, 913, 913, 913, 913, 913, 913, 913, 913, 1071, 986, 139, 434, 140, 1328, 793, 1275, 140, 1268, 699, 1073, 140, 784, 1079, 177, 784, 1079, 1072, 168, 168, 257, 994, 442, 177, 439, 439, 439, 439, 439, 439, 690, 690, 690, 690, 690, 690, 690, 690, 690, 2332, 690, 139, 1238, 1074, 168, 168, 1080, 363, 995, 1080, 898, 434, 338, 338, 338, 338, 338, 338, 338, 338, 338, 1075, 140, 571, 139, 140, 1273, 1082, 434, 257, 940, 940, 940, 940, 940, 940, 940, 940, 940, 926, 940, 140, 226, 293, 899, 434, 1294, 1292, 443, 246, 246, 140, 251, 447, 246, 246, 246, 1384, 1266, 246, 246, 246, 1196, 1299, 448, 448, 448, 448, 448, 448, 448, 448, 448, 1174, 246, 246, 246, 246, 246, 246, 1571, 1369, 879, 249, 140, 256, 1269, 1383, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 566, 1000, 338, 6727, 1300, 590, 257, 246, 246, 246, 246, 246, 455, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 695, 696, 696, 696, 696, 696, 696, 696, 696, 697, 246, 246, 246, 246, 246, 246, 696, 696, 696, 696, 696, 698, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 696, 696, 696, 696, 696, 696, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 246, 246, 507, 251, 446, 246, 246, 246, 1387, 139, 246, 246, 246, 658, 658, 658, 658, 658, 658, 658, 658, 658, 139, 658, 1281, 246, 246, 246, 246, 246, 246, 784, 1083, 898, 140, 455, 256, 1110, 140, 703, 704, 704, 704, 704, 704, 704, 704, 704, 704, 1396, 704, 1281, 566, 1326, 257, 246, 246, 246, 708, 1636, 1022, 455, 1198, 1290, 434, 1084, 566, 899, 939, 729, 460, 460, 460, 460, 460, 460, 460, 460, 460, 1312, 434, 1030, 257, 146, 571, 1196, 511, 1061, 699, 140, 1296, 455, 1391, 1222, 455, 997, 784, 1079, 257, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1031, 1007, 1305, 463, 1331, 460, 460, 460, 460, 460, 460, 715, 464, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1080, 469, 469, 469, 469, 469, 469, 469, 469, 469, 1107, 1116, 1022, 139, 1159, 1163, 1081, 434, 139, 1110, 824, 729, 464, 604, 1166, 270, 1111, 1122, 1028, 1201, 1161, 1171, 1316, 1030, 1107, 257, 434, 1306, 629, 1301, 1295, 1319, 472, 1110, 469, 469, 469, 469, 469, 469, 1111, 1397, 140, 566, 257, 1112, 1645, 270, 265, 265, 1031, 272, 478, 265, 265, 265, 1327, 1419, 265, 265, 265, 6730, 434, 479, 479, 479, 479, 479, 479, 479, 479, 479, 1113, 265, 265, 265, 265, 265, 265, 288, 257, 513, 1385, 464, 277, 1400, 140, 1392, 455, 263, 746, 746, 746, 746, 746, 746, 746, 746, 746, 747, 1174, 1201, 265, 265, 265, 265, 1205, 1332, 571, 879, 629, 140, 1499, 1346, 293, 1208, 1180, 1203, 270, 278, 265, 265, 1209, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 725, 726, 726, 726, 726, 726, 726, 726, 726, 727, 265, 265, 265, 265, 265, 265, 726, 726, 726, 726, 726, 728, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 726, 726, 726, 726, 726, 726, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 464, 272, 477, 265, 265, 265, 140, 2863, 265, 265, 265, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 284, 1068, 1340, 265, 265, 265, 265, 265, 265, 784, 1303, 1425, 140, 1388, 277, 270, 2868, 733, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1107, 1312, 434, 2105, 139, 265, 265, 265, 265, 1110, 699, 285, 148, 1126, 1307, 1394, 1304, 1314, 296, 1372, 257, 1112, 278, 222, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 257, 223, 223, 223, 223, 223, 223, 223, 223, 223, 1065, 177, 140, 516, 1113, 1643, 455, 224, 224, 224, 224, 224, 225, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 762, 224, 2500, 1697, 226, 1316, 223, 223, 223, 223, 223, 223, 776, 776, 1319, 777, 778, 776, 776, 776, 464, 1320, 776, 776, 776, 758, 330, 898, 561, 561, 561, 561, 561, 561, 561, 561, 561, 776, 776, 776, 776, 776, 776, 329, 1116, 1354, 1335, 3034, 780, 898, 464, 1347, 1096, 824, 729, 270, 1334, 516, 1398, 140, 1122, 983, 140, 1395, 1507, 1124, 776, 776, 776, 776, 783, 783, 784, 785, 786, 783, 783, 783, 1309, 1308, 783, 783, 783, 983, 434, 270, 788, 788, 464, 140, 140, 140, 1125, 1544, 1312, 783, 783, 783, 783, 783, 783, 1308, 1310, 699, 1399, 571, 789, 140, 1569, 1131, 1132, 1132, 1131, 1131, 1131, 1131, 1131, 1131, 703, 6733, 1065, 443, 1670, 270, 790, 783, 783, 783, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 313, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139, 139, 139, 139, 139, 329, 536, 536, 536, 536, 536, 537, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 139, 139, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 464, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1116, 313, 139, 139, 464, 268, 1401, 566, 1333, 824, 1358, 1368, 139, 139, 139, 139, 139, 139, 139, 1361, 140, 1124, 1338, 1339, 314, 270, 1341, 795, 1143, 1143, 1143, 1143, 1143, 1144, 1145, 1145, 1145, 1642, 140, 270, 270, 139, 139, 139, 139, 139, 139, 139, 1125, 139, 139, 139, 139, 139, 139, 139, 139, 139, 464, 313, 139, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 139, 139, 139, 139, 139, 139, 329, 796, 1174, 140, 1354, 1358, 539, 1373, 6734, 784, 1343, 879, 464, 729, 1361, 1634, 140, 270, 1180, 2047, 1356, 1362, 139, 1182, 139, 139, 139, 322, 139, 139, 1351, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 797, 150, 1344, 1478, 1487, 1070, 270, 1371, 140, 1183, 1354, 150, 139, 139, 139, 139, 139, 139, 1669, 729, 265, 1545, 582, 798, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1405, 733, 140, 140, 1345, 1071, 284, 856, 139, 139, 139, 139, 139, 139, 1488, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 797, 150, 799, 799, 799, 799, 799, 799, 799, 799, 799, 150, 139, 139, 139, 139, 139, 139, 175, 285, 1969, 140, 582, 798, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 140, 385, 385, 385, 6737, 1436, 1416, 856, 139, 139, 139, 139, 139, 139, 812, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 561, 561, 561, 561, 561, 561, 561, 561, 561, 150, 139, 139, 139, 139, 139, 329, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 6740, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 804, 805, 805, 805, 805, 805, 805, 805, 805, 319, 139, 139, 139, 139, 139, 329, 805, 805, 805, 805, 805, 806, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 139, 139, 139, 322, 805, 805, 805, 805, 805, 805, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 149, 1174, 1281, 139, 4428, 1445, 1567, 1940, 140, 464, 879, 808, 809, 809, 809, 809, 809, 809, 809, 809, 810, 1348, 1182, 140, 1454, 1205, 1449, 809, 809, 809, 809, 809, 811, 582, 1208, 1187, 1187, 1187, 1187, 1187, 1187, 1209, 1637, 1440, 270, 1458, 1210, 139, 1668, 1183, 1376, 856, 1443, 1445, 809, 809, 809, 809, 809, 809, 813, 814, 814, 814, 814, 814, 814, 814, 814, 150, 1377, 571, 1454, 1211, 1436, 329, 814, 814, 814, 814, 814, 815, 1042, 812, 140, 190, 140, 385, 385, 385, 385, 385, 385, 385, 385, 385, 1654, 1281, 566, 1767, 1552, 2104, 1199, 814, 814, 814, 814, 814, 816, 139, 139, 1146, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1556, 139, 139, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 139, 139, 139, 139, 139, 139, 329, 818, 1205, 1219, 1451, 1546, 554, 1595, 1070, 1552, 2863, 1208, 140, 1110, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1210, 139, 139, 139, 820, 821, 821, 821, 821, 821, 821, 821, 821, 822, 140, 1731, 571, 1201, 1071, 1201, 821, 821, 821, 821, 821, 823, 629, 1211, 629, 495, 1070, 2868, 1379, 1203, 1463, 1374, 1404, 1467, 1212, 1380, 1212, 496, 571, 824, 1044, 363, 1470, 821, 821, 821, 821, 821, 821, 321, 321, 321, 321, 321, 321, 321, 321, 321, 150, 1071, 962, 1213, 1436, 1213, 1451, 321, 321, 321, 321, 321, 332, 812, 1612, 1110, 566, 1281, 828, 1407, 1438, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 566, 1258, 363, 1275, 321, 321, 321, 321, 321, 321, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1663, 139, 139, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 363, 139, 139, 139, 139, 139, 139, 139, 1316, 1316, 742, 1509, 363, 833, 1512, 495, 898, 1319, 1319, 1518, 1166, 1375, 1617, 1516, 1320, 1941, 140, 496, 1521, 1321, 1321, 139, 139, 139, 139, 139, 1570, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1526, 139, 139, 338, 1018, 1376, 590, 1070, 1618, 879, 1322, 1322, 139, 139, 139, 139, 139, 139, 139, 834, 1312, 1594, 1349, 140, 833, 1377, 898, 784, 1079, 699, 784, 1079, 1378, 1614, 2044, 1405, 1314, 1042, 1530, 1020, 1071, 1323, 139, 139, 139, 139, 139, 1533, 139, 836, 139, 139, 139, 139, 139, 139, 139, 1549, 139, 139, 1018, 1080, 1408, 2601, 1080, 1572, 1208, 1275, 1324, 139, 139, 139, 139, 139, 139, 139, 1312, 1358, 1349, 1417, 1463, 572, 1421, 1234, 144, 699, 1361, 1666, 758, 824, 561, 561, 561, 1362, 175, 1020, 1352, 1323, 1363, 139, 139, 139, 139, 139, 566, 139, 836, 139, 139, 139, 139, 139, 139, 139, 571, 139, 139, 145, 1572, 1572, 516, 1623, 1593, 1416, 1324, 1364, 139, 139, 139, 139, 139, 139, 139, 573, 1393, 146, 1573, 1234, 572, 1379, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1275, 1330, 1044, 2090, 1618, 1749, 760, 139, 139, 139, 139, 139, 455, 139, 574, 139, 139, 139, 139, 139, 139, 139, 164, 165, 139, 164, 164, 164, 164, 164, 164, 164, 164, 164, 139, 139, 139, 139, 139, 139, 139, 340, 340, 340, 340, 340, 341, 340, 340, 838, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 139, 139, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 6747, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1358, 165, 139, 168, 168, 168, 168, 168, 168, 1361, 140, 1440, 139, 139, 139, 139, 139, 139, 139, 1354, 1443, 1363, 1451, 1785, 166, 1463, 438, 1448, 729, 898, 839, 1110, 784, 1079, 824, 1356, 1667, 1768, 1457, 140, 1365, 1465, 139, 139, 139, 139, 139, 139, 1364, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1350, 165, 139, 1418, 1275, 1018, 464, 1275, 1080, 1366, 1275, 1281, 139, 139, 139, 139, 139, 139, 139, 1662, 1732, 140, 1660, 1349, 842, 1664, 139, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 3288, 1420, 443, 1859, 1020, 270, 139, 139, 139, 843, 139, 139, 140, 139, 574, 139, 139, 139, 139, 139, 139, 139, 841, 165, 139, 841, 841, 841, 841, 841, 841, 841, 841, 841, 139, 139, 139, 139, 139, 139, 139, 844, 844, 844, 844, 844, 845, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 139, 139, 139, 843, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 139, 139, 1617, 139, 163, 139, 139, 139, 139, 139, 139, 139, 1354, 344, 139, 464, 2010, 434, 175, 434, 293, 729, 1467, 1673, 139, 139, 139, 139, 139, 139, 139, 1470, 1753, 1365, 1618, 257, 345, 257, 1471, 847, 1430, 1430, 1430, 1430, 1430, 1431, 1432, 1432, 1432, 1712, 270, 6750, 1619, 1680, 139, 139, 139, 176, 139, 139, 1366, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 150, 150, 848, 849, 850, 851, 851, 851, 851, 851, 851, 150, 139, 139, 139, 139, 139, 139, 350, 350, 350, 350, 350, 351, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 139, 139, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 1682, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 190, 150, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 150, 139, 139, 139, 139, 139, 139, 852, 455, 1572, 434, 434, 583, 566, 1696, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1681, 1337, 140, 1972, 257, 257, 139, 139, 139, 139, 139, 139, 464, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 582, 150, 346, 346, 346, 346, 346, 346, 346, 346, 346, 150, 139, 139, 139, 139, 139, 139, 1451, 1451, 1509, 1518, 2345, 583, 270, 140, 1685, 1110, 1110, 1166, 1521, 784, 1079, 1752, 1457, 1319, 1515, 1522, 1509, 1459, 1459, 139, 139, 139, 139, 139, 139, 1166, 148, 149, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 1418, 434, 566, 464, 2023, 1080, 1460, 1460, 1526, 150, 139, 139, 139, 139, 139, 139, 1713, 879, 3290, 257, 1655, 857, 1606, 139, 1528, 1275, 1674, 1422, 385, 385, 385, 385, 385, 385, 385, 385, 385, 5266, 270, 139, 139, 139, 843, 139, 139, 1666, 148, 375, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 856, 856, 856, 856, 856, 856, 856, 856, 856, 150, 139, 139, 139, 139, 139, 139, 858, 858, 858, 858, 858, 859, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 139, 139, 139, 843, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 139, 139, 6758, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 861, 861, 861, 861, 861, 861, 861, 861, 861, 172, 139, 139, 139, 139, 139, 139, 862, 862, 862, 862, 862, 863, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 861, 861, 861, 861, 861, 861, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 912, 862, 862, 862, 862, 862, 862, 862, 862, 862, 179, 913, 913, 913, 913, 913, 913, 913, 913, 913, 940, 940, 940, 940, 940, 940, 940, 940, 940, 1695, 940, 293, 140, 6761, 1718, 139, 454, 1754, 784, 1303, 898, 140, 139, 1361, 862, 862, 862, 862, 862, 862, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 149, 1467, 464, 1304, 1750, 899, 1257, 1935, 1547, 836, 1470, 866, 867, 867, 867, 867, 867, 867, 867, 867, 602, 257, 1472, 1196, 1467, 1463, 1463, 867, 867, 867, 867, 867, 868, 1470, 824, 824, 140, 270, 571, 1219, 1471, 1465, 2049, 1704, 1615, 1472, 1474, 1474, 139, 1473, 1565, 1565, 1566, 1070, 867, 867, 867, 867, 867, 867, 869, 870, 870, 870, 870, 870, 870, 870, 870, 871, 434, 140, 1473, 1475, 1475, 1530, 870, 870, 870, 870, 870, 872, 917, 139, 1533, 1728, 1071, 140, 257, 1613, 2188, 1534, 485, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1549, 870, 870, 870, 870, 870, 870, 375, 1526, 1208, 1677, 571, 140, 1706, 1793, 140, 1555, 879, 875, 876, 876, 876, 876, 876, 876, 876, 876, 877, 2067, 140, 2076, 1685, 566, 1706, 876, 876, 876, 876, 876, 878, 1319, 434, 434, 2068, 2863, 1707, 571, 1691, 190, 1644, 385, 385, 385, 385, 385, 385, 385, 385, 385, 257, 1310, 876, 876, 876, 876, 876, 876, 175, 175, 175, 175, 175, 175, 175, 175, 175, 203, 1496, 443, 443, 1708, 1742, 1549, 175, 175, 175, 175, 175, 204, 507, 2868, 1208, 177, 1743, 883, 1755, 1480, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 566, 1740, 1744, 1735, 175, 175, 175, 175, 175, 175, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1746, 139, 139, 296, 140, 140, 1736, 2023, 2203, 1757, 1416, 495, 139, 139, 139, 139, 139, 139, 139, 1737, 1377, 140, 1133, 496, 884, 2024, 784, 1303, 898, 1766, 1070, 330, 1042, 561, 561, 561, 561, 561, 561, 561, 561, 561, 139, 139, 139, 139, 139, 1688, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1433, 139, 139, 1304, 464, 983, 1071, 836, 1683, 1790, 1700, 1692, 139, 139, 139, 139, 139, 139, 139, 885, 1721, 1678, 464, 1308, 884, 1480, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1751, 140, 140, 1688, 270, 1351, 1725, 139, 139, 139, 139, 139, 140, 139, 163, 139, 139, 139, 139, 139, 139, 139, 270, 365, 139, 1480, 2023, 1872, 1939, 1756, 1761, 139, 140, 1721, 139, 139, 139, 139, 139, 139, 139, 1497, 1518, 177, 1606, 1967, 366, 140, 2070, 886, 190, 1521, 385, 385, 385, 385, 385, 385, 385, 385, 385, 507, 511, 1523, 139, 139, 139, 139, 139, 248, 148, 149, 139, 139, 139, 150, 150, 139, 139, 841, 582, 150, 5095, 1965, 1965, 1965, 1965, 1965, 2191, 293, 1524, 150, 139, 139, 139, 139, 139, 139, 148, 1500, 284, 1624, 249, 857, 140, 1762, 1733, 1765, 1673, 2061, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 250, 139, 139, 139, 843, 901, 902, 902, 902, 902, 902, 902, 902, 902, 627, 148, 149, 513, 285, 516, 1849, 902, 902, 902, 902, 902, 903, 150, 150, 150, 150, 150, 150, 150, 150, 150, 602, 1784, 140, 2107, 507, 1853, 2071, 566, 1672, 1907, 2194, 1799, 902, 902, 902, 902, 902, 902, 904, 905, 905, 905, 905, 905, 905, 905, 905, 150, 148, 149, 1911, 2084, 1849, 140, 905, 905, 905, 905, 905, 906, 150, 150, 150, 150, 150, 150, 150, 150, 150, 604, 1815, 2082, 590, 338, 464, 140, 140, 1907, 1376, 1443, 1748, 905, 905, 905, 905, 905, 907, 914, 914, 914, 914, 914, 914, 914, 914, 914, 1070, 1797, 1377, 1701, 1379, 4481, 1685, 914, 914, 914, 914, 914, 915, 270, 1042, 1319, 1044, 1747, 2172, 1061, 140, 1483, 1484, 1484, 1483, 1483, 1483, 1483, 1483, 1483, 703, 1065, 140, 1071, 914, 914, 914, 914, 914, 914, 139, 139, 140, 144, 917, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 918, 918, 918, 918, 918, 918, 918, 918, 918, 139, 139, 139, 139, 139, 139, 139, 338, 338, 338, 338, 338, 589, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 146, 139, 139, 139, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 3631, 2079, 140, 2252, 2500, 1818, 175, 175, 175, 175, 175, 204, 784, 1343, 1822, 1824, 1832, 1836, 1714, 1530, 1526, 1549, 1685, 1518, 1827, 1110, 1839, 1070, 1533, 879, 1208, 1319, 1521, 177, 177, 177, 177, 177, 177, 1522, 1535, 1537, 1557, 1693, 1523, 836, 1344, 944, 139, 139, 464, 139, 163, 139, 139, 139, 139, 139, 139, 139, 1071, 365, 139, 177, 265, 1275, 5100, 1536, 1538, 1558, 1694, 1524, 139, 139, 139, 139, 139, 139, 139, 758, 1796, 1345, 140, 2096, 366, 270, 1808, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1530, 1000, 1526, 1916, 1549, 1718, 139, 139, 139, 1533, 1718, 879, 455, 1208, 1361, 516, 1534, 2051, 1528, 1361, 1555, 1535, 140, 1537, 1920, 1557, 1724, 1763, 571, 733, 955, 959, 959, 1376, 960, 959, 961, 959, 959, 959, 959, 959, 959, 962, 959, 959, 1329, 177, 1536, 624, 1538, 1916, 1558, 1377, 1846, 959, 959, 959, 959, 959, 959, 959, 1275, 1470, 2595, 1042, 2568, 964, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 140, 1068, 1745, 2100, 1815, 1898, 1416, 1070, 965, 959, 959, 959, 140, 1443, 1166, 784, 1303, 1070, 836, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 566, 1406, 966, 682, 682, 682, 682, 682, 682, 682, 682, 682, 1071, 682, 148, 149, 1679, 511, 1402, 6769, 2623, 1304, 1071, 2198, 434, 2011, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 150, 148, 149, 1902, 257, 1794, 1896, 257, 1219, 1976, 784, 1343, 1905, 1542, 1542, 1542, 150, 150, 150, 150, 150, 150, 150, 970, 973, 973, 973, 973, 973, 973, 973, 973, 973, 758, 973, 148, 375, 1832, 140, 140, 140, 1572, 140, 1281, 1344, 434, 1110, 150, 150, 150, 150, 150, 150, 150, 150, 150, 627, 148, 375, 1234, 1617, 566, 1709, 257, 1624, 516, 1617, 1253, 1070, 150, 150, 150, 150, 150, 150, 150, 150, 150, 629, 1345, 2849, 2424, 443, 690, 690, 690, 690, 690, 690, 690, 690, 690, 1618, 690, 148, 375, 1405, 1970, 1618, 2062, 760, 1071, 1572, 455, 434, 1764, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1559, 148, 1639, 1913, 2053, 1234, 1796, 257, 463, 385, 385, 385, 1521, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 978, 246, 246, 6772, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 985, 986, 986, 986, 986, 986, 986, 986, 986, 697, 246, 246, 246, 246, 246, 246, 986, 986, 986, 986, 986, 987, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 986, 986, 986, 986, 986, 986, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 446, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 2588, 988, 989, 989, 989, 989, 989, 989, 989, 989, 253, 139, 140, 148, 1640, 1924, 1927, 989, 989, 989, 989, 989, 990, 836, 1533, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 140, 177, 1931, 2045, 898, 784, 1079, 434, 2066, 989, 989, 989, 989, 989, 991, 253, 253, 253, 253, 253, 253, 253, 253, 253, 2196, 257, 2084, 1788, 1685, 1927, 854, 253, 253, 253, 253, 253, 256, 1319, 1018, 1080, 1618, 1715, 996, 1944, 1691, 1948, 2082, 566, 2111, 1693, 1617, 661, 1208, 573, 1951, 2078, 1349, 139, 253, 253, 253, 253, 253, 253, 711, 711, 711, 711, 711, 711, 711, 711, 711, 1020, 711, 1219, 1694, 2054, 784, 1343, 784, 1343, 1618, 140, 140, 464, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 2119, 1258, 2123, 140, 177, 1710, 455, 2652, 1344, 1319, 1344, 2126, 140, 2106, 2077, 1004, 270, 720, 720, 720, 720, 720, 720, 720, 720, 720, 265, 720, 265, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 464, 1656, 1846, 513, 1898, 1345, 1711, 1345, 1633, 2199, 140, 1470, 1275, 1166, 2115, 434, 1827, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 566, 1699, 566, 293, 2707, 566, 2260, 257, 1013, 270, 265, 265, 455, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 1021, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 727, 265, 265, 265, 265, 265, 265, 1022, 1022, 1022, 1022, 1022, 1023, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 1022, 1022, 1022, 1022, 1022, 1022, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 477, 898, 1657, 1716, 2137, 2186, 2101, 2102, 6271, 1379, 2093, 1024, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 274, 1044, 571, 434, 1718, 1718, 434, 1025, 1025, 1025, 1025, 1025, 1026, 1361, 1361, 1018, 455, 784, 1079, 1275, 1724, 257, 455, 442, 257, 1726, 1726, 2149, 464, 267, 898, 2136, 2114, 1349, 1025, 1025, 1025, 1025, 1025, 1027, 274, 274, 274, 274, 274, 274, 274, 274, 274, 1164, 1020, 1080, 1727, 1727, 1801, 139, 274, 274, 274, 274, 274, 277, 268, 270, 899, 296, 2711, 1032, 1700, 139, 1942, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 269, 1802, 1196, 274, 274, 274, 274, 274, 274, 783, 783, 784, 785, 786, 783, 783, 783, 270, 1913, 783, 783, 783, 464, 434, 1815, 788, 788, 1521, 2173, 1617, 2500, 2139, 2108, 1443, 783, 783, 783, 783, 783, 783, 1821, 257, 566, 2116, 434, 789, 784, 1079, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 270, 1703, 5800, 140, 1618, 257, 790, 783, 783, 783, 139, 139, 464, 527, 149, 139, 139, 139, 140, 3032, 139, 139, 139, 1080, 2065, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 529, 139, 139, 139, 139, 139, 139, 139, 2154, 2158, 2171, 2178, 162, 270, 1574, 1730, 1739, 1361, 2161, 1805, 561, 561, 561, 561, 561, 561, 561, 561, 561, 363, 139, 139, 139, 139, 776, 776, 1070, 777, 778, 776, 776, 776, 140, 140, 776, 776, 776, 1986, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 140, 1789, 776, 776, 776, 776, 776, 776, 1579, 464, 2333, 2327, 1071, 780, 330, 6782, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2591, 2190, 2368, 2490, 472, 140, 776, 776, 776, 776, 776, 776, 1070, 777, 778, 776, 776, 776, 1813, 270, 776, 776, 776, 464, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 140, 1792, 776, 776, 776, 776, 776, 776, 1076, 2597, 1572, 2193, 1071, 780, 2142, 1070, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 270, 1800, 140, 2457, 338, 566, 776, 776, 776, 776, 139, 139, 140, 527, 373, 139, 139, 139, 507, 758, 139, 139, 139, 1074, 2329, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 529, 139, 139, 139, 139, 139, 139, 148, 149, 1070, 2330, 1572, 162, 140, 2451, 2759, 2200, 516, 1735, 150, 150, 150, 150, 150, 150, 150, 150, 150, 810, 1234, 139, 139, 139, 139, 783, 783, 784, 785, 786, 783, 783, 783, 1071, 1736, 783, 783, 783, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1737, 1804, 1824, 783, 783, 783, 783, 783, 783, 148, 149, 1827, 140, 1110, 789, 561, 561, 561, 1828, 2246, 335, 150, 150, 150, 150, 150, 150, 150, 150, 150, 812, 571, 139, 783, 783, 783, 224, 224, 224, 224, 224, 225, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 139, 139, 3100, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 313, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139, 139, 139, 139, 139, 329, 536, 536, 536, 536, 536, 537, 536, 536, 1088, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 139, 139, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 1070, 139, 139, 139, 139, 139, 139, 139, 139, 139, 293, 313, 139, 140, 1672, 1730, 6862, 2626, 2683, 2192, 1832, 1836, 139, 139, 139, 139, 139, 139, 139, 1110, 1839, 2302, 1126, 1071, 314, 2331, 1834, 1840, 335, 2244, 1089, 330, 2140, 561, 561, 561, 561, 561, 561, 561, 561, 561, 139, 139, 139, 139, 139, 139, 329, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1824, 313, 139, 2222, 464, 1166, 464, 2422, 2081, 1827, 1846, 139, 139, 139, 139, 139, 139, 139, 329, 1470, 1860, 1829, 1898, 1861, 539, 1862, 1852, 1090, 2082, 1863, 2148, 1166, 1864, 1865, 1866, 140, 2748, 1867, 1900, 270, 140, 270, 139, 139, 139, 322, 139, 139, 1830, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 150, 150, 1091, 1092, 1093, 1094, 1094, 1094, 1094, 1094, 1094, 150, 139, 139, 139, 139, 139, 139, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 1617, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 1885, 1885, 1885, 1885, 1885, 1886, 1887, 1887, 1887, 150, 139, 139, 139, 139, 139, 139, 1095, 1739, 1572, 1618, 2690, 798, 2350, 1480, 1868, 1868, 1868, 1868, 1868, 1868, 1868, 1868, 1868, 2346, 610, 363, 2461, 2063, 2346, 139, 139, 139, 139, 139, 139, 140, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 797, 150, 540, 540, 540, 540, 540, 540, 540, 540, 540, 150, 139, 139, 139, 139, 139, 139, 1824, 1836, 1902, 1913, 1924, 798, 296, 2150, 464, 1827, 1839, 1905, 1521, 1533, 1574, 2195, 1828, 1840, 1910, 1919, 1930, 1829, 1841, 139, 139, 139, 139, 139, 139, 2450, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 2004, 270, 2081, 1839, 2500, 1986, 1830, 1842, 6866, 319, 139, 139, 139, 139, 139, 329, 1836, 1832, 566, 1944, 1948, 332, 2082, 1579, 571, 1839, 1110, 144, 1208, 1951, 144, 2511, 624, 1834, 140, 1946, 1952, 1841, 1843, 139, 139, 139, 322, 139, 139, 1977, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 599, 2448, 145, 2249, 2250, 145, 1842, 1844, 1416, 324, 139, 139, 139, 139, 139, 329, 2083, 1572, 566, 2074, 146, 332, 2460, 146, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1617, 1330, 1234, 1071, 2463, 2109, 139, 139, 139, 322, 148, 149, 455, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1097, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 810, 1618, 1576, 177, 1832, 1846, 434, 1098, 1098, 1098, 1098, 1098, 1099, 1110, 1470, 1698, 669, 495, 2266, 2059, 2446, 1852, 2270, 2179, 257, 1843, 1854, 1443, 2053, 496, 2087, 2273, 140, 1572, 1098, 1098, 1098, 1098, 1098, 1098, 1100, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1102, 2082, 1234, 1844, 1855, 1846, 1126, 1101, 1101, 1101, 1101, 1101, 1103, 140, 1470, 1379, 6869, 385, 385, 385, 385, 385, 385, 385, 385, 385, 1854, 1044, 784, 1303, 566, 1376, 140, 2187, 1101, 1101, 1101, 1101, 1101, 1101, 1106, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1108, 758, 1377, 1742, 1855, 2183, 329, 1107, 1107, 1107, 1107, 1107, 1109, 1304, 1042, 1743, 2113, 140, 140, 2625, 1869, 1870, 1870, 1870, 1870, 1870, 1870, 1870, 1870, 1870, 1744, 257, 140, 516, 1107, 1107, 1107, 1107, 1107, 1107, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1869, 139, 139, 2325, 2586, 4821, 2334, 2023, 2326, 2275, 1913, 1913, 139, 139, 139, 139, 139, 139, 329, 1521, 1521, 1977, 140, 2201, 554, 2514, 1919, 1114, 571, 2459, 2279, 1921, 1921, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 139, 139, 139, 1115, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 822, 148, 375, 2275, 1922, 1922, 2596, 1116, 1116, 1116, 1116, 1116, 1117, 150, 150, 150, 150, 150, 150, 150, 150, 150, 877, 2281, 2175, 1735, 571, 3130, 898, 1735, 140, 2013, 1827, 2492, 1116, 1116, 1116, 1116, 1116, 1116, 1118, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 150, 1736, 2176, 2592, 2554, 1736, 1924, 1119, 1119, 1119, 1119, 1119, 1120, 983, 1737, 1533, 2493, 140, 1737, 2117, 1869, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 566, 1308, 177, 6872, 1119, 1119, 1119, 1119, 1119, 1121, 139, 139, 140, 139, 139, 1129, 139, 139, 139, 139, 139, 139, 2593, 139, 139, 2262, 2262, 2262, 2262, 2262, 2263, 2264, 2264, 2264, 139, 139, 139, 139, 139, 139, 139, 148, 375, 1166, 1735, 140, 833, 140, 2863, 139, 335, 758, 1617, 150, 150, 150, 150, 150, 150, 150, 150, 150, 879, 2599, 139, 139, 139, 139, 139, 1736, 139, 139, 1129, 139, 139, 139, 139, 139, 139, 2054, 139, 139, 1737, 516, 1618, 2013, 2177, 2499, 2868, 2202, 2684, 139, 139, 139, 139, 139, 139, 139, 834, 1924, 2119, 2123, 1944, 833, 2065, 284, 784, 2242, 1533, 1319, 2126, 1208, 784, 2242, 2174, 1930, 2121, 2127, 760, 2493, 1932, 139, 139, 139, 139, 139, 566, 139, 836, 139, 139, 139, 139, 139, 139, 139, 1970, 139, 139, 140, 2243, 1572, 2353, 285, 566, 1376, 2243, 1933, 139, 139, 139, 139, 139, 139, 139, 148, 375, 2346, 776, 1234, 572, 2463, 2354, 2849, 776, 1377, 1134, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1934, 1042, 139, 139, 139, 139, 139, 2185, 139, 574, 139, 139, 139, 139, 139, 139, 139, 164, 165, 139, 164, 164, 164, 164, 164, 164, 164, 164, 164, 139, 139, 139, 139, 139, 139, 139, 340, 340, 340, 340, 340, 341, 340, 340, 340, 340, 340, 1135, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 139, 139, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 2284, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 1924, 165, 139, 2582, 2583, 2600, 1549, 1549, 1549, 1533, 1948, 2288, 139, 139, 139, 139, 139, 139, 139, 1951, 1948, 1932, 140, 2154, 166, 2292, 1952, 784, 1343, 1951, 1070, 1953, 1361, 2423, 1839, 307, 1618, 140, 2284, 2156, 140, 1953, 139, 139, 139, 139, 139, 139, 1933, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1954, 165, 139, 1344, 140, 1071, 2146, 4830, 2328, 2900, 1954, 2222, 1137, 139, 139, 139, 139, 139, 139, 1944, 1944, 265, 1133, 2248, 842, 2304, 1617, 898, 1208, 1208, 1872, 784, 1079, 786, 1470, 1946, 2896, 2745, 1345, 2119, 1955, 1955, 139, 139, 139, 843, 139, 139, 1319, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 165, 139, 1018, 140, 703, 898, 1080, 2425, 1956, 1956, 2308, 1137, 139, 139, 139, 139, 139, 139, 1138, 2311, 1349, 2602, 2357, 842, 139, 140, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 2346, 2152, 1020, 2570, 899, 2346, 139, 139, 139, 843, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1196, 139, 139, 2703, 2180, 2181, 1617, 1275, 140, 1742, 1742, 2154, 1137, 139, 139, 139, 139, 139, 139, 2585, 1361, 1743, 1743, 6879, 884, 2608, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 733, 1744, 1744, 1618, 511, 3274, 2571, 139, 139, 139, 139, 139, 140, 139, 574, 139, 139, 139, 139, 139, 139, 139, 841, 165, 139, 841, 841, 841, 841, 841, 841, 841, 841, 841, 1137, 139, 139, 139, 139, 139, 139, 844, 844, 844, 844, 844, 845, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 139, 139, 139, 843, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 139, 139, 2355, 139, 163, 139, 139, 139, 139, 139, 139, 139, 2123, 344, 139, 2512, 140, 2346, 139, 2771, 2023, 2126, 2346, 177, 139, 139, 139, 139, 139, 139, 139, 2123, 2119, 2128, 2158, 2606, 345, 2370, 1606, 139, 2126, 1319, 1140, 2161, 784, 1079, 1905, 2127, 2121, 140, 2162, 571, 2128, 2130, 139, 139, 139, 176, 139, 139, 2129, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 1141, 150, 140, 571, 2356, 2346, 1572, 1080, 2129, 2131, 2346, 150, 139, 139, 139, 139, 139, 139, 2447, 566, 2485, 1275, 3173, 583, 1234, 139, 2094, 2095, 2095, 2094, 2094, 2094, 2094, 2094, 2094, 513, 3275, 2553, 2704, 2620, 2257, 139, 139, 139, 139, 139, 139, 1275, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 1141, 150, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 150, 139, 139, 139, 139, 139, 139, 2604, 1275, 2103, 140, 1572, 583, 293, 2607, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2706, 2099, 4839, 2621, 2599, 2988, 139, 139, 139, 139, 139, 139, 1275, 148, 375, 139, 139, 139, 150, 150, 139, 139, 164, 190, 150, 385, 385, 385, 385, 385, 385, 385, 385, 385, 150, 139, 139, 139, 139, 139, 139, 350, 350, 350, 350, 350, 351, 350, 350, 350, 350, 350, 1147, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 139, 139, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 1706, 139, 836, 139, 139, 139, 139, 139, 139, 139, 2119, 139, 139, 375, 455, 2295, 2222, 3206, 1706, 1319, 1706, 2266, 139, 139, 139, 139, 139, 139, 139, 6885, 1443, 2130, 1707, 1206, 572, 455, 2299, 2268, 1706, 139, 2430, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1707, 1420, 139, 139, 139, 2351, 2351, 2653, 2131, 2746, 140, 2434, 140, 2295, 1148, 139, 139, 1708, 148, 149, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 2222, 1617, 2705, 2363, 2609, 1708, 2352, 2352, 2430, 1150, 139, 139, 139, 139, 139, 139, 1803, 2346, 2346, 140, 2758, 857, 2346, 2346, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 2584, 1971, 2755, 1275, 1133, 2500, 139, 139, 139, 843, 139, 139, 1572, 148, 149, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 2489, 566, 2053, 2222, 140, 1234, 1742, 2500, 2270, 1150, 139, 139, 139, 139, 139, 139, 1151, 2273, 1743, 1166, 2281, 857, 2292, 2373, 2278, 139, 2379, 2509, 2182, 1827, 2853, 1839, 2377, 1744, 566, 2382, 2287, 2056, 2298, 139, 139, 139, 843, 139, 139, 2574, 148, 375, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 856, 856, 856, 856, 856, 856, 856, 856, 856, 1150, 139, 139, 139, 139, 139, 139, 858, 858, 858, 858, 858, 859, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 139, 139, 139, 843, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 139, 139, 4852, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 203, 139, 139, 139, 139, 139, 139, 1154, 1154, 1154, 1154, 1154, 1155, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 1153, 1153, 1153, 1153, 1153, 1153, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 2387, 1655, 571, 571, 3098, 3568, 1275, 1003, 1617, 1521, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2622, 2055, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 455, 1618, 385, 385, 385, 385, 385, 385, 385, 385, 385, 284, 2686, 140, 1154, 1154, 1154, 1154, 1154, 1154, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 1158, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 602, 285, 2849, 1572, 2158, 2158, 2154, 1159, 1159, 1159, 1159, 1159, 1160, 2161, 2161, 1361, 464, 2654, 1219, 2391, 2162, 2992, 2156, 2401, 2405, 2163, 2163, 2165, 2394, 1565, 1565, 1566, 1533, 2408, 1159, 1159, 1159, 1159, 1159, 1159, 1162, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1164, 140, 270, 2164, 2164, 2166, 2427, 1163, 1163, 1163, 1163, 1163, 1165, 1706, 2025, 1951, 149, 2222, 140, 1133, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 2464, 1656, 3337, 2518, 1706, 1163, 1163, 1163, 1163, 1163, 1163, 375, 1275, 2603, 2647, 2751, 1707, 1706, 2528, 140, 2752, 454, 1167, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 150, 1572, 2082, 2640, 2023, 2030, 1706, 1168, 1168, 1168, 1168, 1168, 1169, 2143, 140, 2091, 2304, 2308, 1707, 1234, 1708, 2144, 1606, 2500, 2644, 1470, 2311, 140, 784, 1343, 2147, 139, 2306, 2312, 1168, 1168, 1168, 1168, 1168, 1170, 1173, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 877, 2500, 2640, 2382, 1708, 2266, 2849, 1174, 1174, 1174, 1174, 1174, 1175, 1344, 1443, 2510, 293, 571, 566, 3267, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 566, 1699, 265, 2632, 2370, 1174, 1174, 1174, 1174, 1174, 1174, 149, 455, 1905, 140, 434, 1376, 434, 2627, 1345, 2376, 2569, 1176, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 434, 2184, 257, 140, 257, 1377, 2628, 1177, 1177, 1177, 1177, 1177, 1178, 1617, 2013, 2138, 2492, 1042, 257, 2712, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 976, 2145, 1745, 2863, 2379, 1177, 1177, 1177, 1177, 1177, 1179, 1184, 464, 2382, 3105, 296, 1618, 2849, 3271, 2493, 2383, 898, 175, 175, 175, 175, 175, 175, 175, 175, 175, 2868, 434, 434, 2581, 2154, 2281, 2495, 175, 175, 175, 175, 175, 204, 1361, 1827, 1618, 270, 2387, 2637, 257, 257, 784, 1079, 1574, 1018, 2165, 1521, 2126, 2483, 566, 2151, 2629, 140, 2389, 175, 175, 175, 175, 175, 175, 139, 139, 1349, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2166, 139, 139, 1080, 1986, 2222, 2860, 1020, 6891, 2254, 140, 2668, 1137, 139, 139, 139, 139, 139, 139, 885, 2161, 139, 1579, 434, 884, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 2633, 1802, 2862, 375, 2292, 2747, 375, 257, 139, 139, 139, 139, 139, 1839, 139, 163, 139, 139, 139, 139, 139, 139, 139, 1208, 365, 139, 2437, 2678, 566, 139, 1986, 375, 139, 2391, 485, 139, 139, 139, 139, 139, 139, 139, 2394, 2281, 1126, 511, 2255, 366, 1234, 2395, 464, 1519, 1827, 1186, 2714, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2289, 139, 139, 139, 139, 139, 139, 139, 163, 139, 139, 139, 139, 139, 139, 139, 464, 344, 139, 1188, 1189, 270, 1010, 375, 2658, 2664, 2281, 2290, 139, 139, 139, 139, 139, 139, 139, 1827, 2292, 2401, 2655, 2405, 345, 2222, 2287, 1208, 1706, 1839, 1533, 2289, 2408, 139, 335, 270, 2298, 2403, 464, 2409, 1707, 2300, 139, 139, 139, 176, 1190, 1191, 150, 150, 150, 150, 150, 150, 150, 140, 3279, 2671, 2290, 2753, 2292, 2308, 150, 150, 150, 150, 150, 162, 2301, 1839, 2311, 2336, 566, 270, 2337, 1708, 2338, 2312, 2675, 140, 2339, 2300, 2313, 2340, 2341, 2342, 2832, 2719, 2343, 150, 150, 150, 150, 150, 150, 1200, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 627, 2671, 1742, 2836, 2301, 2314, 2308, 1201, 1201, 1201, 1201, 1201, 1202, 140, 2693, 2311, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 150, 2742, 2313, 2222, 1744, 2832, 139, 140, 2222, 1201, 1201, 1201, 1201, 1201, 1201, 1204, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1206, 2696, 2744, 2849, 2304, 2314, 2304, 1205, 1205, 1205, 1205, 1205, 1207, 1470, 2427, 1470, 898, 140, 2635, 758, 495, 2697, 2306, 1951, 2870, 2778, 1970, 2315, 566, 2691, 2433, 1572, 496, 2698, 1205, 1205, 1205, 1205, 1205, 1205, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1234, 983, 516, 2849, 2465, 2316, 2370, 1215, 1215, 1215, 1215, 1215, 1216, 2716, 2701, 1905, 3921, 2879, 3922, 1308, 1379, 2323, 2324, 2324, 2323, 2323, 2323, 2323, 2323, 2323, 566, 2222, 1044, 3943, 1215, 1215, 1215, 1215, 1215, 1215, 1225, 1225, 140, 1226, 1227, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1229, 1230, 1228, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 1232, 1225, 1225, 1225, 1225, 1225, 1225, 2304, 2379, 1468, 2637, 513, 1233, 2780, 2783, 329, 1470, 2382, 1617, 2126, 2715, 2662, 2273, 2787, 2383, 758, 2643, 2387, 2315, 2384, 1234, 1225, 1225, 1235, 139, 139, 1521, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 464, 1618, 566, 375, 2023, 4866, 2316, 2385, 516, 139, 139, 139, 139, 139, 139, 139, 2379, 2391, 1470, 2577, 140, 589, 3041, 2437, 329, 2382, 2394, 1246, 2053, 139, 335, 1768, 2717, 2395, 2908, 270, 2401, 2384, 2396, 146, 139, 139, 139, 139, 139, 1533, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 2732, 2945, 566, 2904, 140, 2394, 2385, 2397, 434, 139, 139, 139, 139, 139, 139, 139, 1070, 375, 1768, 464, 566, 589, 2850, 2025, 2213, 2700, 257, 2849, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1208, 1789, 146, 139, 139, 139, 139, 464, 1377, 140, 2634, 2656, 1071, 2918, 2546, 566, 1768, 270, 2663, 2528, 1042, 1248, 1250, 1250, 2863, 1251, 1250, 1252, 1250, 1250, 1250, 1250, 1250, 1250, 1253, 1250, 1250, 2030, 144, 2839, 2914, 140, 270, 1772, 3441, 329, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 2391, 2387, 3450, 2668, 2868, 1255, 2427, 2637, 1768, 2394, 1521, 2387, 2161, 599, 3015, 1951, 2126, 2389, 145, 2674, 1521, 2396, 2398, 1256, 1250, 1250, 1250, 410, 2072, 2405, 566, 703, 2398, 1735, 1070, 2763, 146, 2222, 2408, 223, 223, 223, 223, 223, 223, 223, 223, 223, 2397, 2399, 2410, 6897, 2073, 2405, 2401, 2401, 2789, 2668, 1736, 2399, 140, 2756, 2408, 1533, 1533, 2792, 2161, 1071, 2688, 2409, 2403, 1737, 2757, 1735, 2410, 2412, 2412, 2411, 140, 140, 226, 733, 223, 223, 223, 223, 223, 223, 177, 177, 177, 177, 177, 177, 177, 177, 177, 758, 1736, 2689, 2857, 2411, 2413, 2413, 175, 175, 175, 175, 175, 204, 2081, 1737, 2849, 1742, 2849, 140, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 1743, 140, 784, 1303, 516, 2082, 177, 177, 177, 177, 177, 177, 140, 2718, 2859, 1744, 1768, 140, 2694, 1260, 139, 139, 566, 139, 163, 139, 139, 139, 139, 139, 139, 139, 2427, 365, 139, 2602, 1304, 2858, 2863, 2222, 2702, 1951, 2631, 1772, 139, 139, 139, 139, 139, 139, 139, 1070, 1735, 2435, 257, 2687, 366, 2083, 2734, 2749, 1379, 1768, 375, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 1044, 2247, 139, 139, 139, 1736, 2797, 2801, 2436, 2863, 1521, 2750, 1071, 2863, 2868, 1827, 2804, 2869, 1737, 1271, 959, 959, 1070, 959, 959, 959, 959, 959, 959, 959, 959, 959, 1277, 959, 959, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 959, 959, 959, 959, 959, 959, 959, 2868, 375, 2868, 6911, 1071, 1279, 1070, 1869, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 1685, 1685, 1685, 6914, 2921, 2764, 959, 959, 959, 959, 959, 959, 140, 959, 959, 959, 959, 959, 959, 959, 959, 959, 1071, 959, 959, 2439, 2439, 2439, 2439, 2439, 2440, 2441, 2441, 2441, 959, 959, 959, 959, 959, 959, 959, 2427, 2637, 2780, 2789, 2780, 1282, 2811, 2765, 3101, 1951, 2126, 2273, 2792, 2273, 140, 1839, 2433, 2643, 2786, 2793, 140, 2435, 2645, 959, 959, 959, 959, 959, 566, 959, 959, 959, 959, 959, 959, 959, 959, 959, 2815, 959, 959, 1706, 2886, 784, 1343, 1070, 571, 2818, 2436, 2646, 959, 959, 959, 959, 959, 959, 959, 1283, 566, 375, 3739, 1706, 1282, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 140, 1707, 2863, 2500, 2657, 1344, 1071, 1531, 959, 959, 959, 2660, 1284, 1285, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 2442, 265, 2768, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1070, 140, 1708, 2881, 3027, 3438, 1345, 1287, 1287, 1287, 1287, 1287, 1288, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 140, 149, 1289, 1074, 1286, 1286, 1286, 1286, 1286, 1286, 973, 973, 973, 973, 973, 973, 973, 973, 973, 1768, 973, 2769, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 434, 1800, 140, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 140, 1804, 3127, 1772, 1470, 6924, 257, 1470, 790, 2839, 329, 2637, 140, 329, 335, 329, 335, 2210, 2731, 566, 2126, 1768, 1297, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 2645, 1298, 2253, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 434, 2453, 2256, 140, 1742, 2797, 140, 2692, 1617, 2929, 2944, 2970, 1572, 375, 1827, 2646, 1743, 531, 257, 2575, 2576, 2576, 2575, 2575, 2575, 2575, 2575, 2575, 1672, 566, 1234, 1744, 3120, 1533, 3174, 140, 2925, 443, 246, 246, 1618, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 1311, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 697, 246, 246, 246, 246, 246, 246, 1312, 1312, 1312, 1312, 1312, 1313, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 1312, 1312, 1312, 1312, 1312, 1312, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 1315, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1317, 1718, 1718, 1718, 140, 140, 2500, 1316, 1316, 1316, 1316, 1316, 1318, 2649, 2649, 2649, 2649, 2649, 2649, 2649, 2649, 2649, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 3018, 2513, 2797, 1316, 1316, 1316, 1316, 1316, 1316, 1325, 2811, 1827, 2023, 375, 2943, 3033, 4934, 2023, 2799, 1839, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 1606, 1275, 2483, 2932, 566, 3045, 253, 253, 253, 253, 253, 256, 2649, 2649, 2649, 2649, 2649, 2650, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 1572, 3159, 4939, 253, 253, 253, 253, 253, 253, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1234, 1007, 1617, 2614, 2615, 2615, 2614, 2614, 2614, 2614, 2614, 2614, 464, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 140, 2580, 1275, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 1618, 2680, 2680, 2680, 2680, 2680, 2681, 2682, 2682, 2682, 3128, 3925, 1336, 270, 265, 265, 3926, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 1353, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 727, 265, 265, 265, 265, 265, 265, 1354, 1354, 1354, 1354, 1354, 1355, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 1354, 1354, 1354, 1354, 1354, 1354, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 1357, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1359, 307, 140, 1768, 2829, 2829, 140, 1358, 1358, 1358, 1358, 1358, 1360, 2311, 2311, 2023, 3974, 2222, 3035, 2611, 2612, 2612, 2612, 2612, 2612, 2612, 2612, 2612, 2612, 566, 571, 3138, 2854, 1606, 1358, 1358, 1358, 1358, 1358, 1358, 1367, 1275, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 1572, 3308, 2975, 2888, 2892, 2902, 274, 274, 274, 274, 274, 277, 1905, 2895, 2382, 1846, 1846, 1846, 1234, 2611, 2613, 2613, 2613, 2613, 2613, 2613, 2613, 2613, 2613, 140, 2995, 455, 7028, 274, 274, 274, 274, 274, 274, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2855, 139, 139, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2454, 139, 139, 139, 139, 139, 139, 139, 2985, 2856, 571, 3207, 140, 1390, 784, 1343, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 3952, 2619, 2748, 571, 2863, 3075, 139, 139, 139, 139, 139, 139, 1275, 527, 149, 139, 139, 139, 784, 2242, 139, 139, 139, 1344, 2976, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 529, 139, 139, 139, 139, 139, 139, 265, 2668, 784, 2242, 2801, 162, 1768, 2868, 571, 2611, 2161, 2243, 2811, 2804, 2868, 2408, 2661, 1345, 1376, 3077, 2805, 1839, 2676, 139, 139, 139, 139, 1409, 2813, 776, 566, 1275, 2699, 1772, 2023, 3076, 2243, 2564, 1377, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 3069, 2677, 1042, 1768, 1606, 2733, 2761, 1411, 1411, 1411, 1411, 1411, 1412, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 784, 2242, 1413, 2668, 1410, 1410, 1410, 1410, 1410, 1410, 776, 776, 2161, 777, 778, 776, 776, 776, 7287, 2674, 776, 776, 776, 571, 2676, 784, 1079, 2772, 2013, 2762, 3031, 1768, 2888, 2902, 2243, 776, 776, 776, 776, 776, 776, 1905, 2382, 3131, 2815, 2912, 780, 898, 898, 1414, 2665, 2677, 776, 2818, 2394, 2500, 566, 566, 1772, 1080, 2819, 2207, 2493, 3026, 776, 776, 776, 776, 139, 139, 2737, 527, 373, 139, 139, 139, 1768, 139, 139, 139, 139, 1018, 1018, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 529, 139, 139, 139, 139, 139, 139, 1349, 1349, 7290, 3077, 2666, 162, 561, 561, 561, 561, 561, 561, 561, 561, 561, 140, 2736, 1020, 1020, 2222, 140, 3078, 3126, 139, 139, 139, 139, 783, 783, 784, 785, 786, 783, 783, 783, 1768, 140, 783, 783, 783, 375, 2739, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 140, 783, 783, 783, 783, 783, 783, 2740, 2849, 1521, 2741, 1772, 789, 3980, 1073, 2849, 784, 1079, 2214, 2912, 898, 1768, 2851, 2215, 566, 3002, 140, 2852, 2394, 1768, 139, 783, 783, 783, 783, 783, 784, 785, 786, 783, 783, 783, 2829, 566, 783, 783, 783, 1074, 1772, 2735, 1080, 2311, 140, 2770, 3008, 3139, 1572, 1572, 2835, 783, 783, 783, 783, 783, 783, 1075, 1768, 375, 139, 3011, 789, 2209, 3009, 1424, 1234, 1234, 2774, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 3264, 1521, 139, 783, 783, 783, 139, 139, 335, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 313, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139, 139, 139, 139, 139, 329, 536, 536, 536, 536, 536, 537, 536, 536, 536, 536, 536, 1426, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 139, 139, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 3077, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 2789, 313, 139, 2519, 2013, 375, 2492, 140, 2564, 2792, 2789, 3043, 139, 139, 139, 139, 139, 139, 139, 2792, 2801, 2794, 703, 2888, 314, 1533, 2793, 784, 1083, 2804, 3119, 2794, 1905, 3019, 2519, 3713, 2805, 3244, 2493, 2890, 566, 2806, 139, 139, 139, 139, 139, 139, 2795, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2795, 313, 139, 1084, 140, 3141, 375, 375, 571, 2777, 2807, 3044, 139, 139, 139, 139, 139, 139, 329, 2801, 2797, 146, 2892, 2902, 539, 140, 2921, 1533, 2804, 1827, 1427, 2895, 2382, 335, 335, 1768, 2799, 1275, 2899, 2907, 2806, 2808, 139, 139, 139, 322, 139, 139, 3048, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 1428, 150, 2013, 3134, 2492, 2016, 495, 3252, 2807, 2809, 2923, 150, 139, 139, 139, 139, 139, 139, 496, 2408, 375, 2023, 3749, 798, 2841, 2841, 2841, 2841, 2841, 2842, 2843, 2843, 2843, 7313, 140, 1768, 2493, 140, 3289, 1606, 2932, 139, 139, 139, 139, 139, 139, 335, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 1428, 150, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 150, 139, 139, 139, 139, 139, 139, 1275, 2023, 2792, 3265, 3930, 798, 2843, 2843, 2843, 2843, 2843, 2843, 2843, 2843, 2843, 3931, 1730, 566, 3142, 1606, 2948, 3047, 3243, 139, 139, 139, 139, 139, 139, 1951, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 561, 561, 561, 561, 561, 561, 561, 561, 561, 150, 139, 139, 139, 139, 139, 329, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 1434, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 148, 149, 2797, 2974, 2974, 2974, 2974, 2974, 2974, 140, 464, 1827, 1435, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 810, 1617, 2808, 140, 2815, 2815, 2811, 1436, 1436, 1436, 1436, 1436, 1437, 2818, 2818, 1839, 784, 2981, 3472, 2952, 2819, 3184, 2813, 3188, 270, 2820, 2820, 2822, 2955, 2809, 2126, 3209, 3191, 1618, 1436, 1436, 1436, 1436, 1436, 1436, 1439, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1441, 2982, 3104, 2821, 2821, 2823, 2811, 1440, 1440, 1440, 1440, 1440, 1442, 2912, 2923, 1839, 2948, 2952, 2013, 1234, 2492, 1827, 2394, 2408, 7316, 1951, 2955, 2822, 335, 2917, 2928, 1617, 2950, 2956, 1440, 1440, 1440, 1440, 1440, 1440, 1444, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 150, 140, 140, 2493, 2829, 2823, 329, 1445, 1445, 1445, 1445, 1445, 1446, 2311, 1618, 1572, 1739, 2993, 2994, 835, 2835, 2979, 3251, 3030, 507, 2837, 3133, 3892, 3018, 733, 464, 464, 3116, 1234, 1445, 1445, 1445, 1445, 1445, 1447, 1450, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1108, 1572, 2027, 2838, 2829, 2902, 2902, 1451, 1451, 1451, 1451, 1451, 1452, 2311, 2382, 2382, 270, 270, 3266, 1234, 3217, 2907, 3215, 3221, 140, 2837, 2909, 2909, 898, 2013, 7410, 2492, 2161, 2023, 1451, 1451, 1451, 1451, 1451, 1451, 1453, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1768, 293, 1606, 2838, 2910, 2910, 139, 1454, 1454, 1454, 1454, 1454, 1455, 899, 2493, 434, 3352, 140, 3175, 2946, 2846, 2847, 2847, 2847, 2847, 2847, 2847, 2847, 2847, 2847, 3993, 1196, 3028, 257, 1454, 1454, 1454, 1454, 1454, 1456, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2512, 139, 139, 1275, 140, 2023, 3310, 1768, 3438, 3155, 2912, 2912, 139, 139, 139, 139, 139, 139, 329, 2394, 2394, 2096, 464, 1606, 554, 3047, 2917, 140, 3263, 3216, 1461, 2919, 2919, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 139, 139, 139, 1462, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 822, 3438, 7418, 270, 2920, 2920, 2923, 1463, 1463, 1463, 1463, 1463, 1464, 434, 140, 2408, 2933, 2933, 2933, 2933, 2933, 2934, 2935, 2935, 2935, 3366, 3374, 2512, 898, 140, 566, 257, 2023, 3177, 1463, 1463, 1463, 1463, 1463, 1463, 1466, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1468, 1606, 3438, 3362, 3370, 3049, 2948, 1467, 1467, 1467, 1467, 1467, 1469, 983, 3272, 1951, 1924, 1924, 1924, 3182, 2846, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 566, 1308, 140, 566, 1467, 1467, 1467, 1467, 1467, 1467, 139, 139, 140, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 150, 139, 139, 139, 139, 139, 329, 2222, 1617, 3438, 140, 1617, 332, 3323, 139, 2222, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2923, 2099, 2923, 3542, 2952, 139, 139, 139, 322, 2408, 434, 2408, 1275, 2955, 2025, 1618, 2928, 3180, 1618, 3067, 2956, 2930, 446, 2930, 3103, 2957, 284, 571, 257, 3247, 1476, 139, 139, 140, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 2618, 2528, 2931, 7421, 2931, 3102, 2958, 434, 434, 150, 139, 139, 139, 139, 139, 329, 1070, 3132, 285, 2030, 140, 332, 2846, 3543, 140, 257, 257, 1275, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 3225, 2767, 139, 139, 139, 322, 3438, 140, 2096, 3228, 3179, 3438, 1071, 1477, 139, 139, 3160, 139, 139, 1129, 139, 139, 139, 139, 139, 139, 1275, 139, 139, 2942, 2942, 2942, 2942, 2942, 2942, 2942, 2942, 2942, 139, 139, 139, 139, 139, 139, 139, 2222, 2940, 3324, 464, 1903, 833, 3208, 3768, 2222, 139, 139, 1479, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 2941, 150, 3441, 139, 139, 139, 139, 139, 464, 139, 1485, 139, 139, 139, 139, 139, 139, 139, 270, 139, 139, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 139, 139, 139, 139, 139, 139, 139, 3261, 3210, 1572, 3467, 1379, 572, 270, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 2861, 1044, 4904, 511, 513, 3573, 3895, 3896, 139, 139, 139, 139, 139, 140, 139, 1486, 139, 139, 139, 139, 139, 139, 139, 164, 165, 139, 164, 164, 164, 164, 164, 164, 164, 164, 164, 139, 139, 139, 139, 139, 139, 139, 340, 340, 340, 340, 340, 341, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 139, 139, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 139, 139, 3276, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2952, 165, 139, 2222, 3436, 3437, 758, 140, 3718, 2955, 3184, 2222, 1137, 139, 139, 139, 139, 139, 139, 2126, 6251, 2957, 516, 1572, 842, 140, 3186, 1489, 2965, 2966, 2967, 2968, 2968, 2968, 2968, 2968, 2968, 150, 516, 3278, 1618, 3585, 139, 139, 139, 843, 139, 139, 2958, 139, 574, 139, 139, 139, 139, 139, 139, 139, 841, 165, 139, 841, 841, 841, 841, 841, 841, 841, 841, 841, 1137, 139, 139, 139, 139, 139, 139, 844, 844, 844, 844, 844, 845, 844, 844, 844, 844, 844, 1490, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 139, 139, 139, 843, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 139, 139, 566, 139, 1491, 139, 139, 139, 139, 139, 139, 139, 2948, 344, 139, 140, 5348, 140, 140, 2696, 3257, 1951, 3188, 3345, 139, 139, 139, 139, 139, 139, 139, 3191, 3143, 2959, 3221, 3144, 345, 3145, 3192, 2697, 2697, 3146, 1905, 2161, 3147, 3148, 3149, 3750, 139, 3150, 3223, 2698, 2698, 3438, 139, 139, 139, 176, 139, 139, 2960, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 150, 150, 1492, 1493, 1494, 1495, 1495, 1495, 1495, 1495, 1495, 150, 139, 139, 139, 139, 139, 139, 350, 350, 350, 350, 350, 351, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 139, 139, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 139, 139, 7424, 148, 149, 139, 139, 139, 150, 150, 139, 139, 164, 1141, 150, 848, 848, 848, 848, 848, 848, 848, 848, 848, 150, 139, 139, 139, 139, 139, 139, 385, 385, 385, 385, 385, 583, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 139, 139, 139, 139, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 139, 139, 140, 139, 836, 139, 139, 139, 139, 139, 139, 139, 1617, 139, 139, 6401, 2222, 434, 2013, 3953, 2492, 3135, 3136, 140, 139, 139, 139, 139, 139, 139, 139, 3387, 2222, 140, 3137, 257, 572, 2948, 335, 2054, 2222, 3184, 3188, 3326, 1618, 3435, 1951, 3019, 3135, 3136, 2126, 3191, 2493, 2950, 139, 139, 139, 1617, 2959, 3176, 1768, 3384, 3137, 3193, 140, 703, 3118, 140, 3440, 1498, 139, 139, 3030, 148, 149, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 2960, 3439, 3751, 3380, 2584, 3194, 2696, 3225, 3221, 1150, 139, 139, 139, 139, 139, 139, 3228, 2161, 1379, 2222, 2222, 857, 3117, 3229, 1501, 140, 2697, 2222, 2747, 3330, 1044, 2053, 733, 3258, 1768, 566, 3262, 3318, 2698, 139, 139, 139, 843, 139, 139, 2217, 148, 375, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 856, 856, 856, 856, 856, 856, 856, 856, 856, 1150, 139, 139, 139, 139, 139, 139, 858, 858, 858, 858, 858, 859, 858, 858, 858, 858, 858, 1502, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 139, 139, 139, 843, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 139, 139, 5357, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 203, 139, 139, 139, 139, 139, 139, 1504, 1504, 1504, 1504, 1504, 1505, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 1503, 1503, 1503, 1503, 1503, 1503, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 2986, 2987, 2987, 2986, 2986, 2986, 2986, 2986, 2986, 434, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1617, 3395, 1572, 1275, 140, 140, 1275, 4448, 257, 3155, 3107, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 1234, 3354, 3327, 1133, 1839, 2222, 3762, 2260, 3391, 3181, 2273, 335, 1618, 2222, 1504, 1504, 1504, 1504, 1504, 1504, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 148, 149, 1483, 1484, 1484, 1483, 1483, 1483, 1483, 1483, 1483, 455, 150, 150, 150, 150, 150, 150, 150, 150, 150, 604, 1070, 140, 784, 1303, 3178, 477, 335, 148, 149, 2611, 3151, 3151, 3151, 3151, 3151, 3151, 3151, 3151, 3151, 150, 150, 150, 150, 150, 150, 150, 150, 150, 604, 1742, 3838, 1275, 3441, 1071, 140, 3253, 1304, 464, 3134, 2770, 3448, 1743, 3321, 566, 1508, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1164, 257, 3449, 1744, 3188, 3184, 3184, 1509, 1509, 1509, 1509, 1509, 1510, 3191, 2126, 2126, 3322, 3619, 1617, 270, 3192, 3186, 2222, 3451, 3358, 3193, 3195, 3195, 3449, 3441, 2222, 3454, 1768, 3361, 1509, 1509, 1509, 1509, 1509, 1509, 1511, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1513, 1618, 7431, 3194, 3196, 3196, 3451, 1512, 1512, 1512, 1512, 1512, 1514, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 3736, 2991, 3287, 1512, 1512, 1512, 1512, 1512, 1512, 375, 898, 1768, 1572, 1706, 1986, 1706, 1572, 140, 1735, 1742, 1517, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1519, 1234, 1743, 3586, 1706, 3610, 1706, 1518, 1518, 1518, 1518, 1518, 1520, 1768, 1736, 1018, 1707, 1744, 1707, 3249, 2222, 3218, 3211, 3255, 3755, 566, 140, 1737, 2222, 3333, 784, 1343, 3213, 1349, 1518, 1518, 1518, 1518, 1518, 1518, 1525, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 877, 1020, 1708, 3212, 1708, 3225, 363, 1526, 1526, 1526, 1526, 1526, 1527, 3286, 3228, 1344, 3756, 2222, 2756, 3763, 2222, 3229, 3946, 1768, 2216, 2222, 3230, 1735, 2222, 3319, 3320, 3332, 2222, 265, 1526, 1526, 1526, 1526, 1526, 1526, 1529, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1531, 1345, 140, 1736, 3231, 3481, 2222, 1530, 1530, 1530, 1530, 1530, 1532, 3398, 2222, 3616, 1737, 3250, 3805, 3617, 335, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 140, 3037, 3476, 1768, 1530, 1530, 1530, 1530, 1530, 1530, 139, 139, 2023, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 3022, 3618, 1376, 758, 5366, 1606, 140, 3225, 3624, 139, 139, 139, 139, 139, 139, 139, 3228, 3221, 3259, 1133, 3368, 589, 1377, 3378, 784, 1343, 2161, 1539, 3230, 2792, 3615, 2214, 2804, 3223, 1042, 516, 2215, 1768, 3232, 146, 139, 139, 139, 139, 139, 1070, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3231, 139, 139, 1344, 1768, 2604, 3135, 3136, 140, 3277, 3233, 1275, 1137, 139, 139, 139, 139, 139, 139, 3137, 3221, 265, 2023, 1071, 884, 3214, 2599, 3346, 2744, 2161, 1540, 2222, 3344, 3135, 3136, 3774, 7437, 3336, 1345, 2222, 3643, 3232, 139, 139, 139, 139, 139, 3137, 139, 1491, 139, 139, 139, 139, 139, 139, 139, 2214, 365, 139, 3347, 140, 2215, 1768, 3309, 3486, 3496, 3389, 3233, 139, 139, 139, 139, 139, 139, 139, 2818, 1572, 3348, 3612, 2023, 366, 3152, 3153, 3153, 3153, 3153, 3153, 3153, 3153, 3153, 3153, 3487, 3497, 3438, 1234, 3438, 140, 3647, 139, 139, 139, 139, 139, 1275, 148, 149, 139, 139, 139, 150, 150, 139, 139, 841, 582, 150, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1150, 139, 139, 139, 139, 139, 139, 3561, 3562, 566, 4191, 2528, 857, 3987, 3152, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 1275, 140, 1768, 140, 140, 1606, 139, 139, 139, 843, 139, 139, 1275, 139, 163, 139, 139, 139, 139, 139, 139, 139, 3772, 344, 139, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 139, 139, 139, 139, 139, 139, 139, 1617, 3438, 3570, 1070, 140, 345, 3335, 2212, 3438, 140, 3107, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 1768, 3354, 3315, 139, 139, 139, 176, 148, 375, 1735, 2273, 2213, 1618, 2696, 1572, 3248, 1071, 3356, 3885, 150, 150, 150, 150, 150, 150, 150, 150, 150, 629, 3869, 5379, 898, 1234, 2697, 1736, 335, 148, 375, 2222, 2751, 1768, 3341, 1275, 3508, 2752, 2698, 2222, 1737, 150, 150, 150, 150, 150, 150, 150, 150, 150, 629, 2744, 3256, 1905, 2222, 3403, 3328, 1376, 1018, 139, 335, 3775, 2222, 3509, 2311, 566, 1548, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1206, 1349, 1377, 2940, 3311, 3067, 3312, 1549, 1549, 1549, 1549, 1549, 1550, 2758, 1042, 3313, 3407, 1768, 1020, 2222, 3260, 3485, 3314, 150, 3219, 3410, 3486, 2222, 1745, 139, 784, 2242, 3325, 2023, 1549, 1549, 1549, 1549, 1549, 1549, 1551, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 4271, 3334, 1606, 140, 3487, 140, 2222, 1552, 1552, 1552, 1552, 1552, 1553, 1617, 2222, 2243, 3495, 3507, 3340, 3524, 3541, 3496, 3508, 2746, 3110, 3111, 3111, 3110, 3110, 3110, 3110, 3110, 3110, 776, 1552, 1552, 1552, 1552, 1552, 1554, 148, 375, 4272, 3632, 1275, 1618, 3525, 140, 3497, 3509, 2500, 3321, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1559, 3523, 2013, 3629, 3630, 3552, 3524, 335, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 3322, 571, 3773, 3949, 3474, 145, 2222, 1561, 1561, 1561, 1561, 1561, 1562, 2895, 2222, 3548, 3525, 6486, 3329, 2493, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 3574, 2619, 3245, 3018, 1275, 1561, 1561, 1561, 1561, 1561, 1561, 1568, 1275, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 175, 175, 175, 175, 175, 175, 175, 175, 175, 1572, 1572, 2748, 140, 3358, 3489, 3789, 175, 175, 175, 175, 175, 204, 3361, 2382, 3157, 1275, 571, 1234, 1234, 3365, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 140, 3158, 3945, 3587, 175, 175, 175, 175, 175, 175, 1225, 1225, 1275, 1574, 1225, 1575, 1225, 1225, 1225, 1225, 1225, 1225, 1576, 1225, 1225, 2500, 3812, 3331, 3152, 3790, 4422, 2222, 3633, 2222, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2222, 1905, 3501, 2181, 3517, 1578, 3368, 139, 1742, 1275, 2750, 2394, 3354, 2408, 3254, 2792, 566, 784, 1079, 7443, 1743, 2273, 3373, 1579, 1225, 1225, 1225, 1225, 1225, 1617, 1226, 1580, 1225, 1225, 1225, 1744, 566, 1225, 1225, 1225, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3368, 3115, 1080, 1225, 1225, 1225, 1225, 1225, 1225, 2792, 3378, 1275, 1618, 3546, 1581, 3038, 3373, 784, 1079, 2804, 139, 3375, 2955, 3640, 784, 1079, 3383, 3349, 140, 3368, 566, 1289, 1234, 1225, 1225, 1225, 1225, 1225, 2792, 1225, 1582, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3376, 1583, 1225, 1080, 3868, 566, 140, 375, 3077, 2777, 1080, 3378, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3351, 2804, 139, 3389, 3403, 1584, 3407, 3676, 1949, 139, 3123, 2023, 2818, 2311, 139, 3410, 566, 3634, 3748, 3394, 3405, 3894, 3411, 1234, 1225, 1225, 1235, 1225, 1225, 1606, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1228, 1228, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 1587, 1587, 1587, 1587, 1587, 1588, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1234, 1225, 1225, 1225, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1225, 1225, 464, 1226, 1227, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1229, 1230, 1228, 375, 3648, 3649, 4751, 375, 140, 3813, 3389, 3368, 1232, 1225, 1225, 1225, 1225, 1225, 1225, 2818, 2792, 3831, 3474, 1951, 1233, 3841, 1133, 3555, 454, 139, 3403, 2895, 3375, 139, 566, 3018, 4808, 2023, 3480, 2311, 140, 1672, 1234, 1225, 1225, 1235, 1225, 1225, 1070, 1226, 1589, 1225, 1225, 1225, 566, 1606, 1225, 1225, 1225, 3376, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3997, 3339, 1225, 1225, 1225, 1225, 1225, 1225, 3378, 3378, 3489, 3501, 1071, 1581, 1275, 140, 3822, 2804, 2804, 2382, 2394, 5393, 3657, 3786, 3383, 3191, 3491, 3503, 3474, 3385, 3385, 1234, 1225, 1225, 1225, 1225, 1225, 2895, 1226, 1227, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1229, 1230, 1228, 455, 3884, 566, 375, 2023, 375, 3386, 3386, 3837, 1232, 1225, 1225, 1225, 1225, 1225, 1225, 1590, 3389, 3517, 3546, 140, 1233, 1606, 1951, 898, 3555, 2818, 2408, 2955, 139, 335, 139, 335, 3394, 3519, 3551, 3489, 434, 3396, 1234, 1225, 1225, 1235, 1225, 1225, 2382, 1225, 1582, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 257, 1591, 1225, 3008, 434, 566, 3886, 140, 836, 3559, 3397, 7449, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3389, 150, 3608, 3818, 1275, 1592, 139, 139, 3902, 2818, 3399, 3399, 3399, 3399, 3399, 3399, 3399, 3399, 3399, 3501, 571, 3396, 571, 1234, 1225, 1225, 1597, 1597, 2394, 1598, 1599, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 1601, 1602, 1600, 3766, 2013, 566, 2492, 3672, 3767, 3828, 3397, 3517, 1604, 1597, 1597, 1597, 1597, 1597, 1597, 1572, 2408, 2023, 4375, 5056, 1605, 3399, 3399, 3399, 3399, 3399, 3400, 3401, 3401, 3401, 3666, 566, 3824, 4226, 2493, 1606, 140, 3620, 1606, 1597, 1597, 1607, 139, 139, 3867, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 139, 139, 139, 139, 139, 139, 139, 3407, 3407, 3822, 1730, 4091, 1609, 3791, 5612, 3796, 3410, 3410, 3191, 836, 784, 2981, 836, 3411, 3801, 3827, 139, 3546, 3412, 3412, 146, 139, 139, 139, 139, 139, 2955, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 2023, 571, 566, 5638, 571, 2982, 3413, 3413, 571, 139, 139, 139, 139, 139, 139, 139, 3403, 3403, 1606, 3680, 3861, 589, 3489, 1234, 3501, 2311, 2311, 485, 3673, 3715, 3650, 2382, 3405, 2394, 1617, 3714, 836, 3414, 3414, 146, 139, 139, 139, 3498, 3858, 3510, 784, 2981, 1611, 1250, 1250, 3077, 1250, 1617, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1620, 1250, 1250, 3415, 3415, 1618, 571, 4092, 2564, 3499, 3854, 3511, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 2982, 2292, 2292, 2292, 140, 1622, 3420, 3421, 3422, 3423, 3423, 3423, 3423, 3423, 3423, 150, 4284, 566, 3571, 4131, 3717, 139, 1133, 1250, 1250, 1250, 1250, 1250, 1250, 3754, 1250, 1617, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 3716, 1250, 1250, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 293, 3426, 446, 3852, 3427, 1625, 3428, 3947, 3889, 140, 3429, 3835, 3228, 3430, 3431, 3432, 2500, 2222, 3433, 140, 7455, 3757, 253, 1250, 1250, 1250, 1250, 1250, 1617, 1250, 1617, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 3107, 1250, 1250, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3757, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1626, 2751, 4190, 1618, 140, 1625, 2752, 2222, 2846, 3434, 3434, 3434, 3434, 3434, 3434, 3434, 3434, 3434, 464, 3874, 3681, 1655, 4006, 1250, 1250, 1250, 1275, 1627, 1628, 1617, 140, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 4001, 7458, 1739, 3769, 270, 3848, 4344, 1630, 1630, 1630, 1630, 1630, 1631, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 836, 898, 1632, 144, 1629, 1629, 1629, 1629, 1629, 1629, 352, 3517, 507, 1735, 3674, 3538, 3538, 3539, 1275, 3077, 2408, 177, 177, 177, 177, 177, 177, 177, 177, 177, 1070, 571, 3526, 1635, 3890, 3663, 145, 2564, 1736, 3872, 3770, 566, 3343, 3343, 3343, 3343, 3343, 3343, 3343, 3343, 3343, 1737, 3343, 3664, 146, 2309, 3753, 784, 3636, 3527, 3771, 329, 7557, 1071, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139, 3637, 139, 163, 139, 139, 139, 139, 139, 139, 139, 140, 344, 139, 375, 434, 2013, 4011, 2492, 1606, 1742, 3489, 3501, 139, 139, 139, 139, 139, 139, 139, 2382, 2394, 1743, 257, 1951, 345, 3517, 3491, 3503, 3951, 139, 3079, 3498, 3510, 4012, 2408, 4430, 1744, 2222, 566, 2493, 3819, 3519, 139, 139, 139, 176, 3526, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 610, 3628, 3499, 3511, 1641, 139, 139, 3690, 139, 163, 139, 139, 139, 139, 139, 139, 139, 3527, 365, 139, 464, 3900, 898, 140, 3817, 3084, 140, 464, 3839, 139, 139, 139, 139, 139, 139, 139, 3758, 3759, 3760, 140, 4218, 366, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 434, 140, 516, 7186, 270, 899, 4419, 3999, 139, 139, 139, 270, 3758, 3759, 3544, 3760, 3361, 3840, 257, 140, 1646, 1647, 1647, 1196, 1647, 1648, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1649, 1647, 1647, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1651, 1647, 1647, 1647, 1647, 1647, 1647, 1649, 1649, 1649, 1649, 1649, 1652, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1647, 1647, 1647, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 139, 139, 464, 139, 163, 139, 139, 139, 139, 139, 139, 139, 3546, 344, 139, 296, 1572, 434, 2222, 4656, 3847, 2955, 3546, 3893, 139, 139, 139, 139, 139, 139, 139, 2955, 3822, 3553, 1234, 257, 345, 270, 3551, 140, 1617, 3191, 898, 3553, 3556, 3556, 3556, 3556, 3556, 3557, 3558, 3558, 3558, 3829, 139, 139, 139, 176, 3815, 571, 3554, 3558, 3558, 3558, 3558, 3558, 3558, 3558, 3558, 3558, 3554, 3609, 1618, 140, 3923, 4082, 3008, 1653, 959, 959, 3830, 959, 959, 959, 959, 959, 959, 959, 959, 959, 3719, 959, 959, 434, 3608, 4081, 4374, 495, 3924, 2053, 3875, 3814, 959, 959, 959, 959, 959, 959, 959, 496, 3290, 257, 4604, 3559, 1658, 2968, 2968, 2968, 2968, 2968, 2968, 2968, 2968, 2968, 150, 3876, 3846, 4021, 3822, 4033, 139, 3290, 959, 959, 959, 959, 959, 3191, 959, 959, 959, 959, 959, 959, 959, 959, 959, 284, 959, 959, 5267, 758, 703, 464, 4022, 3870, 4034, 1742, 3852, 959, 959, 959, 959, 959, 959, 959, 1659, 3228, 140, 1743, 3559, 1658, 2968, 2968, 2968, 2968, 2968, 3560, 2965, 2965, 2965, 150, 733, 516, 1744, 285, 3901, 139, 270, 959, 959, 959, 959, 959, 4077, 959, 1661, 959, 959, 959, 959, 959, 959, 959, 4088, 959, 959, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 959, 959, 959, 959, 959, 959, 959, 2427, 2427, 2427, 140, 3559, 1282, 2965, 2965, 2965, 2965, 2965, 2965, 2965, 2965, 2965, 150, 2311, 4089, 4090, 3944, 1768, 139, 329, 959, 959, 959, 959, 959, 3938, 959, 1661, 959, 959, 959, 959, 959, 959, 959, 140, 959, 959, 3832, 3832, 3832, 3832, 3832, 3833, 3834, 3834, 3834, 959, 959, 959, 959, 959, 959, 959, 1283, 784, 2981, 3079, 455, 1282, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 3566, 2751, 4257, 7561, 3742, 3743, 2752, 2222, 898, 959, 959, 959, 1665, 140, 1617, 4246, 3572, 3708, 571, 4511, 4246, 2982, 3690, 2222, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 3744, 2754, 1742, 1379, 4049, 3745, 1234, 3084, 3720, 983, 3852, 3721, 1275, 3722, 1743, 1044, 4423, 3723, 3820, 3228, 3724, 3725, 3726, 3746, 3883, 3727, 3857, 1308, 3877, 1744, 566, 4050, 1289, 1275, 1286, 1286, 1286, 1286, 1286, 1286, 440, 440, 440, 440, 440, 441, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 257, 3576, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 3577, 1617, 3777, 4435, 4637, 3778, 4638, 3779, 4014, 443, 686, 3780, 477, 1572, 3781, 3782, 3783, 2792, 2696, 3784, 2696, 3865, 439, 439, 439, 439, 439, 439, 439, 439, 439, 1234, 274, 1618, 1768, 3791, 3939, 3796, 2697, 3732, 2697, 4068, 1768, 434, 4086, 4086, 3801, 329, 1768, 2214, 2698, 2577, 2698, 3807, 2215, 3879, 1768, 3940, 3290, 7564, 2053, 257, 4598, 442, 140, 439, 439, 439, 439, 439, 439, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 3808, 1298, 3576, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 434, 3764, 3765, 3765, 3764, 3764, 3764, 3764, 3764, 3764, 2751, 3999, 1572, 1572, 3950, 2752, 2222, 3973, 257, 4026, 3361, 898, 1275, 3852, 2222, 2753, 2382, 4005, 2804, 566, 1234, 3610, 3228, 335, 1675, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 3859, 1676, 3579, 3580, 3580, 3579, 3579, 3579, 3579, 3579, 3579, 1018, 434, 3641, 3642, 3642, 3641, 3641, 3641, 3641, 3641, 3641, 3791, 1572, 3796, 2311, 3975, 3860, 3976, 1349, 257, 329, 335, 3801, 2023, 3850, 4068, 3977, 4042, 2222, 4010, 1234, 329, 335, 3978, 4011, 1020, 2818, 1070, 443, 246, 246, 1606, 251, 449, 246, 246, 246, 140, 3806, 246, 246, 246, 3584, 3584, 3584, 3584, 3584, 3584, 3584, 3584, 3584, 4012, 3584, 697, 246, 246, 246, 246, 246, 246, 1071, 4083, 7570, 1572, 3871, 256, 784, 1303, 3646, 3646, 3646, 3646, 3646, 3646, 3646, 3646, 3646, 4020, 3646, 566, 1413, 1234, 4021, 257, 246, 246, 246, 246, 246, 2023, 251, 449, 246, 246, 246, 140, 1735, 246, 246, 246, 1304, 1416, 1070, 3984, 1070, 307, 3816, 1606, 571, 4022, 140, 699, 246, 246, 246, 246, 246, 246, 257, 2196, 1275, 1736, 140, 256, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3801, 1737, 1071, 4078, 1071, 3986, 2500, 4333, 257, 246, 246, 246, 1684, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1317, 4136, 7574, 4285, 4065, 4435, 507, 1685, 1685, 1685, 1685, 1685, 1686, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 4061, 3675, 4014, 1685, 1685, 1685, 1685, 1685, 1685, 446, 3999, 2792, 3077, 2023, 4087, 4087, 4087, 4567, 4016, 3361, 1687, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 253, 2564, 4289, 566, 140, 566, 140, 1688, 1688, 1688, 1688, 1688, 1689, 3802, 3802, 3802, 3802, 3802, 3803, 3804, 3804, 3804, 3801, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3804, 3801, 4562, 1688, 1688, 1688, 1688, 1688, 1690, 461, 461, 461, 461, 461, 462, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 461, 708, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 1275, 1617, 460, 460, 460, 460, 460, 460, 460, 460, 460, 3107, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 139, 4443, 455, 3862, 3862, 3862, 3862, 3862, 3863, 3864, 3864, 3864, 1618, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 463, 4377, 460, 460, 460, 460, 460, 460, 470, 470, 470, 470, 470, 471, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 4072, 4059, 1618, 7578, 1735, 4905, 4092, 4032, 4048, 1617, 3410, 150, 4033, 4049, 4101, 784, 1343, 270, 715, 3729, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 3730, 1736, 469, 469, 469, 469, 469, 469, 469, 469, 469, 4034, 4050, 1618, 1737, 4138, 140, 4014, 4163, 1617, 3880, 1344, 3873, 464, 2895, 335, 2792, 3844, 1078, 3729, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 265, 1377, 566, 4084, 472, 4026, 469, 469, 469, 469, 469, 469, 1618, 1042, 2804, 566, 4092, 1345, 140, 270, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 566, 1337, 1617, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 3776, 464, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 4407, 3735, 1275, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 1618, 3152, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 4092, 1702, 270, 265, 265, 140, 272, 480, 265, 265, 265, 4104, 1275, 265, 265, 265, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3822, 3158, 727, 265, 265, 265, 265, 265, 265, 3191, 4106, 446, 1275, 4420, 277, 4147, 3827, 4154, 4109, 7582, 3835, 3829, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 253, 265, 265, 265, 265, 4106, 4111, 3882, 784, 1343, 140, 4148, 140, 4155, 4114, 3788, 4110, 3830, 278, 265, 265, 3842, 272, 480, 265, 265, 265, 1379, 2394, 265, 265, 265, 140, 4171, 4079, 335, 4268, 898, 2023, 1044, 335, 1706, 1344, 729, 265, 265, 265, 265, 265, 265, 446, 784, 1079, 1707, 4080, 277, 4301, 4161, 4376, 3835, 265, 3204, 3204, 3204, 3204, 3204, 3836, 3201, 3201, 3201, 253, 1018, 2408, 265, 265, 265, 265, 1345, 4042, 335, 3849, 140, 566, 3845, 4162, 1080, 3996, 2818, 1708, 1349, 278, 1717, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1359, 7601, 566, 139, 446, 4424, 1020, 1718, 1718, 1718, 1718, 1718, 1719, 3835, 3245, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 253, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 1718, 1718, 1718, 1718, 1718, 1718, 477, 4182, 1376, 4256, 4246, 2696, 140, 140, 335, 4246, 1275, 1720, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 274, 3878, 1377, 2749, 3852, 2697, 4059, 1721, 1721, 1721, 1721, 1721, 1722, 3228, 1042, 3410, 2222, 2698, 3979, 1275, 3857, 784, 2242, 3881, 4075, 3859, 4444, 2750, 4146, 4076, 566, 3256, 4169, 4147, 1721, 1721, 1721, 1721, 1721, 1723, 139, 139, 4435, 139, 1758, 139, 139, 139, 139, 139, 139, 139, 3860, 1759, 139, 2243, 4214, 4214, 4214, 4170, 4148, 3983, 4429, 4250, 139, 139, 139, 139, 139, 139, 139, 477, 4014, 776, 4246, 140, 1390, 140, 3576, 4246, 3865, 2792, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 274, 4180, 4023, 139, 139, 139, 139, 139, 139, 1572, 139, 1758, 139, 139, 139, 139, 139, 139, 139, 1706, 1759, 139, 784, 1079, 3994, 4153, 2804, 1234, 4181, 4024, 4154, 139, 139, 139, 139, 139, 139, 139, 1760, 1706, 3793, 566, 2749, 1390, 4026, 4138, 571, 571, 571, 571, 3948, 1707, 1572, 2804, 2895, 2222, 1080, 4155, 4026, 4042, 4028, 139, 139, 139, 139, 1769, 2750, 2804, 2818, 566, 1234, 5162, 4201, 3843, 139, 4044, 477, 1275, 4242, 4035, 168, 168, 168, 168, 2528, 3865, 1708, 3241, 3241, 3241, 3241, 3241, 3866, 3238, 3238, 3238, 274, 1770, 477, 4202, 4160, 4435, 4302, 4168, 1771, 4161, 4036, 3865, 4169, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 3238, 274, 1772, 4194, 1773, 2311, 1774, 1672, 3681, 1775, 1776, 329, 2955, 4482, 1777, 4162, 4343, 1778, 4170, 1779, 566, 1780, 140, 1781, 1782, 1783, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4436, 4425, 4014, 139, 139, 139, 139, 139, 139, 139, 4026, 2792, 4059, 4138, 566, 1787, 4435, 4431, 4016, 2804, 4179, 3410, 2895, 4023, 1275, 4180, 4028, 4200, 4064, 4140, 4042, 4035, 4201, 139, 139, 139, 139, 139, 139, 2818, 527, 149, 139, 139, 139, 140, 4044, 139, 139, 139, 4024, 4051, 4181, 4188, 4188, 4188, 4188, 4188, 4036, 4202, 571, 529, 139, 139, 139, 139, 139, 139, 4042, 898, 4194, 1275, 898, 162, 140, 4059, 4194, 2818, 4052, 2955, 2023, 4059, 1730, 3077, 3410, 2955, 4196, 4334, 4544, 4051, 3410, 139, 139, 139, 139, 1070, 4066, 4064, 4326, 4435, 566, 4341, 4066, 899, 4192, 4253, 3663, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 4052, 1406, 507, 1275, 4246, 1196, 4426, 4067, 4324, 4254, 4569, 140, 1071, 4067, 4069, 4069, 4069, 4069, 4069, 4070, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4072, 4426, 3423, 3423, 3423, 3423, 3423, 3423, 3423, 3423, 3423, 150, 4435, 1275, 1791, 1795, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 4085, 140, 140, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 4072, 140, 3423, 3423, 3423, 3423, 3423, 4073, 3420, 3420, 3420, 150, 1071, 4072, 4435, 3420, 3420, 3420, 3420, 3420, 3420, 3420, 3420, 3420, 150, 1275, 7608, 3793, 4560, 4744, 2023, 4251, 1413, 4461, 1410, 1410, 1410, 1410, 1410, 1410, 776, 776, 3801, 777, 778, 776, 776, 776, 1606, 4480, 776, 776, 776, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4087, 4252, 4303, 4435, 776, 776, 776, 776, 776, 776, 4435, 511, 4246, 140, 1572, 780, 140, 4246, 4266, 4572, 4223, 1798, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4255, 1234, 776, 776, 776, 776, 139, 139, 4744, 527, 373, 139, 139, 139, 1275, 4246, 139, 139, 139, 1572, 4246, 374, 374, 374, 374, 374, 374, 374, 374, 374, 529, 139, 139, 139, 139, 139, 139, 1234, 4510, 2013, 3449, 4276, 162, 2013, 3793, 2492, 1617, 4435, 5161, 4435, 455, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 139, 139, 139, 139, 783, 783, 784, 785, 786, 783, 783, 783, 140, 2493, 783, 783, 783, 2493, 1618, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 140, 783, 783, 783, 783, 783, 783, 4275, 2013, 2023, 2492, 4328, 789, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 3742, 2013, 4251, 2492, 4387, 1606, 4744, 4124, 139, 783, 783, 783, 783, 783, 784, 785, 786, 783, 783, 783, 2493, 1275, 783, 783, 783, 1572, 4273, 3077, 3077, 4264, 4335, 4223, 139, 4252, 4410, 2493, 2818, 783, 783, 783, 783, 783, 783, 2988, 4246, 2564, 4345, 4439, 789, 4246, 140, 566, 4411, 4282, 1807, 4172, 4172, 4172, 4172, 4172, 4173, 4174, 4174, 4174, 2500, 4968, 139, 783, 783, 783, 139, 139, 4561, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 151, 313, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139, 139, 139, 139, 139, 329, 536, 536, 536, 536, 536, 537, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 139, 139, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 4286, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 464, 313, 139, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 139, 139, 139, 139, 139, 139, 329, 1275, 3077, 145, 2023, 531, 539, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4369, 270, 7650, 2096, 2564, 942, 1606, 4449, 139, 139, 139, 322, 139, 139, 3018, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 150, 150, 1809, 1810, 1811, 1812, 1812, 1812, 1812, 1812, 1812, 150, 139, 139, 139, 139, 139, 139, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 7747, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 1428, 150, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 150, 139, 139, 139, 139, 139, 139, 561, 561, 561, 561, 561, 798, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 139, 139, 139, 139, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 148, 149, 4183, 4183, 4183, 4183, 4183, 4184, 4185, 4185, 4185, 3793, 150, 150, 150, 150, 150, 150, 150, 150, 150, 812, 4479, 3954, 4427, 796, 140, 5309, 335, 148, 149, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 898, 150, 150, 150, 150, 150, 150, 150, 150, 150, 812, 4427, 140, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 3081, 4547, 4497, 566, 148, 149, 4194, 4325, 1739, 4574, 4103, 1275, 3663, 284, 4550, 2955, 1814, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1441, 4290, 4203, 1275, 4498, 4324, 3077, 1815, 1815, 1815, 1815, 1815, 1816, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4348, 4437, 2564, 4577, 285, 4445, 4438, 4204, 784, 2981, 3077, 2023, 1815, 1815, 1815, 1815, 1815, 1815, 1817, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1819, 2564, 1606, 4347, 4194, 3077, 140, 1818, 1818, 1818, 1818, 1818, 1820, 2955, 4566, 2982, 1090, 4373, 4225, 1617, 4196, 1617, 4464, 2564, 1133, 4203, 293, 3674, 2637, 2637, 2637, 4470, 3077, 1234, 1818, 1818, 1818, 1818, 1818, 1818, 1823, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1825, 2564, 1618, 4204, 1618, 4349, 329, 1824, 1824, 1824, 1824, 1824, 1826, 2427, 2427, 2427, 2427, 2427, 2427, 2427, 2427, 2427, 1617, 1617, 4595, 4641, 4386, 3674, 4382, 3290, 4642, 1275, 3077, 3729, 1824, 1824, 1824, 1824, 1824, 1824, 1831, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1108, 2564, 149, 4347, 4441, 1618, 1618, 1832, 1832, 1832, 1832, 1832, 1833, 4210, 4211, 4212, 4213, 4213, 4213, 4213, 4213, 4213, 150, 1617, 4442, 1275, 1275, 4429, 1735, 1574, 898, 4389, 140, 4418, 1832, 1832, 1832, 1832, 1832, 1832, 1835, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1837, 2054, 4446, 4450, 4549, 4429, 1618, 1836, 1836, 1836, 1836, 1836, 1838, 1986, 8049, 3008, 140, 1737, 4265, 4223, 1617, 4188, 4188, 4188, 4188, 4188, 4188, 4188, 4188, 4188, 4421, 1579, 4383, 3608, 1836, 1836, 1836, 1836, 1836, 1836, 139, 139, 140, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 139, 4478, 784, 3636, 3732, 434, 1617, 2081, 140, 4490, 139, 139, 139, 139, 139, 139, 329, 149, 3191, 3793, 6015, 140, 554, 257, 4959, 2053, 3559, 2082, 2965, 2965, 2965, 2965, 2965, 2965, 307, 1617, 3637, 150, 1618, 140, 139, 139, 139, 148, 149, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 4214, 1606, 150, 150, 150, 150, 150, 150, 150, 150, 150, 822, 1617, 140, 1618, 1275, 4531, 329, 148, 149, 784, 3636, 4380, 4400, 1617, 2102, 4638, 4381, 4570, 4602, 150, 150, 150, 150, 150, 150, 150, 150, 150, 824, 296, 4451, 3290, 4532, 1618, 329, 148, 149, 784, 3636, 3079, 3742, 1617, 3924, 3637, 4367, 1618, 1275, 150, 150, 150, 150, 150, 150, 150, 150, 150, 824, 4388, 3794, 4461, 4461, 4287, 329, 335, 148, 149, 4288, 4384, 3801, 3801, 434, 3637, 3690, 1618, 4410, 4467, 150, 150, 150, 150, 150, 150, 150, 150, 150, 824, 4461, 4385, 257, 1606, 3084, 329, 4413, 1632, 703, 3801, 434, 2023, 3493, 4484, 566, 1845, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1468, 1655, 4219, 566, 257, 4972, 1275, 1846, 1846, 1846, 1846, 1846, 1847, 571, 571, 571, 571, 571, 571, 571, 571, 571, 4524, 443, 4673, 140, 4486, 4477, 140, 3742, 140, 3228, 4440, 3361, 1846, 1846, 1846, 1846, 1846, 1846, 1848, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 150, 1617, 4545, 4571, 4512, 4546, 836, 1849, 1849, 1849, 1849, 1849, 1850, 8074, 4410, 1379, 464, 571, 571, 571, 571, 571, 571, 571, 571, 571, 733, 1044, 4414, 140, 4558, 1617, 4411, 1618, 1849, 1849, 1849, 1849, 1849, 1851, 148, 149, 4378, 4379, 4379, 4378, 4378, 4378, 4378, 4378, 4378, 270, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1856, 4580, 1618, 4744, 140, 4403, 329, 335, 148, 149, 4220, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 4447, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1856, 4671, 140, 1275, 140, 464, 329, 139, 139, 464, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 4456, 4457, 4458, 4459, 4459, 4459, 4459, 4459, 4459, 150, 139, 139, 139, 139, 139, 329, 4513, 4744, 270, 5055, 140, 332, 270, 4519, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4599, 4224, 3742, 513, 3913, 4483, 139, 139, 139, 322, 3290, 4573, 1572, 464, 1857, 139, 139, 434, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 1234, 4415, 2668, 2668, 2668, 257, 4410, 4461, 4590, 150, 139, 139, 139, 139, 139, 329, 3801, 434, 270, 3290, 4227, 332, 4520, 4228, 4411, 4229, 4603, 4646, 4416, 4230, 8182, 4476, 4231, 4232, 4233, 257, 4490, 4234, 4647, 139, 139, 139, 322, 1234, 3794, 3191, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 3801, 4487, 1858, 139, 139, 703, 139, 1078, 1129, 139, 139, 139, 139, 139, 139, 4591, 139, 139, 4496, 4530, 898, 4592, 5335, 4497, 4531, 140, 495, 139, 139, 139, 139, 139, 139, 139, 4551, 4657, 375, 3290, 496, 833, 3576, 4235, 4235, 4235, 4235, 4235, 4235, 4235, 4235, 4235, 4498, 4532, 4682, 3290, 983, 4488, 2953, 139, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1308, 139, 139, 3290, 3920, 4601, 1376, 4683, 1234, 2696, 140, 4490, 139, 139, 139, 139, 139, 139, 139, 1874, 3191, 4524, 1875, 4554, 1876, 3297, 1377, 4492, 1877, 2697, 3228, 1878, 1879, 1880, 4607, 3290, 1881, 4526, 1042, 4557, 4956, 2698, 139, 139, 139, 4236, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 4237, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 1882, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4490, 165, 139, 1735, 2792, 4628, 1768, 1379, 1234, 3191, 1768, 335, 1137, 139, 139, 139, 139, 139, 139, 1044, 4559, 4499, 4629, 8189, 842, 4630, 4589, 566, 1736, 3794, 1883, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 4469, 3801, 1737, 139, 139, 139, 843, 139, 139, 4500, 139, 1486, 139, 139, 139, 139, 139, 139, 139, 841, 165, 139, 841, 841, 841, 841, 841, 841, 841, 841, 841, 1137, 139, 139, 139, 139, 139, 139, 844, 844, 844, 844, 844, 845, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 139, 139, 139, 843, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 139, 139, 1070, 139, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 464, 2829, 2829, 2829, 1768, 758, 4770, 4524, 1768, 139, 139, 139, 139, 139, 139, 139, 3228, 4490, 140, 3297, 1071, 339, 4665, 4660, 3300, 1574, 3191, 1539, 4514, 3290, 2483, 733, 4587, 4492, 4593, 270, 473, 516, 4499, 139, 139, 139, 139, 139, 139, 4579, 148, 375, 139, 139, 139, 150, 150, 139, 139, 164, 190, 150, 1986, 1768, 140, 4594, 4661, 1768, 4223, 4500, 1742, 150, 139, 139, 139, 139, 139, 139, 3290, 3993, 1579, 177, 1743, 583, 5082, 4432, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4433, 4553, 4611, 1744, 140, 140, 4881, 139, 139, 139, 139, 139, 139, 1275, 148, 375, 139, 139, 139, 150, 150, 139, 139, 164, 190, 150, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 150, 139, 139, 139, 139, 139, 139, 1768, 2912, 2912, 2912, 1768, 583, 4744, 4236, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 1768, 4639, 140, 4585, 1768, 4608, 139, 139, 139, 139, 139, 139, 1572, 139, 836, 139, 139, 139, 139, 139, 139, 139, 1735, 139, 139, 4640, 4698, 1768, 4548, 3932, 1234, 1768, 4610, 335, 139, 139, 139, 139, 139, 139, 139, 1768, 3290, 4744, 4689, 1768, 572, 1736, 4597, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 5254, 4241, 1737, 2212, 4934, 140, 139, 139, 139, 4606, 140, 4583, 1572, 4690, 1888, 139, 139, 1706, 139, 1889, 139, 139, 139, 139, 139, 139, 139, 2213, 139, 139, 1234, 2230, 1070, 778, 4744, 4934, 4619, 1706, 2222, 139, 139, 139, 139, 139, 139, 139, 4748, 4748, 4939, 1707, 8192, 572, 4292, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 4293, 3925, 4939, 4593, 1071, 140, 3926, 3290, 139, 139, 139, 139, 139, 2023, 144, 139, 139, 139, 139, 139, 139, 139, 139, 1708, 139, 139, 4696, 2230, 4681, 4516, 4594, 1606, 4620, 4682, 2222, 139, 139, 139, 139, 139, 139, 139, 1874, 3290, 140, 1875, 2759, 1890, 4600, 4934, 1416, 1877, 1742, 4697, 1878, 1879, 1880, 1768, 4552, 1881, 4683, 1768, 3793, 4476, 1743, 146, 139, 139, 4292, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 1768, 1744, 140, 4745, 1768, 4612, 4952, 784, 1303, 1882, 139, 139, 2023, 148, 149, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 2804, 4613, 140, 1070, 2250, 1606, 4879, 335, 2211, 1150, 139, 139, 139, 139, 139, 139, 1304, 2230, 140, 4813, 2023, 857, 2232, 4605, 4654, 4485, 3794, 1891, 4469, 4469, 4469, 4469, 4469, 4469, 257, 3290, 1071, 3801, 1606, 139, 139, 139, 843, 139, 139, 3919, 148, 1497, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 856, 856, 856, 856, 856, 856, 856, 856, 856, 1150, 139, 139, 139, 139, 139, 139, 858, 858, 858, 858, 858, 859, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 139, 139, 139, 843, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 139, 139, 566, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 203, 139, 139, 139, 139, 139, 139, 1893, 1893, 1893, 1893, 1893, 1894, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 1892, 1892, 1892, 1892, 1892, 1892, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 4295, 4296, 4296, 4295, 4295, 4295, 4295, 4295, 4295, 8198, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1617, 2230, 2023, 4706, 5334, 5335, 2232, 4621, 2222, 4747, 335, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 4390, 1606, 3835, 4934, 3201, 3201, 3201, 3201, 3201, 3201, 253, 253, 253, 1618, 140, 1893, 1893, 1893, 1893, 1893, 1893, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 1897, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1164, 4688, 4939, 4882, 4524, 4524, 4689, 1898, 1898, 1898, 1898, 1898, 1899, 3228, 3228, 140, 2230, 2230, 4655, 566, 4526, 2232, 2232, 2222, 2222, 4533, 4533, 4704, 4715, 898, 1706, 375, 4624, 4690, 1898, 1898, 1898, 1898, 1898, 1898, 1901, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1903, 1706, 2955, 4534, 4534, 4705, 4716, 1902, 1902, 1902, 1902, 1902, 1904, 1707, 1018, 4521, 5682, 4729, 1275, 4515, 1078, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 8202, 4300, 1349, 1070, 1902, 1902, 1902, 1902, 1902, 1902, 375, 4722, 2023, 2696, 4730, 1376, 1617, 4751, 1708, 1020, 3410, 1906, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1606, 5123, 1078, 2697, 5687, 1377, 1071, 1907, 1907, 1907, 1907, 1907, 1908, 4391, 4750, 2698, 4392, 1042, 4393, 140, 4556, 4555, 4394, 140, 4751, 4395, 4396, 4397, 4659, 4773, 4398, 1745, 4754, 375, 1907, 1907, 1907, 1907, 1907, 1909, 1912, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1519, 4618, 4585, 4744, 4891, 4744, 566, 1913, 1913, 1913, 1913, 1913, 1914, 2668, 2668, 2668, 2668, 2668, 2668, 2668, 2668, 2668, 4751, 140, 4824, 2818, 1768, 1768, 4897, 898, 1768, 1768, 335, 4769, 1913, 1913, 1913, 1913, 1913, 1913, 1915, 1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916, 2728, 2207, 4825, 140, 5080, 4586, 4609, 1916, 1916, 1916, 1916, 1916, 1917, 2230, 1018, 4717, 4695, 4934, 2232, 4833, 2222, 4696, 335, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 1349, 4337, 1916, 1916, 1916, 1916, 1916, 1918, 148, 375, 4673, 4522, 3077, 1572, 4834, 8177, 4697, 1020, 4939, 3361, 150, 150, 150, 150, 150, 150, 150, 150, 150, 879, 2564, 1234, 140, 758, 566, 4917, 335, 148, 375, 4432, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 150, 150, 150, 150, 150, 150, 150, 150, 150, 879, 4623, 4773, 1275, 2230, 784, 1343, 516, 375, 2232, 1768, 2222, 4960, 4777, 1768, 566, 1923, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1531, 4703, 139, 2955, 4842, 2212, 4704, 1924, 1924, 1924, 1924, 1924, 1925, 4584, 1344, 4622, 4649, 760, 566, 140, 2230, 2230, 4755, 4517, 4578, 2232, 2232, 2222, 2222, 2213, 4759, 4843, 265, 4705, 1924, 1924, 1924, 1924, 1924, 1924, 1926, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1345, 4714, 2923, 2923, 2923, 5016, 4715, 1927, 1927, 1927, 1927, 1927, 1928, 1617, 2230, 784, 1079, 4588, 4626, 2232, 4855, 2222, 140, 3729, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4716, 1927, 1927, 1927, 1927, 1927, 1929, 148, 375, 1768, 5682, 5097, 1618, 1768, 4856, 4934, 1080, 784, 1343, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1934, 2221, 140, 4749, 4749, 4749, 139, 335, 139, 139, 4668, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 2726, 139, 139, 1344, 140, 1572, 5687, 4939, 139, 4778, 5058, 4773, 1137, 139, 139, 139, 139, 139, 139, 4776, 4782, 265, 4941, 1234, 884, 140, 3865, 4518, 3238, 3238, 3238, 3238, 3238, 3238, 274, 274, 274, 4585, 1345, 4778, 4650, 4918, 139, 139, 139, 139, 139, 4781, 139, 163, 139, 139, 139, 139, 139, 139, 139, 1936, 344, 139, 4783, 1768, 1672, 5874, 4950, 1768, 5057, 5089, 4786, 139, 139, 139, 139, 139, 139, 139, 1275, 2745, 2230, 5125, 4934, 345, 3923, 2232, 4651, 4653, 4869, 2230, 2214, 4793, 4596, 2230, 2232, 2215, 2222, 3290, 2232, 4797, 2222, 139, 139, 139, 176, 148, 149, 4728, 3924, 4819, 2750, 4939, 4729, 4889, 4824, 4870, 1937, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1943, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1206, 4828, 375, 4730, 4890, 4825, 4833, 1944, 1944, 1944, 1944, 1944, 1945, 3975, 4673, 3976, 140, 4652, 1730, 5933, 2230, 2230, 2955, 3361, 4617, 2232, 2232, 2222, 2222, 335, 4675, 3978, 2023, 4834, 1944, 1944, 1944, 1944, 1944, 1944, 1947, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1949, 4326, 4902, 4895, 1275, 140, 4744, 1948, 1948, 1948, 1948, 1948, 1950, 4744, 150, 784, 2242, 4658, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 5123, 4662, 784, 1079, 5090, 1617, 140, 1948, 1948, 1948, 1948, 1948, 1948, 1957, 1958, 1959, 1960, 1960, 1960, 1960, 1960, 1960, 2243, 4837, 1133, 140, 4722, 1275, 4842, 905, 905, 905, 905, 905, 909, 3410, 1080, 1618, 1275, 4670, 776, 4707, 4707, 4707, 4707, 4707, 4707, 4707, 4707, 4707, 566, 4432, 5127, 5101, 139, 4843, 905, 905, 905, 905, 905, 905, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 4850, 4864, 1275, 5062, 5123, 4855, 4869, 1962, 1962, 1962, 1962, 1962, 1963, 4707, 4707, 4707, 4707, 4707, 4708, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 1275, 4856, 4870, 1962, 1962, 1962, 1962, 1962, 1962, 139, 139, 1617, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 139, 139, 139, 139, 139, 139, 139, 3077, 5123, 375, 1618, 1275, 589, 4718, 4718, 4718, 4718, 4718, 4719, 4720, 4720, 4720, 4888, 1617, 139, 5028, 4798, 4889, 4722, 4891, 146, 139, 139, 139, 4801, 1572, 335, 3410, 5062, 1966, 175, 175, 175, 175, 175, 175, 175, 175, 175, 4731, 5123, 1275, 1275, 1234, 4890, 1618, 175, 175, 175, 175, 175, 204, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 898, 4911, 784, 2981, 5123, 4732, 4912, 8206, 5094, 5123, 3954, 2053, 175, 175, 175, 175, 175, 175, 1968, 1225, 1225, 5301, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1973, 1225, 1225, 899, 1970, 2982, 4883, 1572, 4236, 1572, 4722, 4908, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3410, 4722, 1196, 1572, 1234, 1975, 1234, 4724, 1234, 898, 3410, 1572, 4906, 1275, 4913, 5260, 4914, 4724, 507, 140, 1768, 1234, 4731, 1234, 1225, 1225, 1225, 1225, 1225, 1234, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 4934, 1225, 1225, 1572, 3663, 5002, 4992, 5011, 4940, 5123, 4732, 4992, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5236, 5242, 1234, 4324, 1985, 1978, 2829, 2829, 2829, 2829, 2829, 2829, 2829, 2829, 2829, 566, 1275, 4901, 4901, 4901, 4901, 4901, 4901, 1234, 1225, 1225, 1225, 1225, 1617, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 1225, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1979, 5126, 1572, 1618, 3077, 1978, 4738, 4739, 4740, 4741, 4741, 4741, 4741, 4741, 4741, 150, 140, 2013, 1275, 4961, 1234, 139, 5032, 1234, 1225, 1225, 4919, 1980, 1981, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4996, 5071, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 4992, 140, 2493, 3913, 5128, 4992, 5508, 1983, 1983, 1983, 1983, 1983, 1984, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1234, 1617, 1985, 5137, 1982, 1982, 1982, 1982, 1982, 1982, 1225, 1225, 3801, 1226, 1580, 1225, 1225, 1225, 5263, 4934, 1225, 1225, 1225, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 4749, 5120, 1618, 5075, 1225, 1225, 1225, 1225, 1225, 1225, 1987, 5003, 4999, 140, 4072, 1581, 3420, 3420, 3420, 3420, 3420, 3420, 4338, 1275, 4992, 150, 4939, 4992, 4939, 4992, 5025, 139, 5000, 1234, 1225, 1225, 1225, 1225, 1225, 4934, 1225, 1225, 1575, 1225, 1225, 1225, 1225, 1225, 1225, 1576, 1225, 1225, 2923, 2923, 2923, 2923, 2923, 2923, 2923, 2923, 2923, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3690, 1739, 5941, 1572, 1379, 1988, 4880, 4880, 4880, 4880, 4880, 4880, 4880, 4880, 4880, 4939, 1044, 5329, 2564, 5235, 140, 1234, 4939, 1234, 1225, 1225, 1225, 1225, 1225, 4920, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1585, 1225, 1225, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1990, 1990, 1990, 1990, 1990, 1991, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1234, 1225, 1225, 1225, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1225, 1225, 1617, 1225, 1582, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8210, 1583, 1225, 4892, 4892, 4892, 4892, 4892, 4892, 4892, 4892, 4892, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1992, 2023, 3954, 1618, 5315, 1584, 5414, 4969, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 150, 1617, 1606, 5178, 1572, 4292, 1234, 1225, 1225, 1235, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1234, 1993, 1225, 5062, 1617, 2023, 1617, 4933, 5179, 5310, 4103, 1618, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3954, 5001, 1572, 566, 1606, 1994, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 2483, 4992, 1618, 5066, 1618, 1234, 4992, 4793, 1234, 1225, 1225, 1225, 1225, 1225, 4954, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 5062, 1572, 2023, 2583, 5204, 4103, 140, 4223, 4969, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 5062, 3793, 140, 1234, 3643, 1998, 4892, 4892, 4892, 4892, 4892, 4893, 4894, 4894, 4894, 5205, 3954, 4636, 5312, 1618, 1859, 5163, 5096, 1234, 1225, 1225, 1999, 1225, 1225, 3018, 1226, 2000, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 2001, 2001, 2001, 2001, 2001, 2002, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1234, 1225, 1225, 1999, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1225, 1225, 5012, 1226, 1227, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1229, 1230, 1228, 4894, 4894, 4894, 4894, 4894, 4894, 4894, 4894, 4894, 1232, 1225, 1225, 1225, 1225, 1225, 1225, 3408, 5146, 140, 2023, 3290, 1233, 329, 4895, 2005, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 150, 8214, 1133, 1606, 5151, 1234, 1225, 1225, 1235, 1225, 1225, 4967, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3077, 1617, 3928, 1617, 1617, 5244, 5019, 5146, 5124, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1572, 507, 2564, 2023, 4895, 2007, 4213, 4213, 4213, 4213, 4213, 4896, 4210, 4210, 4210, 150, 1275, 1618, 1234, 1618, 1618, 1606, 4915, 1234, 1225, 1225, 1225, 1225, 1225, 4988, 1225, 1582, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5017, 1591, 1225, 4916, 5062, 5072, 1617, 139, 5098, 5018, 5164, 5141, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2008, 5144, 5062, 5682, 4895, 1592, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 4210, 150, 4997, 3793, 4367, 1618, 566, 140, 3290, 1234, 1225, 1225, 2012, 2012, 2013, 2014, 139, 2015, 2012, 2012, 2012, 2012, 2012, 2012, 2016, 2012, 2012, 5070, 5271, 5687, 784, 5021, 3077, 4998, 3077, 3077, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 4771, 4992, 140, 1617, 5051, 2018, 4992, 2564, 1416, 2564, 2564, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 4772, 1133, 5022, 5035, 2019, 2012, 2012, 2012, 2020, 5042, 3018, 1617, 5286, 140, 5098, 5689, 1618, 1768, 140, 5063, 2564, 2021, 898, 2022, 1597, 1597, 1617, 2025, 1597, 2026, 1597, 1597, 1597, 1597, 1597, 1597, 2027, 1597, 1597, 784, 3636, 3077, 5073, 1618, 5033, 5034, 140, 4404, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5079, 3008, 5698, 1618, 2564, 2029, 5642, 4953, 4909, 4910, 4910, 4909, 4909, 4909, 4909, 4909, 4909, 4997, 3637, 3608, 140, 4971, 3077, 2030, 1597, 1597, 1597, 1597, 1597, 1572, 1598, 2031, 1597, 1597, 1597, 455, 1606, 1597, 1597, 1597, 2564, 5137, 5062, 3505, 5010, 898, 1617, 1234, 4998, 5062, 3801, 5153, 1597, 1597, 1597, 1597, 1597, 1597, 566, 4992, 5156, 5187, 5786, 2032, 4992, 4476, 4921, 4921, 4921, 4921, 4921, 4921, 4921, 4921, 4921, 1617, 1617, 140, 1618, 5048, 140, 1606, 1597, 1597, 1597, 1597, 1597, 1572, 1597, 2033, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5049, 2034, 1597, 5068, 1275, 2054, 5238, 5214, 1234, 5299, 1618, 1618, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5121, 5122, 5180, 5091, 5069, 2035, 5092, 1672, 140, 454, 2577, 5093, 3954, 5137, 5076, 8230, 5166, 5067, 5123, 2053, 5123, 1275, 3801, 1606, 1597, 1597, 1607, 1597, 1597, 5139, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 1600, 1600, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 2038, 2038, 2038, 2038, 2038, 2039, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 1606, 1597, 1597, 1597, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 1597, 1597, 1617, 1598, 1599, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 1601, 1602, 1600, 3742, 1617, 434, 5165, 5186, 3794, 8230, 5137, 1730, 1604, 1597, 1597, 1597, 1597, 1597, 1597, 3801, 5212, 1275, 1618, 257, 1605, 140, 4236, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 1618, 4410, 140, 455, 5084, 5170, 1606, 1597, 1597, 1607, 1597, 1597, 1572, 1598, 2040, 1597, 1597, 1597, 5141, 4411, 1597, 1597, 1597, 5064, 5123, 464, 5077, 5144, 5065, 5780, 1234, 5123, 5171, 1739, 5149, 1597, 1597, 1597, 1597, 1597, 1597, 5206, 5222, 5653, 434, 2500, 2032, 140, 485, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 5087, 4970, 270, 5195, 257, 140, 1606, 1597, 1597, 1597, 1597, 1597, 2023, 1598, 1599, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 1601, 1602, 1600, 5652, 5177, 5087, 784, 1303, 1606, 5178, 5247, 1742, 1604, 1597, 1597, 1597, 1597, 1597, 1597, 2041, 5224, 140, 511, 1743, 1605, 5088, 4292, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 5179, 5213, 1744, 1133, 1304, 5169, 1606, 1597, 1597, 1607, 1597, 1597, 2023, 1597, 2033, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 257, 2042, 1597, 140, 5705, 5203, 5589, 5215, 1606, 1617, 5204, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3378, 3378, 3378, 5706, 140, 2043, 4982, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 4983, 5099, 5167, 5205, 5237, 284, 5251, 1618, 1606, 1597, 1597, 139, 139, 2023, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 8265, 3742, 3742, 5099, 8265, 1606, 5248, 4574, 434, 139, 139, 139, 139, 139, 139, 139, 5062, 285, 513, 4563, 4922, 589, 1735, 4923, 140, 4924, 257, 5240, 3290, 4925, 4415, 5216, 4926, 4927, 4928, 4410, 4410, 4929, 434, 146, 139, 139, 139, 1234, 2025, 2025, 5196, 1736, 1617, 5083, 3067, 3290, 3290, 4411, 4411, 5351, 257, 5269, 464, 5246, 1737, 2046, 139, 139, 5168, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 2528, 2528, 5275, 1618, 5273, 5352, 4969, 4969, 446, 139, 139, 139, 139, 139, 139, 139, 270, 5184, 2030, 2030, 4973, 589, 4574, 4974, 5241, 4975, 5245, 3290, 253, 4976, 5250, 5298, 4977, 4978, 4979, 5325, 5062, 4980, 5062, 146, 139, 139, 139, 1606, 4987, 4987, 4987, 4987, 4987, 4987, 4987, 4987, 4987, 8265, 4987, 2222, 293, 140, 296, 5272, 898, 140, 2052, 1250, 1250, 2023, 1250, 1617, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 477, 1250, 1250, 140, 5303, 1768, 758, 5261, 1606, 5210, 1768, 5223, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 983, 274, 5340, 5172, 495, 2057, 4982, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 496, 3954, 1308, 516, 3290, 5795, 5418, 1250, 1250, 1250, 1250, 1250, 2023, 1250, 1617, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 5289, 1250, 1250, 5231, 5282, 3925, 140, 5268, 1606, 5188, 3926, 1768, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 2058, 1572, 5252, 8230, 2697, 2057, 5190, 5026, 5027, 5027, 5026, 5026, 5026, 5026, 5026, 5026, 2698, 5360, 3290, 1234, 5682, 2227, 464, 1250, 1250, 1250, 1250, 1250, 3077, 1250, 2060, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 464, 1250, 1250, 4633, 5597, 2696, 5361, 2222, 2564, 3922, 3954, 5300, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 270, 5687, 5230, 5687, 3521, 1625, 2697, 5031, 5031, 5031, 5031, 5031, 5031, 5031, 5031, 5031, 270, 5031, 2698, 566, 2227, 5304, 5319, 1250, 1250, 1250, 1250, 1250, 3077, 1250, 2060, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 5153, 1250, 1250, 5218, 5419, 5420, 2222, 2738, 2564, 5156, 5305, 5291, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1626, 1617, 5158, 1070, 3954, 1625, 140, 5369, 2227, 5219, 5220, 5059, 5060, 5060, 5060, 5060, 5060, 5060, 5060, 5060, 5060, 140, 5221, 1250, 1250, 1250, 2064, 1617, 898, 5159, 5306, 464, 2222, 1618, 5370, 3954, 1071, 1617, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 5059, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5189, 5111, 1618, 6340, 5112, 1018, 5113, 5812, 5197, 270, 5114, 3410, 1618, 5115, 5116, 5117, 3742, 329, 5118, 140, 1617, 5327, 1632, 1349, 1629, 1629, 1629, 1629, 1629, 1629, 352, 5074, 5074, 5074, 5074, 5074, 5074, 5074, 5074, 5074, 1020, 177, 177, 177, 177, 177, 177, 177, 177, 177, 4410, 758, 1618, 533, 533, 533, 533, 533, 533, 533, 533, 533, 5262, 533, 1379, 5284, 5899, 8230, 4411, 455, 4646, 5253, 1768, 1768, 140, 3954, 1044, 1768, 1768, 3954, 5085, 5302, 5314, 516, 177, 177, 177, 177, 177, 177, 177, 177, 2069, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139, 5234, 139, 163, 139, 139, 139, 139, 139, 139, 139, 5682, 344, 139, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 139, 139, 139, 139, 139, 139, 139, 1376, 5782, 5382, 3290, 5396, 345, 4432, 5119, 5119, 5119, 5119, 5119, 5119, 5119, 5119, 5119, 5700, 4648, 5955, 5408, 1377, 293, 3297, 139, 139, 139, 176, 3300, 1275, 5383, 3954, 5397, 1042, 2075, 139, 139, 5308, 139, 163, 139, 139, 139, 139, 139, 139, 139, 5409, 365, 139, 5133, 5133, 5133, 5133, 5133, 5134, 5135, 5135, 5135, 139, 139, 139, 139, 139, 139, 139, 1572, 5592, 5232, 177, 8230, 366, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5346, 5355, 5364, 1234, 140, 5351, 5360, 5369, 139, 139, 139, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5182, 5183, 5183, 5183, 3389, 3389, 3389, 5352, 5361, 5370, 2080, 1647, 1647, 5788, 1647, 2085, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1649, 1647, 1647, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 2086, 1647, 1647, 1647, 1647, 1647, 1647, 1649, 1649, 1649, 1649, 1649, 1652, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1647, 1647, 1647, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 139, 139, 3290, 139, 163, 139, 139, 139, 139, 139, 139, 139, 3290, 344, 139, 139, 8230, 2227, 3546, 3546, 3546, 5270, 5153, 5323, 139, 139, 139, 139, 139, 139, 139, 5156, 3927, 5317, 5424, 3925, 345, 5455, 5157, 1706, 3926, 2222, 5274, 5158, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5870, 139, 139, 139, 176, 140, 1706, 5207, 5207, 5207, 5207, 5207, 5207, 5207, 5207, 5207, 140, 5159, 1707, 1572, 2088, 959, 959, 1376, 959, 959, 2092, 959, 959, 959, 959, 959, 959, 4641, 959, 959, 2749, 1234, 4642, 3954, 8282, 4771, 5192, 1377, 5292, 959, 959, 959, 959, 959, 959, 959, 446, 1708, 5597, 1042, 5410, 1658, 5233, 6289, 2750, 5184, 329, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 253, 140, 140, 959, 959, 959, 959, 959, 5564, 959, 959, 2092, 959, 959, 959, 959, 959, 959, 6328, 959, 959, 5207, 5207, 5207, 5207, 5207, 5208, 5209, 5209, 5209, 959, 959, 959, 959, 959, 959, 959, 1659, 446, 3410, 140, 1572, 1658, 5377, 5796, 329, 335, 5184, 5382, 4509, 4509, 4509, 4509, 4509, 5185, 4506, 4506, 4506, 253, 1234, 959, 959, 959, 959, 959, 5597, 959, 1661, 959, 959, 959, 959, 959, 959, 959, 5383, 959, 959, 5209, 5209, 5209, 5209, 5209, 5209, 5209, 5209, 5209, 959, 959, 959, 959, 959, 959, 959, 5294, 446, 5530, 5297, 5598, 1282, 1275, 784, 1343, 335, 5184, 2097, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 4506, 253, 140, 959, 959, 959, 959, 959, 1572, 959, 1661, 959, 959, 959, 959, 959, 959, 959, 1706, 959, 959, 1344, 5193, 5707, 2227, 6512, 1234, 3290, 2758, 5425, 959, 959, 959, 959, 959, 959, 959, 898, 1706, 265, 784, 1343, 1282, 3923, 5285, 2749, 1275, 3325, 2222, 1768, 1707, 3410, 2222, 5293, 1768, 140, 1345, 329, 5280, 5191, 959, 959, 959, 3961, 5426, 5226, 566, 3924, 3964, 2750, 5823, 1018, 5429, 3954, 1344, 2098, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1708, 1676, 5410, 2208, 1349, 140, 5759, 265, 329, 335, 1768, 5645, 434, 3961, 5227, 1768, 5198, 5281, 5194, 2227, 477, 1020, 5318, 3954, 1345, 610, 5228, 5296, 5682, 5210, 257, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 274, 5229, 2227, 2222, 1572, 1572, 2110, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 5290, 2112, 477, 150, 1078, 5687, 1234, 1234, 571, 140, 2222, 5210, 434, 4543, 4543, 4543, 4543, 4543, 5211, 4540, 4540, 4540, 274, 477, 150, 1078, 5597, 5597, 2023, 3077, 257, 5426, 5210, 5426, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 4540, 274, 5430, 5760, 1606, 5715, 2527, 443, 246, 246, 5458, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 2118, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 1317, 246, 246, 246, 246, 246, 246, 2119, 2119, 2119, 2119, 2119, 2120, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 2119, 2119, 2119, 2119, 2119, 2119, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 2122, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2124, 5682, 5313, 1572, 1078, 2212, 5431, 2123, 2123, 2123, 2123, 2123, 2125, 5283, 3290, 3954, 5431, 5438, 1768, 2227, 4639, 1234, 2744, 1768, 5437, 5603, 4640, 5320, 5307, 2213, 5276, 5463, 5277, 3954, 2123, 2123, 2123, 2123, 2123, 2123, 446, 5278, 5439, 2222, 4640, 5604, 5304, 5687, 5279, 140, 5442, 2132, 2133, 2134, 2135, 2135, 2135, 2135, 2135, 2135, 253, 5391, 5316, 2227, 2227, 5294, 5396, 989, 989, 989, 989, 989, 993, 5305, 3954, 5321, 5294, 5322, 3493, 5791, 6518, 5458, 784, 2242, 4635, 335, 3954, 2222, 2222, 5461, 1070, 5311, 1275, 5397, 989, 989, 989, 989, 989, 989, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 2227, 1703, 5682, 3327, 2227, 5458, 1808, 2243, 5295, 5463, 5324, 2227, 464, 5326, 1071, 5468, 5462, 2748, 2751, 5463, 5467, 5468, 5328, 2752, 2222, 776, 5472, 5466, 2222, 5471, 150, 5687, 3077, 5426, 5483, 2222, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 5488, 2141, 270, 265, 265, 5727, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 2153, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 1359, 265, 265, 265, 265, 265, 265, 2154, 2154, 2154, 2154, 2154, 2155, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 2154, 2154, 2154, 2154, 2154, 2154, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 2157, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2159, 5407, 5523, 5682, 5489, 140, 5408, 2158, 2158, 2158, 2158, 2158, 2160, 784, 1079, 5493, 1580, 5573, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 1572, 4662, 5524, 4771, 5687, 5563, 5409, 2158, 2158, 2158, 2158, 2158, 2158, 477, 5456, 5456, 5457, 5574, 1234, 3690, 1080, 1572, 6362, 5597, 2167, 2168, 2169, 2170, 2170, 2170, 2170, 2170, 2170, 274, 5620, 140, 5620, 5728, 139, 1234, 1025, 1025, 1025, 1025, 1025, 1029, 5330, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5473, 5332, 5483, 140, 6388, 5612, 5336, 5622, 5476, 1416, 5486, 1025, 1025, 1025, 1025, 1025, 1025, 139, 139, 5711, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5489, 139, 139, 5494, 5511, 5568, 784, 1079, 5492, 5523, 5573, 5497, 139, 139, 139, 139, 139, 139, 139, 150, 3077, 3077, 140, 5754, 1390, 3389, 3389, 3389, 3389, 3389, 3389, 3389, 3389, 3389, 5536, 139, 5524, 5574, 5752, 2564, 1080, 335, 139, 139, 139, 139, 139, 139, 5339, 139, 1758, 139, 139, 139, 139, 139, 139, 139, 139, 1759, 139, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 139, 139, 139, 139, 139, 139, 139, 3505, 5826, 5826, 5871, 3954, 1390, 6010, 335, 2197, 5411, 5411, 5411, 5411, 5411, 5412, 5413, 5413, 5413, 150, 5958, 1572, 1275, 296, 139, 139, 139, 139, 1769, 5413, 5413, 5413, 5413, 5413, 5413, 5413, 5413, 5413, 5414, 1234, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 150, 5537, 5537, 5537, 5537, 5537, 5537, 5537, 5537, 5537, 1617, 1770, 5647, 1275, 139, 5597, 1572, 5414, 1771, 4741, 4741, 4741, 4741, 4741, 5415, 4738, 4738, 4738, 150, 5545, 2222, 3521, 5554, 1772, 1234, 1773, 335, 1774, 335, 335, 1775, 1776, 1618, 5612, 5597, 1777, 5648, 140, 1778, 5822, 1779, 5619, 1780, 1572, 1781, 1782, 1783, 1769, 5414, 140, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 4738, 150, 5416, 1234, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 150, 5612, 6399, 5778, 5773, 5597, 5622, 5597, 1770, 1572, 2204, 1572, 5621, 5787, 5625, 1771, 8134, 139, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 1234, 1572, 1234, 1772, 140, 1773, 5605, 1774, 5601, 5682, 1775, 1776, 140, 898, 5872, 1777, 5682, 5688, 1778, 2988, 1779, 1617, 1780, 5610, 1781, 1782, 1783, 1769, 5422, 5422, 5422, 5422, 5422, 5422, 5422, 5422, 5422, 5423, 5423, 5423, 5423, 5423, 5423, 5423, 5423, 5423, 1572, 899, 7026, 140, 140, 140, 140, 1618, 2205, 5565, 1970, 1416, 140, 1770, 5687, 1572, 1572, 5888, 1234, 1196, 1771, 5687, 5487, 5487, 5487, 5487, 5487, 5487, 5487, 5487, 5487, 1572, 3018, 1234, 1234, 1772, 5606, 1773, 5483, 1774, 5607, 5602, 1775, 1776, 5889, 571, 5773, 1777, 5966, 1234, 1778, 8324, 1779, 5640, 1780, 5793, 1781, 1782, 1783, 1769, 784, 2981, 5593, 4103, 5537, 5537, 5537, 5537, 5537, 5538, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5546, 5546, 5546, 5546, 5546, 5546, 5546, 5546, 5546, 1770, 1572, 2023, 2982, 5953, 2023, 1617, 1771, 5546, 5546, 5546, 5546, 5546, 5547, 5548, 5548, 5548, 2023, 2023, 1234, 1606, 1234, 1772, 1606, 1773, 1275, 1774, 5608, 5661, 1775, 1776, 5668, 293, 5831, 1777, 1606, 1606, 1778, 1618, 1779, 5665, 1780, 5681, 1781, 1782, 1783, 2206, 1769, 5548, 5548, 5548, 5548, 5548, 5548, 5548, 5548, 5548, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5556, 5557, 5557, 5557, 5773, 2512, 140, 2023, 1770, 1617, 2023, 566, 5922, 2023, 1617, 1771, 5557, 5557, 5557, 5557, 5557, 5557, 5557, 5557, 5557, 1606, 2023, 140, 1606, 5790, 1772, 1606, 1773, 2207, 1774, 5654, 5662, 1775, 1776, 5923, 5702, 1618, 1777, 5666, 1606, 1778, 1618, 1779, 1617, 1780, 5873, 1781, 1782, 1783, 1769, 5559, 5559, 5559, 5559, 5559, 5559, 5561, 5561, 5561, 5561, 5561, 5561, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 140, 6007, 507, 1617, 1618, 1617, 140, 5776, 8330, 2023, 1770, 5773, 2222, 5059, 4018, 5770, 140, 1771, 3546, 3546, 3546, 3546, 3546, 3546, 3546, 3546, 3546, 1606, 5773, 566, 2023, 5956, 1772, 5667, 1773, 1618, 1774, 1618, 2208, 1775, 1776, 2994, 5801, 5611, 1777, 1275, 149, 1778, 1606, 1779, 1572, 1780, 5663, 1781, 1782, 1783, 1769, 5580, 5581, 5582, 5583, 5583, 5583, 5583, 5583, 5583, 150, 149, 1234, 5829, 5830, 5817, 5664, 1572, 1572, 1572, 4895, 1617, 4210, 4210, 4210, 4210, 4210, 4210, 140, 5774, 4982, 150, 1770, 5597, 1275, 1234, 1234, 1234, 531, 1771, 5597, 3077, 5584, 5584, 5584, 5584, 5584, 5584, 5584, 5584, 5584, 140, 2023, 1618, 1772, 5599, 1773, 6470, 1774, 2564, 5600, 1775, 1776, 140, 784, 5021, 1777, 5789, 5935, 1778, 1606, 1779, 140, 1780, 5729, 1781, 1782, 2209, 1769, 5588, 5588, 5588, 5588, 5588, 5588, 5588, 5588, 5588, 571, 571, 571, 571, 571, 571, 571, 571, 571, 5951, 5022, 140, 140, 571, 571, 571, 571, 571, 571, 571, 571, 571, 1770, 5712, 140, 1275, 3067, 2023, 2564, 1771, 1617, 5594, 5595, 5595, 5595, 5595, 5595, 5595, 5595, 5595, 5595, 5771, 5772, 8354, 1772, 1606, 1773, 5821, 1774, 5959, 140, 1775, 1776, 1572, 2023, 3077, 1777, 5590, 2210, 1778, 4969, 1779, 1618, 1780, 5659, 1781, 1782, 1783, 1769, 5660, 5716, 1234, 1606, 2564, 5591, 5594, 5596, 5596, 5596, 5596, 5596, 5596, 5596, 5596, 5596, 5792, 1617, 1275, 5609, 5609, 5609, 5609, 5609, 5609, 5609, 5609, 5609, 1572, 140, 6631, 1770, 1617, 3077, 571, 898, 8427, 5639, 1771, 2013, 1572, 2492, 1044, 5794, 5824, 5828, 1234, 1133, 313, 1618, 5804, 2564, 5775, 1772, 898, 1773, 5709, 1774, 1234, 5808, 1775, 1776, 784, 3636, 1618, 1777, 2211, 1275, 1778, 3008, 1779, 5710, 1780, 2493, 1781, 1782, 1783, 1769, 898, 5618, 5618, 5618, 5618, 5618, 5618, 5618, 5618, 3608, 3663, 3161, 3161, 3161, 5773, 2508, 5701, 8427, 3637, 6013, 1655, 1572, 1617, 6014, 5656, 1275, 1617, 6012, 4324, 3954, 1275, 1770, 5799, 3954, 5048, 1617, 1606, 140, 1771, 1234, 3290, 5657, 5658, 5658, 5657, 5657, 5657, 5657, 5657, 5657, 3913, 5818, 5750, 2212, 1618, 1773, 3954, 1774, 1618, 5799, 1775, 1776, 2023, 784, 5021, 1777, 1617, 1618, 1778, 1275, 1779, 5832, 1780, 8470, 1781, 1782, 1783, 2213, 1769, 5777, 1606, 5669, 5669, 5669, 5669, 5669, 5669, 5669, 5669, 5669, 5773, 5670, 3911, 5773, 5671, 5975, 5672, 5022, 1618, 1896, 5673, 1275, 2023, 5674, 5675, 5676, 5815, 7869, 5677, 140, 1770, 5816, 784, 5021, 1606, 5713, 1275, 1771, 5833, 139, 1606, 4982, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 5773, 1772, 5773, 1773, 5950, 1774, 3954, 5819, 2214, 1776, 5714, 5834, 2023, 2215, 7895, 5022, 1778, 4644, 1779, 1275, 1780, 140, 1781, 1782, 1783, 1769, 898, 5820, 3742, 3954, 1606, 1617, 6019, 2564, 5718, 5719, 5719, 5719, 5719, 5719, 5719, 5719, 5719, 5719, 5718, 5720, 5720, 5720, 5720, 5720, 5720, 5720, 5720, 5720, 6038, 5751, 3077, 1770, 5761, 3347, 5048, 5762, 4410, 5763, 1771, 5957, 3077, 5764, 5784, 1078, 5765, 5766, 5767, 5842, 2564, 5768, 5845, 6044, 5750, 1772, 4411, 1773, 5144, 1774, 2564, 5849, 1775, 1776, 3742, 139, 5851, 1777, 1617, 2216, 1778, 3742, 1779, 507, 1780, 5854, 1781, 1782, 1783, 1769, 5721, 5722, 5722, 5721, 5721, 5721, 5721, 5721, 5721, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 4410, 5726, 1618, 3077, 140, 5842, 313, 4410, 5804, 5783, 5842, 5797, 3077, 1770, 5144, 5863, 5798, 5808, 4411, 5144, 1771, 2564, 5860, 140, 5813, 4411, 5848, 1275, 5218, 531, 2564, 5156, 455, 5785, 464, 1772, 5867, 1773, 5797, 1774, 5860, 5773, 1775, 1776, 5798, 6126, 5851, 1777, 5773, 5156, 1778, 6512, 1779, 5219, 1780, 5854, 1781, 1782, 1783, 2217, 1769, 1617, 5855, 5863, 531, 5883, 5221, 5900, 2218, 5902, 5888, 5059, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 5807, 5807, 5807, 5807, 5807, 5807, 5807, 5807, 5807, 5808, 140, 1770, 1618, 5827, 5827, 5827, 5889, 1379, 1771, 5809, 5809, 5809, 5809, 5809, 5810, 5811, 5811, 5811, 5808, 1044, 5860, 6022, 3954, 1772, 1275, 1773, 5960, 1774, 6018, 5156, 1775, 1776, 3822, 3822, 3822, 1777, 5866, 3954, 1778, 7132, 1779, 6049, 1780, 5948, 1781, 1782, 1783, 1769, 5811, 5811, 5811, 5811, 5811, 5811, 5811, 5811, 5811, 5808, 511, 5825, 5825, 5825, 5825, 5825, 5825, 5825, 5825, 5825, 5827, 5827, 5827, 5827, 5827, 5827, 5827, 5827, 5827, 464, 5851, 1770, 1275, 5875, 434, 6513, 434, 7137, 1771, 5854, 139, 1275, 5837, 5838, 5839, 5840, 5840, 5840, 5840, 5840, 5840, 5856, 257, 1772, 257, 1773, 5911, 2219, 5860, 1275, 1775, 1776, 784, 1303, 270, 1777, 4452, 5156, 2220, 5876, 1779, 6064, 1780, 434, 1781, 1782, 1783, 1769, 5857, 5868, 5879, 139, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 257, 5851, 898, 5860, 898, 1304, 140, 6065, 5877, 5878, 5854, 5917, 5156, 5961, 293, 5869, 5922, 5855, 1770, 5866, 6635, 434, 5856, 257, 5868, 1771, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 5904, 1018, 5912, 983, 257, 2221, 5952, 1773, 5923, 1774, 513, 5880, 1775, 1776, 5857, 5901, 5869, 1777, 464, 1349, 1778, 1308, 1779, 6127, 1780, 5965, 1781, 1782, 1783, 2223, 1706, 6130, 5905, 7552, 464, 140, 5914, 4030, 5184, 2224, 4506, 4506, 4506, 4506, 4506, 4506, 253, 253, 253, 5942, 1706, 6071, 566, 270, 3852, 3852, 3852, 516, 335, 4641, 1706, 2225, 1707, 5907, 4642, 3954, 140, 5906, 2226, 270, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 4046, 1706, 495, 6106, 2227, 6168, 2228, 898, 2229, 784, 1343, 2230, 2231, 1707, 496, 566, 2232, 5938, 1708, 2233, 375, 2234, 5218, 2235, 140, 2236, 2237, 2238, 139, 139, 6107, 139, 2239, 139, 139, 139, 139, 139, 139, 139, 4198, 1018, 5908, 1344, 8470, 3077, 5909, 5219, 1708, 5913, 1742, 5943, 139, 139, 139, 139, 139, 139, 139, 1349, 5221, 265, 1743, 6405, 1787, 6250, 784, 1343, 5934, 5934, 5934, 5934, 5934, 5934, 5934, 5934, 1020, 1744, 1345, 4059, 4059, 4059, 139, 139, 139, 139, 139, 139, 140, 139, 2239, 139, 139, 139, 139, 139, 139, 139, 5218, 5210, 1344, 4540, 4540, 4540, 4540, 4540, 4540, 274, 274, 274, 139, 139, 139, 139, 139, 139, 139, 2240, 265, 5944, 758, 4018, 1787, 5219, 5936, 6669, 507, 284, 335, 5218, 5910, 6077, 2194, 5939, 5226, 1345, 5221, 3290, 335, 2697, 139, 139, 139, 139, 1070, 1735, 5937, 5218, 3890, 1376, 1275, 2698, 516, 5226, 5219, 5220, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 285, 1792, 5221, 1742, 1377, 1736, 8470, 5219, 6127, 5226, 5226, 1379, 1071, 5964, 4030, 1743, 1042, 2180, 1737, 6131, 5221, 335, 1742, 1044, 5940, 5977, 2222, 8427, 6512, 758, 1744, 5949, 3290, 5962, 1743, 3290, 6002, 2222, 2181, 3290, 5946, 3290, 3290, 1742, 1742, 1572, 2245, 776, 776, 1744, 777, 2251, 776, 776, 776, 1743, 1743, 776, 776, 776, 1376, 516, 6086, 1234, 5976, 6011, 2182, 5999, 6286, 335, 1744, 1744, 776, 776, 776, 776, 776, 776, 8427, 3290, 1377, 758, 3290, 780, 3911, 5962, 3290, 3911, 3290, 3290, 5981, 3911, 1042, 3911, 3911, 5978, 760, 5979, 3290, 3290, 5947, 776, 776, 776, 776, 783, 783, 784, 785, 786, 783, 783, 783, 516, 2222, 783, 783, 783, 4641, 2258, 375, 4641, 6001, 4642, 3954, 2222, 4642, 3954, 6021, 3290, 783, 783, 783, 783, 783, 783, 2222, 4046, 2222, 6000, 6258, 789, 8427, 5980, 335, 3290, 3290, 2222, 760, 2222, 3911, 3911, 1078, 1764, 5983, 3290, 3290, 1275, 1078, 139, 783, 783, 783, 783, 783, 784, 785, 2259, 783, 783, 783, 6095, 2222, 783, 783, 783, 3290, 2696, 335, 6127, 6512, 3911, 6003, 2222, 2222, 6132, 3077, 6132, 783, 783, 783, 783, 783, 783, 6005, 2222, 5982, 2697, 6142, 789, 2222, 140, 5984, 5987, 2564, 6032, 3290, 3911, 3911, 2698, 5985, 2222, 3290, 3290, 3290, 5945, 3290, 139, 783, 783, 783, 139, 139, 3256, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 6132, 6052, 2023, 1070, 6940, 6143, 6064, 2222, 6141, 150, 139, 139, 139, 139, 139, 329, 6147, 3290, 2222, 6006, 1606, 798, 3911, 3290, 3290, 3290, 3917, 3290, 3911, 3911, 5990, 3290, 3911, 6065, 5988, 5989, 1071, 6143, 6356, 139, 139, 139, 139, 139, 139, 6146, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 150, 139, 139, 139, 139, 139, 329, 2739, 2222, 6148, 6036, 3290, 798, 6127, 6127, 3925, 3911, 6151, 6017, 2222, 3926, 6130, 8427, 5991, 2740, 6131, 571, 2741, 3954, 4643, 139, 139, 139, 139, 139, 139, 6485, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 150, 150, 2265, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 1441, 139, 139, 139, 139, 139, 139, 2266, 2266, 2266, 2266, 2266, 2267, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 2266, 2266, 2266, 2266, 2266, 2266, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 2269, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2271, 6101, 1078, 2222, 4639, 8488, 6106, 2270, 2270, 2270, 2270, 2270, 2272, 2748, 2222, 3961, 2222, 3954, 6004, 6027, 3964, 2222, 6268, 6031, 6029, 3954, 2748, 2222, 4640, 6127, 6119, 6119, 2222, 6107, 2270, 2270, 2270, 2270, 2270, 2270, 2274, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 150, 140, 6023, 6432, 6024, 140, 329, 2275, 2275, 2275, 2275, 2275, 2276, 6025, 2222, 3954, 2222, 2745, 6425, 6498, 6026, 784, 2242, 6433, 6127, 2222, 6033, 2222, 5808, 1070, 3290, 6028, 6130, 8490, 2275, 2275, 2275, 2275, 2275, 2277, 2280, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 1825, 6037, 6120, 6120, 6120, 6127, 2243, 2281, 2281, 2281, 2281, 2281, 2282, 1071, 6170, 6035, 6131, 6501, 6170, 6170, 6170, 6175, 6173, 140, 776, 5986, 6506, 6173, 3290, 6174, 8833, 6174, 6179, 3911, 2281, 2281, 2281, 2281, 2281, 2281, 2283, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 3924, 6169, 6169, 6169, 6169, 6169, 139, 2284, 2284, 2284, 2284, 2284, 2285, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 140, 5332, 1078, 6170, 1078, 1078, 784, 1079, 784, 1079, 3077, 6173, 2284, 2284, 2284, 2284, 2284, 2286, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1108, 5752, 6127, 6048, 6170, 6175, 6175, 150, 150, 150, 150, 150, 162, 1080, 6178, 1080, 140, 4821, 6127, 6041, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6131, 6042, 139, 566, 139, 150, 150, 150, 150, 150, 150, 2291, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 1837, 6170, 6127, 6482, 6127, 6045, 6127, 2292, 2292, 2292, 2292, 2292, 2293, 6131, 6130, 784, 1083, 6078, 6078, 6078, 6078, 6078, 6078, 6078, 6078, 6078, 1078, 703, 6046, 6046, 6047, 6127, 2023, 6342, 2292, 2292, 2292, 2292, 2292, 2292, 2294, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 1084, 1606, 140, 6127, 6127, 6127, 6181, 2295, 2295, 2295, 2295, 2295, 2296, 6130, 4156, 4156, 4156, 4830, 146, 6078, 6078, 6078, 6078, 6078, 6079, 6080, 6080, 6080, 6186, 4164, 4164, 4164, 566, 6181, 2295, 2295, 2295, 2295, 2295, 2297, 2303, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 1468, 4175, 4175, 4175, 7132, 140, 3570, 2304, 2304, 2304, 2304, 2304, 2305, 6080, 6080, 6080, 6080, 6080, 6080, 6080, 6080, 6080, 6087, 6087, 6087, 6087, 6087, 6087, 6087, 6087, 6087, 6269, 1572, 6289, 2304, 2304, 2304, 2304, 2304, 2304, 2307, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2309, 1234, 8858, 7137, 6370, 5610, 140, 2308, 2308, 2308, 2308, 2308, 2310, 6087, 6087, 6087, 6087, 6087, 6088, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 6362, 6332, 1572, 2308, 2308, 2308, 2308, 2308, 2308, 2317, 2318, 2319, 2320, 2320, 2320, 2320, 2320, 2320, 375, 1572, 1234, 375, 375, 6127, 150, 1119, 1119, 1119, 1119, 1119, 1123, 6130, 566, 6200, 139, 6289, 2749, 1234, 4198, 2222, 150, 6258, 150, 6286, 6030, 150, 6301, 6286, 150, 150, 2222, 140, 1119, 1119, 1119, 1119, 1119, 1119, 139, 139, 2750, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 6096, 6096, 6096, 6096, 6096, 6096, 6096, 6096, 6096, 150, 139, 139, 139, 139, 139, 329, 1572, 733, 6400, 6272, 1572, 332, 6034, 6034, 6034, 6034, 6034, 6034, 6034, 6034, 6034, 6667, 6333, 571, 1234, 7132, 3290, 6303, 1234, 139, 139, 139, 322, 140, 6286, 2321, 139, 139, 6307, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 6096, 6096, 6096, 6096, 6096, 6097, 6098, 6098, 6098, 150, 139, 139, 139, 139, 139, 329, 2023, 6434, 7137, 8913, 6362, 332, 6098, 6098, 6098, 6098, 6098, 6098, 6098, 6098, 6098, 6371, 6425, 140, 1606, 7899, 140, 6425, 6355, 139, 139, 139, 322, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 2322, 139, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 139, 139, 6450, 139, 139, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 139, 139, 139, 139, 139, 139, 139, 2023, 1672, 6335, 140, 6572, 2347, 6113, 6114, 6115, 6116, 6116, 6116, 6116, 6116, 6116, 150, 6435, 6425, 1606, 140, 1572, 139, 6425, 139, 139, 139, 139, 139, 6347, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1234, 139, 139, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 139, 139, 139, 139, 139, 139, 139, 5594, 1572, 6286, 6472, 5414, 2347, 4738, 4738, 4738, 4738, 4738, 4738, 6289, 1730, 8960, 150, 6614, 1275, 6303, 1234, 6298, 139, 1572, 139, 139, 139, 6306, 150, 1572, 6120, 6120, 6120, 6120, 6120, 6120, 6120, 6120, 6120, 6286, 4449, 1234, 6283, 2348, 6284, 6285, 898, 1234, 2349, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 6308, 139, 139, 1572, 1572, 784, 2981, 6252, 6311, 140, 6287, 6286, 139, 139, 139, 139, 139, 139, 139, 899, 375, 1234, 1234, 1572, 2359, 6121, 6121, 6121, 6121, 6121, 6121, 6121, 6121, 6121, 1572, 1572, 2360, 1196, 2023, 2982, 4198, 1234, 139, 139, 139, 6273, 140, 150, 2222, 6483, 2361, 6362, 1234, 1234, 6520, 566, 1606, 1234, 6286, 6369, 1275, 150, 6347, 1275, 2360, 139, 139, 2031, 139, 139, 139, 139, 139, 139, 139, 139, 139, 6288, 139, 139, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 139, 139, 139, 139, 139, 139, 139, 2023, 6512, 6491, 2023, 6429, 2359, 6259, 6259, 6259, 6259, 6259, 6260, 6261, 6261, 6261, 6425, 6122, 2360, 1606, 8135, 6425, 1606, 140, 139, 139, 139, 6351, 6123, 6123, 6123, 6123, 6123, 6123, 6123, 6123, 6123, 6261, 6261, 6261, 6261, 6261, 6261, 6261, 6261, 6261, 2360, 139, 139, 140, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 6906, 165, 139, 6122, 1572, 2023, 140, 5647, 1572, 6336, 6799, 6372, 1137, 139, 139, 139, 139, 139, 139, 6375, 150, 6803, 1234, 1606, 842, 140, 1234, 6124, 6124, 6124, 6124, 6124, 6124, 6124, 6124, 6124, 6487, 6286, 6330, 6286, 6347, 5648, 139, 139, 139, 843, 139, 139, 140, 148, 375, 139, 139, 139, 150, 150, 139, 139, 164, 190, 150, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 150, 139, 139, 139, 139, 139, 139, 385, 385, 385, 385, 385, 583, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 139, 139, 139, 139, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 139, 139, 1275, 139, 836, 139, 139, 139, 139, 139, 139, 139, 898, 139, 139, 2013, 2023, 3630, 6392, 5647, 6370, 6336, 6804, 6528, 139, 139, 139, 139, 139, 139, 139, 6519, 5144, 6821, 1606, 150, 572, 6125, 6125, 6125, 6125, 6125, 6125, 6125, 6125, 6125, 3008, 6372, 6338, 2493, 5705, 6469, 6329, 5648, 139, 139, 139, 6347, 140, 2023, 2023, 2362, 139, 139, 3608, 148, 1126, 139, 139, 139, 150, 150, 139, 139, 841, 190, 150, 1606, 1606, 2023, 4839, 140, 6347, 1618, 140, 6532, 1150, 139, 139, 139, 139, 139, 139, 2023, 6535, 566, 150, 1606, 857, 6347, 8968, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6169, 6571, 3643, 6347, 6479, 6347, 6360, 139, 139, 139, 843, 139, 139, 140, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 203, 139, 139, 139, 139, 139, 139, 2365, 2365, 2365, 2365, 2365, 2366, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 2364, 2364, 2364, 2364, 2364, 2364, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 6246, 6246, 6246, 6246, 6246, 6246, 6246, 6246, 6246, 1617, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 6392, 375, 140, 6248, 6248, 6248, 6248, 6248, 6248, 6248, 6248, 6248, 5583, 5583, 5583, 5583, 5583, 5583, 5583, 5583, 5583, 150, 1618, 253, 140, 566, 6584, 6393, 150, 140, 6467, 703, 5705, 253, 2365, 2365, 2365, 2365, 2365, 2365, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 2369, 2370, 2370, 2370, 2370, 2370, 2370, 2370, 2370, 1903, 2512, 6478, 140, 140, 1275, 2023, 2370, 2370, 2370, 2370, 2370, 2371, 6158, 6158, 6158, 6158, 6158, 6158, 6158, 6158, 6158, 1133, 3649, 1606, 140, 2260, 6348, 140, 6161, 6484, 3018, 6352, 6512, 2370, 2370, 2370, 2370, 2370, 2370, 2372, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2373, 2374, 2023, 2023, 1572, 2023, 139, 2023, 2373, 2373, 2373, 2373, 2373, 2375, 784, 3636, 6343, 1617, 6481, 7101, 1606, 1606, 1234, 1606, 5718, 1606, 6180, 6180, 6180, 6180, 6180, 6180, 6180, 6180, 6180, 2373, 2373, 2373, 2373, 2373, 2373, 375, 6175, 6286, 6347, 6347, 3077, 2023, 3637, 1618, 6286, 6347, 2378, 2379, 2379, 2379, 2379, 2379, 2379, 2379, 2379, 2380, 6480, 375, 2564, 1606, 1606, 4103, 2379, 2379, 2379, 2379, 2379, 2381, 5583, 5583, 5583, 5583, 5583, 6262, 5580, 5580, 5580, 150, 6347, 253, 6451, 6489, 8981, 140, 150, 6452, 253, 2023, 140, 2379, 2379, 2379, 2379, 2379, 2379, 2386, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 2387, 1519, 1606, 375, 6515, 6489, 6353, 2023, 2387, 2387, 2387, 2387, 2387, 2388, 5580, 5580, 5580, 5580, 5580, 5580, 5580, 5580, 5580, 150, 6361, 1606, 6354, 507, 1275, 1739, 150, 6357, 6623, 2023, 140, 2387, 2387, 2387, 2387, 2387, 2387, 2390, 2391, 2391, 2391, 2391, 2391, 2391, 2391, 2391, 2392, 1606, 140, 6638, 2023, 6390, 2023, 2391, 2391, 2391, 2391, 2391, 2393, 6318, 6318, 6318, 6318, 6318, 6318, 6318, 6318, 6318, 1606, 1617, 1606, 6488, 6632, 1275, 6791, 6321, 6358, 140, 2023, 6430, 2391, 2391, 2391, 2391, 2391, 2391, 2400, 2401, 2401, 2401, 2401, 2401, 2401, 2401, 2401, 1531, 1606, 6537, 140, 3077, 1225, 1618, 2401, 2401, 2401, 2401, 2401, 2402, 6512, 6436, 6431, 6396, 9031, 898, 898, 6349, 6389, 2564, 6541, 6397, 6350, 6425, 6425, 6457, 6570, 6421, 6425, 6425, 1275, 2401, 2401, 2401, 2401, 2401, 2401, 2404, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2406, 6537, 3793, 5048, 3663, 140, 6444, 2405, 2405, 2405, 2405, 2405, 2407, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 5750, 4324, 1133, 140, 6512, 6490, 455, 784, 5021, 140, 6449, 6445, 2023, 2405, 2405, 2405, 2405, 2405, 2405, 2414, 2415, 2416, 2417, 2417, 2417, 2417, 2417, 2417, 3077, 610, 1606, 5802, 6490, 6498, 6402, 1177, 1177, 1177, 1177, 1177, 1181, 5022, 5808, 3077, 6404, 7166, 2564, 6590, 5594, 6282, 6282, 6282, 6282, 6282, 6282, 6282, 6282, 6282, 1617, 2564, 6430, 2564, 1177, 1177, 1177, 1177, 1177, 1177, 139, 139, 1572, 139, 836, 139, 139, 139, 139, 139, 139, 139, 307, 139, 139, 3077, 140, 140, 5098, 6443, 1234, 6402, 1618, 6431, 139, 139, 139, 139, 139, 139, 139, 6447, 6543, 5028, 6425, 6498, 572, 2418, 6555, 6425, 6559, 5854, 9050, 6528, 5808, 274, 6713, 5156, 6453, 6562, 140, 6504, 5144, 733, 139, 139, 139, 139, 139, 6530, 139, 163, 139, 139, 139, 139, 139, 139, 139, 168, 344, 139, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 139, 139, 139, 139, 139, 139, 139, 168, 168, 168, 168, 168, 345, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 139, 139, 139, 176, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 2426, 2427, 2427, 2427, 2427, 2427, 2427, 2427, 2427, 1949, 1617, 9068, 6516, 6516, 6498, 6609, 2427, 2427, 2427, 2427, 2427, 2428, 274, 5808, 335, 3079, 6641, 274, 1617, 1617, 1617, 6492, 1275, 1275, 274, 140, 140, 3742, 1090, 6475, 6464, 1617, 1618, 2427, 2427, 2427, 2427, 2427, 2427, 2429, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 2430, 3690, 1617, 1618, 1618, 1618, 140, 6402, 2430, 2430, 2430, 2430, 2430, 2431, 4410, 6512, 1618, 1379, 4726, 3084, 6634, 6458, 6512, 150, 329, 6639, 1617, 6459, 507, 1044, 6460, 566, 4411, 455, 1618, 2430, 2430, 2430, 2430, 2430, 2432, 2438, 1617, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1208, 2054, 6462, 6462, 6455, 6468, 1618, 1205, 1205, 1205, 1205, 1205, 1207, 6630, 6589, 6792, 3079, 3742, 1617, 6476, 3742, 4367, 1618, 6642, 6456, 6643, 511, 140, 513, 6463, 6463, 6463, 6454, 1275, 1205, 1205, 1205, 1205, 1205, 1205, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 3690, 1618, 4410, 434, 6657, 4410, 6402, 2443, 2443, 2443, 2443, 2443, 2444, 4691, 4691, 4691, 6577, 6512, 3084, 6512, 4411, 257, 5802, 4411, 6505, 6505, 6505, 6505, 6505, 6505, 6263, 6477, 434, 5808, 2443, 2443, 2443, 2443, 2443, 2443, 2449, 6264, 6264, 6264, 6264, 6264, 6264, 6264, 6264, 6264, 257, 175, 175, 175, 175, 175, 175, 175, 175, 175, 566, 3290, 140, 6822, 7182, 6573, 3290, 175, 175, 175, 175, 175, 204, 139, 6826, 6263, 5802, 1617, 6505, 6505, 6505, 6505, 6505, 6505, 6505, 6505, 6505, 5808, 6465, 6466, 140, 6517, 6517, 6517, 175, 175, 175, 175, 175, 175, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1618, 1971, 6274, 1275, 6532, 6275, 6624, 6276, 6528, 495, 464, 6277, 1572, 6535, 6278, 6279, 6280, 5144, 6543, 6281, 6540, 496, 6648, 6601, 9081, 1234, 6406, 5854, 6555, 6407, 1234, 6408, 531, 140, 6549, 6409, 6857, 5156, 6410, 6411, 6412, 434, 3913, 6413, 6557, 270, 2452, 1225, 1225, 2564, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 257, 1225, 1225, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 434, 6546, 4852, 6663, 6574, 2455, 6656, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 3290, 566, 257, 140, 531, 3290, 6550, 1234, 1225, 1225, 1225, 1225, 1572, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 464, 1225, 1225, 6576, 464, 4866, 6617, 293, 1234, 3956, 6300, 6546, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2456, 566, 7099, 464, 4665, 2455, 6344, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 6345, 270, 473, 6591, 140, 270, 6637, 6592, 1234, 1225, 1225, 1225, 1225, 2023, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 270, 1225, 1225, 1572, 4625, 6633, 6600, 296, 1606, 758, 3990, 6543, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3993, 5854, 1234, 5970, 5348, 1978, 6344, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 531, 5904, 140, 566, 6952, 6640, 516, 1234, 1225, 1225, 1225, 1225, 2023, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6543, 1225, 1225, 3956, 6666, 3290, 3993, 1070, 1606, 5854, 3290, 5905, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1979, 5620, 6551, 3290, 6646, 1978, 7168, 9135, 3290, 4699, 4699, 4699, 6302, 6302, 6302, 6302, 6302, 6302, 6302, 6302, 6302, 1071, 284, 1234, 1225, 1225, 2462, 5906, 6555, 6552, 7169, 3954, 6692, 1572, 140, 5904, 4625, 5156, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 6559, 6661, 7050, 6711, 1234, 531, 3290, 6734, 6618, 6562, 6559, 3290, 1572, 285, 150, 6594, 6563, 6720, 140, 6562, 5905, 6359, 6359, 6359, 6359, 6359, 6359, 6359, 6359, 6359, 1234, 6564, 1985, 7089, 1982, 1982, 1982, 1982, 1982, 1982, 1225, 1225, 2023, 1226, 1580, 1225, 1225, 1225, 6798, 3290, 1225, 1225, 1225, 2023, 3290, 5906, 7033, 7132, 6565, 3919, 1606, 6664, 4710, 4710, 4710, 1225, 1225, 1225, 1225, 1225, 1225, 1606, 3290, 4884, 4884, 4884, 1581, 3290, 5802, 2466, 6505, 6505, 6505, 6505, 6505, 6505, 6505, 6505, 6505, 5808, 7137, 7139, 7132, 150, 1234, 1225, 1225, 1225, 1225, 1225, 150, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5218, 1993, 1225, 6524, 6524, 6524, 6524, 6524, 6525, 6526, 6526, 6526, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6793, 6793, 6794, 7137, 7148, 2467, 5219, 6622, 6514, 6514, 6514, 6514, 6514, 6514, 6514, 6514, 6514, 7974, 140, 5221, 1275, 140, 6788, 1234, 1225, 1225, 1999, 1225, 1225, 1275, 1225, 2468, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1995, 1993, 1225, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2469, 2469, 2469, 2469, 2469, 2470, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 1234, 1225, 1225, 1999, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 1225, 1225, 2222, 1225, 1582, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1583, 1225, 6526, 6526, 6526, 6526, 6526, 6526, 6526, 6526, 6526, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 4726, 140, 2228, 5357, 8664, 1584, 329, 150, 2472, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 566, 6681, 7156, 6799, 2237, 1234, 1225, 1225, 1235, 1225, 1225, 6802, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1585, 1225, 1225, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2474, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1234, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1225, 1225, 2222, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1993, 1225, 6585, 6585, 6585, 6585, 6585, 6586, 6587, 6587, 6587, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2475, 6703, 2228, 7652, 8663, 1994, 140, 7098, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 6122, 6403, 2235, 5218, 1078, 2237, 1234, 1225, 1225, 1225, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1735, 1993, 1225, 6619, 1070, 6712, 5219, 6863, 2564, 6799, 140, 6621, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 5221, 6783, 571, 1572, 6122, 2467, 1736, 329, 6517, 6517, 6517, 6517, 6517, 6517, 6517, 6517, 6517, 7398, 1071, 1737, 140, 8468, 3954, 1234, 1225, 1225, 1999, 1225, 1225, 1275, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1228, 1228, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2479, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1234, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1225, 1225, 2222, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 6587, 6587, 6587, 6587, 6587, 6587, 6587, 6587, 6587, 2480, 1225, 1225, 1225, 1225, 1225, 1225, 9305, 9318, 2228, 9318, 3292, 1998, 6827, 5718, 6414, 6414, 6414, 6414, 6414, 6414, 6414, 6414, 6414, 6831, 1078, 2235, 6707, 1078, 2237, 1234, 1225, 1225, 1999, 1225, 1225, 3077, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 3914, 7132, 1376, 6804, 6658, 2564, 6822, 6858, 3956, 2480, 1225, 1225, 1225, 1225, 1225, 1225, 2481, 140, 9361, 140, 5981, 1998, 6629, 6415, 6416, 6416, 6416, 6416, 6416, 6416, 6416, 6416, 6416, 3290, 1042, 1078, 7150, 140, 3290, 1234, 1225, 1225, 1999, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3954, 1225, 1225, 7184, 4641, 4625, 6962, 6799, 2564, 4642, 6799, 6686, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 7596, 3077, 6803, 5366, 6904, 2482, 5898, 5898, 5898, 5898, 5898, 5898, 5898, 5898, 5898, 253, 140, 7019, 566, 2564, 6804, 3689, 253, 1234, 1225, 1225, 1225, 1225, 6807, 1226, 2000, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 2480, 1225, 1225, 1225, 1225, 1225, 1225, 2001, 2001, 2001, 2001, 2001, 2002, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1234, 1225, 1225, 1999, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1225, 1225, 7023, 1226, 1227, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1229, 1230, 1228, 6708, 5580, 5580, 5580, 5580, 5580, 5580, 6543, 6709, 1232, 1225, 1225, 1225, 1225, 1225, 1225, 5854, 6559, 8136, 140, 140, 1233, 6668, 6549, 784, 1303, 6562, 2486, 6551, 3290, 4726, 140, 6662, 6563, 3290, 3570, 329, 150, 6564, 1234, 1225, 1225, 1235, 1225, 1225, 566, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6552, 1225, 1225, 1304, 7179, 1572, 8924, 6962, 6962, 6984, 6565, 6575, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6980, 6988, 257, 3932, 1234, 2482, 6415, 6417, 6417, 6417, 6417, 6417, 6417, 6417, 6417, 6417, 3290, 3570, 140, 7021, 2864, 3290, 4597, 1234, 1225, 1225, 1225, 1225, 3077, 1225, 1582, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 758, 1591, 1225, 6783, 140, 140, 6984, 7027, 2564, 329, 150, 6907, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6555, 6555, 8697, 2866, 6808, 1592, 5904, 898, 2488, 5156, 5156, 5904, 6811, 516, 3956, 140, 6557, 4286, 140, 6644, 6822, 6566, 6566, 1234, 1225, 1225, 139, 139, 6825, 139, 836, 139, 139, 139, 139, 139, 139, 139, 5905, 139, 139, 1018, 7031, 5905, 7050, 7157, 6684, 6989, 6567, 6567, 139, 139, 139, 139, 139, 139, 139, 150, 6993, 1349, 6827, 3954, 572, 329, 150, 6593, 4625, 2222, 6830, 6603, 2491, 6263, 7132, 5906, 140, 1275, 1020, 1352, 5906, 6595, 139, 139, 139, 2012, 2012, 2013, 2012, 2492, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2496, 2012, 2012, 2228, 1572, 7137, 898, 7227, 140, 6677, 5379, 6832, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 6835, 2235, 6263, 1234, 2237, 2498, 566, 6951, 140, 6578, 784, 1343, 6610, 6610, 6610, 6610, 6610, 6610, 6610, 6610, 6610, 983, 7276, 2012, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 2492, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1308, 2012, 2012, 4821, 7176, 1344, 3793, 140, 1742, 6981, 335, 6625, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 7154, 1743, 1572, 9361, 265, 2501, 5898, 5898, 5898, 5898, 5898, 6588, 5895, 5895, 5895, 253, 1744, 6920, 6920, 6921, 1234, 6599, 253, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 2492, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 140, 2012, 2012, 6610, 6610, 6610, 6610, 6610, 6611, 6612, 6612, 6612, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2502, 3161, 3161, 3161, 5142, 2501, 5895, 5895, 5895, 5895, 5895, 5895, 5895, 5895, 5895, 253, 140, 9361, 6842, 5173, 5173, 5173, 253, 2012, 2012, 2012, 6846, 2503, 2012, 2012, 2013, 2504, 2492, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2506, 2506, 2506, 2506, 2506, 2507, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2012, 2012, 2508, 2012, 2505, 2505, 2505, 2505, 2505, 2505, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1597, 1597, 455, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2515, 1597, 1597, 6612, 6612, 6612, 6612, 6612, 6612, 6612, 6612, 6612, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 4830, 7296, 7932, 139, 5393, 2517, 9318, 335, 6420, 6420, 6420, 6420, 6420, 6420, 6420, 6420, 6420, 2222, 6420, 566, 6799, 140, 2864, 1606, 1597, 1597, 1597, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1706, 1597, 1597, 5218, 139, 140, 6620, 140, 2564, 2228, 3956, 782, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 6683, 1706, 2023, 6847, 2866, 2520, 6799, 2235, 4839, 5219, 2237, 6850, 758, 1707, 6802, 335, 6596, 7103, 9318, 139, 1606, 4852, 5221, 1606, 1597, 1597, 1597, 1597, 335, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3954, 1597, 1597, 6647, 3956, 4625, 516, 7047, 2696, 6689, 1708, 5144, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2521, 6392, 6962, 2222, 140, 2520, 7132, 7966, 2023, 2697, 6965, 6678, 6394, 6395, 6395, 6394, 6394, 6394, 6394, 6394, 6394, 2698, 760, 1606, 1597, 1597, 1606, 2522, 2523, 4866, 6627, 1572, 3954, 5705, 2228, 7137, 335, 4625, 140, 6943, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 1234, 7049, 2235, 6693, 9318, 2237, 9318, 2525, 2525, 2525, 2525, 2525, 2526, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 1606, 7340, 2527, 3956, 2524, 2524, 2524, 2524, 2524, 2524, 1597, 1597, 1617, 1598, 2031, 1597, 1597, 1597, 784, 1343, 1597, 1597, 1597, 6461, 6461, 6461, 6461, 6461, 6461, 6461, 6461, 6461, 571, 1572, 6966, 1597, 1597, 1597, 1597, 1597, 1597, 2529, 6970, 3297, 1618, 7050, 2032, 9497, 6665, 2222, 3954, 1234, 1344, 3290, 6984, 4625, 7062, 6953, 3290, 6690, 6598, 2864, 6987, 6958, 1606, 1597, 1597, 1597, 1597, 1597, 265, 1597, 1597, 2026, 1597, 1597, 1597, 1597, 1597, 1597, 2027, 1597, 1597, 140, 6392, 1572, 531, 1345, 140, 7064, 7324, 6989, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 6992, 7068, 2866, 1572, 1234, 2530, 5932, 5932, 5932, 5932, 5932, 5932, 5932, 5932, 5932, 274, 8159, 5705, 7175, 140, 7094, 1234, 274, 1606, 1597, 1597, 1597, 1597, 1597, 6947, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2036, 1597, 1597, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2532, 2532, 2532, 2532, 2532, 2533, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 1606, 1597, 1597, 1597, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 1597, 1597, 2696, 1597, 2033, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1706, 2034, 1597, 1970, 140, 1572, 140, 5970, 1572, 1376, 2697, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2534, 1706, 9503, 2698, 1234, 2035, 6626, 1234, 6959, 6960, 1377, 6994, 6954, 1707, 7185, 6948, 7353, 3256, 7102, 6997, 6344, 7132, 1042, 1606, 1597, 1597, 1607, 1597, 1597, 1572, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3925, 2535, 1597, 2023, 6597, 3926, 3290, 1617, 1234, 1708, 1275, 3290, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 6628, 7137, 1606, 7137, 5144, 2536, 5932, 5932, 5932, 5932, 5932, 6613, 5929, 5929, 5929, 274, 140, 7226, 9723, 531, 1618, 7004, 274, 1606, 1597, 1597, 1597, 1597, 1597, 7008, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 375, 7158, 5199, 5199, 5199, 2540, 5929, 5929, 5929, 5929, 5929, 5929, 5929, 5929, 5929, 274, 5403, 5403, 5403, 9776, 5570, 7009, 274, 1606, 1597, 1597, 2541, 1597, 1597, 7012, 1598, 2542, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 2543, 2543, 2543, 2543, 2543, 2544, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 1606, 1597, 1597, 2541, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 1597, 1597, 140, 1598, 1599, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 1601, 1602, 1600, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 1604, 1597, 1597, 1597, 1597, 1597, 1597, 2023, 3954, 7388, 335, 566, 1605, 3954, 7178, 2547, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1606, 139, 140, 3956, 6360, 1606, 1597, 1597, 1607, 1597, 1597, 2222, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7464, 7050, 2228, 140, 6688, 2549, 7323, 6682, 6651, 7059, 6695, 6653, 2752, 3956, 3956, 4625, 9852, 3956, 2217, 2235, 139, 3956, 2237, 1606, 1597, 1597, 1597, 1597, 1597, 139, 1597, 2033, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7181, 2042, 1597, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2550, 7064, 3954, 3954, 3923, 2043, 3954, 4625, 4625, 7067, 6698, 4625, 6659, 3956, 6694, 4625, 7171, 3290, 6685, 5525, 5525, 5525, 3290, 1606, 1597, 1597, 139, 139, 3924, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 2210, 6654, 1572, 3956, 3956, 3956, 3956, 6696, 2023, 139, 139, 139, 139, 139, 139, 139, 1617, 6691, 5348, 3954, 1234, 589, 610, 140, 4625, 335, 1606, 6463, 6463, 6463, 6463, 6463, 6463, 6463, 6463, 6463, 3923, 7069, 7132, 146, 139, 139, 139, 6961, 6660, 7072, 7138, 7047, 1618, 3290, 3954, 3954, 3954, 3954, 3290, 4625, 4625, 6701, 4625, 7188, 3924, 139, 6700, 2551, 139, 139, 1078, 139, 836, 139, 139, 139, 139, 139, 139, 139, 2864, 139, 139, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 139, 139, 139, 139, 139, 139, 139, 140, 9638, 9919, 140, 1672, 572, 7044, 898, 2552, 6908, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 7183, 140, 2866, 7177, 139, 139, 139, 2555, 2555, 2023, 2556, 2557, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 2559, 2560, 2558, 899, 6672, 2023, 7180, 2023, 1606, 6392, 7400, 7195, 2562, 2555, 2555, 2555, 2555, 2555, 2555, 3909, 5808, 1196, 3954, 1606, 2563, 1606, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 7047, 7558, 3956, 3956, 140, 7047, 5705, 2564, 2555, 2555, 2565, 139, 139, 2023, 148, 2567, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 898, 2023, 5778, 140, 7409, 1606, 140, 7093, 2212, 203, 139, 139, 139, 139, 139, 139, 6655, 7091, 7225, 1606, 6697, 204, 6602, 3954, 3954, 6956, 6956, 4633, 4625, 4625, 140, 2864, 2213, 2023, 1018, 6699, 1416, 7199, 7047, 139, 139, 139, 176, 1617, 4640, 1572, 7202, 7339, 307, 2023, 1275, 1606, 1349, 140, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 1234, 2055, 6615, 7047, 1606, 7047, 1020, 531, 2866, 7047, 784, 2242, 1618, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 6670, 9924, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 507, 140, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 2243, 6710, 2572, 1250, 1250, 2222, 1250, 1617, 2573, 1250, 1250, 1250, 1250, 1250, 1250, 7210, 1250, 1250, 776, 2023, 784, 1079, 7345, 3077, 7213, 455, 2728, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 2023, 7633, 2228, 1606, 5144, 2057, 6671, 2564, 6705, 7047, 1617, 307, 3956, 2211, 3956, 7111, 140, 140, 1606, 2235, 1080, 7297, 2237, 1250, 1250, 1250, 1250, 1250, 1572, 1250, 1617, 2573, 1250, 1250, 1250, 1250, 1250, 1250, 139, 1250, 1250, 7047, 1618, 784, 1079, 6719, 1234, 7341, 7387, 6717, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 2058, 6023, 3954, 6024, 3954, 2057, 4641, 4625, 6945, 4625, 1672, 4642, 6687, 6946, 6702, 2222, 2222, 7048, 7278, 6026, 1080, 7045, 7046, 1250, 1250, 1250, 1250, 1250, 7158, 1250, 2060, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 139, 1250, 1250, 2023, 2023, 1572, 3954,10234, 2228, 2228, 293, 3954, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 6704, 6706, 1606, 1606, 1234, 1625, 2235, 2235, 6949, 2237, 2237, 2578, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 7343, 6042, 1250, 1250, 1250, 1250, 1250, 6950, 1250, 2060, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 7218, 1250, 1250, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 7233, 7219, 7220, 1275, 7347, 1625, 464, 296, 7471, 6535, 6715, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 140, 6716, 1275, 1250, 1250, 1250, 6784, 6784, 6784, 6784, 6784, 6784, 6784, 6784, 6784, 140, 7298, 7346, 2579, 139, 139, 270, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 177, 177, 2587, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139, 7132, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1617, 1617, 511, 784, 1079,10321, 140, 1078, 7159, 139, 139, 139, 139, 139, 139, 139, 6718, 6718, 6718, 6718, 6718, 2590, 6784, 6784, 6784, 6784, 6784, 6785, 6786, 6786, 6786, 7137, 1618, 1618, 7475, 7348, 7742, 1080, 7137, 139, 139, 139, 139, 139, 139, 1617, 139, 163, 139, 139, 139, 139, 139, 139, 139, 139, 344, 139, 6786, 6786, 6786, 6786, 6786, 6786, 6786, 6786, 6786, 139, 139, 139, 139, 139, 139, 139, 7158, 3077, 1617, 1618, 7224, 345, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 150, 5531, 5531, 5531, 2564, 3077, 329, 150, 139, 139, 139, 176, 7118, 1275, 7104, 140, 7158, 293,10413, 1618, 2594, 139, 139, 2564, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 6880, 6880, 6880, 6880, 6880, 6880, 6880, 6880, 6880, 139, 139, 139, 139, 139, 139, 139, 2023, 7342, 3077, 7651, 7158, 589, 6116, 6116, 6116, 6116, 6116, 6787, 6113, 6113, 6113, 150, 140,10446, 1606, 3077, 2564, 329, 150, 146, 139, 139, 139, 6113, 6113, 6113, 6113, 6113, 6113, 6113, 6113, 6113, 150, 2564, 7116, 7047, 7277, 7115, 329, 150, 507, 590, 7047, 2551, 139, 139, 464, 139, 163, 139, 139, 139, 2598, 139, 139, 139, 10534, 365, 139, 6880, 6880, 6880, 6880, 6880, 6881, 6882, 6882, 6882, 139, 139, 139, 139, 139, 139, 139, 7344, 7299, 5540, 5540, 5540, 366, 270, 6790, 6790, 6790, 6790, 6790, 6790, 6790, 6790, 6790, 140, 6902, 6902, 6902, 6902, 6902, 6902, 139, 139, 139, 139, 139, 140, 139, 163, 139, 139, 139, 139, 139, 139, 139, 140, 344, 139, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 139, 139, 139, 139, 139, 139, 139, 7843, 1617, 3077,10544, 3077, 345, 6795, 6795, 6795, 6795, 6795, 6795, 6795, 6795, 6795, 5549, 5549, 5549, 3290,10556, 2564, 7164, 2564, 139, 139, 139, 176, 140, 7117, 7152, 2605, 959, 959, 1618, 959, 959, 2092, 959, 959, 959, 959, 959, 959, 6415, 959, 959, 6886, 6886, 6886, 6886, 6886, 6886, 6886, 6886, 6886, 959, 959, 959, 959, 959, 959, 959, 7236, 7242, 8104, 3077,10572, 1658, 1617, 8105, 3911, 7240, 7245, 2610, 6886, 6886, 6886, 6886, 6886, 6887, 6888, 6888, 6888, 2564, 464, 959, 959, 959, 959, 959, 7308, 959, 2616, 959, 959, 959, 959, 959, 959, 959, 1618, 959, 959, 6888, 6888, 6888, 6888, 6888, 6888, 6888, 6888, 6888, 959, 959, 959, 959, 959, 959, 959, 270, 3077, 7186, 3077, 7158, 1282, 6845, 6845, 6845, 6845, 6845, 6845, 6845, 6845, 6845, 784, 2981, 140,10768, 2564, 7204, 2564, 6842, 959, 959, 959, 959, 959, 7131, 959, 1661, 959, 959, 959, 959, 959, 959, 959, 7109, 959, 959, 7208, 3077, 7110, 6957, 6957, 6957, 4103, 7250, 2982, 959, 959, 959, 959, 959, 959, 959, 5854, 6944, 6796, 2564, 7307, 1282, 140, 7113, 1572, 1617, 1234, 7204, 513, 6797, 6797, 6797, 6797, 6797, 6797, 6797, 6797, 6797, 434, 959, 959, 959, 1234, 7114, 7283, 464, 7415, 2617, 139, 139, 140, 148, 2624, 139, 139, 139, 257, 1618, 139, 139, 139, 7349, 7336, 6796, 6892, 6892, 6892, 6892, 6892, 6892, 6892, 6892, 6892, 139, 139, 139, 139, 139, 139, 2023, 270, 7158, 1377, 1617, 162, 6892, 6892, 6892, 6892, 6892, 6893, 6894, 6894, 6894, 1042, 7162, 7162, 9359,10773, 140, 140, 140, 139, 139, 139, 139, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 1618, 2112, 6894, 6894, 6894, 6894, 6894, 6894, 6894, 6894, 6894, 1617, 434, 6898, 6898, 6898, 6898, 6898, 6898, 6898, 6898, 6898, 7163, 7163, 7163, 7746, 7922, 8600, 3292, 140, 257, 6898, 6898, 6898, 6898, 6898, 6899, 6900, 6900, 6900, 7195, 7597, 3955, 1618, 784, 3636, 2630, 246, 246, 5808, 251, 449, 246, 246, 246, 7282, 7197, 246, 246, 246, 6900, 6900, 6900, 6900, 6900, 6900, 6900, 6900, 6900, 5154, 7195, 1317, 246, 246, 246, 246, 246, 246, 3637, 5808, 434, 140, 7351, 256, 7034, 1730, 6902, 6902, 6902, 6902, 6902, 6902, 7267, 7322, 1090, 6245, 1606, 8909, 257, 4455, 6692, 257, 246, 246, 246, 246, 246, 140, 251, 449, 246, 246, 246, 7271, 516, 246, 246, 246, 6905, 6905, 6905, 6905, 6905, 6905, 6905, 6905, 6905, 7254, 7233, 1319, 246, 246, 246, 246, 246, 246, 7257, 6535, 140, 2023, 7267, 256, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 7187, 531, 151, 151, 151, 140, 1606,10788, 257, 246, 246, 246, 2636, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2637, 2124, 7404, 5802, 7761, 7195, 7847, 7187, 2637, 2637, 2637, 2637, 2637, 2638, 5808, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 898, 140, 2637, 2637, 2637, 2637, 2637, 2637, 446, 6955, 6955, 6955, 6955, 6955, 6955, 6955, 6955, 6955, 1617, 2639, 2640, 2640, 2640, 2640, 2640, 2640, 2640, 2640, 253, 6941, 1572, 284, 7250, 7264, 3008, 2640, 2640, 2640, 2640, 2640, 2641, 5854, 6562, 7020, 5357, 5647, 1739, 6336, 1234, 1617, 1618, 335, 3608, 6942, 7330, 140, 531, 7161, 898, 784, 5021, 7325, 2640, 2640, 2640, 2640, 2640, 2642, 2648, 285, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 5648, 1617, 1618, 7029, 7912, 7475, 7158, 1316, 1316, 1316, 1316, 1316, 1318, 3663, 5022, 898, 7479, 7284,10788, 7090, 7106, 7191, 7191, 7191, 7191, 7191, 7192, 7193, 7193, 7193, 898, 4324, 2564, 1618, 1316, 1316, 1316, 1316, 1316, 1316, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 983, 2145, 6957, 6957, 6957, 6957, 6957, 6957, 6957, 6957, 6957, 3674, 464, 5366, 140, 5048, 3077, 7158, 1308, 7158, 335, 7151, 4367, 1572, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 5750, 2564, 1617, 5379, 1078, 1617, 3955, 7844, 1234, 7112, 335, 5218, 1572, 2659, 270, 265, 265, 3077, 272, 480, 265, 265, 265, 6402, 7264, 265, 265, 265, 1078, 1078, 1234, 7480, 6300, 6562, 1618, 2564, 5219, 1618, 7199, 1359, 265, 265, 265, 265, 265, 265, 6982, 7202, 531, 5221, 7329, 277, 7771, 5904, 7207, 7506, 7511, 6983, 6983, 6983, 6983, 6983, 6983, 6983, 6983, 6983, 7165, 7233, 7242, 265, 265, 265, 265, 7158, 5393, 9769, 6535, 7245, 1572, 3913, 7158, 335, 7828, 7239, 7246, 5905, 278, 265, 265, 7360, 272, 480, 265, 265, 265, 1070, 1234, 265, 265, 265, 6344, 7043, 7043, 7043, 7043, 7043, 7043, 7043, 7043, 7043, 7250, 1361, 265, 265, 265, 265, 265, 265,10793, 5854, 5906, 7300, 2023, 277, 140, 7408, 7252, 7637, 1071, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 140, 140, 1606, 265, 265, 265, 265, 7004, 7902, 5218, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 3742, 278, 2667, 2668, 2668, 2668, 2668, 2668, 2668, 2668, 2668, 2159, 2023, 6300, 7474, 5219, 7328, 7254, 2668, 2668, 2668, 2668, 2668, 2669, 6370, 7745, 7257, 7302, 5221, 7168, 1606, 3570, 7061, 7258, 4410, 7063, 7063, 7063, 7063, 7063, 7063, 7063, 7063, 7063, 1617, 2668, 2668, 2668, 2668, 2668, 2668, 477, 4411, 7169, 7397, 3954, 2023, 140, 7661, 5905, 3954, 7172, 2670, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 2671, 274, 758,10793, 1606, 375, 1618, 140, 2671, 2671, 2671, 2671, 2671, 2672, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 3742, 5906, 5570, 140, 7930, 5076, 3570, 7082, 3742, 150, 2053, 516, 2671, 2671, 2671, 2671, 2671, 2673, 2679, 5156, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 7848, 7338, 140, 1597, 7693, 4410, 7264, 1358, 1358, 1358, 1358, 1358, 1360, 4410, 7394, 6562, 140, 7399, 7350, 7173, 4455, 1379, 7270, 4411, 3954, 9669,10793, 3954, 1730, 3954, 7174, 4411, 3954, 1044, 1358, 1358, 1358, 1358, 1358, 1358, 505, 505, 7920, 505, 505, 505, 505, 505, 505, 505, 505, 505, 2708, 505, 505, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 505, 505, 505, 505, 505, 505, 505, 2708, 2708, 2708, 2708, 2708, 2709, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505,10788, 7395, 505, 505, 505, 505, 505, 505, 505, 505, 505, 758, 3954, 2222, 140,10788, 7385, 3954, 505, 505, 505, 505, 505, 507, 505, 505, 505, 505, 505, 505, 505, 505, 2710, 505, 505, 505, 505, 505, 505, 505, 505, 139, 139, 516, 139, 1758, 139, 139, 139, 139, 139, 139, 139, 7901, 1759, 139, 7193, 7193, 7193, 7193, 7193, 7193, 7193, 7193, 7193, 139, 139, 139, 139, 139, 139, 139, 7475, 3954, 6392, 7846, 7352, 1390, 3954,10788, 7478, 8176, 3292, 2713, 7095, 7096, 7096, 7096, 7096, 7096, 7096, 7096, 7096, 7096, 7480, 139, 139, 139, 139, 1769, 7035, 7210, 7483, 7036, 4627, 7037, 5705, 140, 7389, 7038, 7213, 7210, 7039, 7040, 7041, 7242, 7120, 7042, 1735, 7121, 7213, 7122, 7215, 1606, 7245, 7123, 7326, 7214, 7124, 7125, 7126, 1770, 7215, 7127, 5156, 6392, 7247, 3954, 1771, 2564, 495, 307, 3954, 1736, 2720, 7095, 140, 7480, 434, 7216, 3920, 8905, 496, 1772, 7485, 1773, 1737, 1774, 7484, 7216, 1775, 1776, 7488, 7248, 4455, 1777, 257, 5705, 1778, 6392, 1779, 5953, 1780, 7331, 1781, 1782, 1783, 1769, 7279, 7095, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7107, 7108, 7108, 7107, 7107, 7107, 7107, 7107, 7107, 7490, 293, 434, 5705, 7274, 7506, 7485, 1754, 7493, 1275, 7254, 1770, 3077, 7509, 2721, 293, 140, 7489, 1771, 7257, 257, 7119, 7119, 7119, 7119, 7119, 7119, 7119, 7119, 7119, 2564, 7259, 7280, 1772, 4455, 1773, 6679, 1774, 7250, 1379, 1775, 1776, 3077, 8098, 7975, 1777,10788, 5854, 1778, 7900, 1779, 1044, 1780, 5904, 1781, 1782, 1783, 1769, 7260, 7261, 2564, 6415, 7128, 7128, 7128, 7128, 7128, 7128, 7128, 7128, 7128, 7221, 7221, 7221, 7221, 7221, 7221, 7221, 7221, 7221, 7506, 140, 5156, 3077, 2722, 5905, 7262, 1742, 7301, 1770, 7337, 7510, 1275, 3954, 140, 7332, 1771, 531, 3954, 1743,10811, 2564, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 2723, 4455, 1773, 1744, 1774, 7511, 7392, 1775, 1776, 5906, 7516, 3954, 1777, 7514, 1617, 1778, 3954, 1779, 7519, 1780, 3290, 1781, 1782, 1783, 1769, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 6796, 140, 1617, 7222, 7222, 7222, 7222, 7222, 7222, 7222, 7222, 7222, 1618, 7163, 7163, 7163, 7163, 7163, 7163, 7163, 7163, 7163, 1770, 7274, 1275, 7511, 784, 1343, 7516, 1771, 307, 7926, 140, 7242, 1618, 140, 7515, 7921, 3911, 7520, 610, 7254, 7245, 140, 1772, 6796, 1773, 7521, 1774, 7246, 7257, 1775, 1776, 4455, 7247, 7524, 2724, 7258, 1070, 1778, 1344, 1779, 7259, 1780, 1572, 1781, 1782, 1783, 1769, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 265, 7531, 1572, 7248, 1234, 7250, 7264, 1275, 7537, 7534, 7306, 7260, 1275, 1071, 5854, 6562, 7540, 1345, 1711, 139, 1234, 7252, 1770, 455,10898, 7654, 7261, 7272, 139, 1771, 7228, 7229, 7230, 7231, 7231, 7231, 7231, 7231, 7231, 7407, 8753, 7264, 784, 1303, 1772, 7654, 1773, 8054, 1774, 5218, 6562, 1775, 2725, 7262, 7273, 7327, 1777, 7270, 898, 1778, 7309, 1779, 7272, 1780, 7281, 1781, 1782, 1783, 1769, 139, 7910, 1706, 1572, 1706, 5219, 7531, 1304, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 7536, 5221, 2696, 7273, 1234, 1706, 1018, 1706, 257, 7537, 2696, 784, 1343, 898, 1770, 7310, 1618, 1707, 3954, 1707, 7541, 1771, 2697, 3954, 1349, 7303, 7661, 7654, 4635, 1376, 2697, 7393, 140, 7305, 2698, 7334, 2221, 7665, 1773, 140, 1774, 1020, 2698, 1775, 1776, 1344, 758, 1018, 1777, 1377, 5962, 1778, 1708, 1779, 7304, 2726, 7542, 1781, 1782, 1783, 1769, 1042, 8079, 265, 7545, 1349, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 7666, 4648, 7333, 516, 150, 1345, 8823, 1020, 3961, 2202, 455, 7673, 566, 7396, 3954, 7693, 6615, 1770, 3954, 3954, 5308, 784, 1079, 3954, 1771, 7335, 7697, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 8053, 7661, 760, 1772, 531, 1773, 7621, 1774, 7628, 7664, 1775, 1776, 140, 7666, 7939, 1777, 7414, 7633, 1778, 1080, 2727, 7672, 1780, 7202, 1781, 1782, 1783, 1769, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 139, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 8343, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 140, 7362, 1770, 6113, 6113, 6113, 6113, 6113, 6113, 1771, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 7698, 7386, 7468, 7468, 7469, 1772, 7942, 1773, 2728, 1774, 7703, 7702, 1775, 1776, 3954, 7946, 8181, 1777, 7363, 3954, 1778, 7707, 1779, 140, 1780, 4644, 1781, 1782, 1783, 1769, 7366, 3570, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 7472, 7472, 7473, 784, 2242, 7718, 7364, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 7723, 7698, 140, 7923, 1770, 140, 7470, 7470, 7470, 7470, 7470, 1771, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 2243, 1572, 140, 7406, 7724, 1772, 140, 1773, 2207, 1774, 7365, 7022, 1775, 2729, 140, 7728, 7367, 1777, 776, 1234, 1778, 8096, 1779, 1572, 1780, 7654, 1781, 1782, 1783, 1769, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 1572, 3917, 1234, 1572, 7924, 1275, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 7368, 7674, 2722, 1234, 784, 1079, 1234, 1770, 375, 7677, 507, 7654, 7976, 7654, 1771, 7655, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 140, 7413, 1572, 5570, 2723, 7369, 1773, 3922, 1774, 3923, 150, 1775, 1776, 1080, 1572, 8101, 1777, 7370, 566, 1778, 1234, 1779, 2730, 1780, 7771, 1781, 1782, 1783, 2223, 7967, 7967, 139, 1234, 3924, 511, 7789, 6679, 7654, 2224, 7371, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 1275, 8370, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 2225, 784, 1079,11221, 8106, 3077, 7849, 2226, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 7693,11221, 8415, 7698, 898, 2227, 2564, 2228, 7696, 2229, 4641, 7701, 2230, 2231, 7372, 4642, 3954, 2232, 1080, 1572, 2233, 3954, 2234, 7621, 2235, 7628, 2236, 2237, 2238, 2223, 7373, 7929, 784, 2981, 7633, 7598, 139, 1234, 899, 2224, 140, 7640, 2023, 140, 7412, 7378, 7793, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 1196, 7797, 7654,11256, 1606, 2225, 8039, 2738, 7760, 7654, 2982, 7653, 2226, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 7605, 7605, 7605, 7605, 7605, 2227, 1234, 2228, 7703, 2229, 7708, 7718, 2230, 2231, 3290, 7380, 7706, 2232, 7711, 7721, 2233, 140, 2234, 5611, 2235, 7379, 2236, 2237, 2238, 139, 139, 7690, 139, 2239, 139, 139, 139, 139, 139, 139, 139, 7405, 7405, 7405, 7405, 7405, 7405, 7405, 7405, 7405, 7661, 4286, 7724, 139, 139, 139, 139, 139, 139, 139, 7727, 3290, 140, 1572, 3077, 1787, 3911, 8603, 2760, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 7771, 1572, 1572, 1234, 2564, 139, 139, 139, 139, 1070, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 1234, 1234, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 4639, 2247, 4639, 7657, 7654, 1572, 7654, 7948, 7390, 7654, 7391, 7729, 1071, 3954, 1572, 3954, 7951, 2023, 3954, 7732, 3954, 7382, 7798, 1234, 4640, 7752, 4640, 1572, 2754, 6982, 898, 140, 1234, 7802, 7660, 1606,11256, 2747, 7383, 7553, 7553, 7553, 7553, 7553, 7553, 1234, 2766, 783, 783, 784, 785, 786, 783, 783, 783, 8097, 7740, 783, 783, 783, 140, 1572, 2775, 2776, 3008, 7739, 4286, 7877, 7877, 7790, 7771, 293, 783, 783, 783, 783, 783, 783, 7774, 1234, 140, 2023, 3608, 789, 7432, 7432, 7432, 7432, 7432, 7432, 7432, 7432, 7432, 7793, 7869, 7879, 2222, 8099, 1133, 1606,10755, 139, 783, 783, 783, 139, 139, 7751, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 150, 139, 139, 139, 139, 139, 329, 561, 561, 561, 561, 561, 798, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 139, 139, 139, 139, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 139, 139, 7741, 148, 149, 139, 139, 139, 2222, 7767, 139, 139, 139, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222,11256, 7931, 1441, 139, 139, 139, 139, 139, 139, 2023, 3077, 2023, 1572, 140, 162, 7869, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 8155, 7878, 1606, 2564, 1606, 1234, 140, 139, 139, 139, 139, 139, 139, 4623, 148, 149, 139, 139, 139, 7830, 7854, 139, 139, 139, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 7933, 2749, 1443, 139, 139, 139, 139, 139, 139, 7384, 9675, 836,11221, 1739, 162, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 140, 2750, 7594, 7594, 7594, 7594, 7594, 7594, 139, 139, 139, 139, 2779, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 2780, 2271, 2512, 140, 2023, 7403, 2023, 2023, 2780, 2780, 2780, 2780, 2780, 2781, 7658, 7658, 7925, 8136, 7775, 7956, 7402, 571, 1606, 7928, 1606, 1606, 7779, 2748, 7213, 5647, 7756, 139, 7763, 7757, 1572, 2780, 2780, 2780, 2780, 2780, 2780, 2782, 2783, 2783, 2783, 2783, 2783, 2783, 2783, 2783, 2784, 8925, 1234, 7750, 3913, 8900, 7982, 2783, 2783, 2783, 2783, 2783, 2785, 5648, 7401, 6535, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 7432, 7432, 7432, 7432, 7432, 7433, 7434, 7434, 7434, 2783, 2783, 2783, 2783, 2783, 2783, 2788, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2789, 2790, 2222, 7968, 7968, 7968,11221, 329, 2789, 2789, 2789, 2789, 2789, 2791, 3327, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 1275, 6716, 7434, 7434, 7434, 7434, 7434, 7434, 7434, 7434, 7434, 2789, 2789, 2789, 2789, 2789, 2789, 2796, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 2797, 1825, 3085,11221, 8040, 8078, 8157, 7793, 2797, 2797, 2797, 2797, 2797, 2798, 2023, 7796, 1672, 1730, 464, 8086, 2753, 7411, 7438, 7438, 7438, 7438, 7438, 7438, 7438, 7438, 7438, 1739, 1606, 7959, 3077, 2797, 2797, 2797, 2797, 2797, 2797, 2800, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2802, 7754, 2564, 270, 7963, 8064, 7755, 2801, 2801, 2801, 2801, 2801, 2803, 7438, 7438, 7438, 7438, 7438, 7439, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7959, 3077,11221, 2801, 2801, 2801, 2801, 2801, 2801, 2810, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 1837, 2564, 6066, 6066, 6066, 296, 7854, 2811, 2811, 2811, 2811, 2811, 2812, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7445, 7446, 7446, 7446, 8102, 3077, 3077, 2811, 2811, 2811, 2811, 2811, 2811, 2814, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2816, 2564, 5028, 140, 1078, 7862, 7867, 2815, 2815, 2815, 2815, 2815, 2817, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7450, 7450, 7450, 7450, 7450, 7450, 7450, 7450, 7450, 7475, 7991, 3077, 2815, 2815, 2815, 2815, 2815, 2815, 2824, 2825, 2826, 2827, 2827, 2827, 2827, 2827, 2827, 150, 5034, 2564, 3956, 7995,11377, 7897, 1454, 1454, 1454, 1454, 1454, 1458, 7450, 7450, 7450, 7450, 7450, 7451, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7991, 140, 3077, 1454, 1454, 1454, 1454, 1454, 1454, 2828, 2829, 2829, 2829, 2829, 2829, 2829, 2829, 2829, 2309, 7868, 2564, 8136,10716, 8186, 4625, 2829, 2829, 2829, 2829, 2829, 2830, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 7565, 7565, 7565, 7565, 7565, 7565, 7565, 7565, 7565, 2023, 6392, 3077, 2829, 2829, 2829, 2829, 2829, 2829, 2831, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 2832, 1606, 3077, 2564, 7475, 1379, 7798, 7762, 2832, 2832, 2832, 2832, 2832, 2833, 7801, 7479, 5705, 1044, 3955, 464, 2564, 7466, 7466, 7466, 7466, 7466, 7466, 7466, 7466, 7466, 7854, 8065, 7659, 7659, 7659, 2832, 2832, 2832, 2832, 2832, 2834, 2840, 140, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1470, 1572, 270, 7832, 8093, 7803, 7813, 1467, 1467, 1467, 1467, 1467, 1469, 7806, 7817, 6072, 6072, 6072, 8347, 1234, 8230, 7467, 7467, 7467, 7467, 7467, 7467, 7467, 7467, 7467, 140, 8234, 507, 9763, 1467, 1467, 1467, 1467, 1467, 1467, 139, 139, 140, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 7565, 7565, 7565, 7565, 7565, 7566, 7567, 7567, 7567, 150, 139, 139, 139, 139, 139, 329, 7765, 7765, 8100, 2023, 3077, 332, 7470, 7470, 7470, 7470, 7470, 7470, 7470, 7470, 7470, 6081, 6081, 6081,11382,11394, 2023, 1606, 2564, 139, 139, 139, 322, 140, 7567, 7567, 7567, 7567, 7567, 7567, 7567, 7567, 7567, 7854, 1606, 7854, 140, 2844, 139, 139, 7770, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 150, 139, 139, 139, 139, 139, 329, 7768, 7769, 5647, 8319, 6336, 332, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 784, 5021, 7850, 11394,11437, 3077, 2023, 2023, 139, 139, 139, 322, 7535, 7535, 7535, 7535, 7535, 7535, 7535, 7535, 7535, 5648, 7818, 2564, 1606, 1606, 5218, 7748, 7531, 7758, 7821, 2845, 139, 139, 5022, 139, 139, 139, 139, 139, 139, 139, 139, 139, 7854, 139, 2864, 6392, 3077, 7759, 8095, 8084, 2564, 4103, 513, 7869, 139, 139, 139, 139, 139, 139, 139, 7876, 5221,11437, 2564, 8235, 2865, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 8239, 5705, 140, 140, 140, 3077, 8107, 7833, 2866, 139, 139, 139, 139, 7854, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2564, 139, 2864, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 139, 139, 139, 139, 139, 139, 139, 2867, 3077, 8666, 11275, 7854, 2865, 3956, 7589, 7589, 7589, 7589, 7589, 7589, 7589, 7589, 7589, 6090, 6090, 6090, 2564, 6187, 6187, 6187, 2866, 139, 139, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 7854, 139, 2864, 7595, 7595, 7595, 7595, 7595, 7595, 7595, 7595, 7595, 139, 139, 139, 139, 139, 139, 139,11437, 4625, 3077, 434, 3077, 2871, 7602, 7602, 7602, 7602, 7602, 7602, 7602, 7602, 7602, 8045, 6253, 6253, 6253, 140, 2564, 257, 2564, 2866, 139, 139, 139, 139, 7854, 139, 139, 139, 139, 139, 139, 139, 139, 139, 7863, 139, 2864, 7602, 7602, 7602, 7602, 7602, 7603, 7604, 7604, 7604, 139, 139, 139, 139, 139, 139, 139, 2872, 3077,11394, 8687, 7855, 2871, 7604, 7604, 7604, 7604, 7604, 7604, 7604, 7604, 7604, 140, 1617,11394, 140, 2564, 7766, 7766, 7766, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 7856, 139, 2864, 2023, 8000, 7857, 8115, 8416, 2564, 758, 1618, 7986, 139, 139, 139, 139, 139, 139, 139, 3077, 7989, 1606, 3077, 1070, 2874, 8004, 2875, 7605, 7605, 7605, 7605, 7605, 7605, 7605, 7605, 7605, 7911, 2564, 6982, 7879, 2564, 516, 2876, 2877, 2877, 7858, 7864, 7882, 140, 7691, 7691, 7692, 8000, 2878, 139, 139, 1071, 139, 2880, 139, 139, 139, 139, 139, 139, 139, 8919, 139, 139, 1617, 1572, 8114, 6708, 8136, 5852, 1617, 140, 7909, 139, 139, 139, 139, 139, 139, 139, 7903, 140, 3077, 1234, 8180, 572, 7632, 7632, 7632, 7632, 7632, 7632, 7632, 7632, 7632, 7633, 1618, 8229, 140, 4455, 2564,11394, 1618, 139, 139, 139, 139, 139, 7865, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 203, 139, 139, 139, 139, 139, 139, 2883, 2883, 2883, 2883, 2883, 2884, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 2882, 2882, 2882, 2882, 2882, 2882, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 7634, 7634, 7634, 7634, 7634, 7635, 7636, 7636, 7636, 7633, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 7636, 7636, 7636, 7636, 7636, 7636, 7636, 7636, 7636, 7633, 140, 151, 151, 151, 151, 151, 151, 151, 151, 151, 7997, 8008, 8020,11394, 8024,11578, 140, 11585, 1133, 7245, 7257, 6562, 7927, 8027, 2883, 2883, 2883, 2883, 2883, 2883, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 2887, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 2888, 1903, 3674, 8686, 2222, 434, 8011, 3077, 2888, 2888, 2888, 2888, 2888, 2889, 7722, 7722, 7722, 7722, 7722, 7722, 7722, 7722, 7722, 257, 7913, 2564, 253, 8015, 8158, 7168, 7718, 8041, 7168, 7859, 703, 2888, 2888, 2888, 2888, 2888, 2888, 2891, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2892, 2893, 2082, 3077, 7169, 8011, 6300, 7169, 2892, 2892, 2892, 2892, 2892, 2894, 140, 2751, 7914, 531, 140,11592, 2752, 2564, 7656, 7656, 7656, 7656, 7656, 7656, 7656, 7656, 7656, 784, 3636, 898, 5854, 2892, 2892, 2892, 2892, 2892, 2892, 375, 7854, 1572, 3077, 6103, 140, 8597, 6392, 7854, 1078, 329, 2896, 2896, 2896, 2896, 2896, 2896, 2896, 2896, 2896, 1234, 2564, 8620, 4455, 3637, 7860, 3663, 2896, 2896, 2896, 2896, 2896, 2897, 7753, 7834, 7829, 8230, 7835, 1617, 7836, 836, 3742, 1606, 7837, 4324, 7861, 7838, 7839, 7840, 7904, 7905, 7841, 8136, 8659, 2896, 2896, 2896, 2896, 2896, 2898, 2901, 2902, 2902, 2902, 2902, 2902, 2902, 2902, 2902, 2380, 1618, 8226, 8226, 8227, 1078, 4410, 2902, 2902, 2902, 2902, 2902, 2903, 7816, 7816, 7816, 7816, 7816, 7816, 7816, 7816, 7816, 274, 140, 4411, 571, 1078, 8920, 7917, 7813, 733, 434, 8235, 7916, 2902, 2902, 2902, 2902, 2902, 2902, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 257, 8296, 8296, 8297, 8230, 7061, 8042, 2904, 2904, 2904, 2904, 2904, 2905, 7875, 7875, 7875, 7875, 7875, 7875, 7875, 7875, 898, 140, 7896, 140, 3290, 284, 3290, 3742, 3742, 464, 7919, 434, 3077, 2904, 2904, 2904, 2904, 2904, 2906, 2911, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2392, 257, 2564, 8081, 9076, 8056, 5048, 2912, 2912, 2912, 2912, 2912, 2913, 4410, 4410, 285, 270, 7939, 758, 2222, 8044, 8127, 7918, 3290, 5750, 3290, 7202, 7401, 3911, 3290, 8129, 4411, 4411, 7945, 2912, 2912, 2912, 2912, 2912, 2912, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 140, 516, 455, 8124, 7948, 7948, 7939, 2914, 2914, 2914, 2914, 2914, 2915, 7951, 7951, 7202, 784, 1303, 8043, 531, 7952, 5854, 8693, 150, 8836, 7953, 7953, 3290, 307, 8108, 531, 566, 3911, 140, 2914, 2914, 2914, 2914, 2914, 2916, 2922, 2923, 2923, 2923, 2923, 2923, 2923, 2923, 2923, 2406, 1304, 4455, 7954, 7954, 7948, 7956, 2923, 2923, 2923, 2923, 2923, 2924, 571, 7951, 7213, 140, 8277,10441, 257, 8018, 7952, 7962, 7978, 7978, 7978, 7978, 7978, 7979, 7980, 7980, 7980, 140, 1070, 2923, 2923, 2923, 2923, 2923, 2923, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 140, 4455, 140, 8489, 7956, 7956, 7956, 2925, 2925, 2925, 2925, 2925, 2926, 7213, 7213, 7213, 7982, 1071,11600, 3955, 7997, 7962, 8240, 7475, 8876, 6535, 7964, 7964, 531, 7245, 464, 7478, 7984, 8244, 2925, 2925, 2925, 2925, 2925, 2927, 2438, 8005, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1533, 8179, 7965, 7965, 7986, 8055, 7982, 1530, 1530, 1530, 1530, 1530, 1532, 7989, 270, 6535, 140, 8006, 531, 140, 7994, 7659, 7659, 7659, 7659, 7659, 7659, 7659, 7659, 7659, 531, 1078, 8425, 9762, 1530, 1530, 1530, 1530, 1530, 1530, 139, 139, 1572, 139, 836, 139, 139, 139, 139, 139, 139, 139, 8494, 139, 139, 8665, 1572, 2696, 8230, 2186, 1234, 495, 7997, 1379, 139, 139, 139, 139, 139, 139, 139, 7245, 8094, 496, 1234, 1044, 572, 2697, 8003, 2936, 7980, 7980, 7980, 7980, 7980, 7980, 7980, 7980, 7980, 2698, 8378, 8087, 8090,11611, 139, 139, 139, 139, 139, 7633, 139, 2937, 139, 139, 139, 139, 139, 139, 139, 168, 344, 139, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 139, 139, 139, 139, 139, 139, 139, 168, 168, 168, 168, 168, 345, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 2939, 168, 168, 168, 168, 139, 139, 139, 176, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 2947, 2948, 2948, 2948, 2948, 2948, 2948, 2948, 2948, 1949, 531, 1078, 5854, 7997, 7997, 140, 2948, 2948, 2948, 2948, 2948, 2949, 7245, 7245, 140, 8008, 6103, 531, 8230, 3290, 8003, 8235, 329, 150, 7257, 8005, 8233, 531, 8265, 8238, 8485, 8014, 4455, 2948, 2948, 2948, 2948, 2948, 2948, 2951, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2953, 5904,11625, 1078, 8006, 8008, 8008, 2952, 2952, 2952, 2952, 2952, 2954, 8240, 7257, 7257, 8020, 11729, 3290, 8018, 8320, 8243, 8014, 3911, 1078, 6562, 307, 8016, 8128, 531, 8270, 140, 8022, 5905, 2952, 2952, 2952, 2952, 2952, 2952, 2961, 2962, 2963, 2964, 2964, 2964, 2964, 2964, 2964, 4455, 8585, 8230, 140, 8008, 8017, 8024, 1552, 1552, 1552, 1552, 1552, 1556, 7257, 8024, 8027, 8245,11770, 11774, 5906, 8122, 8230, 8028, 8027, 8248, 8016, 8057, 8029, 8123, 3290, 8028, 1706, 8234, 5705, 1552, 1552, 1552, 1552, 1552, 1552, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 1208, 3570, 8060, 8017, 8024, 8030, 8020, 1549, 1549, 1549, 1549, 1549, 1550, 8027, 1707, 6562, 8050, 8050, 8050, 8050, 8050, 8050, 8050, 8050, 8050, 8029, 3570, 3290, 8427, 140, 531,11775, 3911,10734, 1549, 1549, 1549, 1549, 1549, 1549, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 1708, 9090, 8265, 8030, 8432, 8230, 8688, 2971, 2971, 2971, 2971, 2971, 2972, 8080, 8080, 8080, 8080, 8080, 8080, 8080, 8080, 7764, 7764, 7764, 7764, 7764, 7764, 7764, 7764, 7764, 9124, 8083, 8230, 140, 2971, 2971, 2971, 2971, 2971, 2971, 139, 139, 2023, 144, 139, 2977, 139, 139, 139, 139, 139, 139, 337, 139, 139, 784, 1343, 8062, 8602,11776, 1606, 140, 8230, 5218, 139, 139, 139, 139, 139, 139, 139, 898, 1376, 8234, 1617,11777, 589, 140, 8136, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 7766, 5219, 1344, 140, 8677, 1377, 3290, 146, 139, 139, 139, 363, 8020, 2023, 5221, 8046, 8877, 1042, 983, 1618, 265, 6562, 175, 175, 175, 175, 175, 175, 175, 175, 175, 1606, 3570, 8031, 3570, 8932, 1308, 1345, 175, 175, 175, 175, 175, 204, 8050, 8050, 8050, 8050, 8050, 8051, 8052, 8052, 8052, 3290, 8676, 8230, 8091, 8125, 3911, 8427, 8032, 8427, 3926, 8233,11778, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 2978, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 8265, 2453, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 8269, 1572, 7968, 7968, 7968, 7968, 7968, 7968, 7968, 7968, 7968, 6103, 2023, 8230, 8265,11779, 8265, 329, 150, 1234, 8265, 8233, 8268, 1275, 8268, 8265, 566, 150, 140, 8381, 1606, 8269, 7061, 8268, 150, 2983, 1225, 1225, 8387, 1225, 1225, 2984, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 1225, 8052, 8052, 8052, 8052, 8052, 8052, 8052, 8052, 8052, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8598, 8484, 8218, 8878, 1572, 2455, 7851, 7852, 7852, 7852, 7852, 7852, 7852, 7852, 7852, 7852, 3570, 8223, 8223, 8223, 8223, 8223, 1234, 1234, 1225, 1225, 1225, 1225, 3077, 1225, 1225, 2984, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 1225, 2222, 5647, 8470, 8491, 140, 2564, 8270, 8230, 7401, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2456, 8274, 8234, 1572, 2023, 2455, 7851, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 7853,11384, 3290, 3570, 5648, 2023, 1234, 1606, 1234, 1225, 1225, 1225, 1225, 3077, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1606, 1225, 1225, 8496, 8483, 2696, 2751, 8475, 2564, 5904, 3290, 2752, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8020, 2023, 8270, 8230, 8496, 1978, 2697, 3290, 8082, 6562, 8273, 2989, 3911,11784, 8234, 898, 8022, 8130, 2698, 1606, 1735, 8031, 5905, 1234, 1225, 1225, 1225, 1225, 8058, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3290, 1225, 1225, 5218, 8089, 3911, 8496, 1736, 8066, 8126, 8032, 1018, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5906, 1737, 7791, 8230, 5904, 1978,11785, 8955, 140, 5219, 1349, 8233, 140, 7792, 7792, 7792, 7792, 7792, 7792, 7792, 7792, 7792, 5221, 1234, 1225, 1225, 1133, 1020, 140, 8230, 8085, 8417, 8230, 8230, 2023, 8276, 5905, 8233, 2990, 1225, 1225, 8233, 1226, 1580, 1225, 1225, 1225, 8685, 8746, 1225, 1225, 1225, 1606, 7866, 7866, 7866, 7866, 7866, 7866, 7866, 7866, 7866, 8276, 6593, 1225, 1225, 1225, 1225, 1225, 1225, 8059, 5906, 1275,11786, 3077, 1581,11789,11806, 784, 1343, 8063, 2996, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 150, 2564, 1234, 1225, 1225, 1225, 1225, 1225, 566, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8419, 1993, 1225, 1344, 8228, 8228, 8228, 8228, 8228, 8332, 507, 8338, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 2997, 8343, 265, 1572, 140, 2467, 140, 8427, 7969, 7969, 7969, 7969, 7969, 7969, 7969, 7969, 7969, 8882, 8431, 1345,11807, 1234,10889, 1234, 1225, 1225, 1999, 1225, 1225, 1275, 1225, 2468, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1995, 1993, 1225, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 2469, 2469, 2469, 2469, 2469, 2470, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 1234, 1225, 1225, 1999, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 1225, 1225, 140, 1225, 1582, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1275, 1583, 1225, 8075, 8075, 8075, 8075, 8075, 8076, 8077, 8077, 8077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 150, 150, 150, 8136,11797, 1584, 3716,11781, 566, 566, 566, 2999, 8077, 8077, 8077, 8077, 8077, 8077, 8077, 8077, 8077, 150, 8754, 1234, 1225, 1225, 1235, 1225, 1225, 566, 1225, 2468, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1585, 1993, 1225, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2474, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1234, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1225, 1225, 1376, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 150, 1993, 1225, 3161, 3161, 3161, 2184,10768, 566, 8088, 1377, 8378, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8092, 7633, 1742, 1042, 7626, 1994, 8378, 140, 3001, 898, 8427, 8068, 3290, 8301, 1743, 7633, 8394, 1745, 8430, 7585, 7586, 7585, 7586, 1234, 1225, 1225, 1225, 1225, 1225, 1744, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228, 8432, 8069, 140, 140, 8884, 8332, 3570, 8338, 8441, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 8343, 3290, 8136, 8070, 8302, 3003, 3911, 8348, 7972, 7972, 7972, 7972, 7972, 7972, 7972, 7972, 7972, 8427, 8131, 8105, 8071, 8689, 8936, 1234, 1225, 1225, 1225, 1225, 1225, 1275, 1226, 2000, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2479, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1234, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1225, 1225, 1617, 1226, 3005, 1225, 1225, 1225, 8497, 8499, 1225, 1225, 1225, 7906, 7906, 7906, 7906, 7906, 7906, 7906, 7906, 7906, 8378, 1275, 8432, 1225, 1225, 1225, 1225, 1225, 1225, 7633, 2023, 2023, 1618, 8442, 1581, 8443, 8384, 7973, 7973, 7973, 7973, 7973, 7973, 7973, 7973, 7973, 8447, 140, 1606, 1606, 8937, 8755, 1234, 1225, 1225, 1225, 1225, 1225, 1275, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 8193, 8193, 8193, 8193, 8193, 8193, 8193, 8193, 8193, 2480, 1225, 1225, 1225, 1225, 1225, 1225, 3913, 8861, 4286, 2222,11780, 1998,11781, 8110, 3006, 784, 1079, 8121, 8121, 8121, 8121, 8121, 8121, 8121, 8121, 8121,11815, 8420, 8421, 1234, 1225, 1225, 1999, 1225, 1225, 8503, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8111, 1225, 1225, 1572, 1080, 6579, 6579, 6579, 8470, 8427, 293, 8427, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 2487, 8431, 1234, 139, 8427, 2482, 8470, 7626, 8112, 8386, 8386, 8386, 8386, 8386, 8386, 8431, 8113, 8474, 7633, 8427, 8183, 8879,11833, 1234, 1225, 1225, 1225, 1225,11845, 1226, 2000, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 2480, 1225, 1225, 1225, 1225, 1225, 1225, 2001, 2001, 2001, 2001, 2001, 2002, 2001, 2001, 2001, 2001, 2001, 3010, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1234, 1225, 1225, 1999, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1225, 1225, 455, 1226, 3012, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1229, 1230, 1228, 8193, 8193, 8193, 8193, 8193, 8194, 8195, 8195, 8195, 1232, 1225, 1225, 1225, 1225, 1225, 1225, 6604, 6604, 6604, 1572, 2023, 1233, 8835, 140, 784, 2242, 784, 1079, 8195, 8195, 8195, 8195, 8195, 8195, 8195, 8195, 8195, 1234, 1606, 1234, 1225, 1225, 1235, 1225, 1225, 8426, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1706, 1225, 1225, 2243, 8496, 1080, 610, 9075, 8470, 6392, 507, 8178, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 8474, 1706, 776, 8443, 139, 2482, 8448, 8427, 3013, 8427, 8470, 8446, 898, 1707, 8451, 8430, 511, 8430, 8473, 8185, 8470, 8881, 5705, 1234, 1225, 1225, 1225, 1225, 8473, 1225, 1582, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8601, 1591, 1225, 8061, 8887, 2023, 8592,11847, 899, 140, 1708, 2144, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8470, 8475, 6392, 8427, 1606, 1592, 8481, 1196, 8473, 8478, 8496, 3014, 7095, 7842, 7842, 7842, 7842, 7842, 7842, 7842, 7842, 7842, 8321, 1234, 1225, 1225, 363, 8224, 8224, 8224, 8224, 8224, 8224, 8481, 5705, 8475, 8225, 175, 175, 175, 175, 175, 175, 175, 175, 175, 8479,11857, 140, 8343, 4286, 4286, 6361, 175, 175, 175, 175, 175, 204, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 8535, 8540, 8503, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 3016, 175, 175, 175, 175, 175, 139, 139, 8690, 139, 3017, 139, 139, 139, 139, 139, 139, 139, 5712, 139, 139, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 139, 139, 139, 139, 139, 139, 139, 1617, 8427, 8698, 140, 8343, 572, 140,11961, 8620, 8430, 8427, 7907, 7907, 7907, 7907, 7907, 7907, 7907, 7907, 7907, 8427, 8431, 8427, 139, 139, 139, 2013, 8427, 2492, 8503, 8430, 8431, 1618, 8691, 140, 8430, 8747, 8506, 464, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 1275, 3021, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 898, 2493, 2012, 2012, 2013, 2012, 2492, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 8837, 2012, 2012, 8215, 8215, 8215, 8215, 8215, 8215, 8215, 8215, 8215, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 3077, 3008, 531, 2023, 8482, 3023, 8215, 8215, 8215, 8215, 8215, 8216, 8217, 8217, 8217, 6721, 6721, 6721, 2564, 3608, 140, 1606, 7867, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 2492, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 8496, 2012, 2012, 8217, 8217, 8217, 8217, 8217, 8217, 8217, 8217, 8217, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 3024, 3077, 9308, 2023, 8503, 3023, 8255, 8255, 8255, 8255, 8255, 8255, 8255, 8255, 8255, 8507, 140,12240, 140, 2564, 2023, 1606, 8258, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1606, 2012, 2012, 5647, 8496, 6336, 8617, 6533, 7831, 139, 8496, 8496, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 140, 2023, 8959, 2023, 8508, 2501, 8275, 8275, 8275, 8275, 8275, 8275, 8275, 8275, 8275, 8515, 8943, 8824, 5648, 1606, 2023, 1606, 8270, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1606, 2012, 2012, 8500, 8500, 8496, 8714, 8582, 3077, 4103, 8493, 1672, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2502, 1617, 8508, 2023, 2023, 2501, 3954, 2564, 8718,12389, 8514, 4625, 7908, 7908, 7908, 7908, 7908, 7908, 7908, 7908, 7908, 1606, 1606, 2012, 2012, 2012, 2013, 3029, 2492, 784, 2981, 8619, 6392, 1618, 7168, 8714, 8496, 8678, 8496, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 8220, 8220, 8220, 8220, 8220, 8220, 8220, 8220, 8220, 8516, 7169, 8535, 2493, 7629,12458, 2982, 5705, 8519, 8418, 8538,10025, 140, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 2023, 2508, 1234, 2505, 2505, 2505, 2505, 2505, 2505, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 1606, 2513, 8535, 8584, 7970, 8326, 8326, 8326, 8326, 8326, 8326, 8502, 2023, 8539, 8327, 7971, 7971, 7971, 7971, 7971, 7971, 7971, 7971, 7971, 8540, 8545, 140, 8550, 2222, 8954, 1606,12458, 8543, 8548, 2752, 8553, 1275, 8318, 8318, 8318, 8318, 8318, 8318, 8318, 8318, 8318, 3036, 1597, 1597, 7970, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7851, 1597, 1597, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 434, 12493,12493, 3077, 6535, 3039, 8540, 8223, 8223, 8223, 8223, 8223, 8223, 8223, 8223, 8223, 140, 8544, 257, 140, 3077, 2564, 8826, 1606, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2564, 1597, 1597, 8373, 8374, 8375, 8376, 8376, 8376, 8376, 8376, 8376, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3040, 3077, 8617, 8964, 12493, 3039, 8545, 8228, 8228, 8228, 8228, 8228, 8228, 8228, 8228, 8228, 1617, 8549, 140, 2564, 8501, 8501, 8501, 1606, 1597, 1597, 1597, 1597, 140, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8560, 1597, 1597, 2023, 8617, 784, 3636, 8675, 8563, 8560, 1618, 8566, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8569, 8565, 1606, 9498, 3077, 2520, 8566, 8278, 8278, 8278, 8278, 8278, 8278, 8278, 8278, 8278,12458, 8570, 2053,12458, 3637, 8495, 2564, 1606, 1597, 1597, 1597, 1597, 140, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1606, 1597, 1597, 8617, 8748, 8748, 8749, 8469, 8469, 8469, 8469, 8469, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2521, 784, 1079, 8571, 8532, 2520, 1275, 9407,12458, 1572, 8614, 8574, 8620, 898, 8184, 8184, 8184, 8184, 8184, 8184, 8629, 8634,12458, 1606, 1597, 1597, 3046, 1234, 7791, 8637, 8583, 140, 3077, 3077, 3077, 1080, 2023, 9464, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 3663, 8581, 1133, 2564, 2564, 2564, 139, 1606, 8620, 8617, 8221, 8617, 2023, 2023, 8599, 2023, 6392, 6392, 4324, 8632, 8136, 8222, 8222, 8222, 8222, 8222, 8222, 8222, 8222, 8222, 1606, 1606, 2527, 1606, 2524, 2524, 2524, 2524, 2524, 2524, 1597, 1597, 140, 1598, 2031, 1597, 1597, 1597, 5705, 5705, 1597, 1597, 1597, 8926, 9781, 8221, 8298, 8298, 8298, 8298, 8298, 8298, 8298, 8298, 8298, 1597, 1597, 1597, 1597, 1597, 1597, 8590, 3077, 12514, 8588, 139, 2032, 140, 6392, 3050, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8343, 2564, 8591, 8615, 8616, 1606, 1597, 1597, 1597, 1597, 1597, 8617, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5705, 2535, 1597, 3077, 3077, 3077, 293, 3077, 8634, 8692,12519,12631, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8638, 571, 2564, 2564, 2564, 3051, 2564,12721, 8317, 8317, 8317, 8317, 8317, 8317, 8317, 8317, 8317, 8593, 8661, 8617, 8617, 8617, 8880, 1606, 1597, 1597, 2541, 1597, 1597, 140, 1597, 3052, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2537, 2535, 1597, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3053, 3053, 3053, 3053, 3053, 3054, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 1606, 1597, 1597, 2541, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 1597, 1597, 6392, 1597, 2033, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8639, 2034, 1597, 434,11757, 464,12725, 1617, 8642,11758, 531, 6535, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8667, 8667, 257, 5705, 140, 2035,12730, 531, 3056, 8344, 8344, 8344, 8344, 8344, 8345, 8346, 8346, 8346, 8343, 8825, 1618, 270, 8850, 1606, 1597, 1597, 1607, 1597, 1597, 8595, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2036, 1597, 1597, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3058, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1606, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1597, 1597, 8860, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8705, 2535, 1597, 296, 8867, 6392,12734, 531, 6392, 7202, 8981, 8709, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3059, 8712, 8985, 1730, 3077, 2536, 8346, 8346, 8346, 8346, 8346, 8346, 8346, 8346, 8346, 8343, 6393, 1739, 5705, 8883, 8705, 5705, 2564, 1606, 1597, 1597, 1597, 1597, 1597, 7202, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 284, 2535, 1597, 8594, 8617, 531, 8136, 140, 8589, 1617, 8720, 8617, 3060, 1597, 1597, 1597, 1597, 1597, 1597, 7951, 8668, 8668, 8668, 7626, 3051, 8386, 8386, 8386, 8386, 8386, 8386, 8386, 8386, 8386, 7633, 8864, 9493,12739, 285, 8731, 8931, 1618, 1606, 1597, 1597, 2541, 1597, 1597, 7213, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 1600, 1600, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3063, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1606, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1597, 1597,12743, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 531,10747, 2744, 8136, 8149, 2222, 6392, 495, 8720, 3064, 1597, 1597, 1597, 1597, 1597, 1597, 8723, 7951, 8939, 496, 7626, 2540, 8386, 8386, 8386, 8386, 8386, 8386, 8386, 8386, 8386, 7633, 531, 8868, 8618, 7168, 8735, 8727, 5705, 1606, 1597, 1597, 2541, 1597, 1597, 8738, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 3077, 7169,12752, 3742, 8110,12756, 8723, 8679, 513, 3064, 1597, 1597, 1597, 1597, 1597, 1597, 3065, 8586, 2564, 531, 140, 2540, 8587, 1379, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 140, 8888, 1044, 8111, 4410, 8683, 1606, 1597, 1597, 2541, 1597, 1597, 1572, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 4411, 1597, 1597, 8980, 434, 9049, 8874, 140, 1234, 6560, 8731, 8757, 3060, 1597, 1597, 1597, 1597, 1597, 1597, 7213, 7989, 140, 257,12766, 3066, 8701, 8701, 8701, 8701, 8701, 8702, 8703, 8703, 8703, 531, 6778, 6778, 6778, 8760, 4455, 8828, 9304, 1606, 1597, 1597, 1597, 1597, 8764, 1598, 2542, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 3064, 1597, 1597, 1597, 1597, 1597, 1597, 2543, 2543, 2543, 2543, 2543, 2544, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 1606, 1597, 1597, 2541, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 1597, 1597, 7970, 1598, 1599, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 1601, 1602, 1600, 571, 571, 571, 571,12770, 7791, 531, 836, 8136, 1604, 1597, 1597, 1597, 1597, 1597, 1597, 8533, 8533, 8534, 1275, 8705, 1605, 8709, 6535, 784, 5021, 898, 3070, 3742, 7202, 307, 8712, 7970, 6562, 8922, 140, 8707, 2023, 8717, 1606, 1597, 1597, 1607, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1606, 1597, 1597, 5022, 140, 5048, 758, 4410, 4455, 8604, 8766, 8660, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8769,11482, 2564,12782, 5750, 3066, 4411, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 8933, 8136, 8682, 516, 8894, 140, 531, 1606, 1597, 1597, 1597, 1597, 1572, 1597, 2033, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8774, 2042, 1597, 8923, 8136, 3742, 3292, 8893, 1234, 7245, 8720, 8778, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7951, 8781, 12793, 140, 9383, 2043, 8136, 8726, 3072, 8703, 8703, 8703, 8703, 8703, 8703, 8703, 8703, 8703, 1078, 8757, 4410, 5218, 8904, 1606, 1597, 1597, 139, 139, 7989, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4411, 139, 139, 8915, 8684, 531, 9491, 8981, 5219, 5220, 8731, 8735, 139, 139, 139, 139, 139, 139, 139, 7213, 8738, 5221, 1572, 140, 572, 9294, 8733, 8739, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 8720, 8720, 8735, 1234, 8757, 139, 139, 139, 8766, 7951, 7951, 8738, 1572, 7989, 8816, 758, 8726, 8769, 8739, 8809, 8763, 8728, 8728, 8740, 8770, 9470, 140, 3073, 139, 139, 1234, 139, 836, 139, 139, 139, 139, 139, 139, 139, 8813, 139, 139, 2222, 4455, 455, 293, 516, 8729, 8729, 8741, 8940, 139, 139, 139, 139, 139, 139, 139, 8735, 8731, 1379, 8774, 8774, 572, 8788, 8792, 8809, 8738, 7213, 3074, 7245, 7245, 1044, 7257, 8795, 8733, 8889, 8776, 8136, 8740, 8742, 139, 139, 139, 2555, 2555, 531, 3079, 2555, 3080, 2555, 2555, 2555, 2555, 2555, 2555, 3081, 2555, 2555, 1070, 296, 8921,12994, 6562, 8865, 8875, 8741, 8743, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140, 13006, 139, 531, 8986, 3083, 8458, 8458, 8458, 8458, 8458, 8458, 8458, 8458, 8458, 8990, 8869, 1071, 4455, 8981, 8778, 1735, 8461, 3084, 2555, 2555, 2555, 2555, 2555, 8781, 2556, 3085, 2555, 2555, 2555, 8788, 8782, 2555, 2555, 2555, 8788, 8806, 139, 464, 7257, 140, 1736, 1225, 1742, 7257, 8027, 8790, 2555, 2555, 2555, 2555, 2555, 2555, 8957, 1737, 1743, 140,10914, 3086, 531, 8838, 8469, 8469, 8469, 8469, 8469, 8469, 8469, 8469, 8469, 1744, 140, 8884, 270, 5218, 9382, 2564, 2555, 2555, 2555, 2555, 2555, 1572, 2555, 3087, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8731, 3088, 2555,10990, 8301, 9299, 8886, 5219, 1234, 7213, 8806, 8105, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8027, 5221, 8742,13038, 8972, 3089, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 531, 140, 140, 168, 168, 168, 168, 610, 2564, 2555, 2555, 2565, 2555, 2555, 8743, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 2558, 2558, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 3092, 3092, 3092, 3092, 3092, 3093, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 2564, 2555, 2555, 2555, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 2555, 2555, 8829, 2556, 2557, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 2559, 2560, 2558, 8818, 8818, 8818, 8818, 8818, 8818, 8818, 8818, 8818, 2562, 2555, 2555, 2555, 2555, 2555, 2555,11857,10768, 140, 434, 13002, 2563, 8480, 8480, 8480, 8480, 8480, 8480, 8480, 8480, 8480, 1078, 1070, 8884, 8110, 8136, 8792, 257, 8475, 2564, 2555, 2555, 2565, 2555, 2555, 8795, 2556, 3094, 2555, 2555, 2555, 8806, 8796, 2555, 2555, 2555, 5218, 8916, 8986, 9496, 8027, 8890, 8866, 6300, 8105, 1071, 8111, 8812, 2555, 2555, 2555, 2555, 2555, 2555, 8917, 140, 1225, 8918, 8885, 3086, 8975, 5219, 8498, 8498, 8498, 8498, 8498, 8498, 8498, 8498, 8498, 1078, 140, 9236, 5221, 8958,13049, 2564, 2555, 2555, 2555, 2555, 2555, 2023, 2556, 2557, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 2559, 2560, 2558, 1234, 9504, 8991, 784, 1303, 1606, 8110, 1768, 8899, 2562, 2555, 2555, 2555, 2555, 2555, 2555, 3095, 1768, 151, 151, 151, 2563, 8991, 140, 8501, 8501, 8501, 8501, 8501, 8501, 8501, 8501, 8501, 8995, 8827, 139, 150, 1304, 8111, 2564, 2555, 2555, 2565, 2555, 2555, 2023, 2555, 3087, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 257, 3096, 2555, 1376, 9380,13182, 9073, 8136, 1606, 8970, 2210, 8910, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8891, 1768, 140, 455, 1377, 3097, 8564, 8564, 8564, 8564, 8564, 8564, 8564, 8564, 8564, 8929, 1042, 5904, 1078, 140, 8930, 8136, 8560, 2564, 2555, 2555, 139, 139, 2696, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 8927, 8872, 3292, 9645, 8981,11455, 7061, 2697, 5905, 139, 139, 139, 139, 139, 139, 139, 8766, 6392, 150, 2698, 531, 589,10694, 140, 8928, 8769, 566, 8871, 8596, 8596, 8596, 8596, 8596, 8596, 8596, 8596, 8596, 8771, 8110, 146, 139, 139, 139, 8839, 4756, 3956, 3099, 1250, 1250, 5705, 1250, 1617, 2573, 1250, 1250, 1250, 1250, 1250, 1250, 150, 1250, 1250, 8908, 9637, 8772,11741, 140, 566, 9027, 3922, 8111, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 8766, 8778, 140,13467, 3292, 2057, 2866, 898, 6562, 8769, 8781, 3106, 8840, 8907, 3954, 307, 8770, 8782, 9146, 8945, 140, 8771, 8783, 1250, 1250, 1250, 1250, 1250, 8892, 1250, 3112, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 4455, 1250, 1250, 983, 1572, 140, 5905, 9224, 8996, 8981, 8772, 8784, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 9000, 8985, 1308, 1234, 4599, 1625, 7851, 8613, 8613, 8613, 8613, 8613, 8613, 8613, 8613, 8613, 3570, 8830, 3570, 3956, 9235, 9483, 5906, 1250, 1250, 1250, 1250, 1250, 3077, 1250, 2060, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 8778, 1250, 1250, 9771, 8946, 9236, 1376, 9241, 2564, 8781, 3913, 8900, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 8901, 3570, 8783, 8605, 140, 1625, 8606, 1377, 8607, 3954, 150, 8332, 8608, 9036, 4625, 8609, 8610, 8611, 566, 1042, 8612, 8774, 8343, 1250, 1250, 1250, 2564, 531, 9259, 8784, 7245, 3113, 1617, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8785, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 8873, 2580, 3077, 8649, 8649, 8649, 8649, 8649, 8649, 8649, 8649, 8649, 1618, 1617, 140, 150, 3570, 8786, 140, 8652, 2564,13450, 8631, 566, 8668, 8668, 8668, 8668, 8668, 8668, 8668, 8668, 8668, 8818, 8818, 8818, 8818, 8818, 8819, 8820, 8820, 8820, 9636, 9236, 2555, 1618, 3114, 139, 139, 9492, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 3121, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139, 7877, 148, 3122, 139, 139, 139, 4286,13452, 139, 139, 139, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 9146, 150, 150, 139, 139, 139, 139, 139, 139, 566, 566, 9184, 3077, 9318, 162, 9236, 5904, 8745, 8745, 8745, 8745, 8745, 8745, 8745, 8745, 8745, 9240, 7264, 7264, 7264, 2564, 140, 139, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5905, 139, 139, 8820, 8820, 8820, 8820, 8820, 8820, 8820, 8820, 8820, 139, 139, 139, 139, 139, 139, 139, 8973, 8973, 8974, 8841,10448, 3124, 8851, 8750, 8750, 8750, 8750, 8750, 8750, 8750, 8750, 8750, 5906, 5091, 455, 3956, 5092, 140, 140, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 464, 139, 139, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 139, 139, 139, 139, 139, 139, 139, 3125, 8774, 9646, 8981,13450, 3124,13452, 8986, 9241, 3954, 7245, 8984, 5904, 8947, 4625, 8989, 270, 8776, 4642, 9258, 140, 4935, 8785, 139, 139, 139, 139, 139, 8842, 139, 163, 139, 139, 139, 139, 139, 139, 139, 8792, 344, 139, 3956, 9671, 1572, 5905, 8221, 8843, 8795, 1706, 8786, 139, 139, 139, 139, 139, 139, 139, 1617, 7633, 8797, 1707, 4937, 345, 3956, 3955,10025, 1706, 3292, 8669, 8669, 8669, 8669, 8669, 8669, 8669, 8669, 8669, 140, 1707, 5906, 139, 139, 139, 176, 8816, 9098, 8798, 1275, 3954, 1618, 8221, 307, 8991, 4625, 8343, 1708, 140, 3129, 139, 139, 8994, 139, 163, 139, 139, 139, 139, 139, 139, 139, 3954, 344, 139, 1708, 4455, 4625, 1275, 9561, 140, 8948, 139, 3923, 3140, 139, 139, 139, 139, 139, 139, 8906, 9226,13530, 4636, 9765, 345, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 3956, 3924, 9562, 784, 8846, 8847, 3956, 9387, 139, 139, 139, 176, 1287, 1287, 1287, 1287, 1287, 1288, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 959, 959, 8848, 959, 3141, 2092, 959, 959, 959, 959, 959, 959, 3954, 959, 959,13532, 8949, 4625, 3954,13530, 5903, 7200, 8950, 4625, 959, 959, 959, 959, 959, 959, 959, 8792, 8788, 140, 8996, 3292, 1658, 8849, 9001, 898, 8795, 7257, 8999, 9011, 8907, 5970, 9004, 8796, 8790, 4286, 9101, 9015, 8797, 8799, 959, 959, 959, 959, 959, 9107, 959, 1661, 959, 959, 959, 959, 959, 959, 959, 8788, 959, 959, 8136, 1018, 140, 4286, 9323, 9259, 7257, 8798, 8800, 959, 959, 959, 959, 959, 959, 959, 9263, 9098, 8799, 1349, 4599, 1282, 8806, 8806, 8934, 5971, 8343, 3956, 9471, 3956, 9318, 8027, 8027, 9104, 8852, 8935, 1020, 8670, 8812, 959, 959, 959,13532, 8814, 8814, 8800, 3156, 1665, 8671, 8671, 8671, 8671, 8671, 8671, 8671, 8671, 8671, 9264, 13530, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 9268, 1618, 8815, 8815, 140, 9236, 3954, 9016, 3954, 8981, 1617, 8951, 1275, 4625, 8672, 9019, 9240, 8984, 8952, 9318, 9323, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 9322, 9333, 1289, 9670, 1286, 1286, 1286, 1286, 1286, 1286, 139, 139, 1618, 144, 139, 139, 139, 139, 139, 139, 139, 139, 3161, 139, 139, 3162, 3163, 3164, 3165, 3165, 3165, 3165, 3165, 3165, 3166, 139, 139, 139, 139, 139, 139, 3167, 3168, 3168, 3168, 3168, 3169, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 146, 139, 139, 139, 3168, 3168, 3168, 3168, 3168, 3168, 3170, 3170, 3170, 3170, 3170, 3171, 3170, 3172, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 246, 246,13532, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 3183, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 2124, 246, 246, 246, 246, 246, 246, 3184, 3184, 3184, 3184, 3184, 3185, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 3184, 3184, 3184, 3184, 3184, 3184, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 3187, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3189, 8224, 8224, 8224, 8224, 8224, 8224, 3188, 3188, 3188, 3188, 3188, 3190, 1617, 898, 9125, 8068, 8110,13450, 4286, 4286,13452, 140, 9136, 8674, 8674, 8674, 8674, 8674, 8674, 8674, 8674, 8674, 9157, 3188, 3188, 3188, 3188, 3188, 3188, 446, 898, 7633, 8068, 140, 1618, 9318, 9361, 8069, 8111, 9334, 3197, 3198, 3199, 3200, 3200, 3200, 3200, 3200, 3200, 253, 9338, 8332, 8332, 9036, 9055, 8070, 1688, 1688, 1688, 1688, 1688, 1692, 8343, 8343, 8069, 3956, 8336, 8941, 9098, 9043, 784, 1343, 8071, 8113, 9686, 8942, 3956, 8343, 140, 784, 1079, 9310, 8070, 1688, 1688, 1688, 1688, 1688, 1688, 3201, 3202, 3203, 3204, 3204, 3204, 3204, 3204, 3204, 2696, 8071, 8855, 8844, 9098, 2023, 1344, 253, 253, 253, 253, 253, 256, 8343, 3954, 1080, 7626, 9161, 9157, 4625, 2697, 9146, 9684, 1606, 265, 3954, 9164, 7633, 9112, 9170, 4625, 8953, 2698, 139, 253, 253, 253, 253, 253, 253, 2648, 1345, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 1319, 9468,13450, 2023, 8332, 8961, 9055, 1685, 1685, 1685, 1685, 1685, 1686, 3292, 9174, 8343,13452, 8870, 8360, 8360, 8360, 1606, 9062, 9177, 8903, 8903, 8903, 8903, 8903, 8903, 8903, 8903, 8903, 140, 1685, 1685, 1685, 1685, 1685, 1685, 265, 265, 9374, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 3220, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 2159, 265, 265, 265, 265, 265, 265, 3221, 3221, 3221, 3221, 3221, 3222, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 3221, 3221, 3221, 3221, 3221, 3221, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 3224, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3226, 8977, 8977, 8977, 8977, 8977,10596, 3225, 3225, 3225, 3225, 3225, 3227, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 140, 9185, 9208, 9236, 507, 784, 1079, 140, 8751, 9190, 9213, 9239, 3225, 3225, 3225, 3225, 3225, 3225, 477, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 8752, 9689, 3234, 3235, 3236, 3237, 3237, 3237, 3237, 3237, 3237, 274, 1080, 1275, 9166, 9157, 9318, 9241, 1721, 1721, 1721, 1721, 1721, 1725, 7633, 9244, 8751, 9322, 9161, 9381, 139, 9159, 898, 9245, 8068, 9172, 4286, 9164, 140, 784, 2242, 9248, 8963, 4756, 9169, 1721, 1721, 1721, 1721, 1721, 1721, 3238, 3239, 3240, 3241, 3241, 3241, 3241, 3241, 3241, 307, 8956, 9166, 9366, 140, 140, 8069, 274, 274, 274, 274, 274, 277, 2243, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 2866, 8070, 9703, 140, 4286, 293, 9494, 4756, 776, 140, 8853, 274, 274, 274, 274, 274, 274, 2679, 8071, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 1361, 140, 9295, 9318, 531, 9259, 9157, 1718, 1718, 1718, 1718, 1718, 1719, 9262, 1572, 7633, 9495,10229, 9688, 2866, 9318, 8976, 8976, 8976, 8976, 8976, 8976, 8976, 8976, 8976, 9170, 9322, 1234, 12882, 1718, 1718, 1718, 1718, 1718, 1718, 505, 505, 140, 505, 3268, 505, 505, 505, 505, 505, 505, 505, 2708, 505, 505, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 505, 505, 505, 505, 505, 505, 505, 2708, 2708, 2708, 2708, 2708, 2709, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 8978, 8978, 8978, 8978, 8978, 8978,13450, 505, 9361, 8979, 505, 505, 505, 505, 505, 505, 505, 505, 505, 9365,11811, 140,13452,13450, 5712,10768, 505, 505, 505, 505, 505, 507, 3270, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 139, 139, 9407, 139, 3273, 139, 139, 139, 139, 139, 139, 139, 4756, 1759, 139, 898, 3956, 8068, 9051, 9051, 9051, 9051, 9051, 296, 139, 139, 139, 139, 139, 139, 139, 8944, 9174, 1078, 140, 898, 1390, 9264, 9269, 140, 782, 9177, 9279, 4756, 8854, 9267, 9272,13452, 9178, 8069, 9283, 140, 2866, 9179, 139, 139, 139, 139, 1769, 8862, 140, 9469, 4628, 3954, 9691, 140,13715, 8070, 4625, 899, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 4629, 9180, 9284, 4630, 2866, 8071, 9236, 9318, 1196, 4935, 9287, 1770, 140, 140, 9239, 9321, 140, 5647, 1771, 6336, 9077, 1572, 1416, 9510, 3280, 8326, 8326, 8326, 8326, 8326, 8326, 1572, 8712, 1772, 2451, 1773, 9323, 1774, 9685, 1234, 1775, 1776, 9361, 7027, 9332, 1777, 140, 9297, 1778, 4937, 1779, 5648, 1780, 9365, 1781, 1782, 1783, 1769, 8977, 8977, 8977, 8977, 8977, 8977, 8977, 8977, 8977, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 9174, 3570,13770, 140, 9334, 7202, 9339, 9011, 1275, 9177, 9307, 4935, 9337, 1770, 9342, 9375, 1572, 140, 2023, 3281, 1771, 9179, 3077, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 4103, 1572, 1234, 1772, 1606, 1773, 9318, 1774, 2564, 9563, 1775, 1776, 140, 9318, 9321, 1777, 9180, 9298, 1778, 4937, 1779, 9321, 1780, 9466, 1781, 1782, 1783, 1769, 9039, 9039, 9039, 9039, 9039, 9039, 9039, 9039, 9039, 8343, 9040, 9040, 9040, 9040, 9040, 9041, 9042, 9042, 9042, 8343, 9042, 9042, 9042, 9042, 9042, 9042, 9042, 9042, 9042, 8343, 140, 1770, 9361, 2023, 307, 9385, 140, 139, 1771, 140, 9364, 1483, 1484, 1484, 1483, 1483, 1483, 1483, 1483, 1483, 9303, 1606, 9913, 1772, 1133, 1773, 3282, 1774, 9300, 9317, 1775, 1776, 140, 784, 3636, 1777, 9301,13775, 1778, 9386, 1779, 5712, 1780, 284, 1781, 1782, 1783, 1769, 9051, 9051, 9051, 9051, 9051, 9051, 9051, 9051, 9051, 9058, 9058, 9058, 9058, 9058, 9058, 9058, 9058, 9058, 8343, 3637, 9429, 140, 9309, 8336, 9049, 9106, 9106, 9106, 9106, 9106, 9106, 1770, 9361, 285, 8343, 9318, 9672, 1606, 1771, 9059, 9059, 9059, 9059, 9059, 9060, 9061, 9061, 9061, 8343, 3077, 9361, 9361, 9558, 1772, 7202, 1773, 3283, 1774, 9364, 9364, 1775, 1776, 9318, 9366, 1275, 1777, 140, 2564, 1778, 531, 1779, 9369, 1780, 9398, 1781, 1782, 1783, 1769, 9061, 9061, 9061, 9061, 9061, 9061, 9061, 9061, 9061, 8343, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9078, 9366, 784, 2981, 1770, 507,13920, 9318, 8884,13930, 9372, 1771, 9370, 140, 9093, 9094, 9095, 9096, 9096, 9096, 9096, 9096, 9096, 9318, 9318, 9703, 2212,10652, 1773, 9316, 1774, 9321, 9318, 1775, 3284, 9322, 2982, 9372, 1777, 8105, 9321, 1778, 9694, 1779, 9227, 1780, 9318, 1781, 1782, 1783, 2213, 1769, 898, 2023, 1234, 6392, 6392, 9322, 8336, 3285, 9106, 9106, 9106, 9106, 9106, 9106, 9106, 9106, 9106, 8343, 8336, 1606, 9106, 9106, 9106, 9106, 9106, 9106, 9106, 9106, 9106, 8343, 12863, 1770, 9790,13942, 3663, 5705, 5705, 9373, 1771, 9132, 9132, 9132, 9132, 9132, 9132, 9132, 9132, 9228, 9228, 6392, 9318, 6392, 4324, 1772, 9407, 1773, 140, 1774, 9321, 140, 1775, 1776, 9410, 9411, 9378, 1777, 2211, 1572, 1778, 9376, 1779, 9415, 1780, 6392, 1781, 1782, 1783, 3291, 6392, 3292, 6392, 5705, 6392, 5705,13958, 1234, 1768, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9153, 9153, 9153, 9153, 9153, 9154, 9155, 9155, 9155, 5705, 9378, 9229, 9229, 9229, 5705, 3293, 5705, 3077, 5705, 9577, 9378, 9426, 3294, 9155, 9155, 9155, 9155, 9155, 9155, 9155, 9155, 9155, 1572, 3077, 9429, 2564, 9407, 3295, 9378, 3296, 3297, 3298, 9432, 9392, 3299, 3300, 9573, 9425, 9378, 3301, 1234, 2564, 3302, 898, 3303, 9378, 3304, 9378, 3305, 3306, 3307, 2223, 9229, 9229, 9229, 9229, 9229, 9229, 9229, 9229, 9229, 2224, 9700, 9230, 9230, 9230, 9230, 9230, 9230, 9230, 9230, 9230, 140, 1572, 6392, 4935, 4935, 3008, 9434, 9311, 9312, 3077, 9379, 2225, 1572, 9296, 9437, 9585,13997, 6392, 2226, 1234, 1970, 6392, 8111, 3608, 3316, 1572, 1572, 2564, 2023, 9513, 1234, 9394, 2979, 2227, 5705, 2228, 9429, 2229, 9517,11380, 2230, 2231, 9581, 4937, 4937, 2232, 1606, 9433, 2233, 5705, 2234, 9395, 2235, 5705, 2236, 2237, 2238, 2223, 9233, 9233, 9233, 9233, 9233, 9233, 9233, 9233, 9233, 2224, 6392, 9234, 9234, 9234, 9234, 9234, 9234, 9234, 9234, 9234, 140, 1572, 9434, 9360, 9360, 9360, 9360, 9360, 9378, 3077, 9378, 2225, 1572, 9438, 9378, 3674,14003, 9388, 2226, 1234, 3077, 9439, 5705, 9449, 2023, 3077, 9454, 2564, 9377, 9442, 1234, 9453, 9595, 2227, 9457, 2228,10323, 2229, 2564, 2745, 2230, 2231, 1606, 2564, 9519, 2232, 9393, 3317, 2233, 7093, 2234, 9399, 2235, 9522, 2236, 2237, 2238, 139, 139, 9591, 139, 2239, 139, 139, 139, 139, 139, 139, 139, 9791, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 3077, 9795, 139, 139, 139, 139, 139, 139, 139, 784, 5021, 898, 2023, 3077, 1787, 9775, 7168, 9403, 2564, 140, 3338, 9282, 9282, 9282, 9282, 9282, 9282, 9282, 9282, 9282, 1606, 2564, 139, 139, 139, 139, 1070, 9279, 3077, 3077, 7169, 9406, 9485, 5022, 531, 5048, 7202, 140,14008, 9780, 9390, 253, 9389, 307, 9465, 9391, 2564, 2564, 140, 703, 9396, 2564, 6300, 5750, 1411, 1411, 1411, 1411, 1411, 1412, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1795, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 9796, 9606, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 9800, 2023, 9315, 9315, 9315, 9315, 9315, 9315, 9315, 9315, 9315, 3077, 1071, 9401, 9401, 9788, 1617, 9602, 1617, 1606, 7168, 9510, 9527, 2023, 9473, 3077, 9484, 140, 9544, 2564, 8712, 7951, 1413, 3077, 1410, 1410, 1410, 1410, 1410, 1410, 1070, 1606, 531,11435, 7169, 531, 140, 9397, 1618, 9548, 1618, 2564, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 6392, 2767, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9531, 1071, 1617, 1078, 9544, 9404, 9405, 9352,11639, 9534, 9360, 9360, 9360, 9360, 9360, 9360, 9360, 9360, 9360, 9482, 9541, 5705, 9474,14015, 9565, 531, 3077, 434, 140, 8738, 9791, 2023, 1597, 7989, 1618, 3342, 783, 783, 784, 785, 786, 783, 783, 783, 2564, 257, 783, 783, 783, 1606, 293, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 9378, 783, 783, 783, 783, 783, 783, 9378, 9639, 9702, 8670, 1617, 789, 9371, 9371, 9371, 9371, 9371, 9371, 9371, 9371, 9371, 9475, 9475, 9476, 9687, 9402, 9402, 9402, 9366, 139, 783, 783, 783, 783, 783, 784, 785, 786, 783, 783, 783, 1618, 1618, 783, 783, 783, 3077, 464, 3350, 3350, 3350, 9692, 8884, 7061, 8672, 7243, 9527, 9541, 783, 783, 783, 783, 783, 783, 2564, 7951, 8738, 140, 9801, 789, 151, 151, 151, 151, 151, 151, 151, 151, 151, 9805, 531, 531, 270, 8105, 9569, 4455, 9663, 139, 783, 783, 783, 139, 139, 9572, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 150, 150, 3353, 3354, 3354, 3354, 3354, 3354, 3354, 3354, 3354, 2271, 139, 139, 139, 139, 139, 139, 3354, 3354, 3354, 3354, 3354, 3355, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 3354, 3354, 3354, 3354, 3354, 3354, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 3357, 3358, 3358, 3358, 3358, 3358, 3358, 3358, 3358, 3359, 1617, 9555, 9555, 9556,14021, 140, 3358, 3358, 3358, 3358, 3358, 3360, 9452, 9452, 9452, 9452, 9452, 9452, 9452, 9452, 9452, 531, 1275, 140, 1078,14030, 140,11381, 9449, 9559, 9559, 9560, 1618, 3358, 3358, 3358, 3358, 3358, 3358, 3362, 3362, 3362, 3362, 3362, 3362, 3362, 3362, 3362, 150,10319, 1275, 9796, 9510, 8631, 329, 3362, 3362, 3362, 3362, 3362, 3363, 8712, 274, 7211, 9519, 9481, 1617, 9878, 9516, 329, 733, 8751, 9579, 9522, 1078, 140, 3742, 9475, 9475, 9476, 9523, 8769, 3362, 3362, 3362, 3362, 3362, 3364, 3367, 3368, 3368, 3368, 3368, 3368, 3368, 3368, 3368, 2790, 1618, 140, 531, 9801, 9519, 1275, 3368, 3368, 3368, 3368, 3368, 3369, 4410, 9522, 3742, 9489, 7213, 7213, 8751, 7245, 9523, 140, 329, 329, 307, 9524, 8598, 2053, 140, 140, 4411, 140, 434, 3368, 3368, 3368, 3368, 3368, 3368, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 4410, 4455, 257,10435, 9525, 9519, 139, 3370, 3370, 3370, 3370, 3370, 3371, 9527, 9522, 9531, 9541, 507, 4411, 8136, 455, 9589, 7951, 9642, 9534, 8738, 9524, 8136, 3742, 9529, 8781, 9535, 9547, 9488, 3370, 3370, 3370, 3370, 3370, 3372, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1825,10608,14039, 9690, 9525, 9531, 9531, 150, 150, 150, 150, 150, 162, 4410, 9534, 9534, 9551, 7213, 9551,10772,10114, 9535, 329, 329, 329, 307, 9536, 9536, 140, 140, 140, 4411, 531, 434, 150, 150, 150, 150, 150, 150, 3377, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 3378, 2802, 140, 257, 140, 9537, 9537, 9490, 3378, 3378, 3378, 3378, 3378, 3379, 9600, 9614, 9618, 511, 9565, 531, 9791,14046, 8884, 8795, 8027, 9621, 9640, 7989, 9794, 9557, 9557, 9557, 9557, 9557, 9567, 3378, 3378, 3378, 3378, 3378, 3378, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 1275, 434, 9695, 8105, 9527, 9527, 9541, 3380, 3380, 3380, 3380, 3380, 3381, 7951, 7951, 8738, 9693, 10446, 9806, 257, 9529, 7245, 9547,14050,10443, 9538, 9538, 9549, 307, 9810, 9643, 513, 464, 140, 3380, 3380, 3380, 3380, 3380, 3382, 3388, 3389, 3389, 3389, 3389, 3389, 3389, 3389, 3389, 2816, 3290, 4455, 9539, 9539, 9550, 9541, 3389, 3389, 3389, 3389, 3389, 3390, 9569, 9579, 8738, 9589, 9696, 270, 9598, 3290, 9598, 9572, 8769, 9648, 8781, 307, 9549, 3955, 9576, 9584, 140, 9594, 140, 3389, 3389, 3389, 3389, 3389, 3389, 3391, 3391, 3391, 3391, 3391, 3391, 3391, 3391, 3391, 4455, 7245, 4455, 140, 9728, 9550, 9565, 3391, 3391, 3391, 3391, 3391, 3392, 140, 9764, 7989, 531, 1379, 898, 531, 9553, 9553, 9553, 9553, 9553, 9553, 9553, 9553, 9553, 1044, 531, 4455, 464,10649, 3391, 3391, 3391, 3391, 3391, 3393, 2840, 1275, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1839, 983, 9682, 1078, 9579, 9579, 9579, 1836, 1836, 1836, 1836, 1836, 1838, 8769, 8769, 8769, 270, 473, 9811, 1308, 7255, 9584, 9647, 9855,12793, 507, 9586, 9586, 531, 9815, 9806, 9644, 140, 8110, 1836, 1836, 1836, 1836, 1836, 1836, 3402, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 2309, 4455, 7257, 9879, 9587, 9587, 9589, 3403, 3403, 3403, 3403, 3403, 3404, 9600, 140, 8781, 8111, 8122, 8136, 9698, 8339, 7257, 8795, 511, 9741, 140, 8136,10914, 307, 9605, 531, 3290, 4455, 140, 3403, 3403, 3403, 3403, 3403, 3403, 3406, 3407, 3407, 3407, 3407, 3407, 3407, 3407, 3407, 3408, 3290, 4455, 7257, 9589, 9589, 3955, 3407, 3407, 3407, 3407, 3407, 3409, 8781, 8781, 140, 495, 9912, 531, 9609, 9594, 8136, 513, 9742, 9796, 9596, 9596, 140, 496, 8136, 2696, 140, 9799, 4455, 3407, 3407, 3407, 3407, 3407, 3407, 3416, 3417, 3418, 3419, 3419, 3419, 3419, 3419, 3419, 4455, 2697, 9676, 9597, 9597, 9600, 9600, 1849, 1849, 1849, 1849, 1849, 1853, 2698, 8795, 8795, 9614, 9768, 9801, 9826,11477, 9609, 9605, 9930, 4638, 8027, 9804, 9607, 307, 531, 9831, 8110, 9616, 140, 1849, 1849, 1849, 1849, 1849, 1849, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 1470, 9986, 4455, 9678, 9618, 9608, 9614, 1846, 1846, 1846, 1846, 1846, 1847, 9621, 8111, 8027, 8008, 8008, 8008, 9853, 9622, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 9400, 531, 140, 10069, 9884, 1846, 1846, 1846, 1846, 1846, 1846, 139, 139, 3077, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 2696, 9699, 464, 9677,10025, 2564, 1742, 9905, 8136, 150, 139, 139, 139, 139, 139, 329, 8136, 140, 1743, 9745, 9679, 332, 9402, 9402, 9402, 9402, 9402, 9402, 9402, 9402, 9402, 9664, 2698, 1744, 9950, 3290,10059, 270,14135, 139, 139, 139, 322, 3077, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 9673, 3290, 9956, 1735, 10063,10442, 3290, 9726, 2564, 3425, 139, 139, 3077, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 330, 150, 3290, 140,10135, 1736, 9950, 2564,10059, 8631, 7987, 150, 139, 139, 139, 139, 139, 329, 1737, 9782, 9782, 9783, 140, 332, 9832, 5904, 9554, 9554, 9554, 9554, 9554, 9554, 9554, 9554, 9554, 9836, 140, 9729,10134,14136, 140, 139, 139, 139, 322, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5905, 139, 2864, 9610, 9610, 9610, 9610, 9610, 9610, 9610, 9610, 9610, 139, 139, 139, 139, 139, 139, 139, 9784, 9784, 9784, 9784, 9784, 3442, 9649, 9557, 9557, 9557, 9557, 9557, 9557, 9557, 9557, 9557, 5906, 6595, 1275, 3570,14137, 140,12871, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5218, 139, 139,14138,10520, 784, 2242, 9772,10146, 9674, 9600, 9618, 139, 139, 139, 139, 139, 139, 139, 8795, 9621, 1379, 1070, 8144, 3444, 5219, 8136, 9622, 784, 8846, 8847, 9607, 9623, 1044, 8136, 9427, 3445, 3290, 5221, 2243,14139,10694, 139, 139, 139, 5904, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 9428, 1071, 3290, 776, 9608, 9624, 140,11753, 8848, 9683, 3445, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5905, 139, 2864, 5903, 9774, 140, 3925,10787, 2564, 3570, 9930, 3926, 139, 139, 139, 139, 139, 139, 139, 3446, 8849, 9965,14140, 9987, 3442, 9610, 9610, 9610, 9610, 9610, 9611, 9612, 9612, 9612,10004, 5906,10151,10223,14141, 1572, 10228, 9651, 2866, 139, 139, 139, 139, 758, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1234, 139, 2864, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 139, 139, 139, 139, 139, 139, 139, 9618, 9614,10025, 516, 8934, 3452, 8136,10070, 9806, 9621, 8027, 784, 1303,10053, 8136, 9737, 9809, 9616,10077,10138, 3570, 9623, 9625, 2866, 139, 139, 139, 139, 758, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9697, 139, 2864, 2023,14148, 1572, 10305, 1304,14149,10177, 9624, 9626, 139, 139, 139, 139, 139, 139, 139, 3453, 9614, 1606, 516, 1234, 3452, 257, 784, 1343, 898, 8027, 7264, 7264, 7264, 7264, 7264, 7264, 7264, 7264, 7264, 9811, 9641, 9625, 2866, 139, 139, 139, 139, 9814, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9701, 139, 2864, 1344, 1070, 1018, 140,10233, 7989, 2222, 9758, 9626, 139, 139, 139, 139, 139, 139, 139, 2222, 140, 265, 140, 1349, 3456, 5904, 9631, 9632, 9633, 9634, 9634, 9634, 9634, 9634, 9634, 9665, 9658, 1071, 1345, 140, 1020,10230, 2866, 139, 139, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5905, 139, 2864, 8136, 434, 1376, 9650,12376, 9738,10108, 9773, 8136, 139, 139, 139, 139, 139, 139, 139, 3457,10116, 9736, 257, 8136, 3456, 1377,10605, 6593, 784, 8846, 8847, 8136, 8907, 8136, 898, 5906, 8068, 1042, 3290, 9816, 9743, 8136, 2866, 139, 139, 139, 139, 9819, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3290, 139, 2864,10694, 9680, 8848,10140,10140,10141,14150,10146, 8069, 139, 139, 139, 139, 139, 139, 139, 1617, 9826,10150, 1672, 9659, 3459, 3460,11739, 1572, 9829, 8070, 9472, 9472, 9472, 9472, 9472, 9472, 9472, 9472, 9472, 9860, 8849, 8136, 2866, 139, 139, 1234, 8071, 9666, 8343, 8925, 9748, 1618, 3460, 139, 139, 10600, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1706, 139, 139, 1376, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 139, 139, 139, 139, 139, 139, 139, 8936, 1706, 140, 8136, 1377, 3463, 8136, 784, 8846, 8847, 9652, 8136, 9751, 1707, 8136, 3570, 1042, 8921,14153, 9744, 8136, 140, 9746, 139, 139, 139, 139, 139, 8136, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9654, 139, 139, 8848,10182,10634, 9739, 5647, 9681, 6336, 1708, 8136, 139, 139, 139, 139, 139, 139, 139, 8136, 9655, 5903,11481, 9832, 3463, 9750,10151, 784, 8846, 8847, 9660, 9835, 9656, 9740, 784, 8846, 8847,10155, 8849, 8136, 5683, 5648, 139, 139, 139, 139, 139, 8136, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9837, 139, 2864,14266, 8848, 2023, 9661,11848, 9840, 1597, 9657, 8848, 139, 139, 139, 139, 139, 139, 139, 1617, 9920, 4286, 5903, 5685, 3465, 3466, 10247,10236, 9925, 5903, 9477, 9477, 9477, 9477, 9477, 9477, 9477, 9477, 9477, 8849, 9662, 9888, 2866, 139, 139,11901, 8849, 9930,10247, 1606, 8343, 1618, 3466, 139, 139, 9954, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 203, 139, 139, 139, 139, 139, 139, 3469, 3469, 3469, 3469, 3469, 3470, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 3468, 3468, 3468, 3468, 3468, 3468, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 9941,10237,10226,10310,10318, 4286, 140, 1275, 8862, 8343, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 8921, 11567, 3913, 8136,10252, 140, 1572, 5705, 140, 9754, 3955, 8136, 140, 9724, 9724, 9724, 9724, 9724, 9724, 9724, 9724, 9724,11688, 9753, 1234, 3469, 3469, 3469, 3469, 3469, 3469, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 3473, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 3474, 2893,14268, 10694, 3077, 3290, 4639, 3955, 3474, 3474, 3474, 3474, 3474, 3475, 9766, 9727, 9767, 8136, 8929, 3955, 140,10156, 2564, 8930, 3290, 8136, 9966,10325, 9767, 6679, 4640, 898,10160, 8068, 9971, 3474, 3474, 3474, 3474, 3474, 3474, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3477, 3925, 4286, 2747, 9770,10893, 3926, 3476, 3476, 3476, 3476, 3476, 3478, 2222, 5310, 8069, 9860, 9864, 9667, 9865, 9865, 9865, 9865, 9865, 9865, 8343, 5310, 140, 8343,10270, 9478, 6680, 9862, 8070, 3476, 3476, 3476, 3476, 3476, 3479, 375, 9479, 9479, 9479, 9479, 9479, 9479, 9479, 9479, 9479, 8071, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3483, 9752, 1618, 10598, 9888,14352, 8136, 3482, 3482, 3482, 3482, 3482, 3484, 8343, 8136, 9480, 9864, 9945, 9860,14243, 9890, 6392, 9864, 8924, 9888, 4286, 9948, 8343, 784, 1079, 898,10312, 9668, 8343, 3482, 3482, 3482, 3482, 3482, 3482, 3488, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 3489, 2380, 9778,10139,10247, 5705, 3955, 3955, 3489, 3489, 3489, 3489, 3489, 3490, 1080, 1572, 8069, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 140,10715, 8136, 8149,11743,14361, 139, 1234, 8070, 3489, 3489, 3489, 3489, 3489, 3489, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3493, 8071,10437, 3077, 8336, 9860, 9941, 3492, 3492, 3492, 3492, 3492, 3494, 4628, 8343, 8343, 9987, 784, 1079, 784, 1079, 2564, 9761, 9958, 9998, 8907, 140,10325, 5712, 9866, 4629, 3290, 9961, 4630, 3492, 3492, 3492, 3492, 3492, 3492, 3500, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 2392, 3290, 1080,10439, 1080, 9888, 10332, 3501, 3501, 3501, 3501, 3501, 3502, 140, 8343, 9941, 140, 9989,10011,10025, 139, 898, 139, 5712, 8343,10005, 10015,10030, 3925, 9893, 9779, 9943, 9777, 3926, 3501, 3501, 3501, 3501, 3501, 3501, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3505,10364, 140,10777,11833,10647, 899, 3504, 3504, 3504, 3504, 3504, 3506, 9830, 9830, 9830, 9830, 9830, 9830, 9830, 9830, 9830, 9739,10027, 1196,10070, 140, 139,10440, 9826, 898,10054, 9914,10075, 3504, 3504, 3504, 3504, 3504, 3504, 3512, 3513, 3514, 3515, 3515, 3515, 3515, 3515, 3515, 9740, 140,10853,10225,10037, 4103, 8136, 1916, 1916, 1916, 1916, 1916, 1920, 9164, 8136, 3008,14384, 9864, 9747, 9865, 9865, 9865, 9865, 9865, 9865, 9865, 9865, 9865, 8343, 9385,10414,10320,10361, 3608, 1916, 1916, 1916, 1916, 1916, 1916, 3516, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 2406, 9785, 9785, 9785, 9785, 9785, 9785, 3517, 3517, 3517, 3517, 3517, 3518, 140, 9386, 3077,10725, 610, 8926, 8136, 8149, 9864, 140, 9865, 9865, 9865, 9865, 9865, 9865, 9865, 9865, 9865, 8343, 2564, 3517, 3517, 3517, 3517, 3517, 3517, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3521, 8978, 8978, 8978, 8978, 8978, 8978, 3520, 3520, 3520, 3520, 3520, 3522,10239,10239, 8136, 8149,10726,10415,14314, 2222, 9864, 140, 9892, 9892, 9892, 9892, 9892, 9892, 9892, 9892, 9892, 8343, 2023, 3520, 3520, 3520, 3520, 3520, 3520, 3528, 3529, 3530, 3531, 3531, 3531, 3531, 3531, 3531, 9749, 140, 1606, 5712, 9941,10892, 8136, 1927, 1927, 1927, 1927, 1927, 1931, 8343, 8136, 9864, 9945, 9892, 9892, 9892, 9892, 9892, 9892,10078, 8928, 9948, 8343, 7868, 9954, 140,10369, 10083, 9953,10072, 1927, 1927, 1927, 1927, 1927, 1927, 2438, 10107, 3532, 3532, 3532, 3532, 3532, 3532, 3532, 3532, 3532, 1533,10416, 140,10332,10037,10040,10046, 1924, 1924, 1924, 1924, 1924, 1925, 9164,10044,10049,10745, 8136, 8149,10177, 10043, 9784, 9784, 9784, 9784, 9784, 9784, 9784, 9784, 9784, 10181,10694,10665, 140, 1924, 1924, 1924, 1924, 1924, 1924, 139, 139, 140, 139, 836, 139, 139, 139, 139, 139, 139, 139, 455, 139, 139, 2023, 9848, 9848, 9848, 9848, 9848, 9848,10037,10056, 139, 139, 139, 139, 139, 139, 139, 9164, 9177, 1606, 1572,11738, 572, 140, 9786, 9786, 9786, 9786, 9786, 9786, 3533,10108, 531, 9787,11649, 507, 10246, 1275, 1234,10115, 139, 139, 139, 139, 139, 140, 139, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 3534, 3534, 3535,10145,10427,10519,10182,10046, 10187, 139, 139, 139, 139, 139, 139, 139,10049,10186, 10653,10191,14568, 339,10202,10050, 9789, 9789, 9789, 9789, 9789, 9789, 9789, 9789, 9789,10207, 511, 140, 140, 3077, 140, 139, 139, 139, 139, 139, 139, 140, 139, 2937, 139, 139, 139, 139, 139, 139, 139, 2564, 344, 139, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 139, 139, 139, 139, 139, 139, 139,11689,10658,10325,12518, 9864, 345, 9892, 9892, 9892, 9892, 9892, 9892, 9892, 9892, 9892, 8343,10694,13898, 2939,14247, 531,10117, 140, 139, 139, 139, 176, 139, 139,10120, 139, 163, 139, 139, 139, 139, 139, 139, 139,10146, 344, 139, 3536, 3536, 3537, 784, 2981,10149,10208,10056,10247, 139, 139, 139, 139, 139, 139, 139, 9177,10212,10151,10251, 2023, 345, 139,10062, 841,10136,10154, 841, 841, 841, 841, 841, 841, 841, 841, 841,10463, 2982, 1606, 139, 139, 139, 176, 3545, 3546, 3546, 3546, 3546, 3546, 3546, 3546, 3546, 2953,10309,14142, 1234,14143,10467,10530, 3546, 3546, 3546, 3546, 3546, 3547, 841, 9937, 9937, 9937, 9937, 9937, 9938, 9939, 9939, 9939, 9939, 9939, 9939, 9939, 9939, 9939, 9939, 9939, 9939,10463,10525, 3546, 3546, 3546, 3546, 3546, 3546, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3077, 9427,10938,14655, 9958, 9958,10252, 3548, 3548, 3548, 3548, 3548, 3549, 9961, 9961, 7633,10156,10269, 2564,10161, 9962, 10177,10025,10182,10159, 9963, 9963,10164,10325,10180,10030, 10185, 3077, 3077, 3548, 3548, 3548, 3548, 3548, 3550, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1951, 2564, 2564, 9964, 9964, 1275,10694, 1948, 1948, 1948, 1948, 1948, 1950, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 10187, 9231,10192,10202,10325,10326,10328, 140,10190,10521, 10195,10205, 1948, 1948, 1948, 1948, 1948, 1948, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1208,11749, 3077, 3077,10270,10208, 1572, 1944, 1944, 1944, 1944, 1944, 1945, 10211, 139,10274,11832,14063, 1730, 9231, 2564, 2564,12793, 139, 1234,10032,10033,10034,10035,10035,10035,10035,10035, 10035, 1944, 1944, 1944, 1944, 1944, 1944, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 8361, 1572,10632,10306, 10056,10275,10213, 3563, 3563, 3563, 3563, 3563, 3564, 9177, 10216, 2023,10279,14604, 140, 1234,10454, 9915, 9915, 9915, 9915, 9915, 9915,10232, 531, 8712, 9916,10227,10535, 1606, 3563, 3563, 3563, 3563, 3563, 3563, 139, 139, 140, 139, 836, 139, 139, 139, 139, 139, 139, 139,10046, 139, 139,10247,10472, 784, 3636,10536, 140,10049,11013,10250, 139, 139, 139, 139, 139, 139, 139, 9847,10252,10051, 140,14606, 572,10476, 2866,14604,10255,10247, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 3637,10251,10256, 139, 139, 139, 784, 5021,10238,10052,10259,10332, 140, 10472,10240,10240,10240, 5683, 1606, 3567, 139, 139,10336, 139, 139, 139, 139, 139, 139, 139, 139, 139, 567, 139, 139, 2023, 140, 1617,14606, 2023, 5022,10324, 3035, 10337, 139, 139, 139, 139, 139, 139, 139, 8301,10046, 1606,10344,14675, 569, 5685, 2564,14677,11476,10049, 9880, 9880, 9880, 9880, 9880, 9880,10050, 1618, 6392, 9881,10270, 10051, 139, 139, 139, 139, 3569,10275,10273,10313,10314, 140, 513, 6392, 9385,10278,10320, 175, 175, 175, 175, 175, 175, 175, 175, 175, 2023,10425,10052, 3077, 5705, 10280,10290, 175, 175, 175, 175, 175, 204,10283,10294, 10295,10247,10322, 1606, 5705,10364, 2564, 9386,10298,10250, 10332,10308,10659,10311,14675,14677,10368,10331,10335, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 1225, 1225, 3077, 1225, 1225, 2984, 1225, 1225, 1225, 1225, 1225, 1225,10436, 1225, 1225,10337, 10438, 898,14675,10694, 2564,14237,10369,10343, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10056,10056,10373,10374,10345, 2455,10325,10364, 898, 9177, 9177, 3575,10348, 140,10378, 10367,10062, 140, 140, 5683, 3663,10064,10064, 1234, 1225, 1225, 1225, 1225,10307, 1225, 3581, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 4324, 1225, 1225, 2023, 5048,10410,10599, 9467,14677, 3634,10065,10065, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3077, 3077, 5685, 5750,10389, 1978,10093,10093, 10093,10093,10093,10093,10093,10093,10093,10394,10428,10545, 2564, 2564,10369, 5683,10096, 1234, 1225, 1225, 1225, 1225, 10372, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2512, 1225, 1225, 3077,10325, 2023,10546,14604, 8710, 139, 7168,10374, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10377, 140, 2564, 140, 5685, 1978,10137,10137,10137,10137,10137, 10137,10137,10137,10137, 7169, 7949,10325,10379,10325, 4286, 10389, 329, 1234, 1225, 1225,10382, 1572, 140,10392, 5683, 3582, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 14606, 2991,10395,11273, 1234,10224,10224,10224,10224,10224, 10224, 2023, 1572,10399, 3077,10557,10142,10142,10142,10142, 10142,10142,10142,10142,10142,10395, 1572,10400, 9791, 5685, 1234,10458, 2564,10398,10446,10403,10316, 1572, 139, 9795, 10461,10443,10558, 140, 1234, 139, 3583, 1225, 1225,10447, 1226, 3588, 1225, 1225, 1225, 1234,10411, 1225, 1225, 1225, 10240,10240,10240,10240,10240,10240,10240,10240,10240,11491, 10317,10454, 1225, 1225, 1225, 1225, 1225, 1225, 3077, 434, 8712, 2023,10788, 1581,10206,10206,10206,10206,10206,10206, 10206,10206,10206,10792, 9478, 531, 2564, 257,10469, 1606, 10202, 1234, 1225, 1225, 1225, 1225, 1225, 9522, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10325, 1993, 1225, 3077, 7168, 1617,10573,10325, 6300, 1618,10329,10329, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 7989,10454, 2564, 9480, 8712, 2467,10422, 7951, 3589, 7169, 8712, 3077, 140, 329, 10574, 531, 140,10456, 1618, 140,10429,10325,14604, 1234, 1225, 1225, 1999, 1225, 1225, 2564, 1225, 2468, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1995, 1993, 1225, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 2469, 2469, 2469, 2469, 2469, 2470, 2469, 2469, 2469, 2469, 2469, 3590, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 1234, 1225, 1225, 1999, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 1225, 1225,10412, 1225, 3591, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10589, 1583, 1225,12789,10513,10513,10513,10513,10513,10330,10330,10330, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10480,10492,11368, 3077, 2023, 1584, 1275, 140,10585, 9534, 8738, 3077,10450, 10450,10450,10450,10450,10451,10452,10452,10452, 2564, 1606, 1234, 1225, 1225, 1235, 1225, 1225, 2564, 1225, 2468, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1585, 1993, 1225, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2474, 2473, 2473, 3592, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1234, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1617, 1993, 1225, 9791,10534,10516,10516,10517, 9427,10535,11829, 9794, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10362,10362, 10363,10458,10490, 1994,10469, 1275, 3742,10496, 329, 3593, 10461, 1618, 1739, 9522, 140,10536,10499,10466,10469, 3077, 10475, 1234, 1225, 1225, 1225, 1225, 1225, 9522, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2564, 1225, 1225, 4410,10426, 531,14606, 3742,10638,14604,14606,10480, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3595, 9534, 4411, 3596, 7951, 3597,10523, 1617,10486, 3598, 329, 307, 3599, 3600, 3601, 9572, 140, 3602,10419,10419,10420,10483, 4410, 1234, 1225, 1225,10432,10241,10241,10241,10241,10241,10241,10241, 10241,10241,10544, 8343, 1078, 1618, 4411,10545,10487,14604, 10914, 3603, 1225, 1225, 2023, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228,10607,10633,10434, 10648, 9791, 1606, 1617,10546,10483, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 3604,10423,10423,10424,10788, 3003,10452, 10452,10452,10452,10452,10452,10452,10452,10452,10792, 455, 140,14606, 140,10538,14836, 1618, 1234, 1225, 1225, 1225, 1225, 1225, 8769, 1226, 2000, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2479, 2478, 2478, 3605, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1234, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1225, 1225, 140, 1574, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10550, 1225, 1225, 140,10518, 10518,10518,10518,10518, 8781,11277,10480, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 3595, 9534,10492, 3596,11479, 3606, 1275, 1617,10650, 3598,10556, 8738, 3599, 3600, 3601,10557, 531, 3602,10421,10421,10421,10421,10421, 1579, 1225, 1225, 531,10244,10244,10244,10244,10244,10244,10244,10244,10244, 10572, 1078, 9767, 1618, 293,10573,10558, 3742, 3954, 3603, 1225, 1225, 2023, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 464,10651, 3954,10788, 434, 1606, 8025,10574, 8027, 2480, 1225, 1225, 1225, 1225, 1225, 1225, 4410, 7951, 140,10490, 140, 1998, 257, 329,10433, 329, 307, 3607,10566, 140,10610, 140, 531, 293, 4411, 270, 4455, 8795, 4455, 1234, 1225, 1225, 1999, 1225, 1225, 10604, 1226, 3611, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 2480, 1225, 1225, 1225, 1225, 1225, 1225, 2001, 2001, 2001, 2001, 2001, 2002, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1234, 1225, 1225, 1999, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 1225, 1225,14838, 1574, 1225, 1575, 1225, 1225, 1225, 1225, 1225, 1225, 1576, 1225, 1225,14919,14246,10654,11743, 14919, 1617, 3954, 5218,10637, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10423,10423,10424,10492,10496, 1578,10583,10660, 464, 3954, 7989, 3613, 8738,10499,10601, 9621, 5219, 307, 296,10494,10500, 1618, 140, 1579, 1225, 1225, 1225, 1225, 1225, 5221, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 516, 1225, 1225, 434, 270,10766, 8884, 434,10694, 2053,10626,14959, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 10469,10469, 257,10523,10523, 2482, 257, 8136, 8149, 9522, 9522, 3614, 9572, 9572,10602,11740,10475, 8932, 8105,10529, 10656,10477,10477, 1234, 1225, 1225, 1225, 1225, 531, 1225, 3591, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10480, 1591, 1225,14959, 464, 9084, 9084, 9084, 8027, 9534,10478,10478, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10609, 140,10488, 14959, 531, 1592,10718,10627, 1078,10245,10245,10245,10245, 10245,10245,10245,10245,10245,10538, 4455, 270, 495,10550, 1234, 1225, 1225, 2013, 8769, 2492,10489, 2023, 8781, 464, 496,10540,10788, 8136, 8149,10552, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 1606, 3021,10293,10293,10293, 10293,10293,10293,10293,10293,10293, 1078, 2493, 1078,10639, 1078,14919,14919,10290, 270,10327,10327,10327,10327,10327, 10327,10327,10327,10327,10393,10393,10393,10393,10393,10393, 10393,10393,10393,10788, 140,10793, 3077,10798, 7061, 3954, 10389, 3622, 2012, 2012, 2013, 2012, 2492, 3623, 2012, 2012, 2012, 2012, 2012, 2012, 2564, 2012, 2012,10722, 3954, 1078, 14919, 3954,14919,11483,10763, 8631, 2012, 2012, 2012, 2012, 2012, 2012, 2012,10480,10496,10566,10583,11902, 3023,10788, 3954, 8027, 9534,10499, 8795, 9621,10788,10791, 307,10486, 10500,10568,10588, 140,10488,10501, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 2492, 3623, 2012, 2012, 2012, 2012, 2012, 2012, 4455, 2012, 2012,10758,11946, 8926, 8136, 8149,10812, 10592,10489,10502, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 3024,10496, 140, 140, 140, 3023,10635, 784, 1303, 898, 10499, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 4455, 140,10501, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 284, 2012, 2012, 1304, 758, 983,11274, 3954, 140,13624, 1379,10502, 2012, 2012, 2012, 2012, 2012, 2012, 2012,10492,10492, 257, 1044, 1308, 2501,14984, 3954,10592, 8738, 8738, 3625,10606, 11480,10603, 307,10494, 516,11283, 285, 140,10503,10503, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 4455, 2012, 2012,10759, 2023, 1070,10645, 1742, 8884,11208,10504,10504, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1743,10664,14984, 1606,14989, 2501, 10330,10330,10330,10330,10330,10330,10330,10330,10330, 1744, 10612, 1617,10511, 1071, 8105,10640, 140, 2012, 2012, 2012, 10657, 3077,10417,10417,10417,10417,10417,10417,10417,10417, 10417,10538, 3626, 2013, 8884, 2492,10550,10770,11451, 2564, 8769, 3077,10613, 1618, 1275, 8781, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 531, 3627,10511,10788, 2564, 531, 841, 841, 841, 841, 8105,10791, 2493, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037,10614, 3037, 1617, 10510,10510,10510,10510,10510,10510,10510,10510,10510, 2023, 10418,10418,10418,10418,10418,10418,10418,10418,10418,10538, 10823, 1275, 1379,14234,10655,10788, 3290, 1606, 8769, 8343, 8110, 1618,10566,10791, 1044,10540,10814,10583,10855, 3928, 10547, 8795, 140, 3638, 1597, 1597, 9621, 1597, 1597, 3639, 1597, 1597, 1597, 1597, 1597, 1597, 531, 1597, 1597,10642, 10646, 531, 8111,10854,10719,10887,10720,10548, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8136, 8149, 8136, 8149, 2697, 3039,12632,10513,10513,10513,10513,10513,10513,10513,10513, 10513, 2698,10717, 151, 151, 151,14989,10662, 1606, 1597, 1597, 1597, 1597, 1275, 1597, 1597, 3639, 1597, 1597, 1597, 1597, 1597, 1597, 1735, 1597, 1597,10593,10593,10593,10593, 10593,10593,10593,10593,10593, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3040,11559,11559,11560,10788, 3039, 1736,10514, 10514,10514,10514,10514,10514, 8929,10636,10792,10515, 140, 8930, 1737, 8136, 8149, 1275, 1606, 1597, 1597, 1597, 1597, 1275, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8110, 1597, 1597,10593,10593,10593,10593,10593,10594,10595, 10595,10595, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10538, 10550,13013,10724,14989, 2520, 140,10793,10793, 8769, 8781, 3644, 8110, 8111, 8931, 8149,10796,10552,10797,10661, 1275, 10547,10559, 1606, 1597, 1597, 1597, 1597, 8941, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10550, 1597, 1597, 3954, 3954,10948, 8111,11568,11952, 8781,10548,10560, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1617, 2696,10559, 3954, 3954, 2520,14984,10952, 8806, 8806, 8806,10421,10421,10421, 10421,10421,10421,10421,10421,10421,10793, 2697, 8113, 1606, 1597, 1597,10566,10663,10796,10560,11640, 1768, 1618, 2698, 10948, 8795,10765,10793, 3645, 1597, 1597,10511, 1598, 2031, 1597, 1597, 1597,10575,10797, 1597, 1597, 1597,10512,10512, 10512,10512,10512,10512,10512,10512,10512,10566, 140,10955, 1597, 1597, 1597, 1597, 1597, 1597, 8795,10583,10641, 1275, 10576, 2032,14984,10568, 140,10753, 9621, 3651,10575,10687, 2738,10793,10511,10588,10788, 1768,10914, 1078,10590, 1606, 1597, 1597, 1597, 1597, 1597, 2217, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10576, 2535, 1597,10793,11379, 3913,10788,11648, 2222,10991,10591,10796, 3060, 1597, 1597, 1597, 1597, 1597, 1597, 3652,10688, 8360, 8360, 8360, 3051, 10798,10788,10518,10518,10518,10518,10518,10518,10518,10518, 10518,10802,10792, 455, 4590,14984,14984, 1606, 1597, 1597, 2541, 1597, 1597, 1275, 1597, 3052, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2537, 2535, 1597, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 3060, 1597, 1597, 1597, 1597, 1597, 1597, 3053, 3053, 3053, 3053, 3053, 3054, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 1606, 1597, 1597, 2541, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 1597, 1597, 6392, 1597, 2033, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10583, 2034, 1597, 8929, 140,15093, 140,11558, 8930, 9621, 8136, 8149, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1275, 8929,10590, 5705,11373, 2035, 8930,12442,10746, 8149,10788, 3654,10595,10595,10595, 10595,10595,10595,10595,10595,10595,10792,11453, 1606, 1597, 1597, 1607, 1597, 1597,10591, 1597, 3052, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2036, 2535, 1597, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3058, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1606, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1597, 1597, 1376, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5904, 2535, 1597, 1376,10779,10779,10779,10779,10779,10814, 1377,10798, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10801,10832,11561, 1042, 1377, 2536, 140,10788, 3656, 784, 8846, 8847, 1070, 5905, 1275,10791, 1042,10788, 140,10069,10804,10788,10615, 1606, 1597, 1597, 1597, 1597, 1597,10791, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600,10644, 8848, 10643, 1071,11049,10804, 5906,10855,10788, 1600, 1597, 1597, 1597, 1597, 1597, 1597,10791,11674,10866, 5903,10938, 3658, 10596,10899, 9634, 9634, 9634, 9634, 9634, 9634, 9634, 9634, 9634,15098,10905, 531, 8849,10623,10771, 1606, 1597, 1597, 1597, 1597, 1597, 140, 1598, 2542, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3063, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1606, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1597, 1597, 140, 1598, 3660, 1597, 1597, 1597,11737, 140, 1597, 1597, 1597, 1706,10596,10694, 9634, 9634, 9634, 9634, 9634,10597, 9631, 9631, 9631, 1597, 1597, 1597, 1597, 1597, 1597,15110,11454, 1706,11673,10823, 2032, 140,10814, 784, 1343, 898, 5904, 8068, 8343, 1707, 10826,10723,11691,10069, 1078,10825,10833, 140, 1606, 1597, 1597, 1597, 1597, 1597,10838, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 1344, 5905, 8069, 11116,11172,10617, 293, 1708,10630, 3064, 1597, 1597, 1597, 1597, 1597, 1597,11900, 2751, 265, 8936, 8070, 2540, 2752, 2222, 3661,10616, 784, 8846, 8847,10756,10621, 3570, 3570, 8136, 8149, 1345, 5906, 8071, 9744, 1606, 1597, 1597, 2541, 1597, 1597, 3954, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10764, 1597, 1597,10146,11221, 8848,10694, 1672, 10624, 3954,10914,10823, 3060, 1597, 1597, 1597, 1597, 1597, 1597, 3071, 8343,10942,15110, 5903, 3066, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10691,10826, 4641,11641, 10861,11743, 8849, 4642, 1606, 1597, 1597, 1597, 1597, 8343, 1598, 2542, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 3064, 1597, 1597, 1597, 1597, 1597, 1597, 2543, 2543, 2543, 2543, 2543, 2544, 2543, 2543, 2543, 2543, 2543, 3665, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 1606, 1597, 1597, 2541, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 1597, 1597, 3954, 1598, 3667, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 1601, 1602, 1600,10855,13526, 140,15145,12229, 10748, 3954,10749,10864, 1604, 1597, 1597, 1597, 1597, 1597, 1597,10750, 2023, 507, 8136, 8149, 1605,10596,10751, 9631, 9631, 9631, 9631, 9631, 9631, 9631, 9631, 9631, 4641, 3570, 1606, 3570,11478, 4642, 1606, 1597, 1597, 1607, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9654, 1597, 1597,11290,11692, 1275,11226, 8927,11221, 9654, 3570, 8927, 3060, 1597, 1597, 1597, 1597, 1597, 1597,10721, 9655, 8136,10752,10956, 3066, 8136, 8149, 3668, 898, 9655, 10926, 8928, 9656, 3570,10963, 8928, 9864,11221,10823, 9948, 11566, 9656, 1606, 1597, 1597, 1597, 1597, 8343, 1597, 2033, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9654, 2042, 1597, 11256, 140, 1018,15145, 531,15145, 9654, 9657,10618, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9657, 9655,15110, 2866, 1349, 2043,10867, 784, 8846,10625, 9655, 3669,10628, 9656, 10872, 784, 2242,10619, 3570,10861, 3570, 1020, 9656, 1606, 1597, 1597, 139, 139, 8343, 139, 836, 139, 139, 139, 139, 139, 139, 139, 9654, 139, 139, 8848, 140,10864, 140,11261,10769,11221, 9657, 2243, 139, 139, 139, 139, 139, 139, 139, 9657, 9655, 5903, 4286,10899, 572,10861, 12595,10914, 9864, 776,10861,10902, 9656, 8343, 8343,10919, 784, 1079, 8849, 8343,10914,10863, 139, 139, 139,10916, 12617, 140,10919,11291, 3670, 139, 139,10943, 139, 1485, 139, 139, 139, 139, 139, 139, 139,10929, 139, 139, 15110, 9657,10620,15110, 1080,11705,10933,10935,10945, 139, 139, 139, 139, 139, 139, 139,10938, 9961,10956,10964, 3671, 572, 139, 898, 898, 8068,10961,10969,10774, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 9767, 139, 139, 139, 2555, 2555, 3954, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3677, 2555, 2555, 8069, 899, 9541, 9541, 9541,15110, 3954,10926,10926, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9948, 9948, 8070, 1196,10991, 3679,10958, 10932, 464, 1730, 898, 8853, 8068,10692,10989,11012, 531, 4641,10631, 8071,10894,10991, 4642, 2564, 2555, 2555, 2555, 2555, 2555,10996, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11672, 2555, 2555, 284,11667, 8069, 9786, 9786, 9786, 9786, 9786, 9786, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8339,10998,10993,15213, 8070, 3682, 1617,11848, 140, 11002,11014, 5970, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 8071, 285, 2564, 2555, 2555, 2555, 2555,10629, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1618, 2555, 2555, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3683, 4599, 784, 1079, 140, 3682, 5971,11466,10784,10784,10784,10784, 10784,10784, 3077,10775,10775,10775,10775,10775,10775,10935, 10945, 2564, 2555, 2555,10945, 3684, 3685, 140,10938, 9961, 2564,11687,10693, 9961, 1080,10939,10951, 3926, 3686, 3686, 3686, 3686, 3686, 3686, 3686, 3686, 3686,15220, 531, 531, 11256,11450, 139,11221, 3687, 3687, 3687, 3687, 3687, 3688, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 2564,10993, 3689, 11221, 3686, 3686, 3686, 3686, 3686, 3686, 2555, 2555,11017, 2556, 3085, 2555, 2555, 2555, 784, 1079, 2555, 2555, 2555, 10779,10779,10779,10779,10779,10779,10779,10779,10779,11026, 15227,11049, 2555, 2555, 2555, 2555, 2555, 2555, 3691,10935, 11032, 140,11056, 3086, 9589, 9589, 9589,11823,10938, 1080, 10828,10829,10830,10831,10831,10831,10831,10831,10831, 140, 10940, 2564, 2555, 2555, 2555, 2555, 2555, 139, 2555, 2555, 3080, 2555, 2555, 2555, 2555, 2555, 2555, 3081, 2555, 2555, 11018, 9385, 1572,10320,10776,11051,11116,10941,11025, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11089,11123, 9935, 140, 1234, 3692,11026,11033,10780,10780,10780,10780,10780,10780, 11031,11036,11220,10781, 531, 9386,11853,14780,11383, 2564, 2555, 2555, 2555, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3090, 2555, 2555, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3694, 3694, 3694, 3694, 3694, 3695, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 2564, 2555, 2555, 2555, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 2555, 2555,11268, 2555, 3087, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140, 3088, 2555,11049, 9880, 9880, 9880, 9880, 9880, 9880,11125,11054, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3696, 3077,11132, 1572,12589, 3089, 140,11118,10782,10782,10782,10782,10782, 10782,10782,10782,10782,15235,11171, 2564, 140, 1234,12618, 2564, 2555, 2555, 2565, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11386, 3697, 2555,11051, 9915, 9915, 9915, 9915, 9915, 9915,11064,11057, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9164, 9703,11771, 3077,13105, 3698, 140,11172,10783,10783,10783,10783,10783,10783,10783, 10783,10783, 140,11182,11772, 531, 2564,11773, 2564, 2555, 2555, 2555, 2555, 2555, 140, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 2558, 2555, 2555, 2555, 2555, 2555, 2555,12620,12884, 9703,11183,15246, 3702,11064, 11068,10785,10785,10785,10785,10785,10785,11187, 9164,11071, 10786, 9600, 9600, 9600, 531,11066, 2564, 2555, 2555, 3703, 2555, 2555, 140, 2556, 3704, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 3705, 3705, 3705, 3705, 3705, 3706, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 2564, 2555, 2555, 3703, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 2555, 2555,11073, 2556, 2557, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 2559, 2560, 2558,11024,11024, 11024,11024,11024,11024,11024,11024,11077, 2562, 2555, 2555, 2555, 2555, 2555, 2555,10935,10945,11068,11079, 140, 2563, 11091,11847, 3709,10938, 9961,11071,10049, 1739,11271, 9177, 10939,10951,11076,11073,11064,10940,10953, 2564, 2555, 2555, 2565, 2555, 2555, 9164, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1572,11678, 531,15260, 13039,15289,10941,10954,11079, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11082,10049, 1234, 140,10146, 3711,10803,10803, 10803,10803,10803,10803,10803,10803,10803,10150, 531, 4286, 4286, 4286,11095,11086,10798, 2564, 2555, 2555, 2555, 2555, 2555,11098, 2555, 3087, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12619, 3096, 2555,15292, 531,11296,11322,11327, 4103, 11082,11217,11091, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3712, 9177,15295, 1572,11221, 3097,10807,10807,10807,10807, 10807,10807,10807,10807,10807,11225, 531,11221,11693, 5712, 11267, 1234,11750, 2564, 2555, 2555, 1617, 140, 8302, 8302, 8302, 8302, 8302, 8302, 8302, 8302, 8302,11059,11059,11059, 11059,11059,11059,11059,11059,11059,11394,11267,10694, 140, 507,15298, 140, 1630, 1630, 1630, 1630, 1630, 1631, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1250, 1250,10143, 1250, 3718, 2573, 1250, 1250, 1250, 1250, 1250, 1250,13012, 1250, 1250,11060,11060,11060,11060,11060,11061,11062,11062,11062, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 140, 531,15302, 1572,12229, 2057,11226,10895,10895,10895,10895,10895,10895, 10895,10895,10895,10143,11230,11392,11645,14917, 1234,12608, 1250, 1250, 1250, 1250, 1250, 140, 1250, 2060, 1250, 1250, 1250, 1250, 1250, 1250, 1250,10945, 1250, 1250, 8343, 3077, 434, 784, 2981,11211, 9961,11848,11079, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 139,10049,10953, 2564, 257, 1625, 11694, 140,11085, 139,11284,10921,10922,10923,10924,10924, 10924,10924,10924,10924,11116, 2982, 2023, 1250, 1250, 1250, 11118,11231,11121,10954, 3733, 2064, 1617,11125,11124, 9085, 11650, 296,11235, 1234, 1606,11130,11819, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999,11133,11149,11127, 1618,10694, 898, 464,11270,11138,11153,11154,11221, 140,11062,11062, 11062,11062,11062,11062,11062,11062,11062,11225, 1632,11091, 1629, 1629, 1629, 1629, 1629, 1629, 1617,10000, 9177,11214, 11214,11215, 7168,11742, 3008,11093, 270, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115,11155, 3115,11095, 1275, 1572,11172, 3608, 140,11160,11221, 7169,11098, 1618,11181, 11079,11079,11095,11095,11099,11091,11225,11183, 1234,10049, 10049,11098,11098,11470, 9177,11186,11085,11188,11099,10146, 11221,11087,11087,11100,11100,11191,11102,10149,11224,13889, 12713, 507, 3734, 139, 139,11642, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,11088,11088, 11101,11101, 140,11103,11218,11218,11219, 139, 139, 139, 139, 139, 139, 139,11226,11231, 434,14115,11236, 3738, 11221,11221,11229,11234,11209, 1572,11239,11256,11224,11224, 15305,14146,11210, 531, 257,11259,14147, 139, 139, 139, 139, 139, 139, 1234, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 3740, 177, 177, 177, 177, 177, 139, 139, 140, 139, 3747, 139, 139, 139, 139, 139, 139, 139,11256, 139, 139, 8146, 15193, 6392,15312, 140,11763,11256, 8136,11260, 139, 139, 139, 139, 139, 139, 139,11091,11260,11256,11256,11261, 3124,11261,11221,11221, 9177,11259,11259,11264,11953,11221, 11224,11093,11265, 5705,11225,11221,11102,11224, 139, 139, 139, 139, 139,11224, 139, 3747, 139, 139, 139, 139, 139, 139, 139,11221, 139, 139, 5647, 5647, 139, 6336, 7093, 5712,11291,11103,11225, 139, 139, 139, 139, 139, 139, 139, 3125,11295, 1572, 140,11296, 3124,11152,11152, 11152,11152,11152,11152,11152,11152,11152,11300,11399, 5712, 5648, 5648, 1234,11280,11149, 139, 139, 139, 139, 139, 11272, 139, 163, 139, 139, 139, 139, 139, 139, 139, 11291, 344, 139,11279,15315,13173,11394, 1617,11294,10000, 11280,11296, 3752, 139, 139, 139, 139, 139, 139,11299, 9084, 9084, 9084, 531, 345,11301,11322,11212,11212,11212, 11212,11212,11212,11212,11212,11212,11305,11326, 5712, 1618, 5712, 5712, 139, 139, 139, 176, 139, 139, 1572, 144, 139, 336, 139, 139, 624, 139, 139, 139, 337, 139, 139, 784, 3636,11467,10242,11394, 1234,11437,11442, 140, 139, 139, 139, 139, 139, 139, 139,11216,11216,11216, 11216,11216, 589,11281, 5712, 140,11213,11213,11213,11213, 11213,11213,11213,11213,11213, 3637, 2023,11301, 1572,11327, 146, 139, 139, 139,11306,11304,14367, 1572,11371,10242, 11331,11394,11309, 1606, 1606, 7168, 1234,11285,11285,11286, 12377,11469, 590, 959, 959, 1234, 959, 3787, 959, 959, 959, 959, 959, 959, 959,11322, 959, 959, 2023, 7169, 2023,11698,11437,11325,11332,11394,11327, 959, 959, 959, 959, 959, 959, 959,11330,11336, 1606, 434, 1606, 1282, 11347,11216,11216,11216,11216,11216,11216,11216,11216,11216, 140,11352,11394, 511,11666, 257,15323, 959, 959, 959, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,11646, 3791, 139,11332,11699,11468, 464, 2023, 1234,11387,11388,11335, 139, 139, 139, 139, 139, 139, 139,11337,11347,11353,11353,11358, 3792, 1606,11394,11340, 11350,11356, 3077,11361,11399,11357,11397,15326, 513,11372, 531,15334,11408, 270, 139, 139, 139, 139, 139, 139, 2564, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3793, 3794, 139, 3795, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3796, 3797, 139, 139, 139, 139, 139, 139, 3796, 3796, 3796, 3796, 3796, 3798, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 139, 139, 139, 3799, 3796, 3796, 3796, 3796, 3796, 3796, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3791, 6392, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 139,11579,11374,11374,10480,10480,10480, 3793, 3793, 3793, 3793, 3793, 3809,11246,11246,11246,11246,11246, 11246,11246,11246,11246, 5705,10316,10316, 139, 139,11701, 11580,11249, 3077,11394,11376,11376, 3793, 3793, 3793, 3793, 3793, 3793, 246, 246,11398, 251, 449, 246, 246, 246, 2564, 8736, 246, 246, 246,11378, 1225, 329,11393,10317, 10317, 8111, 6392, 140, 140,11399, 2124, 246, 246, 246, 246, 246, 246,11375,11375,11375,11409,11410, 256,11266, 11266,11266,11266,11266,11266,11266,11266,11266,11414,11683, 15337,11394, 531,12441, 5705,11261, 257, 246, 246, 246, 246, 246,11398, 251, 449, 246, 246, 246,15347, 1377, 246, 246, 246,11369,11369,11369,11369,11369,11369, 898, 6300, 1042,11394,11410, 2126, 246, 246, 246, 246, 246, 246,11413,11415,11398, 2023,11394, 256,11394,11437,11493, 11418,11370,11437,11397,11782,11397, 784, 5021,10461,11441, 11440, 434, 1606, 3663, 257, 246, 246, 246, 3821, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3822, 3189,11783, 257, 8712, 4324, 531,11437, 3822, 3822, 3822, 3822, 3822, 3823, 5022,11440, 140,11385,11704, 531,12894,11643,11437,11269, 11269,11269,11269,11269,11269,11269,11269,11269, 2564,11441, 11437, 3822, 3822, 3822, 3822, 3822, 3822, 446,11440,11442, 1572,11436,11436,11436,11436,11436, 516,11445, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 253, 1234,14187, 12715,12865, 3077,12865, 3824, 3824, 3824, 3824, 3824, 3825, 11351,11351,11351,11351,11351,11351,11351,11351,11351,11442, 2564,11394,11394,11586, 1275,11448,11347,11394,11545,11397, 11446, 3824, 3824, 3824, 3824, 3824, 3826, 2648,11398, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123,11593,11549, 11587, 7061,11448,12894,11601, 2123, 2123, 2123, 2123, 2123, 2125,11425,11425,11425,11425,11425,11425,11425,11425,11425, 11394,11394,11484,14199,11612,11594,11545,11428,11397,11397, 11487,11602, 2123, 2123, 2123, 2123, 2123, 2123, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 1319, 307,11394, 11484,11613, 2555, 140, 2119, 2119, 2119, 2119, 2119, 2120, 11398,11490,10694,12894,11452, 8767, 898,11787,11282,11282, 11282,11282,11282,11282,11282,11282,11282, 140,11788,11626, 12911, 2119, 2119, 2119, 2119, 2119, 2119, 265, 265, 2023, 272, 480, 265, 265, 265, 4455,11748, 265, 265, 265, 5048,11496, 8339,11449, 3742, 3742,11627, 1606, 1617,11902, 11500, 2159, 265, 265, 265, 265, 265, 265, 5750,11463, 11463,11464, 140, 277, 293, 1078,11474,15544,11287,11287, 11287,11287,11287,11287,11287,11287,11287,11493, 4410, 4410, 1618, 265, 265, 265, 265,11502,10461, 3742, 8343, 2023, 13896,11690,11833,11499,11505,11902, 4411, 4411, 278, 265, 265, 6392, 272, 480, 265, 265, 265, 1606,11475, 265, 265, 265,11375,11375,11375,11375,11375,11375,11375,11375, 11375, 4410,11502, 2161, 265, 265, 265, 265, 265, 265, 11841,11505,11510, 5705,12841, 277,11696, 8884,11506, 4411, 11833, 9522,11389,11389,11389,11389,11389,11389,11389,11389, 11389,11837, 8712, 265, 265, 265, 265,11514,11493, 307, 11473,11833, 140, 3077, 140, 507,11517,10461, 8105,11836, 278, 3851, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3852, 3226, 2564, 531,12793, 9703,15548,15354, 3852, 3852, 3852, 3852, 3852, 3853, 151, 151, 151, 151, 151, 151, 151, 151, 151,11390,11390,11390,11390,11390,11390,11390,11390, 11390, 9707,11524, 1617, 3852, 3852, 3852, 3852, 3852, 3852, 477, 9534,12911, 3077,11460,11460,11460,11460,11460, 9703, 464, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 274, 2564,14232, 5218, 140, 1618,11677, 3854, 3854, 3854, 3854, 3854, 3855,11447,11447,11447,11447,11447,11447,11447, 11447,11447,11528,11542,11570, 270,11651, 1672, 5219,11442, 12516,11531,10499, 9572, 3854, 3854, 3854, 3854, 3854, 3856, 2679, 5221, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 2158, 1078,15549,12794, 8631,11502,11502,11510, 2158, 2158, 2158, 2158, 2158, 2160,11505,11505, 9522, 8146,11833, 1617, 11578,11506,11764,11512, 8136,11579,11507,11507,11833,11837, 11465,11465,11465,11465,11465, 2158, 2158, 2158, 2158, 2158, 2158, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 1361, 1618,11580,11508,11508,11619,11510, 2154, 2154, 2154, 2154, 2154, 2155,10694, 9621, 9522,10583,10583,10583,11825, 140,11391,11391,11391,11391,11391,11391,11391,11391,11391, 531, 140,10955,11744, 2154, 2154, 2154, 2154, 2154, 2154, 291, 291, 3077, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291,12596,11585,11745,11592,11848, 2564,11586,11514,11593, 291, 291, 291, 291, 291, 291, 291,11517,11697, 8884,14255, 9703, 3888, 8769,11518,11436, 11436,11436,11436,11436,11436,11436,11436,11436,11587, 140, 11594,11595,11524, 8738, 291, 291, 291, 291, 3268, 329, 3077, 9534, 9707, 140, 8105, 140, 2708, 4455,11526, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2564,13040, 9703, 4455,11719,15550,11847, 2708, 2708, 2708, 2708, 2708, 2709, 2708, 2708, 3891, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 514, 514, 10612, 514, 758, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514,13039,10514,10514,10514,10514,10514,10514, 12894,11528, 514, 514, 514, 514, 514, 514, 514, 1617, 11531,11600,10613, 140, 3898, 1275,11601,11532,11848, 782, 11456,11456,11456,11456,11456,11456,11456,11456,11456,11860, 8738, 2866, 514, 514, 514, 514, 329,11524,15551,11514, 11457, 1618, 140,11602,14184, 531, 9534,10614,11517, 3899, 1769,11458,11458,11458,11458,11458,11458,11458,11458,11458, 11519, 531, 1617,11554,11554,11554,11554,11554,11554,11554, 11554,11554, 1618,11460,11460,11460,11460,11460,11460,11460, 11460,11460, 1770, 8769, 8738,11459, 140,11520, 1379, 1771, 329, 307, 3903,11514, 1618, 140, 140,11833, 531,12865, 1044,11510,11517,15438, 1772,11836, 1773, 8110, 1774,11518, 9522, 1775, 1776, 4455,11519,11510, 1777,11512, 1617, 1778, 12791, 1779,11521, 1780, 9522, 1781, 1782, 1783, 3904,11461, 11461,11461,11461,11461,11461,11686,11521,11611,11462, 8111, 1617,11520,11612, 1070,11563,11563,11563,11563,11563,11522, 1618,11465,11465,11465,11465,11465,11465,11465,11465,11465, 1770,11542,11528,11522,11528, 1275,11524, 1771,11552,11613, 10499,11531, 1618,11531, 329, 9534, 1071,11548,11532,11524, 140,11703, 1772,11533, 1773,11533, 1774,11535, 9534, 1775, 1776, 140, 140,11542, 1777,11526, 8779, 1778,11813, 1779, 11535, 1780,10499, 1781, 1782, 1783, 1769,11542, 140,11542, 11534,10612,11534,11552,11536,11570,10499, 531,10499, 329, 307,12375,12440,11548, 9572, 140, 4455,11536,11550,11625, 11550,11572,11570, 1735,11626,11619,12894,15552, 1770,11911, 1070, 9572,10694,10613, 9621, 1771,11554,11554,11554,11554, 11554,11555,11556,11556,11556,11551, 531,11551, 1736, 531, 1772,11627, 1773,11676, 1774,11866,11902, 1775, 1776,11746, 11652, 1737, 3905, 1071,11747, 1778,11873, 1779,10614, 1780, 14195, 1781, 1782, 1783, 1769,11556,11556,11556,11556,11556, 11556,11556,11556,11556,11562,11562,11562,11562,11562,11562, 11562,11562,11562,11563,11563,11563,11563,11563,11563,11563, 11563,11563, 8146, 8769,11814, 1275, 1770, 8148,11765, 8136, 307, 8781,11603, 1771, 1275, 140,11564,11564,11564,11564, 11564,11564,11619, 140, 140,11565,15553,11595, 1772, 140, 1773, 9621, 1774, 4455, 307, 1775, 1776, 1275,11621, 140, 3906, 4455, 4455, 1778, 8781, 1779, 8781, 1780,11603, 1781, 1782, 1783, 1769, 307,13622, 307, 140, 4455, 140, 531, 140,11604,11604,11604,11604,11604,11604,11604,11604,11604, 1078, 8793,11679, 8795, 4455, 8795, 4455,11614, 4455, 140, 11675, 8146, 307, 140, 1770, 140, 8148, 140,11795, 140, 10612, 1771,11604,11604,11604,11604,11604,11605,11606,11606, 11606, 4455, 140, 4455, 495, 4455, 1772, 4455, 1773,12521, 1774, 284, 898, 1775, 1776,10612, 496,11653, 1777, 3907, 2866, 1778,10613, 1779,11685, 1780,10694, 1781, 1782, 1783, 1769,11606,11606,11606,11606,11606,11606,11606,11606,11606, 8795,11614,11619,15560, 1379,11619, 983,10613, 307, 285, 11751, 9621, 140, 140, 9621, 531, 1044,10614,11621, 455, 8146,11752, 1770,11628, 1308, 8148,11628, 8136,11767, 1771, 4455, 4455,11615,11615,11615,11615,11615,11615,11615,11615, 11615,11647,10614,11654, 1772, 3908, 1773,11902, 1774,11766, 11629, 1775, 1776,11629,12800, 8146, 1777,15561,11909, 1778, 8148, 1779, 8136, 1780, 8110, 1781, 1782, 1783, 1769,11615, 11615,11615,11615,11615,11616,11617,11617,11617,11617,11617, 11617,11617,11617,11617,11617,11617,11617, 8806, 8806, 8806, 8806, 8806, 8806, 8806, 8806, 8806, 8111, 307,11848,11998, 1770, 5904, 140,10768, 784, 1303,11858, 1771, 9948,14357, 11635,11636,11637,11638,11638,11638,11638,11638,11638,11850, 2866,11702, 1772,12444, 1773, 5904, 3909,11861, 1706, 1775, 1776, 140, 898, 5905, 1777, 8146,11796, 1778, 1304, 1779, 8148, 1780, 8136, 1781, 1782, 1783, 1769,10596, 1706, 9631, 9631, 9631, 9631, 9631, 9631, 140, 257, 5905,11655, 1078, 1707, 9654,11656, 8884,11644,12002, 1018,11660, 5906,11768, 140, 9654, 8146, 2222,12005, 784, 1343, 8148, 1770, 8136, 898, 9655, 8068,10955, 1349, 1771,11962, 9655, 2222,11866, 11657, 9655, 5906, 9656, 8105, 1708,11798,11871,15562, 9656, 1772,11668, 1773, 9656, 1774, 1376,11659, 1775, 1776, 1344, 11983, 2696, 1777,15565, 8069, 1778, 898, 1779,11670, 1780, 11695, 1781, 1782, 3910, 3291, 1377, 3292, 265, 9657,11658, 9162, 2697, 8070, 1768, 9657,11661, 1742, 1042, 9657, 784, 8846, 8847, 140, 2698, 1345,11874,11868, 758, 1743,11669, 8069, 9703, 8343,11879,11899, 784, 8846, 8847, 3293,11848, 784, 8846, 8847, 1744, 9164, 3294,11680,11858, 8070,11681, 11912,10955,11684, 8848, 8347, 898, 140, 8068, 9707, 516, 3295,11919, 3296, 9703, 3298, 8071, 140, 3299, 3911, 8848, 9703, 5903, 3301,11720, 8848, 3302, 9703, 3303,12039, 3304, 11664, 3305, 3306, 3307, 1769, 2696,11700, 5903, 8849, 8069, 9707, 9703, 5903,10669, 760,11663, 9660,11718, 9703, 140, 464, 3878,11723,11665, 8849, 2697,13870, 8070, 9703, 8849, 11722,11671,10694, 8343,11682, 9703, 1770, 2698, 9707,11902, 11902,10675,11904, 1771, 8071, 9707,11721,11907,11907, 9703, 11910, 3256,10672,11717,11734, 270, 9703, 464, 1772,11912, 1773,12513, 1774, 9703,11920, 1775, 1776,11917,10671, 3912, 1777,11735,11925, 1778,11736, 1779, 9707, 1780,11962, 1781, 1782, 1783, 3291,10676, 3292, 3913,11762,11791,10677,11966, 1078, 1768,12801, 140, 9703,11730,11727,11727,11727,11727, 11727,11727,11727,11727,11727,12517, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 8146, 3293,12091, 1225,11769, 8148, 9164, 8136, 3294, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 140, 8146,12389, 531, 140, 3295, 8148, 3296, 8136, 3298, 8922, 8146, 3299, 3911, 8146,11914, 8148, 3301,11794, 8148, 3302, 8136, 3303,11945, 3304, 1234, 3305, 3306, 3307, 1769,11983, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10748,11990,10749, 140,11790,11800,15694, 8146, 8146,11731,11792,11761, 8148, 8148, 8136, 8136,11793, 8146,10751, 898, 8146, 1770, 8148,13025, 8136, 8148,11998, 8136, 1771,12013,11826,11827,11826,11827, 8928, 9948,11962, 2222,10938, 2222, 784, 1079,12000, 1772,11965, 1773, 3933, 1774, 3920,11732, 1775, 1776, 2222, 899, 2222, 1777, 140, 1275, 1778,11801, 1779, 397, 1780, 2753, 1781, 1782, 1783, 1769, 784, 2242,11970, 1196,11983,11828, 1080, 2754,11829, 14604,11973, 1572,11988, 3934, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,12025, 139,11985,11954,11998,11816, 1234,12714, 1770, 9961,11991, 2243,12388, 9948,11985, 1771, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,12023, 12013,12002, 531, 776, 1772,14687, 1773,12039, 1774,10938, 12005, 1775, 1776,12029,11804,12044, 1777,12010,11812, 1778, 6392, 1779,12032, 1780, 531, 1781, 1782, 1783, 1769, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,11808,11805, 12007, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 12013,12039, 5705,12911,12025,12510, 1078, 784, 1079,10938, 1770,12011,12046, 9961,12016, 140,12019, 1771, 6679, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 531,12041, 144, 1078, 3935,12093, 1773,12020, 1774,12047,12007, 1775, 1776, 1080,12048,12013, 1777,12597,14220, 1778,11809, 1779, 12053, 1780,10938, 1781, 1782, 1783, 2213, 1769,12139, 139, 11955, 1275,12016, 145,12021, 5310,11956,11957,11956,11957, 6680,10069, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 146,11818,10780,10780,10780,10780,10780,10780, 1770, 12025,12022, 140,11820,12048, 1730, 1771,15284,12172, 9961, 11821, 507,12056,11822, 140,12055,12027,12187,12013,11958, 12061, 1772,12050, 1773, 3936, 1774,11071,10938, 1775, 1776, 12072,12822,11810, 1777,12019, 610, 1778, 4642, 1779,12021, 1780,12840, 1781, 1782, 1783, 1769,11824,11824,11824,11824, 11824,11824,11824,11824,11824,11830,11830,11830,11830,11830, 11830,11830,11830,11830,12029,12029,12022, 140,12041,12844, 12073,12091, 140,12032,12032,12091, 140, 1770,12078,12089, 12033,12033,12098,12096, 1771,12034,12100,11831,11831,11831, 11831,11831,11831,11831,11831,11831,12093,12107,12621, 1772, 12845, 1773,13769, 1774,12099, 2208, 1775, 1776, 140,12100, 12029, 1777,12035, 3937, 1778,15716, 1779,12106, 1780,12032, 1781, 1782, 1783, 2223,10785,10785,10785,10785,10785,10785, 140,12034,12711, 2224, 140, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 1275, 140,11862,11862,11862,11862, 11862,11862,11862,11862,11862, 2225, 140,12108,12035,12093, 12126,12126, 2226,12837,12139,12111,10069,12139, 3941,12135, 12124,12138,12145,15718, 2866,12147, 4103, 2227,12146, 2228, 12147, 2229,12152,12150, 2230, 2231,12172,12172,15716, 2232, 12155,12151, 2233,12174, 2234,12177, 2235,12179, 2236, 2237, 2238, 2223,11863,11863,11863,11863,11863,11864,11865,11865, 11865, 2224,11865,11865,11865,11865,11865,11865,11865,11865, 11865,11949,11949,11949,11949,11949,11949,11949,11949,11949, 12174,11949, 140, 2225,14292,12221, 140,15718,12180,10762, 2226,12174, 140,11993,11993,11993,11993,11993,11993,11993, 11993,11993,12181, 9164,12616, 2227,12225, 2228,12823, 2229, 307,12243, 2230, 2231,12025, 140,12025, 2232, 3942,12248, 2233,12243, 2234, 9961, 2235, 9961, 2236, 2237, 2238, 3291, 12027, 3955,12250,12221,10069,12036, 140,12036, 2222,10069, 1078, 3956,11994,11994,11994,11994,11994,11995,11996,11996, 11996,11996,11996,11996,11996,11996,11996,11996,11996,11996, 12190,12243,12037, 3957,12037,13172,12253,12321, 9570,12194, 3958, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 140,12196,12187, 140, 1078, 3959,12204, 3960, 3961, 3962, 12199,11071, 3963, 3964,12208,10049,12218, 3965,12193,12847, 3966, 4455, 3967,12211, 3968,11098, 3969, 3970, 3971, 139, 139,12340, 139, 3981, 139, 139, 139, 139, 139, 139, 139,12136,12136,12136,12136,12136,12136,12136,12136,12136, 511,12196,12204, 139, 139, 139, 139, 139, 139, 139, 12199,10049, 140,12245, 3570, 1787, 3570,12200,12206, 3570, 12966,12251,12162,12162,12162,12162,12162,12162,12162,12162, 12162,12208,12137, 139, 139, 139, 139, 1070,12165,12196, 12211,12389, 3570,12394, 8136, 4286,12399,12212,12199, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339,12196, 3339, 12201, 7624,12187, 139,12208,15727,12204,12199,12208,12389, 1071,11071,11291,12211,12200,10049, 7624,12211,12229,12201, 12212, 9175,12204,12218,12245,12213, 531,12202,12204,12213, 531,10049,11098, 140, 7624,12252, 9177,10049,12206,12224, 8332, 140,12231,12215, 3982, 1070,12202,13528, 140,12215, 12594, 8343,12214, 7624, 9177, 7624,12214, 3343, 3343, 3343, 3343, 3343, 3343, 3343, 3343, 3343, 140, 3343,12218, 531, 12216, 7624,12218, 9177,12218,12228,12216,11098, 1071,12253, 307,11098, 307,11098, 140, 140,12253, 140,12224,12255, 12260,12228, 531,12226,12258,12226, 8332,12261,12231,12262, 12262,12270,12851, 140, 140,12288,12255, 8343,12267,12275, 12269,12264, 3985, 3990,12238,12288,12293,12294,13011,12287, 12227,15729,12227,12291,12295, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 3991, 8111,12302,12865, 4286,15444,12838, 4286, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992, 3992,12458, 6967, 3993,12463, 3991, 3991, 3991, 3991, 3991, 3991, 783, 783, 784, 785, 786, 783, 783, 783, 4286,12911, 783, 783, 783, 1572, 3995,12234, 12234,12234,12234,12234,12234,12234,12234,12234, 8343, 783, 783, 783, 783, 783, 783, 4937, 1572, 3077,15727,12458, 789,12235,12235,12235,12235,12235,12236,12237,12237,12237, 8343, 9703,12911, 140, 1234, 2564,12295,14217, 139, 783, 783, 783, 139, 139,12300, 148, 149, 139, 139, 139, 12593,12439, 139, 139, 139,12237,12237,12237,12237,12237, 12237,12237,12237,12237, 8343,12303, 2271, 139, 139, 139, 139, 139, 139,12308,13623, 3954,14228,12321, 162,12292, 12292,12292,12292,12292,12292,12292,12292,12292,12339,15554, 9703,15555,15687,12864,12297,12288, 139, 139, 139, 139, 139, 139,12320, 148, 149, 139, 139, 139,12321,12325, 139, 139, 139,12340, 4286,12345,12324,12329, 784, 2981, 10000,12343,12340,12348, 2273, 139, 139, 139, 139, 139, 139,12345,12350,12344,15729,12360, 162,12364,12389,12389, 12353,12458,12349,12363, 7168,12367,12392, 140,15727,12378, 12393, 3077, 2982,12609, 139, 139, 139, 139, 3998, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3999, 3359, 7169, 2564, 1234,12394,12394,12399, 3999, 3999, 3999, 3999, 3999, 4000, 12397,12402,12398,12399,12404,12409,12530,12419,13772,12848, 10694,15573,12407,12412,12403,12423,12382,12382,12382,12382, 12382, 3999, 3999, 3999, 3999, 3999, 3999, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4002, 1572,12404, 7168, 513,12389,12424, 4001, 4001, 4001, 4001, 4001, 4003,12408, 12427,12389,12393,11291,12458, 1234,11288,12435, 3570,12392, 12610,11294,12461, 7169,15729,12385,12385,12386, 6967, 1572, 4001, 4001, 4001, 4001, 4001, 4004, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4008, 1572, 1234, 2023,11291, 1572, 329, 4007, 4007, 4007, 4007, 4007, 4009,12458,12463, 11295,11288,12463,12468, 1234, 898, 1606,12466, 4937,12462, 15716,12471, 140,12467,12387,12387,12387,12387,12387, 4007, 4007, 4007, 4007, 4007, 4007, 4013, 4014, 4014, 4014, 4014, 4014, 4014, 4014, 4014, 2790, 1572,12436,12468,12458, 3008, 140, 4014, 4014, 4014, 4014, 4014, 4015,13777,12472,12462, 12473,12458,12458, 1234, 784, 3636,12448, 3608,12476,12461, 12461,15718,12824,15716,12705,12705,12706, 6967, 4014, 4014, 4014, 4014, 4014, 4014, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4018, 1970, 1275,10732, 4286, 3637, 1572, 4017, 4017, 4017, 4017, 4017, 4019,12422,12422,12422,12422, 12422,12422,12422,12422,12422,12493, 1606, 4937,12458,11778, 10727, 6967,12419, 5647,12493, 6336, 2023, 4017, 4017, 4017, 4017, 4017, 4017, 4025, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 2802, 1572, 1606,12458, 2451, 6300,12458, 4026, 4026, 4026, 4026, 4026, 4027,12493,12457, 5648,12493,12462, 12493, 4937,12493,12496,12493,15718,15716,12508,12496,12497, 12496, 140,12451,12451,12452,12497, 4026, 4026, 4026, 4026, 4026, 4026, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4030,12447, 2023,12498, 2023,12498,12458, 4029, 4029, 4029, 4029, 4029, 4031,12501,12502,12458,12458,12462,14240, 12458, 1606,13774, 1606,12461,12461, 4286, 4286,12461,10694, 12453,12453,12453,12453,12453, 4029, 4029, 4029, 4029, 4029, 4029, 4037, 4038, 4039, 4040, 4040, 4040, 4040, 4040, 4040, 150, 2023,12454,12498,12458,12458,12531, 2284, 2284, 2284, 2284, 2284, 2288,12634, 2023,12531,12462,12535,12638, 1606, 12505,12458,10461,12534,12504,12536, 5712,12641,15718,12455, 12455,12456, 1606,12539, 2284, 2284, 2284, 2284, 2284, 2284, 4041, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 2816, 2023,12504, 2023,12531, 2023,12536, 4042, 4042, 4042, 4042, 4042, 4043,12523,12523, 9572,12540,12553, 6392, 1606, 898, 1606,12507, 1606,12543, 5712,12512, 140, 5712,15716, 140, 12509,15718, 3077, 4042, 4042, 4042, 4042, 4042, 4042, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4046, 5705, 2564,12536, 293, 3663,12554, 4045, 4045, 4045, 4045, 4045, 4047,12483,12483,12483,12483,12483,12483,12483,12483,12483, 13873, 4324, 5712, 140,12839, 6967, 9385,12486,10320,12524, 12524,12524, 4045, 4045, 4045, 4045, 4045, 4045, 4053, 4054, 4055, 4056, 4056, 4056, 4056, 4056, 4056, 1572,10729,12531, 3077,12554, 1597, 2979, 2295, 2295, 2295, 2295, 2295, 2299, 9386, 140,12558,12554,13893, 4937,12520,13010, 2564, 784, 5021,12557,12503,12503,12503,12503,12503,12503,12503,12503, 12503, 2295, 2295, 2295, 2295, 2295, 2295, 2840,12498, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 1839, 140, 10762,15011, 140, 5022,12559, 2292, 2292, 2292, 2292, 2292, 2293,12522,12562, 7061,10316,12559, 139,12564, 898,12574, 12579, 2564,12531,11376,12854,12567,12563,12578,12582, 5647, 12534, 6336, 2292, 2292, 2292, 2292, 2292, 2292, 4058, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 4059, 3408,10317,12590, 3077,12515, 5048,12531, 4059, 4059, 4059, 4059, 4059, 4060, 12591, 3077,14183, 5648,12535,12624,12624, 1617, 2564,12894, 5750,12623,15741,12627, 1078,15743,12592,12628, 7133, 2564, 7133, 4059, 4059, 4059, 4059, 4059, 4059, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061,12446, 3674, 140, 1618, 3077,12624, 3077, 4061, 4061, 4061, 4061, 4061, 4062,12577, 12577,12577,12577,12577,12577,12577,12577,12577, 7135, 5712, 7135,12607, 1739,15741, 7133,12574, 140, 1617,11457, 7133, 4061, 4061, 4061, 4061, 4061, 4063, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2311, 3077,12598,12827, 4335, 8631, 3077, 2308, 2308, 2308, 2308, 2308, 2310, 2555, 1618, 1618, 3742,12648,12614, 7135, 1617,10694,14124,12938, 7135, 15743,11505,12646,11459,10694,12531,12599,12599,12600, 2308, 2308, 2308, 2308, 2308, 2308, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 1470, 4410, 9572, 1618, 2564,12642, 12658, 2304, 2304, 2304, 2304, 2304, 2305,14216, 140,11517, 140, 531,15751, 4411,12911,12379,12379,12379,12379,12379, 12379,12379,12379,12379, 2053,12654,12664, 7133, 2304, 2304, 2304, 2304, 2304, 2304, 139, 139, 1572, 148, 149, 139, 139, 139, 150, 150, 139, 139, 315, 4074, 150, 3077, 15698,14471,12650,12660, 1234, 5019,12669,12683, 150, 139, 139, 139, 139, 139, 329,11531,10499, 7135, 140,15753, 332,15751, 1617,12382,12382,12382,12382,12382,12382,12382, 12382,12382, 140,12599,12599,12600,12675,10732, 139, 139, 139, 322, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 2864, 434,12836, 1617, 12726,12969, 1234,12671,12634,12687, 139, 139, 139, 139, 139, 139, 139,10461,12690, 257, 140,15753, 4093,12601, 12383,12383,12383,12383,12383,12383,11955,12727, 531,12384, 12735, 1618,12795, 140,12744, 140, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1133, 139, 2864,13865,15184, 3077,12736, 140, 1234, 12612,12745,12648, 139, 139, 139, 139, 139, 139, 139, 4094,11505,15092, 140, 2564, 4093, 1617,12387,12387,12387, 12387,12387,12387,12387,12387,12387, 531,11461,11461,11461, 11461,11461,11461, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 139, 8360, 8360, 8360,15012, 1379, 1234,13021, 9946,12658, 139, 139, 139, 139, 139, 139, 139, 1044,11517, 140, 140, 434, 4096, 1617,12434,12434,12434,12434,12434,12434, 12434,12434,12434, 531,12603,12603,12603,12603,12603, 257, 139, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 139,12835,15751, 14315,12797,15753, 1234, 1617,13027,12669, 139, 139, 139, 139, 139, 139, 139, 4097,11531,13031, 140, 140, 4096, 15648,12449,12449,12449,12449,12449,12449,12449,12449,12449, 531,12707,12707,12707,12707,12707, 1618, 139, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1275, 139, 139, 3742, 140,15189,12757,12771, 1606,15094, 140,12634, 139, 139, 139, 139, 139, 139, 139,12606,10461,12683,12638,12648, 4099,15741,14062,12636, 3742, 9520,10499,12641,11505,12758,12772, 329, 4100, 4410, 12645,12653,13884, 140, 139, 139, 139, 531,12450,12450, 12450,12450,12450,12450,12450,12450,12450, 4411,12708,12708, 12708,12708,12708,12708, 4410,12613, 4100, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1275, 139, 2864, 4411,13018,13018,13019, 9948, 1606,13041,13043, 12615, 139, 139, 139, 139, 139, 139, 139, 140,13050, 13052,15743,13900, 4107, 140,12453,12453,12453,12453,12453, 12453,12453,12453,12453, 140,11564,11564,11564,11564,11564, 11564, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1275, 139, 2864, 1572, 12721,12730,12739, 140, 1606,12726,12735,12744, 139, 139, 139, 139, 139, 139, 139, 4108,15741, 1234, 464, 140, 4107,13634,12506,12506,12506,12506,12506,12506,12506,12506, 12506,12752,12727,12736,12745,12894,12757,13026, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 270, 139, 2864,15698,12766,12816, 758, 9619, 1606,12771,12758, 9621, 139, 139, 139, 139, 139, 139, 139, 140,14293,15488,15743, 140, 4112,10762,12524, 12524,12524,12524,12524,12524,12524,12524,12524,12783,12772, 4455, 516, 434,15741, 4455, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 257, 139, 2864,12849,12782,12784, 8884,12798, 2564,12783, 9621,12785, 139, 139, 139, 139, 139, 139, 139, 4113, 15743,12911, 140, 140, 4112, 531,12525,12525,12525,12525, 12525,12525,12525,12525,12525,12828,12784, 8105, 1735, 7776, 4455, 4455, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 464, 139, 2864, 15524, 2023, 898, 1736,12825, 2564, 495,14117, 1742, 139, 139, 139, 139, 139, 139, 139, 1737,12842, 496, 5685, 1743, 4116,12817,12528,12528,12528,12528,12528,12528,12528, 12528,12528, 270, 473,12829, 1744, 983, 1078,12845, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1308, 139, 2864,10694, 8884, 2696, 8110, 9703, 2564,12972,13027,10694, 139, 139, 139, 139, 139, 139, 139, 4117,12971,12932,15741,12799, 4116, 2697, 12529,12529,12529,12529,12529,12529,12529,12529,12529, 8105, 12973, 2698, 8111,10732,10732,12846, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,12862, 139, 2864,10727,12830,12852,10727,10727, 2564, 9703,12648,12648, 139, 139, 139, 139, 139, 139, 139, 11505,11505, 9522, 9522, 1597, 4119,12957,12653, 329, 329, 307,12658,12655,12655, 140, 140,12667,12658, 6392, 4120, 11517,13715, 329, 2866, 139, 139,11517,12663, 140,12511, 12511,12511,12511,12511,12511,12511,12511,12511,12665,12656, 12656, 1672,15743,10732, 1606,11789, 8142, 4120, 139, 139, 5705, 139, 139, 139, 139, 139, 139, 139, 139, 139, 10694, 139, 139, 5218,12976,12666,12937,10727,10694,10727, 8136,12826, 139, 139, 139, 139, 139, 139, 139, 9522, 12667,12669,15355, 9532, 4122, 329, 329, 307, 5219, 329, 11531, 140, 140,10732, 531, 140,10761,12674,11542,11542, 11542, 5221, 139, 139, 139, 139, 139,12804, 139, 139, 139, 139, 139, 139, 139, 139, 139,10727, 139, 139, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 139, 139, 139, 139, 139, 139, 139,12658, 9534,15777,10613, 531, 4122,12678, 329, 9534,11517, 9572,10612, 329, 140, 329, 307,12663, 307, 140, 140, 140,12665, 140, 139, 139, 4103, 139, 139,12812, 139, 139, 139, 139, 139, 139, 139, 139, 139,10614, 139, 2864,10694,15823,10613, 1376,13698,12803, 140,12666,10694, 139, 139, 139, 139, 139, 139, 139, 9534,12669,12678, 5905,12683, 4126, 329, 1377, 329, 307,11531, 5904, 140,10499, 140, 531,13894, 12674,10732, 1042,12685,10614,12676, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5906, 139, 2864,12998,10727, 5905,15825, 9703,12805, 16024,13054,12677, 139, 139, 139, 139, 139, 139, 139, 4127,12669,13061,12833,12962, 4126,10612,15285, 784, 1303, 11531,12679,12679,12679,12679,12679,12679,12679,12679,12679, 8927, 5906,12676, 2866, 139, 139, 139, 139,12960, 139, 139, 139, 139, 139, 139, 139, 139, 139,10613, 139, 2864, 140, 1304, 1730, 8928, 1379,16024, 9703, 8142,12677, 139, 139, 139, 139, 139, 139, 139, 1044,10679, 1133, 257,10732, 4129,12679,12679,12679,12679,12679,12680,12681, 12681,12681, 8136,10614,12802, 1617, 4130,12796,12977,12834, 2866, 139, 139,13700,15395,10727,12602,12602,12602,12602, 12602,12602,12602,12602,12602,12681,12681,12681,12681,12681, 12681,12681,12681,12681, 4130, 139, 139, 1618, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 203, 139, 139, 139, 139, 139, 139, 4133, 4133, 4133, 4133, 4133, 4134, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 4132, 4132, 4132, 4132, 4132, 4132, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,11746, 11588,11588,11588, 3290,11747,10694,16036, 1617, 3290, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133,12603,12603, 12603,12603,12603,12603,12603,12603,12603,12687,12709,12709, 12709,12709,12709,12709,10694, 3925,12690,12710,11782, 1618, 3926,13225,10694,12691,16036,12940,12975,12929,16036, 1275, 12005, 9703, 4133, 4133, 4133, 4133, 4133, 4133, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 4137, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 4138, 2893, 3077,10955,10955, 12687,12687,12683, 4138, 4138, 4138, 4138, 4138, 4139,12690, 12690,10499, 140, 140,10676, 2564,12691, 9621,12685,10677, 9703,12692,12692,12694, 307,13041,13054,13869, 9703, 140, 4138, 4138, 4138, 4138, 4138, 4138, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4142,13699, 4455,12693,12693, 12695,15767, 4141, 4141, 4141, 4141, 4141, 4143, 1617, 9541, 9541, 9541, 9541, 9541, 9541, 9541, 9541, 9541, 8927,12604, 12604,12604,12604,12604,12604, 140,12961,12861,12605, 4141, 4141, 4141, 4141, 4141, 4141, 375,12683, 9703,10678, 8914, 1618,14333, 8928,12959, 1672,10499, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 150, 5904,12694,10732, 8142, 13907,15685, 4144, 4144, 4144, 4144, 4144, 4145, 9589, 9589, 9589, 9589, 9589, 9589, 9589, 9589, 9589,10694,12979,14064, 11911, 8142,10727, 8136,12695,11742,12944,12988, 5905, 4144, 4144, 4144, 4144, 4144, 4144, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 3483, 8136,12941,13107,13063,10694, 8142, 4149, 4149, 4149, 4149, 4149, 4150,10694,12806,13070, 16024,13906,12986, 5906,12700,12701,12702,12703,12703,12703, 12703,12703,12703, 140, 8136, 1070,13005,13773, 4149, 4149, 4149, 4149, 4149, 4149, 149, 140,12707,12707,12707,12707, 12707,12707,12707,12707,12707, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 758,12853, 140, 1275, 1071, 9703, 16024, 4151, 4151, 4151, 4151, 4151, 4152, 9600, 9600, 9600, 9600, 9600, 9600, 9600, 9600, 9600,12786,12786,12786,12786, 12786,12786,12786,12786,12786,13780, 516, 9654, 4151, 4151, 4151, 4151, 4151, 4151, 150, 150, 150, 150, 150, 150, 150, 150, 150, 2380, 7168,10674,11751, 9655,10694, 3077, 150, 150, 150, 150, 150, 162,10694,12933, 9703, 9656, 12889, 760,12967,12785,10694,12809,13886, 2564, 7169,10675, 307,10732,10694,12947, 8142, 140,12984, 150, 150, 150, 150, 150, 150, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 3493, 4455, 9657,10727,11911, 1078, 8136, 4156, 4156, 4156, 4156, 4156, 4157,12786,12786,12786,12786,12786, 12787,12788,12788,12788,12788,12788,12788,12788,12788,12788, 12788,12788,12788,13117,13183, 8110, 4156, 4156, 4156, 4156, 4156, 4156, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 9654, 2696,10732,12981,13056,10694,13027, 4158, 4158, 4158, 4158, 4158, 4159,10694,13030,13104, 8111, 9703, 3290, 12946, 9655, 2697,12850, 3290,16024,11778,10727, 140, 1275, 784, 1343, 140, 9656, 2698, 4158, 4158, 4158, 4158, 4158, 4158, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 3505, 3925, 8113,13994,13897,11838, 3926, 4164, 4164, 4164, 4164, 4164, 4165,13033, 1344,13041,13871,12831, 9657,11739, 13872,10676,10694,13046,12942,12808,10677, 9703,12883,12934, 10694, 1070, 265, 8334, 4164, 4164, 4164, 4164, 4164, 4164, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166,12811, 16024,13527, 140, 9959,10694, 8142, 4166, 4166, 4166, 4166, 4166, 4167,10694,12964, 1071, 140,12949,13107, 9703,12712, 12712,12712,12712,12712,12712,12712,12712,12712,13114, 8136, 13177,13177,13178, 4166, 4166, 4166, 4166, 4166, 4166, 2438, 1275, 2391, 2391, 2391, 2391, 2391, 2391, 2391, 2391, 2391, 2394, 140,11596,11596,11596,13004,13109, 2391, 2391, 2391, 2391, 2391, 2393,13043,12885,13054,12886,13116,10694,11746, 13992,13051,13117,13059,11747,12887,10694, 9703,12972, 784, 8846, 8847,12888,13124, 2391, 2391, 2391, 2391, 2391, 2391, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 3521, 10955,14239, 1275, 3913,10732,12973, 4175, 4175, 4175, 4175, 4175, 4176,12974, 8848,12893,12893,12893,12893,12893,12893, 12893,12893,12893,12978,13056,10955,10955,13210,10727,10727, 10694, 5903,13062, 4175, 4175, 4175, 4175, 4175, 4175, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177,12813, 8142, 10732,10732,13212,13268,11787, 4177, 4177, 4177, 4177, 4177, 4178,11739,11753,12958,10694,12970,12980,14070,10694,13063, 12950,15716,10694, 8136,10727,10727,10694,13068, 784, 8846, 12814,12939, 4177, 4177, 4177, 4177, 4177, 4177, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2405, 2408,12948, 455, 8142,13259,13071,10694, 2405, 2405, 2405, 2405, 2405, 2407, 13076,10694, 8848,12987, 784, 2242,15740,13065,13088,13526, 11741,13107,13263,10955, 8136,13087,13093, 784, 1079,13112, 5903, 2405, 2405, 2405, 2405, 2405, 2405, 2401, 2401, 2401, 2401, 2401, 2401, 2401, 2401, 2401, 1533, 8849, 2243,13259, 13278,13109,13117, 2401, 2401, 2401, 2401, 2401, 2402,13115, 13122, 1080,11607,11607,11607,12789, 776,11638,11638,11638, 11638,11638,11638,11638,11638,11638,12935, 1078,13003, 139, 2401, 2401, 2401, 2401, 2401, 2401, 139, 139, 140, 139, 836, 139, 139, 139, 139, 139, 139, 139,13119, 139, 139,14113,13007,12936,13341, 9385,13125,13776,13126,10694, 3987, 139, 139, 139, 139, 139, 139,10694,13126,13133, 13134,12945, 572,13128,13151,13119,13131,10694,13139,13183, 13189,13150,13156, 140,12962,10694,13167,13186,13192, 9386, 139, 139, 139, 139, 139,11745, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1078, 139, 139, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 139, 139, 139, 139, 139, 139, 139,13183,13194,12999, 140, 8142, 572, 16023, 8144,13351,13197,10459,13187,12963, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 140, 139, 139, 139, 139, 139, 8136, 139, 163, 139, 139, 139, 139, 139, 139, 139, 168, 344, 139, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 139, 139, 139, 139, 139, 139, 139, 168, 168, 168, 168, 168, 345, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 139, 139, 139, 176, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 4193, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 2953,16133,10732,16203,13189,10734, 8142, 4194, 4194, 4194, 4194, 4194, 4195,12965,12983,13193,13210,13210, 8930,13212,13212, 784, 1079,13008,13215,13268,10727,13218, 13217, 898, 8136,13219, 140,13273, 4194, 4194, 4194, 4194, 4194, 4194, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4198,13868, 7168,13885,13982,13701, 1080, 4197, 4197, 4197, 4197, 4197, 4199, 9948, 1018, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 139, 140, 7169, 140, 531, 784, 1079,13009, 1349, 3077, 4197, 4197, 4197, 4197, 4197, 4197, 4205, 4206, 4207, 4208, 4208, 4208, 4208, 4208, 4208, 1020, 1352, 2564, 1078,13228,13268,12818, 2430, 2430, 2430, 2430, 2430, 2434,13232, 1080,16233,13275,12995, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 1078,12894, 898, 13343, 8068, 139, 8334, 2430, 2430, 2430, 2430, 2430, 2430, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 1951, 140,14185,13626, 9961,13387,10732, 2427, 2427, 2427, 2427, 2427, 2428,12997, 8069, 1572, 140, 898,11758,13174,12996, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10727, 13895, 8070, 1234, 2427, 2427, 2427, 2427, 2427, 2427, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 8071,16233, 899,13629,13234,13242,12821, 4215, 4215, 4215, 4215, 4215, 4216,13237,10938, 1572, 1739,16238,16238,12789, 1196,11638, 11638,11638,11638,11638,12790,11635,11635,11635,13000, 1078, 1078, 1234, 4215, 4215, 4215, 4215, 4215, 4215, 139, 139, 140, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139, 2023, 1730,15400,13408,13415,12935,10069, 13246,13256, 139, 139, 139, 139, 139, 139, 139,13249, 12032, 1606, 758,12789, 589,11635,11635,11635,11635,11635, 11635,11635,11635,11635, 8142,12936,13450, 2023,13765,14098, 12989,10694, 146, 139, 139, 139, 140, 8926, 4221,10694, 9948,13270,13278,12943, 516, 1606,16238, 307, 8136,13276, 13283,13714, 140, 4222, 1983, 1983, 1983, 1983, 1983, 1984, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1234, 1225, 1225, 140, 1225, 3570, 2984, 1225, 1225, 1225, 1225, 1225, 1225, 12911, 1225, 1225,10938,12865,14141,15441,16233,13270, 1706, 307,13225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13277, 12005,13225,13234,14218, 2455,14099, 784, 8846, 8847, 1706, 12005,13237,13280,10732, 898, 531, 8068,13231,13238,11776, 13286, 1707, 1234, 1225, 1225, 1225, 1225,12968, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10727, 1225, 1225, 8848,15435,16233, 1739, 1376,16233,12865,12807, 8069, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1708, 9654, 5903,13287, 13295, 1978,12815,13278, 1377,10069, 8070,13292,13300,13022, 13023,13022,13023,12819,13285, 8849, 1042, 9655,14103, 1234, 1225, 1225,13469, 8071, 8855,10732, 4239, 2462,10734, 9656, 1745,13472,13452,10737, 140, 140, 1275,13287,12832, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982,13294,10727, 8142,13280,13024, 8921,12982,13025,10618,12962,12985,13242, 1572,13246,13313,12810, 9657, 898,13993, 8068,10938,14111, 13249,13289, 140,13314, 8136,13244,16233,13250, 1234,13312, 1985,13319, 1982, 1982, 1982, 1982, 1982, 1982, 3584, 3584, 3584, 3584, 3584, 3584, 3584, 3584, 3584,15192, 3584, 8069, 10732, 8142,13322,13314,13906,12820,13242,11757, 8929, 1572, 13327, 307,11758, 8930,13321,10938, 140, 8070,13014,13014, 13014,13014,13014,13014,10727, 8136, 8853, 1234,13316,13341, 531,13341,13256,14655, 8071, 140,13339,13346,13343, 140, 307,12032,13348, 4240, 1225, 1225,13349, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 531, 1993, 1225,14100, 13017,13017,13017,13017,13017,13017,13256,13343, 2476, 1225, 1225, 1225, 1225, 1225, 1225,12032, 139,12865,13350, 1572, 2467, 140,13262,16262,15443, 139, 4243,13220,13221,13222, 13223,13223,13223,13223,13223,13223,13351, 4937, 1234, 1225, 1225, 1999, 1225, 1225,13360, 1225, 4244, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1995, 1993, 1225, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 2469, 2469, 2469, 2469, 2469, 2470, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 1234, 1225, 1225, 1999, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 1225, 1225,12894, 1225, 1225, 1575, 1225, 1225, 1225, 1225, 1225, 1225, 1576, 1225, 1225, 9935, 140,13053,13053,13053,13053,13053,13053,13351, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13362,13367,11853,13361, 14189, 1988, 140,14366,13365,13370,13362, 3613, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084,13366,16268, 1234, 1225, 1225, 1225, 1225, 1225,14368, 1225, 2468, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1585, 1993, 1225, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2474, 2473, 2473, 2473, 2473, 2473, 4245, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1234, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1225, 1225, 8334, 1225, 3570, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13234, 1993, 1225, 8334,16281,12894,12894,12911,10461,13237, 9961,13387, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13390, 140,13239, 140,13266, 1994, 531, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 140,10069,10069,10069,14188,14194,14221, 1234, 1225, 1225, 1225, 1225, 1225,13240, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13391, 1225, 1225,13408, 140,13450,13452,13450,13395,13387,13408,13411, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13246,13405,13414,12142, 1572, 4247, 4636,13001,12911,13249, 9935,13413,13053,13053,13053, 13053,13053,13053,13053,13053,13053,13251, 1234, 1234, 1225, 1225, 1225, 1225,11853, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13415, 1225, 1225,13406,14227,12911, 140, 13696,13418, 495,13252,13242, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140,10938, 496,13415,13407, 4247,13015,13015, 13015,13015,13015,13015,13420,13253,13419,13016, 140,13256, 10069,14222,13423,14377,14559, 1234, 1225, 1225,12032, 140, 13420,13020,13020,13020,13020,13020,13020,13020,13020,13020, 13264,13424,13254, 140, 4248, 140, 140,13530,13474, 4249, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13425, 1225, 1225,13435,16372,13265,14973,13478, 13428,14112,13450,13439, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8334, 8334,13457,15408, 9935, 4259,13053,13053,13053, 13053,13053,13053,13053,13053,13053,13474,14065, 4260,13452, 13450, 9961,13266,11853, 1234, 1225, 1225, 1488, 307, 307, 13459,13457, 4261, 140, 140, 293,13440,13450, 9880, 9880, 9880, 9880, 9880, 9880,13443,13455, 4260, 1225, 1225, 434, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 1225,13452, 3077,16379,14114,16383, 257,13452,13480, 13458, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12199,13459, 140, 2564,13450, 4259,11949,11949,11949,11949,11949,11949, 11949,11949,11949,13457,11949, 4260,13483,13234,13246,13242, 13469, 1234, 1225, 1225,13787, 140,13237,13249,10938,13472, 15008,13452,13491,13238,13250,13244,13477,13487,13239,13251, 13253,12211,13459, 4260, 1225, 1225, 140, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228,13169, 12894, 7624, 7624,13906,13483,13240,13252,13254, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 140,15010,10955, 531, 531, 3003,10047,10049, 4262,13461,13461,13461,13461,13461,13462, 13463,13463,13463, 140, 140,13503,15482, 139, 1234, 1225, 1225, 1225, 1225, 1225,11098, 1226, 2000, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2479, 2478, 2478, 2478, 2478, 2478, 4263, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1234, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1225, 1225, 1617, 1226, 3588, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1995, 1996, 1228, 13463,13463,13463,13463,13463,13463,13463,13463,13463, 2480, 1225, 1225, 1225, 1225, 1225, 1225,16388,13494, 434, 1618, 16392, 1998,13530,13530,13179,13179,13179,13179,13179,13179, 13179,13179,13179,13537,13537, 1078, 257, 140,13498, 1234, 1225, 1225, 1999, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13450, 1225, 1225,14068,15203, 13882, 7624,13540,13455, 7624,13494,13480, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13256,12199,13491,13507,13480, 1978, 13521,13501,13486,12032,10049,12211,13510,12199, 4267, 8343, 13262, 307,13497, 140,14144,13264, 140, 1234, 1225, 1225, 1225, 1225, 531, 1225, 3570, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13452, 1225, 1225, 7624,13530, 140,14145,13450, 13458, 8336,13265,13521, 2476, 1225, 1225, 1225, 1225, 1225, 1225, 531, 8343,16397,16401,10049, 2482,13377,13377,13377, 13377,13377,13377,13377,13377,13377,13450, 140,10069,10069, 531,13450,15009,13380, 1234, 1225, 1225, 139, 139,13455, 148, 363, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,13452, 5904,13532,13452,13450,13452, 139,13491, 13458, 203, 139, 139, 139, 139, 139, 139,12211, 7624, 531,16410,14315, 204,12136,12136,12136,12136,12136,12136, 12136,12136,12136, 531,13452, 5905,13532,13450,14117,13501, 13546, 139, 139, 139, 176, 140, 307,13539, 4269, 139, 139, 140, 148, 363, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,14119,12137,15633,13546,16414,12845, 14076,13503,13507, 203, 139, 139, 139, 139, 139, 139, 11098,13510,13530,13532, 531, 204,13452,13505,13511,13547, 13535,13538,13438,13438,13438,13438,13438,13438,13438,13438, 13438,13521,13540, 139, 139, 139, 176,13530,13435,13909, 8343,13530, 1078,13544, 1078,13535,13547,13523,12641,13535, 4270, 2012, 2012, 2013, 2012, 2492, 3623, 2012, 2012, 2012, 2012, 2012, 2012,12137, 2012, 2012,13532, 1572, 1078,13548, 2451,13576, 3570,13450,13538, 2012, 2012, 2012, 2012, 2012, 2012, 2012,13480,13480,13457, 4937,13540, 3023,13450,13452, 13450,12199,12199, 4277,13543,13581,13455,13458,13486,13635, 3570,13457, 3570,13488,13488, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 4278, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 13450, 2012, 2012, 9084, 9084, 9084, 140,13640,13455,13645, 13489,13489, 2012, 2012, 2012, 2012, 2012, 2012, 2012,13491, 13491,13452,13450,13452, 2501,13548,13548,13553,12211,12211, 13455,13458,13459,13551, 3570,13497, 140,13552,13560,15176, 13499,13499, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012,13507, 2012, 2012, 16424,13650,16428,13697, 531, 4286,13510,13500,13500, 2012, 2012, 2012, 2012, 2012, 2012, 2012,13553,13576,13512,13581, 13503, 2501,13507,13761,13559,13503,13586,13521,13580,11098, 13585,13510,13715,13503,11098, 2023, 8343,13590,13511, 2012, 2012, 2012,11098,13512, 531,13513,13514, 4279, 2013,13505, 2492,13526,13561, 1606,13514,14291,16440,13627,13627,13628, 13564, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 13513, 3627,13576,13515,10727, 1070,13581,14360, 1572,10762, 13579,13515, 2493, 8336,13584,13525,13525,13525,13525,13525, 13525,13525,13525,13525, 8343, 8336, 1234,13525,13525,13525, 13525,13525,13525,13525,13525,13525, 8343, 8336, 1071,13525, 13525,13525,13525,13525,13525,13586, 4280, 2013, 8343, 2492, 13591,13601,12894,13589,14315,12894,12911, 140,13594,13604, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281,13601, 4281,13606,12380,13606, 4286,14190,14223,15634,14186,13609, 13605, 2493, 1597, 1597,13610, 1597, 1597, 3639, 1597, 1597, 1597, 1597, 1597, 1597,13611, 1597, 1597,13635,16217,14191, 14224,13720,13614,13635, 1572,13638, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 455,13639,13640,13640,12380, 3039,13645, 784, 2981, 1234,13643, 4291,13645,13650,13644, 4286, 4286, 13649, 5712,13924,13648,13653,15361, 1606, 1597, 1597, 1597, 1597,11505, 1597, 4297, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13650, 1597, 1597, 2982,13725,13715, 1617,13788,13655, 13670,13781,13654, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 13659,13675, 1234, 3077,13676, 2520,13545,13545,13545,13545, 13545,13545,13545,13545,13545,13680, 5712,13625, 5712, 1618, 13655, 2564,13540, 1606, 1597, 1597, 1597, 1597,13658, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13660, 1597, 1597,13670,13406,13793, 140,13819,13663,10000,13715,13673, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 531, 1275,13719, 13883,13720, 2520,13630,13630,13630,13630,13630,13630,13630, 13630,13630,13724,14560, 140,13676, 1275,13681,13715,13720, 1606, 1597, 1597,13679, 1572,13684,13718,13723, 4298, 3646, 3646, 3646, 3646, 3646, 3646, 3646, 3646, 3646, 8110, 3646, 13725,13730, 1234,12383,12383,12383,12383,12383,12383, 140, 2023,13729,13734,14241,13631,13631,13631,13631,13631,13631, 13631,13631,13631,10694, 1572,13725,16465, 1133, 1606, 531, 8111,13701, 5647,13728, 6336, 1572, 3018,13631,13631,13631, 13631,13631, 1234,13715, 4299, 1597, 1597,15007, 1598, 4304, 1597, 1597, 1597, 1234,13719, 1597, 1597, 1597, 1572,13632, 13632,13632,13632,13632,13632, 8113, 5648,13788,13633,13730, 1597, 1597, 1597, 1597, 1597, 1597, 1234,13733,13792, 1572, 1572, 2032,13735,13793,13692,13692,13692,13692,13692,13692, 13738, 784, 3636, 5712,13797,16468,13702, 1234, 1234, 1606, 1597, 1597, 1597, 1597, 1597, 1572, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 6392, 2535, 1597,13745,15099, 13824, 464,13704, 1234,13798, 3637,13749, 3060, 1597, 1597, 1597, 1597, 1597, 1597, 1275,13802,13750,13715,13788, 3051, 13793,13798, 4305, 1606,13753,13718,13791, 5705,13796,13801, 14088, 140,13819, 531,15280,13766, 270, 1606, 1597, 1597, 2541, 1597, 1597,13823, 1597, 3052, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2537, 2535, 1597, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 3060, 1597, 1597, 1597, 1597, 1597, 1597, 3053, 3053, 3053, 3053, 3053, 3054, 3053, 3053, 3053, 3053, 3053, 4306, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 1606, 1597, 1597, 2541, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 1597, 1597, 140, 1597, 4307, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7776, 2034, 1597,16362, 15162, 1078,14118,14117,13916,13711,13711,13712, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13803,13819,13824, 2023,13824, 2035, 3035,13829,13806,13822,13827, 2023,13829,13901,13834, 13828,13911, 140,13833,12845,13832, 5685,13837, 1606, 1597, 1597, 1607, 1597, 1597, 1606, 1597, 3052, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2036, 2535, 1597, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3058, 3057, 3057, 4308, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1606, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1597, 1597,15439, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12865, 2535, 1597, 13844,16471, 1617, 5647, 531, 6336,13844,13850,13847, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13850,13849,13854,13901, 13855, 2536,13880,13901,13853, 9703, 898, 4309,13858,13909, 13905,13904, 898,14159, 1618,13921, 7776, 5648,12641, 1606, 1597, 1597, 1597, 1597, 1597,13915, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9703, 1597, 1597, 2023, 9703, 3008,16478,13922,13762, 3634,13931, 3663, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 4311,15430, 5685, 4312, 3608, 4313, 13703,13936,10461, 4314, 4324,14151, 4315, 4316, 4317, 307, 11517, 4318,13932,13693, 140, 7776,14152, 1606, 1597, 1597, 13674,13674,13674,13674,13674,13674,13674,13674,13674, 3742, 12526,13890, 2512,13909, 531,14315,13670, 2023, 898, 4319, 1597, 1597,12641, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600, 5685,13943, 531,14196, 140, 13867, 6300, 3077, 4410, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 4320, 5048,10461,12911,12526, 3658,13924,13952,15644, 2564, 4411,13969,13944,12894, 140,11505,11531, 531,15188, 5750,12690,16484,13926, 1606, 1597, 1597, 1597, 1597, 1597, 14219, 1598, 2542, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3063, 3062, 3062, 4321, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1606, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1597, 1597,15164, 2025, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,14229, 1597, 1597, 784, 5021, 434,13708, 13708,13708,13708,13708,13959, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 4311, 531, 140, 4312, 257, 4322,13778,12911, 2023, 4314,13975,14009, 4315, 4316, 4317,14067,13691, 4318, 5022,13960,12218,12218,12218, 2030, 1597, 1597, 1606,12434, 12434,12434,12434,12434,12434,12434,12434,12434, 2564,13971, 14010, 140,13713,13713,13713,13713,13713, 4319, 1597, 1597, 1572, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 2023,13920,13930,14051,14971, 1234,13921, 13931,13924, 3064, 1597, 1597, 1597, 1597, 1597, 1597,13027, 11505, 1606,13936,13952, 2540,16490,15431,13030,10497,11069, 4323,11517,11531,14052, 329, 531,13922,13932,13938,13954, 140, 140, 1606, 1597, 1597, 2541, 1597, 1597,12865, 1598, 4327, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 3064, 1597, 1597, 1597, 1597, 1597, 1597, 2543, 2543, 2543, 2543, 2543, 2544, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 1606, 1597, 1597, 2541, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 1597, 1597, 293, 2025, 1597, 2026, 1597, 1597, 1597, 1597, 1597, 1597, 2027, 1597, 1597,13942,13958,10727,13997, 140,13943, 13959,10762,14009, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 13782,13782,13783,10499,15411, 2029,13978,11785, 531, 329, 4286, 4329, 329, 3742, 758, 140,13944,13960, 140,14010, 7776, 3077,15410, 2030, 1597, 1597, 1597, 1597, 1597,16496, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2564, 1597, 1597, 2023,14046,13891, 1078, 516, 4410,14051,13936, 13952, 3060, 1597, 1597, 1597, 1597, 1597, 1597,11517,11531, 5685,13969,10316, 3066, 139, 4411, 531, 1617,15174, 4330, 12690,11376,13027, 531, 531,14052,14121,13974,13874,13874, 13875, 1606, 1597, 1597, 1597, 1597,16502, 1597, 4307, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10317, 2042, 1597, 1618, 1618, 898,13771,14069, 1617,14071,16505,10955, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13876,13876,13876,13876,13876, 2043, 1379,13705,13705,13705,13705,13705,13705,13705,13705, 13705, 8884,10955, 1044,14387, 983, 1618, 464, 1606, 1597, 1597, 139, 139, 2023, 139, 836, 139, 139, 139, 139, 139, 139, 139, 1308, 139, 139, 9703, 531,14160,14389, 14248, 1606, 8105, 464, 9703, 139, 139, 139, 139, 139, 139, 139, 270, 473,14355,14109, 140, 572, 1617, 4627, 13708,13708,13708,13708,13708,13708,13708,13708,13708,13877, 13877,13877,13877,13877,13877, 139, 139, 139, 270,10499, 15190, 2023,13978,14089,14116, 329, 307,14387, 329, 307, 1618, 140, 3954,14248, 140,14392, 4331, 139, 139, 1606, 139, 836, 139, 139, 139, 139, 139, 139, 139,10612, 139, 139,10480,10480,10480,10480,10480,10480,10480,10480, 10480, 139, 139, 139, 139, 139, 139, 139, 9703,10676, 3291, 4332,14165, 572,10677,15558, 9703,14161,14333,14166, 15559,10613,13713,13713,13713,13713,13713,13713,13713,13713, 13713, 139, 139, 139, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 2023, 3675,13709,13709,13709,13709,13709, 13709,13969,10532, 3742,13710, 3077,10614, 140,16848, 140, 12690, 1606,15670,14072, 140,13924, 2023,13866,13866,13866, 13866,13866,13866, 2564,11505, 531,14245,14333,14278,15741, 14016,13926, 4455,15163, 1606,10694,13933, 4410, 3077, 4336, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11746, 2555, 2555, 4411, 2564,11747,10694,14267, 4455,14238,10694,13934, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15681,13892,11749,15763, 8136, 4339,13748,13748,13748, 13748,13748,13748,13748,13748,13748, 8136,10542,13984,13984, 13984,13984,13984,13745, 2564, 2555, 2555, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1275, 2555, 2555, 1376,14248,11746,16714,16868, 4455, 7061,11747, 10694, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4340,12658, 12658,12658, 1377, 4339, 1617,13760,13760,13760,13760,13760, 13760,13760,13760,13760, 1042,12604,12604,12604,12604,12604, 12604, 2564, 2555, 2555, 2555, 2555, 2023, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1618, 2555, 2555, 8110, 14374,14374,14375,10532, 1606,14022, 140,10554, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140,14107, 140, 531, 140, 3682, 140,13779,13779,13779,13779,13779,13779,13779,13779, 13779, 8111,12894, 4455,15396, 4455, 8356, 4455, 2564, 2555, 2555, 2555, 2555, 3077, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13924, 2555, 2555,16870,16880, 140,14192, 14123, 2564,11505,14031,14193, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3683, 6392,13933, 140, 8358, 3682,12709,12709, 12709,12709,12709,12709,13767,13767,13767,13767,13767,13767, 13767,13767,13767, 4455,10499, 2564, 2555, 2555, 4346, 1275, 329,13934, 8884, 8110,12894, 5705, 140,10955, 6392, 531, 3686, 3686, 3686, 3686, 3686, 3686, 3686, 3686, 3686,13768, 13768,13768,13768,13768,13768,13768,13768,13768,14197,10612, 14269, 3077,14270, 8105,14399, 8111,14244,16882,10532,14198, 5705,14271,14120,10694,14122, 307,10694,11748,14272, 2564, 140, 3689, 140, 3686, 3686, 3686, 3686, 3686, 3686, 2555, 2555,10613, 2556, 3085, 2555, 2555, 2555,14073, 4455, 2555, 2555, 2555,13784,13784,13784,13784,13784,13784,13784,13784, 13784,13936,14102,14280, 2555, 2555, 2555, 2555, 2555, 2555, 11517,13936, 8136, 3077, 5218, 3086,10614,13938, 4350, 8136, 11517, 4641,13945, 8925,14285, 140, 4642, 3954,12911,15982, 8136, 2564,13945, 2564, 2555, 2555, 2555, 2555, 2555, 5219, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13946, 3697, 2555, 5221, 140,14972,14225,10542,10554,10570,13946, 14226, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140, 140, 140, 531, 531, 4351,13979,13979,13979,13979,13979,13979, 13979,13979,13979,15191,16333,10727, 4455, 4455, 4455, 140, 10762, 2564, 2555, 2555, 3703, 2555, 2555,14289, 2555, 4352, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3699, 3697, 2555, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4353, 4353, 4353, 4353, 4353, 4354, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 2564, 2555, 2555, 3703, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 2555, 2555, 140, 2555, 3087, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 13952, 3088, 2555,14389,12894, 140, 507,10570,14040,11531, 140,14395, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140, 140,13961, 531,16907, 3089,15353,15483, 4356,13979,13979, 13979,13979,13979,13980,13981,13981,13981, 4455, 4455,15097, 15409,15412, 2564, 2555, 2555, 2565, 2555, 2555,13962, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3090, 2555, 2555, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4358, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2564, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2555, 2555, 2696, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13969, 3697, 2555, 2696,15183, 1070, 784, 1303,15283, 12690, 2697,14619, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4359,12005,13976, 2698, 2697, 3698,13848,13848,13848,13848, 13848,13848,13848,13848,13848,10955, 2698, 140,11911, 1071, 1275, 1304,13844, 2564, 2555, 2555, 2555, 2555, 2555,13977, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 257, 3697, 2555,14409,15195,14105,14473,14106, 8631, 8136,14359, 8136, 4360, 2555, 2555, 2555, 2555, 2555, 2555,14281, 8136, 14282, 8136,14066, 4351,13981,13981,13981,13981,13981,13981, 13981,13981,13981,10702, 140, 140, 8136, 531,15536,14279, 10694, 2564, 2555, 2555, 3703, 2555, 2555, 8136, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 2558, 2558, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4363, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2564, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2555, 2555, 14108, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558,12911,13989,13989,13989,13989,13989,13989, 1377,16907, 4364, 2555, 2555, 2555, 2555, 2555, 2555,13952, 13969, 8136, 1042,14286, 3702, 1275,16907,14230,11531,12690, 8884,14284, 8136, 140, 8136,13954,13974, 8136,14231,14309, 13961,13976, 2564, 2555, 2555, 3703, 2555, 2555, 8136, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558, 8105,15165, 140,14110, 8110,11071,13962,13977, 8136, 4364, 2555, 2555, 2555, 2555, 2555, 2555, 4365, 140,14311, 8136, 140, 3702,13982, 1379,12703,12703,12703,12703,12703, 12703,12703,12703,12703,15413,15397, 1044, 8111,15419, 4455, 2564, 2555, 2555, 3703, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1735, 2555, 2555,14023, 14023,14023,14023,14023,14023,14023,14023,14023, 4360, 2555, 2555, 2555, 2555, 2555, 2555,14372,14372,14372,14372,14372, 4366, 1736,13984,13984,13984,13984,13984,13984,13984,13984, 13984,14101,16583,15982, 1737,15982, 140, 9703, 2564, 2555, 2555, 2555, 2555, 1275, 2556, 3704, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 4364, 2555, 2555, 2555, 2555, 2555, 2555, 3705, 3705, 3705, 3705, 3705, 3706, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 2564, 2555, 2555, 3703, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 2555, 2555,14315, 2556, 2557, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 2559, 2560, 2558,14023, 14023,14023,14023,14023,14024,14025,14025,14025, 2562, 2555, 2555, 2555, 2555, 2555, 2555, 8916, 8136,10727, 8136,15638, 2563,15982,10762,13027,14016,15274, 4370, 8136, 8926, 8136, 14297, 307, 8917,14283,13031, 8918, 140, 1275, 2564, 2555, 2555, 2565, 2555, 2555, 464, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4455, 2555, 2555,14025,14025,14025, 14025,14025,14025,14025,14025,14025, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15388,12669,12669,12669,14312, 4366, 270, 13985,13985,13985,13985,13985,13985, 2748, 2222,12789,13986, 11635,11635,11635,11635,11635,11635, 2564, 2555, 2555, 2555, 2555, 1275, 2555, 3087, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140, 3096, 2555,14032,14032,14032,14032,14032,14032, 14032,14032,14032, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 14565,14565,14565,14565,14565, 3097,15982,14387, 4372,14032, 14032,14032,14032,14032,14033,14034,14034,14034,14394,16913, 14399, 140,16996, 2564, 2555, 2555, 1250, 1250,14404, 1250, 4401, 1250, 1250, 1250, 1250, 1250, 1250, 1250,11847, 1250, 1250,14034,14034,14034,14034,14034,14034,14034,14034,14034, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1617,10727, 784, 1079,11911, 1625,10762,14385,12911, 140,14300,13876,13876, 13876,13876,13876,13876,13876,13876,13876,13039,10542,14022, 1250, 1250, 1250, 1617,14401, 307, 307,15519,14475, 1618, 140, 140,14407, 1080, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735,10612, 3735, 1617, 5904,16220, 4455, 4455, 12894, 139,11911,11911,14409, 1618,13878,13878,13878,13878, 13878,13878,14414,14362,13982,13879,12703,12703,12703,12703, 12703,13983,12700,12700,12700,10613,10554, 1618, 5905,14483, 14493, 1078,11847, 307,15489,14386,14075, 140, 140, 4402, 139, 139, 1706, 139, 139, 139, 139, 139, 139, 139, 139, 139,11652, 139, 139,12911, 4455,15420,14569,14074, 10614,14389, 1706, 5906, 139, 139, 139, 139, 139, 139, 139,13039,14398,15545, 1707,14287, 4405,14399,13987,13987, 13987,13987,13987,13987,13987,13987,13987,10727,14406, 8111, 15546,15518,10762,15547, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,14077, 139, 139,14041,14041,14041,14041,14041,14041,14041,14041, 14041, 139, 139, 139, 139, 139, 139, 139, 4406,16453, 16453,16454,11071, 4405,14401,13988,13988,13988,13988,13988, 13988,13988,13988,13988, 140,14408,16996, 531,17031,17031, 1275, 139, 139, 139, 139, 139, 1275, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 177, 177, 177, 177, 177, 177, 177, 177, 4408, 177, 177, 177, 177, 177, 4409, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 222,13982,15556, 12700,12700,12700,12700,12700,12700,12700,12700,12700, 223, 223, 223, 223, 223, 223, 223, 223, 223, 140,17031, 16996, 140,16996,15557, 1078, 224, 224, 224, 224, 224, 225, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224,15421,14409, 226,14574, 223, 223, 223, 223, 223, 223, 139, 139, 14416, 139, 3747, 139, 139, 139, 139, 139, 139, 139, 140, 139, 139,14041,14041,14041,14041,14041,14042,14043, 14043,14043, 139, 139, 139, 139, 139, 139, 139,14411, 14418,12865,15710, 7168, 3124,16996,15177,14417,14423,14418, 4417,14043,14043,14043,14043,14043,14043,14043,14043,14043, 14425,16593, 139, 139, 139, 139, 139, 7169, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3161, 139, 139, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 139, 139, 139, 139, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4453, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 139, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 139, 139, 12894, 139, 139, 139, 139, 139, 139, 139, 139, 139, 14333, 3791, 139,10583,10583,10583,10583,10583,10583,10583, 10583,10583, 139, 139, 139, 139, 139, 139, 139, 4454, 16996,15479, 8136,15671, 3792, 8922,14426,13990,13990,13990, 13990,13990,13990, 8136,14431,10955,13991,10955,10955,14306, 140,17102, 139, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,10727, 3791, 139, 140,14604,10762,14606,14604, 8884,14411,14288, 8136, 139, 139, 139, 139, 139, 139, 139,14307,14444, 8926, 8136,16363, 3809,14445,14473,14058,14059,14060,14061,14061, 14061,14061,14061,14061,14452,14480,16190, 8105,15417,17135, 4455, 139, 139, 3799, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3793, 3791, 139, 4460, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 4461, 3797, 139, 139, 139, 139, 139, 139, 4461, 4461, 4461, 4461, 4461, 4462, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 4455, 139, 139, 3799, 4461, 4461, 4461, 4461, 4461, 4461, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 4463, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4464, 4465,11744,14248,17145, 15611,11744,16708, 4464, 4464, 4464, 4464, 4464, 4466,14242, 10694,14296,14273,10727,10694,14475,10762,14483,10762,10727, 14290,11745,11784,14295,10762,11745,14482,14485,14490,14298, 4464, 4464, 4464, 4464, 4464, 4464, 139, 139,14492, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9654, 139, 139, 2222, 2236,17157,13015,13015,13015,13015,13015,13015, 139, 139, 139, 139, 139, 139, 139,14294, 9655,10727, 1617,14420, 4468,11757,10762, 140,10955,10955,11758,14443, 9656,13881,13881,13881,13881,13881,13881,13881,13881,13881, 4455, 139, 139, 4471, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 4472, 1618,14606,14604,17173,14493,10955,14502, 4472, 4472, 4472, 4472, 4472, 4473,14078,10727,14500,10727,14509, 14445,10762,11757,10762,14082, 5904,11781,11758,14450,14299, 12911,10955, 4455,14495,14675,10955, 4472, 4472, 4472, 4472, 4472, 4474, 139, 139,14528, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8136, 3791, 139,14083,14606,14310, 14315,15515,14604,14529,15276, 8136, 139, 139, 139, 139, 139, 139, 139,14453,14536,14084, 1275,14301, 3809,14302, 10727,14458,10727,12793, 6593,10762,15635,10762,14303,16512, 11574, 4475, 5906,11779,14353,14304, 4455, 139, 139, 3799, 246, 246, 140, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 4489, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 3189, 246, 246, 246, 246, 246, 246, 4490, 4490, 4490, 4490, 4490, 4491, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 4490, 4490, 4490, 4490, 4490, 4490, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4494,17101, 1078, 140,14315,14333, 1742, 4493, 4493, 4493, 4493, 4493, 4495,14031,10570,14040,14447,14569, 1743,15739, 307, 307, 307,14623,14470, 140, 140, 140, 14573,14688, 784, 2242,14626, 1744, 4493, 4493, 4493, 4493, 4493, 4493, 446,14104,14473, 4455, 4455, 4455,14079,15636, 15673, 140,14478, 4501, 4502, 4503, 4504, 4504, 4504, 4504, 4504, 4504, 253, 9654, 1078, 140, 2243,14475, 9655, 2640, 2640, 2640, 2640, 2640, 2644,14481, 4641,14483,14485,14493, 9656, 4642, 3954, 9655, 776,14488,14491,14498,14356, 1078, 16218,14690,14358, 784, 1343, 9656, 2640, 2640, 2640, 2640, 2640, 2640, 2648,14574, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 2126,14578, 9657,14698,14080,14495, 140, 2637, 2637, 2637, 2637, 2637, 2638,14501, 1344,14502,14510, 9657,14504, 784, 1079,14529,14365,14507,14515,14537,14527, 17320,15768,14534,14628, 140, 265,14542, 2637, 2637, 2637, 2637, 2637, 2637, 4506, 4507, 4508, 4509, 4509, 4509, 4509, 4509, 4509, 1345, 1711,14632,14579, 1080,14531,14081, 253, 253, 253, 253, 253, 256,14554,14583,14569,14574,14579, 11782,14584,14594,10727, 139,14572,14577,14582,10762,14587, 14597,14628,12778,12778,12778,14305, 253, 253, 253, 253, 253, 253, 265, 265,11783, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 4523, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 3226, 265, 265, 265, 265, 265, 265, 4524, 4524, 4524, 4524, 4524, 4525, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 4524, 4524, 4524, 4524, 4524, 4524, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4528,14373,14373,14373,14373,14373, 14373, 4527, 4527, 4527, 4527, 4527, 4529,14604, 784, 8846, 8847, 8927,14604,14619, 8136,14609, 140, 1078,14606,14308, 16203, 898,12005,14611,14561, 8136,14612,14606, 4527, 4527, 4527, 4527, 4527, 4527, 477, 8928,14637, 531,14613,14248, 15553,16711, 8848, 1234,14716, 4535, 4536, 4537, 4538, 4538, 4538, 4538, 4538, 4538, 274, 899,15645,14641,14604,14619, 5903, 2671, 2671, 2671, 2671, 2671, 2675,14085,12005,14611, 14634,14634,14645, 1196,14657,14621,12911, 8849, 9662,13237, 13237,13249,14315,12032,14637, 784, 8846, 8847, 2671, 2671, 2671, 2671, 2671, 2671, 2679, 531, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 2161, 1078, 1078,14648,14634, 15525, 1078, 2668, 2668, 2668, 2668, 2668, 2669,13237, 8848, 14614,14614,14614,14614,14614,14614,14614,14614,14614,14652, 14642, 140, 455,14751,14781, 140,12894, 5903,14790, 2668, 2668, 2668, 2668, 2668, 2668, 4540, 4541, 4542, 4543, 4543, 4543, 4543, 4543, 4543, 8849,16216,14648,14643,14623,14661, 14087, 274, 274, 274, 274, 274, 277,14626,14664,14188, 15486,16263, 140,16518,14631, 784, 8846, 8847,14615,14615, 14615,14615,14615,14616,14617,14617,14617,14645, 274, 274, 274, 274, 274, 274, 291, 291,13249, 291, 291, 291, 291, 291, 291, 291, 291, 291,14604, 291, 291, 8848, 1078, 531,16555,14675,14609,14086,14604,14657, 291, 291, 291, 291, 291, 291, 291,17344,12032, 5903, 140,14634, 4564,14606, 898, 898,14090,14092, 9660,14795,13237,14612, 898, 531, 8068,14604, 8849,14640,14354,14333, 291, 291, 291, 291, 291, 139, 291, 291, 291, 291, 291, 291, 291, 291, 291,14604, 291, 291, 1018,14093,10069,10069, 14836,14609, 140,15672, 8069, 291, 291, 291, 291, 291, 291, 291, 4565,14096, 1349,14094,10069, 4564,14645,14606, 14606,11789, 8070, 139,10727,14836,14838,13249,14612,10762, 14613, 1020,14095,14604,14651, 291, 291, 291, 3268, 8071, 12976,17306,12865,14836,14611,17439, 2708,14606,14675, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708,14613,14682, 14677,16588,17461,14606, 140, 2708, 2708, 2708, 2708, 2708, 2709, 2708, 2708, 2708, 2708, 2708, 4568, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 514, 514, 14606, 514, 758, 514, 514, 514, 514, 514, 514, 514, 16356, 514, 514,14617,14617,14617,14617,14617,14617,14617, 14617,14617, 514, 514, 514, 514, 514, 514, 514,14675, 14634,14657,14661,14675, 4575,14677, 898,14680, 8068,13237, 12032,14664,14675,14683,14682,10069,14640,14659,14665,14675, 14680,14642, 514, 514, 514, 514, 514,14680, 514, 758, 514, 514, 514, 514, 514, 514, 514,14677, 514, 514, 8069,10729,14838,17467, 531,14683,14677,11574,14643, 514, 514, 514, 514, 514, 514, 514, 4576,14684, 8070, 140, 17472, 4575, 531,14604,14097,14369,14369,14369,14369,14369, 14369,14369,14369,14369,14611, 8071,14604,14606,14604, 514, 514, 514, 1769,14604,14609,14612, 140,14604,15597,14611, 14685,14609, 4581,10762,14370,14370,14370,14370,14370,14370, 14370,14370,14370,14371,14371,14371,14371,14371,14371,14371, 14371,14371,14604,16608, 1770, 140, 531,14685, 9703,14606, 14609, 1771,14686,15299, 140,14372,14372,14372,14372,14372, 14372,14372,14372,14372,14606, 140, 1772,14688, 1773,14606, 1774,14688,14612, 1775, 1776,14693, 140,14847, 1777,14686, 14613, 1778,14695, 1779,14333, 1780,13472, 1781, 1782, 1783, 1769,14376,14376,14376,14376,14376,14376,14376,14376,14376, 14565,14565,14565,14565,14565,14565,14565,14565,14565,14645, 14645,14850, 140, 1078, 140,14690,14690,15675,13249,13249, 14854, 140, 1770,14696, 2204,14651,14661,14697, 4582, 1771, 14653,14653,14661,10768,14657,14664,16358,14698,14698,16845, 14919,14664,14665,12032, 1772,14701, 1773,14666, 1774,14715, 14659, 1775, 1776,14666,14702,14668, 1777,14654,14654, 1778, 14657, 1779,14705, 1780,14716, 1781, 1782, 1783, 3291,12032, 3292,14721,14719,14716,14667,14721,15426, 1768,14751,14724, 14667,14668,14669,14726,14720,14736,14725,14741,14751,14755, 14756,14729,14756,14740,11071,14744,14754,14764,14762,14781, 9703, 307, 3293,14763, 9703,14767, 140,14784,14669, 3294, 14781,14739,14739,14739,14739,14739,14739,14739,14739,14739, 17479,14785,14790,14790, 3295,14795, 3296,14736, 3298,14795, 14793, 3299, 3911,14798,14794,15632, 3301,14899,14800, 3302, 14799, 3303,14315, 3304,14815, 3305, 3306, 3919, 3291,14804, 3292,14800,10000,14805,14815,14820,15823, 1768,14903,14803, 1078,14808,14818,14821,14819,14819,14819,14819,14819,14819, 14819,14819,14819,14821,14825,14826,14836,14836,14838,14838, 14815,14824, 3293,14829,14841,14899,14844,14924,14843, 3294, 14845, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 14856,14864,15899,14836, 3295,12137, 3296,14838, 3298,14859, 12199, 3299, 3911,14847,14843,14856, 3301, 3922,14845, 3302, 1078, 3303,13472, 3304,14859, 3305, 3306, 3307, 2223,14853, 14856,14860,14847,14856,14864,14868,14861,14868, 2224,14859, 464,13472,14859,12199,14871,14868,14871,14919,14864,14860, 14866,14861,14868,14872,14871,14878, 531,12199,14873, 531, 2225,14871,15362,14862,12211,14836,14873, 2226,14872,14838, 4614,14864, 531,14841,14864, 270,12894,14844,14862,14882, 12199,15432, 2227,12199, 2228,14874, 2229,14866,14885, 2230, 2231,14878,14875,14874, 2232,14875,16637, 2233,14919, 2234, 12211, 2235,14882, 2236, 2237, 2238, 2223,14880,14882,14923, 7624,14885,14878,12865, 1572,14882, 2224,14885,14886,14876, 7624,12211,14876,14887,14885,14878,14878, 140,14896,14887, 11096,14886, 1234, 1416,12211,12211, 531,13510, 2225, 7624, 11098,14880, 140,14919,14896, 2226,14889,14889,14912,11381, 14888,14922, 140,13510,14896,14983,14888, 8343, 7624,11098, 2227,14924, 2228,13510, 2229,14904, 307, 2230, 2231,14933, 14902, 140, 2232,14890,14890, 2233,14896, 2234,11098, 4615, 14896, 2236, 2237, 2238, 2223,13510, 7624, 7624,14912,13510, 140,12865,14905, 531, 2224, 1078,14902, 8343,14924, 8356, 531,14904,14912, 8336,14914,14912,14906,14906,15205,14934, 16589, 8343,14935, 307, 8343, 1078, 2225,12641, 140, 140, 14938, 140,14919, 2226, 531, 8356,13526, 8356,14905,14908, 14908,14908,14908,14908,14908,14908,14908,14908, 2227, 8358, 2228, 1078, 2229,14935, 307, 2751, 2231, 140,14940, 140, 2752, 2023, 4616, 2233,14939, 2234,14943, 2235,14919, 2236, 2237, 2238, 3291,15669, 3955, 8358,14922, 8358,14959, 1606, 14333, 2222, 8356,15024, 3956,14908,14908,14908,14908,14908, 14909,14910,14910,14910,14910,14910,14910,14910,14910,14910, 14910,14910,14910,14919, 140,14919, 3957,14919, 139,14959, 782,14959,14959, 3958,14923,14922,14923,14962,14959,14962, 4638,16844, 8358,14963, 3967,14838,14959, 1070, 3959,14963, 3960,14964, 3962,14964,14962, 3963, 4625, 139,14959,14967, 3965,14919, 1078, 3966,14968, 3967,14919, 3968, 139, 3969, 3970, 3971, 3291, 1078, 3955,14919,14919,14923,14919,14919, 1071, 2222,14969,14922, 3956,14919,14922,14923,14919,14964, 14975,14975,14976,14922,14977,14977,14977,14977,14977,13635, 14919,13635,16131,14984,14981, 140, 3957,13638, 1379,14969, 3570, 1572,13639, 3958,14988, 1572, 1572, 3570, 140,14984, 1044,14978,14978,14978,14978,14978,14978,14987, 3959, 1234, 3960,14984, 3962, 1234, 1234, 3963, 4625,13635,14984,14987, 3965,16577, 1572, 3966,14984, 3967,14987, 3968,16269, 3969, 3970, 3971, 783, 783, 784, 785, 786, 783, 783, 783, 1234,15406, 783, 783, 783,14984, 3570, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669,14988, 783, 783, 783, 783, 783, 783,14984,14989, 3570,14989,14989, 789,14989, 14989,14994,14992,14984,14988,14992,14984,14993,14992,14997, 14993,13256,13256,13256,14987,17485, 139, 783, 783, 783, 139, 139,14984, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 150, 150, 4672, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 4673, 3359, 139, 139, 139, 139, 139, 139, 4673, 4673, 4673, 4673, 4673, 4674, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 4673, 4673, 4673, 4673, 4673, 4673, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4677, 3570,14989,14994, 3570,14984, 3570, 4676, 4676, 4676, 4676, 4676, 4678,14984,14998,14984, 784, 2981, 14984,14984,15446,15254,14984,14987,14988,15000, 531,14987, 14989,14988,12690,14994,14984,14984, 4676, 4676, 4676, 4676, 4676, 4676, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 150, 2982,15005,15000,15025,15025, 329, 4679, 4679, 4679, 4679, 4679, 4680,15028, 1572,15029, 5647,15030, 6336, 1234, 5647,15016, 6336,13706,14146, 4286, 4286,12865,15034, 14147,12865,14974, 1234, 2023, 4679, 4679, 4679, 4679, 4679, 4679, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4008, 5648, 1606,15025,15030, 5648, 2023, 4684, 4684, 4684, 4684, 4684, 4685,15030,15035,15040, 898,17494,14149,13706, 531,15033,15038,15043, 1606, 4286,15013,15014,13632,13632, 13632,13632,13632,13632, 4684, 4684, 4684, 4684, 4684, 4684, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 1572, 3008,15019,15035,15035,15040, 139, 4686, 4686, 4686, 4686, 4686, 4687,15045, 2023,15039,15044,15045, 1234, 3608,17503, 15048,15050, 4286, 5712,15060, 5712, 5712,15049,15682,15053, 15004, 1606,15063, 4686, 4686, 4686, 4686, 4686, 4686, 150, 150, 150, 150, 150, 150, 150, 150, 150, 2790,15040, 13788, 7168,15110,15115,14333, 150, 150, 150, 150, 150, 162,14999,14999,14999,14999,14999,14999,14999,14999,14999, 15060, 5712, 531, 5712, 5712, 7169,15178,14994,15017,15017, 15018,15065, 150, 150, 150, 150, 150, 150, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4018,15110, 2023, 15110,15145, 6300,15066, 4691, 4691, 4691, 4691, 4691, 4692, 15066,15069, 784, 3636,15071,13788,10316, 1606, 1078,17510, 9703,15070,15074,13791, 9703,11376,15021,15021,15021,15021, 15021, 4691, 4691, 4691, 4691, 4691, 4691, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 3637, 2023,15106, 140, 10317,13788,15450, 4693, 4693, 4693, 4693, 4693, 4694, 2023, 3077,15110,13792,15110, 1606, 1606,13785, 784, 5021,15100, 5712,15113,15114,17514, 531,16191, 6392, 1606, 2564,15015, 4693, 4693, 4693, 4693, 4693, 4693, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4030,15087,15150, 3077,15115, 15086, 5022, 4699, 4699, 4699, 4699, 4699, 4700, 5705,15115, 15119,13785,15120,15125,15110,15145, 2564,15118,15110, 2564, 15123,15128,15113,13709,13709,13709,13709,13709,13709, 4699, 4699, 4699, 4699, 4699, 4699, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 2023,15110,15120,15110,12911,15110, 15145, 4701, 4701, 4701, 4701, 4701, 4702,15124,15114,15110, 15114,15149, 1606, 1275, 140,12911,17449,15113,16673,15064, 15064,15064,15064,15064,15064,15064,15064,15064, 4701, 4701, 4701, 4701, 4701, 4701, 2840,15060, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2804, 5712, 3077,14221,15522, 15145,15145, 2801, 2801, 2801, 2801, 2801, 2803,15148,15148, 7061,15145,15145,15150,14315, 2564,15110,15150,17538,15156, 15148,15153,15149,15110,15103,15103,15104,15109,15154, 2801, 2801, 2801, 2801, 2801, 2801, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4046, 3077,15156,15110,15637,15110, 15110, 4710, 4710, 4710, 4710, 4710, 4711,15113,15114,15110, 15110,15114,15157, 2564, 898, 3742,15159,15113,15113,15160, 531,15185,15082,15082,15082,15082,15082,15082, 4710, 4710, 4710, 4710, 4710, 4710, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 2023, 3077, 3077, 140, 3077, 5048, 4410, 4712, 4712, 4712, 4712, 4712, 4713, 140,17541,15196,15563, 10729, 1606, 2564, 2564, 1133, 2564, 5750, 4411,15194,15200, 15564,15161,15105,15105,15105,15105,15105, 4712, 4712, 4712, 4712, 4712, 4712, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2815, 2818, 3077,15700,17337,14153,15196, 1078, 2815, 2815, 2815, 2815, 2815, 2817,15199, 140,15600,15205,12865, 14315, 2564,10762,15213,15220,15437,15214,12641,15214,15221, 15221,15107,15107,15108,15207,15196, 2815, 2815, 2815, 2815, 2815, 2815, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 2811, 1839, 3077,15215,15643,15215,15222,15222, 2811, 2811, 2811, 2811, 2811, 2812, 531,17547,11503,11505,15716, 1617, 2564, 1617, 329, 329,15691,15228,15721,15236, 140, 140, 15166,15166,15166,15166,15166, 2811, 2811, 2811, 2811, 2811, 2811, 4721, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 3408, 1618,15229, 1618,15237,15247,10768, 4722, 4722, 4722, 4722, 4722, 4723,15135,15135,15135,15135,15135,15135,15135, 15135,15135, 531,15718,15261,17551, 9703, 140, 3742,15138, 9703,15724,15248,15175, 4722, 4722, 4722, 4722, 4722, 4722, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4726, 15227,15262,15452,16219, 2555,15228, 4725, 4725, 4725, 4725, 4725, 4727, 4410,11505, 898,15230,11505,15230,15705, 329, 307, 329, 329, 329, 307, 140,16447, 140, 140, 140, 4411, 531,15229, 4725, 4725, 4725, 4725, 4725, 4725, 4733, 4734, 4735, 4736, 4736, 4736, 4736, 4736, 4736, 3663, 140, 140,12894,15205,15187, 140, 2832, 2832, 2832, 2832, 2832, 2836,12641,11515,11517, 140,11517, 4324,15238, 329, 329, 16632, 329, 307, 329, 140, 140, 531, 140, 464, 140, 16346,15083, 2832, 2832, 2832, 2832, 2832, 2832, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 2311,15235,15192, 15387,12894,12911,15236, 2829, 2829, 2829, 2829, 2829, 2830, 11517,15238,11574, 270,11529,11531, 329, 329, 307, 307, 329, 329, 140, 140, 140, 531, 140, 140,15480,15516, 15237, 2829, 2829, 2829, 2829, 2829, 2829, 139, 139, 531, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 4742, 150, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 150, 139, 139, 139, 139, 139, 139, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139,16257, 139, 139, 139, 139, 139, 139, 139, 139, 139,12894, 139, 2864,15239,15239,15239,15239,15239, 15239,15239,15239,15239, 139, 139, 139, 139, 139, 139, 139,16633,17555,12894, 5705,12003, 4752, 1617,14977,14977, 14977,14977,14977,14977,14977,14977,14977, 140,13878,13878, 13878,13878,13878,13878, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 2864, 434,14195, 9703, 140, 531, 1234, 9703,15442, 15716, 139, 139, 139, 139, 139, 139, 139, 4753,17419, 257,15723,12865, 4752, 1617,14979,14979,14979,14979,14979, 14979,15359,15428,14145,14980,15171,15171,15171,15171,15171, 15171, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 4756, 434, 15246,15260,15414,14117, 1234,15247,15261,15254, 139, 139, 139, 139, 139, 139, 139,17559,12690, 257, 140,12911, 4757,15356,14982,14982,14982,14982,14982,14982,14982,14982, 14982, 531,15248,15262,12845, 434,12894, 1735, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 257, 139, 4756,15402,15358,14185,14228, 17451, 1234, 1736,15484,12871, 139, 139, 139, 139, 139, 139, 139, 4758,15447,12865, 1737, 2697, 4757,15398,15003, 15003,15003,15003,15003,15003,15003,15003,15003, 2698,13985, 13985,13985,13985,13985,13985, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1275, 139, 4756, 758,13491,13491,13491,12005, 1234,15718, 11623,15348, 139, 139, 139, 139, 139, 139, 139, 140, 15725, 531, 140, 140, 4761,10612,15020,15020,15020,15020, 15020,15020,15020,15020,15020, 516,15277,15278,15277,15278, 4455, 4455, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,10613, 139, 4756, 17563,12911, 1275, 531,12896, 1606,15716,15718,15418, 139, 139, 139, 139, 139, 139, 139, 4762,15723,15725,15279, 16668, 4761,15280,15021,15021,15021,15021,15021,15021,15021, 15021,15021,15363,13990,13990,13990,13990,13990,13990, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1275, 139, 4756,15716, 3742,17751, 17755,11623, 1606,17671,15716,15721, 139, 139, 139, 139, 139, 139, 139, 140,15364,15723, 531,10729, 4764,15254, 4765,15022,15022,15022,15022,15022,15022,11531,12690,11531, 15023, 4455, 4410, 329, 307, 329, 4766, 4767, 4767, 140, 15263, 140, 2023,10955, 531,14317,10613, 4768, 139, 139, 4411, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1606, 139, 2864, 2696,10727,15186,14117,15264,14117,10762, 15716,15477, 139, 139, 139, 139, 139, 139, 139,12894, 15588,10614,12894, 2697, 4774,10612,15101,15101,15101,15101, 15101,15101,15101,15101,15101, 2698,16762,12845,15478,12845, 15416,14199, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,10613, 139, 2864, 15481,15403, 784, 1303,15357, 2564, 5904,10955,10955, 139, 139, 139, 139, 139, 139, 139, 4775,16705,15415,15365, 17832, 4774,14248,15102,15102,15102,15102,15102,15102,15102, 15102,15102,10614, 6594,15718,15716, 1304,10955, 5905, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 257, 139, 2864,14333,15407, 9703, 15374,15399, 2564, 9703,15718,15718, 139, 139, 139, 139, 139, 139, 139, 5906,17874,12894,15725, 1379, 4779,10612, 15105,15105,15105,15105,15105,15105,15105,15105,15105, 1044, 17890,15674,15451, 5218,15433,15490, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,10613, 139, 2864, 3077,10702,14333,14187, 5219, 2564, 15537,15434,10694, 139, 139, 139, 139, 139, 139, 139, 4780, 5221, 2564, 1275,12865, 4779,15155,15155,15155,15155, 15155,15155,15155,15155,15155,10955,10614,14315,15433,16331, 15680, 140,15150, 2866, 139, 139, 139, 139, 1376, 139, 139, 139, 139, 139, 139, 139, 139, 139,16461, 139, 2864, 140,15716, 898,15641,15434,15360, 8631, 1377,15642, 139, 139, 139, 139, 139, 139, 139, 9703,12865,17906, 1042, 9703, 4784,15440,15158,15158,15158,15158,15158,15158, 15158,15158,15158,14333,12913,15699,14315, 983,15426,15448, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1308, 139, 2864,15629, 140, 15678,15404, 9703, 2564,10955,15679, 9703, 139, 139, 139, 139, 139, 139, 139, 4785,15630,12911,17917,15631, 4784, 15239,15239,15239,15239,15239,15240,15241,15241,15241,10676, 15249,15727,16192,17706,10677,16669, 329, 2866, 139, 139, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139,10955, 139, 2864,15241,15241,15241,15241,15241, 15241,15241,15241,15241, 139, 139, 139, 139, 139, 139, 139,15249, 3291, 3291,14165,14165, 4788, 329, 307,15718, 14317,14166,14166, 140,15250,15250,15250,15250,15250,15250, 15250,15250,15250,11847, 2866, 139, 139, 139, 139,15715, 139, 139, 139, 139, 139, 139, 139, 139, 139,15456, 139, 2864,15250,15250,15250,15250,15250,15251,15252,15252, 15252, 139, 139, 139, 139, 139, 139, 139, 4789,17750, 139,16773,13039, 4788,15252,15252,15252,15252,15252,15252, 15252,15252,15252,10702,14248,16868,17745,15823,10704,15538, 10694, 2866, 139, 139, 139, 139, 8136, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4790, 139, 2864,13982, 139,12700,12700,12700,12700,12700,12700,15254, 139, 139, 139, 139, 139, 139, 139, 4790,12690, 8143,15555,17956, 4792,16879, 140,15256,11542,11542,11542,11542,11542,11542, 11542,11542,11542,15445,15584,14317,14317, 8153, 2866, 139, 139, 4790, 4790, 139, 139,12865, 139, 139, 139, 139, 139, 139, 139, 139, 139,14140, 139, 139,11588,11588, 11588,11588,11588,11588,11588,11588,11588, 139, 139, 139, 139, 139, 139, 139,15254,15299,16766,16772,14144, 4794, 17966,15727, 307,12690, 5904,10729,15436, 140,15477, 9703, 15256,12865,15734, 9703,15491,15263,12894, 139, 139, 139, 139, 139,14145, 139, 139, 139, 139, 139, 139, 139, 139, 139,10669, 139, 139,15478, 5905,15449, 140,14317, 1070,12894,15264,12639, 139, 139, 139, 139, 139, 139, 139, 4795,10727,15485,15373, 140, 4794,15603,15270,15271, 15272,15273,15273,15273,15273,15273,15273,14192,16564,16763, 12911, 5906,14193, 1071, 139, 139, 139, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139,14232, 139, 2864,11596,11596,11596,11596,11596,11596,11596,11596, 11596, 139, 139, 139, 139, 139, 139, 139,15517,15693, 16774,16816,12005, 4799,15727,15275,15275,15275,15275,15275, 15275,15275,15275,15275, 140,15734,12911, 531,17827,14317, 14335, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,15526, 139, 2864,11607, 11607,11607,11607,11607,11607,11607,11607,11607, 139, 139, 139, 139, 139, 139, 139, 4800,10727,16739,14220,12641, 4799,10727,15281,15281,15281,15281,15281,15281,15281,15281, 15281, 140,15709,15709,15709,15709,15709,15638, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 2864,15349,15349,15349,15349, 15349,15349,15349,15349,15349, 139, 139, 139, 139, 139, 139, 139, 140, 140,13969,13969,13969, 4803,15729,15282, 15282,15282,15282,15282,15282,15282,15282,15282, 9209,15736, 17978,14317,14335,15704,16364, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 2864,15349,15349,15349,15349,15349,15350,15351, 15351,15351, 139, 139, 139, 139, 139, 139, 139, 4804, 9211,16767,16809,15716, 4803,15351,15351,15351,15351,15351, 15351,15351,15351,15351,15723, 9703,15426,14335,17994, 9703, 12911,14335, 2866, 139, 139, 139, 139,12894, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4805, 139, 2864, 9703,15453,14218,12894, 9703, 1742,15487,15520,10673, 139, 139, 139, 139, 139, 139, 139, 4805, 1743,16808,12871, 15539, 4807,16814,11714,12874,14185,10702,15718,15427,12865, 14191,10704, 1744,10694,15492,15724,14011,14011,14011, 2866, 139, 139, 4805, 4805, 139, 139,15401, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 203, 139, 139, 139, 139, 139, 139, 4810, 4810, 4810, 4810, 4810, 4811, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 4809, 4809, 4809, 4809, 4809, 4809, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,10729,15513, 5647, 3954,16221,16880,10955,12911, 6392,12911, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810,15088,15088,15088, 15088,15088,15088,15088,15088,15088,15514,14218,14269,15716, 14270,15716,12641, 3954, 5648,10702,15528,15721, 5705,15534, 10704,15689,10694,15594, 140,10727,14272, 531,15535,16890, 10762, 4810, 4810, 4810, 4810, 4810, 4810, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,15081, 148, 149, 139, 139, 139,11847, 140, 139, 139, 139,13760, 13760,13760,13760,13760,13760,13760,13760,13760,16709,15718, 2893, 139, 139, 139, 139, 139, 139,15724,14248,10702, 2023,16554, 162,11623,10704,15834,10694,15714,15727,15540, 307, 140,10702,13039,14626, 140,15732,10704, 1606,10694, 139, 139, 139, 139, 139, 139,15089, 148, 149, 139, 139, 139,15429, 4455, 139, 139, 139,15090,15090,15090, 15090,15090,15090,15090,15090,15090,16863,15729, 2895, 139, 139, 139, 139, 139, 139,15735,18020, 9703, 5705,10702, 162, 9703,15348,15543,10704,10702,10694,15567,15727, 307, 10704,15091,15571,14315, 140, 5904,15732,10683, 139, 139, 139, 139, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4142, 4455,18183,10729,15366,11712,15646, 4814, 4814, 4814, 4814, 4814, 4815,10702,15727,15566, 5905,15647,10704, 10702,10694,15716,15732,10702,10704,15513,10694,11911,10704, 15541,10694, 5904,15723,12911, 4814, 4814, 4814, 4814, 4814, 4814, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4817,10727, 5906,15514,12911,15741,10762, 4816, 4816, 4816, 4816, 4816, 4818, 1617, 5905,10702,15572,18190,14335,11911, 10704,15521,10694,15523,15166,15166,15166,15166,15166,15166, 15166,15166,15166,15729, 4816, 4816, 4816, 4816, 4816, 4816, 375,15735,15367, 1376,15405, 1618,15743,14224,16805, 5906, 6595, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4821, 1706,15727, 1377,16697,15716,15568, 4820, 4820, 4820, 4820, 4820, 4822,10702,15718, 1042,11740,10702,10704,15716, 10694, 1706,10704,15729,15570,15725,15718,15721,10694, 1745, 11745,14315,15716, 1707, 4820, 4820, 4820, 4820, 4820, 4820, 4826, 4826, 4826, 4826, 4826, 4826, 4826, 4826, 4826, 3483, 9654,15639,10729,15718,15741,15718, 4826, 4826, 4826, 4826, 4826, 4827,15569,15724,10729,15748,10702,15743, 1708, 2144, 9655,10704, 140,10694,15368,15640,11911,14333,15750, 784, 1343,15372, 9656, 4826, 4826, 4826, 4826, 4826, 4826, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4830,10727, 15595,15683,16853,15741,10762, 4829, 4829, 4829, 4829, 4829, 4831,10727,15684, 1344,15591,11757,10762, 9657, 8136, 8136, 11758,10729,15589,15371,10729,11911,15581, 140, 784,15381, 15382, 265, 4829, 4829, 4829, 4829, 4829, 4829, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 3493, 1345, 8143, 8143,16852,15743,15587, 4835, 4835, 4835, 4835, 4835, 4836, 15586,16373,15383,10729,15716,10729, 8151, 8151,10727, 8153, 8153,10727,15721,10762, 7168, 140,10762, 784, 8846, 8847, 10611, 4835, 4835, 4835, 4835, 4835, 4835, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4839,15384, 7169,16348, 11911,15716,15741, 4838, 4838, 4838, 4838, 4838, 4840,15721, 10727, 8848,10727,15748,10729,10762,10729,10762,10729,15592, 15385,15593,15598,11911, 140, 784, 1079,15741,14333, 5903, 4838, 4838, 4838, 4838, 4838, 4838, 4844, 4845, 4846, 4847, 4847, 4847, 4847, 4847, 4847, 150, 8849, 531,15676,16511, 15751,15743, 2904, 2904, 2904, 2904, 2904, 2908,14301, 1080, 14302,10727,15750,10727,10729,10727,10762, 8136,10762,15590, 10762,15596,15677, 784, 1079, 898,14304, 139,15389, 2904, 2904, 2904, 2904, 2904, 2904, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 3505,15695,18197,15605, 8143,16744, 15718, 4848, 4848, 4848, 4848, 4848, 4849, 1080,15724, 1018, 10729,10727,10727,15610,11776, 8151,10762,10727, 8153,11911, 2222, 2236,15601, 2746, 898,15696,14092, 1349, 4848, 4848, 4848, 4848, 4848, 4848, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4852, 1020,15716,15743,15837,15737,15741, 4851, 4851, 4851, 4851, 4851, 4853,15841,10727,14093,10729, 15748,15741,10762,15743, 784, 8846, 8847,15527,15602,15746, 531, 784, 1079,16698,15750,15737,14094, 4851, 4851, 4851, 4851, 4851, 4851, 4857, 4858, 4859, 4860, 4860, 4860, 4860, 4860, 4860, 9654,14095,12911,14248,15751,15751, 8848, 2914, 2914, 2914, 2914, 2914, 2918, 1080,10727,15758,15758,15743, 11757,10762, 9655,15741, 8136,11758, 5903,15749,15604,12865, 14225,15746,15386, 139, 9656,14226, 2914, 2914, 2914, 2914, 2914, 2914, 2438, 8849, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 2394,15718, 8143,15753,15738,16591,15369, 2912, 2912, 2912, 2912, 2912, 2913,15606,15760,15743, 9657, 10620,15741, 8151, 8136, 8136, 8153,15749,15751,15743,15746, 15741,17757,14248, 898,15738,14092,15749, 2912, 2912, 2912, 2912, 2912, 2912, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 3521,11911, 8143, 8143,14335,15741,15751, 4862, 4862, 4862, 4862, 4862, 4863,15608,15756,14093,15753,15751, 15843, 8151, 8151,15609, 8153, 8153,15759,15756,10729,15846, 15741, 898,14333, 8068, 140,14094, 4862, 4862, 4862, 4862, 4862, 4862, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4866,14095,15392,15666,18205,15751,16804, 4865, 4865, 4865, 4865, 4865, 4867,15756, 8069,15393,16350,10729, 3954, 15753,15667,15851,15753,15668,10727,15743, 1078,15759,11757, 10762,13237, 8136, 8070,11758, 4865, 4865, 4865, 4865, 4865, 4865, 4871, 4872, 4873, 4874, 4874, 4874, 4874, 4874, 4874, 8071, 3954,15741,15743,15778,15761,15690, 2925, 2925, 2925, 2925, 2925, 2929, 8143,15741,10727,15741,15741,15743,15580, 10762,15741, 4644,12865,15746,15748,15749,15688,15748,15746, 8151,15585,15761, 8153, 2925, 2925, 2925, 2925, 2925, 2925, 4875, 4875, 4875, 4875, 4875, 4875, 4875, 4875, 4875, 2408, 15743,17301,16595,15762, 531,15741, 2923, 2923, 2923, 2923, 2923, 2924, 8143,15746,15743,15743,15778, 8929,15783,17302, 15778,18216, 8930,15749,15781,15750,15786, 784, 1079, 8151, 15762,15782, 8153, 2923, 2923, 2923, 2923, 2923, 2923, 139, 139, 3570, 139, 836, 139, 139, 139, 139, 139, 139, 139,15783, 139, 139, 4876, 4876, 4876, 4876, 4876, 4876, 9654, 1080,15787, 4877, 139, 139, 139, 139, 139, 139, 15788,16748, 9703, 1572,16584, 572,10727, 9703,15791,15764, 9655,15766,15766,15766,15766,15766,15766,15766,15766,15766, 1078, 4937, 9656, 139, 139, 139, 139, 139,15370, 139, 163, 139, 139, 139, 139, 139, 139, 139, 1078, 344, 139, 4878, 4878, 4878, 4878, 4878, 4878,15783,15788,10618, 4877, 139, 139, 139, 139, 139, 139, 9657,15793,15792, 531, 898, 345,15834,15793,15788,15796,15808,15701,15702, 15701,15702,14626,17197,10729,15797,17834,14315,15812,15840, 139, 139, 139, 176, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 4198, 140, 899, 140,12865,15798,15808, 4884, 4884, 4884, 4884, 4884, 4885,15801,15811,15813,15823, 16456,15703,15823, 1196,15704,12894,15816,15828,15599,10955, 14146,10727, 1275,15830, 8136,14147,10762, 4884, 4884, 4884, 4884, 4884, 4884, 4886, 4886, 4886, 4886, 4886, 4886, 4886, 4886, 4886,11783,10955,16640,15886,15823,15825,15825, 4886, 4886, 4886, 4886, 4886, 4887, 8143,15831,12005,15832,15855, 18230,15607,15865,16332, 307,15869,15890,10955,15858, 140, 15825,13249, 8151, 140,15872, 8153, 4886, 4886, 4886, 4886, 4886, 4886, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2952, 2955,10955,15886,15823, 140, 140,17614, 2952, 2952, 2952, 2952, 2952, 2954, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084,15883, 1078,15823,15825, 140,17303,15825, 784, 2242,14664,15828,15831, 2952, 2952, 2952, 2952, 2952, 2952, 2948, 2948, 2948, 2948, 2948, 2948, 2948, 2948, 2948, 1951,15900, 8136,16566,15843,15823,15843, 2948, 2948, 2948, 2948, 2948, 2949,15846, 2243,15846,15830,15843,15825,16059, 15847,14248,15900, 1078,17754,15848,15846,15848,13472,15832, 15905, 8334, 776,15847, 2948, 2948, 2948, 2948, 2948, 2948, 4898, 4898, 4898, 4898, 4898, 4898, 4898, 4898, 4898,15692, 15902,12030,15849,15851,15849,15834, 4898, 4898, 4898, 4898, 4898, 4899,13237, 140,14626, 139,16688,17869,17779,15853, 14061,14061,14061,14061,14061,14061,14061,14061,14061, 531, 1078, 1078,15825, 4898, 4898, 4898, 4898, 4898, 4898, 139, 139, 140, 139, 4903, 139, 139, 139, 139, 139, 139, 139,16063, 139, 139, 1078, 139,10699,15910,15936, 4455, 16066,15855,15865, 139, 139, 139, 139, 139, 139, 139, 15858,13249,15900, 1617,15902, 572,15675,15859,15867,12896, 10694,15941,15908,15907,15169,15169,15169,15169,15169,15169, 15169,15169,15169, 139, 139, 139, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 1618, 4224, 1617,14061,14061, 14061,14061,14061,15352,14058,14058,14058, 1572,15167,15167, 15167,15167,15167,15167,15855,15851, 9703,15168,15869, 140, 9703,15902,15883,15858,13237, 1234,17669,15872,16230, 1618, 15859,14664,15909, 293,15873,15860,10674, 4455,15889, 531, 2023, 4907, 1225, 1225,15424, 1225, 4931, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8334, 1225, 1225,15910, 1606,16567, 10675, 434,15861,18245,15910,15913, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15915,12032,15914, 1617,15920, 1978, 257, 14335,15918,14315,16517,17821,15923, 140,15170,15170,15170, 15170,15170,15170,15170,15170,15170, 1234, 1225, 1225, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 1618, 4241, 1617,14058,14058,14058,14058,14058,14058,14058,14058,14058, 1572,15172,15172,15172,15172,15172,15172,15855,18245, 9703, 15173,16815, 140, 9703,15915,15936,15858, 898, 1234,14092, 15936, 1379, 1618,15939,15941,15919,16211, 1078,15860,10674, 4455,15940,15944, 1044, 4932, 1225, 1225,15425, 1225, 3570, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15851, 1993, 1225, 8334,14093, 8334,10675,15982,15861,13237,15865, 1572, 2476, 1225, 1225, 1225, 1225, 1225, 1225,13249,15946,15862,14094, 12032, 2467,12032,17748,15941,15949, 1234, 307,15390,18279, 15951, 531, 140,14248, 140,15945,14095, 531,15954, 1234, 1225, 1225, 1999, 1225, 1225,15863, 1225, 4244, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1585, 1993, 1225, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2474, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1234, 1225, 1225, 1225, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 1225, 1225,16213, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15946, 1225, 4935, 8334,18279, 8334,14017,14017,14017,15961,15883,15950, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14664,15966, 307, 1572,15893, 4936,15893, 140, 898, 898, 8068,14092,15961, 307,15967, 531, 140,15967, 140, 1078,15964, 1234,15970, 4937, 1225, 1225, 1225, 1225,15971, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15391, 1225, 4935,15972, 8069, 14093,16334, 1078,15987,15982,15987,15975, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 4938,15986,15997, 8070,14094, 4936, 15998,15706,15706,15706,15706,15706,15706,16073,15394,16024, 15707,16002, 1078, 140, 8071,14095,14859, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15982, 1225, 4935,15987,14317, 1572,16351,16024, 15985,16024,11829,15996, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18279,16028, 1275, 1572, 1234, 4942,16024,15708,15708, 15708,15708,15708,15708,15708,15708,15708,16202,16028,16764, 140, 2023, 1234,16460, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1606, 1225, 4935,15895,15895,15895,15895,15895,15895,15895,15895, 15895, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 4943,16855, 16855,16856,16232, 4942,16024,15709,15709,15709,15709,15709, 15709,15709,15709,15709, 1078,16028, 1078, 1078, 9412, 1078, 140, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15869, 1225, 4935,15998, 3077,16024,18245,16036,16041,15872,16024,16001, 1225, 1225, 1225, 1225, 1225, 1225, 1225,11955,10069,15874, 7135, 8136, 4945,16036, 4946,18245,15865,15851,15773,15773,15773,15773, 15773,15773,16040,13249,13237,15774,16215,16036, 4947, 4948, 4948,15853,10069,16048,15875,15876,15862, 140,16040, 4949, 1225, 1225,16357, 1226, 1580, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228, 1970,17830, 1572,15638,16050, 1572,16360,15877,15863, 1228, 1225, 1225, 1225, 1225, 1225, 1225,16003,16024,16024, 140, 1234, 3003,17778, 4937,16006, 16027,16027, 4951,15895,15895,15895,15895,15895,15896,15897, 15897,15897,16024,16361, 1234, 1225, 1225, 1225, 1225, 1225, 16027, 1226, 3611, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 1228, 1225, 1225, 1225, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2479, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1234, 1225, 1225, 1225, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 1225, 1225,17749, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14248, 1225, 1225,15897,15897,15897,15897, 15897,15897,15897,15897,15897, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15869,15865,16041,16036,16036, 1978, 4955, 464, 16024,15872,13249,16039,16039,16045,16071,16036,15873,15867, 16024,16028,16036,15874,15876, 1234, 1225, 1225, 139, 139, 16039, 148, 4957, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,16067, 270,18245,16024,16024,16546,16047, 15875,15877, 203, 139, 139, 139, 139, 139, 139,15883, 15883,16024,16041,16024, 204,16024,16024,16048,14664,14664, 16044,16027,16028,16027,16027,15889,16047,16050,16055,16079, 15891,15891, 139, 139, 139, 176, 139, 139,16057, 148, 363, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,16048,12865,16089,18245, 2023,16075,15892,15892,16053, 203, 139, 139, 139, 139, 139, 139,16050,15180,16083, 16059,12871, 204, 5685,14317,16056,12874,14335,14871,13472, 16085, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 176, 531,16059,16063,16073,16073,16083, 4958, 2013,15181, 2492,13472,16066,14859,14859,14871,16094, 16094,16061,16070,16078,16108,16088,16112,16133,14885,14885, 15182,16133, 531,13510,16765,16115,16099,16807,16137,16136, 2506, 2506, 2506, 2506, 2506, 2507, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2506, 2012, 2012, 2013, 2012, 4961, 3623, 2012, 2012, 2012, 2012, 2012, 2012,16138, 2012, 2012, 7624,14026, 14026,14026,16256,16141,16100,16083, 1078, 2012, 2012, 2012, 2012, 2012, 2012, 2012,14871, 140, 140, 140,12197, 3023, 15965,15965,15965,15965,15965,15965,15965,15965,15965, 531, 140,16096, 1078,16133, 2023, 1078,15961, 2012, 2012, 2012, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1606, 2012, 2012,17604,17277,17345,17344,16138, 7624,10000,16156,16108, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 140,13510, 7624,16142,16513, 2501, 7624, 7624,16110, 12199, 1078,16145,16013,16013,16013,16013,16013,16013,16013, 16013,16013, 140,12199, 2012, 2012, 2012,12199,16092,16016, 307, 4963, 2013, 3029, 2492, 140,16604, 1672,16133, 140, 140,17895, 531, 9703,16138, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 139,16155,16046,16046,16046,16046, 16046,16046,16046,16046,16046,16156, 2493,16161,16112,16156, 16161,16166,16041,16159,16073,16164,16094,16115,16083,16169, 16160,16165,17320,14859,16116,14885, 2508,14871, 2505, 2505, 2505, 2505, 2505, 2505, 2013,16080, 2492,12137,16176,16090, 531, 7624,18352, 7624, 7624, 1606,16179, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281,16073, 4281,16083, 8136, 7624,12209,16081,16092,12211,14859,16091,14871, 2493, 7624, 307,12865,16078, 140,16088, 140, 140,16080, 7624,16090, 12211, 1275,16180,16133,16108,16261,16094, 307,16112,16103, 16183,16136, 140,13510, 140,14885, 307,16115,12211,16597, 16133, 140, 4964, 2013,16081, 2492,16091,16101, 531,16117, 140,16137, 139, 531,18364,16462, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 1078, 4965,17795,18364,16133, 12894, 9209, 3570, 9209,16102, 9209,16118, 2493, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 7624, 2012, 2012, 140, 139, 140, 531, 140,16642,16203, 16094, 782, 2012, 2012, 2012, 2012, 2012, 2012, 2012,14885, 16103,16203,16203, 9211, 2501, 9211,16099, 9211, 3570,16206, 16206,16101, 140,16104,16104,16104,16104,16104,16104,16104, 16104,16104, 2012, 2012, 2012,16104,16104,16104,16104,16104, 16105,16106,16106,16106,16523,16203,17876,14333,16102, 4966, 2525, 2525, 2525, 2525, 2525, 2526, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 1606, 1597, 1597, 5905, 1597, 4286, 3639, 1597, 1597, 1597, 1597, 1597, 1597, 4286, 1597, 1597,16106, 16106,16106,16106,16106,16106,16106,16106,16106, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16112,16108,16203,16203,15025, 3039, 5906,15025,15025,16115,13510,16233,15028,16207,16207, 4286,16116,16110,15029,16236,16233,16117,16119, 1606, 1597, 1597, 1597, 1597,16236, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16108, 1597, 1597,14315,16233, 2555,17831, 14335, 4286,13510,16118,16120, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9209, 4286,16119,16281,16233, 2520,16125,16126, 16127,16128,16128,16128,16128,16128,16128,16237,16233, 307, 784, 2981, 898,16806, 140, 1606, 1597, 1597, 2564, 140, 16233,16120, 4985, 3046,12218,12218,12218,12218,12218,12218, 12218,12218,12218, 139, 9211, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2982, 1572, 3008,16233, 4286,16233, 16868, 2979,16238, 1572,16233,16238, 2023,16236,16237, 5647, 16241, 6336, 1234, 4937, 3608,16237,16242,18369,16693,16238, 16193, 1234,16212, 139, 1606,16238, 2527,16241, 2524, 2524, 2524, 2524, 2524, 2524, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 5648, 4300,16194,16194,16194,16194,16194, 16194,16194,16194,16194,16238, 2023,16238,16238, 784, 3636, 16233,18369,10699,16243,16241,16242, 1572,16194,16194,16194, 16194,16194,16243, 1606,16247, 4286,16222,16233, 4286,16233, 16246, 5712,16249,16738, 1234,16236,10694,16233, 1572, 4986, 1597, 1597, 3637, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16243, 2535, 1597,16233, 1234, 6392,16281,16249, 1606, 1617,16233,16233, 3060, 1597, 1597, 1597, 1597, 1597, 1597,16236,16223,16237,16233,16233, 3051,16258,16267,16281, 16281,16335, 4989,16236,16286,16237,10727, 140,16284, 5705, 16285,10727,16289, 1618, 1606, 1597, 1597, 2541, 1597, 1597, 18369, 1597, 4990, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2537, 2535, 1597, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 3060, 1597, 1597, 1597, 1597, 1597, 1597, 3053, 3053, 3053, 3053, 3053, 3054, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 1606, 1597, 1597, 2541, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 1597, 1597,15089, 1597, 1597, 2026, 1597, 1597, 1597, 1597, 1597, 1597, 2027, 1597, 1597, 3077, 5712, 5712,14333, 16254,17863,16286,12911, 5712, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2023,16290, 2564, 5705,16291, 2530,16291,18364, 16280,16296,16296, 4329,16286,16291,16294,16295,15091,16299, 1606,16281,16676,16300,14248, 1606, 1597, 1597, 1597, 1597, 1597,16713, 1597, 3052, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2036, 2535, 1597, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3058, 3057, 3057, 3057, 3057, 3057, 4991, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1606, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1597, 1597, 1617, 1597, 4286, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16301, 2535, 1597,16311,18364, 1617, 16344,16553,16304,12865,16337,16315, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16224,16224,16225, 1618,18364, 2536,16316, 16281,16195,16195,16195,16195,16195,16195,16319,16284, 1078, 16196, 1618,16384, 1730, 2023, 9412, 1606, 1597, 1597, 1597, 1597, 1597, 1572, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1606, 1597, 1597,14133,16365, 3077, 2053,16385, 1234, 6392,16843, 5019, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3967,16259,16259,16260, 7135, 4993, 6392,16197,16197, 16197,16197,16197,16197,16197,16197,16197,16379,16259,16259, 16260,16393,16384, 5705, 1606, 1597, 1597, 1597, 1597, 1572, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5705, 1597, 1597, 784, 5021,18364,12913, 898, 1234,16394,16385, 7093, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16226,16226, 16226,16226,16226, 4993,16198,16198,16198,16198,16198,16198, 16198,16198,16198,16270,16402,16281, 5022,16328, 140, 2023, 5048, 1606, 1597, 1597,16365, 1572,16285,14979,14979,14979, 14979,14979,14979, 898, 2564,16369, 1617, 1606, 5750,12894, 4994,16403,17704, 1234,16893, 4995, 1597, 1597, 1572, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,14185, 1597, 1597,16365, 898,15484,18429,16415, 1234, 3663, 1618,16368, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16274,16274,16274, 16274,16274, 5005,16327,16429, 4324,16199,16199,16199,16199, 16199,16199,16416,12688, 5006, 3077, 983,16253, 3077, 329, 1606, 1597, 1597,12641,16345, 140, 3742, 1572, 5007,14248, 307,16430,16441, 2564, 1308, 140, 2564,16277,16277,16278, 16700, 898, 5006, 1597, 1597, 1234, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9412, 1597, 1597, 3077,16442, 4410,16227,16227,16227,16227,16227,16227, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 464, 1018, 2564, 3077, 4411, 5005, 4335, 7168, 2023,16200,16200,16200,16200,16200,16200,16347, 16354, 5006,16201, 1349,16924, 7135,16547, 1606, 1597, 1597, 1606,18432, 3742,14626, 1572, 7169,16388,16397, 531, 270, 1020,16393,16402,16590,16279,16279,16279,16279,16279, 5006, 1597, 1597, 1234, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600, 3077, 4410,16410,16394,16403, 9412,12865,16415,12865, 1600, 1597, 1597, 1597, 1597, 1597, 1597,16750,12690, 2564, 4411,16585, 3658, 3674, 329, 5008, 16592,12690, 3077,10727, 140, 9703,16355, 329, 307,16416, 9703,14148,14143, 140, 1606, 1597, 1597, 1597, 1597, 1597, 7135, 1598, 2542, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3063, 3062, 3062, 3062, 3062, 3062, 5009, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1606, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1597, 1597,16558, 1598, 4304, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2537, 2538, 1600,12658,12658,12658,12658, 12658,12658,12658,12658,12658, 3064, 1597, 1597, 1597, 1597, 1597, 1597,17683, 434,12894, 1739, 434, 2540, 140,12903, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299,16557, 16565, 257, 5218,14317, 257, 1606, 1597, 1597, 2541, 1597, 1597, 1572, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16424, 1597, 1597,16514,16516,16429, 5219,18318, 4937, 16777, 6300, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5221, 140, 140, 1379, 455, 2520, 1617,16228,16228,16228, 16228,16228,16228,16430, 5013, 1044,16229,15167,15167,15167, 15167,15167,15167, 1606, 1597, 1597, 1597, 1597, 2023, 1597, 4286, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1618, 1597, 1597, 1376,17446,17450,16563,17573, 1606,16868,15563,16870, 3060, 1597, 1597, 1597, 1597, 1597, 1597,14248,16875,16701, 16877, 1377, 3066, 1617,16226,16226,16226,16226,16226,16226, 16226,16226,16226, 1042,15172,15172,15172,15172,15172,15172, 1606, 1597, 1597, 139, 139, 2023, 139, 5014, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 139,16568,16440, 1275, 758,12723, 1606,16441,12723,12732, 139, 139, 139, 139, 139, 139, 139, 140,17886, 3954, 140, 140, 572, 531,16231,16231,16231,16231,16231,16231,16231,16231,16231, 507,16442, 4455, 516,17535, 4455, 4455, 139, 139, 139, 139, 139, 2023, 139, 836, 139, 139, 139, 139, 139, 139, 5015,16524, 139, 139,10699, 140,16718,10699,16574, 1606,12741,12754,12768, 139, 139, 139, 139, 139, 139, 139,16443,16689, 140, 140, 140, 572, 329, 307,10694, 18435,17433,10694, 140, 5905,15022,15022,15022,15022,15022, 15022, 4455, 4455, 4455, 139, 139, 139, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 2023, 4337,16539,16248, 16248,16248,16248,16248,16248,16248,16248,16248, 3077, 5906, 14035,14035,14035,16715, 1606,16243,16252,16252,16252,16252, 16252,16252,16252,16252,16252,14248, 2564,16443, 5712,12723, 5905,16559,12865, 329,12894,15552, 307, 2023, 9412, 140, 7061, 140, 5023, 2555, 2555, 8884, 2555, 2555, 5024, 2555, 2555, 2555, 2555, 2555, 2555, 1606, 2555, 2555,14333, 4455, 3077,17873,13470, 1742,16594, 5906,16639, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140, 1743, 8105, 140, 7135, 4339, 464,16271,16271,16271,16271,16271,16271,16271,16271,16271, 1744,16449,16449,16449,16449,16449,16449, 2564, 2555, 2555, 2555, 2555, 3077, 2555, 2555, 5024, 2555, 2555, 2555, 2555, 2555, 2555, 1275, 2555, 2555, 270,14117,16569,16736,18315, 2564,16519,13472,14255, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4340,16717,14248, 140, 8136, 4339,18438,16274,16274, 16274,16274,16274,16274,16274,16274,16274,12845,16452,16452, 16452,16452,16452,16452, 2564, 2555, 2555, 2555, 2555, 3077, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1275, 2555, 2555,16635,16571,17775,10727, 1376, 2564,16868,12732, 10727, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17872,16875, 15675, 140, 531, 3682, 531,12690, 1377, 1617,10612, 5029, 12911, 329,12894,16338,16339,16338,16339, 140, 1042, 4455, 531, 2564, 2555, 2555, 2555, 2555,14117, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140, 2555, 2555, 1618, 10613,14189,16675,16457,16458,16457,16458,16562, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8110,16340,12845,12741,16341, 3682,18442,12754,16275,16275,16275,16275,16275,16275, 1275, 140,17278,16276, 531, 140,10614,18445, 531, 2564, 2555, 2555,16522, 784, 1303, 3077,16515,16459, 8111, 4455,16460, 16575,14335, 4455, 5030, 2555, 2555,16570, 2556, 3085, 2555, 2555, 2555, 2564,12865, 2555, 2555, 2555,16279,16279,16279, 16279,16279,16279,16279,16279,16279, 1304,12768,16819, 2555, 2555, 2555, 2555, 2555, 2555, 531,14146,14315, 3077, 140, 3086,14147, 531,16596, 257,14315, 5036,12669,12669,12669, 12669,12669,12669,12669,12669,12669, 2564, 4455, 2564, 2555, 2555, 2555, 2555, 2555,16702, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18018, 3697, 2555,16444,16444,16444, 16444,16444,16444,16444,16444,16444, 4360, 2555, 2555, 2555, 2555, 2555, 2555, 5037,12911,15565,14248, 140, 4351,16444, 16444,16444,16444,16444,16445,16446,16446,16446,14248,16747, 10727,14645,14645,14645,16707,10727, 2564, 2555, 2555, 3703, 2555, 2555,16678, 2555, 4352, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3699, 3697, 2555, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 4360, 2555, 2555, 2555, 2555, 2555, 2555, 4353, 4353, 4353, 4353, 4353, 4354, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 2564, 2555, 2555, 3703, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 2555, 2555,14117, 2555, 3087, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12894, 3088, 2555,16446,16446, 16446,16446,16446,16446,16446,16446,16446, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18452,16928,12845,18455,14192, 3089, 531,18463,16572,14193,16931, 5039,16479,16479,16479,16479, 16479,16479,16479,16479,16479,14333,18466, 2564, 2555, 2555, 2565, 2555, 2555,14333, 2555, 4352, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3090, 3697, 2555, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4358, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2564, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 293, 3697, 2555,16479, 16479,16479,16479,16479,16480,16481,16481,16481, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12896,16878, 531,15582,18474, 3698,17617,13472, 5041,16481,16481,16481,16481,16481,16481, 16481,16481,16481,16788, 140,12896,14315, 531, 2564, 2555, 2555, 2555, 2555, 2555,14315, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558,16485,16485,16485, 16485,16485,16485,16485,16485,16485, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 2023,12896,10727, 3035,17670, 5043,16447, 10727,15273,15273,15273,15273,15273,15273,15273,15273,15273, 12894, 5685,18477,17673,12896,12903, 2564, 2555, 2555, 2555, 2555, 2555, 140, 2556, 3704, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4363, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2564, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2555, 2555, 531, 2556, 5045, 2555, 2555, 2555,10955,18487, 2555, 2555, 2555,16326,16326,16326,16326, 16326,16326,16326,16326,16326,12894,10955,15550, 2555, 2555, 2555, 2555, 2555, 2555,14248,16699,10955, 3077,16868, 3086, 16314,16314,16314,16314,16314,16314,16314,16314,16314, 8884, 12911,12896,16638,16870,14189, 2564,16311, 2564, 2555, 2555, 2555, 2555, 2555,16868, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558,12865,16674,14171,14222, 8105, 8631,16860,16573, 140, 4364, 2555, 2555, 2555, 2555, 2555, 2555,16598,16627,16599,10670,12896, 3702,16606, 2222, 5046,12732, 9703,16600,11829, 8136, 9703, 9703, 307,16603, 16601, 9703,16716, 140, 140, 2564, 2555, 2555, 3703, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4455, 2555, 2555,16485,16485,16485,16485,16485,16486, 16487,16487,16487, 4360, 2555, 2555, 2555, 2555, 2555, 2555, 4371,17279,16745, 2231, 531, 4366,16870,16450,16450,16450, 16450,16450,16450,10727,16754,15558,16451,16877,10727,18508, 15559,14248,17773, 2564, 2555, 2555, 2555, 2555, 1275, 2556, 3704, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 4364, 2555, 2555, 2555, 2555, 2555, 2555, 3705, 3705, 3705, 3705, 3705, 3706, 3705, 3705, 3705, 3705, 3705, 5050, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 2564, 2555, 2555, 3703, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 2555, 2555, 1070, 2556, 5052, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 2559, 2560, 2558,16487,16487,16487,16487,16487,16487, 16487,16487,16487, 2562, 2555, 2555, 2555, 2555, 2555, 2555, 17531,17531,17532,12913, 1071, 2563,16447,16880,15273,15273, 15273,15273,15273,16448,15270,15270,15270, 531,16887, 140, 1672, 1275, 140, 2564, 2555, 2555, 2565, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16847, 2555, 2555,16491,16491,16491,16491,16491,16491,16491,16491, 16491, 4360, 2555, 2555, 2555, 2555, 2555, 2555,17437, 1730, 18291,17708,12913, 4366,10612,16882, 5053,16491,16491,16491, 16491,16491,16492,16493,16493,16493,16889, 3291, 140,14165, 2222, 2564, 2555, 2555, 2555, 2555,14166, 2555, 3087, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10613, 3096, 2555,16493, 16493,16493,16493,16493,16493,16493,16493,16493, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1739,18612,16607,14187,18313, 3097,16520, 9703,12741,16611,14315, 5054, 9703,16755,15711, 307,10614,11654,14315, 2231, 140,16787,16865, 2564, 2555, 2555, 139, 139, 5904, 139, 5078, 139, 139, 139, 139, 139, 139, 139, 4455, 139, 139,16497,16497,16497,16497, 16497,16497,16497,16497,16497, 139, 139, 139, 139, 139, 139, 139, 3077,18341,18614, 5905,17457, 4405,16880,16455, 16455,16455,16455,16455,16455,16455,16455,16455, 140,16887, 2564,18342,12896,16536,17355, 139, 139, 139, 139, 139, 1275, 139, 5078, 139, 139, 139, 139, 139, 139, 139, 5906, 139, 139,16497,16497,16497,16497,16497,16498,16499, 16499,16499, 139, 139, 139, 139, 139, 139, 139, 4406, 2023, 140,17457,16712, 4405,16499,16499,16499,16499,16499, 16499,16499,16499,16499, 140,15468,14248, 531, 1606, 4455, 15469,12896, 139, 139, 139, 139, 139,15557, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 5081, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139, 140, 139, 5086, 139, 139, 139, 139, 139, 139, 139, 12894, 139, 139,12778,12778,12778,12778,12778,12778,12778, 12778,12778, 139, 139, 139, 139, 139, 139, 139,16636, 17304,14167,14255,10674, 3124,18607,16882,14258,16743,10727, 14194,16605,14248,10727,10727,17687, 9703,16889,10727,11778, 12903, 9703, 139, 139, 139, 139, 139,10675, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 139, 139, 5102, 5103, 5104, 5105, 5105, 5105, 5105, 5105, 5105, 5106, 139, 139, 139, 139, 157, 139, 5107, 5107, 5107, 5107, 5107, 5108, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 139, 139, 139, 139, 5107, 5107, 5107, 5107, 5107, 5107, 5109, 5109, 5109, 5109, 5109, 5110, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 139, 139, 18615, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3161, 3791, 139, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 139, 139, 139, 139, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4453, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4455, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 139, 139,12865, 139, 139, 139, 139, 139, 139, 139, 139, 139,16525, 3791, 139,12894,16671,17569,14144, 16556, 139,16867,16938,14317, 139, 139, 139, 139, 139, 139, 139,15846, 1706,16602,18610,18617, 3792,16870,14192, 5130,12754, 5904,14145,14193, 1707,16641,12911, 307, 1672, 14317,16768, 1735, 140,11847, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4455, 5131, 139, 5905,16769,14222, 1736,12911, 140, 1708,16775,16948, 139, 139, 139, 139, 139, 139, 139, 1737,15858,16776,13039,16538, 3792,16447,16672,15270,15270, 15270,15270,15270,15270,15270,15270,15270,17690,14227, 5906, 18618,16894,12903, 139, 139, 139, 139, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3793, 3791, 139, 5136, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 3797, 139, 139, 139, 139, 139, 139, 5137, 5137, 5137, 5137, 5137, 5138, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 4455, 139, 139, 3799, 5137, 5137, 5137, 5137, 5137, 5137, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 5140, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5141, 5142, 16527,12911,12911,10699,12896,16749, 5141, 5141, 5141, 5141, 5141, 5143,10727, 8136,14315,16720,16785,10727,12768,16959, 16528,14218,14315,16703,14225, 307,15520,10694,15872,14226, 140,14171,16529, 5141, 5141, 5141, 5141, 5141, 5141, 5145, 5146, 5146, 5146, 5146, 5146, 5146, 5146, 5146, 4455,12896, 16704,16626,10955,11744,16868, 5146, 5146, 5146, 5146, 5146, 5147,16691,16873,14248,16902,16696,18619,16530,10612,14058, 14058,14058,14058,14058,14058,16906,12896,11745, 4455,16870, 17774,18644, 5146, 5146, 5146, 5146, 5146, 5148, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 10613, 139, 139,14171, 784, 1343,16521,16533, 4455, 5904, 11753,13999, 139, 139, 139, 139, 139, 139, 139, 5150, 15646,12896,14315, 140, 4468,14315,17305,11652,14220,12939, 14315,16780,12896,14315,10694,10614,14317, 9654, 1344,16793, 12913, 5905, 4455, 139, 139, 5152, 5153, 5153, 5153, 5153, 5153, 5153, 5153, 5153, 5154, 5904, 265, 9655, 140,16625, 11744, 5153, 5153, 5153, 5153, 5153, 5155,14204,16692, 9656, 16770,16535,14333, 1345,16827,16771, 5906,12896,16531,12896, 14333,12896, 6594,15467,11745,12913, 140, 5905, 5153, 5153, 5153, 5153, 5153, 5153, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 139, 9657,12911,14171,16538,14171,16628, 3793, 3793, 3793, 3793, 3793, 3809,18290, 5160,15982,14315, 15464,16624, 5906,15982,12896,16784,12896,14315,14225,15986, 140,15463,11733,14226,15986,16677,16690, 3793, 3793, 3793, 3793, 3793, 3793, 246, 246, 1617, 251, 449, 246, 246, 246, 1617,10699, 246, 246, 246,16336,16336,16336,16336, 16336,16336,16336,16336,16336,17444,14315, 3189, 246, 246, 246, 246, 246, 246,14315,15180,10694, 1618, 8110, 256, 12894,17684,12894, 1618,16779,12903,18646,17693, 139, 139, 139, 139, 139, 139, 139, 139, 139, 257, 246, 246, 246, 246, 246, 1617, 251, 449, 246, 246, 246,15181, 8111, 246, 246, 246,16342,16342,16342,16342,16342,16342, 16342,16342,16342,10699,10699, 3191, 246, 246, 246, 246, 246, 246,16695,14315, 140, 1618,16721, 256,16870, 140, 140,15637,16791,12913,12913, 8113,16876,10694,10694, 784, 15381,15382,16576,18647,18642, 257, 246, 246, 246, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 4494,17615, 14204,14204,17418, 1572,18317, 5173, 5173, 5173, 5173, 5173, 5174, 1617, 898,15383,14092,15500,16660, 140,12913,12913, 16662, 1234,16343,16343,16343,16343,16343,16343,16343,16343, 16343,10611, 5173, 5173, 5173, 5173, 5173, 5173, 446,17290, 11770,17616, 2696, 1618,16740,12896,14093,12894,15384, 5175, 5175, 5175, 5175, 5175, 5175, 5175, 5175, 5175, 253, 9654, 18649,18650, 2697,14190,14094, 5175, 5175, 5175, 5175, 5175, 5176,16634,14171,10727, 2698,15461, 140,18651,10727, 9655, 14315,14095,16548,12894,16630,12913,12913,14191,14315,16794, 12896, 9656, 5175, 5175, 5175, 5175, 5175, 5175, 2648,14190, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188,16561, 1617,17627,16661,14204,16647,16532, 3188, 3188, 3188, 3188, 3188, 3190,15634,14191,18729,14315, 9657,16789,16663,16907, 12913,12913,12913,14315,12913,16703,15503, 784,15381,15382, 16911,14335, 1618, 3188, 3188, 3188, 3188, 3188, 3188, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 2126,14204, 16664,14204,16704,14335,15497, 3184, 3184, 3184, 3184, 3184, 3185,15383,16817,16666,16907,14248,10734,12913,18724,12913, 16710,16746,15499,16818, 1617,16911,10727, 2696,16781,16540, 16810,10727, 3184, 3184, 3184, 3184, 3184, 3184, 265, 265, 2023, 272, 480, 265, 265, 265,15384, 2697, 265, 265, 265,10699,10699,14315,16811,11739, 1618,16722, 1606, 2698, 16719,14315, 3226, 265, 265, 265, 265, 265, 265,15180, 17319,16796,16823, 3256, 277,10694,10694,16767, 784,15381, 15382,16560, 139, 139, 139, 139, 139, 139, 139, 139, 139,17432, 265, 265, 265, 265,16868,14333,16349, 784, 15381,15382,12911,15181,16873,14333,16858,16542,16858, 278, 265, 265,15383, 272, 480, 265, 265, 265,14223,14333, 265, 265, 265,14315,15641,16826,16670,14333, 1275,15642, 10611,14315, 140,15383, 3228, 265, 265, 265, 265, 265, 265,15180,14224, 784,15381,15382, 277,15384,18770,16859, 18503,10611,15982,11911, 1483, 1484, 1484, 1483, 1483, 1483, 1483, 1483, 1483,15986, 265, 265, 265, 265,15384,16543, 14333, 784, 8846, 8847,11847,15181,12911,15383,15674,16833, 16880, 278, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 4528,14223, 140,14317,10611,16866,18728, 5199, 5199, 5199, 5199, 5199, 5200,16541, 8848,16544,16683,10699,15556, 140,16870,15384,13039,16723, 140,14224,16706,16629,16876, 16665,11743,14248, 5903,16693, 5199, 5199, 5199, 5199, 5199, 5199, 477,10694,15557,18417,14335,17307,12896,12894,12913, 8849,17458, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 274,11911,14250,16643, 140,16644,17824, 5201, 5201, 5201, 5201, 5201, 5202,14171,16645,14204,14315,10699,16812, 16360,15468,16646,15504,16813,11746,15469,11911,15505,16882, 11747,11911,12896,18403,12913, 5201, 5201, 5201, 5201, 5201, 5201, 2679,10694, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225, 3225,16361, 4286,16880,15542, 1078, 1078,16882, 3225, 3225, 3225, 3225, 3225, 3227, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,16902,15982, 2023, 3225, 3225, 3225, 3225, 3225, 3225, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 2161,16737, 5685,14624, 1078,14333, 1078, 3221, 3221, 3221, 3221, 3221, 3222,14333,10727, 140,16829,15634,16729, 10727,14315, 784, 8846, 8847,14333,11785,16797,17603,14315, 16730,16782,15982,14333,16907, 3221, 3221, 3221, 3221, 3221, 3221, 291, 291,16821, 291, 5239, 291, 291, 291, 291, 291, 291, 291,14333, 291, 291, 8848,18805,16783, 1730, 16907,14333,16836,15982,14315, 291, 291, 291, 291, 291, 291, 291,14315,15683, 5903,14333,14317, 4564,18718, 898, 898,14092,16550,14333,16822,16545,16792, 898, 1078, 8068, 15982, 8849,14315,16693,17928, 291, 291, 291, 291, 291, 14315, 291, 5239, 291, 291, 291, 291, 291, 291, 291, 15640, 291, 291,14093,14093,15982,16549,16782, 140, 139, 10955, 8069, 291, 291, 291, 291, 291, 291, 291, 4565, 16830,14094,14094,14333, 4564,16880,16880,10699,16882, 8070, 12941,14333, 2023,16885,16783,16694,16888,16913,14095,14095, 14315,16552, 291, 291, 291, 5243, 8071,16880,14315, 139, 1606,10694,16790, 2708,15982,16885, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708,15986,12911,15982,18330,18853, 16912,12920, 2708, 2708, 2708, 2708, 2708, 2709, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 514, 514,16912, 514, 5249, 514, 514, 514, 514, 514, 514, 514,16842, 514, 514, 12911,18860,11758,10727,10955,16936,16913,17747,10727, 514, 514, 514, 514, 514, 514, 514,16679,16920,16680,15671, 11782, 4575,14333, 898,16831, 8068,15671,16681,16741,14333, 14333,16915,16932,10727,16682,16839,14248,14333,10727, 514, 514, 514, 514, 514,11783, 514, 5249, 514, 514, 514, 514, 514, 514, 514,16882, 514, 514, 8069,17534, 531, 16551,16824,16888,16915,16944, 140, 514, 514, 514, 514, 514, 514, 514, 4576,16922, 8070,16838,16954, 4575, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,16825,18314, 1275,16940, 8071,16902,14333,15900, 514, 514, 514, 1769, 15982,16905,14333,16731,16950,16965,15907,15582,15985,18867, 5255, 5255, 5255, 5255, 5255, 5255, 5255, 5255, 5255, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,14333,15678, 531, 1770,16961, 139,15679,17332,14333,13999, 1771, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,15648, 140, 16882,15982, 531, 1772,14315, 1773, 1078, 1774,11757,15985, 1775, 1776,14315,11758,10727, 1777, 2023,16786, 1778,10727, 1779,16973, 1780, 139, 1781, 1782, 1783, 1769,14200,16733, 14664,18875,18639,15900, 1606,12913, 8932, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,16734, 140, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,15685,16924, 1770, 16795,16907,11782,14333,14333,14315, 1771,14626, 5256,16910, 16742,14333,14333,14315,16926,10727,16828,18412,16835,16907, 10727, 1772,15636, 1773,11768, 1774,11783,16910, 1775, 1776, 1078, 8927,16977, 1777,12913, 531, 1778,17705, 1779,16735, 1780,16980, 1781, 1782, 1783, 1769, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8928,16751,15902, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,16834, 1770, 140,16907, 15902,15982,14333,16837, 1771,17124,16824,16910,14333,15985, 14333,15909, 784, 2242,16066,16752,14333,17567,13025, 1772, 15677, 1773, 8926, 1774, 8144,15673, 1775, 1776,16928, 784, 1079, 1777, 5257,16825, 1778,18886, 1779,16931, 1780,14333, 1781, 1782, 1783, 1769,16935,16753, 2243,14333, 140, 140, 16996,16832,16850,16850,16850,16850,16850,16850,16850,16850, 16850,17000,16850, 1080, 776,16854,16854,16854,16854,16854, 16854,15982,15982, 140,17929, 1770,16913,16915,17001,15985, 15985, 139, 1771, 8334,16918,16921, 140,16846,15900,17005, 15706,15706,15706,15706,15706,15706,15905, 1772,16849, 1773, 15902, 1774,17722,13235, 1775, 1776,17006,12920,15908, 1777, 5258, 140, 1778, 1078, 1779, 140, 1780,17010, 1781, 1782, 1783, 1769,16857,16857,16857,16857,16857,16857,16857,16857, 16857,11828,11828,11828,11828,11828,11828,11828,11828,11828, 16996, 8334,16938, 140, 8334,16861,16861,16861,16861,16861, 16861,15846, 140, 1770,16862,16996,16924, 1078,16943,17328, 1771,13237, 140,16999,16957,14626, 140,15773,15773,15773, 15773,15773,15773, 140, 531, 1772, 140, 1773, 8136, 1774, 531,17001, 1775, 1776,17001,17006,13025, 1777, 140,17004, 1778, 2023, 1779,17009, 1780,17894, 1781, 1782, 1783, 1769, 16891,16891,16891,16891,16891,16891,16891,16891,16891, 1606, 16891,11958,11958,11958,11958,11958,11958,11958,11958,11958, 16938, 140, 8334,18694,16948,16938,16948, 8334,17011,15846, 16938, 1770, 140,15858,15846,15858,17014,16996, 1771,15846, 16953,16943,13237,16948, 531,16999,16945,13237,16996, 307, 531,16945,15858, 1772, 140, 1773,16999, 1774,16996, 140, 1775, 1776, 531, 8334,16955, 1777, 2211, 8334, 1778,17000, 1779, 5259, 1780,16946, 1781, 1782, 1783, 3291,16946, 3292, 16948,16996, 8334,16957, 8334, 8334, 1768,13247, 8334,15858, 307,16956,17000,18900,16959, 140,16953,16959, 1078, 140, 140,16955,13249,15872,13249,13249,15872, 8334,16968, 1078, 16964, 3293, 307,16959, 140, 307, 140, 140, 3294, 531, 140, 531,15872,16959, 5264,16996, 2512,16968,16956,16964, 18545, 2023,15872, 3295,16966, 3296,16996, 3298,16973, 140, 3299, 3911,16973, 1078,16966, 3301,18348,14664, 3302, 5685, 3303,14664, 3304,17031, 3305, 3306, 3307, 3291,16975, 3292, 17031,16967, 531, 1078,17035, 1078, 1768, 1078,17034, 140, 17031,16967,16969,16969,16969,16969,16969,16969,16969,16969, 16969,16969,16969,16969,16969,16969,16970,16971,16971,16971, 17036, 3293,16996,17031,17043,18970,16996, 5265, 3294,16971, 16971,16971,16971,16971,16971,16971,16971,16971,17031,17725, 16977,17031,18970, 3295,12920, 3296,17034, 3298,16977,16980, 3299, 3911,17035,16996,16977, 3301,16981,16980, 3302,16973, 3303,16982, 3304,16980, 3305, 3306, 3307, 2223,14664,16982, 16981,17031,16973,17036,17036,16975,16996, 5287,16996,17034, 16984,14664,17039,16996,17040,19005,16999,17000,16983,16996, 16996,16999,16996,16984,17043,17042,16983,17043,16999, 2225, 17000, 140,17046,17608, 1078, 1078, 2226,16985,17047,16990, 16991,16992,16993,16993,16993,16993,16993,16993,17048,17052, 16985, 2227,17042, 2228,17048, 2229,17051,17055, 2230, 2231, 140,17048,17066, 2232, 1739,17065, 2233,18388, 2234,18727, 2235,16767, 2236, 2237, 2238, 2223,13256,13256,13256,13256, 13256,13256,13256,13256,13256, 2224,17021,17021,17021,17021, 17021,17021,17021,17021,17021,17066,17071,17066,17071,17102, 17102, 1078,17024,17069,17074,17076, 3742, 2225,17070,17075, 17106,17106, 140,17079, 2226, 1078,17041,17041,17041,17041, 17041,17041,17041,17041,17041,18389,17086, 139,17102, 5288, 17091, 2228,17036, 2229,17090,17102, 2230, 2231,17094,17107, 4410, 2232,17102,17105, 2233, 139, 2234,17112, 2235,16048, 2236, 2237, 2238, 2754, 3291, 139, 3955,10000, 4411, 329, 16055,19005,17102, 2222,17443, 140, 3956,17089,17089,17089, 17089,17089,17089,17089,17089,17089,17102,10069,16048,10007, 10007,10007,16050,17086,17105, 139,16053,17124, 3957, 8367, 8367, 8367,16050,16057,17202, 3958,16066, 307,17139,10069, 16056, 140, 140, 140,16048,17206, 531,14859,12137,12793, 3959, 531, 3960,10007, 3962,18511,19005, 3963, 4625,10009, 10009,10009, 3965, 8367,17131, 3966,16050, 3967, 1078, 3968, 13472, 3969, 3970, 4635, 3291, 140, 3955, 307,10007,17135, 17124, 782, 140, 2222,17136,17136, 3956,17145, 8367,16066, 17139,17126,17146,10009,17146,17151,17130,17158,17139,14859, 140,17151,18970, 140,14871,17202,17141,14859, 3957, 3077, 14871,17137,17137,17205,17139, 3958,17151,17153,10009,17147, 17139,17147, 531,14859,17159,14871,18970, 2564,17902,14859, 3959,17568, 3960,17207, 3962,17148,17141, 3963, 4625,17167, 531,17148, 3965, 4638,17211, 3966,18970, 3967,14885, 3968, 17417, 3969, 3970, 3971, 783, 783, 784, 785, 5337, 783, 783, 783,17149,12793, 783, 783, 783, 140,17149, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338,17151, 783, 783, 783, 783, 783, 783,17823,17151,14871,17157,17167, 789,17212,18292,17158,17153,14871,17173,17167,14885,17160, 17174,17174,17216,17190, 1078,17169,14885,17160, 139, 783, 783, 783, 139, 139,14315, 148, 149, 139, 139, 139, 17159, 531, 139, 139, 139, 7624,17161,17175,17175, 7624, 17186,17202, 1078, 7624,17161,17167, 3359, 139, 139, 139, 139, 139, 139,17167,14885,13508,17184,18970, 162,13510, 898,17169,14885,13510,17207,16115,17176, 140, 7624,17207, 307, 140,17210,17184,17176, 140, 139, 139, 139, 139, 139, 139,16115, 148, 149, 139, 139, 139,13510,17189, 139, 139, 139,17177, 3008, 7624,17341, 140,17342,17605, 140,17177,17184, 531, 3361, 139, 139, 139, 139, 139, 139,16115, 3608,18731,14317,17193, 162,13491,13491,13491, 13491,13491,13491,13491,13491,13491, 531, 140,12911,17299, 17343, 140,17916,17728, 139, 139, 139, 139, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 4677, 7624, 1078, 17865,17184,17184,17232, 5341, 5341, 5341, 5341, 5341, 5342, 16115,16115,17212,17217,17236,18142,17232,17189,17193,17237, 17215,17220,17191,17191,17235, 307,17232,17240,19062,14333, 140, 5341, 5341, 5341, 5341, 5341, 5341, 5343, 5343, 5343, 5343, 5343, 5343, 5343, 5343, 5343, 5344, 140, 140,17192, 17192, 1078, 3570, 5343, 5343, 5343, 5343, 5343, 5345,17194, 17194,17194,17194,17194,17194,17194,17194,17194,17194,17194, 17194,17194,17194,17195,17196,17196,17196,18350,17237,17291, 5343, 5343, 5343, 5343, 5343, 5343, 5347, 5347, 5347, 5347, 5347, 5347, 5347, 5347, 5347, 5348, 4286, 4286, 5712, 1275, 19066, 329, 5347, 5347, 5347, 5347, 5347, 5349,17196,17196, 17196,17196,17196,17196,17196,17196,17196,17237,17242,17247, 5712,18504, 5712,17320,17320,17356,17245,17250,17241, 5347, 5347, 5347, 5347, 5347, 5347, 5353, 5353, 5353, 5353, 5353, 5353, 5353, 5353, 5353, 4008, 140,17242,17361,17257,17366, 17257, 5353, 5353, 5353, 5353, 5353, 5354,17246,17260,17261, 17262,17262,17267,17291,17281,17283,18556,18551,17265, 531, 17270,17294,17266,10729, 784, 2981, 1572, 1572, 5353, 5353, 5353, 5353, 5353, 5353, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5357, 1234, 1234,17291, 8105,16208,17320, 5356, 5356, 5356, 5356, 5356, 5358,17297,17295, 2982,17320, 17324, 5647,17320, 6336, 784, 3636,17320,17323,17284,17285, 17284,17285,19071,17324,17323,10762, 1234, 5356, 5356, 5356, 5356, 5356, 5356, 5362, 5362, 5362, 5362, 5362, 5362, 5362, 5362, 5362, 4018,17280, 1572, 5648,17356,16264, 3637, 5362, 5362, 5362, 5362, 5362, 5363,17339,17361,17360,17366, 898, 17356,17286, 1234,17330,17287, 140, 1606,17365,17359,17370, 7168,14896,14896,14896,17310,17309, 5362, 5362, 5362, 5362, 5362, 5362, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5366, 7027, 3663, 7169, 2023,17361,17366, 5365, 5365, 5365, 5365, 5365, 5367,17364,17369,17371,17308,17371,17435, 17376, 4324,16272, 1606, 6392, 5712,17374,17375,17379,17329, 17311,17311,17311,17311,17311, 5365, 5365, 5365, 5365, 5365, 5365, 5371, 5372, 5373, 5374, 5374, 5374, 5374, 5374, 5374, 150, 2023,17371,17333, 3077,17376, 5705, 3370, 3370, 3370, 3370, 3370, 3374,17381, 2023,17391,17380,16272, 6392, 1606, 3634,17384, 2564,17394,14335, 140,18759, 1078,19075,17334, 17334,17335, 5685, 7093, 3370, 3370, 3370, 3370, 3370, 3370, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 4030, 5705,17391,17445,17397,17452,17397, 5375, 5375, 5375, 5375, 5375, 5376,17396,17400,17401,17402,17452, 6392,17753,18620, 1617,16360, 531,17405,17455,17447,14189,14248,17336,17336, 17336,17336,17336, 5375, 5375, 5375, 5375, 5375, 5375, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5379, 5705, 17347,17350, 1618,16361,17452, 5378, 5378, 5378, 5378, 5378, 5380,17434, 3077, 3077,17457,17456,15223,15223,15223,17461, 19080, 307,16341, 7168,17473,17473, 140,17348,17348,17349, 2564, 2564, 5378, 5378, 5378, 5378, 5378, 5378, 5384, 5385, 5386, 5387, 5387, 5387, 5387, 5387, 5387, 7169, 3077,17515, 14048,17474,17474, 8136, 3380, 3380, 3380, 3380, 3380, 3384, 434,16751, 140, 140,12896,17197, 2564,16128,16128,16128, 16128,16128,16128,16128,16128,16128,17516, 507, 257, 1617, 4455, 3380, 3380, 3380, 3380, 3380, 3380, 2840, 140, 5388, 5388, 5388, 5388, 5388, 5388, 5388, 5388, 5388, 2804,17427, 18768,17570,16809,18809,17618, 3378, 3378, 3378, 3378, 3378, 3379, 1618,13918,13918,17668, 3742,18772,14335, 329, 329, 307,17510, 140,12896, 140, 140,17515,17352,17352,17352, 17352,17352, 3378, 3378, 3378, 3378, 3378, 3378, 5389, 5389, 5389, 5389, 5389, 5389, 5389, 5389, 5389, 4046, 3077, 4410, 17825,18553,10694,17516, 5389, 5389, 5389, 5389, 5389, 5390, 14315, 1379,17480,10694,17741, 1617, 2564, 4411, 329, 307, 17622,14117,19084, 1044, 140,17442,17424,17424,17425, 464, 434, 5389, 5389, 5389, 5389, 5389, 5389, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5393, 1618, 257,17613, 531,14626,12845, 5392, 5392, 5392, 5392, 5392, 5394,17480, 13928,13928,17572, 140, 270, 329, 329, 329, 307,16360, 17574, 140, 140, 140,16195,16195,16195,16195,16195,16195, 5392, 5392, 5392, 5392, 5392, 5392, 5398, 5399, 5400, 5401, 5401, 5401, 5401, 5401, 5401, 1572,17448,14048,10768,18802, 17742,16361, 3391, 3391, 3391, 3391, 3391, 3395,17486, 140, 17486,10694, 531, 1234, 329, 307, 329, 1617,10955,17829, 140,10955, 140,17428,17429,17428,17429, 4455,14315, 3391, 3391, 3391, 3391, 3391, 3391, 5402, 5402, 5402, 5402, 5402, 5402, 5402, 5402, 5402, 2818,17906,14117,12865,17908, 1618, 434, 3389, 3389, 3389, 3389, 3389, 3390,17395,17395,17395, 17395,17395,17395,17395,17395,17395,17430,12894, 257,17431, 11911, 8136,12903,17391, 507,17686,17571,12845, 3389, 3389, 3389, 3389, 3389, 3389, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 4726,12865,17641,18555,17917, 8631,14133, 5403, 5403, 5403, 5403, 5403, 5404,17487,17487,17487,17487, 17487,17487,17487,17487,17487,12913,18695,17621,15231,15231, 15231,16200,16200,16200,16200,16200,16200, 5403, 5403, 5403, 5403, 5403, 5403, 5405, 5405, 5405, 5405, 5405, 5405, 5405, 5405, 5405, 1572,16450,16450,16450,16450,16450,16450, 5405, 5405, 5405, 5405, 5405, 5406,13918,13928,13940, 140,19093, 1234, 329, 329, 329, 1275,17703,14117, 140, 140, 140, 531, 531,19097, 531,12913, 1572, 5405, 5405, 5405, 5405, 5405, 5405, 3407, 3407, 3407, 3407, 3407, 3407, 3407, 3407, 3407, 3410, 4661, 1234,18411,17287,12896,12845, 3407, 3407, 3407, 3407, 3407, 3409,17487,17487,17487,17487,17487,17488, 17489,17489,17489,17489,17489,17489,17489,17489,17489,17489, 17489,17489, 464,17620, 140, 3407, 3407, 3407, 3407, 3407, 3407, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 3403, 2311,18316,19107,11911,17736,17667,13999, 3403, 3403, 3403, 3403, 3403, 3404, 307,17597,12896,15470, 270, 140,17197, 10694,16128,16128,16128,16128,16128,17198,16125,16125,16125, 17919,10694,19111, 140, 3403, 3403, 3403, 3403, 3403, 3403, 139, 139, 140, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 5417, 150, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 150, 139, 139, 139, 139, 139, 139, 561, 561, 561, 561, 561, 798, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 139, 139, 139, 139, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 139, 139, 8110, 139, 139, 139, 139, 139, 139, 139, 139, 139, 531, 139, 2864,17496,17496, 17496,17496,17496,17496,17496,17496,17496, 139, 139, 139, 139, 139, 139, 139,12913,14335,19123, 8111,18769, 5427, 1617,17282,17282,17282,17282,17282,17282,17282,17282,17282, 140,17420,17420,17420,17420,17420,17420, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 2864, 1376, 531,17626,17679,19133, 1234,14248,18347,17702, 139, 139, 139, 139, 139, 139, 139, 5428,15561,12913,15506, 1377, 5427, 1617,17288,17288, 17288,17288,17288,17288,17288,17288,17288, 1042,17423,17423, 17423,17423,17423,17423, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 4756, 758,17612,12894,12894,12896, 1234,10612,12903, 12903, 139, 139, 139, 139, 139, 139, 139,17529,17529, 17529,17529,17529, 5432,17685,17289,17289,17289,17289,17289, 17289,17289,17289,17289, 516,17609,15242,15242,15242, 1275, 10613, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 898, 139, 139,17624, 18765,19232, 784, 1303, 1234,12896, 1742, 1078, 139, 139, 139, 139, 139, 139, 139,10614,15471,10612, 1743,17197, 5434,16125,16125,16125,16125,16125,16125,16125,16125,16125, 5048,12865, 5435, 1744,16902,13940, 1304, 140, 139, 139, 139, 329, 140, 784, 5021,13940,14048, 140, 5750,10613, 531, 329, 307, 307, 257, 4455, 140, 140, 140,16809, 5435, 139, 139,17414, 139, 139, 139, 139, 139, 139, 139, 139, 139,17576, 139, 4756, 4455, 5022,12865, 1070, 17889,12913, 5904,14133,10614, 139, 139, 139, 139, 139, 139, 139, 5436,19244, 140, 2564,19198, 5432,17642,17311, 17311,17311,17311,17311,17311,17311,17311,17311,12911,17719, 17346,17577, 1071,12920, 5905, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 16527, 139, 4756,18820,17714,15286,15286,15286, 1606,19297, 12913, 6593, 139, 139, 139, 139, 139, 139, 139, 5906, 16528,15507,10694, 140, 5440,17735,17312,17312,17312,17312, 17312,17312,16529,10694,16447,17313,15270,15270,15270,15270, 15270,15270, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 4756, 2696,12911,19283,19301, 140, 1606,12920,16530,10694, 139, 139, 139, 139, 139, 139, 139, 5441,17688,17737,10694, 2697, 5440, 4455,17314,17314,17314,17314,17314,17314,17314, 17314,17314, 2698,17530,17530,17530,17530,17530,17530, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1275, 139, 4756, 531, 1572, 2696, 12894,18720, 1606,17866,12865,12903, 139, 139, 139, 139, 139, 139, 139,14333,17610,11847, 1234,19304, 5444, 2697, 17315,17315,17315,17315,17315,17315,17315,17315,17315,15558, 14317, 2698, 140,18306,15559,14248, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,17644, 139, 4756,13039,17718,14133,12911,18416, 1606, 5904,17904,12920, 139, 139, 139, 139, 139, 139, 139, 5445,17734,17611, 531,19307, 5444,10612,16228,16228,16228, 16228,16228,16228,17496,17496,17496,17496,17496,17497,17498, 17498,17498, 5905, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,10613, 139, 4756,15343,15343,15343, 464, 8884, 1606,17575,10694, 6593, 139, 139, 139, 139, 139, 139, 139, 5906, 531,10694, 1078, 5904, 5447, 5448,17316,17316,17316,17316,17316,17316, 17596,17495,19314,10614, 5904,14315, 8105, 329, 307, 270, 2866, 139, 139, 140,17623, 2023,15644,17043,12865, 140, 5448, 139, 139, 5905, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1606, 139, 139, 5905, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 139, 139, 139, 139, 139, 139, 139, 531,19288,17587,14333,17585, 5451, 5906,17317, 17317,17317,17317,17317,17317,12865,15681,15641,17318, 8110, 14133, 5906,15642,14315,17638, 139, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 12894, 139, 139,19320,12896,12903, 531,18353, 1606,17680, 17606, 8111, 139, 139, 139, 139, 139, 139, 139,17625, 19326, 139, 140, 531, 5451,12913, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060,17588,17589,17723,18020, 140, 4455, 1735, 139, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,15468, 139, 4756, 12865, 139,15469,12896,17672, 5685, 1736, 7061, 5905, 139, 139, 139, 139, 139, 139, 139, 6392,17871,15504, 1737, 12911, 5453, 5454,15505,12913,12920,14333,17336,17336,17336, 17336,17336,17336,17336,17336,17336,14317,12894,17807, 2866, 139, 139,12903, 5906,14317,17640,17681,12865, 5705, 5454, 139, 139,14133, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 2864,17498,17498,17498,17498,17498, 17498,17498,17498,17498, 139, 139, 139, 139, 139, 139, 139,19332,12911,17301, 531,14626, 5459,12920,17351,17351, 17351,17351,17351,17351,17351,17351,17351, 140,18552,10955, 531,17302,17720, 140, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,17637, 139, 2864,18311,17898,17898,17899,16913, 2564, 5904,12865, 10694, 139, 139, 139, 139, 139, 139, 139, 5460,18808, 17738,10694, 140, 5459, 140,16275,16275,16275,16275,16275, 16275,17505,17505,17505,17505,17505,17505,17505,17505,17505, 14083, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,12865, 139, 2864,19202, 5647,14133, 6336,19338, 2564,10955,10694, 6593, 139, 139, 139, 139, 139, 139, 139, 5906,11743,10694,19341, 531, 5464,17739,17352,17352,17352,17352,17352,17352,17352,17352, 17352,15678,16915,12913, 5648,17952,15679,14333, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,16527, 139, 2864, 8884, 1275, 140,18319, 15375, 2564,17947,12865,10694, 139, 139, 139, 139, 139, 139, 139, 5465,16528,17740,10694, 4455, 5464,17619,17353, 17353,17353,17353,17353,17353,16529,15504, 8105,17354,17957, 17967,15505,12913,17707, 1275, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 12865, 139, 2864,12910,18497,14133,17958,17968, 2564,17639, 16530,17752, 139, 139, 139, 139, 139, 139, 139,18581, 12865,14248,15560, 3077, 5469,12865,17413,17413,17413,17413, 17413,17413,17505,17505,17505,17505,17505,17506,17507,17507, 17507, 2564, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,12894, 139, 2864, 14317, 1617,12903,12927,18363, 2564,17806,17682,14317, 139, 139, 139, 139, 139, 139, 139, 5470,17495,13956,13956, 455, 5469,13956, 329, 329, 329, 307,14317, 329, 140, 140, 140,17504, 1618, 140,16766,17813, 531, 329, 2866, 139, 139, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139,19363, 139, 2864,17507,17507,17507, 17507,17507,17507,17507,17507,17507, 139, 139, 139, 139, 139, 139, 139,17504,19562,10728,15558, 140, 5474, 329, 307,15559,14248,17756,12865, 140,13969,13969,13969,13969, 13969,13969,13969,13969,13969, 4455, 2866, 139, 139, 139, 139,17867, 139, 139, 139, 139, 139, 139, 139, 139, 139,14333, 139, 2864,17542,17542,17542,17542,17542,17542, 17542,17542,17542, 139, 139, 139, 139, 139, 139, 139, 5475,17647,19453,15595,15209, 5474,14133,17522,17523,17524, 17525,17525,17525,17525,17525,17525, 140,17897,17897,17897, 17897,17897,12910, 2866, 139, 139, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 2864,17542,17542,17542,17542,17542,17543,17544,17544,17544, 139, 139, 139, 139, 139, 139, 139,18502,18502,18502, 18502,18502, 5478,17544,17544,17544,17544,17544,17544,17544, 17544,17544,17412, 5479,18582,15883,15883,15883, 1275,12865, 2866, 139, 139,16326,16326,16326,16326,16326,16326,16326, 16326,16326,14011,14011,14011,14011,14011,14011,14011,14011, 14011, 5479, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,12894, 139, 2864,14186,17341,12903, 17342, 140, 2564,10694,17906,17691, 139, 139, 139, 139, 139, 139, 139,17768,10694,17913, 1572,19563, 5481,17828, 17526,17526,17526,17526,17526,17526,17526,17526,17526,14315, 15643,19178,17343,17746, 1234,10729, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 2864,14017,14017,14017,14017,14017,14017, 14017,14017,14017, 139, 139, 139, 139, 139, 139, 139, 5482, 140, 2023,19197, 531, 5481, 8136,17527,17527,17527, 17527,17527,17527,17527,17527,17527,15558,10762,19569, 4455, 1606,15559,14248, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,10999, 139, 139,14026,14026,14026,14026,14026,14026,14026,14026,14026, 139, 139, 139, 139, 139, 139, 139, 3077, 140,17777, 140, 531, 5484,17908,17528,17528,17528,17528,17528,17528, 17528,17528,17528, 8931,17915, 7135, 4455,17822, 8358,15636, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 139,14035,14035, 14035,14035,14035,14035,14035,14035,14035, 139, 139, 139, 139, 139, 139, 139, 5485, 140, 140,19398, 531, 5484, 17917,17529,17529,17529,17529,17529,17529,17529,17529,17529, 15641,17924, 1275, 4455,17864,15642,14315, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,19230, 139, 2864,17564,17564,17564,17564,17564, 17564,17564,17564,17564, 139, 139, 139, 139, 139, 139, 139, 140, 140,19356, 531, 531, 5490,17919,17533,17533, 17533,17533,17533,17533,17533,17533,17533,15678,17926, 4455, 4455,17301,15679,14333, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,17302, 139, 2864,17564,17564,17564,17564,17564,17565,17566,17566, 17566, 139, 139, 139, 139, 139, 139, 139, 5491, 140, 18311,19258,16902, 5490,17566,17566,17566,17566,17566,17566, 17566,17566,17566,16906,17900,12894,17900,18513,17979,19130, 12903, 2866, 139, 139, 139, 139,17692, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5218, 139, 2864,12911, 140, 434, 140,15556,12920,17980,10768,17721, 139, 139, 139, 139, 139, 139, 139,17887,14248,17901,17762, 257, 5495, 5219, 784, 1343, 784,15381,15382,15557, 3291,17607, 14165,12865,12865,17995, 5221,14317,19244,14166, 2866, 139, 139, 139, 139,14317, 139, 139, 139, 139, 139, 139, 139, 139, 139,16527, 139, 2864, 1344,19571,15383, 2564, 17996,17592, 1706,17578,17636, 139, 139, 139, 139, 139, 139, 139, 5496,16528, 265,17659,10611, 5495,12865,12865, 17580,18387, 1706,14133,14133,16529,17643,14117,18011,12865, 12865, 1345,14335,15384, 1707, 2866, 139, 139, 139, 139, 14335, 139, 139, 139, 139, 139, 139, 139, 139, 139, 12865, 139, 2864, 3077,17645,18007,14317,19560,12845,10694, 16530,17766, 139, 139, 139, 139, 139, 139, 139, 1708, 10694, 2564,14317,17043, 5499, 1617,12865,12865,16527,16527, 14317,17650,14133,17809,17047, 5500,17421,17421,17421,17421, 17421,17421, 2866, 139, 139,17422,12911,12865,16528,16528, 18558,12920,14133, 1078,14335,17715,17849, 1618,12865,12865, 16529,16529,14335, 5500, 139, 139, 9654, 139, 139, 139, 139, 139, 139, 139, 139, 139,12911, 139, 2864,14185, 18020,12920,17803,19572,18616,17716, 9655,17579, 139, 139, 139, 139, 139, 139, 139,16530,16530,17581, 9656,17582, 5502,17906, 784,15381,15382,12865,12865,14317,14138,17911, 14133,14133,12865, 1078,12865,14317,17648,17649, 2866, 139, 139, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9657, 139, 2864,15383,15641,19567, 140, 18025, 4455,15642,14315,17833, 139, 139, 139, 139, 139, 139, 139, 5503,12911,10611,14626,17646, 5502,12920,12865, 14317,12865, 307,17717,14133,14146,14133, 140,14317,19196, 14147,15384,17591,17651,17815, 2866, 139, 139, 139, 139, 14145, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 203, 139, 139, 139, 139, 139, 139, 5505, 5505, 5505, 5505, 5505, 5506, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 5504, 5504, 5504, 5504, 5504, 5504, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,14218,14335, 8136, 1078,19574,18648,19522,17848, 1617,14335, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505,17426,17426,17426,17426,17426,17426,17426,17426,17426, 17689,12894,18030,12894,12911,14192,12903,14219,12903,12920, 14193,12911, 1618,17694,15678,17726,12920, 140, 8136,15679, 14333,17875,17727,18696,14191, 5505, 5505, 5505, 5505, 5505, 5505, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,19274, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 150, 150, 5509, 5509, 5509, 5509, 5509, 5509, 5509, 5509, 5509, 4142, 139, 139, 139, 139, 139, 139, 5509, 5509, 5509, 5509, 5509, 5510, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 5509, 5509, 5509, 5509, 5509, 5509, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 5513,16861,16861,16861,16861,16861,16861, 5512, 5512, 5512, 5512, 5512, 5514,11734,10694,12911,14255,12896, 12896,14225,12920,14258, 140, 8136,14226,10694,14248,17729, 15180,19575,11735,16751, 140,11736, 5512, 5512, 5512, 5512, 5512, 5512, 375, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 150, 9654,15181,15466,17674,17436,17675, 5515, 5515, 5515, 5515, 5515, 5516,19396,10694,17676,12896,12896, 17678,17767,18398, 9655,17677, 8929, 8136,10694,19257,15467, 8930, 784,15381,17593, 8138, 9656, 5515, 5515, 5515, 5515, 5515, 5515, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 4821,14315,18745, 1618,16913,19576,14325, 5518, 5518, 5518, 5518, 5518, 5519,17583,15383,16920,10694,12913,12913, 9657,17724,14317,17810,12911,17764,14317,11743,10694,12920, 14317,17816, 8144,10611,14317, 5518, 5518, 5518, 5518, 5518, 5518, 149, 784, 8846, 8847,14224,18298,18298,18299,19600, 15384,17870, 5520, 5520, 5520, 5520, 5520, 5520, 5520, 5520, 5520,14333,15680,16915,17709,15502,17710, 1572, 5520, 5520, 5520, 5520, 5520, 5521,16922,17711, 8848,12913,12913,17594, 17713,16763,17712,14315,14317, 1234,17811, 1078,14325,15503, 455, 898,14317,14092, 5903, 5520, 5520, 5520, 5520, 5520, 5520, 150, 150, 150, 150, 150, 150, 150, 150, 150, 3483, 8849,10694,19601,18020,11740,18515, 150, 150, 150, 150, 150, 162,10694, 2222,14093,16775, 2745,14317,17763, 17908,17599,19607,18404, 2222,17797,14317,17802,17914, 898, 898, 8068, 8068,14094, 150, 150, 150, 150, 150, 150, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 4830, 14095, 1078, 1078,15673,14317,17439, 5525, 5525, 5525, 5525, 5525, 5526,14317, 8069, 8069,16763,17852,17818,14317,14335, 15634,17601,17801, 507,17819,16789,14317,14335,18065,18070, 14315, 8070, 8070, 5525, 5525, 5525, 5525, 5525, 5525, 5527, 5527, 5527, 5527, 5527, 5527, 5527, 5527, 5527, 8071,17602, 17758,10728,17759,19400,15639, 5527, 5527, 5527, 5527, 5527, 5528,17760,17826,14248,17917,14335,17919,14315,17761,14317, 16770,14335,17922,14335,17925,16771,17851,14317,15640,16808, 17855,19609, 5527, 5527, 5527, 5527, 5527, 5527, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 4839,17817,16083, 16083,16083,15639,14317, 5531, 5531, 5531, 5531, 5531, 5532, 16777,14317,17835,14335,17836,14315,14317,17839,19533,17945, 16765,14335, 1078,17837,14317,14315,15640,17857,16931,17808, 17838, 5531, 5531, 5531, 5531, 5531, 5531, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533,17796, 1078, 1078,18096, 16817,14335,14335, 5533, 5533, 5533, 5533, 5533, 5534,14335, 14335,17844,16805,11744,17931,14335,10694,17853, 144,17843, 14335,17765,17934,14335,18101,18143, 7168,10694,14335,17858, 5533, 5533, 5533, 5533, 5533, 5533, 2438,11745, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3493,14335,19598, 7169, 145,18401, 2222, 3492, 3492, 3492, 3492, 3492, 3494, 15671,16819,17860, 2222, 1275,16831,18410,14335,16805, 146, 14333,14335,11847, 2260, 2754,14335,17845,17861,17905,14335, 17850, 3492, 3492, 3492, 3492, 3492, 3492, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 4852,17859, 140,19357, 18184,14335,14335, 5540, 5540, 5540, 5540, 5540, 5541,14335, 14335,13039,18020,16902,14335,16812,17885,18025,17804,16807, 16813,16905,14335,18024,18312, 4638, 3954,18185,18029,17301, 5540, 5540, 5540, 5540, 5540, 5540, 5542, 5542, 5542, 5542, 5542, 5542, 5542, 5542, 5542,17805,19610,17302,19605,19612, 15676,14317, 5542, 5542, 5542, 5542, 5542, 5543,17868,14317, 17877,17043,17878,14333, 784, 2242,17888,17956,18311,17046, 18191,17879,17957,14333,15677, 784, 1079,17891,17880, 5542, 5542, 5542, 5542, 5542, 5542, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3505,15676,18761,18192, 2243,17958, 18030, 3504, 3504, 3504, 3504, 3504, 3506, 139,14333, 1080, 17881,18034,16913,16915,17960,18652, 776, 139,18020,15677, 16918,16921,14222,15846,17043,14335,18023, 139, 3504, 3504, 3504, 3504, 3504, 3504, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 3501, 2394,16094,16094,16094, 139,17945,17945, 3501, 3501, 3501, 3501, 3501, 3502,17960,16931,16931,17972, 17972,17966,17978,18025,17951,15846,17967,17979,15858,15858, 18748,18028,17962, 531, 140,14325,17974, 3501, 3501, 3501, 3501, 3501, 3501, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 4866,17968,17980,19613,17960,17960,17960, 5549, 5549, 5549, 5549, 5549, 5550,15846,15846,15846,17988,19390, 17994,18035,18005,17962,17804,17995,18175,15872,17969,17969, 531,16980,18039,19482, 8334,16066, 5549, 5549, 5549, 5549, 5549, 5549, 5551, 5551, 5551, 5551, 5551, 5551, 5551, 5551, 5551,17805,17996,12927,14662,17970,17970,14317, 5551, 5551, 5551, 5551, 5551, 5552,17988,14317, 140,18005,18175,17812, 18030,18035,18224,15872,18040,18198,16980,16066,18033,18038, 17990,16115,18043,18010,18177, 5551, 5551, 5551, 5551, 5551, 5551, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3521,19457,18199,19614,17972,17972,17972, 3520, 3520, 3520, 3520, 3520, 3522,15858,15858,15858,18050,18055,18020,12910, 16360,17974,18065,18726,18054,18058,17981,17981, 531,18024, 8334, 8334,14317,18069, 3520, 3520, 3520, 3520, 3520, 3520, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 3517, 2408, 14664,14664,16361,17982,17982,17988, 3517, 3517, 3517, 3517, 3517, 3518, 140, 140,15872,18721, 531,17814,18020,18065, 18070,18070,18075,14317,18413,14317,18023,18068,18073, 531, 18078,14317,18074, 3517, 3517, 3517, 3517, 3517, 3517, 139, 139,16769, 139, 836, 139, 139, 139, 139, 139, 139, 139, 571, 139, 139, 5558, 5558, 5558, 5558, 5558, 5558, 5558, 5558, 5558, 139, 139, 139, 139, 139, 139, 139, 571, 571, 571, 571, 571, 572, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 139, 139, 139, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 139, 139,19623, 139, 163, 139, 139, 139, 139, 139, 139, 139, 168, 344, 139, 5560, 5560, 5560, 5560, 5560, 5560, 5560, 5560, 5560, 139, 139, 139, 139, 139, 139, 139, 168, 168, 168, 168, 168, 345, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 139, 139, 139, 176, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 4198, 8334,19680,19684,17988,17988, 18005, 5566, 5566, 5566, 5566, 5566, 5567,15872,15872,16980, 18075,18751,18096,16360,17990,14664,14325,18080,18096,17997, 17997,18079, 307,18100, 531,18083,18099, 140, 5566, 5566, 5566, 5566, 5566, 5566, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5570,18183,16361,17998,17998,18414,18184, 5569, 5569, 5569, 5569, 5569, 5571,14645,14645,14645,14645, 14645,14645,14645,14645,14645,17846,18015,18015,18015,18015, 18015,18015,18015,18015,18015, 8334,18185, 5569, 5569, 5569, 5569, 5569, 5569, 5575, 5576, 5577, 5578, 5578, 5578, 5578, 5578, 5578,17847, 8334, 531,18014,18005,18206,14335, 3548, 3548, 3548, 3548, 3548, 3552,16980,14335, 140,18101,18576, 18106,18101,18010,18014,12865,18111,18104,18012,18109,12865, 307,10999,18105,18114,18207, 140, 3548, 3548, 3548, 3548, 3548, 3548, 5579, 5579, 5579, 5579, 5579, 5579, 5579, 5579, 5579, 2955, 6392, 140,18013,18005, 531,18106, 3546, 3546, 3546, 3546, 3546, 3547,16980,18439,18121,18121,18110, 1078, 18127, 8358,18127,17846,18124,18132,18012, 140,18126,10999, 18130,18131,19689,18135, 5705, 3546, 3546, 3546, 3546, 3546, 3546, 5585, 5585, 5585, 5585, 5585, 5585, 5585, 5585, 5585, 17847, 140,19693,18013,18143,18143,14335, 5585, 5585, 5585, 5585, 5585, 5586,18146,14335,18147, 531,18343,17854, 8358, 140, 784, 8846, 8847,18015,18015,18015,18015,18015,18016, 18017,18017,18017,18767, 5585, 5585, 5585, 5585, 5585, 5585, 1225, 1225,14335, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18148, 1225, 4935, 8848,19284,17856,10728,18217, 18155,18148,18231,14335, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14335,18156, 5903,18157,18175, 5613, 140, 898,17202, 14092,16811,18160,18190,16066,17595,18218,17205,18191,18232, 8849,10999,10999,19534, 4937, 1225, 1225, 1225, 1225, 531, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 307, 1225, 1225,14093, 140, 140,18192, 898,17202,19397, 782, 18224, 1225, 1225, 1225, 1225, 1225, 1225, 1225,17206,16115, 14094, 8358, 8358, 5615,15209,17896,17896,17896,17896,17896, 17896,17896,17896,17896, 531, 5616, 140,14095,19698, 531, 3008, 1234, 1225, 1225,17598, 898, 140,14092,18017,18017, 18017,18017,18017,18017,18017,18017,18017,14315, 3608,19702, 1078, 531,18754, 5616, 1225, 1225, 7624, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7624, 1225, 4935,14093, 18197,18310, 1078, 7624, 7624,18198,14857,17202, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5617,14859,14094, 140,18245, 5613, 8136,18610,14859,18200,18493,15390,18248, 140,18245, 307, 307,18199,17600,14095, 140, 140, 1275, 4937, 1225, 1225, 1225, 1225,18415, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18245, 1225, 4935,18154,18154,18154,18154, 18154,18154,18154,18154,18249, 1225, 1225, 1225, 1225, 1225, 1225, 1225,19523,14192,19711, 140, 140, 5623,14193,17897, 17897,17897,17897,17897,17897,17897,17897,17897,18205,18216, 1078,19715,18537,18206,18217, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 18250, 1225, 4935, 7624,18230, 7624, 464,18250,18253,18231, 18207,18218, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5624, 16436,16436,16436,14859, 5623,18200,13024,13024,13024,13024, 13024,13024,13024,13024,13024, 140,18232, 140, 531, 140, 1078, 270, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18250, 1225, 4935, 7624, 2023,18425,18400, 1078,18255,18245,18245,18254, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18259,18249,19358, 1606, 14869, 5627,18053,18053,18053,18053,18053,18053,18053,18053, 18053,18245, 140, 1078, 140, 7168,19218, 531,18050, 4937, 1225, 1225, 1225, 1225, 7624, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18255, 1225, 4935, 7624,18279, 7169, 18279,18245,18258,10000,14871,18722, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5628,19725,14317, 140,14871, 5627,18125, 18125,18125,18125,18125,18125,18125,18125,18125,18245, 140, 19561, 1078, 531, 140,19729,18121, 4937, 1225, 1225, 1225, 1225, 7624, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 307, 1225, 4935,15644,19633, 140, 7624,18284, 7624, 12137,18208,18224, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1078,16115, 3570, 140, 4455, 5630, 5631,14883,18226,14885, 16850,16850,16850,16850,16850,16850,16850,16850,16850, 140, 16850, 140,18260, 4937, 1225, 1225, 329,18245,18245,17291, 18263, 140, 140, 5631, 1225, 1225,18248, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7624, 1225, 1225, 7624, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 1225, 1225, 1225, 1225, 1225, 1225, 1225,17892,14871,18245,18245,18208, 5634,10728,18801, 307,10728,18248, 307,18613, 140,18249, 17197, 140,16125,16125,16125,16125,16125,16125, 1234, 1225, 1225, 1225, 1225,18498, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 1225,18209,18209,18209,18209, 18209,18209,18209,18209,18209, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14199, 3954, 3969, 1275,18279, 5634,18209,18209, 18209,18209,18209,18210,18211,18211,18211,18283,16770,19532, 19538,15481,18279,16771,14317, 1234, 1225, 1225, 1225, 1225, 18282, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 531, 1225, 4935,18211,18211,18211,18211,18211,18211,18211, 18211,18211, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18279, 18279, 140, 140, 140, 5636, 5637, 531,18282,18282,16891, 16891,16891,16891,16891,16891,16891,16891,16891,18279,16891, 18284, 4455, 4937, 1225, 1225, 4286, 5712,19203,18287,18283, 140,19289, 5637, 1225, 1225, 7624, 1226, 3588, 1225, 1225, 1225, 1228, 1228, 1225, 1225, 1585, 1996, 1228,18245,18544, 434, 7624,18331,17356,18284,18219,18248, 1228, 1225, 1225, 1225, 1225, 1225, 1225,17927,18288,19741, 140, 257, 3003, 18018,14885,16993,16993,16993,16993,16993,16993,16993,16993, 16993, 140,18245, 140,19360,18289, 531, 1234, 1225, 1225, 1225, 1225, 1225, 140, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18245, 1225, 1225, 7624, 531, 7624,19750, 14117,18245,18289,18301,18249, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18249,18245,18245, 1572,14885, 1978,18219,17291, 5641,18248,18248, 307,18331, 307,17325,17294, 140,17291, 140,12845,18334, 1234,18337, 1234, 1225, 1225, 139, 139, 17295, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139,18220,18220,18220,18220,18220,18220,18220, 18220,18220, 139, 139, 139, 139, 139, 139, 139,19458, 17341,18557,17342,18018, 589,16993,16993,16993,16993,16993, 18019,16990,16990,16990,12910, 8136,18331,15612,18645,17356, 17356,19564, 146, 139, 139, 139, 140,18335,17359,18351, 17360, 5643, 139, 139,17343, 148, 5644, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,18220,18220,18220, 18220,18220,18221,18222,18222,18222, 203, 139, 139, 139, 139, 139, 139,14232,19750,19486,19524,18364, 204,18222, 18222,18222,18222,18222,18222,18222,18222,18222,18368, 5712, 5712, 5712,15517,12927,19755,18642, 139, 139, 139, 176, 2012, 2012, 2013, 2012, 5649, 2012, 2012, 2012, 2012, 2012, 2012, 2012,18224, 2012, 2012,18364,18364,18364,18364,18321, 18323,16115,18361,18367, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2023, 2023,18233, 3077,18018, 2501,16990,16990,16990, 16990,16990,16990,16990,16990,16990,14225,19755,14333, 1606, 1606,14226, 2564,14343, 2012, 2012, 2012, 2013, 140, 2492, 18234,14896,14896,14896,14896,14896,14896,14896,14896,14896, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 8884, 4965,18240,18241,18242,18243,18243,18243,18243,18243,18243, 18224, 2493,18364,18364,18364,18364,18369, 5712,18560,16115, 18367,19755, 140,18367,18368,18368,18226,18373, 784, 2981, 8105,18233,18369,18369,18845,18302,18303,18302,18303,18369, 18372,18372,18364,16931,18369, 5650, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012,18234, 2012, 2012, 1572, 2982,18789, 5712, 5712,18369,18564,14343,18364, 2012, 2012, 2012, 2012, 2012, 2012, 2012,18373,18304, 1234, 1234,18305, 2501,18294,18294,18294,18294,18294,18294,18369, 18374,18374,18364,18399,18374,18364,19750,18372,18377, 140, 2012, 2012, 2012,18293, 1572,18378,18368, 784, 3636, 784, 5021,18364,18295,18295,18295,18295,18295,18295,19750,18367, 140,18296, 1234, 5651, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 1572, 4970,18297,18297,18297,18297,18297, 18297, 3637,18364, 5022, 1078, 2023,18364,19750, 898,19748, 18367, 1234,18324,18325,18324,18325, 1572,18368,18364, 1606, 18418, 2564,18364, 1606,18418,18380,18367, 1617,18421, 8136, 18404,18418, 140,18354, 1234,18422,18320, 464, 2023, 5655, 1597, 1597, 3663, 1597, 5679, 1597, 1597, 1597, 1597, 1597, 1597, 1597,18380, 1597, 1597,18326, 1606,18405,18327, 1618, 4324,18584,17439,18516, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15209, 270,12865,12896,18712, 2520,18339, 307,17431, 8930,10728,18604, 140, 140,18300,18300,18300,18300,18300, 18300,18300,18300,18300, 1606, 1597, 1597, 4987, 4987, 4987, 4987, 4987, 4987, 4987, 4987, 4987, 1572, 4987,18322,18322, 18322,18322,18322,18322,18322,18322,18322, 307, 2023,12913, 19298, 307, 140, 307, 1234,18385, 140,18636, 140, 2023, 17312,17312,17312,17312,17312,17312, 1606, 3077, 898, 8110, 4455,19537,18572, 140, 4455, 307, 4455, 1606,11781,18610, 140, 2023, 5680, 1597, 1597, 2564, 1597, 4286, 1597, 1597, 1597, 1597, 1597, 1597, 1597,18554, 2535, 1597, 4455, 1606, 18510, 8111, 5048, 6392,18355,18355,18356, 3060, 1597, 1597, 1597, 1597, 1597, 1597,18344,18344,18344,18344,18344, 3051, 5750,18439, 293,19750,15258, 3077,15483,18563, 307,12865, 329,18611,18384, 140,12865, 5705, 140, 1606, 1597, 1597, 2541, 1597, 1597, 2564, 1597, 4990, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2036, 2535, 1597, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3058, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1606, 1597, 1597, 1597, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 1597, 1597,18762, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,14335, 1597, 5683,15223, 15223,15223,15223,15223,15223,15223,15223,15223, 1597, 1597, 1597, 1597, 1597, 1597, 1597,18749,16948,16948,16948,16064, 5684, 1617,18328,18328,18328,18328,18328,18328,18328,18328, 18328, 140,17421,17421,17421,17421,17421,17421, 5685, 1597, 1597, 1597, 1597, 2023, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1618, 1597, 5683,18548,17631,14315,14333, 18786, 1606, 1617,14325,14343, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5686,18395,18395,18396, 2697, 5684, 1617,18329, 18329,18329,18329,18329,18329,18329,18329,18329, 2698,18393, 18393,18393,18393,18393, 1618, 5685, 1597, 1597, 1597, 1597, 2023, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1618, 1597, 5683, 8110,12865, 140,14315, 1742, 1606,12865, 14317,14325, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1743, 1379,16773,18737,18562, 5690, 1617,17317,17317,17317,17317, 17317,17317, 1044,19626, 1744, 8111,18394,18394,18394,18394, 18394,18394, 5685, 1597, 1597, 1597, 1597, 2023, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1618, 1597, 5683, 2222,14117, 3742, 758,18578, 1606,16066,18550,18561, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5691,12865, 140, 8136, 14186, 5690,12865,18357,18357,18357,18357,18357,18357,18357, 18357,18357,12845, 2222,19454, 516, 4410,12910,18559, 5685, 1597, 1597, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 4411, 1597, 5683, 434,18409, 307, 19767, 8921, 2564,10612, 140,18714, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 6392,18792, 257, 434,18698, 5693,14343, 5694,19871, 4455,18512,18344,18344,18344,18344,18344,18344, 18344,18344,18344,10612, 257,10613, 5695, 5696, 5696,14315, 10728,19877,18514, 140,14325, 5705, 3742, 5697, 1597, 1597, 18753, 1598, 2031, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600,18810,18518,10613,18517,18816,18406,19640, 10614,19270, 1600, 1597, 1597, 1597, 1597, 1597, 1597,15258, 4410,15258,18488, 140, 3658, 329, 307, 329, 329, 307, 5699, 140,14315, 140, 140, 140, 531,14325, 4411, 140, 10614,18741, 1606, 1597, 1597, 1597, 1597, 1597,19618, 1598, 4327, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3063, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1606, 1597, 1597, 1597, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 1597, 1597, 5904, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 531, 1597, 1597,15231,15231,15231,15231,15231,15231, 15231,15231,15231, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 19570, 3077,18725, 5905, 4335, 2520, 5703,18357,18357,18357, 18357,18357,14317,16772, 3742,18494,18495,18494,18495, 7135, 19882,18525, 1735, 1606, 1597, 1597, 139, 139, 3077, 139, 836, 139, 139, 139, 139, 139, 139, 139, 5906, 139, 139, 1275,18814,18814,18815,15648, 2564, 1736, 4410, 5218, 139, 139, 139, 139, 139, 139, 139, 6392,18496, 5904, 1737,18497, 572, 140,16786, 531, 4411,19889,18345,18345, 18345,18345,18345,18345, 5219,18719,18763,18346,18488,18546, 139, 139, 139,18408, 329,10768,14335, 5221,19621, 5705, 140, 5905, 5708, 2555, 2555, 5904, 2555, 2555, 5024, 2555, 2555, 2555, 2555, 2555, 2555, 531, 2555, 2555,15242,15242, 15242,15242,15242,15242,15242,15242,15242, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18519,16770, 5906, 5905,16770, 4339, 16771,14317,18730,16771,14317, 5717,18489,18489,18489,18489, 18489,18489,18489,18489,18489,18529, 464, 2564, 2555, 2555, 2555, 2555,18821, 2555, 5723, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 5906, 2555, 2555,18489,18489,18489,18489,18489, 18490,18491,18491,18491, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 270,14333,19895, 140,19382, 3682,18795,18358,18358, 18358,18358,18358,18358,18491,18491,18491,18491,18491,18491, 18491,18491,18491, 464, 2564, 2555, 2555, 2555, 2555, 3077, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555,14135, 2555, 2555,12896,18573,18605, 531,19487, 2564,14335,18538, 12896, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 270,16815, 18579,12927,19904, 3682,18359,18359,18359,18359,18359,18359, 5904,12865,12865,18360,12865,19599,12865,12865,12913,12865, 18637, 2564, 2555, 2555,14140, 3077,12913,10955,18642, 5724, 5031, 5031, 5031, 5031, 5031, 5031, 5031, 5031, 5031,15681, 5031, 531, 5905, 2564,17353,17353,17353,17353,17353,17353, 1706, 3077,18522,17906,17906,18362,18362,18362,18362,18362, 18362,18362,18362,18362,17913, 3077,18583,19577,18526, 2564, 1706,14190,16528,12865,15638,15519, 3077, 5906,12865,18608, 18643,10955, 1707, 2564,16529, 5725, 2555, 2555,19913, 2556, 5730, 2555, 2555, 2555, 2564,14191, 2555, 2555, 2555,18383, 18383,18383,18383,18383,18383,18383,18383,18383,17908,14250, 17908, 2555, 2555, 2555, 2555, 2555, 2555, 1708,18577,16530, 3077,17915, 3086,18379,18379,18379,18379,18379,18379,18379, 18379,18379, 140,15649, 531,11911,19920,19602, 2564,18374, 2564, 2555, 2555, 2555, 2555, 2555,10694, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,14248, 3697, 2555,18819, 15558,15542,17917,14153, 8631,15559,11911,18668, 4360, 2555, 2555, 2555, 2555, 2555, 2555,12896,12865,10700,19924,12896, 4351,12865,15437, 5731,15286,15286,15286,15286,15286,15286, 15286,15286,15286,17919,18663,19440,17906,10709, 2564, 2555, 2555, 3703, 2555, 2555,17911, 2555, 4352, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3699, 3697, 2555, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 4360, 2555, 2555, 2555, 2555, 2555, 2555, 4353, 4353, 4353, 4353, 4353, 4354, 4353, 4353, 4353, 4353, 4353, 5732, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 2564, 2555, 2555, 3703, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 2555, 2555,10694, 2555, 5733, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 531, 3088, 2555, 15343,15343,15343,15343,15343,15343,15343,15343,15343, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12913,18685,10700, 140, 12913, 3089, 531,18766,18501,18501,18501,18501,18501,18501, 18501,18501,18501,14335,16814,10707,19469, 4455,10709, 2564, 2555, 2555, 2565, 2555, 2555, 1275, 2555, 4352, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3090, 3697, 2555, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4358, 4357, 4357, 5734, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2564, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2555, 2555, 2696, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16527, 3697, 2555,14315,14248,19504,20016,19179,14325,14248, 2697,14190, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18609,16528,12871, 2698,18746, 3698, 3291,18580,14165,14315, 5904, 5735,12865, 16529,14325,14166,14191,12865,18742,18854, 140,14223,17631, 2564, 2555, 2555, 2555, 2555, 2555,18640, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17908, 2555, 2555,14083, 140,18547,14224,18855,17914,16530,18520,18588, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 5737,16812,18530, 5738,18740, 5739,16813,14335,20045, 5740,17917, 6593, 5741, 5742, 5743, 14146, 1617, 5744,17922, 5906,14147,12865,20041, 2564, 2555, 2555,12865,18390,18390,18390,18390,18390,18390,18390,18390, 18390, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 5745, 2555, 2555, 1618, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558,14315,18744,14333,14315, 19228,14325,17917,14343,14325, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 5746,17924,18778, 2023,19510, 5043,14131,17919, 18502,18502,18502,18502,18502,18502,18502,18502,18502,14248, 17926,20111, 140, 1606,14248, 2564, 2555, 2555, 2555, 2555, 2555, 1275, 2556, 3704, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4363, 4362, 4362, 5747, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2564, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2555, 2555,19448, 3079, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12910, 2555, 2555, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 5737,14315,14144, 5738, 531, 5748,14325, 18823,18567, 5740,18574,18743, 5741, 5742, 5743,12865, 1617, 5744,18827,18790,12865, 140,18781, 3084, 2555, 2555,14145, 18391,18391,18391,18391,18391,18391,18391,18391,18391, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 5745, 2555, 2555, 1618, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558,14315,14333,19994, 139,20114,14325, 14343,19399,18747, 4364, 2555, 2555, 2555, 2555, 2555, 2555, 12896,15468,14333, 293,19133, 3702,15469,14343,12896,18606, 14315, 5749,12913,15504,15641,14325,10672,18570,15505,15642, 12913,18638,18755, 2564, 2555, 2555, 3703, 2555, 2555, 139, 2556, 5753, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 4364, 2555, 2555, 2555, 2555, 2555, 2555, 3705, 3705, 3705, 3705, 3705, 3706, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 2564, 2555, 2555, 3703, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 2555, 2555,19229, 3079, 2555, 3080, 2555, 2555, 2555, 2555, 2555, 2555, 3081, 2555, 2555, 531,18785, 1572,14333, 8136, 18732,18914,18733,14343, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18734,18918,14317, 140, 1234, 3083,18305,18735, 784, 15381,15382, 5755, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703,14250, 140, 3084, 2555, 2555, 2555, 2555, 2555, 16527, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9654, 2555, 2555,15383,20120,20086, 8925,19539, 531,18533, 16528,17919, 4360, 2555, 2555, 2555, 2555, 2555, 2555,17925, 9655,10611,16529,14144, 4366,18521, 784, 8846, 8847,14248, 5756,18575, 9656,18569,15542,18523,12865,18676,15384,18861, 10679,12865, 2564, 2555, 2555, 2555, 2555,14145, 2555, 5733, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16530, 3096, 2555, 8848,18760,20068, 1070,20124,18919,18862, 9657,18535, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18923,14333, 5903, 531, 20069, 3097,14343,17525,17525,17525,17525,17525,17525,17525, 17525,17525,10694,20128,18868, 8849, 1071,18787, 329, 2564, 2555, 2555, 139, 139, 140, 139, 836, 139, 139, 139, 139, 139, 139, 139,16812, 139, 139,14223,18804,16813, 14335,18869, 531,10700, 2023,18641, 139, 139, 139, 139, 139, 139, 139,18665,14315, 1617,14250,15635, 572,14325, 10707,14224, 1606,10709,18327,18752,18392,18392,18392,18392, 18392,18392,18392,18392,18392,10694, 139, 139, 139,11847, 19638,14250,14250,18660, 5758, 139, 139, 1618, 139, 5078, 139, 139, 139, 139, 139, 139, 139,14333, 139, 139, 19264,20132,14343,14248, 531,18788,10700,16768,15542, 139, 139, 139, 139, 139, 139, 139, 790,20136,13039,18667, 14317, 4405,18736,10707, 787,14333,10709, 5779,14248,14248, 14343,16769, 1618,15542,15542,18784,18823,18671,18672, 139, 139, 139, 139, 139,18826, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 5781, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139, 531, 139, 139, 139, 139, 139, 139, 139, 139, 139, 315, 5802, 139, 5803, 5804, 5804, 5804, 5804, 5804, 5804, 5804, 5804, 5805, 139, 139, 139, 139, 139, 139, 5804, 5804, 5804, 5804, 5804, 5806, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 139, 139, 139, 322, 5804, 5804, 5804, 5804, 5804, 5804, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 313,19516, 315, 315, 315, 315, 315, 315, 315, 315, 315, 139, 18876,14248,17301,12894,16768,19195, 315, 315, 315, 315, 315, 539,18723,17835,14315,17836,14315,14317,15641,14325, 17302,14325,18800,15642,18739,18738,12911,18877,16769, 3954, 3969,17838, 4635, 315, 315, 315, 315, 315, 315, 139, 139,18311, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3161, 3791, 139, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 139, 139, 139, 139, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4453, 4452, 4452, 5835, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4455, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 139, 139,19189, 139, 139, 139, 139, 139, 139, 139, 139, 139,14333, 3791, 139,18750, 140,14343, 14315, 3077,18773,18782,18774,14325, 139, 139, 139, 139, 139, 139, 139,18775,18828,14335, 1572, 140, 3792, 2564, 18776,15640,18831,18585, 5836, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 1234,20100, 139, 139, 139, 139, 139, 139,10694, 139, 139, 139, 139, 139, 139, 139, 139, 139,20096, 5131, 139, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 139, 139, 139, 139, 139, 139, 139,11714,20419,10700, 140, 140, 3792,18914,11847,18499, 18499,18499,18499,18499,18499,18917,18887,18818,18500,14250, 10707,18689,18901,10709, 139, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9654, 3791, 139,18888,20019,20013,16810,13039,14219,18902, 15280,18666, 3797, 139, 139, 139, 139, 139, 139,14335, 9655,18777,19483, 1275, 3809,12927,14248, 784,15381,15382, 16811,15542, 9656, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 4455, 139, 139, 3799, 139, 139,20147, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1078, 3791, 139,15383,18524, 784,15381,15382, 1376, 9657, 8136,18817, 3801, 139, 139, 139, 139, 139, 139,20375,11847,10611, 18670,18919, 3809,14250,14250,18914, 1377,16381,16541,18922, 14250,18587,14332, 329,14250,18534,15384,15383, 1042, 140, 4455, 139, 139, 3799, 5841, 5842, 5842, 5842, 5842, 5842, 5842, 5842, 5842, 5142, 8929,10611,14250,13039,18845, 8930, 5842, 5842, 5842, 5842, 5842, 5843,18699,16931,18673,14250, 14248,18677,15384,18549,18847,15542,15542,14248, 1078,18532, 1078,18680,15542, 784, 8846, 8847,15542, 5842, 5842, 5842, 5842, 5842, 5842, 5844, 5845, 5845, 5845, 5845, 5845, 5845, 5845, 5845, 5846,14248,18674,18919,18894,18924,15542, 5845, 5845, 5845, 5845, 5845, 5847,16980,14248, 8848,14250,19513, 14248,18683,18678,20478,14250,14248, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 5903, 5845, 5845, 5845, 5845, 5845, 5845, 5850, 5851, 5851, 5851, 5851, 5851, 5851, 5851, 5851, 5852,18536, 1078,19213,18845,14250,18924, 5851, 5851, 5851, 5851, 5851, 5853,16931,14248, 2023,18929,18928,10674, 15542,14248, 898, 898,14092,18540,15542,18571,18933, 531, 18929, 4455,18682,20484, 1606, 5851, 5851, 5851, 5851, 5851, 5851, 139, 139,10675, 139, 139, 139, 139, 139, 139, 139, 139, 139,14248, 139, 139,14093,14093,15542, 898, 898, 8068, 8068,18894,16929, 139, 139, 139, 139, 139, 139, 139,16980,18675,14094,14094, 140, 4468, 531,18896, 5858,18542, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703,18539,14095, 8069, 8069, 4455, 139, 139, 5859, 5860, 5860, 5860, 5860, 5860, 5860, 5860, 5860, 5154,18853,18934, 18949, 8070, 8070,18854, 5860, 5860, 5860, 5860, 5860, 5861, 18938,18954,18543,14250,18924,10694,18700,14250, 8071, 8071, 8855,18586,18927,19447,18701,10729,18702,10729,10673,20489, 18855, 5860, 5860, 5860, 5860, 5860, 5860, 5862, 5863, 5863, 5863, 5863, 5863, 5863, 5863, 5863,10700,18813,18813,18813, 18813,18813,18659, 5863, 5863, 5863, 5863, 5863, 5864,12910, 14248, 1078,18929,10707,14248,15542,10709,15550, 140,15542, 18932,19514,10727,10727,10727,18681,14248,10762,10762,18704, 5863, 5863, 5863, 5863, 5863, 5865, 246, 246,18065, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 5881, 5881, 5881, 5881, 5881, 5881, 5881, 5881, 5881, 4494, 246, 246, 246, 246, 246, 246, 5881, 5881, 5881, 5881, 5881, 5882, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 5881, 5881, 5881, 5881, 5881, 5881, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 5884, 5884, 5884, 5884, 5884, 5884, 5884, 5884, 5884, 5885,12326, 16959,16959,16959,18955,18065, 5884, 5884, 5884, 5884, 5884, 5886, 1617,10729,16812,18959,18069, 140, 531,16813,14335, 18771, 140,18393,18393,18393,18393,18393,18393,18393,18393, 18393,10694, 5884, 5884, 5884, 5884, 5884, 5884, 446,14333, 10694, 9211,18860, 1618,14343,20496,19627,18861,18783, 5890, 5891, 5892, 5893, 5893, 5893, 5893, 5893, 5893, 253,10727, 1078, 531,10700,10729,10762, 3824, 3824, 3824, 3824, 3824, 3828,10700,14333,18686,18862,15672,18664,14343,14250,10707, 14250,11747,10709,18793, 1078,12896,18705,18970,10707,12896, 14250,10709, 3824, 3824, 3824, 3824, 3824, 3824, 2648,12894, 5894, 5894, 5894, 5894, 5894, 5894, 5894, 5894, 5894, 3191, 10727,18975,10729,19438,18894,10762, 3822, 3822, 3822, 3822, 3822, 3823,17758,16980,17759,14248,10729,14248,20238,10694, 15542,15558,15542,18669,18679,18903,15559,14248,10729,18684, 17761,20502,15542, 3822, 3822, 3822, 3822, 3822, 3822, 5895, 5896, 5897, 5898, 5898, 5898, 5898, 5898, 5898,15557,10727, 10700, 1078,18904,18894,18709, 253, 253, 253, 253, 253, 256,18688,16980,10727,15634,18970,16810,10707,10762,19573, 10709,19449,18706,18707,18764,10727,18974, 531,18970,14335, 10762,12910, 253, 253, 253, 253, 253, 253, 265, 265, 16811, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 5915, 5915, 5915, 5915, 5915, 5915, 5915, 5915, 5915, 4528, 265, 265, 265, 265, 265, 265, 5915, 5915, 5915, 5915, 5915, 5916, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 5915, 5915, 5915, 5915, 5915, 5915, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 5918, 5918, 5918, 5918, 5918, 5918, 5918, 5918, 5918, 5919, 8334,17184,17184,17184,18975, 531, 5918, 5918, 5918, 5918, 5918, 5920, 1617, 784, 2242,18979,18803,18867, 1078, 1078,15844, 140,18868,18397,18397,18397,18397,18397,18397, 18397,18397,18397, 140, 5918, 5918, 5918, 5918, 5918, 5918, 477,18791,10694, 8334,14333, 1618,18970,19005, 2243,14343, 18869, 5924, 5925, 5926, 5927, 5927, 5927, 5927, 5927, 5927, 274,20511,20043,15846, 455,15677, 776, 3854, 3854, 3854, 3854, 3854, 3858,10700,18980, 140,18970,14333,10729,18687, 10729,15678,14343,18934,18875,18984,15679,18974,18779,18876, 10707,18937, 8334,10709, 3854, 3854, 3854, 3854, 3854, 3854, 2679,20153, 5928, 5928, 5928, 5928, 5928, 5928, 5928, 5928, 5928, 3228,18870, 1078,10729, 531,18877,20520, 3852, 3852, 3852, 3852, 3852, 3853, 140,10727,10729,10727,14333,18703, 10762,14189,10762,14343,12865,18708,19450,18710, 1078,18794, 19010,12910, 8334, 8334, 8334, 3852, 3852, 3852, 3852, 3852, 3852, 5929, 5930, 5931, 5932, 5932, 5932, 5932, 5932, 5932, 11771,10727,15856,15858,15846,18970,10762, 274, 274, 274, 274, 274, 277,10727, 140, 140, 140,11772,10762, 531, 11773, 898,12793,14092,18886,18939,14133,18900, 531,18887, 18711,19359,18901,18942, 274, 274, 274, 274, 274, 274, 291, 291, 8334, 291, 5239, 291, 291, 291, 291, 291, 291, 291,18949, 291, 291,14093,18888, 784, 1079,18902, 18952, 1078,18878,18955, 291, 291, 291, 291, 291, 291, 291,18958,18960,14094, 140,20527, 4564,18541,18065,18970, 18963,17877, 5954,17878,14333,18975,18068,18973,18143,14343, 14095, 1080,18780,18978, 291, 291, 291, 514, 514,17880, 514, 5249, 514, 514, 514, 514, 514, 514, 514, 139, 514, 514,18980,18806,19348,19348,19349,20531, 8334,18970, 18983, 514, 514, 514, 514, 514, 514, 514,15180,18985, 18974,19005,18970, 4575,18970, 1275, 140,18988,15870, 5963, 18973, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 514, 514, 514, 1769, 5967,18970,19005,19005, 531, 19993,18970,15181, 5968,18973,19008,19008,19005,18402,17525, 17525,17525,17525,17525,18492,17522,17522,17522,19009,18970, 15671,19005,19016,14333, 329,19611, 1770,15678,14343,19008, 140,10729,15679, 1771, 8334,18796,17522,17522,17522,17522, 17522,17522,17522,17522,17522,19353,18799,19005, 1772,19016, 1773, 329, 1774, 8334,15846, 1775, 1776, 140,19009, 1078, 1777, 307,19476, 1778, 8334, 1779, 140, 1780,19010, 1781, 1782, 1783, 1769,18870, 8334, 8334,19013, 1275,10727,20543, 307,20686,11757,10762,15858, 140,19018,11758,18811,18811, 18811,18811,18811,18811,15858,18878, 140,18812,12927, 531, 18970, 307, 307, 140, 1770, 5969, 140, 140,18973, 140, 19067, 1771, 8334,19010,18813,18813,18813,18813,18813,18813, 18813,18813,18813,18970,19014,18970, 1772,12911, 1773,15704, 1774,18973,15872, 1775, 1776, 140,18974,19068, 1777,19639, 18970, 1778,18143, 1779, 140, 1780,18970, 1781, 1782, 1783, 3291,18974, 3292,18147,18973,19076,20263, 8334, 8334, 1768, 18822,18822,18822,18822,18822,18822,18822,18822,18879,18879, 18879,18879,18879,18879,18879,18879,18879,18889,15872,19615, 140, 1275,19077,19062, 3293, 307,15675, 8334,19067, 140, 140, 3294,18879,18879,18879,18879,18879,18880,18881,18881, 18881,15280,18404,18143, 8334,19018, 3295,15872, 3296, 4599, 3298,18146,19018, 3299, 3911,19068,19030,18894, 3301, 140, 19027, 3302, 531, 3303,18889, 3304,16980, 3305, 3306, 3307, 3291, 307, 3292,18896,17439,19071, 140,19276,18903, 1768, 19076,20689, 5970,18881,18881,18881,18881,18881,18881,18881, 18881,18881,18890,18890,18890,18890,18890,18890,18890,18890, 18890,19031, 140,19080, 3293,18904, 140,19077,19085,19034, 19031, 3294,18890,18890,18890,18890,18890,18891,18892,18892, 18892,19035, 1572,19036,16066,16066, 3295,20428, 3296, 4599, 3298,19039, 307, 3299, 5971,19086, 140, 140, 3301, 531, 1234, 3302,20012, 3303,20006, 3304, 140, 3305, 3306, 3307, 1769,18892,18892,18892,18892,18892,18892,18892,18892,18892, 15883,15883,15883,15883,15883,15883,15883,15883,15883,18910, 18911,18912,18913,18913,18913,18913,18913,18913,19085,19133, 19098,19093, 1770,19107, 531,20046,19098,19136,19112, 1771, 140,18018,19133,16990,16990,16990,16990,16990,16990,19138, 2023,19138, 140,19137, 1772,19086, 1773,19099, 1774,19141, 19142, 1775, 1776,19099, 140,19113, 1777,19112, 1606, 1778, 19217, 1779,19200, 5972, 139, 1781, 1782, 1783, 1769,18953, 18953,18953,18953,18953,18953,18953,18953,18953,19124, 7624, 20363, 1078,20692,20018,19113,18949,18995,18995,18995,18995, 18995,18995,18995,18995,18995,19143,19201,14332, 1078,16113, 1770, 7624,18998, 7624,19123,19125,19147, 1771,19133,19124, 10000, 140,19015,19015,19015,19015,19015,19015,19015,19015, 19015,16115, 1772,16115, 1773,19138, 1774, 139,19010, 5973, 1776, 7624,19143, 140, 2215, 140,19125, 1778, 531, 1779, 19146, 1780,19148, 1781, 1782, 1783, 1769, 1078, 9692, 8884, 19151,19126, 1078,12137,19017,19017,19017,19017,19017,19017, 19017,19017,19017, 140,19401,19028,19028,19028,19028,19028, 19028,19028,19028,19028,19143, 140,19153, 140, 1770,19133, 8105,18341,20695, 3077,19156, 1771, 140,19046,19046,19046, 19046,19046,19046,19046,19046,19046,20410,19163,19148,18342, 1772, 2564, 1773,19049, 1774,19166,19029, 1775, 1776,19152, 19167,14350, 5974,19243,19133, 1778,20093, 1779,19170, 1780, 19223, 1781, 1782, 1783, 1769,19137,12326, 7624, 139,16083, 16083,16083,16083,16083,16083,16083,16083,16083,16094,16094, 16094,16094,16094,16094,16094,16094,16094,16115, 140, 7624, 19133, 531,18331, 5647, 307,19204, 1770, 140,19136, 140, 18334,18331, 4286, 1771, 140,19244,19244, 5712, 9211,19126, 12896,20398,18335,19247,12896,19244, 307,19248, 1772, 5992, 1773, 140, 1774,19247,19177, 1775, 1776, 5648,14350,18331, 1777,19233,19441, 1778,19244, 1779,17341, 1780,17342, 1781, 1782, 1783, 1769,19127,19127,19127,19127,19127,19127,19127, 19127,19127,19127,19127,19127,19127,19127,19128,19129,19129, 19129,19129,19129,19129,19129,19129,19129,19129,19129,19129, 17343,12913,19224,19231, 1770,12913, 531,18341,19407, 5712, 12326, 1771,19130,19244,18243,18243,18243,18243,18243,18243, 18243,18243,18243,19470,19248,18342, 1772, 307, 1773,19290, 1774,16360, 140, 1775, 1776, 140,19244,19293, 1777, 5993, 8111, 1778, 898, 1779,19193, 1780,19223, 1781, 1782, 1783, 1769,19130, 9211,18243,18243,18243,18243,18243,19131,18240, 18240,18240,19130,16361,18240,18240,18240,18240,18240,18240, 18240,18240,18240,12326, 140,18341, 3008, 1078, 6392, 784, 2981,19180, 1770,19452, 3077, 140,19451,12326, 6392, 1771, 5019,12910,19290,18342, 3608, 140,12910,19271,19226,19481, 7168, 782, 7135,19294, 1772,19285, 1773,12927, 1774, 140, 5705, 1775, 5994, 2982,19223, 9211, 1777, 784, 3636, 1778, 5705, 1779,20699, 1780, 7169, 1781, 1782, 1783, 1769, 9211, 19256, 1234,19181,19181,19181,19181,19181,19181,19181,19181, 19181,19182,19182,19182,19182,19182,19182,19182,19182,19182, 19225, 3637,17301, 1572,18295,18295,18295,18295,18295,18295, 1770, 3077, 1572,19459,16360,12793,20149, 1771, 1617, 1606, 17302, 1234,12896,12910,19525, 1572,12896,19477,19194, 2564, 1234,20702, 1772, 531, 1773, 8136, 1774,12927,19259, 1775, 1776,18311,19205, 1234, 1777, 5995,16361, 1778,19445, 1779, 1618, 1780,19286, 1781, 1782, 1783, 1769,19183,19183,19183, 19183,19183,19183,19183,19183,19183,19184,19184,19184,19184, 19184,19184,19184,19184,19184, 7168, 5712,19644, 1572, 140, 19184,19184,19184,19184,19184,19647, 3674, 1572, 1770, 1078, 898, 3077,10694,15620, 140, 1771, 1234,19478,19546, 7169, 14317, 1572,19186,19186,19187, 1234,19287,12927, 3077, 7135, 1772,19252, 1773,20709, 1774,19272,19290, 1775, 1776, 1234, 19281,19282, 1777, 1572, 3663, 1778, 7135, 1779, 140, 1780, 5996, 1781, 1782, 1783, 2223,19185,19185,19185,19185,19185, 19185, 1234, 4324, 3077, 2224, 5997, 5997, 5997, 5997, 5997, 5997, 5997, 5997, 5997,19254,19409, 1572, 1617,20294,19405, 8884, 2564, 307,14117,10694,19222, 2225, 140,19268,19268, 19268,19268,19268, 2226, 1234, 434,19188,19188,19188,19188, 19188,19188,19188,19188,19188, 4455, 3077, 140, 2227, 1618, 2739, 8105, 2229, 257,12845, 2230, 2231, 1572, 784, 5021, 2232, 898,18404, 2233, 2564, 2234,20712, 2740,10694, 2236, 2741, 2238, 2223,20014,19361, 1234,19206,19206,19206,19206, 19206,19206, 2224, 3742,19207,19207,19207,19207,19207,19207, 464,20269, 5022,19208,17439, 5048,19402, 2023,19209,19209, 19209,19209,19209,19209, 2225, 2023, 5218, 1376, 3742,15620, 2564, 2226,19275, 5750,19547, 1606,14317, 4410,19234, 2023, 19351,19253,19351, 1606,19364, 270, 2227, 1377, 2228, 2744, 2229, 5219,19391, 2230, 2231, 4411,20311, 1606, 2232, 1042, 5998, 2233, 4410, 2234, 5221, 2235, 1275, 2236, 2237, 2238, 3291,14222, 3955,19210,19210,19211,19479, 1617,19279, 2222, 4411,12927, 3956,19352,19212,19212,19212,19212,19212,19212, 19212,19212,19212,10694, 2023,16381,19214,19215,19214,19215, 19394, 329, 307,19280, 3957, 2023,14117, 140,16390, 1618, 140, 3958, 1606,16399, 329,16412, 531, 6008,19644, 329, 140, 329, 2023, 1606, 758, 140, 3959, 140, 3960,19648, 3962,19269,20094, 3963, 4625,20720, 2053,12845, 3965,19216, 1606, 3966,19217, 3967,19406, 3968,19404, 3969, 3970, 3971, 3291, 8110, 3955, 6392, 8136, 3742, 516,19277,20333, 2222, 20270, 3954, 3956, 6392,19227,19227,19227,19227,19227,19227, 19227,19227,19227,20723,18345,18345,18345,18345,18345,18345, 16426,16381,16390, 8111, 3957, 5705, 329, 329, 329, 4410, 19650, 3958, 140, 140, 140, 5705, 531, 531,19653,19235, 19235,19235,19235,19235,20370,16390, 3959, 4411, 3960,19620, 3962, 329, 307, 3963, 4625, 4625,19480, 140, 3965, 6009, 3077, 3966,19408, 3967,14332, 3968,12927, 3969, 3970, 3971, 783, 783, 784, 785, 5337, 783, 783, 783, 2564, 140, 783, 783, 783,19235,19235,19235,19235,19235,19235,19235, 19235,19235,19436,19488,14190, 783, 783, 783, 783, 783, 783, 140,19456,12927, 3077,20101, 789,19315,19315,19315, 19315,19315,19315,19315,19315,19315,12896,12910,14191,19650, 12896, 531, 2564,20198, 139, 783, 783, 783, 139, 139, 19654, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 150, 150, 6050, 6050, 6050, 6050, 6050, 6050, 6050, 6050, 6050, 4677, 139, 139, 139, 139, 139, 139, 6050, 6050, 6050, 6050, 6050, 6051, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 6050, 6050, 6050, 6050, 6050, 6050, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 6053, 6053, 6053, 6053, 6053, 6053, 6053, 6053, 6053, 6054,19362,19455,19484,14189,14222,20731, 6053, 6053, 6053, 6053, 6053, 6055,19635,12910,12927,16399,19608, 1617,18914, 16931,19655, 329, 307,19260,19261,19260,19261, 140,19658, 18918,19636, 140, 434, 6053, 6053, 6053, 6053, 6053, 6053, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 150, 1618, 257,19637,19511,19750, 329, 6056, 6056, 6056, 6056, 6056, 6057,15685,20734,14248,19754, 531,19262, 1379,14248, 19263,19315,19315,19315,19315,19315,19316,19317,19317,19317, 1044,16828,20744, 6056, 6056, 6056, 6056, 6056, 6056, 6059, 6059, 6059, 6059, 6059, 6059, 6059, 6059, 6059, 5348,19347, 19347,19347,19347,19347,19347, 6059, 6059, 6059, 6059, 6059, 6060,19317,19317,19317,19317,19317,19317,19317,19317,19317, 1275,19395, 140, 140,19649, 531,18359,18359,18359,18359, 18359,18359, 6059, 6059, 6059, 6059, 6059, 6059, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 3077,12896,19641, 19436,19644,12896, 139, 6061, 6061, 6061, 6061, 6061, 6062, 16399,16412,20099,20750,16412, 2564, 329, 329, 307,18914, 329,19685, 140, 140,12896, 531, 140,18917,12896, 531, 19443, 6061, 6061, 6061, 6061, 6061, 6061, 150, 150, 150, 150, 150, 150, 150, 150, 150, 4008,16621,19686, 140, 19694,19703,19437, 150, 150, 150, 150, 150, 162,19321, 19321,19321,19321,19321,19321,19321,19321,19321,19321,19321, 19321,19321,19321,19322,19323,19323,19323,19695,19704,19992, 150, 150, 150, 150, 150, 150, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 5357,18499,18499,18499,18499, 18499,18499, 6066, 6066, 6066, 6066, 6066, 6067,19323,19323, 19323,19323,19323,19323,19323,19323,19323, 1275,12913, 140, 10694,19436,12913,19240,19240,19240,19240,19240,19240, 6066, 6066, 6066, 6066, 6066, 6066, 6068, 6068, 6068, 6068, 6068, 6068, 6068, 6068, 6068, 3077,12896,19467,19567, 3291,12896, 14165, 6068, 6068, 6068, 6068, 6068, 6069,14166,20108,20290, 19430,16931, 2564,19327,19327,19327,19327,19327,19327,19327, 19327,19327,15468, 140,12894,20750, 531,15469, 6068, 6068, 6068, 6068, 6068, 6068, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 5366,16788,14117,20236,19716,19730,19568, 6072, 6072, 6072, 6072, 6072, 6073,19327,19327,19327,19327, 19327,19328,19329,19329,19329,19329,19329,19329,19329,19329, 19329,19329,19329,19329,19717,19731,12845, 6072, 6072, 6072, 6072, 6072, 6072, 6074, 6074, 6074, 6074, 6074, 6074, 6074, 6074, 6074,19465,17522,17522,17522,17522,17522,17522, 6074, 6074, 6074, 6074, 6074, 6075,16426,19742,16426, 329,19403, 140, 329, 307, 329, 140,19750,12913, 140, 1078, 140, 12913,12896, 531,19753,12865,12896, 6074, 6074, 6074, 6074, 6074, 6074, 2840,19743, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4018,15461,18914,20148, 1078, 1078,19442, 4017, 4017, 4017, 4017, 4017, 4019,19333,19333,19333,19333, 19333,19333,19333,19333,19333,19333,19333,19333,19333,19333, 19334,19335,19335,19335,19750,19750,14133, 4017, 4017, 4017, 4017, 4017, 4017, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 5379,10612, 8136,20755, 1078, 8926,20334, 6081, 6081, 6081, 6081, 6081, 6082,19335,19335,19335,19335,19335, 19335,19335,19335,19335,16436,16436,16436,16436,16436,16436, 16436,16436,16436,19750,10612,10613, 6081, 6081, 6081, 6081, 6081, 6081, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 5904,16527,20755,20755,19528,20750,20750, 6083, 6083, 6083, 6083, 6083, 6084,19503,19366,10613,19501,19605,19365, 10614, 8932,16528,12865,12865,12865,12865,12865,12865,12865, 12865,12865, 140, 5905,16529, 6083, 6083, 6083, 6083, 6083, 6083, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4030,10614,12913,19417, 1078,19750,12913, 4029, 4029, 4029, 4029, 4029, 4031,19367,20070,16830,19754,14248, 5906,16530, 19606,12896,14248,12913,14248,12896,19368,12913,19474,14248, 20750,19755,16527, 9654, 4029, 4029, 4029, 4029, 4029, 4029, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 4026, 2804, 19376,20750,16528, 9655,19444,19472, 4026, 4026, 4026, 4026, 4026, 4027,19508,19549,16529, 9656,19750,14248, 140,15620, 19369,12913,14248,19371,15622,12913,14317,19754, 784,15381, 15382, 9654,10613, 4026, 4026, 4026, 4026, 4026, 4026, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 5393,16530, 9657, 9655, 1078,15639,19473, 6090, 6090, 6090, 6090, 6090, 6091,19565,15383, 9656, 140, 464,19832,10614,12865,12865, 12865,12865,12865,12865,12865,12865,12865,15640, 140,19760, 10611,19383, 6090, 6090, 6090, 6090, 6090, 6090, 6092, 6092, 6092, 6092, 6092, 6092, 6092, 6092, 6092,19377,19372,20187, 270,19755,20154,20813, 6092, 6092, 6092, 6092, 6092, 6093, 3954,18661,19759, 464,12865,12865,12865,12865,12865,12865, 12865,12865,12865,19628,19418,19628,12896, 784,15381,19378, 12896, 6092, 6092, 6092, 6092, 6092, 6092, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4046,19502, 270, 140, 20845,20374,19446, 4045, 4045, 4045, 4045, 4045, 4047,15465, 14248,15383,14248,19755, 4625,14248,19629,14248,14248,14332, 19419,15561,15552,14248,19759,19619, 784, 8846, 8847,10611, 4045, 4045, 4045, 4045, 4045, 4045, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 4042, 2818,15384,20877,19380, 1078, 14223, 8136, 4042, 4042, 4042, 4042, 4042, 4043,19485,19567, 8848,12865,12865,12865,12865,12865,12865,12865,12865,12865, 1078, 1078, 1078,12927,14224, 898,19750,19387, 5903, 4042, 4042, 4042, 4042, 4042, 4042, 6099, 6099, 6099, 6099, 6099, 6099, 6099, 6099, 6099, 4726, 8849, 531,19767,19772,19777, 19515, 6099, 6099, 6099, 6099, 6099, 6100,14248,19527, 8069, 15641,20223,14248,10728,19680,15642,12896,19420, 8932,19685, 1078,19465,19536, 898, 898,14092,19388, 8070, 6099, 6099, 6099, 6099, 6099, 6099, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6103, 8071,12913,19686,19767,15639,12913, 6102, 6102, 6102, 6102, 6102, 6104,19566,14093, 8069,12865, 12865,12865,12865,12865,12865,12865,12865,12865,16657, 1078, 10761,12894,15640,19466, 1275,14094, 8070, 6102, 6102, 6102, 6102, 6102, 6102, 6108, 6109, 6110, 6111, 6111, 6111, 6111, 6111, 6111,14095, 8071, 1078,15483,19813, 140,19386, 4061, 4061, 4061, 4061, 4061, 4065,19389,19389,19389,19389,19389, 19389,19389,19389,15620,20071,20146,19883,19421,15622,19548, 14317,19833, 2696,19393, 8334, 140, 4061, 4061, 4061, 4061, 4061, 4061, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 3410, 2697,19884,16978,19465, 140,19750, 4059, 4059, 4059, 4059, 4059, 4060, 2698,19753, 140,19509,19545,20927, 12894,19236,19236,19236,19236,19236,19236,15620, 3256,12913, 19237,19552,15622,12913,14317, 4059, 4059, 4059, 4059, 4059, 4059, 5416, 3077, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 150, 1617,20237,12913,15504,20929, 139,12913, 2564,15505,15565,19760,19267,19267,19267,19267,19267,19267, 19267,19267,19267,20998,19764,14248,20107,14255,15497,15620, 14248,16707,19512,19471,15622, 1618,14317,14248, 140, 6117, 139, 139,14248, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 5416, 150, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 150, 139, 139, 139, 139, 139, 139, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 6118, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 139, 139,15620, 139, 2864, 2696,15620, 15622, 1070,19558,19750,15622,16980,14317, 139, 139, 139, 139, 139, 139, 139,19754,19551,20405, 140, 2697, 6128, 5904,19238,19238,19238,19238,19238,19238,19238,19238,19238, 2698,17475,17475,17475, 1071,14318,14350, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5905, 139, 2864,16764,15620,19689,19605,19392, 2564,15622,19694,19557, 139, 139, 139, 139, 139, 139, 139, 6129,17481,17481,17481,19622, 6128,19373,19239,19239, 19239,19239,19239,19239,19239,19239,19239, 5906,19925,19695, 17490,17490,17490,20364, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,15678, 139, 4756, 140,19698,15679,19926,12913, 2564,19703,19750, 12913, 139, 139, 139, 139, 139, 139, 139,12793,14332, 19754,20888,15704, 6133,17463,19241,19241,19241,19241,19241, 19241,19439,19475,15657,19242,19704, 140,12894,19584,15501, 14335, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,12896, 139, 4756,15544, 12896,19711,18661,19505, 2564,12866,19716,19767, 139, 139, 139, 139, 139, 139, 139, 6134,15475,20233,19771,20107, 6133,20399, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 140,14248,19717, 531,16619, 140,14248, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,15558, 139, 139, 8334,14350,15559,14248, 17463, 7135,19772, 8631,14248, 139, 139, 139, 139, 139, 139, 139, 140,19776,20952, 531,19744, 6136,20835,19350, 19350,19350,19350,19350,19350,19350,19350,19350, 140,18811, 18811,18811,18811,18811,18811, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 139,10694,10694,10694,10694,10694,10694,10694, 10694,10694, 139, 139, 139, 139, 139, 139, 139, 6137, 17499,17499,17499,15635, 6136,19777,15279,15279,15279,15279, 15279,15279,15279,15279,15279,10728,19781,20371,14336,12894, 14332, 140, 139, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,19494, 139, 139, 12865,12865,12865,12865,12865,12865,12865,12865,12865, 139, 139, 139, 139, 139, 139, 139,20782,15620,19559, 1617, 20240, 6139,15622,20078,14317, 784,15381,15382,19550,11782, 12896,15620, 1617, 6140,12896,20227,15622,19535,14317, 139, 139, 139,12896,19265,19265,19265,19265,19265,19265,19750, 15466, 1618,19266,11783,19424, 1618,14143,19753,19434,15383, 19554, 6140, 139, 139, 1618, 139, 139, 139, 139, 139, 139, 139, 139, 139,15467, 139, 4756,10611,15657,20409, 14318,19379,19782,19585,16341,14335, 139, 139, 139, 139, 139, 139, 139,19786,15384,14318,12911,14350, 6144,19767, 19354,19354,19354,19354,19354,19354,19468,15620,15657,19355, 19771, 1078,15622,15659,14317,19596, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,12913, 139, 4756,19755,12913,20258,21101,19937,15672, 21100,16460,19758, 139, 139, 139, 139, 139, 139, 139, 6145,15511,10728,20406,12894, 6144,14350, 784, 8846, 8847, 19813,12865,12865,12865,12865,12865,12865,12865,12865,12865, 16655,19831, 1078, 2866, 139, 139, 139, 139,15483, 139, 139, 139, 139, 139, 139, 139, 139, 139,10728, 139, 4756, 8848,19632,19632,19632,19632,19632,19536,15582,19942, 139, 139, 139, 139, 139, 139, 139,19422,11771, 5903, 19755,19553, 6149, 140, 898,15620,14092,19531,19758,19381, 15622,19755,14317,19996,19750,11772, 8849, 9662,11773, 140, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,10761, 139, 4756,14093,15657, 15583,19750, 1078, 1234,15659,19586,14335, 139, 139, 139, 139, 139, 139, 139, 6150,20423,14094,21143,15556, 6149, 19755,19556, 898,19384,14092,15620,19506,19760,19758,19947, 15622,14248,14317,14095,15392,19763,14248, 2866, 139, 139, 139, 139,15557, 139, 139, 139, 139, 139, 139, 139, 139, 139,19725, 139, 4756,19750,14093,19730,19750,12911, 19833,19766,19385,19753, 139, 139, 139, 139, 139, 139, 139,19837,16806,15657,14094,18732, 6153,18733,15659,19587, 19595,20261,15620,15390,19731,15657,19544,15622,19766,14317, 15659,14095,14335,18735, 2866, 139, 139, 139, 139,20082, 139, 139, 139, 139, 139, 139, 139, 139, 139,20543, 139, 4756,10694,10694,10694,10694,10694,10694,10694,10694, 10694, 139, 139, 139, 139, 139, 139, 139, 6154,20231, 19583, 140, 139, 6153,12896,19838,12865,12865,12865,12865, 12865,12865,12865,12865,12865,19741,19842,12911,15676, 1078, 19742, 2866, 139, 139, 139, 139,19603, 139, 139, 139, 139, 139, 139, 139, 139, 139,19750, 139, 4756,12896, 19519,15519,15677,12896,19753,19937,19952,19743, 139, 139, 139, 139, 139, 139, 139,14138,19941,15556,20248,15466, 6156,15657,20225,12913,16931,19507,15659,19435,14335,19423, 14248, 307,12896, 1617, 6157,14248, 140,12896, 2866, 139, 139,15557,21209,15467,19268,19268,19268,19268,19268,19268, 19268,19268,19268,12865,12865,12865,12865,12865,12865,12865, 12865,12865, 6157, 139, 139, 1618, 139, 139, 139, 139, 139, 139, 139, 139, 139,19588, 139, 139,15657,15657, 784, 2242,20048,15659,15659,14335,14335, 139, 139, 139, 139, 139, 139, 139, 3077,19589,18005,18005,18005, 6159, 19942,19426,12865,12865,12865,12865,12865,12865,12865,12865, 12865,19946, 2564,11847, 2243,21212,20431, 139, 139, 139, 139, 139,18404, 139, 139, 139, 139, 139, 139, 139, 139, 139, 776, 139, 139, 6160, 6160, 6160, 6160, 6160, 6160, 6160, 6160, 6160, 139, 139, 139, 139, 139, 139, 139,12913,13039,19427,17439,12913, 6159,12865,12865,12865, 12865,12865,12865,12865,12865,12865,20252,19871,20271,12911, 140,15502,19883,12913, 139, 139, 4103, 139, 139,19463, 139, 139, 139, 139, 139, 139, 139, 139, 139,15657, 139, 4756,12894,19590,15659,15503,14335, 7027,19947,19884, 14144, 139, 139, 139, 139, 139, 139, 139,19425,19951, 20265,21009,20020, 6163,19952,12865,12865,12865,12865,12865, 12865,12865,12865,12865,14145,19956,20239, 5712,15676, 1078, 140, 2866, 139, 139, 139, 139,19604, 139, 139, 139, 139, 139, 139, 139, 139, 139,19591, 139, 4756,12913, 15657,12911,15677,12913,20058,15659,20102,14335, 139, 139, 139, 139, 139, 139, 139, 6164,20814,15657,19597,15502, 6163,19428,15659, 140,14335,15519,19957,19464,10694,10694, 10694,10694,10694,10694,10694,10694,10694,19961, 2866, 139, 139, 139, 139,15503, 139, 139, 139, 139, 139, 139, 139, 139, 139,20185, 139, 4756,10694,10694,10694,10694, 10694,10694,10694,10694,10694, 139, 139, 139, 139, 139, 139, 139,19594, 140,20256,19555,15657, 6166,19750,12913, 19496,15659,15620,14335,19495,19592,19753,15622,15180,14317, 19273, 6167,19767,20432, 531, 2866, 139, 139,14318,16769, 19770, 139, 139, 139, 139, 139, 139, 139, 139, 139, 10694,10694,10694,10694,10694,10694,10694,10694,10694, 6167, 139, 139,15181, 139, 139, 139, 139, 139, 139, 139, 139, 139,15657, 139, 2864,19772,19200,15659,20015,14335, 19972,19977, 140,19775, 139, 139, 139, 139, 139, 139, 139,19976,19981,20042,21099,20058, 6171,10694,10694,10694, 10694,10694,10694,10694,10694,10694,20062,11742,19499,21215, 19201,19777, 7168,21218, 2866, 139, 139, 139, 139,19780, 139, 139, 139, 139, 139, 139, 139, 139, 139,19782, 139, 2864,19787, 507, 784, 1079, 7169,19785, 8334,20102, 19790, 139, 139, 139, 139, 139, 139, 139, 6172,18773, 20106,18774,20084, 6171,19797, 531,15657,19498,16980,20365, 19582,15659,19801,14335,11749, 307,20189,18776, 1080,14332, 140, 2866, 139, 139, 139, 139,20001, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,16948, 16948,16948,16948,16948,16948,16948,16948,16948, 139, 139, 139, 139, 139, 139, 139,19802,19767,19813, 1572,19624, 6176, 6392,12866,19805,19770,19816,10694,10694,10694,10694, 10694,10694,10694,10694,10694,19817, 1234,20271, 139, 139, 139, 139, 139,19821, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5705, 139, 139,16959,16959,16959,16959, 16959,16959,16959,16959,16959, 139, 139, 139, 139, 139, 139, 139, 6177,15540,10728,19833,19838, 6176, 140,20037, 17641,21005,18179,19836,19841,19530,19530,19530,19530,19530, 19530,19530,19530,19530, 140, 139, 139, 139, 139, 139, 20434, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 203, 139, 139, 139, 139, 139, 139, 6183, 6183, 6183, 6183, 6183, 6184, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 6182, 6182, 6182, 6182, 6182, 6182, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,15703,15703,15703,15703,15703,15703,15703,15703, 15703,20095, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183,20271, 7624, 140,19745,19745,19745,19745,19745,19745, 19745,19745,19745,10694,10694,10694,10694,10694,10694,10694, 10694,10694,17133, 140,21006,10694,10694,10694,10694,10694, 10694,10694,10694,10694, 140, 6183, 6183, 6183, 6183, 6183, 6183, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,19518, 148, 149, 139, 139, 139,11744,11743, 139, 139, 139,16527, 8334, 8334,19500, 140,19920,20142, 20142,20143,21222,19925, 4142, 139, 139, 139, 139, 139, 139,13392,11745,16528,16980,19744, 162,20362,13392,20767, 1275, 8367, 307,19843,19853,16529, 140, 140, 8367, 531, 19926,19846,19857, 140, 139, 139, 139, 139, 139, 139, 140, 148, 149, 139, 139, 139, 782,19858, 139, 139, 139,10009,17579,19937, 1617,19861,12911,20098,10009,19370, 16530,19940, 4142, 139, 139, 139, 139, 139, 139, 335, 20027,20027,20028,19517, 162,10694,10694,10694,10694,10694, 10694,10694,10694,10694,14332, 140, 1618, 7624, 7624,16361, 20262, 2023, 139, 139, 139, 139, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 5513,19263,17133,19890, 1606, 20433,19593, 6187, 6187, 6187, 6187, 6187, 6188,15657, 140, 140,12941, 531,15659,21225,14335,19745,19745,19745,19745, 19745,19746,19747,19747,19747,16811, 7624, 7624, 7624, 6187, 6187, 6187, 6187, 6187, 6187, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 6189,20180,17143,17143,19896,19942, 20436, 5515, 5515, 5515, 5515, 5515, 5516,19945, 140, 140, 140,20440, 531,19947,19630,19630,19630,19630,19630,19630, 12896,19950,20224,19631,20186,12896,20188, 140, 5515, 5515, 5515, 5515, 5515, 5515, 375, 140,19632,19632,19632,19632, 19632,19632,19632,19632,19632, 6191, 6191, 6191, 6191, 6191, 6191, 6191, 6191, 6191, 150,11829, 140, 140, 293,19649, 20271, 6191, 6191, 6191, 6191, 6191, 6192,19747,19747,19747, 19747,19747,19747,19747,19747,19747,19897,19897,19897,19897, 19897,19897,19897,19897,19897,20354,20436,20350, 6191, 6191, 6191, 6191, 6191, 6191, 6194, 6194, 6194, 6194, 6194, 6194, 6194, 6194, 6194, 4821,21017, 531,12865,21232, 140,14317, 6194, 6194, 6194, 6194, 6194, 6195,19765,19765,19765,19765, 19765,19765,19765,19765,19765,19952,19957,19962,19972,20206, 20809,15617,19760,19955,19960,19965,19975, 6194, 6194, 6194, 6194, 6194, 6194, 6197, 6197, 6197, 6197, 6197, 6197, 6197, 6197, 6197,15617,12865,20355,14317,20389,10000,14133, 6197, 6197, 6197, 6197, 6197, 6198,19800,19800,19800,19800,19800, 19800,19800,19800,19800,19977,20030,14317,18193,18193,18193, 14335,19797,19980, 7624, 7624, 7624, 6197, 6197, 6197, 6197, 6197, 6197, 6201, 6201, 6201, 6201, 6201, 6201, 6201, 6201, 6201, 4830, 7624,17155,17155,19905,12137, 2023, 6201, 6201, 6201, 6201, 6201, 6202, 139, 140, 140, 140,19982, 531, 19190,19200,17133,20015, 139, 1606,19985,15617,20008, 307, 20144,19767,20144,20359, 140, 6201, 6201, 6201, 6201, 6201, 6201, 6204, 6204, 6204, 6204, 6204, 6204, 6204, 6204, 6204, 20017,14317,21235, 531, 139,19201, 1275, 6204, 6204, 6204, 6204, 6204, 6205,19642,19897,19897,19897,19897,19897,19898, 19899,19899,19899,20145,19643,19643,19643,19643,19643,19643, 19643,19643,19643,20058, 6204, 6204, 6204, 6204, 6204, 6204, 149,20061,19249,17301,18341, 140,19635,20036, 3077,20011, 20064, 6207, 6208, 6209, 6210, 6210, 6210, 6210, 6210, 6210, 140,17302,18342,15654,19636,20390, 2564, 4151, 4151, 4151, 4151, 4151, 4152,19856,19856,19856,19856,19856,19856,19856, 19856,19856,18311,19223,20057,19637,20810,14335,21243,19853, 1617, 7624, 7624, 7624, 4151, 4151, 4151, 4151, 4151, 4151, 6211, 6211, 6211, 6211, 6211, 6211, 6211, 6211, 6211, 4839, 7624,17171,17171,19914,19029,15629, 6211, 6211, 6211, 6211, 6211, 6212, 1618, 140, 140, 140,20102, 531, 784, 2981, 19890,19995,15630,19649,20105,15631,14332, 307,19997,19998, 19997,19998, 140, 6211, 6211, 6211, 6211, 6211, 6211, 6214, 6214, 6214, 6214, 6214, 6214, 6214, 6214, 6214, 7624, 7624, 20441,20441, 2982,20081, 1572, 6214, 6214, 6214, 6214, 6214, 6215,10694,20445,17341, 898,17342,12894,20009,17143,19896, 1234,19999, 1234,21246,20000, 307, 307, 784, 3636,20021, 140, 140, 6214, 6214, 6214, 6214, 6214, 6214, 6217, 6218, 6219, 6220, 6220, 6220, 6220, 6220, 6220,17343, 3008,20235, 20050,20696,10694,20044, 4158, 4158, 4158, 4158, 4158, 4159, 19517, 3637, 3077, 140,20292,19748, 3608,18913,18913,18913, 18913,18913,18913,18913,18913,18913,20435,20490,11748, 1606, 2564, 4158, 4158, 4158, 4158, 4158, 4158, 2438, 140, 6221, 6221, 6221, 6221, 6221, 6221, 6221, 6221, 6221, 3493,14117, 140,18201,18201,18201,20491, 4156, 4156, 4156, 4156, 4156, 4157,19899,19899,19899,19899,19899,19899,19899,19899,19899, 19906,19906,19906,19906,19906,19906,19906,19906,19906, 7168, 12845,17301, 4156, 4156, 4156, 4156, 4156, 4156, 6222, 6222, 6222, 6222, 6222, 6222, 6222, 6222, 6222, 4852, 7624,17302, 140, 531,20229, 7169, 6222, 6222, 6222, 6222, 6222, 6223, 12896,20250,20083,20191,20010,12896, 1617, 898,17155,20034, 18311,12913, 140,12865,20766, 307,12913,20073,20073,20074, 140, 6222, 6222, 6222, 6222, 6222, 6222, 6225, 6225, 6225, 6225, 6225, 6225, 6225, 6225, 6225, 7624, 7624, 1618,20446, 434, 3663,20107, 6225, 6225, 6225, 6225, 6225, 6226, 307, 20450,20366,20768,18404, 140,17463,19905,17171, 257, 4324, 12865,14332, 307, 307, 307,14133,20151, 140, 140, 140, 6225, 6225, 6225, 6225, 6225, 6225, 6228, 6229, 6230, 6231, 6231, 6231, 6231, 6231, 6231,17439,16360,18212,18212,18212, 10727,20087, 4166, 4166, 4166, 4166, 4166, 4167,19906,19906, 19906,19906,19906,19907,19908,19908,19908,19908,19908,19908, 19908,19908,19908,19908,19908,19908,12911, 2696,16361, 4166, 4166, 4166, 4166, 4166, 4166, 6232, 6232, 6232, 6232, 6232, 6232, 6232, 6232, 6232, 3505, 7624,21254, 2697,21257,21070, 15617, 4164, 4164, 4164, 4164, 4164, 4165, 434,17512, 2698, 20264,17512,20357,20195, 329,19914, 8884, 329, 307,20097, 140,20532, 307, 140,14317, 257,20190, 140, 4164, 4164, 4164, 4164, 4164, 4164, 6233, 6233, 6233, 6233, 6233, 6233, 6233, 6233, 6233, 4866,20150, 516, 140, 8105,20533, 531, 6233, 6233, 6233, 6233, 6233, 6234,19915,19915,19915,19915, 19915,19915,19915,19915,19915,19915,19915,19915,19915,19915, 19916,19917,19917,19917,20271, 1275,20422, 6233, 6233, 6233, 6233, 6233, 6233, 6236, 6236, 6236, 6236, 6236, 6236, 6236, 6236, 6236,12913,10612,20249,16460,20397,12913,21008, 6236, 6236, 6236, 6236, 6236, 6237,19917,19917,19917,19917,19917, 19917,19917,19917,19917,17184,17184,17184,17184,17184,17184, 17184,17184,17184,20197,10612,10613, 6236, 6236, 6236, 6236, 6236, 6236, 6239, 6240, 6241, 6242, 6242, 6242, 6242, 6242, 6242,20141,20141,20141,20141,20141,20543, 434, 4177, 4177, 4177, 4177, 4177, 4178, 1379, 8111,10613,20547,21267,12911, 20156, 1617, 1275,14350,20155, 257, 1044,20076, 464,20076, 3742, 3742, 140,20091,20152, 4177, 4177, 4177, 4177, 4177, 4177, 6243, 6243, 6243, 6243, 6243, 6243, 6243, 6243, 6243, 3521,10614,20260, 1618,20173,20543,20184, 4175, 4175, 4175, 4175, 4175, 4176, 270,20089, 4410,20547,20787, 531,19748, 20077,18913,18913,18913,18913,18913,19749,18910,18910,18910, 2053,20312,20090, 4411, 4175, 4175, 4175, 4175, 4175, 4175, 139, 139, 140, 139, 836, 139, 139, 139, 139, 139, 139, 139,13392, 139, 139, 6244, 6244, 6244, 6244, 6244, 6244,20163, 8367,16768, 6245, 139, 139, 139, 139, 139, 139,20348, 140,21278, 140,21045, 572, 531,20115,20115, 20115,20115,20115,20115,20115,20115,20115,16769,21278,14318, 8358, 1078,10009, 5905, 139, 139, 139, 139, 139, 1078, 139, 163, 139, 139, 139, 139, 139, 139, 139,13392, 344, 139, 6247, 6247, 6247, 6247, 6247, 6247,20543, 8367, 20368, 6245, 139, 139, 139, 139, 139, 139, 5906, 140, 14332, 140, 531, 345,19748,20376,18910,18910,18910,18910, 18910,18910,18910,18910,18910,14332,21103, 8358,21283,10009, 21283, 139, 139, 139, 176, 139, 139, 140, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 203, 139, 139, 139, 139, 139, 139, 6183, 6183, 6183, 6183, 6183, 6184, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 6182, 6182, 6182, 6182, 6182, 6182, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 5570,19354,19354, 19354,19354,19354,19354, 6253, 6253, 6253, 6253, 6253, 6254, 20115,20115,20115,20115,20115,20116,20117,20117,20117, 1275, 14117,21283,14318,19130, 1275,18240,18240,18240,18240,18240, 18240, 6253, 6253, 6253, 6253, 6253, 6253, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 140,20424,20424,20425, 20885,12845,20193, 6255, 6255, 6255, 6255, 6255, 6256,20117, 20117,20117,20117,20117,20117,20117,20117,20117, 140,16788, 8884,20271, 140, 464, 5218,20005,20005,20005,20005,20005, 6255, 6255, 6255, 6255, 6255, 6255, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4198, 1572,21007,20194, 5219, 20174, 8105, 4197, 4197, 4197, 4197, 4197, 4199, 270,20181, 12865,20784, 5221, 140, 1234,17475,17475,17475,17475,17475, 17475,17475,17475,17475,20025,20025,20025,20025,20025, 4197, 4197, 4197, 4197, 4197, 4197, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 4194, 2955, 2023,21278,15634,21278,20863, 1572, 4194, 4194, 4194, 4194, 4194, 4195,12865,20361,20230, 3742,20207,14133, 1606,12896,20478,14147,14332, 1234,12896, 20490,11847,19207,19207,19207,19207,19207,19207, 4194, 4194, 4194, 4194, 4194, 4194, 6265, 6265, 6265, 6265, 6265, 6265, 6265, 6265, 6265, 2023, 4410,14117,20400,20491,12865,20369, 6265, 6265, 6265, 6265, 6265, 6266,14350,14332,21278, 140, 13039, 1606, 4411,14336,19028,19028,19028,19028,19028,19028, 19028,19028,19028,12894,20092, 1078,12845, 6265, 6265, 6265, 6265, 6265, 6265, 139, 139, 140, 139, 836, 139, 139, 139, 139, 139, 139, 139,12865, 139, 139,20331,20788, 20211,20234,20543, 8914,13392,19029,14193, 139, 139, 139, 139, 139, 139, 139, 8367,21004,19812,20192,21278, 572, 21132, 307,20271,18341, 784, 5021, 140,19017,19017,19017, 19017,19017,19017,19017,19017,19017, 8136, 139, 139, 139, 6392,18342,20404, 898,10009,20372, 8110,15638, 140,20035, 14350,20038,20038,20038,20038,20038,20038,14332, 5022, 6270, 1225, 1225,19223, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5705, 1225, 4935,20196, 2564, 5048, 8111, 1572, 140,20401,20403,20548, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14350,14350,20047,20552, 5750, 6290, 1234,19932,19933, 19934,19935,19935,19935,19935,19935,19935,12911,20051,20052, 20051,20052,20066, 8113, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1376, 1225, 4935, 140, 140, 3077,20259, 1078,20635, 5904,20553, 14226, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6291, 1377, 20557,20053, 2564, 6290,20054,20002,20002,20002,20002,20002, 20002, 1042,20783,20548,20003,10727, 1078,10727,20865, 140, 5905, 4937, 1225, 1225, 1225, 1225, 1572, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10727, 1225, 1225, 2696, 15379,20183,20339,20553, 1234,20407,17287,15675, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5906,20312,14350, 140, 2697, 6293, 1617,20004,20004,20004,20004,20004,20004,20004,20004, 20004, 2698,20072,20072,20072,20072,20072,20072, 1234, 1225, 1225, 1225, 1225, 1572, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1618, 1225, 1225,10694,20182, 3077,20811, 21056, 1234,21298,20411,19517, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6294,14350, 140,21298, 2564, 6293, 1617,20005, 20005,20005,20005,20005,20005,20005,20005,20005, 1078,19265, 19265,19265,19265,19265,19265, 1234, 1225, 1225, 1225, 1225, 1572, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1618, 1225, 1225,20855, 140,20558,11746,18700, 1234,20558, 782,11747, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10727, 20562,10727, 8358,21339, 6296,17481,17481,17481,17481,17481, 17481,17481,17481,17481,12865,12865, 6297,10768,14336,21339, 10727,14336, 1234, 1225, 1225,20417,20022,20022,20022,20022, 20022,20022,20022,20022,20022,17490,17490,17490,17490,17490, 17490,17490,17490,17490, 6297, 1225, 1225, 2023, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,20345, 1225, 4935, 20209,12865,12865,21131,18179, 1606,14133,14133,15617, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140,21130,20213, 531, 21339, 6304,20346,20023,20023,20023,20023,20023,20023,20023, 20023,20023,14317,10727, 140,10727,10727,15617,10727, 4937, 1225, 1225, 1225, 1225, 2023, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10727, 1225, 4935,10727,10727, 1070, 10727,14317, 1606, 5904,12865,10727, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6305,21072,20864,19635, 455, 6304,10727, 20024,20024,20024,20024,20024,20024,20024,20024,20024,20341, 21298,20337, 1071,21298,19636, 5905, 4937, 1225, 1225, 1225, 1225, 2023, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12865, 1225, 4935,20414,19637,14133,20527,20892, 1606, 20208,20157,20532, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5906,20271,21022,20418,21298, 6309,20563,20025,20025,20025, 20025,20025,20025,20025,20025,20025,19536,20567, 1078,20533, 10727,21021,10727, 4937, 1225, 1225, 1225, 1225, 2023, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15671, 1225, 4935,10727,10694, 1572,21298,20563, 1606, 7624,12865,20396, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6310,14350,20312, 21353, 1234, 6309,20000,20026,20026,20026,20026,20026,20026, 17499,17499,17499,17499,17499,17499,17499,17499,17499, 140, 4937, 1225, 1225, 1225, 1225, 2023, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12865, 1225, 4935, 3077,14336, 14133,20786,21048, 1606,20568,20210,16768, 1225, 1225, 1225, 1225, 1225, 1225, 1225,20349,20572, 2564, 1572,20054, 6313, 20583,20029,20029,20029,20029,20029,20029,20029,20029,20029, 16769,20588, 1078, 140,10727, 1234,10727, 4937, 1225, 1225, 1225, 1225, 2023, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,20380, 1225, 4935,10727,21134, 531,20778,20606, 1606,20589,12865,20606, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6314,20593,21356,20610, 531, 6313,20611,20049,20049, 20049,20049,20049,20049,20049,20049,20049,10760,20618,20338, 20385,10727,15654,10727, 4937, 1225, 1225, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12865, 1225, 4935,10727, 307,14133,21359,14335, 2564, 140,20212, 20636, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6392,20271, 15617,20640,15654, 6316,15654,10761, 8358,20254,20352,20039, 20039,20039,20039,20039,20039,12913,20381, 6317,20040,17512, 12913, 4937, 1225, 1225,14317, 329,14335,10727,14335,10727, 5705, 140,21011,20641, 531,20137,20137,20137,20137,20137, 20137,20137,20137,20137,20645, 6317, 1225, 1225,10727, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 1225,20137,20137,20137,20137,20137,20138,20139,20139,20139, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15666,18426,18426, 18426,20340, 6319,20139,20139,20139,20139,20139,20139,20139, 20139,20139,20849, 140,15667, 531,21366,15668,14350,20836, 1234, 1225, 1225, 1225, 1225, 1078, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16527, 1225, 1225, 6320, 6320, 6320, 6320, 6320, 6320, 6320, 6320, 6320, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16757,16528, 531, 140,20347, 6319, 20646,19236,19236,19236,19236,19236,19236,16529,10694, 1078, 329,20650, 1078,21372,15617, 8358, 140, 1234, 1225, 6300, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,20293, 1225, 4935,20436,20636, 8334,14317,20641, 2564,20661,20158,20439, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16799,20666, 531,20068,20382, 6323,17954,20055,20055, 20055,20055,20055,20055,20055,20055,20055,21378,11746, 140, 21018,15654,20069,11747, 4937, 1225, 1225, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,20255, 1225, 4935, 3077,20833,12913,14335,20271, 2564,20667,12913, 15654, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6324,20671, 2564, 531,20392, 6323,19937,20056,20056,20056,20056,20056, 20056,20056,20056,20056,14335,19941, 1078,20828,20770,20770, 20771, 4937, 1225, 1225, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15638, 1225, 4935, 1572, 434,20367, 140,19937, 2564,20750,14332,18610, 1225, 1225, 1225, 1225, 1225, 1225, 1225,21384,20754, 1234, 257,15617, 6326,19241,19241,19241,19241,19241,19241, 784,15381,15382, 12894,15654,20358, 1617, 6327, 2023,20887,20394, 4937, 1225, 1225,20889, 3077,14317,20075,20075,20075,20075,20075,20075, 20075,20075,20075, 1606,15483,14335, 1078,20800,20312,18611, 2564,15383, 6327, 1225, 1225, 1618, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15675, 1225, 1225,21060,10611, 20402,20850, 1078,20750,20750,14350,20168, 1225, 1225, 1225, 1225, 1225, 1225, 1225,15462,20754,15384,16543,15498, 1978, 20750,12896, 784, 8846,20171,12913,12896, 6331,20226,20750, 12913,20754,20251,17439,15639, 1078,20312, 1234, 1225, 1225, 139, 139,20373, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139,20441, 8848,14332,15640,21046, 20159, 9654,20750,20444, 139, 139, 139, 139, 139, 139, 139, 1617, 1078,20860, 5903, 1078, 589,18642,20353, 6334, 16528,20161,16340,16340,16340,16340,16340,16340,16340,16340, 16340, 8849,16529, 9656, 146, 139, 139, 139, 329,20755, 12911, 434,20760, 1618, 140, 140, 6334, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 257, 2012, 2012,20388,16777,15519,20429,20890,16530, 9657,18643, 19635, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1617,16527, 19536, 140,17808, 2501,10727, 531,10727,14317,19636,20079, 20079,20079,20079,20079,20079, 784, 8846,20172,20080,16528, 20446, 2012, 2012, 2012,20451,10727,21147,16819,20449,19637, 1618,16529,20454, 6339, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012,17850, 2012, 2012, 8848, 17431,14335,11757,20160,20755, 1078,15654,11758, 2012, 2012, 2012, 2012, 2012, 2012, 2012,20759,16530, 5903,14318,20393, 2501,20140,20140,20140,20140,20140,20140,20140,20140,20140, 14335, 5712,20750, 3954, 8849,20773, 4633,20773, 2012, 2012, 2012,21096, 1275, 3954,20416, 6341, 1597, 1597, 8334, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20058, 1597, 5683, 1572,19630,19630,19630,19630,19630,19630,20497,16810, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20383,20774, 1234, 140,20068, 6363, 140,20141,20141,20141,20141,20141,20141, 20141,20141,20141,16811,21390,20755, 140,21393,20750,20069, 5685, 1597, 1597, 1597, 1597, 1275, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20204, 1597, 1597,20924,17341, 20833,20812, 531,20205,12865,20750,16810, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20384, 9654, 8334,20312,20755, 6365, 16459,16459,16459,16459,16459,16459,16459,16459,16459,20759, 16811, 6366,20461,17343,15654, 9655,17964, 1606, 1597, 1597, 20464, 1275,20387,20165,10612,20465,14318, 9656, 140,20750, 21050,12865,20765,20468,15617,21399,14133,16763,14335, 6366, 1597, 1597,20356, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20543, 1597, 5683,20162,20166, 8334,14317,20765, 20546,20760, 9657,10620, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 6367,20764,16788,20167,15617, 6363,17954, 784,15381, 15382,20360,20543,11652, 307,20548, 140,20858,16767, 140, 20546,10614, 1078,20551, 5685, 1597, 1597, 1597, 1597,14317, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8334, 1597, 5683,15383,12866, 8334,21445,20856,20859,20169,20866, 15676, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20408,20503, 10611,20750,15466, 6373,17954, 898, 898,14092,14092,16541, 20228, 140,20754,14350,15677,12896, 140,15384,20947, 531, 12896, 5685, 1597, 1597, 1597, 1597,15467, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20553, 1597, 5683,14093, 14093, 8334,20845,20312,20556,10727, 140,10727, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 6374,20415,14094,14094,15502, 6373,20497,20558, 898,20176, 8068,10727,20253, 307,21047, 20561,20873,12913, 140,14095,14095,20925,12913, 5685, 1597, 1597, 1597, 1597,15503, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11757, 1597, 5683,15654, 8069,11758,16805, 140,20750,14250, 140,20391, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20754, 3954,20563, 8070,20058, 6377,20568, 898, 14335, 8068,20566, 3954, 8853,20573,20571,20062,21139,20350, 20940,21057, 8071,20576, 4644, 5685, 1597, 1597, 1597, 1597, 8334, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 20177, 1597, 5683, 8069,15542, 784, 1079,20312,21497,20866, 17964, 4627, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 6378, 20870, 8070, 140,15617, 6377, 531,17810, 784,15381,15382, 8853,20351,20583,20589, 898, 3962,14092,20927, 8071, 1080, 20586,20592, 5685, 1597, 1597, 1597, 1597,14317, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 139, 1597, 5683, 19748,15383,18910,18910,18910,18910,18910,18910,14093, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20594,20175,14336,10611, 20420, 6380, 6381, 140,20597,20178,14094,20179,20179,20179, 20179,20179,20179,20179,20179,20179,15384,20606,20611, 5685, 1597, 1597,20170,14095,20619,20609,20617, 140, 140, 6381, 1597, 1597,20622, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,19649, 1597, 1597,16830, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 3291, 329,14165,20636,20641, 6384,21488, 140,21155, 14166, 531,20639,20644,20215,20215,20215,20215,20215,20215, 20215,20215,20215, 329, 1606, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8334, 1597, 1597,18822,18822,18822,18822,18822,18822,18822,18822, 20646, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20649,17964, 19635,20651, 140, 6384,20661,21141, 307,20271, 1416,20654, 20847, 140,20664,20350,20385,20385, 7168,10768,19636, 7168, 14250, 1606, 1597, 1597, 1597, 1597,20430, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8334, 1597, 5683,19637, 7169,20775,21000, 7169,20929,10727,20846,21724, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8334,20503,15617,15654,15654, 6386, 6387,17852, 307,16770,16812,20667,20386, 140,16771, 16813,14318,15542, 1572,20670,17976,20672,19937, 5685, 1597, 1597,14317,14335,14335,20675,19940, 898, 140, 6387, 1597, 1597, 1234, 1598, 4304, 1597, 1597, 1597, 1600, 1600, 1597, 1597, 2036, 2538, 1600,20504,20504,20504,20504,20504,20504, 20504,20504,20504, 1600, 1597, 1597, 1597, 1597, 1597, 1597, 3008, 329, 307,21095, 2023, 3658,21086, 140,16859,16859, 16859,16859,16859,16859,16859,16859,16859,14317, 3608,18483, 18483,18483, 1606, 1606, 1597, 1597, 1597, 1597, 1597, 140, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8334, 1597, 1597,20504,20504,20504,20504,20504,20505,20506,20506, 20506, 1597, 1597, 1597, 1597, 1597, 1597, 1597,18179,17976, 20696,20750,15654, 2520,14249, 307, 6391, 307,20395,20753, 140, 140, 140, 329, 531,16809,12866,21736,14318, 140, 14318, 1606, 1597, 1597, 139, 139,14335, 139, 836, 139, 139, 139, 139, 139, 139, 139, 8334, 139, 139,20506, 20506,20506,20506,20506,20506,20506,20506,20506, 139, 139, 139, 139, 139, 139, 139, 329,17976,20750,20750,20755, 572, 140,18674, 307, 531,20753,20753,20758, 140,20513, 20513,20513,20513,20513,20513,20513,20513,20513, 139, 139, 139,10727,21104,21097,14141,20948, 6398, 3687, 3687, 3687, 3687, 3687, 3688, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 3687, 2564, 2555, 2555, 8334, 2555, 5712, 5024, 2555, 2555, 2555, 2555, 2555, 2555,20755, 2555, 2555,20755,20879, 8334,20886, 21071,20758,20790,20512,20758, 2555, 2555, 2555, 2555, 2555, 2555, 2555,21736,21741, 2023, 140,21741, 4339,20512,20426, 20426,20426,20426,20426,20426, 307,20760, 329,20427, 1275, 140, 1275, 1606, 140,20763, 2564, 2555, 2555, 2555, 2555, 140, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 20750, 2555, 2555,20750,19649,18863,18863,18863,20753, 8334, 13025,20753, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15180, 20750, 329,20031, 6392, 3682, 8334, 8334, 140,20753,17992, 20802,21160, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 2564, 2555, 2555,17992,17992, 784, 2981, 6418, 4346, 140, 307,15181,19200, 5705,20015, 140, 140,20085, 19642, 531, 3686, 3686, 3686, 3686, 3686, 3686, 3686, 3686, 3686,19643,19643,19643,19643,19643,19643,19643,19643,19643, 21741, 2982, 434, 3077,21736,20058,20866,20923,19201, 329, 20806,20785, 140,20061,20869, 140, 329, 307, 531, 1234, 257, 2564, 140, 3689,20891, 3686, 3686, 3686, 3686, 3686, 3686, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 20271, 5726,20513,20513,20513,20513,20513,20514,20515,20515, 20515, 8334, 3077,20515,20515,20515,20515,20515,20515,20515, 20515,20515,21044,20769,20769,20769,20769,20769,20769,20312, 2564,20521, 784, 3636,21010,20789, 329, 307, 307, 329, 307,17301, 140, 140, 1572, 140, 6419, 2555, 2555, 8334, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17302, 3697, 2555, 1234,20780, 329, 307, 3637, 7624, 7624,20521, 140, 4360, 2555, 2555, 2555, 2555, 2555, 2555,10694, 329, 18311, 140,21399, 4351, 1606, 140,21025,18228,20745, 6422, 20522,20522,20522,20522,20522,20522,20522,20522,20522, 140, 140, 2564, 2555, 2555, 3703, 2555, 2555, 139, 2555, 6423, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3699, 3697, 2555, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 4360, 2555, 2555, 2555, 2555, 2555, 2555, 4353, 4353, 4353, 4353, 4353, 4354, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 2564, 2555, 2555, 3703, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 2555, 2555, 20795, 2555, 2555, 3080, 2555, 2555, 2555, 2555, 2555, 2555, 3081, 2555, 2555,20522,20522,20522,20522,20522,20523,20524, 20524,20524, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 329, 329,19649, 2023, 2023, 3692, 140, 140,21736, 531, 531, 5755,20524,20524,20524,20524,20524,20524,20524,20524,20524, 1606, 1606, 2564, 2555, 2555, 2555, 2555, 2555,21165, 2555, 4352, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3090, 3697, 2555, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4358, 4357, 4357, 4357, 4357, 4357, 6424, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2564, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2555, 2555,21736, 2555, 5712, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 5218, 3697, 2555,18005,18005,18005,18005,18005,18005, 18005,18005,18005, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 20799,20799,20799,20799,20799, 3698, 5219,14317,20539,20540, 20541,20542,20542,20542,20542,20542,20542,21081,14317, 5221, 140, 2023,20919, 2564, 2555, 2555, 2555, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1606, 2555, 2555,18193,18193,18193,18193,18193,18193,18193,18193, 18193, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11739,21736, 21498,10694,21755, 6426, 6392, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999,21024,20039,20039,20039,20039,20039, 20039, 2564, 2555, 2555, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 5705, 2555, 2555, 7624, 1617,10727, 898,20271, 8358,20803,10000, 898, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 531,20820,20820,20821,18228, 6426,18201,18201,18201,18201,18201,18201,18201,18201,18201, 21014, 140, 1618, 7624, 531,21015, 3663, 3077, 2564, 2555, 2555, 5048,20587,20587,20587,20587,20587,20587,20587,20587, 20587,21073,16341,18228, 4324, 2564,11758, 6427,20583, 5750, 307, 464, 6428, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 464, 2555, 2555, 329, 307, 3077,16360,20832,12137, 140,20823,20913, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 7624,21758, 270, 3077, 2564, 6438, 18212,18212,18212,18212,18212,18212,18212,18212,18212,14317, 270, 6439,21079,16361,20745, 2564,20893, 2564, 2555, 2555, 14317, 307, 140, 531,18849, 6440, 140,20746,20746,20746, 20746,20746,20746,20746,20746,20746, 140,20271,20312, 6439, 2555, 2555,20861, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,21152, 2555, 2555,20746,20746,20746,20746,20746, 20747,20748,20748,20748, 2555, 2555, 2555, 2555, 2555, 2555, 2555,21016,21049,14336, 1379,18341, 6438,20748,20748,20748, 20748,20748,20748,20748,20748,20748, 1044,20781, 6439,20791, 20792,20791,20792,18342, 2564, 2555, 2555,20665,20665,20665, 20665,20665,20665,20665,20665,20665,10694,21039,20804, 140, 20922,21761,11747,20661,19223, 2023, 6439, 2555, 2555,17301, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558,20793, 1606,20312,20794,21128,17302,19029,21153, 18849, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 329,20883, 20883,20884, 140, 5043, 140, 531, 6441, 531,18311,18426, 18426,18426,18426,18426,18426,18426,18426,18426,21055, 3962, 1275, 2564, 2555, 2555, 2555, 2555, 2555,21140, 2556, 3704, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4363, 4362, 4362, 4362, 4362, 4362, 6442, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2564, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2555, 2555, 140, 2556, 5730, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3699, 3700, 2558,21155, 1617, 140, 1376,21151, 531, 1617, 9211,21158, 4364, 2555, 2555, 2555, 2555, 2555, 2555,18341, 20839,20839,20840,21768, 3702,20805, 1377,20772,20772,20772, 20772,20772,20772,20772,20772,20772, 1618,18342, 1042, 140, 21145, 1618, 2564, 2555, 2555, 3703, 2555, 2555, 1572, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,19223, 2555, 2555,16360,20921, 784, 5021,17447, 1234, 8884, 9703,20944, 2555, 2555, 2555, 2555, 2555, 2555, 2555,20843, 9703, 140, 20930, 531, 3682,12866,20002,20002,20002,20002,20002,20002, 8110, 6446,20950,16361, 1078,14336, 140, 5022, 8105,20862, 2564, 2555, 2555, 2555, 2555, 1572, 2555, 5712, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2564, 2555, 2555,21127,21542, 14318,21273, 8111, 1234, 5904,10672,20953, 4360, 2555, 2555, 2555, 2555, 2555, 2555,14336, 9703,14336,21405,20815, 4366, 15439,17286,17286,17286,17286,17286,17286,17286,17286,17286, 17589,20824,20825,20824,20825,20939, 5905, 2564, 2555, 2555, 139, 139, 1572, 139, 836, 139, 139, 139, 139, 139, 139, 139,21102, 139, 139, 1078,20834, 3077, 464, 140, 1234,20068, 5905,16830, 139, 139, 139, 139, 139, 139, 139,20896, 7624,21028,20826, 2564, 572,20827,21135,20069, 20914,21404,20548,19935,19935,19935,19935,19935,19935,19935, 19935,19935,14117, 270, 139, 139, 139, 5906, 140, 140, 20833, 6448, 139, 139, 140, 139, 6471, 139, 139, 139, 139, 139, 139, 139,20932, 139, 139,14117, 140, 140, 14248,21421, 1617,12845,21406,15542, 139, 139, 139, 139, 139, 139, 139,20838,20838,20838,20838,20838, 4405,18483, 18483,18483,18483,18483,18483,18483,18483,18483,12845,21774, 14317,20933,21090,15698, 1618,21480, 139, 139, 139, 139, 139,14317, 148, 6473, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139,10612, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139,14336,14336, 140, 3742,14250,20271,20853,20894,14318, 139, 139, 139, 139, 139, 139, 139, 140, 7624,20312,10613,21732, 589,20882, 20882,20882,20882,20882,21001,19935,19935,19935,19935,19935, 20749,19932,19932,19932, 4410,21443, 146, 139, 139, 139, 1275,21002,21053,14317,21003, 6474, 140,21054,14248,21126, 21133,10614, 4411,21030,14317,21085,21098, 531, 590, 139, 139,15642, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 139, 139, 6493, 6494, 6495, 6496, 6496, 6496, 6496, 6496, 6496, 139, 139, 139, 139, 139, 139, 139, 536, 536, 536, 536, 536, 537, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 139, 139, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139,21780, 139, 139, 139, 139, 139, 139, 139, 139, 139, 315, 313, 139, 6497, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 6498, 5805, 139, 139, 139, 139, 139, 329, 6498, 6498, 6498, 6498, 6498, 6499, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 139, 139, 139, 322, 6498, 6498, 6498, 6498, 6498, 6498, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 6500, 6501, 6501, 6501, 6501, 6501, 6501, 6501, 6501, 6502,21219,12866, 8136, 531,14317, 21117, 6501, 6501, 6501, 6501, 6501, 6503, 140,12866,21082, 14317,14335, 8136, 1617,21154, 1070,21786,20950,17631,20841, 21063,20841,20816,20816,20816,20816,20816,20816, 6501, 6501, 6501, 6501, 6501, 6501, 6507, 6508, 6508, 6508, 6508, 6508, 6508, 6508, 6508, 3077,10612, 1618, 140, 140, 1071, 329, 6508, 6508, 6508, 6508, 6508, 6509,20951, 3291,14250,14165, 20954, 2564,20842,14143, 3742,15439,14166,21160,20955, 7168, 17632,21442, 2053,20271,21142,21163,10613, 6508, 6508, 6508, 6508, 6508, 6510, 315, 315, 315, 315, 315, 315, 315, 315, 315, 139, 7169,20903,16758,14317,21019, 4410, 315, 315, 315, 315, 315, 539,14248,12866,14317,21020,21032, 15542,10614,16759, 531,15559,16760, 4411,20946,20946,20946, 20946,20946,20946,20946,20946,20946, 315, 315, 6511, 315, 315, 315, 139, 139,20854, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3161, 3791, 139, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 139, 139, 139, 139, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4453, 4452, 4452, 4452, 4452, 4452, 6521, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4455, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 139, 139,14117, 139, 1078, 139, 139, 139, 139, 139, 139, 139,14317, 3791, 139, 18871,18871,18871, 3742,12866, 1078,21155,21084,14317, 139, 139, 139, 139, 139, 139, 139,20271,21159,12845,21792, 1572, 3792,21026, 3752,20776,20776,20776,20776,20776,20776, 21027,14250,21278,20777,14250, 140,21012,20089, 1234, 139, 139, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,20090, 6522, 139,14144,20931, 21013,21413, 8136, 1234,10612,18305,20949, 139, 139, 139, 139, 139, 139, 139,14317,12894,20851, 8136,14248, 3792, 140,14248,14145,15542,16767,14317,15542,21066,20312,21083, 20819,20819,20819,20819,20819,20819,10613, 139, 139, 139, 139, 6527, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 6528, 5142, 3077,21058,14250,21575,21417,14335, 6528, 6528, 6528, 6528, 6528, 6529,21059,20895,14250,21078,14335,21116, 2564, 898,10614,11654,12894,12894,12894,12894,12894,12894,12894, 12894,12894,20312,20900, 6528, 6528, 6528, 6528, 6528, 6528, 6531, 6532, 6532, 6532, 6532, 6532, 6532, 6532, 6532, 6533, 14248, 140,21051, 9655, 3663,21036, 6532, 6532, 6532, 6532, 6532, 6534,14248,14317,14250, 9656, 1617,15542,14250,15483, 14250,21033, 4324,15194,14317, 1078,21052,20079,20079,20079, 20079,20079,20079, 6532, 6532, 6532, 6532, 6532, 6532, 6536, 6537, 6537, 6537, 6537, 6537, 6537, 6537, 6537, 1618,16527, 9657,14317,21278,21795,16764, 6537, 6537, 6537, 6537, 6537, 6538,14248,14317,21034,14317,14248,15542,14248,21087,16528, 15542,21035,15542, 140,21092,14317,12911,21037, 4455,20901, 2696,16529, 6537, 6537, 6537, 6537, 6537, 6539, 6542, 6543, 6543, 6543, 6543, 6543, 6543, 6543, 6543, 5852,10612, 9655, 2697,21080, 1078,21109, 6543, 6543, 6543, 6543, 6543, 6544, 14317, 9656, 2698,14335,21489,21590,16530,14317,21088,21165, 16767,14317,20899,21112,14335,11653,14250,21168,14317,21278, 10613, 6543, 6543, 6543, 6543, 6543, 6543, 6545, 6546, 6546, 6546, 6546, 6546, 6546, 6546, 6546, 9657,20920,14335,21031, 14335,21110,20904, 6546, 6546, 6546, 6546, 6546, 6547,14335, 531,14335,14249,21801,21160,10614, 5904,20796,20796,20796, 20796,20796,20796,14248, 8884,21164,20797,19567,15542,19605, 6546, 6546, 6546, 6546, 6546, 6548, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5905, 139, 139, 3742, 784,15381,15382, 8105, 1606,21111,18327,21170, 139, 139, 139, 139, 139, 139, 139,21173,15582,10727, 20902,14250, 4468,14335,16788, 6593,16830,21626, 6553,19568, 20852,19606, 140, 5906,14335,20089,15383,20936,20934, 140, 4455, 139, 139, 6554, 6555, 6555, 6555, 6555, 6555, 6555, 6555, 6555, 5154,20090,10611,21808,14335, 1078,21422, 6555, 6555, 6555, 6555, 6555, 6556,10761,21113,14335,14248,20937, 15583,15384,21481,15542,20851,12894,12894,12894,12894,12894, 12894,12894,12894,12894,21283,21038, 6555, 6555, 6555, 6555, 6555, 6555, 6558, 6559, 6559, 6559, 6559, 6559, 6559, 6559, 6559, 6560,21472,21868,20938, 531,14336,20845, 6559, 6559, 6559, 6559, 6559, 6561,20918,20918,20918,20918,20918,20918, 20918,20918,20798,20798,20798,20798,20798,20798,20798,20798, 20798,18882,18882,18882, 140, 6559, 6559, 6559, 6559, 6559, 6559, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,14317, 3791, 139, 140,21129,21091, 140, 19635, 1606,15679,21148,14317, 139, 139, 139, 139, 139, 139, 139,14335, 7624,19119,19119,19119, 3809,19636,20312, 140,21541,21115,14335,19932,19932,19932,19932,19932,19932, 19932,19932,19932,21446, 8110, 4455, 139, 139, 3799,19637, 140,21041, 6568, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139,21444, 3791, 139,21042,21728, 21065,21043, 8334,19635, 140,14335, 8111, 139, 139, 139, 139, 139, 139, 139,21175,16809,14335,21463, 140, 3809, 21114,19636,21178,20799,20799,20799,20799,20799,20799,20799, 20799,20799, 8136, 8112, 140,14335,21149, 4455, 139, 139, 3799, 8113,19637,21119, 2023,16809,14335, 8136, 6569, 246, 246,21553, 251, 449, 246, 246, 246, 140, 8931, 246, 246, 246, 1606,20882,20882,20882,20882,20882,20882,20882, 20882,20882,21871, 4494, 246, 246, 246, 246, 246, 246, 14335,14335,21121, 6392, 1275, 256,21122, 329, 307, 1078, 21734,14335,14335, 140,20807,20807,20807,20807,20807,20807, 20807,20807,20807, 257, 246, 246, 246, 246, 246, 6392, 251, 449, 246, 246, 246, 5705,21288, 246, 246, 246, 20808,20808,20808,20808,20808,20808,20808,20808,20808,14318, 531, 4494, 246, 246, 246, 246, 246, 246, 454, 140, 1572, 5705, 531, 256,21094,12894,12894,12894,12894,12894, 12894,12894,12894,12894, 7168, 898,16527,14092, 1234, 9211, 17287, 257, 246, 246, 246, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 5885,15629,16528,21877, 7169,21185, 21473, 6579, 6579, 6579, 6579, 6579, 6580,21188,16529,14093, 20915,15483,15630,14335,20898,15631,20817,20817,20817,20817, 20817,20817, 531,21123,14335,20818,10727,14094, 6579, 6579, 6579, 6579, 6579, 6579, 446,17579,21543, 3077,16527,21283, 21881,20927,21278,16530,14095, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 253, 2564,21165,21170,16528, 1078, 1078, 6581, 6581, 6581, 6581, 6581, 6582,21169,21174,21278, 16529,18610,12894,12894,12894,12894,12894,12894,12894,12894, 12894, 140, 531,11779,21667,10727,21278,21298, 6581, 6581, 6581, 6581, 6581, 6581, 2648,20897, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493,16530,17581,21475,14335,21185, 21190,16806, 4493, 4493, 4493, 4493, 4493, 4495,15483,14335, 21189,21194,21885,18611, 7624,21118, 531,12894,12894,12894, 12894,12894,12894,12894,12894,12894,21664, 8334, 8334, 4493, 4493, 4493, 4493, 4493, 4493, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 4490, 3191,21416, 140,18898,18898,21190, 21195, 4490, 4490, 4490, 4490, 4490, 4491,21193,21198, 140, 140,21418,21889, 531, 531,20822,20822,20822,20822,20822, 20822,20822,20822,20822,14188,20971,14249, 140, 4490, 4490, 4490, 4490, 4490, 4490, 265, 265, 3077, 272, 480, 265, 265, 265, 1078, 140, 265, 265, 265,21146,21146,21146, 21146,21146,21544, 8334, 2564,16800,14335,20929, 4528, 265, 265, 265, 265, 265, 265, 1617,21273,14335, 140,21303, 277,21893,16801,21268,21276,16802,20837,20837,20837,20837, 20837,20837,20837,20837,20837, 140,18849,21219, 265, 265, 265, 265,21273, 307, 307,21633,20548, 1618, 140, 140, 531, 1078, 1078,21277,20551, 278, 265, 265, 1617, 272, 480, 265, 265, 265,10727,21547, 265, 265, 265,20838, 20838,20838,20838,20838,20838,20838,20838,20838,21298,21298, 4528, 265, 265, 265, 265, 265, 265, 485, 1617, 8334, 1618, 1078, 277,22173, 140, 1078,12845,20548,12894,17430, 17430,17430,17430,17430,17430,17430,17430,17430,20552,18898, 265, 265, 265, 265,11757,11847, 307,21278,21339,11758, 1618, 140,21344,21150,21903,21281,21138, 278, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 5919,21278,22224, 21339,21294,21278,21298, 6604, 6604, 6604, 6604, 6604, 6605, 784, 8846, 8847,21282,13039,21278,21278,20880,20880,20880, 20880,20880,20880,21281,21578, 3742,20881,21282,21294,21278, 21298, 6604, 6604, 6604, 6604, 6604, 6604, 477, 1275,21278, 21282,20912,21465, 8334, 8848,22273, 1078,21281, 6606, 6606, 6606, 6606, 6606, 6606, 6606, 6606, 6606, 274,18497, 4410, 22283,21283, 5903,21268, 6606, 6606, 6606, 6606, 6606, 6607, 307, 9660,21287,21298, 1618, 140,21482, 4411,21283, 8849, 12911,12911,12911,12911,12911,12911,12911,12911,12911,21287, 21283, 6606, 6606, 6606, 6606, 6606, 6606, 2679,21286, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527,20858,20426, 20426,20426,20426,20426,20426, 4527, 4527, 4527, 4527, 4527, 4529,12894,12894,12894,12894,12894,12894,12894,12894,12894, 140, 1078,12894,12894,12894,12894,12894,12894,12894,12894, 12894,21485, 4527, 4527, 4527, 4527, 4527, 4527, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 4524, 3228,21399, 140, 21298,21288,21283,21350, 4524, 4524, 4524, 4524, 4524, 4525, 21286,14336,21292,16361,21283,14190,21288,21278, 784,15381, 15382,20970,21286,20972,21291,21281,21125,16218,14195, 1078, 21350, 4524, 4524, 4524, 4524, 4524, 4524, 291, 291,14191, 291, 6636, 291, 291, 291, 291, 291, 291, 291,21278, 291, 291,15383,22290, 784, 1083,21399,15666,21278, 140, 21282, 291, 291, 291, 291, 291, 291, 291,21464,21282, 10611,21278,16768, 4564,15667,14317,20911,15668, 140,21281, 21089,21278,21298, 784,15381,15382,14317,15384, 1084,21281, 21301, 291, 291, 291, 514, 514,16769, 514, 6645, 514, 514, 514, 514, 514, 514, 514, 146, 514, 514,12911, 4668, 1275,21487, 784, 8846, 8847,21298,15383, 514, 514, 514, 514, 514, 514, 514,15180,20910,21302, 140, 898, 4575,14092, 898,21505, 8068,10611, 784, 1079, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8848, 514, 514, 514, 6649,15384,16810,21303,21420,14335, 531,21303,15181, 21314,21120,21312,14093,21314, 5903, 8069,14335,20848,21313, 1080,21318,21317,20845, 9660,21593,21967,16811,21319,21298, 21298,14094, 8849, 1770, 8070,21298,21322,21301, 139,21298, 1771,21302,20916,21301,21339,21339,21144,21339,14095,20917, 21302, 8071,21342,21339,22293, 1772,21343, 1773,21343, 1774, 21339,21342, 1775, 1776,21344,21344,10727, 1777,21342, 531, 1778, 140, 1779,21347, 1780,21348, 1781, 1782, 1783, 1769, 12894,12894,12894,12894,12894,12894,12894,12894,12894,21298, 6650, 6650, 6650, 6650, 6650, 6650, 6650, 6650, 6650,20178, 21302,20179,20179,20179,20179,20179,20179,20179,20179,20179, 21733, 1770,21298,21298,21429, 140,21960,21665, 1771, 7624, 21301,21301, 140,12894,12894,12894,12894,12894,12894,12894, 12894,12894,21298, 1772,21298, 1773,21399, 1774,20975,19064, 1775, 1776,21301,21302,21402, 1777, 2023,20969, 1778,21399, 1779, 140, 1780,21399, 1781, 1782, 1783, 3291, 464, 3292, 21403,21402,21482,20312, 1606,22144, 1768,12894,12894,12894, 12894,12894,12894,12894,12894,12894, 7624,12894,12894,12894, 12894,12894,12894,12894,12894,12894,22299,21490,21529,21483, 7624, 3293, 7624, 270,20858,21493,19064,20973, 3294,12894, 12894,12894,12894,12894,12894,12894,12894,12894, 140, 7624, 19073, 531,19064, 3295,17684, 3296,21399, 3298, 307, 307, 3299, 3911, 140, 140, 140, 3301,20974,21403, 3302,19073, 3303,21490, 3304,14189, 3305, 3306, 3307, 3291, 140, 3292, 1078, 140,21494, 9211, 531,15483, 1768, 7624,12911,12911, 12911,12911,12911,12911,12911,12911,12911,18642,12911,12911, 12911,12911,12911,12911,12911,12911,12911,19073, 1275, 1078, 140, 3293, 140,19200, 307,20015, 1416,21904, 3294, 140, 21666, 531,12911,12911,12911,12911,12911,12911,12911,12911, 12911,10727, 9211, 3295,15519, 3296,21490, 3298,22303,18350, 3299, 3911,21504, 531,15519, 3301, 3922,19201, 3302,18643, 3303, 6652, 3304,21419, 3305, 3306, 3307, 6670, 4585, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768,15519,12911, 12911,12911,12911,12911,12911,12911,12911,12911,12911,12911, 12911,12911,12911,12911,12911,12911,12911, 7624, 784, 3636, 22307, 2023,21736,20989,12911,12911,12911,12911,12911,12911, 12911,12911,12911,21740, 3291, 2728,21563,19082,14249, 1606, 4586, 2223, 6673,14166, 7624, 7624, 7624, 6392,21735, 140, 6674, 2224, 3637,12911,12911,12911,12911,12911,12911,12911, 12911,12911,21432, 140,19082,19095,19109,21437,20990, 1617, 1606, 307, 140, 2225, 7624,14228, 140, 140, 140, 5705, 2226,14221,20991,12911,12911,12911,12911,12911,12911,12911, 12911,12911,21506, 7624,19082, 2227,14223, 2228,21540, 2229, 12793, 1618, 2230, 2231,20992,21627, 140, 2232,21507, 531, 2233, 1275, 2234,19095, 2235,12894, 2236, 2237, 2238, 2223, 14224,17431,21511,20973, 140, 140,19649, 531, 531, 6675, 17719,18497,22311,12911,12911,12911,12911,12911,12911,12911, 12911,12911,12911,12911,12911,12911,12911,12911,12911,12911, 12911, 2225, 7624,21736, 455, 6392, 2023,20993, 2226,12911, 12911,12911,12911,12911,12911,12911,12911,12911,14250,21456, 16360, 7624,19095, 2227, 1606, 2228,20794, 2229,20936, 307, 2230, 2231,20994,21029, 140, 2232, 7624, 5705, 2233,14222, 2234,19109, 2235, 140, 2236, 2237, 2238, 2223, 307, 782, 20995, 3077,16361, 140,14249,15519,19109, 2224,12865, 531, 20937,21486, 3077, 9211,15545,14248,12911,17301, 140, 2564, 15542, 531, 6676,21415,20993, 1617, 140,12865,21436, 2225, 2564,15546,20827,20936,15547,17302, 2226,21068,21068,21068, 21068,21069,21068,21068,21068,21068,21408,21408,21408,21408, 21408, 2227,21990, 2739,22315, 2229,18311, 1618, 2230, 2231, 21550,20271,21562, 2232,21632,20937, 2233, 1572, 2234,20271, 2740,15555, 2236, 2741, 2238, 3291,20936, 3955,21607,12894, 784, 5021,21447,21471, 2222, 1234,21411, 3956,21411,21146, 21146,21146,21146,21146,21146,21146,21146,21146,17901,17901, 17901,17901,17901,17901,17901,17901,17901, 464,20937, 3957, 140, 898, 1572,21460, 5022,21427, 3958,21427,14117, 140, 18863,18863,18863,18863,18863,18863,18863,18863,18863,21412, 1234, 3959, 2564, 3960, 5310, 3962, 140,21530, 3963, 4625, 21546, 2023, 270, 3965,21551, 5048, 3966,21579, 3967,12845, 3968, 531, 3969, 3970, 3971, 3291,21970, 3955,21428, 1606, 14249,21722,21482, 5750, 2222, 140,21983, 6679,18871,18871, 18871,18871,18871,18871,18871,18871,18871,18882,18882,18882, 18882,18882,18882,18882,18882,18882,21409,21409,21410, 3957, 21545, 8884, 1376,10768,20858,21628, 3958,21269,21269,21269, 21269,21269,21269,21269,21269,21269,21736, 1572,21424,21424, 21425, 3959, 1377, 3960, 5310, 3962,22407,21740, 3963, 6680, 21736, 531, 8105, 3965, 1042, 1234, 3966,21484, 3967, 2023, 3968,21740, 3969, 3970, 3971, 784, 1079,21269,21269,21269, 21269,21269,21270,21271,21271,21271,21538, 1606, 6718, 6718, 6718, 6718, 6718, 6718, 6718, 6718, 6718,21271,21271,21271, 21271,21271,21271,21271,21271,21271, 434, 434,21731, 1080, 21293,21293,21293,21293,21293,21293,21293,21293,21293, 8884, 11847,19737,19737,19737, 257, 257,21288, 139, 139, 139, 8334, 148, 149, 139, 139, 139,21509,21510, 139, 139, 139,20542,20542,20542,20542,20542,20542,20542,20542,20542, 8105,12137, 4677, 139, 139, 139, 139, 139, 139,13039, 20271,22091, 140, 7624, 162,21367,21367,21367,21367,21367, 21367,21367,21367,21367,19932,19932,19932,19932,19932,19932, 21549,19649, 139, 139, 139, 139, 139, 139, 8334, 148, 149, 139, 139, 139,19649, 140, 139, 139, 139,20542, 20542,20542,20542,20542,21272,20539,20539,20539,21736,12911, 4677, 139, 139, 139, 139, 139, 139, 335,14315, 1275, 140,21736, 162,21367,21367,21367,21367,21367,21368,21369, 21369,21369,20950,19885,19885,19885,18341,17301,12865,22425, 139, 139, 139, 139, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6054,18342,17302,21995,12865,21434,12865, 6721, 6721, 6721, 6721, 6721, 6722,21329,21329,21329,21329, 21329,21329,21329,21329,21329,19223,18311,21594,12865, 4637, 4639,19649,21332,21414,21559,22239,14249, 6721, 6721, 6721, 6721, 6721, 6721, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6723,21508, 4640,22175,20312, 139,21741, 6056, 6056, 6056, 6056, 6056, 6057,21349,21349,21349,21349,21349, 21349,21349,21349,21349, 329, 1078,20271,19891,19891,19891, 140,21344,21605, 531,20271, 434, 6056, 6056, 6056, 6056, 6056, 6056, 6725, 6725, 6725, 6725, 6725, 6725, 6725, 6725, 6725, 150,21746, 257,15553,21629,19029, 329, 6725, 6725, 6725, 6725, 6725, 6726,21369,21369,21369,21369,21369,21369, 21369,21369,21369,21373,21373,21373,21373,21373,21373,21373, 21373,21373,19900,19900,19900, 6725, 6725, 6725, 6725, 6725, 6725, 6728, 6728, 6728, 6728, 6728, 6728, 6728, 6728, 6728, 5348,14317,14335,20927,19649,22445,22041, 6728, 6728, 6728, 6728, 6728, 6729,21373,21373,21373,21373,21373,21374,21375, 21375,21375,21375,21375,21375,21375,21375,21375,21375,21375, 21375,21736,15618,15655, 6728, 6728, 6728, 6728, 6728, 6728, 6731, 6731, 6731, 6731, 6731, 6731, 6731, 6731, 6731,21676, 21702,14317,15627,15664,22515, 1275, 6731, 6731, 6731, 6731, 6731, 6732,21379,21379,21379,21379,21379,21379,21379,21379, 21379,21379,21379,21379,21379,21379,21380,21381,21381,21381, 21996,21679,15618, 6731, 6731, 6731, 6731, 6731, 6731, 6735, 6735, 6735, 6735, 6735, 6735, 6735, 6735, 6735, 5357,15625, 14317,20929,15627, 1078,22042, 6735, 6735, 6735, 6735, 6735, 6736,21381,21381,21381,21381,21381,21381,21381,21381,21381, 21385,21385,21385,21385,21385,21385,21385,21385,21385,22583, 21273,15618, 6735, 6735, 6735, 6735, 6735, 6735, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738,21435,15625,21683, 21741,15627, 140,21736, 6738, 6738, 6738, 6738, 6738, 6739, 21385,21385,21385,21385,21385,21386,21387,21387,21387,21387, 21387,21387,21387,21387,21387,21387,21387,21387,22051,18341, 21736, 6738, 6738, 6738, 6738, 6738, 6738, 6741, 6742, 6743, 6744, 6744, 6744, 6744, 6744, 6744,21602,18342,20312,12894, 12911,22154, 139, 4686, 4686, 4686, 4686, 4686, 4687,19119, 19119,19119,19119,19119,19119,19119,19119,19119,19223, 6392, 21499,20271,21499,21577,21592,21438,21439,21438,21439,20271, 4686, 4686, 4686, 4686, 4686, 4686, 6745, 6745, 6745, 6745, 6745, 6745, 6745, 6745, 6745, 5366, 1275,19909,19909,19909, 12894, 5705, 6745, 6745, 6745, 6745, 6745, 6746,20973,14192, 14225,20271,20271,21500,14193,14226,11781,22270,21440,20271, 20271,21441,21609,20776,20776,20776,20776,20776,20776, 6745, 6745, 6745, 6745, 6745, 6745, 6748, 6748, 6748, 6748, 6748, 6748, 6748, 6748, 6748, 1572,20880,20880,20880,20880,20880, 20880, 6748, 6748, 6748, 6748, 6748, 6749,21019,19873,20271, 14192,20271, 1234,21606, 139,14193, 1275,20271,21601,20271, 140,21801,21423,21423,21423,21423,21423,21423, 6748, 6748, 6748, 6748, 6748, 6748, 6751, 6752, 6753, 6754, 6754, 6754, 6754, 6754, 6754, 2023, 139,21451,21451,21451,21451,21451, 4693, 4693, 4693, 4693, 4693, 4694,12911,20279,21741,21741, 20271, 1606,21006,20271,20993,20271, 3077,21610,20271,21745, 21745,21010,21612,20271,21453,21453,21454, 4693, 4693, 4693, 4693, 4693, 4693, 2840, 2564, 6755, 6755, 6755, 6755, 6755, 6755, 6755, 6755, 6755, 4018, 3077,21503,21503,21503,21503, 21503, 4691, 4691, 4691, 4691, 4691, 4692,20068,21746,22585, 21462, 1379, 140, 2564,20312, 8334,14225, 1275,14117,21750, 21642,14226,20312, 1044, 2696,20069,21512,21513, 4691, 4691, 4691, 4691, 4691, 4691, 6756, 6756, 6756, 6756, 6756, 6756, 6756, 6756, 6756, 5379, 2697,21539,20833, 140,21919,12845, 6756, 6756, 6756, 6756, 6756, 6757, 2698,21548, 464,10613, 12896,12896,12896,12896,12896,12896,12896,12896,12896, 1078, 140,20796,20796,20796,20796,20796,20796, 6756, 6756, 6756, 6756, 6756, 6756, 6759, 6759, 6759, 6759, 6759, 6759, 6759, 6759, 6759, 2023, 270,10614,12865,21801,21537,20271, 6759, 6759, 6759, 6759, 6759, 6760,20271,20271,20312, 140,21643, 1606,21902, 140,20271,12865,20312,21600,15464,21570,21614, 20817,20817,20817,20817,20817,20817, 6759, 6759, 6759, 6759, 6759, 6759, 6762, 6763, 6764, 6765, 6765, 6765, 6765, 6765, 6765, 3077,21514, 1078,22443,12865,21920,21561, 4701, 4701, 4701, 4701, 4701, 4702,20271,21560,10694,21622,21006, 2564, 1617,20271,20271,21615,12865,22603,10694,21618, 140,20271, 21801,21469,21469,21470,10613, 4701, 4701, 4701, 4701, 4701, 4701, 6766, 6766, 6766, 6766, 6766, 6766, 6766, 6766, 6766, 4030,14146, 1618,12894,21736,14249,14147, 4699, 4699, 4699, 4699, 4699, 4700,21617,21631,21740, 140,21921, 1617,10614, 12896,12896,12896,12896,12896,12896,12896,12896,12896,21468, 21468,21468,21468,21468, 4699, 4699, 4699, 4699, 4699, 4699, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 5393, 1618,22072, 140,11742,21634,15189, 6767, 6767, 6767, 6767, 6767, 6768,16709,10694,20312,20271,21014,18596, 8110,22607, 140,21015,20312,20271, 140,21645,22486,21452,21452,21452, 21452,21452,21452, 6767, 6767, 6767, 6767, 6767, 6767, 6770, 6770, 6770, 6770, 6770, 6770, 6770, 6770, 6770, 3077, 5904, 8111,21058,21736,20312,22040, 6770, 6770, 6770, 6770, 6770, 6771,20312,21638,21740,21914,18404, 2564,12896,12896,12896, 12896,12896,12896,12896,12896,12896, 3742,22153, 3742,21050, 21552, 5905, 6770, 6770, 6770, 6770, 6770, 6770, 6773, 6774, 6775, 6776, 6776, 6776, 6776, 6776, 6776,17439, 1275,21991, 21991,21992,21989,21476, 4712, 4712, 4712, 4712, 4712, 4713, 20089,20312, 4410,21478, 140,19275, 5906, 6595,20312,20312, 1275,21736,21515,22497,21751,21574,21049,21649,20090,21637, 4411, 4712, 4712, 4712, 4712, 4712, 4712, 6777, 6777, 6777, 6777, 6777, 6777, 6777, 6777, 6777, 4046,21479,12894,20851, 3291,21751,14165, 4710, 4710, 4710, 4710, 4710, 4711,14166, 12911,21273,21801,21564,21564,21564,21564,21564,21564,21564, 21564,21564,21277,21805,22608,21639,22109,16527,16527,21525, 4710, 4710, 4710, 4710, 4710, 4710, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 6103, 5904,16528,16528,10727, 20312,21576, 6778, 6778, 6778, 6778, 6778, 6779,20312,16529, 16529,10613,14249,21591,21646,14194,20312,20312,21736,21516, 1078,21631,18661, 140,20312,20312,21739,14227, 5905, 6778, 6778, 6778, 6778, 6778, 6778, 6780, 6780, 6780, 6780, 6780, 6780, 6780, 6780, 6780,16530,16530,10614,21808, 1078,22007, 21721, 6780, 6780, 6780, 6780, 6780, 6781,21046,21021,20312, 20312,12793,21647, 5906,20271,21975,11785,20312,20312,16709, 21519,14315,20271,21651,18662,21813,20936,21608, 6780, 6780, 6780, 6780, 6780, 6780, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4726,10612, 1078,22609, 1078,20312,14249, 4725, 4725, 4725, 4725, 4725, 4727,20312,21652,20937,14333, 22243,20204,21801,12896,12896,12896,12896,12896,12896,12896, 12896,12896,21831,21805,21808,12865,10613, 4725, 4725, 4725, 4725, 4725, 4725, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 4722, 3410,20938,12865,20068,22610,21808,22265, 4722, 4722, 4722, 4722, 4722, 4723,15545,21521,21046,21812,21736, 20312,10614,21573,20069,21625,21736,21655,21739,20312,15465, 10694,21461,15546,21739,22130,15547, 4722, 4722, 4722, 4722, 4722, 4722, 139, 139,20833, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 561, 561, 561, 561, 561, 561, 561, 561, 561, 150, 139, 139, 139, 139, 139, 329, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 6789, 139, 139,10612, 139, 139, 139, 139, 139, 139, 139, 139, 139,21741, 139, 2864, 21741,22574, 8334, 140,21536,21744,21813,21831,21744, 139, 139, 139, 139, 139, 139, 139,12894,21830,21835,10613, 19873, 6800,19682,21407,21407,21407,21407,21407,21407,21407, 21407,21407, 140, 1078, 140, 531, 5218,21522,22410, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,10614, 139, 2864,21741,21931, 8334, 21897, 5219, 1234,10612,21836,21744, 139, 139, 139, 139, 139, 139, 139, 6801, 5221,21840,22611,21989, 6800,19682, 21408,21408,21408,21408,21408,21408,21408,21408,21408, 140, 5705, 140, 531, 2023, 531,10613, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1606, 139, 4756,21746,21524, 8334, 6392,22612, 1234, 14335,21808,21749, 139, 139, 139, 139, 139, 139, 139, 10614,22150,21812,22617,21928, 6805,19691,18304,18304,18304, 18304,18304,18304,18304,18304,18304, 140, 140, 140, 5705, 21705,15655, 1416, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,15662, 139, 4756,15664,21916, 8334, 139,21905, 1234,10612,21897,21936, 139, 139, 139, 139, 139, 139, 139, 6806,22618,21901, 21050, 140, 6805,19691,21426,21426,21426,21426,21426,21426, 21426,21426,21426, 140,11653, 140,21917, 1572, 531,10613, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1234, 139, 139,21736,21524, 8334,21937,19200, 1606,21918, 8367,21739, 139, 139, 139, 139, 139, 139, 139,10614,22271,22039, 140,10768, 6809, 19700,18326,18326,18326,18326,18326,18326,18326,18326,18326, 21941,14249, 140, 140,19635,10009,19201, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,19636, 139, 139,21736,21730, 8334,21959, 1078, 1606,21984, 140,21739, 139, 139, 139, 139, 139, 139, 139, 6810,21988,19637,22423,12894, 6809,19713,21430,21430, 21430,21430,21430,21430,21736,15556,21984,21431, 455, 140, 140,17108,21739,21630, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,15557, 139, 139, 8334, 140, 8334,22011,21939, 1606, 139,19217, 21273, 139, 139, 139, 139, 139, 139, 139,21276,22576, 22619,17110,19700, 6813,19713,21448,21448,21448,21448,21448, 21448,21448,21448,21448, 140,22044, 140, 531,17108, 531, 21940, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,22152, 139, 139,21801, 140, 8334,21482, 531, 2564,20312,12845,21804, 139, 139, 139, 139, 139, 139, 139, 6814, 140,22613,17110,22614, 6813,19727,21449,21449,21449,21449,21449,21449,21449,21449, 21449, 1070,14315, 140,20858,17108,17108,21977, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 307, 139, 139,22033, 140, 140, 140, 9654, 2564,22462, 782, 1071, 139, 139, 139, 139, 139, 139, 139, 8334,16527,21801,17110,17110, 6816,22622, 6817, 9655, 1572,21804,20539,20539,20539,20539,20539,20539,20539, 20539,20539, 9656,16528,21295, 6818, 6819, 6819,21723, 1234, 22247,18305,21807,20950, 140,16529, 6820, 139, 139,12865, 139, 139, 139, 139, 139, 139, 139, 139, 139,10618, 139, 4756, 8334,22090,20271,20284, 8367, 9657,12865,21517, 14315, 139, 139, 139, 139, 139, 139, 139, 140,12894, 16530, 531,19727, 6823,12894,21450,21450,21450,21450,21450, 21450,21450,21450,21450, 140,14146,10009, 531, 140, 139, 14147, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,21808, 139, 4756,21808, 22073,14185,22639,22546, 2564,14193, 1379,21811, 139, 139, 139, 139, 139, 139, 139, 6824,22246,22071, 1044, 139, 6823, 8334,21451,21451,21451,21451,21451,21451,21451,21451, 21451,21603,20539,20539,20539,20539,20539,20539, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 4756, 7624,21482,21604,22037, 21948, 2564, 6392,22094,20271, 139, 139, 139, 139, 139, 139, 139,20271, 2023,20271,20284,19922, 6828,22185,21455, 21455,21455,21455,21455,21455,21455,21455,21455, 140,20858, 8136, 1606, 3077,18327, 5705, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2564, 139, 4756,21813,21441, 3742,21976, 434, 2564, 6392, 22640,21816, 139, 139, 139, 139, 139, 139, 139, 6829, 21933,21933,21934,22614, 6828, 257,18496,18496,18496,18496, 18496,18496,18496,18496,18496,21603,12911,21654,22146,20089, 22010, 5705, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,20090, 139, 4756, 14117,16360,21604,22656,21981,21477,21982,20312,20271, 139, 139, 139, 139, 139, 139, 139,20271,22085,20851,22046, 21611, 6833,14226,21501,21501,21501,21501,21501,21501,20312, 21053,12845,21502,16361,21980,21054, 140,20312, 140, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,21817, 139, 4756,21831,22038, 7624, 22660, 8884,21820,21943,15280,21834, 139, 139, 139, 139, 139, 139, 139, 6834,22661, 3077,22043,20480, 6833,19922, 21503,21503,21503,21503,21503,21503,21503,21503,21503, 140, 140, 140, 8105, 2564, 531,12865, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139,21836, 139, 4756,12865,22049,21613,21640,22162,21839, 15414,14117,20271, 139, 139, 139, 139, 139, 139, 139, 20271,20271,20284,22101, 1275, 6837,22045, 784,15381,15382, 21013,14146,14317,21841,21641,16360,14147,20937, 140,17447, 20312,21844,12845, 2866, 139, 139, 139, 139,20312, 139, 139, 139, 139, 139, 139, 139, 139, 139,21851, 139, 4756,15383,21526,15618,22275,22496,21855,16361, 140,21674, 139, 139, 139, 139, 139, 139, 139, 6838,21060,10611, 15625,21856, 6837,15627,20312, 784,15381,15382,22014,21859, 21808,21897,20312,22559,21979,22034,15384,21644,21811,21900, 2866, 139, 139, 139, 139,14317, 139, 139, 139, 139, 139, 139, 139, 139, 139, 6839, 139, 4756, 9654,15383, 5905,22662,22122, 1572,20271,20284, 5218, 139, 139, 139, 139, 139, 139, 139, 6839,21457,15618,10611, 9655, 6841, 14333, 1234,21681,21955, 784, 8846, 8847,21518,21527,21911, 9656, 5219,18404,15625,15384, 5906,15627, 2866, 139, 139, 6839, 6839, 139, 139, 5221, 139, 139, 139, 139, 139, 139, 139, 139, 139,21984, 139, 139,10618, 8848,22120, 20271,20284,21987,22095,17439, 9657, 139, 139, 139, 139, 139, 139, 139,21971,20271,20284, 5903,17301, 6843,21616, 898, 898,14092,14092,20271, 464,21913, 7168,22269, 140, 14317,21528,20271, 8849,22663,17302, 139, 139, 139, 139, 139,21009, 139, 139, 139, 139, 139, 139, 139, 139, 139, 7169, 139, 139,14093,14093,18311,21531,22029,22409, 270,15618,21968, 139, 139, 139, 139, 139, 139, 139, 6844,21678,14094,14094,21650, 6843, 1617, 898,15625, 8068, 20312,15627,21482,22282,14315,21532,21640,14335,20312,14095, 14095,12911,21691, 139, 139, 139, 139, 139,21052, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 4756, 8069, 3077,21641,20858, 140, 8334, 8334,15655,20312, 139, 139, 139, 139, 139, 139, 139,20312,21704, 8070, 2564,21648, 6848,19873,21953,15662,19682,19691,15664,22084, 307,21533,21966, 307, 307, 140, 8071,21978, 140, 140, 2866, 139, 139, 139, 139,14335, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 4756,12896,12896, 12896,12896,12896,12896,12896,12896,12896, 139, 139, 139, 139, 139, 139, 139, 6849,22664,15655,22447,22665, 6848, 9703,20312,21568,12896,12896,12896,12896,12896,12896,12896, 12896,12896,21056,15662,21709,22672,15664, 2866, 139, 139, 139, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 139, 139,17108, 139, 4756,12913,12913,12913,12913,12913, 12913,12913,12913,12913, 139, 139, 139, 139, 139, 139, 139,22147,22055,21989, 140,22673, 6852,22512, 9703,21583, 307,20312,21912,21569, 3291, 140,14165,20954,10679, 140, 15471,17301,17110,14166, 2866, 139, 139, 139, 139,20936, 139, 139, 139, 139, 139, 139, 139, 139, 139,17302, 139, 4756,12913,12913,12913,12913,12913,12913,12913,12913, 12913, 139, 139, 139, 139, 139, 139, 139, 6853,22148, 18311,20937, 434, 6852,22048,20492,20492,20492,21572,20312, 12896,12896,12896,12896,12896,12896,12896,12896,12896, 5218, 257, 2866, 139, 139, 139, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 139, 139, 6854, 139, 4756,15500, 21585,22009,22674, 3742, 5219,21974, 8367,12894, 139, 139, 139, 139, 139, 139, 139, 6854,16621, 5221, 140,21926, 6856,21926,14315,12896,12896,12896,12896,12896,12896,12896, 12896,12896,21944,21945,21944,21945,10009, 4410, 2866, 139, 139, 6854, 6854, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4411, 139, 2864, 3077,21053, 14188,22577,21927, 1606,21054,20312,15466, 139, 139, 139, 139, 139, 139, 139,21571,21946, 2564,22677,21947, 6800, 12913,12913,12913,12913,12913,12913,12913,12913,12913,22240, 15467,21501,21501,21501,21501,21501,21501, 2866, 139, 139, 139, 139,14317, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1275, 139, 2864,12913,12913,12913,12913,12913, 12913,12913,12913,12913, 139, 139, 139, 139, 139, 139, 139, 6801,14333,15618,22099, 455, 6800,22667, 784, 5021, 21584,21942, 464,14317,21680,21016,20284,15507, 8334, 434, 15625,21675, 140,15627, 2866, 139, 139, 2864, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 257,19700,22012, 1617,22520, 5022,21589,15618, 307,22008, 270,22280, 140, 140,21468,21468,21468,21468,21468,21468,21468,21468,21468, 2564,15625,14221,22586,15627,20271,22630, 2866,22268, 4103, 139, 139, 1618, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 203, 139, 139, 139, 139, 139, 139, 6860, 6860, 6860, 6860, 6860, 6861, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 6859, 6859, 6859, 6859, 6859, 6859, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 898,22780,22093,21956,22187,22100, 15180,21011,20271,20284, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 139, 139, 139, 139, 139, 139, 139, 139, 139,20271,20284,21053,14249,20271,20284, 5048,21054, 20312,22174,21017,22781,15181,21474,21624,21624,21624,21624, 21624,21624,21624,21624,21624,22800, 5750, 6860, 6860, 6860, 6860, 6860, 6860, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,22810, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 150, 150, 6864, 6864, 6864, 6864, 6864, 6864, 6864, 6864, 6864, 5513, 139, 139, 139, 139, 139, 139, 6864, 6864, 6864, 6864, 6864, 6865, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 6864, 6864, 6864, 6864, 6864, 6864, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 375, 1376,12913,12913,12913, 12913,12913,12913,12913,12913,12913, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 1377, 140,19649,20312, 22685,14333, 150, 150, 150, 150, 150, 162, 1042,21717, 12913,12913,12913,12913,12913,12913,12913,12913,12913,21014, 15502,19649, 140,22281,21015,22283,20271,20284,21586, 150, 150, 150, 150, 150, 150, 6867, 6867, 6867, 6867, 6867, 6867, 6867, 6867, 6867,15503,20498,20498,20498,22283,22036, 22097, 6867, 6867, 6867, 6867, 6867, 6868,18628,12913,12913, 12913,12913,12913,12913,12913,12913,12913,21587, 8884,12913, 12913,12913,12913,12913,12913,12913,12913,12913, 6867, 6867, 6867, 6867, 6867, 6867, 6870, 6870, 6870, 6870, 6870, 6870, 6870, 6870, 6870,14248,22666,14333,22667, 140,22827, 8105, 6870, 6870, 6870, 6870, 6870, 6871,22279,21588, 140,21011, 20271,20284,14248,14317,15501,16657,21662,21662,21662,21662, 21662,21662,21662,21662,21662,22047,16527, 6870, 6870, 6870, 6870, 6870, 6870, 6873, 6874, 6875, 6876, 6876, 6876, 6876, 6876, 6876, 4817,21653,15618,22140,16528,22427,20312, 4816, 4816, 4816, 4816, 4816, 4818,21682,20312,19635,16529,22015, 8110,15625,22261,21729,15627,21048,21662,21662,21662,21662, 21663,21662,21662,21662,21662,19636, 4816, 4816, 4816, 4816, 4816, 4816, 6877, 6877, 6877, 6877, 6877, 6877, 6877, 6877, 6877,17930, 8111,16530,22151,12911,19637,22183, 6877, 6877, 6877, 6877, 6877, 6878,20312,21055, 8926, 8136, 464,14315, 14315,14315,14315,14315,14315,14315,14315,14315,22050, 139, 20507,20507,20507, 140, 5904, 6877, 6877, 6877, 6877, 6877, 6877, 2438,14218, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4830, 270, 531,22832,22283,22028,22083, 4829, 4829, 4829, 4829, 4829, 4831,16788, 5905,19567,14315,14315, 14315,14315,14315,14315,14315,14315,14315,14315,14315,14315, 14315,14315,14315,14315,14315,14315, 4829, 4829, 4829, 4829, 4829, 4829, 6883, 6883, 6883, 6883, 6883, 6883, 6883, 6883, 6883, 5906,22832,22867, 8367,14248,22283,22018, 6883, 6883, 6883, 6883, 6883, 6884,16788, 3077, 140,22287,22092,19568, 21014,14335, 782,16788,14248,21015,22128,22121,20284,21701, 22138,11733,14317, 2564,10009, 6883, 6883, 6883, 6883, 6883, 6883, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4839,21012,15655,20516,20516,20516,22283, 4838, 4838, 4838, 4838, 4838, 4840,15618,10694,20271,22127,22287,21677,15662, 8367,21014,15664,16771, 1078,21013,21015, 307,20271,20284, 15625,22867, 140,15627, 4838, 4838, 4838, 4838, 4838, 4838, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 4835, 3493, 10009,22319,22867,14333, 1078, 1078, 4835, 4835, 4835, 4835, 4835, 4836,14315,14315,14315,14315,14315,14315,14315,14315, 14315,14315,14315,14315,14315,14315,14315,14315,14315,14315, 22832,22327,22332, 4835, 4835, 4835, 4835, 4835, 4835, 6889, 6889, 6889, 6889, 6889, 6889, 6889, 6889, 6889,21631, 1078, 20683,20683,20683, 3077,14248, 6889, 6889, 6889, 6889, 6889, 6890,14315,14315,14315,14315,14315,14315,14315,14315,14315, 22262, 2564, 1078,14248, 1078,21685,22358,21908,21908,21908, 21908,21908, 6889, 6889, 6889, 6889, 6889, 6889, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4852, 1572,22363, 18610,21897,22319,22283, 4851, 4851, 4851, 4851, 4851, 4853, 12894,22286,18341,22323,11757,22187, 1234,21686,21930,11758, 10727,14315,14315,14315,14315,14315,14315,14315,14315,14315, 18342, 4851, 4851, 4851, 4851, 4851, 4851, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 4848, 3505,15483,22832,22715, 14248,19223,18611, 4848, 4848, 4848, 4848, 4848, 4849,14315, 14315,14315,14315,14315,14315,14315,14315,14315,18745,14248, 22832,14315,14315,14315,14315,14315,14315,14315,14315,14315, 4848, 4848, 4848, 4848, 4848, 4848, 6895, 6895, 6895, 6895, 6895, 6895, 6895, 6895, 6895,21687,15558,20740,20740,20740, 22615,15559, 6895, 6895, 6895, 6895, 6895, 6896,14315,14315, 14315,14315,14315,14315,14315,14315,14315,19649,17930,21688, 22225,22832, 140, 140,22616,11770,15644, 1070,20068, 6895, 6895, 6895, 6895, 6895, 6895, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4866, 307,20069,20480,22428, 140, 140, 4865, 4865, 4865, 4865, 4865, 4867,14315,10727, 140, 1071,21957, 531,21026,14335,15637,21689,20833,14315,14315, 14315,14315,14315,14315,14315,14315,14315,14248, 4865, 4865, 4865, 4865, 4865, 4865, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 4862, 3521, 8334,15655,14248,22272,22668, 5705, 4862, 4862, 4862, 4862, 4862, 4863,21706,22176,22283,22177, 22244,15639,15662, 140,19713,15664,22286,20845,22178,21690, 20312, 307,22669,22468,15643,22179, 140, 4862, 4862, 4862, 4862, 4862, 4862, 139, 139,15640, 139, 836, 139, 139, 139, 139, 139, 139, 139, 571, 139, 139, 6901, 6901, 6901, 6901, 6901, 6901, 6901, 6901, 6901, 139, 139, 139, 139, 139, 139, 139, 571, 571, 571, 571, 571, 572, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 139, 139, 139, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 139, 139,22949, 139, 163, 139, 139, 139, 139, 139, 139, 139, 168, 344, 139, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 139, 139, 139, 139, 139, 139, 139, 168, 168, 168, 168, 168, 345, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 139, 139, 139, 176, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 6909, 6909, 6909, 6909, 6909, 6909, 6909, 6909, 6909, 5570,14333, 22981,18642,20905,12793,22483, 6909, 6909, 6909, 6909, 6909, 6910,12911,14315,14315,14315,14315,14315,14315,14315,14315, 14315,21691,22484,14315,14315,14315,14315,14315,14315,14315, 14315,14315, 6909, 6909, 6909, 6909, 6909, 6909, 6912, 6912, 6912, 6912, 6912, 6912, 6912, 6912, 6912, 2696,15519,21909, 21909,21910,22266,18643, 6912, 6912, 6912, 6912, 6912, 6913, 1617,21692,17930, 7624,23039, 140,15680, 2697,15638,16788, 1572,21466,21466,21466,21466,21466,21466,22155,22327, 2698, 21467, 6912, 6912, 6912, 6912, 6912, 6912, 149, 1234,22331, 2023,22442, 1618, 3077, 140, 140,22332, 531, 6915, 6916, 6917, 6918, 6918, 6918, 6918, 6918, 6918,22336, 1606,22035, 19217, 2564,19263,21947, 4886, 4886, 4886, 4886, 4886, 4887, 14315,14315,14315,14315,14315,14315,14315,14315,14315,14333, 14333,14333,14333,14333,14333,14333,14333,14333,14335,22023, 22024, 4886, 4886, 4886, 4886, 4886, 4886, 6919, 6919, 6919, 6919, 6919, 6919, 6919, 6919, 6919, 4198, 140,22155,14315, 22337,23221,23238, 4884, 4884, 4884, 4884, 4884, 4885,15655, 20068,22341,10613,22145,14335,21700,21958,22319,21693,14335, 140, 140, 140,22245,22461,22322,15662,14335,20069,15664, 4884, 4884, 4884, 4884, 4884, 4884, 6922, 6922, 6922, 6922, 6922, 6922, 6922, 6922, 6922,15655,22485,10614,22542,20833, 15655,21707, 6922, 6922, 6922, 6922, 6922, 6923,15655,15641, 22476,21708,15662,21703,15642,15664,21053,15662,16813,22327, 15664,21054,20312,23245,23246,15662,22358,22330,15664, 6922, 6922, 6922, 6922, 6922, 6922, 139, 139,22362, 139, 6925, 139, 139, 139, 139, 139, 139, 139, 6926, 139, 139, 6927, 6928, 6929, 6930, 6930, 6930, 6930, 6930, 6930, 6931, 139, 6932, 139, 139, 139, 139, 6933, 6933, 6933, 6933, 6933, 6934, 6935, 6935, 6935, 6935, 6935, 6935, 6935, 6935, 6935, 6935, 6935, 6936, 6935, 6935, 6935, 6935, 6935, 6937, 139, 139, 6938, 6933, 6933, 6933, 6933, 6933, 6933, 6935, 6935, 6935, 6935, 6935, 6939, 6935, 6935, 6935, 6935, 6935, 6935, 6936, 6935, 6935, 6935, 6935, 6935, 6935, 1225, 1225, 464, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 22187, 1225, 4935,14333,14333,14333,14333,14333,14333,14333, 14333,14333, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22332, 14315,22337,22342,22712, 6963, 270,22521,22335,21691,22340, 22345,14333,14333,14333,14333,14333,14333,14333,14333,14333, 22187, 140, 4937, 1225, 1225, 1225, 1225,10612, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,21711, 1225, 4935, 14333,14333,14333,14333,14333,14333,14333,14333,14333, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6964,16830,22358,10613, 15641, 6963,22909,22714,21713,15642,22361,19605,14333,14333, 14333,14333,14333,14333,14333,14333,14333,22022, 140, 4937, 1225, 1225, 1225, 1225, 7624, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10614, 1225, 6967,14333,14333,14333, 14333,14333,14333,14333,14333,14333, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22363,16830,22590, 140,22494, 6968,19606, 22591,22366, 784, 1079,22363,14333,14333,14333,14333,14333, 14333,14333,14333,14333, 140,22367, 4937, 1225, 1225, 1225, 1225, 8334, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22368, 1225, 6967,15674,21715, 1080,23249,23251,22371, 22547,20529,22584, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6969,16830,14228, 140, 139, 6968,22368,14333,14333,14333, 14333,14333,14333,14333,14333,14333,11746,22372, 140,14248, 21725,11747,10694, 4937, 1225, 1225, 1225, 1225,22131, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14248, 1225, 6967,14333,14333,14333,14333,14333,14333,14333,14333,14333, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22098,10727,22187, 22929,21051, 6972,21712,14333,14333,14333,14333,14333,14333, 14333,14333,14333,22141,20312,22765,22180,23256, 1078,22726, 4937, 1225, 1225, 1225, 1225,21052, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8334, 1225, 6967, 7624,21719, 7624, 7624,21021,22278,17930,22487,14317, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6973,19727,20271,20284,19922, 6972, 22373,21608, 307,20927,21714, 307,22383, 140,22376,22549, 140,15681, 140, 140,22386,11847, 140, 4937, 1225, 1225, 1225, 1225, 782, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22205, 1225, 6967,14333,14333,14333,14333,14333, 14333,14333,14333,14333, 1225, 1225, 1225, 1225, 1225, 1225, 1225,21534, 9654,22770,13039,22749, 6975,14317, 6976,21924, 21924,21925,21535,21535,21535,21535,21535,21535,21535,21535, 21535,22389, 9655,22394, 6977, 6978, 6978,22383,22205,22392, 2023,22397,18786, 140, 9656, 6979, 1225, 1225,22388, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1606, 1225, 4935,21769,21769,21769,21769,21769,21769,21769,21769,21769, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22017,21897, 9657, 22670,22751, 6985, 7624,22771,22671,21900,21717,22389,14333, 14333,14333,14333,14333,14333,14333,14333,14333, 140,22393, 4937, 1225, 1225, 1225, 1225, 7624, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 4935,21769,21769, 21769,21769,21769,21770,21771,21771,21771, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6986,16830,18341, 140,21897, 6985, 14333,14333,14333,14333,14333,14333,14333,14333,14333,21901, 22187,22189,22783,14248,18342, 140,21631, 4937, 1225, 1225, 1225, 1225,14248, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14248, 1225, 4935,19223,14248, 7624,22411,22429, 22818,14248,21929,15676, 1225, 1225, 1225, 1225, 1225, 1225, 1225,21716,14315,23222,22711,14248, 6990,21771,21771,21771, 21771,21771,21771,21771,21771,21771,22133,15677,15558, 140, 140, 140, 531,15559, 4937, 1225, 1225, 1225, 1225,22471, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22134, 1225, 4935,21775,21775,21775,21775,21775,21775,21775,21775, 21775, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6991,20929, 23265, 140,14315, 6990, 6392,22550,14333,14333,14333,14333, 14333,14333,14333,14333,14333,21932,21932,21932,21932,21932, 21932, 4937, 1225, 1225, 1225, 1225,18404, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5705, 1225, 4935,21775, 21775,21775,21775,21775,21776,21777,21777,21777, 1225, 1225, 1225, 1225, 1225, 1225, 1225,21718,23234, 307,17439,22472, 6995, 1617,15675,21777,21777,21777,21777,21777,21777,21777, 21777,21777,21466,21466,21466,21466,21466,21466, 4937, 1225, 1225, 1225, 1225,22516, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1618, 1225, 4935,21781,21781,21781,21781, 21781,21781,21781,21781,21781, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6996, 531,22487,12793,22803, 6995, 1617,21726, 21726,21726,21726,21726,21726,22491,14333, 7624,21727,21965, 21965,21965,21965,21965,21717, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1618, 1225, 4935, 8334, 307, 7624,14333,22276,22187, 140, 15704,22487, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22490, 21206,21206,21206,20529, 6999,21781,21781,21781,21781,21781, 21782,21783,21783,21783,22713, 140,15678, 140, 531,19635, 531,15679, 4937, 1225, 1225, 1225, 1225,22430, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,19636, 1225, 4935, 21783,21783,21783,21783,21783,21783,21783,21783,21783, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7000,15634,19637, 2023, 14315, 6999,21787,21787,21787,21787,21787,21787,21787,21787, 21787,20281, 782,22784, 1078, 140,22596, 1606,20271, 4937, 1225, 1225, 1225, 1225,22454, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7001, 1225, 4935,21787,21787,21787, 21787,21787,21788,21789,21789,21789, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7001,22419,22812, 3077, 2023, 7003,21789, 21789,21789,21789,21789,21789,21789,21789,21789,22187,22205, 23312,22205,22420,23379, 2564, 1606, 4937, 1225, 1225, 7001, 7001, 1225, 1225,22436, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22421, 1225, 1225,19737,19737,19737,19737, 19737,19737,19737,19737,19737, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22722,22748,19635,22759, 7168, 7005,21854,21854, 21854,21854,21854,21854,21854,21854,21854,21916,22412,22424, 22412,23506,19636, 8136,21851, 1234, 1225, 1225, 1225, 1225, 7169, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 22205, 1225, 1225,19637, 1572, 784, 1079,22469, 7624,19029, 22277,21917, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7006, 22763,22413, 1234,22620, 7005,21872,21872,21872,21872,21872, 21872,21872,21872,21872,22621, 307,22498, 8147,22503, 1080, 140,23132, 1234, 1225, 1225, 1225, 1225,22508, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 139, 1225, 4935, 21872,21872,21872,21872,21872,21873,21874,21874,21874, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22274,21263,21263,21263, 22675, 7010,21874,21874,21874,21874,21874,21874,21874,21874, 21874,22676, 1379,21726,21726,21726,21726,21726,21726, 4937, 1225, 1225, 1225, 1225, 1044, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 4935,19885,19885,19885, 19885,19885,19885,19885,19885,19885, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7011,22545, 434,23530, 1572, 7010,19891, 19891,19891,19891,19891,19891,19891,19891,19891,14315,22786, 23534,14317,14335, 257,15642, 1234, 4937, 1225, 1225, 1225, 1225,22518, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22417, 1225, 4935,19900,19900,19900,19900,19900,19900, 19900,19900,19900, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 22774,22794,22604, 140,22819, 7014,19909,19909,19909,19909, 19909,19909,19909,19909,19909,22823, 140,23529,22816,22605, 17301,22422,22606, 4937, 1225, 1225, 1225, 1225,22548, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,17302, 1225, 4935,21894,21894,21894,21894,21894,21894,21894,21894,21894, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7015,22657,18311, 140,22940, 7014,21894,21894,21894,21894,21894,21895,21896, 21896,21896,20281,15674,23252,22658,22667,22597,22659,20271, 4937, 1225, 1225, 1225, 1225, 7624, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7016, 1225, 4935,21896,21896, 21896,21896,21896,21896,21896,21896,21896, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7016,14333,22806, 140,22483, 7018, 531,15679,20480,21906,21906,21906,21906,21906,21906, 307, 14333, 7624,21907, 7624, 140,22723,22484, 4937, 1225, 1225, 7016, 7016, 1225, 1225, 1572, 1225, 2458, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22267, 1225, 1225, 7624, 307, 7624, 307,22187, 1234, 140,20000, 140, 7022, 1225, 1225, 1225, 1225, 1225, 1225,23253, 140, 3077,23504,10694, 1978, 7624, 21908,21908,21908,21908,21908,21908,21908,21908,21908, 140, 15678, 140, 531, 2564, 531,15679, 1234, 1225, 1225, 139, 139, 1572, 139, 836, 139, 139, 139, 139, 139, 139, 139, 140, 139, 139, 531,22710,22457,22950, 898, 1234, 14092,10740,22187, 139, 139, 139, 139, 139, 139, 139, 21923,21923,21923,21923,21923, 572,19352,19352,19352,19352, 19352,19352,19352,19352,19352,21430,21430,21430,21430,21430, 21430, 2023,14093, 139, 139, 139, 1617, 1275,14117,20845, 22030, 898,21961,14092,21961,23354, 2023,14317,22553, 1606, 14094, 7024, 139, 139,10612, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1606, 139, 139,14095, 1618,12845, 21952,21952,21952,21952,21952,14093, 139, 139, 139, 139, 139, 139, 139,22013, 7624,21962,10613, 1617, 572,20281, 10612, 3077,14317,14094,20283, 2053,22628,21922,21922,21922, 21922,21922,21922,21922,21922,21922, 139, 139, 139, 2564, 22031, 307, 7624,11652,10612,22778, 140,22815, 2023, 1618, 11847,10614,10613, 7025, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1606, 2012, 2012, 307, 20320,21916,23583,22424, 140,22649,10613,20312, 2012, 2012, 2012, 2012, 2012, 2012, 2012,22020,22467,10614,22777,13039, 2501,21923,21923,21923,21923,21923,21923,21923,21923,21923, 22426,22554,14117,11652,22437,21917, 6392,22439, 2012, 2012, 2012,10614, 2023,18341, 7030, 2012, 2012, 2013, 2012, 7032, 2012, 2012, 2012, 2012, 2012, 2012, 2012,14335, 2012, 2012, 1606,18342,21939,12845,22444, 6392,10612,22205, 5705, 2012, 2012, 2012, 2012, 2012, 2012, 2012,22441,22441,22441,22441, 22441, 2501,19223,19216,19216,19216,19216,19216,19216,19216, 19216,19216,22452,22750,22452, 7093,21940, 5705,20166, 2012, 2012, 2012, 1597, 1597, 2023, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1376, 1597, 5683,22187, 3077, 784, 5021,23623, 1606,22797,14317,11652, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10614, 1377,22453, 2564,22123, 7051,22124, 21949,21949,21949,21949,21949,21949, 1042,22747,22125,21950, 22716,20271,20284, 5022,22205,22126, 5685, 1597, 1597, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2564, 1597, 5683,21482,20320,22544,22775,23232, 2564, 22650,20054,20312, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7052,16772,22155,14315,23524, 7051, 1617,21951,21951,21951, 21951,21951,21951,21951,21951,21951,20858,22463,22463,22464, 22434,22434,22435, 5685, 1597, 1597, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1618, 1597, 1597, 2023,22479, 898,21482,21939, 2564,22444,14335,22760, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15671,22187, 1606, 14333,14335, 7054,23658,21952,21952,21952,21952,21952,21952, 21952,21952,21952,22804,22446,22205,20858, 5048,22717,21940, 1606, 1597, 1597, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 5750, 1597, 1597, 8884,16360, 8334,16360,22718, 2564, 1617,18642,22551, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7055,22477,22798, 3077,23659, 7054, 20529,21993,21993,21993,21993,21993,21993, 307,22790, 8105, 21994,16361, 140,16361,22481, 2564, 1618, 1606, 1597, 1597, 1597, 1597, 1275, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15519, 1597, 1597,22480,19263,18643,22919, 434, 22500,14248,16460,22319, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22139,23663, 3291,22323,14165, 7057, 257,22205,22187, 14248, 3742,14166,22601,21051,22519,20281, 6392, 7058,22980, 22061,20283,22149,20271, 1606, 1597, 1597,20312,21935,21935, 21935,21935,21935,21935,21935,21935,21935,15558,21052,15456, 22187,22753,15559,22721, 434,20089, 7058, 1597, 1597, 5705, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16527, 1597, 5683, 257,20090,22782,22155,23668,22449,22449,22450, 22327, 1597, 1597, 1597, 1597, 1597, 1597, 1597,21972,16528, 22517,22331,23110, 7065,20851, 784,15381,15382, 3077, 3742, 22205,16529,12865,12865,12865,12865,12865,12865,12865,12865, 12865, 5685, 1597, 1597, 1597, 1597, 2564, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10612, 1597, 5683,15383, 22016,22205,22025, 4410,22752, 8110,16530,22205, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7066, 140,10611,18341,22189, 7065, 4411, 784,15381,15382,22475,21482,22438,10613,22059, 8334,22802,19649,14335,15384,22758,18342, 8111, 5685, 1597, 1597, 1597, 1597,22460, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22205, 1597, 5683,15383,19223,20858,22819, 23143,22522, 140,10614,22478, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22558, 140,10611,20068,22498, 7070,22503, 784, 8846, 8847,12894, 5904,22523,20281,22026,22508,22801,22602, 20283,15384,20271,20069,22513, 5685, 1597, 1597, 1597, 1597, 22791, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 22832, 1597, 5683, 8848,20833, 5905,22495,22495,22495,22495, 22495,22836, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7071, 22187, 5903,23573, 140, 7070,22575, 898, 1275, 8068,20936, 22623,10612, 6593,22027,20281,14195,22189,14335, 8849,20283, 5906,20271, 5685, 1597, 1597, 1597, 1597,22817, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,14317, 1597, 5683, 8069,20937, 3742,10613,22474,22236, 1078,22556,21012, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22096,23149, 8070,23038, 20281, 7074,20271,20284,14200,20283,22032,20271,22600,22529, 22795,22978,21013,22319,22500, 8071,20089, 140,10614, 5685, 1597, 1597, 1597, 1597,16814, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20090, 1597, 5683,14317,14317,14317, 14317,14317,14317,14317,14317,14317, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7075,22205,20851,22891,22483, 7074,12865, 12865,12865,12865,12865,12865,12865,12865,12865,22058, 1078, 10727,23581, 1078,22716,22754,22484, 5685, 1597, 1597, 1597, 1597,16527, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22230, 1597, 5683,15414,14117,22327, 3742,22755,22832, 22837,16528,10727, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 22552,22841,22807,16529,20068, 7077,22524,14317,14317,14317, 14317,14317,14317,14317,14317,14317,12845,22842, 1617, 7078, 22595,20089,20069, 5685, 1597, 1597,22459,21973,22846,19262, 19262,19262,19262,19262,19262,19262,19262,19262,16530,20090, 22205,14225,23613,20833, 464, 464,14226, 7078, 1597, 1597, 1618, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 20851, 1597, 1597,22231,21993,21993,21993,21993,21993,21993, 22537,22538, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 270, 270,20281,20281,22629, 7080, 1275,20283,20283,20271,20271, 17631,12865,12865,12865,12865,12865,12865,12865,12865,12865, 140, 1275, 1606, 1597, 1597, 1597, 1597,10612, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1275, 1597, 1597, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22879,15439,23579,10613, 22954, 7080,17632,22832,12865,12865,12865,12865,12865,12865, 12865,12865,12865,23800,22836,22207,14315,22528, 140, 1606, 1597, 7061, 1597, 1597,22785, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10614, 1597, 5683,14317,14317,14317, 14317,14317,14317,14317,14317,14317, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22910,22060, 1572,23184,22716, 7084,14147, 22832,22232,14317,14317,14317,14317,14317,14317,14317,14317, 14317,22836,22189, 1234,22207,20000, 5685, 1597, 1597, 1597, 1597,10612, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16527, 1597, 5683,14317,14317,14317,14317,14317,14317, 14317,14317,14317, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7085,16528,23144,10613,23185, 7084,23107,22416,22416,22416, 22416,22416,22233,16529,21007,20281,22155, 1078, 8884,16773, 20283,22532,22627, 5685, 1597, 1597, 1597, 1597, 1572, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10614, 1597, 5683,16766,22234,22525,22837,22187, 1234, 1078,16530, 8105, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22433,22433,22433, 22433,22433, 7087,14317,14317,14317,14317,14317,14317,14317, 14317,14317,22719, 140,22832, 1617, 7088,22720, 2023,10694, 5685, 1597, 1597,22979,22555, 140,21963,21963,21963,21963, 21963,21963,18610,20281,10694,21964, 1606,12894,20283,22598, 20271,18292,22631,22187, 7088, 1597, 1597, 1618, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20320, 1597, 1597, 22912,22238,20322,22651,20312,22707,22867,16341,10694, 1597, 1597, 1597, 1597, 1597, 1597, 1597,14315,22871,14335,15483, 23648, 2520,22708,10694,18611,22709,22258,22624,22634, 7092, 14317,14317,14317,14317,14317,14317,14317,14317,14317, 1606, 1597, 1597, 139, 139,11749, 139, 836, 139, 139, 139, 139, 139, 139, 139,22155, 139, 139,14335,14335,14335, 14335,14335,14335,14335,14335,14335, 139, 139, 139, 139, 139, 139, 139,22155,20281,20320,14317,19550, 572,20283, 20322,20271,22683,23118,22236,23114,14317,14317,14317,14317, 14317,14317,14317,14317,14317,20320, 139, 139, 139,22655, 20322,22978,20312, 7100, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 6403,22253, 6403, 1617,14335,14335,14335,14335, 14335,14335,14335,14335,14335, 3077,21965,21965,21965,21965, 21965,21965,21965,21965,21965,22237,16770,14333, 140,10768, 22254,16771,16767, 2564,23991,22805,22236, 1618,14317,14317, 14317,14317,14317,14317,14317,14317,14317,24030, 140, 7105, 2555, 2555,23003, 2555, 7129, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22808, 2555, 2555,14335,14335,14335,14335,14335, 14335,14335,14335,14335, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22688,15180,23009,17810, 455, 3682, 3742, 8136, 8152, 22189, 8924, 784,15381,15382, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2564, 2555, 2555, 6420, 6420, 6420, 6420, 6420, 6420, 6420, 6420, 6420,15181, 6420,21534,21969, 23140,20089,16808,22256,22985,22189,15383, 434, 3077,21535, 21535,21535,21535,21535,21535,21535,21535,21535,22626,20090, 22819,23056,20281,22473,10611, 257, 2564,20283,22822,20271, 140,14335,14335,14335,14335,14335,14335,14335,14335,14335, 20851,22535, 7130, 2555, 2555,20271, 2555, 5712, 2555, 2555, 2555, 2555, 2555, 2555, 2555,23142, 3697, 2555,22294,22294, 22294,22294,22294,22294,22294,22294,22294, 4360, 2555, 2555, 2555, 2555, 2555, 2555,22653,21047,20320,20320,24073, 4351, 22500,20322,20322,22682,20312,22252,22294,22294,22294,22294, 22294,22295,22296,22296,22296,22319,23411, 2564, 2555, 2555, 3703, 2555, 2555,22322, 2555, 6423, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 3090, 3697, 2555, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4358, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2564, 2555, 2555, 2555, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 2555, 2555,20936, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,23224, 2555, 7133,14335, 14335,14335,14335,14335,14335,14335,14335,14335, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22867,23482,22327,20937,24088, 7134,22137, 784,15381,15382,22330,22871,14335,14335,14335, 14335,14335,14335,14335,14335,14335,14317, 140, 7135, 2555, 2555, 2555, 2555, 8334, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,20938, 2555, 7133,15383,22260,22557,22922, 10727,22205, 1078,22679,22534, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 7136,22155,10611, 140,23533, 7134,14317,14317, 14317,14317,14317,14317,14317,14317,14317,22255,22756,22832, 140,15384,10727,22757,16815, 7135, 2555, 2555, 2555, 2555, 22766, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 20320, 2555, 7133,20320,22684,20322,15189,20312,20322,22872, 20312,16768, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22235, 22876,23536,22155, 140, 7140, 1617,19629,19629,19629,19629, 19629,19629,19629,19629,19629,16769,21963,21963,21963,21963, 21963,21963, 7135, 2555, 2555, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1618, 2555, 7133, 22296,22296,22296,22296,22296,22296,22296,22296,22296, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 7141,23585,22187,24094, 140, 7140,14335,14335,14335,14335,14335,14335,14335,14335, 14335, 8334, 5904,24094, 1078, 1078,22883,22883,22884, 7135, 2555, 2555, 2555, 2555,22633, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2696, 2555, 7133, 1572, 307,23008, 22187,22867,22872, 140, 5905,16810, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22257, 2697, 1234,10694,22599, 7143,22648, 7144,22652, 140,20281,22724, 3077, 2698,20320,20283,16811, 20271,10694,20322,22527,20312,22725, 7145, 7146, 7146, 5906, 14317,23227,11748, 2564,22941,20054,16771, 7147, 2555, 2555, 22543, 2556, 3085, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558,20492,20492,20492,20492,20492,20492,20492, 20492,20492, 2558, 2555, 2555, 2555, 2555, 2555, 2555,22964, 20320,22832,23151,22187, 5043,20322,23582,20312,22508,22835, 7149,20498,20498,20498,20498,20498,20498,20498,20498,20498, 22837,22189, 2564, 2555, 2555, 2555, 2555, 2555,22840, 2556, 5753, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 2558, 2555, 2555, 2555, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4363, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2564, 2555, 2555, 2555, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 2555, 2555, 8334, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22155, 2555, 2555,20507,20507,20507,20507,20507,20507, 20507,20507,20507, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 22842,22847,23621, 140,22753, 3682, 7153,23113,22845,22850, 14335,14335,14335,14335,14335,14335,14335,14335,14335,22207, 22419,23121,24099, 2564, 2555, 2555, 139, 139, 8334, 139, 836, 139, 139, 139, 139, 139, 139, 139,22420, 7155, 139,20516,20516,20516,20516,20516,20516,20516,20516,20516, 139, 139, 139, 139, 139, 139, 139,19588,22155,22421, 140,23239, 572, 531,22832,14335,14335,14335,14335,14335, 14335,14335,14335,14335,22670,22836,22189,22832,23981,22671, 139, 139, 139, 139, 139,22835, 144, 139, 336, 139, 139, 139, 139, 139, 139, 337, 139, 139,22316,22316, 22316,22316,22316,22316,22316,22316,22316, 139, 139, 139, 139, 139, 139, 139,22259,22867, 1078,19635,22832, 589, 140,16809,24099,22813,22258, 8334,14335,14335,14335,14335, 14335,14335,14335,14335,14335,19636,22832, 146, 139, 139, 139,22189,23007,22832,22835,22832, 7170,22316,22316,22316, 22316,22316,22317,22318,22318,22318,19637, 140,22155, 590, 139, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 139, 139,17852, 7189, 139,22318,22318,22318,22318,22318, 22318,22318,22318,22318, 139, 139, 139, 139, 139, 139, 139,23105,23139, 140, 140,22155, 314,20683,20683,20683, 20683,20683,20683,20683,20683,20683,14317,22162,22207,24099, 23456,23241,22165,23674, 139, 139, 139, 139, 139, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 139, 139, 22776, 7189, 139, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 139, 139, 139, 139, 139, 139, 139,23190, 23192,14335, 140,22832, 314,20740,20740,20740,20740,20740, 20740,20740,20740,20740,22836,12894,16770,24094,14194,22207, 22867,16771, 139, 139, 139, 139, 139, 139,22870, 139, 139, 139, 139, 139, 139, 139, 139, 139, 315, 313, 139, 7194, 7195, 7195, 7195, 7195, 7195, 7195, 7195, 7195, 5805, 139, 139, 139, 139, 139, 329, 7195, 7195, 7195, 7195, 7195, 7196, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 139, 139, 139, 322, 7195, 7195, 7195, 7195, 7195, 7195, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 7198, 7199, 7199, 7199, 7199, 7199, 7199, 7199, 7199, 7200, 1078, 22189,22107,14315, 434,23061, 7199, 7199, 7199, 7199, 7199, 7201,22387,22387,22387,22387,22387,22387,22387,22387,22387, 22678, 257,22867,22107,20320,23059,22942,22383,22984,20322, 22870,20312, 7199, 7199, 7199, 7199, 7199, 7199, 7203, 7204, 7204, 7204, 7204, 7204, 7204, 7204, 7204,22102, 7624,23228, 19567,23150,19029, 329, 7204, 7204, 7204, 7204, 7204, 7205, 22507,22507,22507,22507,22507,22507,22507,22507,22507,22508, 22509,22509,22509,22509,22509,22510,22511,22511,22511,22508, 140, 7204, 7204, 7204, 7204, 7204, 7206, 7209, 7210, 7210, 7210, 7210, 7210, 7210, 7210, 7210, 7211,16788,22832,22207, 14315,22878,19568, 7210, 7210, 7210, 7210, 7210, 7212,22511, 22511,22511,22511,22511,22511,22511,22511,22511,22508,12865, 12865,12865,12865,12865,12865,12865,12865,12865,22878, 8334, 7210, 7210, 7210, 7210, 7210, 7210, 315, 315, 315, 315, 315, 315, 315, 315, 315, 139,22893,24094,22942,22189, 23180,22625, 315, 315, 315, 315, 315, 539,20281,22946, 23989, 140,23144,20283, 531,20271,22495,22495,22495,22495, 22495,22495,22495,22495,22495,21013,23154,22565, 140, 7217, 315, 315, 315, 315, 315, 139, 139, 1275, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 3161, 3791, 139, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 139, 139, 139, 139, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4453, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4455, 139, 139, 139, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 139, 139, 24094, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3161, 6522, 139, 5837, 5837, 5837, 5837, 5837, 5837, 5837, 5837, 5837, 139, 139, 139, 139, 139, 139, 139, 3161, 3161, 3161, 3161, 3161, 3792, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 139, 139, 139, 139, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 7232, 7233, 7233, 7233, 7233, 7233, 7233, 7233, 7233, 6533, 9654,14335,19605,23625,22205,22819, 7233, 7233, 7233, 7233, 7233, 7234,22123, 8922,22124,22207,22823,14315, 8334, 20281, 9655,22689,24094,22594,20283,22796,20271, 8136, 8152, 898,22126,14092, 9656, 7233, 7233, 7233, 7233, 7233, 7233, 7235, 7236, 7236, 7236, 7236, 7236, 7236, 7236, 7236, 7237, 16830, 140,22539,14333, 531,19606, 7236, 7236, 7236, 7236, 7236, 7238,16812,22526,14093,23229,23183,16813, 9657,12865, 12865,12865,12865,12865,12865,12865,12865,12865, 1070, 898, 140, 8068,14094, 7236, 7236, 7236, 7236, 7236, 7236, 7241, 7242, 7242, 7242, 7242, 7242, 7242, 7242, 7242, 7243,14095, 22107,22107,23869,22564,22867, 7242, 7242, 7242, 7242, 7242, 7244, 1071,22870, 8069,12865,12865,12865,12865,12865,12865, 12865,12865,12865,22611,22102,22102,14141,22566, 4455, 6392, 22906, 8070, 7242, 7242, 7242, 7242, 7242, 7242, 7249, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 7250, 5852,22541,20277, 22107, 3291,22809,14165, 7250, 7250, 7250, 7250, 7250, 7251, 14166, 5705, 5705,23048,22567,22567,22567,22567,22567,22567, 22567,22567,22567,20271,22102,22205,20277,22881,23074, 139, 8334, 7250, 7250, 7250, 7250, 7250, 7250, 7253, 7254, 7254, 7254, 7254, 7254, 7254, 7254, 7254, 7255, 8884,22205,22761, 20271,23622,22680, 7254, 7254, 7254, 7254, 7254, 7256,20320, 22762,22882, 140, 464,20322, 531,20312,19999,19999,19999, 19999,19999,19999,19999,19999,19999,21052,22189, 8105,22205, 7254, 7254, 7254, 7254, 7254, 7254, 139, 139, 1572, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 270, 139, 139,22744,22986,22207, 784, 1079, 1234,10612,23223,22872, 139, 139, 139, 139, 139, 139, 139,22875,22745,23016, 464,22746, 4468,14248,14248,14248,14248,14248,14248,14248, 14248,14248,21906,21906,21906,21906,21906,21906, 1080,20166, 4455, 139, 139, 7263, 7264, 7264, 7264, 7264, 7264, 7264, 7264, 7264, 6560, 1572,23191, 270, 139,22533,22967, 7264, 7264, 7264, 7264, 7264, 7265,22832,11652,22973,14335,22832, 22832, 1234,22637,22835,10614, 8334,22258,22835,22835,22811, 22448,22448,22448,22448,22448,22448, 7264, 7264, 7264, 7264, 7264, 7264, 7266, 7267, 7267, 7267, 7267, 7267, 7267, 7267, 7267, 3077, 307, 8884,22501,22814,22964, 140, 7267, 7267, 7267, 7267, 7267, 7268,19635,22508, 140,24168,23012, 2564, 23250,22894,22414,22414,22414,22414,22414,22414,16812, 140, 15681,22415,19636,16813, 8105, 7267, 7267, 7267, 7267, 7267, 7269, 139, 139, 1572, 139, 1808, 139, 139, 139, 139, 139, 139, 139,19637, 3791, 139,23258,20320, 8334, 8334, 22926, 1234,20322,17287,20312, 139, 139, 139, 139, 139, 139, 139,20927,22654, 139,14317, 140, 3809,23437,24064, 22416,22416,22416,22416,22416,22416,22416,22416,22416, 8334, 140, 140,20845, 531, 531, 4455, 139, 139, 3799, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,22681, 3791, 139, 139,20320, 307,23262,22419, 1234, 20322, 140,20312, 139, 139, 139, 139, 139, 139, 139, 6392, 8334, 8334, 8334, 7624, 3809,22420,22935,22953,23665, 22207,22440,22440,22440,22440,22440,22440,22440,22440,22440, 434,10727,24246, 4455, 139, 139, 3799,22421, 307, 307, 307, 307, 5705, 140, 140, 140, 140,23195, 257,20858, 1275, 7275, 246, 246,22983, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 7285, 7285, 7285, 7285, 7285, 7285, 7285, 7285, 7285, 5885, 246, 246, 246, 246, 246, 246, 7285, 7285, 7285, 7285, 7285, 7286, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 7285, 7285, 7285, 7285, 7285, 7285, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 7288, 7288, 7288, 7288, 7288, 7288, 7288, 7288, 7288, 253,22483,22419,24252,23367, 140, 22942, 7288, 7288, 7288, 7288, 7288, 7289,22923,22945, 2023, 22207, 1379,24020,22484,22420,22431,22431,22431,22431,22431, 22431,22939,22889, 1044,22432, 7624,22483, 1606, 7288, 7288, 7288, 7288, 7288, 7288, 446,22421, 2023,21949,21949,21949, 21949,21949,21949,22900,22484, 7291, 7292, 7293, 7294, 7294, 7294, 7294, 7294, 7294, 1606,22927,20794, 140, 3077,23006, 531, 5175, 5175, 5175, 5175, 5175, 5176,14248,14248,14248, 14248,14248,14248,14248,14248,14248, 2564,14248,14248,14248, 14248,14248,14248,14248,14248,14248,18404, 7168, 5175, 5175, 5175, 5175, 5175, 5175, 2648,23265, 7295, 7295, 7295, 7295, 7295, 7295, 7295, 7295, 7295, 4494,23269,22187,22715,23645, 23619, 7169, 5173, 5173, 5173, 5173, 5173, 5174,17439, 1572, 17301,22930,16360,22890,22642,21482,22638,14248,14248,14248, 14248,14248,14248,14248,14248,14248,22641, 1234,17302, 5173, 5173, 5173, 5173, 5173, 5173, 5895, 5895, 5895, 5895, 5895, 5895, 253, 253, 253,16361,23010,22887,20858,22964,18311, 22615, 253, 253, 253, 253, 253, 256,22508,23065,22753, 16763,14189,23891,14317,22970,20145,20145,20145,20145,20145, 20145,20145,20145,20145,22937,22936,23225,20927, 253, 253, 253, 253, 253, 253, 265, 265, 1275, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 5919, 265, 265, 265, 265, 265, 265, 7311, 7311, 7311, 7311, 7311, 7312, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 7311, 7311, 7311, 7311, 7311, 7311, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 7314, 7314, 7314, 7314, 7314, 7314, 7314, 7314, 7314, 274, 1617,22205,22752, 23660,23987,23102, 7314, 7314, 7314, 7314, 7314, 7315, 784, 8846, 8847,23011,23017,22895,14117,22895,22433,22433,22433, 22433,22433,22433,22433,22433,22433,20312,23020,23014, 1618, 7314, 7314, 7314, 7314, 7314, 7314, 477,21916, 2023,22424, 2023, 5904,22207, 8848,20929,20937,12845, 7317, 7318, 7319, 7320, 7320, 7320, 7320, 7320, 7320, 1606,22896, 1606, 140, 23144, 5903,24362, 5201, 5201, 5201, 5201, 5201, 5202,22536, 22925,21917,23181, 5905,22892,21939, 140,22444, 8849,18661, 14248,14248,14248,14248,14248,14248,14248,14248,14248,22187, 5201, 5201, 5201, 5201, 5201, 5201, 2679,22187, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 4528, 5906,21940, 10768,23742,22911,22964, 5199, 5199, 5199, 5199, 5199, 5200, 22902,22176,22508,22177,20936, 3291,16709,14165,20320,21482, 16360,18662,22647,20322,14166,20312,22155,22978,22903,22179, 23254, 5199, 5199, 5199, 5199, 5199, 5199, 5929, 5929, 5929, 5929, 5929, 5929, 274, 274, 274,20937, 140,24363,22904, 23119,20858,16361, 274, 274, 274, 274, 274, 277, 6392, 22938,14248,14248,14248,14248,14248,14248,14248,14248,14248, 22441,22441,22441,22441,22441,22441,22441,22441,22441,23047, 274, 274, 274, 274, 274, 274, 1769,22934,23018,23759, 24369, 5705,22451,22451,22451,22451,22451,22451,22451,22451, 22451, 7354,20053,20053,20053,20053,20053,20053,20053,20053, 20053,22643,20068, 3077,18341,22905,15559,23057, 1770,20277, 2204,20068, 898, 3077,14092, 1771,22107,22921,14222,23896, 20069, 2564,18342,22414,22414,22414,22414,22414,22414,20069, 1772, 2564, 1773,20271, 1774,14117,19605, 1775, 1776, 3742, 22102,20833, 1777,19223, 1572, 1778,14093, 1779,22920, 1780, 20833, 1781, 1782, 1783, 1769, 5967,22455,22455,22455,22455, 22455,22455, 1234,23015,14094,22456,12845,22888,22915,22915, 22916,22187,22419, 4410,22540,12896,23029, 3077, 434,22715, 23167,14095,15392,16830,22714,12896, 1770, 1617,19606, 3077, 22420, 4411, 8110, 1771,22622, 2564, 257,20827,20077,20077, 20077,20077,20077,20077,20077,20077,20077, 2564, 1772,22207, 1773,22421, 1774,23066,22933, 1775, 1776,22982,22102, 1618, 1777, 1376, 1617, 1778, 8111, 1779,22917, 1780,22917, 1781, 1782, 1783, 1769,22465,22465,22465,22465,22465,22465,22107, 23240, 1377,22466,21206,21206,21206,21206,21206,21206,21206, 21206,21206, 3077, 1042, 1618,20929,23067, 139,15464,23030, 464,23438,15180,22102, 1770,23019, 3742, 464,12896,22918, 2564, 1771, 7355,20317,17431, 139, 139, 139, 139, 139, 139, 139, 139, 139,22998,10612, 1772,23094, 1773,23005, 1774,21012,22999, 1775, 1776, 270,15181,20312, 1777,23050, 20089, 1778, 270, 1779,22470, 1780,22932, 1781, 1782, 1783, 3291, 3742, 3292,23993,22189,21013,22189,10613,20090, 1768, 21263,21263,21263,21263,21263,21263,21263,21263,21263,24251, 22857,22857,22857,22857,22857,22857,22857,22857,22857,20851, 21012, 784, 8846, 8847, 3293,20089,22860,22987,23051,23141, 1275, 3294,10614,22877,22877,22877,22877,22877,22877,22877, 22877,22877,22107,20090,21013,22136, 3295,14192, 3296,22872, 3298, 139,14193, 3299, 3911, 8848,23378,12906, 3301,23033, 5904, 3302,10612, 3303,20851, 7356,22102, 3305, 3306, 3307, 1769,22931,19649, 5903,19029,20774,20774,20774,20774,20774, 20774,20774,20774,20774,22885,22885,22885,22885,22885,22885, 22997,14117, 5905,22886,10613, 1078, 1572,12913,23036,22819, 23477,22553, 1770,12865,23013, 1572,14192,12913,12865, 1771, 16527,14193,22102,20277, 1234, 139,12906,22137,22991,22992, 20277,23054,12845, 1234, 7357,18305, 1773, 5906, 1774,10614, 16528, 1775, 1776,23077,10768,14146, 1777,20271, 2216, 1778, 14147, 1779,16529, 1780,20271, 1781, 1782, 1783, 1769,20793, 20793,20793,20793,20793,20793,20793,20793,20793,22431,22431, 22431,22431,22431,22431,22899,22899,22899,22899,22899,24086, 2023,15500,23037, 7358,22107,23217, 2696,22989,22620, 2023, 1770,12913,23158,23052,10740, 2023, 8334, 1771, 1606,23060, 22897,22897,22897,22897,22897,22897, 2697, 1606,22102,22898, 14225,23062, 1772, 1606, 1773,14226, 1774,22187, 2698, 2214, 1776, 2023,23040,24370, 2215,22187, 140, 1778, 140, 1779, 898, 1780,23000, 1781, 1782, 1783, 1769,20277,23063, 1606, 23004,18327,22899,22899,22899,22899,22899,22899,22899,22899, 22899,22155,22913,22913,22913,22913,22913,22913,22913,22913, 22913,20271,22102, 2023,14093,22107,22662,23871, 1770,22107, 140,22609, 1617, 3077,23104, 1771,22107,23064,22155,23058, 23261, 1606,14094,22924,22924,22924,22924,22924,23120,22102, 1772, 2564, 1773,22102, 1774, 140,23069, 1775, 1776,14095, 22102, 1416, 1777, 7359, 1618, 1778, 6392, 1779,24371, 1780, 22664, 1781, 1782, 1783, 3291,24367, 3292,22907,22907,22907, 22907,22907,22907, 1768,23062,23270,22908, 7361, 7361, 7361, 7361, 7361, 7361, 7361, 7361, 7361,23274,22189, 5705,22959, 22960,22961,22962,22962,22962,22962,22962,22962, 3293,22107, 22207,23063,22109, 1070,23255, 3294,16527,22112,21441,22914, 22914,22914,22914,22914,22914,22914,22914,22914,23152,23068, 3295,23527, 3296,22102, 3298,22102,16528, 3299, 3911,23153, 3077,22155, 3301,23182,24373, 3302, 1071, 3303,16529, 3304, 23052, 3305, 3306, 3307, 1769, 898,22988,23001, 2564,22914, 22914,22914,22914,22914,20826,20826,20826,20826,20826,20826, 20826,20826,20826,23108,22455,22455,22455,22455,22455,22455, 3077,22107,12865,16530,20999, 3077, 1770,12865,23049,14093, 23387,22155,24374, 1771,20277, 3077,23070,20279, 2564,22508, 23109,22205,23053, 2564,20277,22102,14117,14094, 1772,22205, 1773,20277, 1774, 2564,14146, 1775, 1776,23078,20271,14147, 1777,23440,22155, 7374,14095, 1779,23025, 1780,20271, 1781, 1782, 1783, 1769, 1617,22162,20271,23093,12845,14315,22107, 23071, 6670, 1617,23122,22924,22924,22924,22924,22924,22924, 22924,22924,22924,20842,20842,20842,20842,20842,20842,20842, 20842,20842,22611,22102, 1770, 1618, 1275, 1617, 898,22187, 8068, 1771,22107,20277, 1618,22109,20317,22187,22465,22465, 22465,22465,22465,22465,23073,23076, 1772,23156, 1773,23353, 1774,15637,23235, 1775, 1776,22155,22102,20271, 1777, 1618, 20312, 1778, 8069, 1779,22677, 1780,23801, 1781, 1782, 1783, 1769,15180,22107,22951,22951,22951,22951,22951,22951, 6670, 8070, 1618,22952,23112, 139, 139, 139, 139, 139, 139, 139, 139, 139,22928, 1275,23087,22102, 8071, 8855,14317, 23526,20277, 1770,23002,22187,15181,23162,23226,23055, 1771, 23101,22155,22187,21015,18497,23575,22501, 9654,22972,22972, 22972,22972,22972,22972, 1772,20271, 1773,22508, 1774,22155, 20277, 2214, 1776,21006,22665,23116, 2215, 9655,23075, 1778, 22207, 1779,22187, 1780,22187, 1781, 1782, 1783, 7375, 9656, 22187, 784,15381,15382,20271,21060,23169,22501, 2224,22972, 22972,22972,22972,22972,22972,22972,22972,22972,22508,24375, 14335,23193,22155,22995,21644,22990,23072,20317,23243,20312, 2225,23117,23194,23127, 9657,15383,22501, 2226,22972,22972, 22972,22972,22972,22972,22972,22972,22972,22508, 784,15381, 15382,20312, 2227,10611, 2228,22669, 2229,21040,23052, 2230, 2231,23095,16805,23483, 2232,14335, 139, 2233,22137, 2234, 15384, 2235,22107, 2236, 2237, 2238, 2223,20317,23242,22590, 12793, 8136,15383,23265,22591,24398, 2224, 7376, 7376, 7376, 7376, 7376, 7376, 7376, 7376, 7376,22102,21051,20277,21051, 10611,20312,20277,22155,23079,23096, 139,23097, 2225,21014, 22996,21011,22107,23412,21015, 2226,22675,15384,16543,23086, 20317,21052,20271,21052,22591,22205,20271,23106,23100,22724, 2227,22187, 2228,22205, 2229, 8147,22102, 2230, 2231,22187, 23157,23391, 2232,23197,20312, 2233,23131, 2234, 140, 2235, 23394, 2236, 2237, 2238, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222,14248,14248,14248,14248,14248,14248,14248, 14248,14248,14248,14248,14248,14248,14248,14248,14248,14248, 14248,23098,23108,22881,23882,23311,14248,14248,14248,14248, 14248,14248,14248,14248,14248,14335,23244,22187,22155, 2739, 22155,16813,20317,23098,23123,22187,23170,22668, 7377,23109, 20317,22189,22207,21046,23084,23111, 2740,22882,23124, 2741, 3291, 8334, 3955,23085,23088,20317,20312,23115,21646, 2222, 22189,22669, 3956,23099,20312,14248,14248,14248,14248,14248, 14248,14248,14248,14248,23089,23147,23188,20317,20317,20312, 23148,23189, 140, 140, 3957,22207, 531,23145,23615, 1078, 23125, 3958,14248,14248,14248,14248,14248,14248,14248,14248, 14248,20312,20312,24028,23098,23185, 3959,20317, 4628,20317, 3962,23146,23186, 3963, 4625,23128,23265,22205, 3965,23756, 23126, 3966,21050, 3967,23159, 4629,22187, 3969, 4630, 3971, 3291,20312, 3955,20312,22187,22187,23187,23164,23168, 2222, 22726,23161, 3956,22187,22187,22205,22187,23203,20317,15553, 23090,23160,22187,22205,22187,21053,23199,22187,22242,23163, 21054,22187,22718,22712, 3957,22187,22187,11847,23165,22187, 23171, 3958,20312,23172,22187,22187,22712,23662,24399,22187, 23275,22205,15649,22187,19635,23173, 3959,22187, 3960,22205, 3962,23279,22714, 3963, 4625,23159,24032,22207, 3965, 4638, 23260, 3966,19636, 3967, 7381, 3968,13039, 3969, 3970, 3971, 7401, 5294, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222,23200,23160,19637,22205,22187,22719,22761,22187,22205, 23202,22720,22205,22187,22205,22205,22187,22205,23198, 1078, 23166,22763,22205,22752,23208,23205,22264,22205,23201,22205, 22749,15678,24405,22205,22205,22205,15679,22205, 3327,23214, 23204,22205,22205, 5295, 139, 139,23270, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 150, 150, 7416, 7416, 7416, 7416, 7416, 7416, 7416, 7416, 7416, 6054, 139, 139, 139, 139, 139, 139, 7416, 7416, 7416, 7416, 7416, 7417, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 7416, 7416, 7416, 7416, 7416, 7416, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,14315, 140, 1078, 22751,23403, 329, 150, 150, 150, 150, 150, 162,22749, 23406,22205,22205,22205,23206,23213,23280,23265,23200,22205, 22205,22205,23211,23776,19567,23210,23275,23284,23269,14315, 150, 150, 150, 150, 150, 150, 7419, 7419, 7419, 7419, 7419, 7419, 7419, 7419, 7419,23201,23451, 1078,23983,12865, 23233,22205, 7419, 7419, 7419, 7419, 7419, 7420,22819,22205, 15644,22187,14149,23207,22187,23230,22822,22205,22756,22187, 22720,16788,22187,22757,23265,22205,19568,22189,23231, 7419, 7419, 7419, 7419, 7419, 7419, 7422, 7422, 7422, 7422, 7422, 7422, 7422, 7422, 7422,23209, 8334, 1078, 1275,23396,22205, 22205, 7422, 7422, 7422, 7422, 7422, 7423,22205,22205,22205, 23247, 784, 1079,23257, 140,22757,23248,22205,22755,23401, 1416,10768, 307,23370,23377,23322,23323, 140, 7422, 7422, 7422, 7422, 7422, 7422, 7425, 7426, 7427, 7428, 7428, 7428, 7428, 7428, 7428, 5344,23212, 1080,23396,23666, 1078,22205, 5343, 5343, 5343, 5343, 5343, 5345,19635,22205,23324,22829, 23265,23270,23275, 139,23280,23259,22751,23264,23268,23273, 23278, 1078,23283, 139,19636,23676, 2023, 5343, 5343, 5343, 5343, 5343, 5343, 7429, 7429, 7429, 7429, 7429, 7429, 7429, 7429, 7429, 1078, 139, 1606,19637,20794,23285,23681, 7429, 7429, 7429, 7429, 7429, 7430,23288,23298,23298,23298,23298, 23298,23298,23298,23298,23298,23295,23300,23265,23837,23686, 7168, 1078,23295,23299,23303,23268, 7429, 7429, 7429, 7429, 7429, 7429, 2840, 139, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5357, 7169,23319, 140,19029,23691, 3077, 5356, 5356, 5356, 5356, 5356, 5358,19028,19028,19028,19028, 19028,19028,19028,19028,19028, 139,23340, 2564, 139,20827, 23799,23314,23314,23314,23314,23314, 1572, 5356, 5356, 5356, 5356, 5356, 5356, 7435, 7435, 7435, 7435, 7435, 7435, 7435, 7435, 7435, 1572, 3077, 1234,24406,23370,19029, 3077, 7435, 7435, 7435, 7435, 7435, 7436, 139,22419,23374, 139,23316, 1234, 2564,21482,22881,14335,23311, 2564,23315,24077,23346, 23349,21916,23310,22424,22420,22419, 7435, 7435, 7435, 7435, 7435, 7435, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5366,23313,22420,20858,22421,23325,22882, 5365, 5365, 5365, 5365, 5365, 5367,17301,21917, 139,23336,23317,23350, 22102,23320,23318,24407,22421,22137,23364, 139, 139,21939, 23478,22444,17302, 2023,22902, 5365, 5365, 5365, 5365, 5365, 5365, 5362, 5362, 5362, 5362, 5362, 5362, 5362, 5362, 5362, 4018, 1606,22903,18311, 1379,23339, 139, 5362, 5362, 5362, 5362, 5362, 5363,21940, 139, 139, 1044, 139, 139,23338, 23330,23355, 139,22904,23337, 139, 139, 140,22885,22885, 22885,22885,22885,22885, 5362, 5362, 5362, 5362, 5362, 5362, 7441, 7441, 7441, 7441, 7441, 7441, 7441, 7441, 7441, 1572, 434,23433, 7168,23790, 139, 139, 7441, 7441, 7441, 7441, 7441, 7442, 139,22902, 139, 139, 139, 1234, 257,23413, 23844,23368,22104,22104,23357,23447, 7169,23331,23326,23326, 23327,22903,22902, 7441, 7441, 7441, 7441, 7441, 7441, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5379, 2023, 22903, 434,22904,23347, 139, 5378, 5378, 5378, 5378, 5378, 5380,18341,20068,20068,23333,23370,23415, 1606, 8884, 257, 23920,22904,23348,23373,22137,22137,23439,23369,18404,18342, 20069,20069, 5378, 5378, 5378, 5378, 5378, 5378, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 5375, 4030, 455, 8105, 19223,20833,20833,23528, 5375, 5375, 5375, 5375, 5375, 5376, 17439, 139,22501,22155,23387,22187, 6392,20936,23358, 139, 22197,23375,23334,22508,23334,22897,22897,22897,22897,22897, 22897, 5375, 5375, 5375, 5375, 5375, 5375, 7447, 7447, 7447, 7447, 7447, 7447, 7447, 7447, 7447, 2023,21482, 5705,20937, 23576, 139,23387, 7447, 7447, 7447, 7447, 7447, 7448, 139, 22187,22508,23577,23462, 1606,23335,23441,14117,23389,23443, 8884,23376,22187,23445, 140, 7093,23344,23344,23345,20858, 7447, 7447, 7447, 7447, 7447, 7447, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5393,24131, 3077,12845,23403, 23391, 8105, 5392, 5392, 5392, 5392, 5392, 5394,23406,23394, 139,23476,24009,23362,23446, 2564,23399,22197,12911,24403, 23408,14227,20271, 3742,23343,23343,23343,23343,23343, 5392, 5392, 5392, 5392, 5392, 5392, 5389, 5389, 5389, 5389, 5389, 5389, 5389, 5389, 5389, 4046, 3077, 8111,23409,23359,23387, 139, 5389, 5389, 5389, 5389, 5389, 5390,20089,22508, 139, 22102,24409,15558, 2564, 140,22137,12913,15559,14248,23375, 23485,12913,23430,22978,16360,20090, 307,23416, 5389, 5389, 5389, 5389, 5389, 5389, 7453, 7453, 7453, 7453, 7453, 7453, 7453, 7453, 7453, 6103,23366,23865,20851,23771,24410, 139, 7453, 7453, 7453, 7453, 7453, 7454,16361, 139,23459, 464, 6392,23382,23382,23382,23382,23382,23382,23382,23382,23382, 140,22907,22907,22907,22907,22907,22907, 7453, 7453, 7453, 7453, 7453, 7453, 7456, 7456, 7456, 7456, 7456, 7456, 7456, 7456, 7456, 5705,16360, 270,23481, 140, 139, 139, 7456, 7456, 7456, 7456, 7456, 7457,23383,23383,23383,23383,23383, 23384,23385,23385,23385,22102,23436,21997,21997,21997,22137, 3742, 3742, 464,23748, 5904,16361, 7456, 7456, 7456, 7456, 7456, 7456, 7459, 7460, 7461, 7462, 7462, 7462, 7462, 7462, 7462,22951,22951,22951,22951,22951,22951, 139, 5405, 5405, 5405, 5405, 5405, 5406, 4410,20089, 5905, 270,23365,23468, 20271,22670, 1275,23427,23360,22189,22671,22155,23990,24261, 23471,20271, 4411,20090, 434, 5405, 5405, 5405, 5405, 5405, 5405, 7463, 7463, 7463, 7463, 7463, 7463, 7463, 7463, 7463, 4726,23421, 257,22902,20851,23361,23470, 5403, 5403, 5403, 5403, 5403, 5404,20271,23457,23463,20271,12894,12911,23532, 24300,22903,20271,23472,20271,23414,24411,20271,22155,23332, 14195,14228,22102,20271, 5403, 5403, 5403, 5403, 5403, 5403, 139, 139,22904, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 561, 561, 561, 561, 561, 561, 561, 561, 561, 150, 139, 139, 139, 139, 139, 329, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 7465, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139,23422, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2864,21482, 1070, 21916,23733,23743,20271,20271,23375,23469, 139, 139, 139, 139, 139, 139, 139,20271,21010,23475,10613,24441, 7476, 531,23314,23314,23314,23314,23314,23314,23314,23314,23314, 20858,24361, 1071,23734,21917, 139,23363, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,10614, 139, 2864,22722,14117,21976,23757,23667, 1234,10612,20271,20312, 139, 139, 139, 139, 139, 139, 139, 7477,23474,20271,20312,23520, 7476,10612,21412,21412, 21412,21412,21412,21412,21412,21412,21412,12845,22207, 1078, 140,24029,24447,10613, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,10613, 139, 4756,24246,22881, 2696,23311,23792, 1234,23525,23417, 23442, 139, 139, 139, 139, 139, 139, 139,10614,20909, 19635,23671,14248, 7481, 2697,21428,21428,21428,21428,21428, 21428,21428,21428,21428,10614,10768, 2698,22882,19636,23936, 23735, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4756,19637, 22102,22670,23772,23515, 1606,22137,22671,22155, 139, 139, 139, 139, 139, 139, 139, 7482,24439,23431,20271,20312, 7481,22618,23328,23328,23328,23328,23328,23328,21011,20271, 20312,23329, 140,23473, 140,24759, 139,22157, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,22189,23744,23323,23434, 24118, 1606,23559,19217,22189, 139, 139, 139, 139, 139, 139, 139,23513,22102,21001,20271,23521, 7486,22137,23341, 23341,23341,23341,23341,23341,23479,20271,20312,23342,22186, 23324,21002,23574, 139,21003, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139, 23486, 139, 139,24694, 3077,22137,23435, 140, 2564,20312, 21947,22617, 139, 139, 139, 139, 139, 139, 139, 7487, 20312, 2023, 2564,22204, 7486,20936,23343,23343,23343,23343, 23343,23343,23343,23343,23343,22719, 1275,23791,23765, 1606, 22720,22187, 2866, 139, 139, 139, 139, 3077, 139, 139, 139, 139, 139, 139, 139, 139, 139,20937, 139, 139, 20845,24146,23750,23444,23738, 2564,22155,12793,20271, 139, 139, 139, 139, 139, 139, 139,23497,22673,21011,20271, 24026, 7491,22187,21500,21500,21500,21500,21500,21500,21500, 21500,21500,20938,22722,22690,23480, 1572,23838,24364, 2866, 139, 139, 139, 139, 1275, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1234, 139, 139,23385,23385,23385, 23385,23385,23385,23385,23385,23385, 139, 139, 139, 139, 139, 139, 139, 7492,23403,20271,23670,23499, 7491,23185, 784,15381,23424,23406,22102, 140,20271,23484,22590,22137, 23407, 1078, 140,22591,24144,23408, 2866, 139, 139, 139, 139,16527, 139, 139, 139, 139, 139, 139, 139, 139, 139,16527, 139, 139,15383,23744,23323,21939,23676,23758, 23616,23418,23409, 139, 139, 139, 139, 139, 139, 139, 22205,16528,10611,16529,20271, 7495,22102,22102, 784,15381, 23425,22137,22137,16529,23501,20271,22614,20271,23324,15384, 23487,21940,23500, 2866, 139, 139, 139, 139,20271, 139, 139, 139, 139, 139, 139, 139, 139, 139,16530, 139, 139,23419,15383,22190,23784,23746,23788,24092,16530,17581, 139, 139, 139, 139, 139, 139, 139, 7496,22102,22208, 10611,23502, 7495,22137,22102, 784, 8846, 8847,23488,22137, 11743,10694, 898,23490,23429,23617,20858,15384,16361, 140, 2866, 139, 139, 139, 139,22205, 139, 139, 139, 139, 139, 139, 139, 139, 139,22670, 139, 139,23509, 8848, 22671,22155,23535,15544,23767,20312, 8069, 139, 139, 139, 139, 139, 139, 139, 6392,23516,20312, 5903,24012, 7498, 7499,24397,23768,22197, 8070,21440,21440,21440,21440,21440, 21440,21440,21440,21440, 8849, 9662,14248, 2866, 139, 139, 23426, 8071,22189,23769,23560,22759, 5705, 7499, 139, 139, 22189, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9654, 139, 139, 3077, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 139, 139, 139, 139, 139, 139, 139,25075, 9655, 2564,20312,22668, 7502,23514, 898, 898,14092,14092, 22102, 6392, 9656,20312,22590,22137,22155, 1078,23541,22591, 24139,23489, 139, 139, 139, 139, 139,22669, 139, 139, 139, 139, 139, 139, 139, 139, 139,23428, 139, 139, 14093,14093,25138, 5705,24094,20271,22205,23420,21007, 139, 139, 139, 139, 139, 139, 139,20271,22759,14094,14094, 22102, 7502,23496,21441,22162,22137,23676,15390,15390,22165, 21012,22612,23507,20271,22155,14095,14095,23680,23498, 139, 139, 139, 139, 139,20271, 139, 139, 139, 139, 139, 139, 139, 139, 139,21013, 139, 139,22189,12913,20845, 1376, 140,24483,12913,20312,22189, 139, 139, 139, 139, 139, 139, 139, 1617,23517,20312,22719, 140, 7504, 7505, 1377,22720,22187,22189,23351,23351,23351,23351,23351,23351, 15504,22189, 1042,23352,22712,15505, 2866, 139, 139,23165, 24123,23554,23460,24143,22187, 1618, 7505, 139, 139,11847, 139, 139, 139, 139, 139, 139, 139, 139, 139,20312, 139, 4756,22190,22187,24007,19263,16360,23432,22197,23519, 20312, 139, 139, 139, 139, 139, 139, 139,23491,23672, 23492,22102,22615, 7507,23531,22102,22137,15558,13039,23493, 22137,23508,15559,14248,22155,22672,23494,23495,16361,23510, 140, 2866, 139, 139, 139, 139,22616, 139, 139, 139, 139, 139, 139, 139, 139, 139,20312, 139, 4756,25014, 23614,23546,24473, 1275,23787,21041,20312,20312, 139, 139, 139, 139, 139, 139, 139, 7508,22622,20312,20312,22102, 7507,20312,21042,23545,22137,21043,20312, 140,21050,20312, 23875,14117,20312,23518,23543,23066,21050,20312, 2866, 139, 139, 139, 139,24171, 139, 139, 139, 139, 139, 139, 139, 139, 139,22756, 139, 4756, 140,23870,22757,22205, 23556,23537,12845,23538,23550, 139, 139, 139, 139, 139, 139, 139,23539,20312,22155,22207,21047, 7512,20845,23540, 22207,20312,23600,22207,20312,22189,21051,23774,22207,20312, 23542,23547,20312,22189,23544, 2866, 139, 139, 139, 139, 20312, 139, 139, 139, 139, 139, 139, 139, 139, 139, 21052, 139, 4756,22756,20927,24253,10725, 8927,22757,22205, 8136, 8136, 139, 139, 139, 139, 139, 139, 139, 7513, 8136, 8136,23154,23152, 7512,22189, 140,22773,22189,22189, 22189, 8928, 8932,22189,23555,23557,22189,22189,22189, 140, 23562,23561, 2866, 139, 139, 139, 139,23673, 139, 139, 139, 139, 139, 139, 139, 139, 139,22189, 139, 4756, 14117,24134,23558,20271,23878,23143,23565,23934,22189, 139, 139, 139, 139, 139, 139, 139,22189,23140,22189,22749, 22189, 7517,23563,23570,23206,22189,22189,23580,22189,22205, 23566,12845,23567,22189,23568, 8105,22189,22187,22721, 2866, 139, 139, 139, 139,22189, 139, 139, 139, 139, 139, 139, 139, 139, 139,23146, 139, 4756,22719,10694,10708, 23596,23877,22720,22187,23584,23809, 139, 139, 139, 139, 139, 139, 139, 7518,23394,22189,23147,23140, 7517,23569, 22189,23148,22207,22189,22189,22207,23571,23676,22189,23557, 23184,23605,22189,22207,20271,23679, 2866, 139, 139, 139, 139,23142, 139, 139, 139, 139, 139, 139, 139, 139, 139,22207, 139, 4756,22727,15641,23558,23599,24400,22207, 15642,14315,22189, 139, 139, 139, 139, 139, 139, 139, 22189,23586,22207,23587,23564, 7522,23193,22207,22207,24940, 22207,14315,23588,22207,22187,22207,22207,23595,23602,23589, 23594,22207,23608, 2866, 139, 139, 139, 139,24067, 139, 139, 139, 139, 139, 139, 139, 139, 139,23597, 139, 4756,22756,24002,22189,23143,24061,22757,22205,23624,23620, 139, 139, 139, 139, 139, 139, 139, 7523,23195,22205, 22758,22717, 7522,23984,22207,23598,23633,22793, 140,23578, 22207,22207,22207,22189,22187,11781,10727,23601,22207,22207, 2866, 139, 139, 139, 139,22718, 139, 139, 139, 139, 139, 139, 139, 139, 139,23181, 139, 4756,22207,22187, 23603,22717,24779,20271,22197,23741,22207, 139, 139, 139, 139, 139, 139, 139,22187,23647,23590,17301,22207, 7526, 15612,14317,23641,16766,23642,22718,22207,15180,23681,23356, 7527,14317,23607,14317,20278,17302,23684, 2866, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,23597, 24006,23907,22187,14315,20288,10768,18311,22197, 7527, 139, 139,15181, 139, 139, 139, 139, 139, 139, 139, 139, 139,23812, 139, 4756,20929,24254,23598, 464,22754,23610, 23816,23681,22207, 139, 139, 139, 139, 139, 139, 139, 22207,22205,23685,23630,23604, 7529,23181,23862,23686,22207, 22189,23637,22755,23686,23606,23611,23148,22207,22189,23690, 22207,23689, 270, 2866, 139, 139, 139, 139,22207, 139, 139, 139, 139, 139, 139, 139, 139, 139,23187, 139, 4756,22207,23188,22187,24022,22189,24360,23189,24015,22207, 139, 139, 139, 139, 139, 139, 139, 7530,22189,23626, 25371,23627, 7529,23609,14335,23656,22189,23691,22207,23646, 23628,23691,22205,22207,14335,23638,22207,23629,23695,23694, 2866, 139, 139, 139, 139,23183, 139, 139, 139, 139, 139, 139, 139, 139, 139,23696, 139, 139,22207,23652, 22205,24046,24583,23699,23189,22215,22207, 139, 139, 139, 139, 139, 139, 139,22726,22207,15641,23661,22754, 7532, 23809,15642,14315,22207,16808,23657,23618,22187,23649,23394, 140,22205,23653,23163,14335,23830,23815, 139, 139, 139, 139, 139,22755, 139, 139, 139, 139, 139, 139, 139, 139, 139,23696, 139, 139,22483,23834, 784, 1079,23744, 23323,23789,22763,23700, 139, 139, 139, 139, 139, 139, 139, 7533,15678,22484,23701,22205, 7532,15679,23711,23711, 23717,23204,23704,23830,23664,23722,23714,23747,23720, 1078, 23716, 1080,23324,23725, 139, 139, 139, 139, 139,18404, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4756, 1617,23846,23847,21482,24094,23717,23669,23777, 23818, 139, 139, 139, 139, 139, 139, 139,23721,23821, 24699,17439,23792, 7538,23715,23715,23715,23715,23715,23715, 23715,23715,23715,23796, 1618,22204,23848,20858,22419, 140, 23711, 2866, 139, 139, 139, 139,23785, 139, 139, 139, 139, 139, 139, 139, 139, 139,22420, 139, 4756,23792, 23740,23773,23744,23323, 140,19029,23985,23795, 139, 139, 139, 139, 139, 139, 139, 7539,22189,22421,22902,23827, 7538,23751,23736,23736,23736,23736,23736,23736,23406,22187, 24159,23737,22207,24396,22197,23324,22903,24008, 2866, 139, 139, 139, 139, 1572, 139, 139, 139, 139, 139, 139, 139, 139, 139,23745, 139, 4756,22190,22904,22207,23184, 24074, 1234,14333,20000,23809, 139, 139, 139, 139, 139, 139, 139,20927,23394,22419,18341,22189, 7543, 6392,24080, 23739,23872,22902,23753,10612,21482,20936,23150, 531,23754, 23754,23755,22420,18342,11847, 2866, 139, 139, 139, 139, 22903, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5705, 139, 4756,22421,19223,23752,10613,20858,20937,25011, 24091,22904, 139, 139, 139, 139, 139, 139, 139, 7544, 24010,20068,23770,13039, 7543,23988,23749,23749,23749,23749, 23749,23749,23749,23749,23749,22189,23149,23880, 140,20069, 23786,23854, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,24023, 139, 4756, 20833,23840,23841,22187,22104, 1606,22024,22207,22197, 139, 139, 139, 139, 139, 139, 139,23749,23749,23749,23749, 23749, 7547,21997,21997,21997,21997,21997,21997,21997,21997, 21997, 140, 7548,23760,23842,23760,23910, 2023,10613, 2866, 139, 139,21927,21927,21927,21927,21927,21927,21927,21927, 21927,22102,23843,22205,12793, 1606,22137,24169,22215, 3077, 7548, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139,10614, 139, 4756,23761, 2564,15555,24310, 24220, 1606,14261,23827,20929, 139, 139, 139, 139, 139, 139, 139,23406,23873, 1275,25664, 140, 7550, 1617,23328, 23328,23328,23328,23328,23328, 3742,22104, 531, 1070,23351, 23351,23351,23351,23351,23351, 2866, 139, 139, 139, 139, 2023, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1618, 139, 4756,24170, 1078,24446,23867, 1078, 1606, 4410, 14117, 1071, 139, 139, 139, 139, 139, 139, 139, 7551, 23818,23827,24024,22102, 7550,23876, 1377, 4411,22137,23821, 23406,24094,22207,24376,24099,23783,23822,23833, 1042,23911, 22716,12845, 2866, 139, 139, 139, 139,24087, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 203, 139, 139, 139, 139, 139, 139, 7555, 7555, 7555, 7555, 7555, 7556, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 7554, 7554, 7554, 7554, 7554, 7554, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,21946, 21946,21946,21946,21946,21946,21946,21946,21946,23868, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 1617,23855, 3077,23147,24447, 140, 3077,25742,23148,22189, 1379,21962, 21962,21962,21962,21962,21962,21962,21962,21962, 2564,16528, 1044,17110, 2564,23188,21947, 139,23850,23851,23189,22207, 1618,16529, 7555, 7555, 7555, 7555, 7555, 7555, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,23852, 148, 149, 139, 139, 139,23145,16530, 139, 139, 139, 23341,23341,23341,23341,23341,23341, 1078, 8884,22189, 140, 23998, 5513, 139, 139, 139, 139, 139, 139,23874,23146, 22187, 3077,20936, 162,23853,22197,23762,23762,23762,23762, 23762,23762, 3742,24104,24480,23763,23999,20927, 8105, 2564, 24586, 139, 139, 139, 139, 139, 139, 3077, 148, 149, 139, 139, 139,22207,20937, 139, 139, 139,23764,23764, 23764,23764,23764,23879,23191, 2564,23779,20054,24336, 5513, 139, 139, 139, 139, 139, 139, 335, 3742,23856, 3077, 22155, 162, 1078,23676,23780,23764,23764,23764,23764,23764, 23764,23764,23764,23764,23680,22104, 140, 2564,16528, 139, 139, 139, 139, 375,23818,23781, 3077, 8110,23881,24094, 16529,20089,23782,23821, 7559, 7559, 7559, 7559, 7559, 7559, 7559, 7559, 7559, 150, 2564,23823,22104,23818,23827,20090, 7559, 7559, 7559, 7559, 7559, 7560,23821,23406,24785, 8111, 25752,24070,22102,23822,23833,16530,22590,22137,23823,23835, 20851,22591,23824,23912,20271, 140,14315, 7559, 7559, 7559, 7559, 7559, 7559, 7562, 7562, 7562, 7562, 7562, 7562, 7562, 7562, 7562, 5904,23923, 8113,23824,23836,23827,22137, 7562, 7562, 7562, 7562, 7562, 7563,20278,23406, 139,14315,23804, 23805,23806,23807,23807,23807,23807,23807,23807,23835,15643, 22104,24471,20286,23932, 5905,20288, 7562, 7562, 7562, 7562, 7562, 7562, 2438,22955, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 9654, 2696,23836,24679,24094, 139,23145, 5512, 5512, 5512, 5512, 5512, 5514,12896,23986,24098, 5906, 6595,20271,22189, 9655, 2697,23858,10612,22102,23918,23904, 22189,22104,22137,23146,25764, 9656, 2698, 5512, 5512, 5512, 5512, 5512, 5512, 7568, 7568, 7568, 7568, 7568, 7568, 7568, 7568, 7568,20278,20312, 140, 1078,24094,22104,10613, 7568, 7568, 7568, 7568, 7568, 7569,23914,23866,24098,23889,20286, 9657,10620,20288,23676,12896,22104,23857,20271,22102,24496, 23859,23679,24161,23926,15471,11652, 7568, 7568, 7568, 7568, 7568, 7568, 2438,10614, 7571, 7571, 7571, 7571, 7571, 7571, 7571, 7571, 7571, 4830,22102,20312,24094,24970,20278,22137, 5525, 5525, 5525, 5525, 5525, 5526,12913,24098,23909,23955, 24027,20271,22102,22104,24094,20286,22104,22137,20288,22157, 22207,23190,24097, 784, 8846,23861,20318, 5525, 5525, 5525, 5525, 5525, 5525, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 7572, 7572,20278,23948,22190,24099,20327,24094,23903, 7572, 7572, 7572, 7572, 7572, 7573,24097,24103, 8848,23894,20286, 22102,22104,20288,22102,12913,22137,22155,25010,22137,23915, 22104,22186,23916,23908,15507, 5903, 7572, 7572, 7572, 7572, 7572, 7572, 7575, 7575, 7575, 7575, 7575, 7575, 7575, 7575, 7575, 4839, 8849,22104,22157,25780,24083,23921, 5531, 5531, 5531, 5531, 5531, 5532,20278,23491,22104,23492,22102,21014, 22104,14333,24093,22137,21015,23917,23913,22102,21997,21997, 21997,20286,22137,23494,20288, 5531, 5531, 5531, 5531, 5531, 5531, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 7576, 22102,23962,20271,14333, 140,22137,22186, 7576, 7576, 7576, 7576, 7576, 7577,22102,15680,22104,23933,22102,22137,22104, 22609,23919,22137,10694,10708, 140,11741,12793,23924,25949, 22104, 1070,23928,20278, 7576, 7576, 7576, 7576, 7576, 7576, 7579, 7579, 7579, 7579, 7579, 7579, 7579, 7579, 7579, 4852, 20286,24584,22157,20288,24099,24094, 5540, 5540, 5540, 5540, 5540, 5541,22102,24097, 1071,24103,22102,22137,24041,20271, 22590,22137,22104,23925,23922,22591, 140,22102,23927,22157, 23733,14248,22137, 5540, 5540, 5540, 5540, 5540, 5540, 7580, 7580, 7580, 7580, 7580, 7580, 7580, 7580, 7580,22616,23965, 20278,22157,26007,24440,22186, 7580, 7580, 7580, 7580, 7580, 7581,23929,23734,14248,24099,22104,24585,20286,26021,22102, 20288,23938,24102,22590,22137,22205,22155,23959,22591,20271, 22215,22186, 7580, 7580, 7580, 7580, 7580, 7580, 7583, 7583, 7583, 7583, 7583, 7583, 7583, 7583, 7583, 4866,22155,24099, 24104,23982,24094,22186, 5549, 5549, 5549, 5549, 5549, 5550, 20278,24108,22102,24148,23952,23186,23930,22137, 784,15381, 15382,14248, 140,24025,23937,24640,14248,20286,22207,24094, 20288, 5549, 5549, 5549, 5549, 5549, 5549, 139, 139,23187, 139, 7584, 139, 139, 139, 139, 139, 7585, 7586, 7587, 7586, 139,15383,14248,23147,26028,14315,24094,23939,23148, 22189, 139, 139, 139, 139, 139, 139, 139,24098,24132, 10611,22187, 140, 572,15561, 898,22197,14092,24099,16541, 24003,20312,24133,20271, 1078,20312,24102,15384,14315,23945, 7588, 139, 139, 139, 139, 139,24069, 139, 7590, 139, 139, 139, 139, 139, 7585, 7586, 7591, 7592, 139,14093, 24094,24447,20318,24110,20278,20312,20318,24094, 139, 139, 139, 139, 139, 139, 139,23931,23950,14094,24098,20325, 345,20286,20327,20325,20288,22157,20327,22157,22157, 140, 24110, 531,23863,20312,14095,23970,20318, 7593, 139, 139, 139, 176, 7599, 7599, 7599, 7599, 7599, 7599, 7599, 7599, 7599,15638,24426,20325,22157,14328,20327,23951, 7599, 7599, 7599, 7599, 7599, 7600,20318,24160,22187,24161,22157,22157, 23944,22197,22155,23958,22155,22155,24005,22186,24165,22186, 22186,20325,20312,23956,20327, 7599, 7599, 7599, 7599, 7599, 7599, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5570,22155,24129,22157,26035,24712,23968, 5569, 5569, 5569, 5569, 5569, 5571,20318,18341,22155,22155,22157,23949,22670, 22186,22186,14333,21054,22671,23957,23953,22157,22157,22207, 20325,23963,18342,20327, 5569, 5569, 5569, 5569, 5569, 5569, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 5566, 4198, 22155,20312, 531,19223,14333,22186, 5566, 5566, 5566, 5566, 5566, 5567,24082,24048,22155,22157,24149,22157,22215,22186, 23960,23147,23961,22157,22155,22155,23148,22189,23992,22186, 22186,25551,20318, 5566, 5566, 5566, 5566, 5566, 5566, 7606, 7606, 7606, 7606, 7606, 7606, 7606, 7606, 7606,17439,20325, 23974, 1078,20327,23186, 140, 7606, 7606, 7606, 7606, 7606, 7607,23537,22155,23538,22155,22662,22207,22186,24037,22186, 22155,22187,23954,23966,25847,22186,22197,23187,24447,23540, 24004,23967, 7606, 7606, 7606, 7606, 7606, 7606, 139, 139, 24464, 139, 6925, 139, 139, 139, 139, 139, 139, 139, 7609, 139, 139, 7610, 7611, 7612, 7613, 7613, 7613, 7613, 7613, 7613, 7614, 139, 6932, 139, 139, 139, 139, 7615, 7615, 7615, 7615, 7615, 7616, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7618, 7617, 7617, 7617, 7617, 7617, 139, 139, 139, 6938, 7615, 7615, 7615, 7615, 7615, 7615, 7617, 7617, 7617, 7617, 7617, 7619, 7617, 7617, 7617, 7617, 7617, 7617, 7618, 7617, 7617, 7617, 7617, 7617, 7617, 139, 139,20312, 139, 139, 139, 139, 139, 139, 139, 139, 139,23188, 7621, 139,22205, 140,23189,22207, 24031,22215,23994, 1416,23995, 139, 139, 139, 139, 139, 139, 139,24038,23996,20318,22189, 140, 7622,22187,24447, 23997,22187,22719,22197,22713,23971,22197,22720,24051,24000, 24451,20325,24013,22215,20327, 139, 139, 139, 7623, 139, 139,24915, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 7625, 7626, 139, 7627, 7628, 7628, 7628, 7628, 7628, 7628, 7628, 7628, 7629, 139, 139, 139, 139, 139, 139, 7628, 7628, 7628, 7628, 7628, 7630, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 139, 139, 139, 7631, 7628, 7628, 7628, 7628, 7628, 7628, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 139, 139,20312, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,24045,22205,22205, 24746,14315,26043,24054,22215,24099, 139, 139, 139, 139, 139, 139, 139,24102, 140,20318,24447,22187, 7639,22157, 23733,23972,22197,23586,22205,23587,22187,24451,24014,22215, 22208,22197,20325,24042,24001,20327, 139, 139, 139, 139, 7621,23589, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 139,23734,25039,24021,24474, 1379,24058, 7625, 7625, 7625, 7625, 7625, 7641,10727,10742,22155,11778, 1044,24104, 22670,22186, 784,15381,15382,22671,22205,24107,23969,24111, 20312,22215,22157, 140,24047, 7625, 7625, 7625, 7625, 7625, 7625, 139, 139,24249, 139, 7624, 139, 139, 139, 139, 139, 139, 139,23860, 7621, 139,15383,23188, 140,24764, 23733,20318,23189,22207,24179, 139, 139, 139, 139, 139, 139, 139,23973,23394,10611,22205,23964, 7643,20325,22155, 22215,20327,24011,16541,22186,22187,24053,24112, 140, 7644, 22197,15384,23734, 1572,24472, 139, 139, 139, 7645, 898, 22669, 8068,23864,22187,21482,22205,22718,22719,22197,22756, 22215, 1234,22720,25129,22757,24016,24039, 7644, 139, 139, 24114, 139, 139, 139, 139, 139, 139, 139, 139, 139, 22205, 139, 139, 8069,24049,22215,20858,24154,24498,24033, 24044,24034, 139, 139, 139, 139, 139, 139, 139,24502, 24035, 8070,22207,23626, 7647,23627,22205,24036,22205,21482, 8853,22215,24050,22215,24040,22205, 7648,24043, 8071,24062, 22215,23629, 139, 139, 139,14315,22205,22205,24063,22750, 22205,22215,22215,16757,22756,22215,22755,24052,24183,22757, 24485,20858,24055,20312, 7648, 139, 139,24186, 139, 139, 139, 139, 139, 139, 139, 139, 139,14315, 139, 139, 24076, 140,24071,24155,23154,16799,14317, 140,21976, 139, 139, 139, 139, 139, 139, 139,24075,22189,15644,16770, 25955, 7649,22187,23561,16771,14317,19635,22197,22187,24090, 24260,24065,22719,22197,24068,20858,24974,22720,14335, 139, 139, 139, 139, 139,19636, 139, 836, 139, 139, 139, 139, 139, 139, 139,22205, 139, 139,24727,22756,22215, 140,23195,20937,22757,24194,19637, 139, 139, 139, 139, 139, 139, 139,23821,22207,24094,16812,22222, 572,22205, 23601,16813,14335,24097,22215,11776, 784, 1079,24078,14333, 16360,24081,24206,24085,24094,24497, 139, 139, 139,10727, 10742,23406,24097, 6942, 1225, 1225, 531, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24094, 1225, 4935,24161, 1080,14333,16361,22881,24097,23311,24084,24164, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24295, 140,22419, 139, 531, 7662,24210,15681,24309,23744,23323,22102,24156,23744,23323, 24213,22102,14261,12793,17110,22420,24089,22882, 4937, 1225, 1225, 1225, 1225,24113, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24425, 1225, 4935,22421,23324,23744,23323, 24115,23324,14328,24116,24122, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7663,20929,24887,24119,24587, 7662,24109,24109, 24109,24109,24109,24109,24109,24109,24109,24227,23847,16360, 20271,23324,22419,17447,24104, 4937, 1225, 1225, 1225, 1225, 24117, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 22420, 1225, 6967, 8110,24227,23847,24459,24126,24157,19029, 23848,16361, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24613, 24121,22421,17301,23767, 7667, 140,22413,22413,22413,22413, 22413,22413,22413,22413,22413, 8111, 1617,23848, 140, 2023, 17302,23768, 4937, 1225, 1225, 1225, 1225, 1572, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1606, 1225, 1225, 24158,18311,23769,26054,24229, 1234,23767,24916, 1618, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22902,24255, 8884,20936, 22902, 7669,24127,14117,23768,23736,23736,23736,23736,23736, 23736,24257,22483, 7670,22903,24135,24135,24136,22903, 1234, 1225, 1225,24128,24293,24145,23769, 1572, 2570,22102, 8105, 22484,20937,24259,22102,12845,22904, 3077,20312,24689,22904, 12793, 7670, 1225, 1225, 1234, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2564, 1225, 6967,24174,24174,24174, 24174,24174,24174,24174,24174,24174, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7671,22204,24555,24646,24436, 7667, 6392, 24124,24124,24124,24124,24124,24124,14346,24227,23847,24125, 24130,24130,24130,24130,24130, 140, 4937, 1225, 1225, 1225, 1225, 2023, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5705, 1225, 6967,24698,24230, 3742,25395,14117, 1606, 23848,20794,24179, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 24688,23394,22204,20068,19635, 7675,24142,22453,22453,22453, 22453,22453,22453,22453,22453,22453, 531,22204,14117,12845, 23779,20069,19636, 4937, 1225, 1225, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,23780, 1225, 6967,24412,20833,19637,24256,24258, 2564,24288,22753,12845, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7676,24188,23781, 531,24732, 7675,24503,23762,23762,23762,23762,23762,23762, 9692, 8884,24140,22102,24289, 140,22222,23767,22102,24192, 4937, 1225, 1225, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,23768, 1225, 6967,24297,22102, 22102,10727, 8105, 2564,22102,22102,24188, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24246, 3077,23769,24910,24179, 7679, 24183,24137,24137,24137,24137,24137,24137,23394,24286,24186, 24138,15675,24437, 2564,24181,14346,24191, 4937, 1225, 1225, 1225, 1225, 3077, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24298, 1225, 6967,10762,24476,22102,24721,24438, 2564,24197,20827,24194, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7680,23821,23767, 140,22222, 7679,24206,26068,24200, 3742,24447,24201, 3742, 3742,22102,23406,24226, 1078,24450, 22102,23768,23905,24208, 4937, 1225, 1225, 1225, 1225,24141, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24197, 1225, 6967,23769,24150, 4410,24498,24925,20089,23779, 434, 24152, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6392,24756, 14333,22102, 4411, 7682, 7683,20090,23780, 257,24321,24130, 24130,24130,24130,24130,24130,24130,24130,24130,24153,22102, 24194, 4937, 1225, 1225,22102,20271,20851,23781,11847,23821, 5705, 7683, 1225, 1225,24243, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 531, 1225, 1225,26155, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24444,24194,22155, 464,13039, 7686,24334, 22155,24221,23841,23821,22155, 3742,24175,24175,24175,24175, 24175,24176,24177,24177,24177,24202, 1234, 1225, 1225, 1225, 1225,24617, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 270, 1225, 1225,23842,24333,22155,24221,23841,23779, 24287,22155,24203, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 24210,22102,23843,22102,24294, 7686,22102,23780,22102,24213, 24481,22611,24506,22712,22618,24151,24214,22102,24372, 140, 23842, 1275,22102, 1234, 1225, 1225, 1225, 1225,23781, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24222, 1225, 6967,24177,24177,24177,24177,24177,24177,24177,24177,24177, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10612,24194,24206, 24221,23841, 7688, 7689,24210,24308,24206,23821,23406,22190, 22591,22102,23392,24213,24200,23406,22102,24221,23841,24202, 4937, 1225, 1225, 531, 140,24215,10694,24217,24224,10613, 7689, 1225, 1225,23842, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26156, 1225, 4935,24203,23946,22155,24324, 23842,23843,24216,22155,24218, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24210,24206,10614,11654,25016, 7694,23843,23394, 24236,24213,23406, 5904,24305,24227,23847,24223,24214,24208, 10703, 140,24447,24215,24217, 4937, 1225, 1225, 1225, 1225, 24450, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 24238, 1225, 4935,24731,22155, 5905,24221,23841,23848,22155, 24216,24218, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7695, 9655,22222,24503,22615, 7694,10694,24228,24231,23851,24231, 23851,24291, 9656,16360, 140,24239,22102, 531,24323,23842, 5906,22102, 4937, 1225, 1225, 1225, 1225,22616, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,23843, 1225, 4935, 23852,22698,23852,25054,14317,16361,24347, 9657,22189, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24225,22103,22109,10703, 24232, 7699,24299,24296,24231,23851,24231,23851,22102,22102, 24304,22155,24504,22102,22102,23853,22155,23853,24494, 4937, 1225, 1225, 1225, 1225,10612, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24234, 1225, 4935,23852,24505,23852, 22749,24322,24231,23851, 140,24408, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7700,22155,23918,10613,25116, 7699,22155, 784,15381,15382,22603,24233,22673,23905,24290,24329,20845, 1275,26158,23853,22717,23853,23852, 4937, 1225, 1225, 1225, 1225,24365, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10614, 1225, 4935,15383,22698,22102,22718,24240,22190, 24348,22102,22189, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 23853,24235,10611,22677,24331, 7704,24498,22590, 784, 8846, 8847,24242,22591,22102,24501,22155,22155,24241,22102,15384, 22155,22155,23112, 4937, 1225, 1225, 1225, 1225,24330, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24328, 1225, 4935,22155, 8848,22155,22719,25012,22155,16527,22155,22720, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7705,22155,26159, 5903,26162, 7704,22155, 898,22698,14092,16528,22664, 9660, 22700,24349,22189,24424, 1078, 140,24237, 8849,22720,16529, 4937, 1225, 1225, 1225, 1225, 1376, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 2696, 1225, 4935,14093,22756, 24594,24765,24775,14317,22757, 1377,17579, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16530, 2697,14094, 1042,14317, 7709, 22162, 898,24335, 8068, 1379,24332,24419, 2698,24244,22155, 22155, 1745, 140,14095,22155,22155, 1044, 4937, 1225, 1225, 1225, 1225,24248, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22698, 1225, 4935, 8069,24352,22700,24582,22189, 23733,16527,24354,24247, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7710,24690, 8070,24350,22695, 7709,24346,23946,22656, 22698,16528,22204,24325,22698,22700,26170,22189,24683,22700, 8071,24358,23734,16529, 4937, 1225, 1225, 1225, 1225,22189, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22698, 1225, 4935,22155,24435,22700,26171,22189,22155,22757, 2023, 17579, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16530,22670, 140,24452,26172, 7713,22671,22155, 782, 1606,22698,24351, 22155,15180,22698,22700, 7714,22189,24465,22700,17110,22189, 10727, 4937, 1225, 1225, 139, 139, 139, 139, 139, 139, 139, 139, 139,20271,20271,20271,20271,20271,20271,20271, 20271,20271, 7714, 1225, 1225,15181, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26183, 1225, 4935,20271,20271, 20271,20271,20271,20271,20271,20271,20271, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10762,23141,22698,24512,24147, 7716, 1617,22700,24281,24357,22208,24415,24186,24279,20271,20271, 20271,20271,20271,20271,20271,20271,20271, 4937, 1225, 1225, 1225, 1225,24757, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1618, 1225, 4935,20271,20271,20271,20271,20271, 20271,20271,20271,20271, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7717,22698,24359,10768,22615, 7716,22700,24353,22189, 25041,24356,22698,24292,24280,22698,24794,22700,22102,22189, 22700,24482,22189,22102, 4937, 1225, 1225, 1225, 1225,22616, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22735, 1225, 1225,24284,22881,24383,24454,22207,23394, 140,22695, 22717, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24366, 140, 14317,24682, 531, 7719,20271,20271,20271,20271,20271,20271, 20271,20271,20271,22189,22718,14317,24367,22882,24367,24403, 24421, 1234, 1225, 1225, 1225, 1225, 1078, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16773, 1225, 1225,20271, 20271,20271,20271,20271,20271,20271,20271,20271, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7720,24515,24512, 140,22668, 7719,25064,14335,22242,24283,24519,24186,24326,24368,22719, 22756,21017,22155,24518,22720,22757,17110,22155, 1234, 1225, 1225, 1225, 1225,22669, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22735, 1225, 4935,22735,24303,24384, 140, 22207,22737,24385,22207,24521, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24387,24524,22735,22735,26184, 7725,24388,22737, 22737,22207,22207,20271,20271,20271,20271,20271,20271,20271, 20271,20271,19635, 140,24821, 4937, 1225, 1225, 1225, 1225, 24443, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 19636, 1225, 4935,20312,20312,20312,20312,20312,20312,20312, 20312,20312, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7726, 22601,19637, 140,24786, 7725,20271,20271,20271,20271,20271, 20271,20271,20271,20271,22735,24579,25670, 1078,24529,22737, 24246,24394, 4937, 1225, 1225, 1225, 1225,23821, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24314, 1225, 4935, 22735,24395,15629, 8884,24814,22737,20271,22207,21012, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24285,14328,15666,15630, 22208, 7730,15631,20312,20312,20312,20312,20312,20312,20312, 20312,20312,21013,14346, 8105,15667,22754,24588,15668, 4937, 1225, 1225, 1225, 1225,24401, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,24389, 1225, 4935, 307,22735,23733, 22755,18404, 140,22737,20271,22207, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7731,24616,24382, 140,25043, 7730,24315, 17110,20271,20271,20271,20271,20271,20271,20271,20271,20271, 24486,23734,24403,17439,24453,24390, 4937, 1225, 1225, 1225, 1225,25396, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,19275, 1225, 4935,20312,20312,20312,20312,20312,20312, 20312,20312,20312, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 24302,24611,22668, 1572,24722, 7734,22735,21011,24316,22264, 24327,22737,22735,22207,24404,22155, 7735,22737,24392,22207, 22155, 1234,22735, 4937, 1225, 1225,22669,22737,24301,22207, 20271,20271,20271,20271,20271,20271,20271,20271,20271,24455, 22222, 140,22104,22104, 7735, 1225, 1225,24691, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22204, 1225, 4935, 20312,20312,20312,20312,20312,20312,20312,20312,20312, 1225, 1225, 1225, 1225, 1225, 1225, 1225,20279,25096,26185, 140, 20271, 7737,20312,20312,20312,20312,20312,20312,20312,20312, 20312,16360,24420,24431,22137,22137,22754,25104,24493, 4937, 1225, 1225, 1225, 1225,24402, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22698, 1225, 4935,21049,24319,22700, 22755,22189,24418,16361,14317,14335, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 7738,23994,24533,23995,22483, 7737,14317, 14335,22698,24318,24495,24536,24345,22700,24612,22189,21056, 16772,16814,23997,20271,20271,22484, 4937, 1225, 1225, 139, 139,24301, 139, 836, 139, 139, 139, 139, 139, 139, 139,26205, 139, 139,20312,20312,20312,20312,20312,20312, 20312,20312,20312, 139, 139, 139, 139, 139, 139, 139, 15180,23182,22735,22735, 3742, 572,20271,22737,22737,24393, 22207,24429,20312, 139, 139, 139, 139, 139, 139, 139, 139, 139,24386, 139, 139, 139,21482,24543,22735,22157, 20312,23775,24633,22737,15181,22207,24213,14335, 4410, 7743, 139, 139,24339, 139, 836, 139, 139, 139, 139, 139, 139, 139,14335, 139, 139,20312, 4411, 140,20858,24615, 24430,24491,14335,24337, 139, 139, 139, 139, 139, 139, 139,24503,23394,21016,20312,24490, 572,14335, 307, 307, 24667,22186,24432, 140, 140,20312,20312,20312,20312,20312, 20312,20312,20312,20312, 139, 139, 139,24643,16815,25099, 20312,20312,20312,20312,20312,20312,20312,20312,20312,20312, 20312,20312,20312,20312,20312,20312,20312,20312, 140, 7744, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012,22653, 2012, 2012,14117,22695,22103,24680, 784, 1079,24644,24693,21051, 2012, 2012, 2012, 2012, 2012, 2012, 2012,24320,22204,22208,24521,20312, 2501,24355,24338, 140, 22189,23744,23323,24524,22698,21050,12845,21052,24457,22700, 24525,22189,25267, 1080, 2012, 2012, 2012,22419, 7749, 1597, 1597,23146, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 139, 1597, 5683,23324,22420,24458,26270,24787,17301, 24463,24591,24529, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 25045,23821,24442,22419, 434, 7772,22421,17302,24531,24456, 24337,24650,20312,20312,20312,20312,20312,20312,20312,20312, 20312,22420, 257, 5685, 1597, 1597, 1597, 1597,18311, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10694, 1597, 5683,11740,22421,24561,24795,23744,23323,21482,10694,24635, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7773,21646,24033, 24533,24034, 7772, 464,24671,24700,22735,24227,23847,24536, 24381,22737, 140,22207,24546,22204,24537,24036,23324,20858, 5685, 1597, 1597, 1597, 1597,24466, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,24550, 1597, 7776, 270,22695, 23848,24798,24577,24565,22695,24684,21976, 1597, 1597, 1597, 1597, 1597, 1597, 1597,24462,24521,22902,22902,24391, 7777, 24571,24492,24546,22189,24524,22735,24687, 140,22189,24801, 22737,24525,22207, 1618,22903,22903,24526, 5685, 1597, 1597, 1597, 1597,23187, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10613, 1597, 7776,22904,22904,25671,14117,24468, 23404, 140,24467,24527, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7778, 140,24590,23767, 140, 7777,24477,24445,24445, 24445,24445,24445,24445,24445,24445,24445,10614, 140,12845, 22958,18341,23768,22204, 5685, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,18342, 1597, 7776,25234,23769,24812, 140,23406,24227,23847,23406, 24512, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 140,24186, 19223, 140, 140, 7781, 531,19028,19028,19028,19028,19028, 19028,19028,19028,19028, 531,22732,22958,24713,24784,22958, 23848, 5685, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 140, 1597, 7776,22207, 140,14117,20936,25433,17110,24553,19029,24529, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7782,23821, 140,11847,24564, 7781,25689,22896,22896,22896,22896,22896,22896,22896,22896, 22896, 531,12845,25097,20937,22958,24720,24592, 5685, 1597, 1597, 1597, 1597, 2023, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,24765, 1597, 7776,24676,13039,24704,24762, 23767, 1606, 140,24543,24769, 1597, 1597, 1597, 1597, 1597, 1597, 1597,24213, 5904,24589,20312,22190, 7784,23768, 7785, 24124,24124,24124,24124,24124,24124,20068, 531,24475,24475, 24475,24475,24475,24478,24479, 7786, 7787, 7787,22732,23769, 22695, 2023,24914,22222,20069, 5905, 7788, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1606, 1597, 5683,22207,22242,22189,20833,14117, 2564,24648,24574, 20271, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20273,22707, 5906,22713,21055, 7794,10612,24475,24475,24475,24475,24475, 24475,24475,24475,24475,22190,24695,22708,12845,22204,22709, 22204, 5685, 1597, 1597, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10613, 1597, 5683,20271, 24809,25049,24221,23841, 2564,24814,20279,24301, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7795,24818, 140,24920,22750, 7794,22242,22918,22918,22918,22918,22918,22918,22918,22918, 22918,10614,16361,24728,11770,23842,22222,24575, 5685, 1597, 1597, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,24556, 1597, 5683,25089,26274,10735,21014, 25282, 2564,24813,24639,21015, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15555,14248, 140,20312,24709, 7799,22103,24137, 24137,24137,24137,24137,24137,21997,21997,21997,21997,21997, 21997,21997,21997,21997, 140, 5685, 1597, 1597, 1597, 1597, 3077, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 24831, 1597, 5683, 1070,24758, 3742, 1376,25956, 2564,24186, 22732,24543, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7800, 24213, 531,20312,24696, 7799,22716, 1377,24549,24221,23841, 24337, 3742,24765,20312,22207,22204, 1071,25271, 1042,20089, 24768,24645, 5685, 1597, 1597, 1597, 1597,24489, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20090, 1597, 5683, 24581,23842,23744,23323,24559,23779,22695,20312,24487, 1597, 1597, 1597, 1597, 1597, 1597, 1597,24521,24533,20851,23843, 24672, 7804,21053,23780,23406,24524,24536,21054, 3742,21646, 22189, 307,20271,24537,20271,23324, 140,24526,24538, 5685, 1597, 1597, 1597, 1597,23781, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22958, 1597, 5683,23744,24778,16360, 26279,25285,23779, 1379,24527,24539, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7805,22712, 1044,21006,24941, 7804,22716, 23780,24553,24227,23847,24692,24686,24221,23841, 307,22204, 23324,16361,24944, 140,22204,24488, 5685, 1597, 1597, 1597, 1597,23781, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22958, 1597, 5683,23145,23848,24913,24221,23841,23842, 22732,24810,24674, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 24533,24529,24723,24562,24705, 7808,24724,23843,23146,24536, 23821,20936,22222,20271,22207,26283,22222,24531,24942, 140, 23842,24538,24540, 5685, 1597, 1597, 1597, 1597,24558, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,23843, 1597, 5683,24823,24824,20937,22744,25118,14117,22732,24539,24541, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7809,24529,24560, 24716,22745, 7808,24726,22746,22222,24733,23821,24231,23851, 24790,22207,25070,22222,24825, 140,22222,12845,20938,24540, 5685, 1597, 1597, 1597, 1597,24593, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7810, 1597, 5683,20312, 2023, 25989,23852, 3077,10768,24569,22749,24541, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7810, 139,24719, 1606,24922, 7812, 2564, 140,24649,24634, 139,22222,24507,24508,24509,24510, 24510,24510,24510,24510,24510,24780,23853, 5685, 1597, 1597, 7810, 7810, 1597, 1597,22156, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20845, 1597, 1597, 531,21053,26288, 21482,25098,24799,21054,22732, 139, 1597, 1597, 1597, 1597, 1597, 1597, 1597,24543,24543,24729,24715,22753, 7814,25291, 10694,22753,24213,24213,22715,24744,24725,22222,22207,24549, 10694,22222,20858,22204,24551,24551, 1606, 1597, 1597, 1597, 1597,11749, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16527, 1597, 1597,23134,22190,25082,24911,24673,24231, 23851,24552,24552, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7815,16528,24808, 1572,22695, 7814,24745, 2697,24231,23851, 24231,24570,20312,16529,22732,15638,14315,24971, 140, 2698, 24717, 1234,23852, 1606, 1597, 1597, 1597, 1597,22189, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22207, 1597, 5683,23852,24772,23852,21011,25573,24572,22157,16530,25017, 1597, 1597, 1597, 1597, 1597, 1597, 1597,23853,24755,24566, 24835,24568, 7819,24846, 784,15381,15382,15675,14333,24838, 22752,24754,24524, 1078,26292,25106,23853,23145,23853,22222, 5685, 1597, 1597, 1597, 1597,24675, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 2696, 1597, 5683,15383,22186, 24765,23146,25107, 140, 9654,24573,24965, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7820, 2697,10611,22419,22695, 7819, 24857, 784, 8846, 8847, 9655,24869,24678, 2698,24576,24536, 25130,24676,22208,15384,24213,22420, 9656, 5685, 1597, 1597, 1597, 1597,22189, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,23733, 1597, 5683, 8848,22421,14248,14263,21997, 21997,21997,24580,10618, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9657,24736, 5903,22419,22695, 7823,24873, 898,22264, 14092,24814,23147,24773,23734,23186,24876,23148,24676,24817, 8849, 140,22420,24707, 5685, 1597, 1597, 1597, 1597,22189, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,23187, 1597, 5683,14093,22421,25085,25083, 1376,22665,26160,24761, 24770, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7824,10727, 14094,19635,22695, 7823, 531,22773, 1377,20927,24578,10727, 24677,18404, 784, 1079,24760,24917,23734,14095, 1042,19636, 11785, 5685, 1597, 1597, 1597, 1597,22189, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7825, 1597, 5683,22695, 19637,22208,23140,17439, 434, 140, 1080,24681, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 7825,24831,22483,20312,24912, 7827,22695, 257,22189, 139,24186,24811,24685,10612,20929, 24893,25233,24833,22208,23144,22484,24802,24918, 5685, 1597, 1597, 7825, 7825, 1597, 1597,22189, 1597, 3042, 1597, 1597, 1597, 1597, 1597, 1597, 1597,23733, 1597, 1597,22717,26301, 10613,11780,11782,24968,25040,10727,24697, 7831, 1597, 1597, 1597, 1597, 1597, 1597,23175,10727,24835, 140,24706, 2520, 22264,22204,22718,23744,23323,24838,11783,23734,23186,24906, 24793,24709,24843,24771,22732,10614,24708, 1606, 1597, 1597, 139, 139,20068, 139, 7845, 139, 139, 139, 139, 139, 139, 139,23187, 139, 139,22732,23324,25243,22207,26305, 20069,25000,24831,24711, 139, 139, 139, 139, 139, 139, 139,24186,22189,24846,22902,22732, 572,22103,22793,22207, 24781,20833,24524,24710,25092,22732, 531, 1078,23181,24852, 24777,20271,22903,24714, 139, 139, 139, 2555, 2555,22207, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22207, 2555, 7133,22754,22904,25131, 464, 140,23819,22715,26174, 24730, 2555, 2555, 2555, 2555, 2555, 2555, 2555,24783, 140, 24857,18341,22732, 7870,21482,22222,22755,24958,24718,24536, 22190,24908,21015,24709,25266,23185,24863,22958,24840,18342, 270, 7135, 2555, 2555, 2555, 2555,22207, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,20858, 2555, 2555,24844, 19223, 3742,24849, 531,24807,25804,23821,24782, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17301,22902,22732, 140,23767, 7872,26315,25009,24853,23188,24791,24840, 5904, 140,23189, 24948, 6392, 7873,17302,22903, 4410,22958,23768, 2564, 2555, 2555,22207,24469,24469,24469,24469,24469,24469,24774,14117, 24849,24470,24860, 4411,18311,22904,20312,24921,23769, 5905, 7873, 2555, 2555, 5705, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,24864, 2555, 7133,24806,22102,24246,24995, 12845,24905,22137,21441,25229, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 7874,25029, 5906,22189,22695, 7870, 6392,22156, 24860,24969,26319,24739,22207,20271,22189,22208,23148,24469, 24469,24469,24469,24469,24469, 7135, 2555, 2555, 2555, 2555, 22189, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 5705, 2555, 7133,24827,24827,24827,24827,24827,24828,24829, 24829,24829, 2555, 2555, 2555, 2555, 2555, 2555, 2555,24846, 24869,21014,24873,22732, 7880,25145,21015,23959,24524,24213, 24749,24876, 8884,24945,24838,23189,24871,20312,24877,23767, 24854,25046, 7135, 2555, 2555, 2555, 2555,22207, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,23768, 2555, 7133, 10694,24792, 3742, 8105, 531,20936,26331,24855,24846, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 7881,24524,23769,21046, 22187, 7880,22103,24445,24445,24445,24445,24445,24445,24445, 24445,24445, 531,10694,22190,24973,23779,20937,24919, 7135, 2555, 2555, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,23780, 2555, 7133, 140,24804,25617, 20271,23821,24867,22190,24763,24960, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140, 140,23781, 531,24924, 7884,25013, 24788,24788,24788,24788,24788,24788,20312,24765,22208,24789, 25275,22958,22958,25139, 140,24768, 7135, 2555, 2555, 2555, 2555, 3077, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22189, 2555, 7133,24994,25015, 3742,21010,25272, 2564, 22208,21947,22189, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 7885, 531,24988,25042,25398, 7884,24184,21054,24805,24829, 24829,24829,24829,24829,24829,24829,24829,24829, 140,24857, 20089, 140, 140, 7135, 2555, 2555, 2555, 2555,24536, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,20090, 2555, 7133,20312,25038, 531,24227,23847,20936,25379,22419,25087, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 6392,24857,20851, 24227,23847, 7887, 7888,25413,26369,22420,24536,23335,23335, 23335,23335,23335,23335,23335,23335,23335,23848,20937,24865, 7135, 2555, 2555,24897,22208, 2023,24923,22421,25279, 5705, 7888, 2555, 2555,23848, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1606, 2555, 2555,24866, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 2555, 2555, 2555, 2555, 2555, 2555, 2555,24846,24857,25093,24946,24869, 7891,24186,24896, 23821,24524,24536,24947,22104,24213,25044, 307,24852,24863, 140, 140, 140,24854,24865, 2564, 2555, 2555, 2555, 2555, 531, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 22958, 2555, 2555,10740,25072,25073,26228,22483,25128,10744, 24855,24866, 2555, 2555, 2555, 2555, 2555, 2555, 2555,24873, 24873,22102, 140,22103, 7891,22484,22137,24867,24876,24876, 23744,23323,22104,22104, 307,24877,22189,25074,25004, 140, 24878,24878, 2564, 2555, 2555, 2555, 2555,22189, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22958, 2555, 7133, 25024,24221,23841,23324,24231,23851,25397,24879,24879, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22207,24869,24211,22102, 22102, 7893, 7894,24869,24950,22137,24213,22207,25265,24952, 140,25059,24213,24871,23842,24231,23851,23852,24880, 7135, 2555, 2555,22104,25551,24880, 140,25069, 3742,22958, 7894, 2555, 2555,23843, 2556, 5730, 2555, 2555, 2555, 2558, 2558, 2555, 2555, 3090, 3700, 2558,24881,25845,25426,23852,25081, 24890,24881,23853,24900, 2558, 2555, 2555, 2555, 2555, 2555, 2555,23779,14315,14330,24993,22207, 5043,24803,25023,22102, 24221,23841,24221,23841,22137,24233,22207,14333,14348,23780, 25106,11847,24902,23853, 2564, 2555, 2555, 2555, 2555, 2555, 20271, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 23781, 2555, 2555,23842, 140,23842,18404,25107,22207,24891, 25033,22189, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22207, 13039,23843,22189,23843, 3682,10612,24903, 7898,24231,23851, 22104,24892,23733,22104,25210,25235,22104, 140,17439,22104, 25389,25256, 2564, 2555, 2555, 139, 139,20927, 139, 139, 139, 139, 139, 139, 139, 139, 139,10613, 139, 139, 140,23852,24951,25540,23734,24765,12793,24901,25119, 139, 139, 139, 139, 139, 139, 139,24769,22102,24953,22189, 22102, 572,22137,22102,11652,22137,22102,24954,24955,24996, 22189,22137,10614,26401,25131,25131,23853,25531,25084, 139, 139, 139,25134, 7915, 139, 139,25135, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 139, 139, 7934, 7935, 7936, 7937, 7937, 7937, 7937, 7937, 7937, 139, 139, 139, 139, 139, 139, 139, 536, 536, 536, 536, 536, 537, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 139, 139, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139,26416, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 7189, 139, 6493, 6493, 6493, 6493, 6493, 6493, 6493, 6493, 6493, 139, 139, 139, 139, 139, 139, 139, 151, 151, 151, 151, 151, 314, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139, 139, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139,20271, 139, 139, 139, 139, 139, 139, 139, 139, 139,16527, 313, 139,21482,23744,25090,25704,25140, 24824,20845,22189,24977, 5805, 139, 139, 139, 139, 139, 329,26461,16528,23143,25052,25124, 539,22156,24964, 784, 15381,15382,24975,22104,16529,14248,14263,20858,15552,23324, 24976,22157,24825,25257, 139, 139, 139, 322, 139, 139, 9654, 139, 139, 139, 139, 139, 139, 139, 139, 139, 22155, 313, 139,15383,24904,22186, 898,24213,14092,16530, 9655,26482, 5808, 139, 139, 139, 139, 139, 329, 140, 22102,10611, 9656,22207, 539,22137,22104,22157,22155,24907, 24956,25427,25289,22186,23184,25062,22157,22958,15384,25430, 14093,24963, 139, 139, 139, 322, 7938, 7939, 7939, 7939, 7939, 7939, 7939, 7939, 7939, 7200,25236, 9657,14094,24980, 25053,20312, 7939, 7939, 7939, 7939, 7939, 7940,20929,16767, 14317,22104,22104,22102,22155,24909,22189,22590,22137,24979, 22157,25005,22591,22155,26338,25197,24949,22189,22186, 7939, 7939, 7939, 7939, 7939, 7939, 7941, 7942, 7942, 7942, 7942, 7942, 7942, 7942, 7942, 7943,20271,25201, 140,25280,25572, 25258, 7942, 7942, 7942, 7942, 7942, 7944,22604,22102,22102, 22157,20271,22157,22137,22137,24983,25380,22155,22157,22157, 22157,25551,22186,25197,22605,24978,24957,22606, 7942, 7942, 7942, 7942, 7942, 7942, 7947, 7948, 7948, 7948, 7948, 7948, 7948, 7948, 7948, 7949, 8884,26483,24367,25846,23734, 329, 7948, 7948, 7948, 7948, 7948, 7950,22657,22155,22157,22155, 22157,22157,22186,24981,22186,22155,22155,22155,22671, 1078, 22186,22186,24985,22658,24982, 8105,22659, 7948, 7948, 7948, 7948, 7948, 7948, 7955, 7956, 7956, 7956, 7956, 7956, 7956, 7956, 7956, 7211,22242,23135,22189,25427,22156,24368, 7956, 7956, 7956, 7956, 7956, 7957,22155,22189,22155,22155,22189, 22186,23136,22186,22186,23137,24984,25022,24986,25237,24997, 22189,25827,22205, 434,20927,24987, 7956, 7956, 7956, 7956, 7956, 7956, 7958, 7959, 7959, 7959, 7959, 7959, 7959, 7959, 7959, 257, 140,26485,22189,20312,22189,25215, 7959, 7959, 7959, 7959, 7959, 7960,23144,22189,24999,22189,22189,24998, 22189,25636,22207,22207,25290,21482,25002,25551,23144,22189, 25006,22189,25025,22207,22207, 7959, 7959, 7959, 7959, 7959, 7961, 139, 139,25530, 139, 139, 139, 139, 139, 139, 139, 139, 139,25148, 3791, 139,20936,20858,21049,25297, 25849,22189,25152,22207,23141, 139, 139, 139, 139, 139, 139, 139,22189,25026,22207,25063,25241, 3792,25001,22207, 22187,22207,22207,25125,16809,14335,22190,25034,20937,23185, 22207,25028,22207,22207,25027, 4455, 139, 139, 139, 139, 139,25008, 139, 139, 139, 139, 139, 139, 139, 139, 139,25451, 3791, 139, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 139, 139, 139, 139, 139, 139, 139, 23176,22207,22707,22207,22207, 3792,24403,23182,25447,25140, 24824,25031,22207,23185,22207,22207,25619,23177,22156,22708, 23178,25030,22709, 4455, 139, 139, 139, 7981, 7982, 7982, 7982, 7982, 7982, 7982, 7982, 7982, 6533,25143,20312,22207, 22208,22187,24825, 7982, 7982, 7982, 7982, 7982, 7983,25035, 22207,22190,25058,22264,22208,25037,25403,25068,24404,14315, 14330,25106,15636,25459,14333,14348,25057,15673,25080,25067, 7982, 7982, 7982, 7982, 7982, 7982, 7985, 7986, 7986, 7986, 7986, 7986, 7986, 7986, 7986, 7987,22744,25296,25107, 140, 25455,25284, 7986, 7986, 7986, 7986, 7986, 7988,22902,22902, 19635,21056,22719,22745,25086,22756,22746,22720,25094,25620, 22757,26008,22189, 784,25077,25078,22903,22903,19636, 7986, 7986, 7986, 7986, 7986, 7986, 7990, 7991, 7991, 7991, 7991, 7991, 7991, 7991, 7991, 3077,25101, 1572,22904,22904,19637, 25145, 7991, 7991, 7991, 7991, 7991, 7992,25079,25432,24838, 25154,24186, 2564,25162, 1234, 3742,25151,25123, 307,25157, 140,25100,24524, 140, 4455,23321,17301,23767, 7991, 7991, 7991, 7991, 7991, 7993, 7996, 7997, 7997, 7997, 7997, 7997, 7997, 7997, 7997, 7243,17302,23768,24186, 140,25154, 4410, 7997, 7997, 7997, 7997, 7997, 7998,25088,25157, 140,23744, 23323, 531,25166,16360,25158,18311,23769, 4411,25825,25159, 22189,25169, 3742,25103,25120,18341,23767, 7997, 7997, 7997, 7997, 7997, 7997, 7999, 8000, 8000, 8000, 8000, 8000, 8000, 8000, 8000,23324,18342,23768,16361,25160,20271,25091, 8000, 8000, 8000, 8000, 8000, 8001,20068,23779,25176,25095,25140, 24824,25180,24246,25204,19223,23769,24536,26467,25821,23746, 25183,25127,25102,20069,23780, 140, 8000, 8000, 8000, 8000, 8000, 8002, 8007, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 8008, 7255,24825,22958,20833,23781,25154,25194, 8008, 8008, 8008, 8008, 8008, 8009,25260,25157,24876, 140,25112,25113, 25141,25411,25140,24824,21017, 140,25378,25159, 464,24788, 24788,24788,24788,24788,24788, 8008, 8008, 8008, 8008, 8008, 8008, 8010, 8011, 8011, 8011, 8011, 8011, 8011, 8011, 8011, 3077,25114,25227,20845,25160,24825,25145, 8011, 8011, 8011, 8011, 8011, 8012, 270,22205,24838,25692,26194, 2564,21997, 21997,21997,21997,21997,21997,21997,21997,21997,25115, 3742, 531,25122,25142,22722, 8011, 8011, 8011, 8011, 8011, 8013, 8019, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 6560, 20312,25469,22156,25154,25591,25162, 8020, 8020, 8020, 8020, 8020, 8021,25157,20089,24524,22103,25166,24227,23847,25158, 14117,25164,25240,14117,25269,25169,25828,20312,25465,20929, 25638,20090,25170, 8020, 8020, 8020, 8020, 8020, 8020, 8023, 8024, 8024, 8024, 8024, 8024, 8024, 8024, 8024, 8025,16360, 23848,12845,20851,17447,12845, 8024, 8024, 8024, 8024, 8024, 8026,25126,25126,25126,25126,25126,25126,25126,25126,20936, 22665,25292,22136,25281,11847, 140, 3742,22189,21054,25551, 25238,16361, 8024, 8024, 8024, 8024, 8024, 8024, 8033, 8034, 8035, 8036, 8036, 8036, 8036, 8036, 8036,24227,25218,25859, 26560,20937,25162,25176, 5863, 5863, 5863, 5863, 5863, 5867, 23779,24524,24536,13039,25834,23145,25900, 140,22189,25178, 23733,24221,23841,25003,24221,25213, 531,25242,23780,22189, 23848, 5863, 5863, 5863, 5863, 5863, 5863, 139, 139,23146, 139, 139, 139, 139, 139, 139, 139, 139, 139,23781, 3791, 139,23734,25691,23842,14248,25121,23842,25381,14117, 25180, 139, 139, 139, 139, 139, 139, 139,15180,25183, 25239,25176,23843, 3809, 140,23843,25184,25367,25073,24111, 24536, 139, 139, 139, 139, 139, 139, 139, 139, 139, 12845, 4455, 139, 139, 3799, 531,25194,24221,23841,24213, 24221,23841,15181,25277, 140,24876, 307,25194,25679,15542, 25074, 140,25200, 8037, 139, 139,24876, 139, 139, 139, 139, 139, 139, 139, 139, 139,25166, 3791, 139,22958, 23842, 531,24484,23842,25706,25169,20271,25166, 139, 139, 139, 139, 139, 139, 139,25162,25169,25171,23843,10612, 3809,23843,25551,25170,24524,25214,22156,25510,25171,25392, 8038,25164,26566,25351,25212,25294,25173,25106, 4455, 139, 139, 3799, 246, 246,25172, 251, 449, 246, 246, 246, 24213,10613, 246, 246, 246,25172,25848,25261,12793,25404, 531, 2023, 140,25174,25107, 531, 5885, 246, 246, 246, 246, 246, 246,21017,15180,25480,24227,23847, 256, 1606, 22958,10612,22103,23114,14317,15626,10614, 139, 139, 139, 139, 139, 139, 139, 139, 139, 257, 246, 246, 246, 246, 246,25476, 251, 449, 246, 246, 246,15181,23848, 246, 246, 246,10613,23761,23761,23761,23761,23761,23761, 23761,23761,23761,25162, 5885, 246, 246, 246, 246, 246, 246, 454,24524,22187,24800, 3077, 256,25439,25204,25225, 25427,25319,25270,25217,25173, 307,24838,26571,10614,22614, 140,25431,25551, 2564, 257, 246, 246, 246, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 253,22958,25377, 531,25174,25180,25180, 8047, 8047, 8047, 8047, 8047, 8048, 22103,25183,25183,25361,23186, 1379,25419,22207,25184,25269, 23905,22205,25032,25185,25185,22102,25844, 1044,22207,25343, 11847, 8047, 8047, 8047, 8047, 8047, 8047, 2648,23187, 5884, 5884, 5884, 5884, 5884, 5884, 5884, 5884, 5884,20858,25232, 25186,25186,25176,25176,25194, 5884, 5884, 5884, 5884, 5884, 5886,24536,24536,24876,14335,15663,25425,22136,25178,13039, 25200,25443,23906,25187,25187,25202,26142,24231,23851,22156, 25446,25551, 5884, 5884, 5884, 5884, 5884, 5884, 5881, 5881, 5881, 5881, 5881, 5881, 5881, 5881, 5881, 4494, 140,25537, 25188,25188,25203,25194, 5881, 5881, 5881, 5881, 5881, 5882, 23852,25432,24876,25206,25206,25206,25206,25206,25206,25206, 25206,25206,22189, 140,25202,25855, 531,24543,24543,24543, 12845, 5881, 5881, 5881, 5881, 5881, 5881, 265, 265,25295, 272, 480, 265, 265, 265,23853,22667, 265, 265, 265, 26578,25203,25206,25206,25206,25206,25206,25207,25208,25208, 25208, 5919, 265, 265, 265, 265, 265, 265, 531, 3077, 20312,21049,25588, 277,25208,25208,25208,25208,25208,25208, 25208,25208,25208,15180,22187,24231,25221, 2564,25902,24231, 23851, 265, 265, 265, 265, 5904, 139, 139, 139, 139, 139, 139, 139, 139, 139,25399,14248,14315, 278, 265, 265,16527, 272, 480, 265, 265, 265,15181,23852, 265, 265, 265,23852,21482, 784,15381,15382, 5905,22902,25393, 434,16528,26584, 5919, 265, 265, 265, 265, 265, 265, 485,24231,23851,16529,22189, 277,22903,22103, 257, 531, 22205,25615,25117,23853,14333,20858,25220,23853,15383, 2696, 15542,14325, 5906, 265, 265, 265, 265,22904,25224,25223, 22102,25276,25355,26085,23852,22696,10611,22187,16530, 2697, 278, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 274, 2698,25306,25226,25420,22705,25222, 8072, 8072, 8072, 8072, 8072, 8073,22604,25453, 3256,14315,25350,14343,23853, 25526, 1376,25264,25157,14317,15626,25230,16765,25639,25365, 22605,26143, 140,22606, 8072, 8072, 8072, 8072, 8072, 8072, 2679, 1377, 5918, 5918, 5918, 5918, 5918, 5918, 5918, 5918, 5918,22103,24246, 1042,25616,22102,25718,25439, 5918, 5918, 5918, 5918, 5918, 5920,25356,22103,24838,25722,25826,26593, 14325,22156, 898,25441,14092,25231,25263,25263,25263,25263, 25263,25263,25263,25263,25263, 5918, 5918, 5918, 5918, 5918, 5918, 5915, 5915, 5915, 5915, 5915, 5915, 5915, 5915, 5915, 4528,22156,14333,22156,25869,22615,14093, 5915, 5915, 5915, 5915, 5915, 5916,25268,25287,25287,25287,25287,25287,25287, 25287,25287,25287,25376,14094,22668,19635,22189,22483,22616, 22205,25424,26201,25293, 5915, 5915, 5915, 5915, 5915, 5915, 1769,14095,15392,22156,19636,25463,22484,25228,22759,22669, 25366,25474,25294,23946,25169, 8116,14343,22657,22696,22189, 25183,25360,25367,25073,25304,19637,25288,25305,14335,15663, 22207,16807, 1770,22189,22658,22703,26469,22659,22705, 1771, 22187,22187,22187,22187,22187,22187,22187,22187,22187,22189, 22696,22189,25390,23323, 1772,25074, 1773,25634, 1774,25488, 23114, 1775, 1776,25492,22696,23947, 1777,22703,24876, 1778, 22705, 1779,25495, 1780,25307, 1781, 1782, 1783, 1769,25308, 22696,22703,25369,18404,22705,23324,22242,22187,22187,22187, 22187,22187,22187,22187,22187,22187,25918,22703, 8117,25532, 22705,22187,22187,22187,22187,22187,22187,22187,22187,22187, 1770,22189,23746,25367,25073,17439, 531, 1771,25533,24367, 22187,22187,22187,22187,22187,22187,22187,22187,22187,26602, 22189,20927, 1772,22242, 1773,25538, 1774,22189,22189, 1775, 1776,25414,22696,22207, 1777,22207,25074, 1778,25310, 1779, 20929, 1780,25718, 1781, 1782, 1783, 3291,14317, 3292,22703, 25721,22696,22705,16360,25368, 1768,22242,20937,22696,22696, 22187,24368,25309, 140,22733,25690,22733,22207,22703,25311, 25328,22705,25367,25073,22205,22703,22703,25312,22705,22705, 3293,22740,14117,25330,22742,16361,22742, 3294,22187,22187, 22187,22187,22187,22187,22187,22187,22187, 140,22733,25998, 25370,15621, 3295, 531, 3296,25074, 3298,25731,25331, 3299, 3911,22205,25643,12845, 3301,22740,25446, 3302,22742, 8118, 25423, 3304,18341, 3305, 3306, 3307, 3928, 1769,25647,22207, 22187,22187,22187,22187,22187,22187,22187,22187,22187,25535, 18342,25635,25314,22187,22187,22187,22187,22187,22187,22187, 22187,22187,25394,26609,25406,25113, 464,24227,23847, 1770, 22733,19223, 140, 784,25372,25078, 1771,25316,22187,22187, 22187,22187,22187,22187,22187,22187,22187,22740,25336,25657, 22742, 1772,25524, 1773, 2207, 1774,25315,25114, 1775, 1776, 23848, 270,25717, 1777,25383,25384, 1778,25079, 1779,22207, 8119,22207, 1781, 1782, 1783, 1769,22187,22187,22187,22187, 22187,22187,22187,22187,22187,23321, 434,22187,22187,22187, 22187,22187,22187,22187,22187,22187,26613,25385,25317,25332, 22733,25401,22733,22419, 257,22722,25387, 1770,22207,14317, 23767,25551,25514,25333, 1771,25386,25329,22740,25443,22740, 22742,22420,22742,24007, 784,25372,25078,25446,23768, 1772, 22717, 1773,25712, 1774,25450,24836, 1775, 1776,25318,22733, 22102, 1777,22421, 8120, 1778,25854, 1779, 140, 1780,23769, 1781, 1782, 1783, 3291,22718, 3292,22740,25644,25079,22742, 140, 531, 1768,15621,20858, 5970,22187,22187,22187,22187, 22187,22187,22187,22187,22187,25319,25373,22187,22187,22187, 22187,22187,22187,22187,22187,22187,25725, 3293,17301,25870, 26100, 784,25372,25078, 3294,22187,22187,22187,22187,22187, 22187,22187,22187,22187,25269,26369,17302,24838,22102, 3295, 22102, 3296, 4599, 3298,25388,25320, 3299, 5971, 140, 140, 25375, 3301,22716,22242, 3302,25079, 3303,18311, 3304,22102, 3305, 3306, 3307, 1769,22205,22205,22205,22205,22205,22205, 22205,22205,22205,23321,22205,22205,22205,22205,22205,22205, 22205,22205,22205,25321,22205,22205,22205,22205,22205,22205, 22205,22205,22205,25432,25439, 1770,22207,25406,25113,25453, 307, 140, 1771,24838,22207, 140,14256,25463,25157,22189, 22264,25833,23744,23323,25877,25458,25169, 1772, 531, 1773, 22264, 1774,22189,25468, 8132, 1776,22189,22733,25716, 2215, 25114,23767, 1778,25334, 1779,22733, 1780,25400, 1781, 1782, 1783, 2223,25106,20937,22740,23324,25335,22742,25407,23768, 25402, 2224,22740,20068,25391,22742, 8133,24403,22205,22205, 22205,22205,22205,22205,22205,22205,22205,25406,25113,25107, 23769,20069,25697, 2225, 3742, 2738,25898,26664,25406,25113, 2226,22205,22205,22205,22205,22205,22205,22205,22205,22205, 25903, 140,20833,25899, 3742, 2227, 3742, 2228, 3742, 2229, 25114,24522, 2230, 2231,22264,25417,25409, 2232,20089,24404, 2233,25114, 2234, 140, 2235,25746, 2236, 2237, 2238, 2223, 6673,25140,24824,25416,25157,25453,20090,25408, 4410, 2224, 23779,22958,23779,26255,25157,25338,25415,22205,22205,22205, 22205,22205,22205,22205,22205,22205, 4411,20851,23780, 531, 23780, 2225,25536,14117,24825,25418,25406,25113, 2226,22205, 22205,22205,22205,22205,22205,22205,22205,22205,22189,23781, 26668,23781,25434, 2227,24524, 2228,25612, 2229, 1078,14335, 2230, 2231,25453,25340,12845, 2232, 140,26669, 2233,25114, 2234,25157, 2235,25339, 2236, 2237, 2238, 8137,25458,25758, 784,25372,25078,25460,22958,25718, 8138, 8139,25169,22205, 22205,22205,22205,22205,22205,22205,22205,22205,22205,22205, 22205,22205,22205,22205,22205,22205,22205,25654,25410, 8140, 25461,25140,24824,15658,25079,10612, 8141,22205,22205,22205, 22205,22205,22205,22205,22205,22205,25140,24824,24227,25515, 26490, 8142,23321, 8143, 8144, 8145,22207,20936, 8146, 8147, 25856,25374,25453, 8148,24825,24046, 8149,10613, 8150,25341, 8151,25157, 8152, 8153, 8154, 3291,22759, 3955,24524,24825, 22754,23848,25437,25460, 2222, 307,25551, 3956,25342,20937, 140,22205,22205,22205,22205,22205,22205,22205,22205,22205, 25472,25891,25522,25436,22755,26390, 8884, 307,22958, 3957, 25461,22155, 140,16360,24524,25343, 3958,22205,22205,22205, 22205,22205,22205,22205,22205,22205, 140,25463,25539, 531, 22958, 3959,25474, 3960,23733, 3962,25169, 8105, 3963, 4625, 25344,25183,22207, 3965,22958,16361, 3966,22753, 3967,25472, 8156, 531, 3969, 3970, 3971, 3291, 531, 3955, 5904,25534, 22102, 140,22102,22264, 2222,24534,23734, 3956, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 8160, 140,25474,22958, 24536,22102,25488,25570,26670,25738,25714,25183,20999, 3957, 5905,24876, 140,24111,25479,22958, 3958,22205,22205,22205, 22205,22205,22205,22205,22205,22205, 531,22207,25463,25914, 22958, 3959,25733, 4628,25579, 3962,25349,25169, 3963, 4625, 25521,20271,25743, 3965,25468, 5906, 3966, 140, 3967,25470, 4629,16527, 3969, 4630, 3971, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,26671,25463,25916,22696,25359,25744, 25106,16528,23147,24536,25169,25345,25471,23148,25528,25753, 307,25765,25974,16529,22703, 140,25470,22705,22187,22187, 22187,22187,22187,22187,22187,22187,22187,25107, 1377,22733, 3960, 3961,25483,22958,23188, 140,25754,26672,25766,23189, 1042,25529, 8161,25471, 140,25696,22740, 3968,25520,22742, 3970, 8162, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 1379,22958,25484,25484,25484,25484,25484,25484,25484, 25484,25484,15180, 1044,25975,25354,22205,22205,22205,22205, 22205,22205,22205,22205,22205, 139, 139, 139, 139, 139, 139, 139, 139, 139,25774,25488, 140, 3960,24536,25492, 25483,24221,23841,25183,24876,25781,15181, 307,25495,25843, 140,25490, 140, 531, 3968,25496,25551, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,25421,22958,22102, 22958,22102,25782,25364,23842,26101,21482,26374,25422,25422, 25422,25422,25422,25422,25422,25422,25422,25412,25474,25474, 22102,25551,23843,26372,14335, 140,25578,25183,25183,16361, 24231,23851, 2696, 3960,25479,25711,25551, 8163,20858,25481, 25481,25484,25484,25484,25484,25484,25485,25486,25486,25486, 3968,25976, 2697, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,23852, 2698,21976,25482,25482,25486,25486, 25486,25486,25486,25486,25486,25486,25486,14248,15658,26673, 15550,25492,25492,25488, 8164,25488,25527,14248,25585,25653, 25495,25495,24876,24838,24876,22207, 140,25496,23853, 3960, 307,25490,25497,25497,25499, 140,25499,24543,24543,24543, 24543,24543,24543,24543,24543,24543, 3968,24221,25511, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,25498, 25498,25500,26229,25500,25505,25506,25507,25508,25508,25508, 25508,25508,25508, 434,24221,23841,24221,23841,24231,25517, 23842,24231,23851,22135,22207, 140,26680,22102,26000,22102, 22187, 257,25915,24227,23847, 3960,24231,23851,23843,26004, 25589,25584, 898,25809,25525,21040, 8165,23842,22102,23842, 25797,23852, 3968,25512,23852, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,23843,23848,23843,25742,23852, 24946,22136,25516,25743,24223,25518,14093,25793,20312, 784, 15381,15382,22102,25618,22102,22102,23853,22102,22102,23853, 22102,25513,25919,24229,14094,25519,24233,22721,14248,22207, 25744, 3960,22419,22102,23853,26681,22102,25631,14248,22102, 25677,14095, 8166,15383,22102,22102,22102,22102, 3968,15561, 22420, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10611,21053,25791,22189,22102,22102,21054,20312,24975, 25576,22421,25495,25577,25592,22102,25269,22102,15384,16543, 22102,22155,22102,22155,25523,22155,22155,22155,22155,22155, 22102,22155,22155,22590,22155,18404,22102, 3960,22591,25871, 25580,22102,22155, 3742,22187,25597,22155,22155, 8167,22155, 22155,22155,22241,22155, 3968,22205,25598, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,17439,22590,22189, 22155,25583,25927,22591,22187,14323,22205, 4410,25106, 140, 25595,25596,25319,25934,25343,22155,25600,22155,22155,22155, 22155,22155,25294,23114,26157, 4411,22155,25599,22155,22671, 22242,14315,25707, 3960,15635,25107,22155,25648,25637,22155, 22155,14315,25649,25710,26165,25294, 8168,22155,26254,22155, 3968,22155,22758, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,22670,22719,14341,22756,22670,22671,22720, 22155,22757,22671,25944,25601,22189,22189,22189,22189,22189, 22189,22189,22189,22189,22189,22189,22189,22189,22189,22189, 22189,22189,22189,22207,14315,22205,26013,22670,25551, 3960, 8169,26382,22671,22263,14315,25446,22189,22189,22189,22189, 22189,22189,22189,22189,22189,15644, 3968,25367,25073, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,25607, 25609,22189,22189,22189,22189,22189,22189,22189,22189,22189, 25608,22189,22189,22189,22189,22189,22189,22189,22189,22189, 25074,22264,22189,22189,22189,22189,22189,22189,22189,22189, 22189,25937,22483,14333,23733, 3960,15672,26682,25660, 4633, 25715,20845,25658,14333,25659,24857,24857,24857,24351, 1078, 22484,24246, 3968, 8170,26636, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,23145,23734,25367,25073,25367, 25073,25610,25752,25611,25987,25672,26000,25753,23150,22189, 22189,22189,22189,22189,22189,22189,22189,22189, 8884,23146, 22189,22189,22189,22189,22189,22189,22189,22189,22189,14333, 25074, 3960,25074,25663,25754,26000,25764,25406,25113,14333, 8171,25765, 4638,26003, 784,25372,25078,20271, 3968, 8105, 15681, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,19635,20271,24874, 784,25372,25078,25614,25766,25613, 25114,25662,25865,25702,22902, 140,23144,25687,25079,19636, 26685,25612,25829,22189,22189,22189,22189,22189,22189,22189, 22189,22189,22903,22958,25669, 4639,25665, 3960,25079,26675, 19637,25668,26793, 8172,22207,22207,22207,22207,22207,22207, 22207,22207,22207,22904, 3968, 140,23321, 3970,14117, 4640, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,22773, 22207,22207,22207,22207,22207,22207,22207,22207,22207,22207, 22207,22207,22207,22207,22207,22207,22207,22207,24838,12845, 23744,23323,25831,26022,25628,25731,26358,25746,25626,25551, 140,26122,26865, 531,25446, 3960,25157,25551, 8173,22207, 22207,22207,22207,22207,22207,22207,22207,22207,26872, 531, 26023, 531, 3968,23324,25681, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,25627,22207,22207,22207,22207, 22207,22207,22207,22207,22207,22189,22189,22189,22189,22189, 22189,22189,22189,22189,22207,22207,22207,22207,22207,22207, 22207,22207,22207,20271,26062,25758,25774,23905,22102,25629, 26875, 3960,22102,25495,25169,25183,23191, 8174,20271,23186, 25673,25384, 784,25372,25078, 531,25862,25630, 3968, 531, 531, 3970, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,24387,25642,23187,22207,22207,22207,22207,22207,22207, 22207,22207,22207,25385,22136,25964,25079,17301,25631,23906, 22207,22207,22207,22207,22207,22207,22207,22207,22207,22612, 26145,25386, 3077,26878,23321,17302,14117, 3960,22207,22207, 22207,22207,22207,22207,22207,22207,22207, 140, 8175,25973, 2564,26881,25678,25632, 3968,25667,18311, 3970, 139, 139, 23185, 148, 149, 139, 139, 139,22793,12845, 139, 139, 139,25693,22207,22207,22207,22207,22207,22207,22207,22207, 22207, 140, 6054, 139, 139, 139, 139, 139, 139,26646, 26144,25406,25113,25731, 162,20312,25633,25673,25384,25673, 25384,22102,25446,25673,25384,25673,25384,16360,26029,25737, 20312,17447, 139, 139, 139, 139, 139, 139,25880, 148, 149, 139, 139, 139,25114,24876, 139, 139, 139,25652, 25385,25676,25385,23744,23323,26030,25385, 140,25385,16361, 6054, 139, 139, 139, 139, 139, 139, 335,25674,23767, 25386, 531, 162,22189,25386,22958,25386,26885,25694,25675, 25703,25713, 464,25683,25684,25551,23324,23768,23767,20068, 139, 139, 139, 139, 8187, 8187, 8187, 8187, 8187, 8187, 8187, 8187, 8187, 150,25680,25850,23768,20069,23769, 329, 8187, 8187, 8187, 8187, 8187, 8188,25685, 270,26166,25406, 25113,25780,25695,15414,14117,26095,25781,23769,20833,25851, 22752,26187,25406,25113,25686,25140,24824, 8187, 8187, 8187, 8187, 8187, 8187, 8190, 8190, 8190, 8190, 8190, 8190, 8190, 8190, 8190,25114,25782,18341,12845,26532,25746,25746, 8190, 8190, 8190, 8190, 8190, 8191,25114,25157,25157,24825,25758, 25699,22102,18342,25748,25729,25876,25551, 140,25169,25755, 25688, 140, 3742, 3742,25551,25760, 8190, 8190, 8190, 8190, 8190, 8190, 2840,19223, 6053, 6053, 6053, 6053, 6053, 6053, 6053, 6053, 6053,25824,25701,26888,25756,26212,15544,25791, 6053, 6053, 6053, 6053, 6053, 6055,23779,23779,25495, 1379, 25774,25872,25194,25194,25194,25708,22591,24246,26353,25183, 25551, 1044,14256, 531,23780,23780,25776, 6053, 6053, 6053, 6053, 6053, 6053, 8196, 8196, 8196, 8196, 8196, 8196, 8196, 8196, 8196,25140,24824,25857,23781,23781,25746,25758, 8196, 8196, 8196, 8196, 8196, 8197,25858,25157,25169,25791,26726, 22155,25889,25758,25748,25760,26256,26424,25495,25755,25767, 22155,25169, 531,26259,25796,24825, 8196, 8196, 8196, 8196, 8196, 8196, 2840,25767, 8199, 8199, 8199, 8199, 8199, 8199, 8199, 8199, 8199, 5357,26895,25756,25768,25774,25774,25791, 6066, 6066, 6066, 6066, 6066, 6067,25183,25183,25495,26898, 25768,25728,25800,25776,24876,25796,25551,25551,25783,25783, 25798, 307, 531,26121, 140,25551, 140, 6066, 6066, 6066, 6066, 6066, 6066, 8200, 8200, 8200, 8200, 8200, 8200, 8200, 8200, 8200,22958,25852,22958,25784,25784,25799,25853, 8200, 8200, 8200, 8200, 8200, 8201,24857,24857,24857,24857,24857, 24857,24857,24857,24857,25801,25801,25801,25801,25801,25801, 25801,25801,25801,24221,23841,17301, 8200, 8200, 8200, 8200, 8200, 8200, 8203, 8203, 8203, 8203, 8203, 8203, 8203, 8203, 8203, 5366,24876,17302,26036, 140,25791,26211, 6072, 6072, 6072, 6072, 6072, 6073, 140,25495,23842, 531,25996, 140, 140,25800,25810,23847,18311,25807,25963,25798, 307,26044, 26230,26037,22958, 140,23843, 6072, 6072, 6072, 6072, 6072, 6072, 8204, 8204, 8204, 8204, 8204, 8204, 8204, 8204, 8204, 16361,22958,22189,25999,25799,23848,26045, 8204, 8204, 8204, 8204, 8204, 8205,25801,25801,25801,25801,25801,25802,25803, 25803,25803,25803,25803,25803,25803,25803,25803,25803,25803, 25803,20927,24229, 464, 8204, 8204, 8204, 8204, 8204, 8204, 8207, 8207, 8207, 8207, 8207, 8207, 8207, 8207, 8207, 5379, 5904,15554,15556,26676,25887,25901, 6081, 6081, 6081, 6081, 6081, 6082,22155,25819,26102,25806,23841,22189, 270,23149, 24227,23847,22155,26055,26069,22772,15557,26677,24221,23841, 24231,23851, 5905, 6081, 6081, 6081, 6081, 6081, 6081, 8208, 8208, 8208, 8208, 8208, 8208, 8208, 8208, 8208,23842,16527, 26056,26070,25890,23848,25884, 8208, 8208, 8208, 8208, 8208, 8209,23842,25811,23852,22102,24246,23843, 5906,25816,16528, 25140,24824,25813,22773,26096,24223,17830,15639,22207,23843, 23733,16529, 8208, 8208, 8208, 8208, 8208, 8208, 8211, 8211, 8211, 8211, 8211, 8211, 8211, 8211, 8211, 5393,23853,14117, 22155,15640,25808,24825, 6090, 6090, 6090, 6090, 6090, 6091, 22155,22155,23734,25957,22590,25933,16530,17581,25943,22591, 20845,22155,25815,26178,26906,25551,25875, 784,15381,25818, 12845, 6090, 6090, 6090, 6090, 6090, 6090, 8212, 8212, 8212, 8212, 8212, 8212, 8212, 8212, 8212,10612,25840,15612,26173, 26244,15649,25888, 8212, 8212, 8212, 8212, 8212, 8213,22722, 22155,15383,26909,22189,25841,25830,22207,25842,25864,25882, 22155,25612,14323, 140,22792,14341, 531, 2696,10613,10611, 8212, 8212, 8212, 8212, 8212, 8212, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6103,15384, 2697,26231,26261, 20271,20312, 6102, 6102, 6102, 6102, 6102, 6104,22207, 2698, 25551, 140,20929,10614,11654,20271,20312,21482,25551,25817, 22189,26124,22793,23147, 140,26167,21016,21055,23148, 6102, 6102, 6102, 6102, 6102, 6102, 6099, 6099, 6099, 6099, 6099, 6099, 6099, 6099, 6099, 4726,26103,26917,25997,26186,20858, 25822, 6099, 6099, 6099, 6099, 6099, 6100,25892,22759,22483, 26866,25917,22671,25804,22155,25508,25508,25508,25508,25508, 25508,25508,25508,25508,22155,23190,21976,22484, 6099, 6099, 6099, 6099, 6099, 6099, 139, 139, 140, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 561, 561, 561, 561, 561, 561, 561, 561, 561, 150, 139, 139, 139, 139, 139, 329, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 8219, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139,20936, 139, 139, 139, 139, 139, 139, 139, 139, 139,26091, 139, 2864,25867,25867,25867,25867,25868,25867,25867,25867, 25867, 139, 139, 139, 139, 139, 139, 139,25832,16528, 22207,20937,26381, 7476,25849,26180,25812,23851,24231,23851, 3742,16529,22187,22187,22187,22187,22187,22187,22187,22187, 22187, 2866, 139, 139, 139, 139,18404, 139, 139, 139, 139, 139, 139, 139, 139, 139,20938, 139, 2864,23852, 25106,23852,25673,25384,20089,25928,16530,26013, 139, 139, 139, 139, 139, 139, 139, 7477,25446,26424,17439,26256, 7476,25904,20090,26015, 140,25814,24233,25107,25140,26011, 26260,22207,26920,25980,23853,25385,23853,25709, 2866, 139, 139, 139, 139,20851, 139, 139, 139, 139, 139, 139, 139, 139, 139,25958, 139, 4756,22207,26262,20312,25990, 26730,24825,14317,25962,25631, 139, 139, 139, 139, 139, 139, 139,14317,20312, 140,22419,26179, 8231,25883, 898, 531,14092,25820,16773,25885,25885,25885,25885,25886,25885, 25885,25885,25885,22420,21056, 2866, 139, 139, 139, 139, 20927, 139, 139, 139, 139, 139, 139, 139, 139, 139, 26245, 139, 4756,14093,22421,26519,23188,25367,25073, 140, 23946,23189, 139, 139, 139, 139, 139, 139, 139, 8232, 26359,14094,14317,25444, 8231,16764,14335,25367,25073,16806, 15390,22155,14317,25929, 1078, 140,14335,25939,14095,26378, 25074,22155, 2866, 139, 139, 139, 139,25938, 139, 139, 139, 139, 139, 139, 139, 139, 139,23114, 139, 139, 25074,26256,23947,16360,26113, 1379,25948,25155,22155, 139, 139, 139, 139, 139, 139, 139,25947, 1044,22155, 140, 26930, 8236,25446,26403,25551,22187,22187,22187,22187,22187, 22187,22187,22187,22187, 140,16361, 140,22958,25849, 2866, 139, 139, 139, 139,14335, 139, 139, 139, 139, 139, 139, 139, 139, 139,14335, 139, 139,26099,23744,23323, 25673,25384, 531, 5904,25551,16815, 139, 139, 139, 139, 139, 139, 139, 8237,25905,25855,25995,26949, 8236,22187, 22187,22187,22187,22187,22187,22187,22187,22187,25906,25406, 25113,23324, 140,25385,25966, 5905, 2866, 139, 139, 139, 139,19635, 139, 139, 139, 139, 139, 139, 139, 139, 139,25386, 139, 139,25463,25463,25463,26357,26674,19636, 26675,14117,25114, 139, 139, 139, 139, 139, 139, 139, 26092,25954,25960,22902,26383, 8241,26246, 784,25372,25078, 19637,25971,22187,22187,22187,22187,22187,22187,22187,22187, 22187,22903,12845, 2866, 139, 139, 139, 139,25984, 139, 139, 139, 139, 139, 139, 139, 139, 139,17439, 139, 139,25079,22904,26021,26028,22614,26418,26109,26022,26029, 139, 139, 139, 139, 139, 139, 139, 8242,22712,23321, 18341,26383, 8241,26105,26424,22187,22187,22187,22187,22187, 22187,22187,22187,22187,25907,26023,26030,25952,18342,26110, 2866, 139, 139, 139, 139,25977, 139, 139, 139, 139, 139, 139, 139, 139, 139,25972, 139, 139,26731,19223, 25474,25474,25474,25406,25113,22189,26111, 139, 139, 139, 139, 139, 139, 139,26112,25908,27180, 3077, 531, 8246, 22720, 784,25372,25078,21482,24367,22187,22187,22187,22187, 22187,22187,22187,22187,22187, 2564,25114, 2866, 139, 139, 139, 139,25985, 139, 139, 139, 139, 139, 139, 139, 139, 139,26468, 139, 139,25079,20858, 8884,25967,25684, 20068,25953,14117,22102, 139, 139, 139, 139, 139, 139, 139, 8247,22242,23321,23767,25978, 8246,24368,20069,22205, 22205,22205,22205,22205,22205,22205,22205,22205, 8105,25994, 25979,25685,23768,12845, 2866, 139, 139, 139, 139,20833, 139, 139, 139, 139, 139, 139, 139, 139, 139,25686, 139, 139,27183,23769,26147,25967,25684,26413,26104,25157, 25157, 139, 139, 139, 139, 139, 139, 139,25920,20271, 22618, 140, 140, 8250, 1379, 531,26363,22205,22205,22205, 22205,22205,22205,22205,22205,22205, 1044,26013,25685,22958, 22958, 2866, 139, 139, 139, 139,25446, 139, 139, 139, 139, 139, 139, 139, 139, 139,25968, 139, 139,25852, 531, 531,25967,25684,25853,25551,26038,25167, 139, 139, 139, 139, 139, 139, 139, 8251,25921,26639, 140, 140, 8250,22205,22205,22205,22205,22205,22205,22205,22205,22205, 25922,25406,25113, 140,26062,25685,22958,22958, 2866, 139, 139, 139, 139,25495, 139, 139, 139, 139, 139, 139, 139, 139, 139,25686, 139, 139,25367,25073, 531,25967, 25684,27186,25969,25169,25114, 139, 139, 139, 139, 139, 139, 139,26547,26275, 531, 140,25804, 8253,25508,25508, 25508,25508,25508,25805,25505,25505,25505,25970,15180,25074, 25705, 8254,25685,22958,22189, 2866, 139, 139,25986, 140, 26276, 139, 139, 139, 139, 139, 139, 139, 139, 139, 25686,26035,17872,15676,26423,20312,26036,22716,26488, 8254, 139, 139,15181, 139, 139, 139, 139, 139, 139, 139, 139, 139,25551, 139, 139, 434,23140,15677,25967,25684, 25848,26128,25169,26037, 139, 139, 139, 139, 139, 139, 139,25551,26168, 257, 140, 140, 8256, 531,27193,25551, 26131,26343,22205,22205,22205,22205,22205,22205,22205,22205, 22205,25685,22958,22958, 139, 139, 139, 139, 139,26253, 139, 139, 139, 139, 139, 139, 139, 139, 139,25686, 139, 139, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 139, 139, 139, 139, 139, 139, 139,22749,22753, 26491,22483,26062, 8256,26043,26375,25673,25384,26054,26044, 3742,25495,25551,26055,25923,25551,26284,26971,26064,22484, 25551, 139, 139, 4103, 139, 139,26130, 139, 139, 139, 139, 139, 139, 139, 139, 139,26045, 139, 139,25385, 26056,25551,25961,26285,23779,25991,26046,25181, 139, 139, 139, 139, 139, 139, 139, 531,26484,25386, 140, 140, 8260,22727,23780,25140,24824,24795,24403,22205,22205,22205, 22205,22205,22205,22205,22205,22205,22958,22958, 2866, 139, 139, 139, 139,23781, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 139,24825,26068, 3742, 1416, 27199,26293,26069,25183,26057, 139, 139, 139, 139, 139, 139, 139, 8261,22264, 531, 140, 140, 8260,24404,26047, 26047,26047,26047,26047,26047,26047,26047,26047,26294,26070, 26010,26373, 4410,22958,22958, 2866, 139, 139, 139, 139, 22189, 139, 139, 139, 139, 139, 139, 139, 139, 139, 4411, 139, 139,26047,26047,26047,26047,26047,26048,26049, 26049,26049, 139, 139, 139, 139, 139, 139, 139,26495, 26496,25993,27205,25804, 8263,25505,25505,25505,25505,25505, 25505,25505,25505,25505,25852,26376,26169,25421, 8264,25853, 25551,23148, 2866, 139, 139,25551, 140,10612,25422,25422, 25422,25422,25422,25422,25422,25422,25422,22205,22205,22205, 22205,22205,22205,22205,22205,22205, 8264, 139, 139,16361, 139, 139, 139, 139, 139, 139, 139, 139, 139,10613, 139, 4756,26049,26049,26049,26049,26049,26049,26049,26049, 26049, 139, 139, 139, 139, 139, 139, 139,26763,26062, 22155,22665,26462, 8266,26261,26442,25157,25924,25495,26093, 3742, 307,22757, 307,10614,26064, 140,26383, 140,26426, 26071, 2866, 139, 139, 139, 139,20929, 139, 139, 139, 139, 139, 139, 139, 139, 139,22958, 139, 4756,24227, 23847,26988,24221,23841,20089,26109,25183,26072, 139, 139, 139, 139, 139, 139, 139, 8267,26360, 531, 140,27021, 8266, 531,20090,22187,22187,22187,22187,22187,22187,22187, 22187,22187,23848,26087,25992,23842,22958,26110, 2866, 139, 139, 139, 139,20851, 139, 139, 139, 139, 139, 139, 139, 139, 139,26082, 139, 139,26058,26058,26058,26058, 26058,26058,26058,26058,26058, 139, 139, 139, 139, 139, 139, 139,25857,22719,25551,22590,27211, 8271,22720,14117, 22591,22102,25551,26117,22207,25932,22205,22205,22205,22205, 22205,22205,22205,22205,22205, 139, 139, 139, 139, 139, 531, 139, 139, 139, 139, 139, 139, 139, 139, 139, 12845, 139, 139,26058,26058,26058,26058,26058,26059,26060, 26060,26060, 139, 139, 139, 139, 139, 139, 139, 8272, 26182,25551,25859,26379, 8271,23189,22756,22756,25551,25551, 22207,22757,22757,25551,25854,26106,25551,26976,25942,26116, 22207,26123, 139, 139, 139, 139, 139,26383, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 203, 139, 139, 139, 139, 139, 139, 8280, 8280, 8280, 8280, 8280, 8281, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 8279, 8279, 8279, 8279, 8279, 8279, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 1376, 22670, 140,26306,25823,23767,22671,22155,26237,27217, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280,26038, 1377, 25169,26046,23768,20845,26424, 307,26504, 307, 307,26307, 140, 1042, 140, 140,26060,26060,26060,26060,26060,26060, 26060,26060,26060,23769,26742, 1745,24231,23851,22958,26531, 22958,22958, 8280, 8280, 8280, 8280, 8280, 8280, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,23852, 139, 139, 139, 139, 139, 139, 139, 139, 139,27220, 139, 139,25194,25194,25194,25194,25194,25194,25194,25194, 25194, 139, 139, 139, 139, 139, 139, 139,26090,15180, 531,26380,25988, 8284,23853,24221,23841,22187,24227,23847, 25551,26475, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,25183, 148, 375, 139, 139, 139,15181, 307, 139, 139, 139,23842, 140, 25804,23848,25505,25505,25505,25505,25505,25505,26424,26062, 139, 139, 139, 139, 139, 139,23843,22958,25495,26086, 26261, 162,26057, 140,20936,26125,25446,26084,25551, 307, 26071,26728, 140, 307, 140, 531,25551,26548, 140, 139, 139, 139, 139, 139, 139,26551, 148, 375, 139, 139, 139,26119,22958, 139, 139, 139,20937,26072,26118,26078, 26079,26080,26081,26081,26081,26081,26081,26081, 139, 139, 139, 139, 139, 139, 335,24221,23841,26320,26120, 162, 140,26640,25845,25551,25551,25551,26426,26126,27269,26107, 140,25551,25551,25551,24231,23851,22189, 139, 139, 139, 139, 149,26442, 1376,26321,24231,23851,26119,23842,26083, 2438,23733, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 5513, 2696, 1377,26665,26765,23843,23852, 6187, 6187, 6187, 6187, 6187, 6188,26120, 1042,26133,27016,23852,26089, 25551,26666, 2697,23734,26667,26088,26213,26332,25551,23143, 26471,24367,26127,24403, 2698, 6187, 6187, 6187, 6187, 6187, 6187, 2438,23853, 6201, 6201, 6201, 6201, 6201, 6201, 6201, 6201, 6201, 4830,23853,26333,26098,26097,26411,27273, 6201, 6201, 6201, 6201, 6201, 6202, 1379,21011,20271,25551,25852, 25845,25367,26204,25551,25853, 140,25551, 1044,22242,26134, 22264,25551, 898,24368,14092,24404, 6201, 6201, 6201, 6201, 6201, 6201, 6211, 6211, 6211, 6211, 6211, 6211, 6211, 6211, 6211, 4839,26132,26356,25074,26518,25446,25551, 6211, 6211, 6211, 6211, 6211, 6212,26369,25551,14093,26959, 140,23744, 26207, 531,25406,25113,25847,26141,26141,26141,26141,26141, 26141,26141,26141,26141,14094, 6211, 6211, 6211, 6211, 6211, 6211, 6222, 6222, 6222, 6222, 6222, 6222, 6222, 6222, 6222, 4852,14095,23324,26383,22189,25114,27272, 6222, 6222, 6222, 6222, 6222, 6223,26141,26141,26141,26141,26141,26141,26141, 26141,26141,26153,26153,26153,26153,26153,26153,26153,26153, 26153,25673,25384,18341, 6222, 6222, 6222, 6222, 6222, 6222, 6233, 6233, 6233, 6233, 6233, 6233, 6233, 6233, 6233, 4866, 23147,18342,26545, 1078,26548,23148, 6233, 6233, 6233, 6233, 6233, 6234,26190,22670,25385,26552,27332,26129,22671,22155, 26217,25852,19223,25551,26227,26464,25853,25551,26402,26546, 26548,25551,25386, 6233, 6233, 6233, 6233, 6233, 6233, 139, 139,25851, 139, 6925, 139, 139, 139, 139, 139, 139, 139, 7609, 139, 139, 8286, 8287, 8288, 8289, 8289, 8289, 8289, 8289, 8289, 7614, 139, 6932, 139, 139, 139, 139, 8290, 8290, 8290, 8290, 8290, 8291, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8293, 8292, 8292, 8292, 8292, 8292, 8294, 139, 139, 6938, 8290, 8290, 8290, 8290, 8290, 8290, 8292, 8292, 8292, 8292, 8292, 8295, 8292, 8292, 8292, 8292, 8292, 8292, 8293, 8292, 8292, 8292, 8292, 8292, 8292, 139, 139,26354, 139, 836, 139, 139, 139, 139, 139, 139, 139,26369, 139, 139, 8299, 8299, 8300, 27249,25406,26242,26683, 2697,26226, 139, 139, 139, 139, 139, 139, 139,22207,26684,22189, 2698,22902, 572,16360, 784,15381,15382,26094,26153,26153,26153,26153,26154,26153, 26153,26153,26153,22207,25114,22903, 139, 139, 139, 139, 139, 140, 139, 7584, 139, 139, 139, 139, 139, 139, 139,16361, 139, 139,15383,23181,22904,25406,26243,19635, 23184,26481,26487, 139, 139, 139, 139, 139, 139, 139, 22207,26181,10611,26421,26555, 572,22189,19636,23150,23188, 26787,16541,21050,20312,23189,26210,25791,25791,25791,15384, 25114,26197,26251, 139, 139, 139, 139, 139,19637, 139, 6925, 336, 139, 139, 139, 139, 139, 139, 8303, 139, 139, 8304, 8305, 8306, 8307, 8307, 8307, 8307, 8307, 8307, 7614, 139, 6932, 139, 139, 139, 139, 8308, 8308, 8308, 8308, 8308, 8309, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8311, 8310, 8310, 8310, 8310, 8310, 8312, 139, 139, 6938, 8308, 8308, 8308, 8308, 8308, 8308, 8310, 8310, 8310, 8310, 8310, 8313, 8310, 8310, 8310, 8310, 8310, 8310, 8311, 8310, 8310, 8310, 8310, 8310, 8310, 139, 139,26503, 139, 163, 139, 139, 139, 139, 139, 139, 139,27374, 344, 139, 8314, 8314, 8315,26239,23744,23323, 25493,26572,25106, 139, 139, 139, 139, 139, 139, 139, 22102,26543, 140, 140,22483, 345,25463,25463,25463,25463, 25463,25463,25463,25463,25463,25551,26693,26699,26573,25107, 22958,23324,22484, 139, 139, 139, 176, 139, 139,26221, 139, 139, 139, 139, 139, 139, 139, 139, 139, 164, 139, 139, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 139, 139, 139, 139, 139, 139, 139, 579, 579, 579, 579, 579, 580, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 139, 139, 139, 139, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 139, 139,14317, 139, 7590, 139, 139, 139, 139, 139, 139, 139, 8884, 344, 139,14335,25367,25073, 784,25372, 25078,25495,23144,26800, 139, 139, 139, 139, 139, 139, 139,23185,26802, 140,26017,14317, 345, 784,25372,26209, 25967,25684,26651, 8105,27467,26614, 140,26369,14335,25074, 26218,22958,25079,23733, 139, 139, 139, 176, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 8322,26192,26361,25495, 23321,25079,26615,25685, 8322, 8322, 8322, 8322, 8322, 8323, 26199, 140,22419,26203, 531,23734,26208,26233,26234,23321, 26270,26222,26705,26505,26820,26275,25673,25384,26219,22958, 22420, 8322, 8322, 8322, 8322, 8322, 8322, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 5570,21482,25850, 140, 26235,22421,26276, 6253, 6253, 6253, 6253, 6253, 6254,25385, 17301,25551,27005,26408, 531,25967,25684, 3742,26236,26249, 26806,26496,25851,20312,20326,25967,25684,25386,17302,20858, 6253, 6253, 6253, 6253, 6253, 6253, 8328, 8328, 8328, 8328, 8328, 8328, 8328, 8328, 8328,26216,16360,26252,25685,18311, 17447, 4410, 8328, 8328, 8328, 8328, 8328, 8329,25685,26250, 22115,26225,26858,22189,25406,25113,25686,25140,24824, 4411, 25140,26263,26279,26862,26424,26424,25686,26284,16361, 8328, 8328, 8328, 8328, 8328, 8328, 139, 139,26224, 139, 139, 139, 139, 139, 139, 139, 139, 139,25114, 8332, 139, 24825, 464,26288,24825,26285,26334,20068,26293,25740, 139, 139, 139, 139, 139, 139, 139,26470, 140,26727,26738, 140, 8333,27470,22719,20069,26678,23150,26352,22720,22187, 26679,26241,26238,22207,26294,22958, 270,26795,22958, 139, 139, 139, 7623, 139, 139,20833, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 8335, 8336, 139, 8337, 8338, 8338, 8338, 8338, 8338, 8338, 8338, 8338, 8339, 139, 139, 139, 139, 139, 139, 8338, 8338, 8338, 8338, 8338, 8340, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 139, 139, 139, 8341, 8338, 8338, 8338, 8338, 8338, 8338, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8332, 3742, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 139,26301,26442, 26404,27004,26405,26306, 8335, 8335, 8335, 8335, 8335, 8349, 22115,26406,22155,25551,27096,26442,25140,24824,26407,26779, 26315,23779,26331,22168,26247,26320,14117,26332,26442,26781, 26307, 8335, 8335, 8335, 8335, 8335, 8335, 139, 139,23780, 139, 8334, 139, 139, 139, 139, 139, 139, 139,24825, 8332, 139,26321,26424,26333,26264,26109,12845,26520,26764, 23781, 139, 139, 139, 139, 139, 139, 139,26383,26882, 27263,26767,26424, 8351, 3742,26442,25142,25495,24221,23841, 26109, 140,15180,26365, 307, 8352,26732,26362,26110, 140, 140, 139, 139, 139, 8353, 139, 139, 139, 139, 139, 139, 139, 139, 139,20936,26521,26737,22958,20089,26768, 464,23842,26110, 8352, 139, 139,15181, 139, 139, 139, 139, 139, 139, 139, 139, 139,20090, 7621, 8356,23843, 16360,26342,25367,25073,26248,26635,20937, 140, 139, 139, 139, 139, 139, 139, 139, 270,22187,20851,26366, 434, 8357,25474,25474,25474,25474,25474,25474,25474,25474,25474, 22667,27097,16361,26789,22168,25074,26364, 257, 8358, 139, 139, 8359, 139, 139,26627, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8360, 139, 139, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 139, 139, 139, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8362, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139,21482, 139, 139, 139, 139, 139, 139, 139, 139, 139,25106, 7621, 8356, 26335,26335,26335,26335,26335,26335,26335,26335,26335, 139, 139, 139, 139, 139, 139, 139, 8363,27275,26383,20858, 26424, 8357,25559,27331,25107,26334,25559,26657,26696,25551, 26528,26658, 307,25551,26442,20271,20287, 140,21009, 8358, 139, 139, 8359, 139, 139,26541, 139, 139, 139, 139, 139, 139, 139, 139, 139,22958, 139, 8356,26335,26335, 26335,26335,26335,26336,26337,26337,26337, 139, 139, 139, 139, 139, 139, 139,26031,26031,26031,22205,26775, 8364, 26337,26337,26337,26337,26337,26337,26337,26337,26337,25367, 26492,26560, 140,20927,26797,20929,26572, 8358, 139, 139, 139, 139,26350, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 8365, 139, 139,26417,24221,23841,26641,26642, 22603,26643,25074,26573, 8367, 139, 139, 139, 139, 139, 139, 1376,24227,23847, 5905,26338, 8368,26081,26081,26081, 26081,26081,26081,26081,26081,26081,26424,26109, 8369,23842, 531, 1377,26341,22102, 139, 139, 139, 8365, 140,24231, 23851,26109,26650, 1042,27476,23848,26609,23843,26345, 5906, 6595,26614,26729,26739,20845,26442, 8369, 139, 139,26110, 139, 7624, 139, 139, 139, 139, 139, 139, 139,26355, 7621, 8356,23852,26110,26110,26347,23744,26207,26615,26424, 26579, 139, 139, 139, 139, 139, 139, 139,26769,26844, 27334,26424, 140, 8371,26338,26367,26081,26081,26081,26081, 26081,26339,26078,26078,26078,27376,26442,23853,26112,23324, 22958, 8358, 139, 139, 8372, 139, 139, 140, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 8370, 7621, 8356, 8377, 8378, 8378, 8378, 8378, 8378, 8378, 8378, 8378, 7629, 139, 139, 139, 139, 139, 139, 8378, 8378, 8378, 8378, 8378, 8379, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8358, 139, 139, 8372, 8378, 8378, 8378, 8378, 8378, 8378, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8380, 8381, 8381, 8381, 8381, 8381, 8381, 8381, 8381, 8382,26383,25740, 25750,26383,26858, 531, 8381, 8381, 8381, 8381, 8381, 8383, 26861, 140, 140,26983, 531,26979,26338,16360,26078,26078, 26078,26078,26078,26078,26078,26078,26078,24231,23851,22958, 22958, 8381, 8381, 8381, 8381, 8381, 8381, 139, 139, 140, 139, 7624, 139, 139, 139, 139, 139, 139, 139,16361, 139, 8356,25673,25384,26644, 8884,23744,23323,26442,13888, 23852, 139, 139, 139, 139, 139, 139, 139,16527,26349, 140, 140,10612, 8385,25850,26542,26463,26426,26474,26806, 26496,22656,26377,22690,26766,25385, 8105,25551,16528,23324, 26348, 8358, 139, 139, 7624,23853,26497,23323,25851, 1376, 16529,25406,25113,25386,10613, 8388, 8389, 8389, 8389, 8389, 8389, 8389, 8389, 8389,22155,27175,22187,27480,27020, 1377, 26776, 8389, 8389, 8389, 8389, 8389, 8390,17579,26351,26498, 26807, 1042,27268, 531,25114,16530, 784,15381,15382,10614, 784,25372,26500,25406,26529,22102,26442,26499, 8389, 8389, 8389, 8389, 8389, 8391, 139, 139,23746, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8392, 139,26424, 15383,26545,26638,26585,25079,14117,25114,22102, 139, 139, 139, 139, 139, 139, 139, 140,26509,26701,10611,22419, 7639,26675,23321,26740,25367,25073,19635,27484,26546,25673, 26508,25406,25113,22958,26741,15384,12845,22420, 139, 139, 139, 139, 139, 139,19636, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8392, 139,25074,22421,26442, 26645,26502,25385,26493,25114,19637, 139, 139, 139, 139, 139, 139, 139, 8393,26786,26806,26496,23767, 7639,23134, 25386, 784,25372,25078,25369,26526,25673,25384,26109,26556, 24824,25408,26424,26774,27321,23768, 139, 139, 139, 139, 139, 139,20936, 139, 7624, 139, 139, 139, 139, 139, 139, 139,22189, 7621, 8356,25079,23769,23744,23323,25385, 26110,26501,24825,26648, 139, 139, 139, 139, 139, 139, 139, 8395,27028,23321,20937,26808, 8371,25386,26511,20927, 25967,25684,25374,26424,26522,26234,18404,26533,26510,25142, 23324,26426,26819,26507, 8358, 139, 139, 8372, 139, 139, 26647, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 26735, 7621, 8356,25685,26950,26736,26109,26235,17439,17301, 25762, 140, 139, 139, 139, 139, 139, 139, 139,27327, 531,25686, 140,20068, 8397,26236,19275,17302,25967,25684, 26522,26234,26522,26234,27385,22155,26522,26234,26110,26514, 22958,20069, 8358, 139, 139, 8398, 139, 139,18311, 139, 7624, 139, 139, 139, 139, 139, 139, 139,26527, 7621, 8356,25685,20833,26235,26525,26235,26516,26515, 1078,26235, 139, 139, 139, 139, 139, 139, 139, 8399,26732,25686, 26649,26523, 8397,26236,26039,26039,26039,26236,26522,26234, 10612,26517,26524, 3742,26594,26858,26383,26426,22902,26424, 8358, 139, 139, 8398, 139, 139, 140, 139, 7624, 139, 139, 139, 139, 139, 139, 139,22903, 7621, 8356,26733, 3742,26235,10613,18341,22958,26987,26426,23779, 139, 139, 139, 139, 139, 139, 139,26534,27070,22904, 140,26236, 8401,18342, 8402,26734,26634,23780,27488,26656,27027,25406, 25113, 3742,26537,26538,20089,26444,25740,10614, 8403, 8404, 8404, 8405,19223, 307,26857, 140,23781,27026, 140, 8406, 139, 139,20090, 139, 7624, 139, 139, 139, 139, 139, 139, 139,25114, 139, 8356,26539,22958, 140,26530,26535, 25750,26832,25762,20851, 139, 139, 139, 139, 139, 139, 139,27147, 140,26540, 140, 531, 8407, 531,25559,25408, 24221,23841,26831,25561,25559,25551,25140,24824,26663,25561, 22958,25551,22958, 140, 8358, 139, 139, 139, 139, 531, 139, 139, 139, 139, 139, 139, 139, 139, 139,25559, 139, 139,22483,23842,25561,26659,25551,25778,27492,24825, 25778, 139, 139, 139, 139, 139, 139, 139,26557, 140, 22484,23843, 140, 8409,26661, 531,26579,25559,26050,26050, 26050,24246,25561, 307,25551,26854, 531,22958, 140,26944, 22958, 139, 139, 139, 139, 139,26383, 139, 139, 139, 139, 139, 139, 139, 139, 139,22958, 139, 139,26586, 26586,26586,26586,26586,26586,26586,26586,26586, 139, 139, 139, 139, 139, 139, 139, 8410,26660,21007, 140,26974, 8409,25559,25559,25750,27104,26697,25561,25561,25551,25551, 307,20271,20287,22200,27330, 140,26732,26662, 139, 139, 139, 139, 139,26833, 139, 139, 139, 139, 139, 139, 139, 139, 139,22958, 139, 139,26586,26586,26586,26586, 26586,26587,26588,26588,26588, 139, 139, 139, 139, 139, 139, 139,26585,26383,26686, 140,26794, 8412,25559, 307, 26383,23175,26603,25561, 140,25551,25762,24231,23851, 8413, 26943,27584,26390, 307, 140, 139, 139, 139, 140,26982, 26834,26991,22958,26588,26588,26588,26588,26588,26588,26588, 26588,26588,22958,26687,22207, 464,22958, 8413, 139, 139, 23852, 139, 139, 139, 139, 139, 139, 139, 139, 139, 22102, 139, 8356,26595,26595,26595,26595,26595,26595,26595, 26595,26595, 139, 139, 139, 139, 139, 139, 139, 8414, 270,26442,26689,27363, 8364,26632,25559,26594,26426,26017, 25559,25561,22102,25551, 307,25561, 307,25551,27625, 140, 26700, 140, 8358, 139, 139, 1225, 1225,26845, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22958, 1225, 4935, 26595,26595,26595,26595,26595,26596,26597,26597,26597, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27720,26442,27019, 140, 27373, 8428,26597,26597,26597,26597,26597,26597,26597,26597, 26597,26338,26444,26078,26078,26078,26078,26078,26078, 4937, 1225, 1225, 1225, 1225,22187, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140, 1225, 4935,26604,26604,26604, 26604,26604,26604,26604,26604,26604, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8429,25846,25559,22187,26688, 8428,26424, 25561,25778,26690,27058,25559,25559,26801,26424, 307,25561, 25561,25551,26691, 140,26444,26444, 4937, 1225, 1225, 1225, 1225,25851, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22958, 1225, 6967,26604,26604,26604,26604,26604,26605, 26606,26606,26606, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 26404,27372,26405,26769,27063, 8433,27062,25559,26603,26704, 26444,26655,25561,27111,25551, 307,20312,20326,26407,21048, 140,20271,22218, 4937, 1225, 1225, 1225, 1225,18404, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22958, 1225, 6967,26606,26606,26606,26606,26606,26606,26606,26606,26606, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8434,26442,27726, 17439,27069, 8433,25791,25791,25791,25791,25791,25791,25791, 25791,25791,26442,24227,23847,20282,26424,17301,26770,27001, 4937, 1225, 1225, 1225, 1225,16527, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,17302, 1225, 1225,26723,26772, 23733,26426,26771,26426,26773,16528,23848, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26629,26724,18311,16529,26725, 8436, 26821,26621,26622,26623,26624,26624,26624,26624,26624,26624, 27369,22205,23734,27017,27018,26442, 140, 1234, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16530, 1225, 1225,25559,26692,26760,24221,23841, 25561,24915,25551,22205, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8437,26791,26803,26761,27169, 8436,26762,26882,24231, 23851, 5904,26804,25073,16360, 307,27173,22187,26444,26769, 140,23842, 531,26442, 1234, 1225, 1225, 1225, 1225,26626, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,23843, 1225, 1225,23852, 5905, 2696,25074,16361,26777,26637,22187, 26631, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26778,22155, 22721,22155,22187, 8439, 2697,26633,22205,26066,27061,26426, 6593,27811,25369,27174,26017, 8440, 2698,23853, 5906, 140, 26853, 1234, 1225, 1225,22155, 140, 140,23744,23323, 531, 3256,22155,20929,22155,22187,22670,27031,22958,22205,27812, 22671,26782,26790, 8440, 1225, 1225,26798, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22155, 1225, 6967,26444, 23324,26783,23744,23323,23744,26825,26799,26951, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140,27818,22673,26809,26383, 8444,22205, 784,26816,25078,20271,26424,25673,25384,27059, 23747,26390,27038,22958,26424,23324,26393,23324, 4937, 1225, 1225, 1225, 1225,19635, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,22205, 1225, 6967,25079,26810,25367,25073, 25385,19636,27579,26839,22758, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8445,26829,23321,23767,22902, 8444,25386,20282, 25673,26822,19637,25374,26818,27113, 784,25372,25078,26444, 27000,25074,26444,23768,22903, 4937, 1225, 1225, 1225, 1225, 26805, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 25106, 1225, 6967,25385,23769,22904,25967,25684,22419,27073, 25079,27021, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26817, 27068,25386,20068,22200, 8449,26730,22420,25107,23321,25673, 25384,25967,25684,25967,26828,26937,26841,26806,26496,25685, 20069,26824, 4937, 1225, 1225, 1225, 1225,22421, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,25686, 1225, 6967, 434,20833,25385,26840,25685,26830,25685,26931,26823, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8450,26962, 257, 140, 25386, 8449,25686,27234,25686,26522,26234,21482,27118,25675, 26842,25113,25406,25113,27266,24246,18341,22958,26827, 4937, 1225, 1225, 1225, 1225,26383, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,18342, 1225, 6967,25556,26235,20858, 26522,26234,26444,25114,26383,25114, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26685,26843,19223,26835,25556, 8453,27586, 26426,25551,26522,26234, 140, 3742,26848,26538,23744,23323, 25408,26963,26981,26235,26852,27060, 4937, 1225, 1225, 1225, 1225,25551, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26236, 1225, 6967,27146,26235, 3742,26855,26838,26539, 26109,23324,26545, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8454,26424,26837,26236,27820, 8453,27293,26540,26846,26731, 27045, 3742, 3742,26848,26538, 3742,26848,26538,22102,26546, 23779,26545,26110, 4937, 1225, 1225, 1225, 1225,26956, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,23780, 1225, 6967, 3742,26848,26538,26851,20089,26539,27135,26546,26539, 1225, 1225, 1225, 1225, 1225, 1225, 1225,25140,24824,23781, 26856,26383, 8456,20090,26849,26066,26931,26540,24227,23847, 25140,24824, 307, 307,26683,26539, 8457, 140, 140, 140, 4937, 1225, 1225,26967,20851,26975,26847,24221,23841,26383, 24825,26868,14117,26540,26369,22958,22958, 8884,26986,26424, 27753,23848,26850,24825, 8457, 1225, 1225,26424, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27033, 1225, 1225, 23842,26867,26677,12845,26066,24231,23851,25556, 8105, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 140,26426,23843, 531, 27583, 8459,26031,26031,26031,26031,26031,26031,26031,26031, 26031,25551,26952,26426,22958,27573,26954,26990,23852, 1234, 1225, 1225, 1225, 1225,20936, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26426, 1225, 1225, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 1225, 1225, 1225, 1225, 1225, 1225, 1225,23853,26383,27620,20937,27174, 8459,26039, 26039,26039,26039,26039,26039,26039,26039,26039,27024, 140, 26678,20845, 531,27025,27821,26679, 1234, 1225, 6300, 1225, 1225,26109, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26955, 1225, 6967,26050,26050,26050,26050,26050,26050, 26050,26050,26050, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 22707,22744,27157,26110,27063, 8463,26932,26932,26932,26932, 26932,26932,26932,26932,26932,22200,22218,22708,22745,27816, 22709,22746,26385, 4937, 1225, 1225, 1225, 1225, 5904, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26957, 1225, 6967,26932,26932,26932,26932,26932,26933,26934,26934,26934, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8464,27115,27823, 5905,27260, 8463,26934,26934,26934,26934,26934,26934,26934, 26934,26934,25551,26426,26414,26383, 140,26327,26327,26327, 4937, 1225, 1225, 1225, 1225,10612, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 5906, 1225, 6967,26673,26985, 14117,26941, 1379,27145,27029,25556,22218, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1044,27030,18341,10613,26995, 8466, 26624,26624,26624,26624,26624,26624,26624,26624,26624,25551, 25556,12845,26992, 8467,18342,26947,25839, 4937, 1225, 1225, 26964, 140,26109,26624,26624,26624,26624,26624,26935,26621, 26621,26621,10614,26953,25551,19223,25556,26545,26942,22958, 27167, 8467, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26110, 1225, 4935,26442,24227,23847, 25551,27265,22958,26383,26546,26442, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26989, 140,27075,27824,26970, 8471,26938, 26621,26621,26621,26621,26621,26621,26621,26621,26621,26112, 26383,23848, 140,26977,26958,26672, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26383, 1225, 4935,27697,27158, 2696,24221,23841,22958, 26978,25556,25859, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8472,26806,26496,26994,25850, 8471, 2697,20927,26936,24231, 23851,26123,26965,26424,27136,25551,25551,26967, 2698, 140, 23842,26424,27048, 4937, 1225, 1225, 1225, 1225,25851, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,23843, 1225, 1225,25850,23852,27423,26426,26383,23734, 1376,27240,26966, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27582,26945,27021, 26670,25556, 8476,20312,26125,25851,26442, 1377,26973,26968, 26940,27022,20312,27120,26768,27087,27825,23853,24235, 1042, 1234, 1225, 1225, 1225, 1225,25551, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27023, 1225, 1225,25556,25556, 26946,27144,27035,24231,23851,26996,26969, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 8477,20929,26444,20321,27614, 8476, 27009,26424,25551,25551,26939,26383,20321,26424,27008,26424, 27323,14117,27041, 140,26676,26424,23852, 1234, 1225, 1225, 139, 139,26980, 139, 8486, 139, 139, 139, 139, 139, 139, 139,26442, 139, 139,26424,27241,27039,26677,26424, 26442,27090,12845,26424, 139, 139, 139, 139, 139, 139, 139,23853,26977,26740,26442,26424, 572, 140,27042,27849, 27080,26424,26442,26424,27034,25556,26444,27036,25845,26424, 26383,25106,27244,26993, 139, 139, 139, 139, 139,26978, 139, 836, 139, 139, 139, 139, 139, 139, 139,25551, 139, 139,27432,27064,27037,23744,23323,26984,25107,27154, 26424, 139, 139, 139, 139, 139, 139, 139,26424,26728, 25556,26442,26424, 572,27043, 140,26997,27065,26728,26442, 26424,26424,26442,25849,27081,26967,27036,27051,23324,26424, 26442, 139, 139, 139,25551, 8487, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012,27050, 2012, 2012,27417,27077,27037, 140,27850,23744,23323,27122,26424, 2012, 2012, 2012, 2012, 2012, 2012, 2012,26424,26742,25556, 26424,27044, 2501,26444,26424,27856,25852,26442,26424,27434, 27046,25853,26424,27049,27047,26442,26424,27040,26424,23324, 2012, 2012, 2012,25551,26424,26444,26424,26779,26767,27084, 26424,26735,26442,26442,26734,26730,26736,27066,26424,27125, 26442,26442,27067, 8492, 1597, 1597,27082, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27071, 1597, 5683,25367, 25073,22483,27078,22189,23744,27126,27858,27072, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26777,26442,26442,22189,22484, 8504,27092,26442,26383,26442,26442,27076,27083,27112,27079, 26442,27166,25074,27117,26681,26442,27089,23324, 5685, 1597, 1597, 1597, 1597,26442, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26765, 1597, 5683,26442,27859,27085,25367, 25073,23744,23323,27854,26442, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8505,26442,26772,26765,27088, 8504,26442,26773, 27861,26442,26442,27169,27093,27101,26442, 140,27078,23747, 26442,27172,25074, 1078,23324, 5685, 1597, 1597, 1597, 1597, 26771, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 27116, 1597, 7776,27422,27125,27079,22189,22189,14117,21482, 27169,26442, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26442, 27174,22189,22189,27086, 8509,27091,26424, 307,16360,27100, 26442,27108, 140,23149,23744,23323,27227,26738,26442,12845, 27862,20858, 5685, 1597, 1597, 1597, 1597,26767, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27863, 1597, 1597, 16361,22207,22207,22207, 784,25372,25078,23324, 434, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22207,22207,22207,27246, 27243, 8511,27164,26272,27107,27123, 257,27114,27129,23190, 26806,26496,27238, 8512,27623, 140,27063,27165,25079, 1606, 1597, 1597,27119,27119,27119,27119,27119,27119,27119,27119, 27119,26110,27119,22958,27267,26444,27127, 140,27624,26949, 19635, 8512, 1597, 1597,26383, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,25551, 1597, 7776,27253,19636, 784, 25372,25078,22419,27462,25551,25551, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8513,27130,25551,27259,26811, 8509,19637, 22420,27131,27137,25384,23744,23323,27132,27133,25673,25384, 27134,27252,27139,25079,27128,26545, 5685, 1597, 1597, 1597, 1597,22421, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,23321, 1597, 7776,27140,25385, 2696,23324,27152,22902, 27399,25385,26546, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 27138,27168,22187,25386,27271, 8517, 2697,22903,25551,25386, 25967,25684,25675,26383,23746,25967,27141,26706, 2698,25551, 23767,27813,27143, 5685, 1597, 1597, 1597, 1597,22904, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,23768, 1597, 7776,25406,25113,25685,27235,27153,26281,27233,25685,27365, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8518, 140,23769, 20845,25686, 8517,26574,26574,26574,25686,25967,25684,25406, 25113,24227,27228,26290,25114,27156,22958,20068,26442, 464, 5685, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20069, 1597, 7776,25140,24824, 25685,26109,25114,22958,23848,26303,27142, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 270,20927,20833, 140,25686, 8521, 27155,26426,26522,26234,26522,26234, 3742,25969,27159,26426, 1379,24825,27309,26110,27177,22958,20929, 5685, 1597, 1597, 1597, 1597, 1044, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27329, 1597, 7776,26235, 140,26235,27247, 140, 23779,26424,26272,27151, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8522,27237,26236, 140,26236, 8521, 531,23780, 3742, 26848,26538, 5904, 3742,20936,27160, 3742,26848,26538,27433, 27435,27150,22958,26427, 5685, 1597, 1597, 1597, 1597,23781, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 140, 1597, 7776, 140,26539, 5905,26445,20937,20089,26442,27238, 26539, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26281,26775, 26272,27161,10612, 8524, 8525,20090,27310, 307,26540,26426, 140,27239, 140, 531,24221,27226,26949,26426, 140, 5906, 27445, 5685, 1597, 1597,27684,27231,20851,27245,22958,27162, 22958, 8525, 1597, 1597,10613, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27684, 1597, 1597,23842, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 1597, 1597, 1597, 1597, 1597, 1597, 1597,28303,27232,23843,27627,26444, 8528,10614, 3742,26848,26538,27194,27194,27194,27194,27194,27194,27194, 27194,27194,25551,26426, 1078,27254, 1606, 1597, 1597, 1597, 1597,26426, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,25551, 1597, 1597,26539,26109,27238,27163,26290,26303, 8884,27455,25551, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 140, 140,26540, 531, 531, 8528,26678,28155,26281,26806, 26496,26679,26383,26949,26426, 307,27307,26110,22958,22958, 140, 8105,26426, 1606, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22958, 1597, 7776,27194,27194,27194,27194,27194,27195,27196,27196,27196, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27242,27684,27248, 27411,27412, 8530, 8531,27196,27196,27196,27196,27196,27196, 27196,27196,27196,26317,26426,27809,26290,26303,26426,27575, 5685, 1597, 1597, 307, 307, 140,27020,27313, 140, 140, 8531, 1597, 1597,23324, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22958, 1597, 5683,22958,22958,26426,27616, 26317,26806,26496,25551,27401, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 140,27255,25551, 531,22205, 8536,27200,27200, 27200,27200,27200,27200,27200,27200,27200,26678,26444,28698, 22958,27264,26679,26383,27274, 5685, 1597, 1597, 1597, 1597, 27324, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 26424, 1597, 5683,27200,27200,27200,27200,27200,27201,27202, 27202,27202, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8537, 27406,26444,27847,26676, 8536,27202,27202,27202,27202,27202, 27202,27202,27202,27202,26678, 140,26383, 140,27280,26679, 26383, 140, 5685, 1597, 1597, 1597, 1597,26677, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27418, 1597, 5683, 27206,27206,27206,27206,27206,27206,27206,27206,27206, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27684,27419,27684, 140, 26562, 8541,27206,27206,27206,27206,27206,27207,27208,27208, 27208,26735, 140,25551, 140,27284,26736,26424,28736, 5685, 1597, 1597, 1597, 1597,25551, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27684, 1597, 5683,27208,27208,27208, 27208,27208,27208,27208,27208,27208, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8542,25551,25840,25551,27371, 8541,25551, 27705,26317,25551,26426,27256,25551,26442,25551, 307,25849, 25551,26426,25841, 140,27257,25842, 5685, 1597, 1597, 1597, 1597,27301, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,22958, 1597, 5683,27212,27212,27212,27212,27212,27212, 27212,27212,27212, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 26580,26580,26580, 140,26562, 8546,27212,27212,27212,27212, 27212,27213,27214,27214,27214,26772, 140,25551,27967, 531, 26773,26442,27285, 5685, 1597, 1597, 1597, 1597,25551, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27695, 1597, 5683,27214,27214,27214,27214,27214,27214,27214,27214,27214, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8547,26589,26589, 26589,27455, 8546,26327,26327,26327,26327,26327,26327,26327, 26327,26327,27459,26424,27017,25106,28737,26426,26434,27311, 5685, 1597, 1597, 1597, 1597,26426, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1376, 1597, 5683,27603,25367, 25073,27444,25107,26434,27325,27441,25551, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26424, 1377,27258,25551,27270, 8551, 25551,26621,26621,26621,26621,26621,26621, 1042,26383,26680, 27286,25551,25074,20845,25551,27403,28739, 5685, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27289, 1597, 5683,26426, 140,27236,27304,27303, 22958,27306,27366,26426, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8552,26442,26390,28740,27276, 8551,27277,26393,24231, 27229,24231,27230,26383,26426,27305,27278,28161,26383,27685, 140,26426,26426,27279, 5685, 1597, 1597, 1597, 1597,26426, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20271, 1597, 5683,23852, 140,23852,27684,28021,25551,27296,20271, 25846, 1597, 1597, 1597, 1597, 1597, 1597, 1597,25551,25551, 21017,26441,27017, 8555,27281,26426,23733,27282,27721,25849, 25551,27319,25850,26426, 8556,25551,26426,23853,27292,23853, 27283, 5685, 1597, 1597,26426,26426,25551,22614,22102,20312, 27315,27367,21047,26426,27316,27424,25851,27322,23734,20312, 27297,26442, 8556, 1597, 1597,20312, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20312, 1597, 5683,27345,27740, 22100,21012,24246,27318,20271,24111,21056, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20271,27031,27029,27352,26426, 8558, 26444,26426,27328,26444, 140,21013,26426,27302,26444,26426, 26735,26444,26424,26737,27308,26736,26424, 5685, 1597, 1597, 1597, 1597,27704, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26728, 1597, 5683,26426,27024,27043,27450,27364, 27694,27025,26424,26426, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8559,26735,20845,26444,27314, 8558,26736,26424,27333, 26444,26426,26444,26444, 8884,27349,27348,27304,26444,26426, 20858,26444,27343,28016, 5685, 1597, 1597, 1597, 1597,27023, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27346, 1597, 1597,26772,26441,27305, 8105,26733,26773,26442,28742, 26426, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26426,26424, 26444,27339,27312, 8561,27317,27071,27347,26444,26444,26426, 26734,27351,26444,23744,23323,26444,27344,26426,27810,27516, 26444, 1606, 1597, 1597, 1597, 1597,27019, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26444, 1597, 1597,28752, 23744,23323,26738,22483,26444,27335,23324,27336, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8562,27337,27606,26424,26733, 8561,22484,26434,27338,27410,27059,26444,27326,26444,27452, 27353,26545,26424,26498,27062,27355,26444,27453, 1606, 1597, 1597, 1597, 1597,26734, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26444, 1597, 5683,27826,26427,26546,28753, 23746,26444,27358,26732,27370, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27073,26444,26442,26774,27356, 8567,26444,27360, 27668,26444,26444,26765,23744,23323,26444,27357,27085, 307, 26444,27350,22189,26442, 140, 5685, 1597, 1597, 1597, 1597, 27065, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 27059, 1597, 5683,26444,27509,16360, 464,23324,28755,27361, 28202,26444, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8568, 27455,26444,27066,27416, 8567,27359,26772,27067,27458,26444, 26444,26773,26442,27375,27415,27346,24246,16361,26444,27739, 27408, 270, 5685, 1597, 1597, 1597, 1597,27061, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27384, 1597, 5683, 26806,26496,27347,25673,25384,19635,22667,22155,26444, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26444,27377,27451,27378, 27354, 8572,27391,19636,27397,25673,25384,26385,27379,27581, 26442,22716,22187,22753,22205,27380,25385,28757,26426, 5685, 1597, 1597, 1597, 1597,19637, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27425, 1597, 5683,26545,25385,27426, 27429,25684,26598,26598,26598,27848, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8573,26383,27543,25386,26770, 8572,26414, 22609, 784,25372,25078,26546,27368,23744,23323,27565,26775, 26442,27454, 140,25685,22102,22117, 5685, 1597, 1597, 1597, 1597,26771, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,25686, 1597, 5683,27713,25079,27514,26770,27414,23324, 25969,27420,27716, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 26442,26562,27381,23321,27421, 8576,27515,26611, 307,26426, 5904,26771,26427, 140,26806,26496, 8577, 434,20927, 140, 27027,22419,27428, 5685, 1597, 1597,27404,27404,27404,27404, 27404,27404,27404,27404,27404, 257,27404,22958,20929,22420, 27439,27497, 5905,23767, 8577, 1597, 1597,27427, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26424, 1597, 5683, 22421,23768,27609,26522,26234,22902,27519,27238,27506, 1597, 1597, 1597, 1597, 1597, 1597, 1597,28209, 5906,26806,27886, 27576, 8579,23769,22903,26522,26234,26522,27438,25406,25113, 26426,27440,25967,25684,26949,27431,26235,27513,20937, 5685, 1597, 1597, 1597, 1597,22904, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26236, 1597, 5683,26235,26442,26235, 464,25114,20068,26452,27443,25685, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8580,27430,26236,27577,26236, 8579,27617, 20069,25140,24824,25686,27508, 3742,26426,24227,23847,26444, 14117,27437,26869,26869,26869, 270, 5685, 1597, 1597, 2555, 2555,20833, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10612, 2555, 7133,24825,28009,27446,27498,26611,23779, 23848,12845,27464, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140,28768,26441, 531, 1379, 8621,27521,23780, 3742,26848, 26538,27523, 3742,10613,27024,27447, 1044,24229,22958,27025, 26426,27517,28010, 7135, 2555, 2555, 2555, 2555,23781, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26110, 2555, 7133,27512,26539,26369,26369,28152,20089,26109,10614,27507, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8622,26441,19635, 26540, 140, 8621,26109,20090, 3742,26848,26538,27471,27471, 27471,27471,27471,27471,27471,27471,27471,19636,27448,26110, 7135, 2555, 2555, 2555, 2555,20851, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26110, 2555, 2555,19637,26539, 27696,27520,27901,27522,27580,27449,27618, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26426,27026,26444,26540,26427, 8624, 27471,27471,27471,27471,27471,27472,27473,27473,27473,27024, 26112,28769, 140,27574,27025,26426,27585, 2564, 2555, 2555, 2555, 2555,25551, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28045, 2555, 2555,27473,27473,27473,27473,27473, 27473,27473,27473,27473, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8625,28044,25557, 140,28206, 8624,26574,26574,26574, 26574,26574,26574,26574,26574,26574,27024,27595,26459,26459, 27532,27025,26426,25566, 2564, 2555, 2555, 2555, 2555,25551, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27903, 2555, 2555,26580,26580,26580,26580,26580,26580,26580,26580, 26580, 2555, 2555, 2555, 2555, 2555, 2555, 2555,20068,27554, 25557,25551,28771, 8627,26589,26589,26589,26589,26589,26589, 26589,26589,26589,26385,26424, 8628,20069,25564, 140,26434, 25566, 2564, 2555, 2555,26598,26598,26598,26598,26598,26598, 26598,26598,26598,26424,26611,14117,22958,20833,26434,26427, 27963, 307,27596, 8628, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27644, 2555, 7133, 140, 26383,26452,26424,27670,22958,26414,12845,26434, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22207,27536,22958,27592,25551, 8635,27493,27493,27493,27493,27493,27493,27493,27493,27493, 27599,27518,26424,26806,26496, 140,28208,26434, 7135, 2555, 2555, 2555, 2555,25551, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22958, 2555, 7133,27493,27493,27493,27493, 27493,27494,27495,27495,27495, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8636,28157,25557, 140,28773, 8635,27495,27495, 27495,27495,27495,27495,27495,27495,27495,24221,23841,27604, 27745,25564,27558,22958,25566, 7135, 2555, 2555, 2555, 2555, 27675, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 1376, 2555, 7133,20312,26424,27600, 2696,27496,26444,26434, 23842,20927, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27069, 1377,26743,26424,27621, 8640,27851, 2697,26434,23843,27539, 24231,23851, 1042,26444,27068,26385,20312,24223, 2698,26385, 28000, 140, 7135, 2555, 2555, 2555, 2555, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27511, 2555, 7133, 27499,26442,16360,23852,26426,22958,26452,27535,27569, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8641,27633,26445,27510, 28287, 8640,26383,27622,27501,27502,26383,26414,25551,25551, 24233,26414,26444,27713,16361,26385,26385,27529,23853, 7135, 2555, 2555, 2555, 2555,27717, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27746, 2555, 7133,27503,27647,25557, 25557,27779,28838,26452,26385,27528, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26383,27710,28237,25564,25564, 8644,25566, 25566,27542,26383,26383,27504,20929,26678,26414,26414,27066, 25551,26679,27505,27537,27067,26444, 7135, 2555, 2555, 2555, 2555,25551, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26383, 2555, 7133,26424, 140,26414,27636, 531,26434, 27540,25557, 140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8645,27534,25557,22958,27601, 8644,28863,27533,25564,25551, 26424,25566,25853,26385,26385,26434,26442,26385,27602,25564, 26385,27650,25566, 7135, 2555, 2555, 2555, 2555,28099, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26385, 2555, 7133,27640,26385,26442,26442,26385,27547,27774,26452,26452, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27276,26383,27277, 26383,26383, 8647,26383,26383,26414,26414,27546,27538,26414, 27541,26545,26414,26385,26385,27279, 8648,27984,27022,27920, 7135, 2555, 2555,26442,27544,26383,27578,27923,26452,26383, 26414,26426,27549,27545,26414,26385,26385,26414,26546,26385, 26806,26496,27023,27642, 8648, 2555, 2555,25551, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26424, 2555, 2555, 26383,26383,26434,26442,27641,27552,26414,27598,26452, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 140,28056,25557, 531, 27548, 8650,26383,26383,27556,26670,26383,26414,26414,26385, 25551,26414,26459,27550,22958,25564, 140,27551,25566, 2564, 2555, 2555, 2555, 2555,26677, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,22958, 2555, 2555, 8651, 8651, 8651, 8651, 8651, 8651, 8651, 8651, 8651, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26445,26424,28156,26383, 140, 8650,26434, 26678,26414,26424,27597,27564,26679,23733,26434,27553,25551, 25551,22102,22117,27608,22611,22958, 2564, 2555, 8631, 2555, 2555,27891, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26424, 2555, 7133,26729, 1078,26434,28864,23734,27615, 25557,25557,27607, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 28239,27555,27557, 140,27587, 8654,27588,25564,25564,26424, 25566,25566,27713,26735,26434,27589, 1379,26426,26736,27743, 27593,27686,27590, 7135, 2555, 2555, 2555, 2555, 1044, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26442, 2555, 7133,27605,27066,26452,26424,27022,27643,27067,26444,26434, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 8655,26426,26424, 27591,26442, 8654,26735,26434,26734,26452,27066,26736,27023, 27637,27610,27067,26444,27626, 1078,27655,26926,26926,26926, 7135, 2555, 2555, 2555, 2555,28020, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26442, 2555, 7133,27712,26772, 26452,27645,27920,26441,26773,22483,27634, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27335,26442,27336,26424,27064, 8657, 26452,28867,26434,22484,27638,27594,27619,22155,22170, 8884, 26545,26444,27338, 8658,27628,27064,27629, 7135, 2555, 2555, 27711,26442,27065,26427,26442,27630,26452,26444,26444,26452, 27632,27639,27631,26442, 140, 140,26766,26546,26452,27065, 8105, 8658, 2555, 2555,27648, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555,26442, 2555, 2555,23744,23323,26452, 27902,21482,27709,24246,27892,27649, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27377,27747,27378,26442,27646, 3682,28204, 26442,26452,21482,26442,27635,26452, 8662,26772,26452,27777, 23324,27380,26773,20858,26383,27651, 2564, 2555, 2555, 139, 139,26771, 139, 836, 139, 139, 139, 139, 139, 139, 139,27654, 139, 139,20858, 140,27677,26424,22155,22170, 21976,22664,27658, 139, 139, 139, 139, 139, 139, 139, 27661,23144,22189,27664,27864, 572,22713,22187,22202,27667, 22714,26769,23185,22207,27669,27904,22205,22220,22750,22751, 22187,22202,10612, 139, 139, 139,27671,14117,14117,26383, 27767,25551,22205,22220,26383, 8680, 139, 139,22419, 139, 836, 139, 139, 139, 139, 139, 139, 139,27927, 139, 139,25106,25367,25073,10613,28518,22420,22902,12845,12845, 139, 139, 139, 139, 139, 139, 139,25140,24824,23767, 434, 307, 572,27689, 307,22903, 140,22421,25107, 140, 27928, 140,27954,27693, 531,25074,27701,23768, 257,27738, 139, 139, 139,27673,22958,27748,22904,22958,27960,22958, 24825,26369,27700,27729,28331, 8681, 139, 139,23769, 139, 139, 139, 139, 139, 139, 139, 8694, 139, 139, 139, 8694, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 139, 139, 139, 139, 139, 139, 139, 8695, 8695, 8695, 8695, 8695, 8696, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 139, 139, 139, 139, 8695, 8695, 8695, 8695, 8695, 8695, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 139, 139,20936, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 8699, 139, 140,25140,24824, 531,23744,23323, 27749,14117,26733, 139, 139, 139, 139, 139, 139, 139, 27814, 140,22958,20937, 531, 314,27722,26869,26869,26869, 26869,26869,26869,26869,26869,26869,26734,28268,24825,22958, 28945,23324,12845, 139, 139, 139, 139, 139, 139,26109, 139, 139, 139, 139, 139, 139, 139, 139, 139,27676, 8699, 139, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 139, 139, 139, 139, 139, 139, 139,28984,27764, 27910,26110,26369, 314,23744,23323,23744,23323,26728, 140, 27751,27957,26733,27822,25673,25384,25967,25684,25406,25113, 27815, 139, 139, 139, 139, 8704, 8705, 8705, 8705, 8705, 8705, 8705, 8705, 8705, 7200, 307,26734,23324, 140,26498, 140, 8705, 8705, 8705, 8705, 8705, 8706,25385,27530,25685, 27688,25114,23744,23323,24246,27680,26383,27681,22958,27703, 28267,26383, 784,25372,25078,25386,23746,27691, 8705, 8705, 8705, 8705, 8705, 8705, 8708, 8709, 8709, 8709, 8709, 8709, 8709, 8709, 8709, 8710, 307,23324,27920,27942,28051, 140, 8709, 8709, 8709, 8709, 8709, 8711,25079,27924,27766,25967, 25684,26522,26234,22102,27683,26383,27771,22958,26459, 140, 26383,26383,26522,27698,23321,27690,26383, 8709, 8709, 8709, 8709, 8709, 8709, 8713, 8714, 8714, 8714, 8714, 8714, 8714, 8714, 8714,25685,27692,26235,27925,27949,28417, 329, 8714, 8714, 8714, 8714, 8714, 8715,26235,28831, 140,27950,26369, 25686,26383,26236, 3742,26848,27708,26383,22137, 140, 307, 3742,27787,26427,26236, 140,26427, 8714, 8714, 8714, 8714, 8714, 8716, 8719, 8720, 8720, 8720, 8720, 8720, 8720, 8720, 8720, 7949,22958, 140,28089,28201, 531,26539, 8720, 8720, 8720, 8720, 8720, 8721,20089,27778,25551,26522,26234,26383, 26109,22958,26383,27956,26383,26540,26765,26383, 307,26672, 28205,27860,20090, 140, 5904, 8720, 8720, 8720, 8720, 8720, 8720, 8722, 8723, 8723, 8723, 8723, 8723, 8723, 8723, 8723, 26235,22958,26110,20851,27765,26110,27699, 8723, 8723, 8723, 8723, 8723, 8724, 140,26390,28008, 5905,26383,26236,27775, 27776,26383,26383,22187,26383,26714,26383,26524,26681,26383, 27795,27752,26426,27961, 8723, 8723, 8723, 8723, 8723, 8725, 8730, 8731, 8731, 8731, 8731, 8731, 8731, 8731, 8731, 7211, 27737, 5906,28417, 140,28055,29195, 8731, 8731, 8731, 8731, 8731, 8732,26926,26926,26926,26926,26926,26926,26926,26926, 26926,26714,26459,24246,26545,22102,27796,22197,26426, 1376, 27919,27882,26441, 8731, 8731, 8731, 8731, 8731, 8731, 8734, 8735, 8735, 8735, 8735, 8735, 8735, 8735, 8735, 8736, 1377, 26711,26546,27742,28137,26770, 8735, 8735, 8735, 8735, 8735, 8737, 1042,27852,28004,27772,22205,27819,24227,23847, 3742, 26848,26538,25551, 3742,26426,24221,23841,27238,26771,22137, 27780,26384, 8735, 8735, 8735, 8735, 8735, 8735, 139, 139, 27786, 139, 139, 139, 139, 139, 139, 139, 139, 139, 23848, 313, 139,26539,26949,25106,26445,23779,23842,26685, 27744,26742, 139, 139, 139, 139, 139, 139, 329,22215, 27908,26540,26383,27884, 539,23780,23843,26383,26981,28011, 27040,26714,25107,27730,27773,27801,26716,27707,26426,26441, 27706,27728, 139, 139, 139, 322,23781,26383,28015,26673, 28345,28236,26383, 8744, 139, 139,26441, 139, 139, 139, 139, 139, 139, 139, 139, 139, 3161, 3791, 139, 7228, 7228, 7228, 7228, 7228, 7228, 7228, 7228, 7228, 139, 139, 139, 139, 139, 139, 139, 3161, 3161, 3161, 3161, 3161, 3792, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 4455, 139, 139, 139, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 8756, 8757, 8757, 8757, 8757, 8757, 8757, 8757, 8757, 7987, 2696,27925,25551, 25848,28483,28012, 8757, 8757, 8757, 8757, 8757, 8758,26714, 140,27991,26441, 531,26716,27797,26426, 2697,25551,25551, 25551,25551,25551,25551,25551,25551,25551,27501,27502, 2698, 8757, 8757, 8757, 8757, 8757, 8757, 8759, 8760, 8760, 8760, 8760, 8760, 8760, 8760, 8760, 8761,20936,27750,28014,28035, 27741,26711, 8760, 8760, 8760, 8760, 8760, 8762,26441,27530, 27503,25551,25551,25551,25551,25551,25551,25551,25551,25551, 1078,26427,27757,26444, 140,26426,27501,27502,20937, 8760, 8760, 8760, 8760, 8760, 8760, 8765, 8766, 8766, 8766, 8766, 8766, 8766, 8766, 8766, 8767,27505,26711,28115,28001,28677, 25551, 8766, 8766, 8766, 8766, 8766, 8768,26714,27962,27503, 26678,28050,26716,20938,26426,26679,26383,27758,27042,26459, 26426,26383,26427,27800, 4455,27501,27502,27732, 8766, 8766, 8766, 8766, 8766, 8766, 8773, 8774, 8774, 8774, 8774, 8774, 8774, 8774, 8774, 7243,27505,27794,26748,26445,28036,26770, 8774, 8774, 8774, 8774, 8774, 8775,26125,27853,27503,25551, 25551,25551,25551,25551,25551,25551,25551,25551, 1078,27042, 26444,27803,26664,26771,27501,27502,27768, 8774, 8774, 8774, 8774, 8774, 8774, 8777, 8778, 8778, 8778, 8778, 8778, 8778, 8778, 8778, 8779,27505,27084,28296,29128,27735,26445, 8778, 8778, 8778, 8778, 8778, 8780,26383,26714,27503,27798, 140, 26383,26716,27799,26426,26714,26714,25848,27762,26714,26716, 26716,26426,26426,26716,26109,26426, 8778, 8778, 8778, 8778, 8778, 8778, 8787, 8788, 8788, 8788, 8788, 8788, 8788, 8788, 8788, 7255,27505,27736,28100,27084,26676,26676, 8788, 8788, 8788, 8788, 8788, 8789,27769,27770,26110,27802,27805,26383, 26383,26714,26714,26109,26383,26383,26716,26716,26426,26426, 26677,26677,27945,24231,23851, 8788, 8788, 8788, 8788, 8788, 8788, 8791, 8792, 8792, 8792, 8792, 8792, 8792, 8792, 8792, 8793,26112,27946,28022,26369,26110,27955, 8792, 8792, 8792, 8792, 8792, 8794,26441,27947,27816,23852,25551,25551,25551, 25551,25551,25551,25551,25551,25551,26714, 307,22155, 139, 26445,26716, 140,27807, 8792, 8792, 8792, 8792, 8792, 8792, 8801, 8802, 8803, 8804, 8804, 8804, 8804, 8804, 8804,27731, 22958,23853,27816,28232,26442,27804, 6546, 6546, 6546, 6546, 6546, 6550,26714,27587,26661,27588,26735,26716,28097,26426, 26714,26736,27018,26714,27793,26716,27868,26426,26716,27023, 27806,27590,22186, 6546, 6546, 6546, 6546, 6546, 6546, 8805, 8806, 8806, 8806, 8806, 8806, 8806, 8806, 8806, 8025,27042, 140,26673,28741,29423,27817, 8806, 8806, 8806, 8806, 8806, 8807,25551,25551,25551,25551,25551,25551,25551,25551,25551, 27501,27502,28540,25551,25551,25551,25551,25551,25551,25551, 25551,25551, 8806, 8806, 8806, 8806, 8806, 8806, 8808, 8809, 8809, 8809, 8809, 8809, 8809, 8809, 8809,27759,26385, 140, 26731,28758,27854,27503, 8809, 8809, 8809, 8809, 8809, 8810, 25551,25551,25551,25551,25551,25551,25551,25551,25551,26714, 27808,27761,26751,26385,26716,28263,26426,27833,25855,26444, 27733, 8809, 8809, 8809, 8809, 8809, 8811, 8817,27505, 6559, 6559, 6559, 6559, 6559, 6559, 6559, 6559, 6559, 6562,27084, 26414,28077,26496,25850,27855, 6559, 6559, 6559, 6559, 6559, 6561,27763,25551,25551,25551,25551,25551,25551,25551,25551, 25551,26751,27501,27502,26751,26414,27834,25851,26444,26753, 27832,26444, 6559, 6559, 6559, 6559, 6559, 6559, 139, 139, 27838, 139, 139, 139, 139, 139, 139, 139, 139, 139, 27734, 3791, 139,26751,29446,27503,25367,25073,26753,27835, 26444,26808, 139, 139, 139, 139, 139, 139, 139,27857, 27782,26751,28026,29471, 3809,27839,26753,26728,26444,25551, 25551,25551,25551,25551,25551,25551,25551,25551,28007,25074, 27505,26751, 4455, 139, 139, 3799,26753,26441,26444,27780, 22155,25551,25551,25551,25551,25551,25551,25551,25551,25551, 27022, 140,26748,27854,26779, 8821, 139, 139,27994, 139, 8822, 139, 139, 139, 139, 139, 139, 139,27781, 3791, 139,27060,26751,27082,27023,25849,26444,26753,26765,27844, 139, 139, 139, 139, 139, 139, 139,26125,27628,28042, 27629,28561, 3809,27837,22186,26751,26751,28046,26459,27831, 26753,26753,26444,26444,26772,27867,27631,26459,28115,26773, 4455, 139, 139, 3799, 246, 246,28118, 251, 449, 246, 246, 246, 253, 253, 246, 246, 246, 253, 253, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 8831, 253, 246, 246, 246, 246, 246, 246, 8831, 8831, 8831, 8831, 8831, 8832, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 257, 246, 246, 246, 8831, 8831, 8831, 8831, 8831, 8831, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 253, 2648,28449, 8834, 8834, 8834, 8834, 8834, 8834, 8834, 8834, 8834, 5885,27915, 140,26711,29472,28115,27916, 6579, 6579, 6579, 6579, 6579, 6580,27836,27840,26751,28119,27992,26751,26751,26753,27871, 27845,26753,26753,26444,26444,26426,22189,22704,28018,23142, 26732,27917, 6579, 6579, 6579, 6579, 6579, 6579, 265, 265, 26441, 272, 480, 265, 265, 265, 274, 274, 265, 265, 265, 274, 274, 8856, 8856, 8856, 8856, 8856, 8856, 8856, 8856, 8856, 274, 265, 265, 265, 265, 265, 265, 8856, 8856, 8856, 8856, 8856, 8857, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 265, 265, 265, 265, 8856, 8856, 8856, 8856, 8856, 8856, 274, 274, 274, 274, 274, 274, 274, 278, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 2679,28191, 8859, 8859, 8859, 8859, 8859, 8859, 8859, 8859, 8859, 5919,26426,27841,22187,22205, 140,27842, 6604, 6604, 6604, 6604, 6604, 6605,26751,23141,27843,26751,27846, 26753,26751,26444,26753,27881,26444,26753,26424,26444,26445, 22189,22704,27065,25367,25073,23182, 6604, 6604, 6604, 6604, 6604, 6604, 1769,27883,28417,27877,22419,23744,23323,22207, 22741,26751,22207,22741,27885,23183,26753, 8895,26444,22197, 22215,23744,26207,23733,22420,26729,25074,25551,25406,25113, 27874,27880,28158,29515, 1770, 784,25372,25078,27022,28017, 23324, 1771,26441,25673,25384,22421,27995,27896,23744,23323, 25967,25684,28233,28517,23324,23734, 1772,27890, 1773, 3742, 1774,25114,27023, 1775, 1776,27887,27905,26234, 1777,25079, 22902, 1778,28047, 1779,23767, 1780,25385, 1781, 1782, 1783, 8896,23324,26459,25685,27895,27893,27899,23321,22903,26522, 26234,27925,23768,23779,25386,25406,25113, 140, 307,26235, 531,25686,26427, 140,27907,27900,22483,27897, 8884,22904, 28222,23780, 1770,23769, 139,22958,27909,26236,28098, 1771, 27951,26444,26235,27911,22484,27238,26524, 5904,25114,25140, 27929,27906,23781, 139, 1772,29538, 1773,26427, 1774, 8105, 26236, 1775, 1776, 3742,26848,27912, 1777,27918, 434, 1778, 140, 1779,26949, 1780,28200, 1781, 1782, 1783, 3291, 5905, 3292,27952,24825, 3742,26848,26538, 257, 1768, 2696,24221, 23841,24227,23847,27501,27502,27501,27502,26539,27931,24231, 23851,27940,26384,26711,27501,27502,27501,27938, 2697,28207, 25551,27998, 3293,25551, 5906,26540,27939,26539,27780, 3294, 2698,25551,23842,27913,23848,27987,27503,26426,27503,27936, 464,29494,23852,10613, 8897,26540, 3296,27503, 3298,27503, 23843, 3299, 3911,26445,26850,27966, 3301,14117, 3927, 3302, 27943, 3303,27930, 3304,27932, 3305, 3306, 3307, 1769,28106, 27941,27505,27933,27505,27937, 270,27965,23853,10614,11654, 25852,28349,27505,27935,27505,25853,27735,27996,12845,27011, 25854,25852,22102,27993,22613,22615,25853,27999,22102, 140, 1770, 140,22102,26711,26711,28164,27996, 1771,22102,26711, 28005,26748,22115,22618,26748,28003,27996,28240,22119,22616, 28040,28279, 1772,27953, 1773,28027, 1774,26426,26426, 1775, 1776,26711,28043,26426, 1777,26444, 8898, 1778,26444, 1779, 27064, 1780,27031, 1781, 1782, 1783, 2217, 3291,28029, 8902, 26711,26711,26383,27310,27017,26426, 1768,26414,27997,28002, 26711,27308,26723,26711,27065,28031,26426,27024,26732,28006, 28031, 1078,27025,28013,26426,26426,27021,26733,26441,26724, 26748, 3293,26725,26441,26426,28019,27053,26426, 3294,27064, 28028,28034,28038,26445,22163,28031, 140,28030,28444,26459, 26441,26734,28244, 3295,26444, 3296,26748, 3298,26748,26748, 3299, 3911,27352,27065,26748, 3301,28033,28032, 3302,28049, 3303,26748, 3304,28060, 3305, 3306, 3307, 2223,22189,26459, 26444,28271,26444,26444,28039, 140,27073, 2224,26444,26748, 26748,26748, 8911,27059,26766,26444,27066,28041,28037,28235, 26760,27067,26769,22189,27063,27350,28067,28048,28052, 2225, 26444,26459,26459,26444,26444,26444, 2226,26761,26770,28057, 26762,26459,28053,22207,26769,28073,28054, 139,28417,26459, 22155, 2227,22699, 2228,26459, 2229,28074,22207, 2230, 2231, 22155,26459,26771, 2232,26424, 140, 2233,29553, 2234,28092, 2235,22673, 2236, 2237, 2238, 2223,22155,22699,28113,22662, 23581,22717,26445,22187,22187, 2224,22155,28061,28064,25367, 28076,23744,28078,22187,22187,23621,22754,22736,23733,22205, 27927,22419,22205,28514,22722,22718,28280, 2225,28070,22205, 22483,22736,22205,28104, 2226,28075,23744,23323,25106,22420, 22755, 140,25074,22759,23324, 784,25372,28080,22484, 2227, 23734, 2228,27928, 2229,28231, 8912, 2230, 2231,25673,25384, 22421, 2232,22902,28424, 2233,25107, 2234,27927, 2235,23324, 2236, 2237, 2238, 8137,25967,25684,28090,23744,23323,25079, 22903,28081,25551, 8139,28082, 140,28083,25673,25384,26815, 28084,25385,29554,28085,28086,28087,28296,23321,28088,27928, 434,22904,26442,28096,28299, 8140, 140,25685,28091,25386, 23324,27915, 8141, 3742,23767,28095,27916,28122, 257,28278, 25385,26522,26234,26522,26234,25686,28126, 8142,28175, 8143, 28269, 8145,23768,25853, 8146, 8147,25406,28105,25386, 8148, 28103,28536, 8149,27917, 8150,28093, 8151,23779, 8152, 8153, 8154, 8137,27927,23769,26235,28162,26235,28102, 3742,28108, 26538, 8139,27915,28163,26385,23780,28110,27916,26545,25114, 27915,27915,28101,28107,26236,27916,27916,28114,29567,28123, 3742,26848,26538, 8140,27928, 8914,23781,26445,25140,24824, 8141,28111,26539,26426,27917,26546,28184,28112,26383, 464, 24221,23841,27917,27917,26426, 8142,14117, 8143, 5904, 8145, 26540,26383, 8146, 8147,26539,28930,26414, 8148,28124,26850, 8149,24825, 8150,28109, 8151,28136, 8152, 8153, 8154, 3291, 8884, 3955,26540,23842, 270,24227,23847,12845, 2222,28238, 5905, 3956, 2696,27501,27502,26109,24231,23851,25142,27501, 27502,23843,27945,27501,27502,28738,28143,28139,22168,28125, 26679, 8105, 2697, 3957,22172,27501,27502,28296,23848,10612, 3958,27949,27946,28149, 2698, 5906,27503,26110,28300,23852, 28150,28134,27503,27950,27947, 3959,27503, 3960,28131, 3962, 26806,26496, 3963, 4625,28127,28183,28147, 3965,27503,28138, 3966,10613, 8938, 464, 3968,28128, 3969, 3970, 3971, 4644, 3291,27505, 3955,25551,23853,28148,14117,27505,28130, 2222, 28132,27505, 6679,28135,28846,27733,27945,27238,11652,28141, 27945,28139,28133,27505,28139,28139,10614,28143,28317,26426, 28185,28258,26426,28144, 3957,26109,27946,12845,28143,27946, 27946, 3958,27949,26426,26949,25845,26426,28142,27947,28145, 28146,27947,27947,27949,27950,28178, 3959,26426, 3960, 5310, 3962,28160,28140, 3963, 6680,27950,26385,26110, 3965,26385, 26385, 3966,26384, 3967,26426, 3968,26426, 3969, 3970, 3971, 784, 1079, 140,26385,28186,26426,28187,26426,22603, 140, 28243, 139,28167, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962, 8962,26112,24246,26385,26385,28417,28344,28214,28151, 25551,28338,22110,26383, 1080,28270,26383,26383,28166,28165, 25551,26414,26414,22656,26385,26385,28169,26385,28170,28318, 26383,26426, 139, 139, 139,26414, 148, 149, 139, 139, 139,27021,26426, 139, 139, 139,28188,22163,23744,27412, 26665,26383,26383,26385,26426,26444,26414,26414, 139, 139, 139, 139, 139, 329,28189,26426,26444,26666,29390, 162, 26667,26383,26383,26426,26383,28168,26414,26414,26385,28172, 26679,23324,28171, 140,26426,28190, 140, 139, 139, 139, 139, 139, 139,22200, 148, 149, 139, 139, 139,22204, 26383, 139, 139, 139,26426,26414,28195,28250,26384,28417, 28173,27012,26426,28670,29606,26426, 139, 139, 139, 139, 139, 329, 335,26426,26426,26383,26426, 162,27013,27018, 26414,27014,28193,26426,27021,26426,27816,26426,28196,26444, 22690,28226,28174,28192,26426, 139, 139, 139, 139, 2840, 26444, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 6054,26427,25106,26426,22195,28216, 139, 6721, 6721, 6721, 6721, 6721, 6722,28197,26426,28343,26444,27022,26427,28215, 26426,26444,28281,27042,22218,28194,28285,26444,27817,25107, 22222,26426,26444,28199, 6721, 6721, 6721, 6721, 6721, 6721, 2840,27023, 6735, 6735, 6735, 6735, 6735, 6735, 6735, 6735, 6735, 5357,28203, 140, 140,26444,29615,26736, 6735, 6735, 6735, 6735, 6735, 6736,26723,28217,26444,26444,28444,26444, 29625,26444,28256,25367,25073,28427,28447,28218,26444,28220, 26444,26724,26444,28221,26725, 6735, 6735, 6735, 6735, 6735, 6735, 6745, 6745, 6745, 6745, 6745, 6745, 6745, 6745, 6745, 5366,27054,26444,28257,26444,22727,25074, 6745, 6745, 6745, 6745, 6745, 6746,26444,27063,26444,26444,26444,27055,28219, 26444,27056,28227,26445,28224,27854,27063,26444,26444,22213, 28228,26444,28294,25369, 6745, 6745, 6745, 6745, 6745, 6745, 6756, 6756, 6756, 6756, 6756, 6756, 6756, 6756, 6756, 5379, 27927,26444,28449,26384,27060,26445, 6756, 6756, 6756, 6756, 6756, 6757,26444,22483, 140, 139,26384, 531,28223, 140, 28230, 307,27084, 140,28234,28347, 140,27855, 140,26773, 28425,22484,27928, 6756, 6756, 6756, 6756, 6756, 6756, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 6767, 5393,23989, 23145,26760,28264,22189,28417, 6767, 6767, 6767, 6767, 6767, 6768,27543, 140,22189,28417,28261,23744,23323,26761,28304, 28262,26762, 140,26983,23146,26545,28295,29392, 140,25673, 28273,23733, 6767, 6767, 6767, 6767, 6767, 6767, 8966, 8966, 8966, 8966, 8966, 8966, 8966, 8966, 8966,24028,23186,23324, 28265,22207,26546,26384, 8966, 8966, 8966, 8966, 8966, 8967, 26384,22207,25385,23734,28433,26369, 784,25372,25078,27915, 28266,28259,23187,28480,27916, 140,23746,27927,25967,25684, 25386, 8966, 8966, 8966, 8966, 8966, 8966, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 6103,28260,28272,26545, 25079,27917,28443, 6778, 6778, 6778, 6778, 6778, 6779,27928, 28444,25685,28305,28348,27064,25551,28418,26444,23321,28486, 26675,28448,28225,28291,29631,28342,26546,25374,26444,25686, 6778, 6778, 6778, 6778, 6778, 6778, 139, 139,27065, 148, 149, 139, 139, 139, 150, 150, 139, 139, 151, 330, 150, 561, 561, 561, 561, 561, 561, 561, 561, 561, 150, 139, 139, 139, 139, 139, 329, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 8971, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139,28247, 139, 139, 139, 139, 139, 139, 139, 139, 139, 2696, 139, 4756,28292,23744,23323,25406,25113,27916, 23733,28253,28143, 139, 139, 139, 139, 139, 139, 139, 28571, 2697,25848,28350,28319, 8982,26424,27949, 3742,26848, 26538,28575,25551, 2698,28375,28274,27917,28286,23324,27950, 25114,26426,23734, 2866, 139, 139, 139, 139,22189, 139, 139, 139, 139, 139, 139, 139, 139, 139,22189, 139, 4756, 140,26539, 434,25967,25684,22419,25408,22207,23150, 139, 139, 139, 139, 139, 139, 139, 8983,22207,28275, 28289, 257, 8982,28419,22420,28276,26522,26234,26424,23191, 8884,28277,28854,14117,28417,28747,28417,25685,28308,27238, 2866, 139, 139, 139, 139,22421, 139, 139, 139, 139, 139, 139, 139, 139, 139,25686, 139, 139,14117,26235, 27915, 8105,28283,22902,12845,27916,26949, 139, 139, 139, 139, 139, 139, 139,26442,28325,22419,26236,22483, 8987, 28315,22903,28401, 3742,26848,26538,28326,25140,24824,12845, 29661,28327,27917,26426,22420,28293,22484, 2866, 139, 139, 139, 139,22904, 139, 139, 139, 139, 139, 139, 139, 139, 139, 5905, 139, 139,22421,26109,26539,28290,26109, 24825, 140,28143,28328, 139, 139, 139, 139, 139, 139, 139, 8988,28634,28323,23767,26540, 8987,27949,26424,24221, 23841,24227,23847,10612,23744,28421,28426, 5906,26110,27950, 28783,26110,23768,28306, 2866, 139, 139, 139, 139,28329, 139, 139, 139, 139, 139, 139, 139, 139, 139,28284, 139, 139,23842,23769,23848,10613,28143,23324, 140,26424, 26442, 139, 139, 139, 139, 139, 139, 139,28330, 140, 23843,27949,26442, 8992,26109,26384,24231,23851,27501,27502, 28571,24246,29690,27950, 140,28511,28324,28307,28574,28309, 10614, 2866, 139, 139, 139, 139,28316, 139, 139, 139, 139, 139, 139, 139, 139, 139,26110, 139, 139,23852, 28553,27503,25673,25384,27501,27502,28464,28554, 139, 139, 139, 139, 139, 139, 139, 8993,28512,28533, 140,26676, 8992,26384,28479,27501,28312,27501,28313,28346,26426,28534, 28347,27530,28420,27238,28310,25385,27505,27503, 2866, 139, 139, 139, 139,26677, 139, 139, 139, 139, 139, 139, 139, 139, 139,25386, 139, 139,27503,28417,27503,26712, 26949,28474,25675,14117,28417, 139, 139, 139, 139, 139, 139, 139,28311,25106,29692,26442,28360, 8997,26983,26721, 27501,27502,28438,27531,25367,25073,28439,28440,26426,26426, 26424,27505,26426,27505,12845, 2866, 139, 139, 139, 139, 25107, 139, 139, 139, 139, 139, 139, 139, 139, 139, 27945, 139, 139,27503,28441,28139,28476,25074,28363,26712, 26712,26384, 139, 139, 139, 139, 139, 139, 139, 8998, 27946,28364,26444,28431, 8997,28314,26719,26719,26426,26721, 26721,28539,27947,28515,26444,28750,28508,26442,27505,26383, 28413,26383, 2866, 139, 139, 139, 139,26737, 139, 139, 139, 139, 139, 139, 139, 139, 139,27945, 139, 139, 26383,28654,28139,27945,29698,26749,26444,26665,28139, 139, 139, 139, 139, 139, 139, 139,28341,27946, 140,28449, 28320, 9002,28386,27946,26666,26758, 307,26667,26426,27947, 28537, 140,26426,26426,28490,27947,28389,26749,28322, 2866, 139, 139, 139, 139,26774, 139, 139, 139, 139, 139, 139, 139, 139, 139,26756, 139, 139,26758,28548,26712, 29043,23744,23323,27927,26712,28358, 139, 139, 139, 139, 139, 139, 139, 9003,26384,28366,26719,28745, 9002,26721, 26444,26719, 140,26426,26721,28340,28340,28340,28340,28340, 28340,28340,28340,28340,23324,27928, 2866, 139, 139, 139, 139,26426, 139, 139, 139, 139, 139, 139, 139, 139, 139,28466, 139, 139,26424,26424,26424,26424,26424,26424, 26424,26424,26424, 139, 139, 139, 139, 139, 139, 139, 28843,28467,26712,28766,28450, 9006,28415,28361, 140, 139, 26426,27915,27025,28468, 140,26426,27916,26444,28359,26719, 22666,22668,26721, 2866, 139, 139, 139, 139,28547, 139, 139, 139, 139, 139, 139, 139, 139, 139,22168, 139, 139,26712,28555,27917,22172,22669,26712,26109,26749,28556, 139, 139, 139, 139, 139, 139, 139, 9007,26719,28390, 140,26721, 9006,26719,28367,26756,26721,28478,26758,26424, 26424,26424,26424,26424,26424,26424,26424,26424,29624,26110, 2866, 139, 139, 139, 139,28436, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9008, 139, 139,26424,26424, 26424,26424,26424,26424,26424,26424,26424, 139, 139, 139, 139, 139, 139, 139, 9008,27042,28624,26424,26426, 9010, 26426,25406,25113,26444,28937,28513,26383,27816,26424,26424, 26424,26424,26424,26424,26424,26424,26424, 2866, 139, 139, 9008, 9008, 139, 139,27042, 139, 139, 139, 139, 139, 139, 139, 139, 139,25114, 139, 139,26424,26424,26424, 26424,26424,26424,26424,26424,26424, 139, 139, 139, 139, 139, 139, 139,27042,27042,26768,28774, 434, 9012,27817, 28610,25967,28422,26442,28637,26426,26444,28432, 1078,28657, 26426,28535,26369,26444,28385, 257, 139, 139, 139, 139, 139,28530, 139, 139, 139, 139, 139, 139, 139, 139, 139,28369, 139, 139,25685,28571,26712,26749,28454,28549, 27927,26712,28365, 139, 139, 139, 139, 139, 139, 139, 9013,28362,25686,26719,26756, 9012,26721,26758,26719,27084, 26426,26721,26424,26424,26424,26424,26424,26424,26424,26424, 26424,23734,27928, 139, 139, 139, 139, 139,28451, 139, 139, 139, 139, 139, 139, 139, 139, 139,24246, 139, 139,26424,26424,26424,26424,26424,26424,26424,26424,26424, 139, 139, 139, 139, 139, 139, 139,26383,28622,28836, 25551, 139, 9017,28579,26426,28371,26444,26383,28370,26424, 26424,26424,26424,26424,26424,26424,26424,26424,28638,28596, 2866, 139, 139, 139, 139,10612, 139, 139, 139, 139, 139, 139, 139, 139, 139,27928, 139, 139,26424,26424, 26424,26424,26424,26424,26424,26424,26424, 139, 139, 139, 139, 139, 139, 139, 9018,26426, 139,10613,29736, 9017, 26424,26424,26424,26424,26424,26424,26424,26424,26424,28372, 28565,28631,29448,28582,28658,28440,26738, 2866, 139, 139, 139, 139,26444, 139, 139, 139, 139, 139, 139, 139, 139, 139,10614, 139, 139,26731,28373, 434,28462,28143, 28746,28691,28441,26733, 139, 139, 139, 139, 139, 139, 139,28374,28695,26749,27949, 257, 9021,26424,26424,26424, 26424,26424,26424,26424,26424,26424,27950,26734,29473,26444, 26756,28393,28473,26758, 2866, 139, 139, 139, 139,28423, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 139,26442,26442,26442,26442,26442,26442,26442,26442, 26442, 139, 139, 139, 139, 139, 139, 139, 9022,28691, 22902,28676,26444, 9021,28761,28377,28948,28694,28690,26424, 26424,26424,26424,26424,26424,26424,26424,26424,22903, 140, 26545, 2866, 139, 139, 139, 139, 8884, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9023, 139, 139,22904, 5904, 3742, 784,25372,25078,28475,28617,26546, 139, 139, 139, 139, 139, 139, 139, 9023,27600, 8105,28790,23767, 9025,29747,26424,26424,26424,26424,26424,26424,26424,26424, 26424,26444, 5905,26444,28608,23779,25079,23768, 2866, 139, 139, 9023, 9023, 4756, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102,23780,23321, 140,28466,25551,23769,28461, 28430,28469,26749,26383,26749, 140,26110, 5906,28384,28416, 28288,28376,25551,26383,23781,28392,28467,28965,26732,26756, 28613,26756,26758, 2866,26758, 4103, 139, 139,28468, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 203, 139, 139, 139, 139, 139, 139, 9029, 9029, 9029, 9029, 9029, 9030, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 9028, 9028, 9028, 9028, 9028, 9028, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 26444,26522,26234,27945,22902, 139,24227,23847,28139, 464, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029,28321, 25852, 140,22903,27946, 531,25853,25551,28798,26426,28620, 28756,26749,28487,28748,26235,27947,28387,26383,28802,23848, 26738,27067,28429,22904, 270, 473,26426,26383,26756,28140, 28463,26758,26236, 9029, 9029, 9029, 9029, 9029, 9029, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 28455, 139, 139, 139, 139, 139, 139, 9032, 139, 139, 29751, 139, 139,26442,26442,26442,26442,26442,26442,26442, 26442,26442, 139, 139, 139, 139, 139, 139, 139,26444, 26383,26673,28839,28632, 8284,26444,27915,28397,25140,24824, 28375,27916,26424,26424,26424,26424,26424,26424,26424,26424, 26424,26444, 139, 139, 139, 139, 139, 139,26444, 139, 139, 139, 139, 139, 139, 9032, 139, 139,27917, 139, 139,24825,28347,26383,28442,26383,26383,27238,26383, 140, 139, 139, 139, 139, 139, 139, 139, 9033,27042,26749, 28621,29753, 8284, 140,26383, 139,28651,26383,26383,28388, 28493,28452,28652,28674,26949,28763,26756,28604,26383,26758, 139, 139, 139, 139, 139, 139,29181, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 2438, 150, 6864, 6864, 6864, 6864, 6864, 6864, 6864, 6864, 6864, 5513, 139, 139, 139, 139, 139, 139, 6864, 6864, 6864, 6864, 6864, 6865, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 6864, 6864, 6864, 6864, 6864, 6864, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139,29763, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 9034, 8336, 139, 9035, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 9036, 8339, 139, 139, 139, 139, 139, 139, 9036, 9036, 9036, 9036, 9036, 9037, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 139, 139, 139, 9038, 9036, 9036, 9036, 9036, 9036, 9036, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 8332,28162, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 139,26383,26383,26383,26383,26426, 140, 9034, 9034, 9034, 9034, 9034, 9044,26442,26442,26442,26442,26442,26442, 26442,26442,26442,26383,26383,26444,26442,26442,26442,26442, 26442,26442,26442,26442,26442, 9034, 9034, 9034, 9034, 9034, 9034, 139, 139,28675, 139, 8334, 139, 139, 139, 139, 139, 139, 139,28844, 8332, 139,26749,14117,28496,28754, 27084,27927,28391,26424,26736, 139, 139, 139, 139, 139, 139, 139,27084,26756,26768,28865,26758, 9046,26442,26442, 26442,26442,26442,26442,26442,26442,26442,28516,12845, 9047, 26383, 3742,26383,27928, 140, 139, 139, 139, 9048,27854, 26442,26442,26442,26442,26442,26442,26442,26442,26442,28484, 28569,26383,28143, 139,25839,27916,27927, 9047, 8301,28578, 28682,28472,28477,26735, 7585,23779, 7585,27949,26736, 8298, 8298, 8298, 8298, 8298, 8298, 8298, 8298, 8298,28398,27950, 26806,26496,27917,23780,28495,26775,27084,25551,27928,28803, 140,27855,28414,28414,28414,28414,28414,28414,28414,28414, 28414, 140,28414,29697,23781,29764,28434, 8302, 139, 139, 28699, 139, 836, 139, 139, 139, 139, 139, 139, 139, 571, 139, 139, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 139, 139, 139, 139, 139, 139, 139, 571, 571, 571, 571, 571, 572, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 139, 139, 139, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 139, 139,29779, 139, 6925, 139, 139, 139, 139, 139, 139, 139, 7609, 139, 139, 8286, 8287, 8288, 8289, 8289, 8289, 8289, 8289, 8289, 7614, 139, 6932, 139, 139, 139, 139, 8290, 8290, 8290, 8290, 8290, 8291, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8293, 8292, 8292, 8292, 8292, 8292, 8312, 139, 139, 6938, 8290, 8290, 8290, 8290, 8290, 8290, 8292, 8292, 8292, 8292, 8292, 8295, 8292, 8292, 8292, 8292, 8292, 8292, 8293, 8292, 8292, 8292, 8292, 8292, 8292, 139, 139,27927, 139, 570, 139, 139, 139, 139, 139, 139, 139, 1078, 8332, 139,27945, 28565,27945,28565,28716,28139,28440,28139,28440, 139, 139, 139, 139, 139, 139, 139,28470,28772,26545,27928,27946, 8333,27946,28567,28691,28700,28570,26775,28568,26424,26731, 28852,27947,28441,27947,28441,24246,28122,28471, 139, 139, 139, 7623, 139, 139,26546, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 9053, 8336, 139, 9054, 9055, 9055, 9055, 9055, 9055, 9055, 9055, 9055, 8339, 139, 139, 139, 139, 139, 139, 9055, 9055, 9055, 9055, 9055, 9056, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 139, 139, 139, 9057, 9055, 9055, 9055, 9055, 9055, 9055, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 8332, 140, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 139, 8884, 140,29092, 26383,28798,28834, 9053, 9053, 9053, 9053, 9053, 9063,28801, 28878,25849,25551,26442,26442,26442,26442,26442,26442,26442, 26442,26442,28879,29100,26424,28724,26444,26383, 8105,26383, 9053, 9053, 9053, 9053, 9053, 9053, 139, 139,28558, 139, 8334, 139, 139, 139, 139, 139, 139, 139,26383, 8332, 139,26442,26442,26442,26442,26442,26442,26442,26442,26442, 139, 139, 139, 139, 139, 139, 139,28395,24227,28583, 23767,28762, 9065,26426,26426,26426,26426,26426,26426,26426, 26426,26426,28491,28143, 9066, 434,29782,26424,23768,26424, 139, 139, 139, 9067,28602,26444,28803,28504,27949,28770, 28764,23848, 139, 257,26773,29024,28940,28396, 140,23769, 27950, 531, 9066, 139, 139,28703, 139, 163, 139, 139, 139, 139, 139, 139, 139, 168, 344, 139, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 139, 139, 139, 139, 139, 139, 139, 168, 168, 168, 168, 168, 345, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 139, 139, 139, 176, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 139, 139,29788, 139, 8301, 139, 139, 139, 139, 139, 7585, 139, 9070, 165, 139, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 139, 139, 139, 139, 139, 139, 139, 841, 841, 841, 841, 841, 842, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 9072, 139, 139, 139, 843, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 375, 26678,28595,28866,29796,26772,26679,26383,26743, 150,26773, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 26426,26426,26426,27020,28935, 464, 150, 150, 150, 150, 150, 162,26442,26442,26442,26442,26442,26442,26442,26442, 26442,26442,26442,26442,26442,26442,26442,26442,26442,26442, 140,24231,23851, 150, 150, 150, 150, 150, 150, 2438, 270, 6909, 6909, 6909, 6909, 6909, 6909, 6909, 6909, 6909, 5570,29108,26442,28635,28623,28848,25106, 6909, 6909, 6909, 6909, 6909, 6910,26444,23852,28780, 464,27026,27641,26768, 28399,23744,23323,28551,26442,26442,26442,26442,26442,26442, 26442,26442,26442,25107, 6909, 6909, 6909, 6909, 6909, 6909, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079,23853, 24235,28818,26383,29800,23324,28456, 9079, 9079, 9079, 9079, 9079, 9080,26383,28559, 140,26442,28655,26770,27501,27502, 3742,26848,26538,27501,27502,28400,25367,25073,25967,25684, 27068,23746,28951, 9079, 9079, 9079, 9079, 9079, 9079, 139, 139,26771, 139, 139, 139, 139, 139, 139, 139, 139, 139,27503, 8332, 8356,26539,28785,27503,28435,28552,25074, 28728,25685,28458, 139, 139, 139, 139, 139, 139, 139, 28803, 140,26540,28625,28891, 9083,28457, 307,26679,25686, 26383, 139, 140,27733,29534,28895,27505,27736,25969,28543, 26383,27505,26110, 8358, 139, 139, 8359, 139, 139,28784, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9084, 139, 139, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 139, 139, 139, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9086, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139,28729, 139, 139, 139, 139, 139, 139, 139, 139, 139, 1078, 8332, 8356,26442,26442,26442,26442,26442, 26442,26442,26442,26442, 139, 139, 139, 139, 139, 139, 139, 9087,29807,26426,26369,29810, 9083,28459,27502,28798, 26442,26442,26442,26442,26442,26442,26442,26442,26442,29814, 26442,29164,26426, 140, 8358, 139, 139, 8359, 139, 139, 26109, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 27503, 139, 139,28403,28538,27017,28565,25106,24221,23841, 28439,28440, 8367, 139, 139, 139, 139, 139, 139,28402, 26424,28749,26110,28873, 9088,28891,26769,27733,28375,27501, 27502,28605, 8884,28894,25107,27505, 9089,28883,28441,26442, 26772,23842, 139, 139, 139,26773, 140,28401,28401,23767, 26442,26442,26442,26442,26442,26442,26442,26442,26442,23843, 28680,28609,27503, 8105, 9089, 139, 139,23768, 139, 8334, 139, 139, 139, 139, 139, 139, 139,28492, 8332, 8356, 26735,26383,28453,26383,23733,26736,28786, 140,23769, 139, 139, 139, 139, 139, 139, 139,27084,27505,29821,26772, 29830, 9091,26383,28460,26773,26424,26424,26424,26424,26424, 26424,26424,26424,26424,28642,29839,23734,28877, 140, 8358, 139, 139, 9092, 139, 139,26983, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 9090, 8332, 8356, 9097, 9098, 9098, 9098, 9098, 9098, 9098, 9098, 9098, 8339, 139, 139, 139, 139, 139, 139, 9098, 9098, 9098, 9098, 9098, 9099, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 8358, 139, 139, 9092, 9098, 9098, 9098, 9098, 9098, 9098, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9100, 9101, 9101, 9101, 9101, 9101, 9101, 9101, 9101, 9102,14117,14117,26442,26383, 28977,26383, 9101, 9101, 9101, 9101, 9101, 9103,28980,26735, 25106,28494, 140,26426,26736,26424,29033, 784,25372,25078, 26383,23744,23323,26522,26234,25140,24824,12845,12845, 9101, 9101, 9101, 9101, 9101, 9101, 139, 139,25107, 139, 8334, 139, 139, 139, 139, 139, 139, 139,26678, 139, 8356, 28607,25079,26679,28959,23324,28797,26235,28606,24825, 139, 139, 139, 139, 139, 139, 139,28847,26522,26234,23321, 27915, 9105,28788,28347,26236,27916,27027,26383,26383,26383, 26383,28546,25406,25113,28580,26426,26444,26545,28557, 8358, 139, 139, 8334,28633,28653,28545,24231,28584,26383,26383, 26235,27238,27917, 9108, 9109, 9109, 9109, 9109, 9109, 9109, 9109, 9109,28565, 139,26546,25114,28826,28440,26236, 9109, 9109, 9109, 9109, 9109, 9110,26678,26678, 3992,26949,23852, 26679,26679,26426,26426,26426,26426,26426,26426,26426,26426, 26426,27310,27352,28564,28441,28560, 9109, 9109, 9109, 9109, 9109, 9111, 139, 139,28819, 139, 8334, 139, 139, 139, 139, 139, 139, 139,23853, 8332, 8356,26426,26426,26426, 26426,26426,26426,26426,26426,26426, 139, 139, 139, 139, 139, 139, 139, 9113,26444,24246,28502, 140, 9091,26426, 26426,26426,26426,26426,26426,26426,26426,26426,25367,25073, 27915,23733,28671, 140, 140,27916, 8358, 139, 139, 9092, 139, 139,28615, 139, 8334, 139, 139, 139, 139, 139, 139, 139,28962, 8332, 8356,28510,27059,29179, 3742,29062, 28562,25074,27917,23734, 139, 139, 139, 139, 139, 139, 139, 140,28765,29050,25551,28503, 9115,26426,26426,26426, 26426,26426,26426,26426,26426,26426,27816,28666,28565,25551, 24111,28685,23779,28440, 8358, 139, 139, 9116, 139, 139, 25854, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 23780, 8332, 8356,23744,23323,25551, 3742,26848,26538,26369, 28441,28977, 139, 139, 139, 139, 139, 139, 139, 9117, 25551,23781,28981,27042, 9115,28616,26772,28505,27817,26444, 28861,26773,28566,27854,27027,29084,23324, 6224,28868,26444, 26539,25855, 8358, 139, 139, 9116, 139, 139,28563, 139, 8334, 139, 139, 139, 139, 139, 139, 139,26540, 8332, 8356,26426,26426,26426,26426,26426,26426,26426,26426,26426, 139, 139, 139, 139, 139, 139, 139,28586,28587, 464, 27084, 140, 9119, 566, 9120,27855,26426,26426,26426,26426, 26426,26426,26426,26426,26426,27062,28862,25106,26426,26444, 8403, 8404, 8404, 9121,29353,26444,28508,28530,27799,28715, 28588, 9122, 139, 139, 270, 139, 8334, 139, 139, 139, 139, 139, 139, 139,25107, 139, 8356,26444,26444,26444, 26444,26444,26444,26444,26444,26444, 139, 139, 139, 139, 139, 139, 139,27020,28506,28589, 139,26424, 9123,26426, 26426,26426,26426,26426,26426,26426,26426,26426,27024,27066, 1078,26732,29026,27025,27067,28881, 8358, 139, 139, 139, 139,28778, 139, 139, 139, 139, 139, 139, 139, 139, 139,28524, 7621, 8356, 434,28565,28792,28891,24221,28581, 28440,27916,27022, 139, 139, 139, 139, 139, 139, 139, 28507,29470, 257, 140,29057, 9126,26444,26444,26444,26444, 26444,26444,26444,26444,26444,29061,27023,28441,27917,28807, 28688,23842, 139, 8358, 139, 139, 9127, 139, 139, 5904, 139, 139, 139, 139, 139, 139, 139, 139, 139,23843, 139, 139,26426,26426,26426,26426,26426,26426,26426,26426, 26426, 139, 139, 139, 139, 139, 139, 139, 140,27501, 27502, 5905,28525, 9129,26444,26444,26444,26444,26444,26444, 26444,26444,26444,25673,25384, 9130,26426, 434,26444,29520, 29040, 139, 139, 139,27927, 140,26522,28678,28526,27501, 27502,28509,27503,25673,25384, 257, 5906,28593,27021,29064, 28636,28590,28656, 9130, 139, 139,25385, 139, 139, 139, 139, 139, 139, 139, 139, 139,27928, 7621, 8356,26235, 28963, 139,27503, 139,25386,28805,25385,27505, 139, 139, 139, 139, 139, 139, 139, 9131,27024,26236,27066,28550, 9126,27025,26426,27067,25386,28508,28592,26426,26426,26426, 26426,26426,26426,26426,26426,26426,28672,27505, 8358, 139, 139, 9127, 139, 139,26426, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 8356,26444,26444,26444, 26444,26444,26444,26444,26444,26444, 139, 139, 139, 139, 139, 139, 139,27310,29445,27020,28849,29449, 9133,26444, 26444,26444,26444,26444,26444,26444,26444,26444,23744,23323, 28751,26444,27062,28946,29244,27025, 8358, 139, 139, 139, 139,26444, 139, 139, 139, 139, 139, 139, 139, 139, 139,28466, 7621, 139,27062,28528,28469,28598,28143,29172, 26444,23324,28469, 139, 139, 139, 139, 139, 139, 139, 140,28467,29057,27949, 6216, 9134,26678,28467, 140,28527, 29060,26679,26383,28468, 782,27950,27069,28767,28841,28468, 28667,28722,27067, 139, 139, 139, 139, 139, 139,28964, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 8360, 7621, 139, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 139, 139, 139, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8362, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139,28679, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 8356,26444,26444,26444,26444,26444, 26444,26444,26444,26444, 139, 139, 139, 139, 139, 139, 139, 9137, 139,23767,29182, 139, 9133,26444,26444,26444, 26444,26444,26444,26444,26444,26444,25406,25113,27530,26675, 29017,23768, 139,26396, 8358, 139, 139, 139, 139,27927, 139, 139, 139, 139, 139, 139, 139, 139, 139,28466, 139, 139,23769,28532,28469,24221,23841,28702,10612,25114, 27064, 139, 139, 139, 139, 139, 139, 139,28529,28467, 29394,27928, 139, 9139,29393,26983,28599,27501,27502,28816, 27531,28468,27238,14117,27065,28681,26383, 139,23842,29614, 10613, 139, 139, 139, 139, 139,26383, 139, 139, 139, 139, 139, 139, 139, 139, 139,23843, 139, 139,26949, 27503, 5905,26442,28804,12845,24223,28594,28723, 139, 139, 139, 139, 139, 139, 139,10614,26769,29035,28591,29781, 9141,28876,29447,25967,25684,10612,26444,26444,26444,26444, 26444,26444,26444,26444,26444,27505, 5906,28725, 139, 139, 139, 139, 139,26369, 139, 139, 139, 139, 139, 139, 139, 139, 139, 140, 139, 139,25685,10613,28466,27945, 24227,23847,28704,28469,28139, 139, 139, 139, 139, 139, 139, 139, 9142,27837,25686,28600,28924, 9141,28467,27946, 26444,26444,26444,26444,26444,26444,26444,26444,26444,28673, 28468,27947,10614,23848,28817, 139, 139, 139, 139, 139, 14117, 139, 139, 139, 139, 139, 139, 139, 139, 139, 28466, 139, 139,28601, 140,28469,27915,28969,28139,28922, 24229,27916, 139, 139, 139, 139, 139, 139, 139,28531, 28467,12845,28840,27946, 9144, 3742,27063,26664,28683,28603, 29126,14117,28468,26369,28143,27947, 9145,28890,27917, 140, 26545,29130, 139, 139, 139,29116,28597,28796,28530,27949, 26444,26444,26444,26444,26444,26444,26444,26444,26444,23779, 26383,27950,12845,29009, 9145, 139, 139,26546, 139, 7624, 139, 139, 139, 139, 139, 139, 139,23780, 7621, 8356, 26424,26424,26424,26424,26424,26424,26424,26424,26424, 139, 139, 139, 139, 139, 139, 139,27352,28726,23781, 139, 140, 9147, 139,28618,28618,28618,28618,28619,28618,28618, 28618,28618,28565,24227,23847,26369,28439,28440, 140, 8358, 139, 139, 9148, 139, 139,26426, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29046, 7621, 8356,28641, 140, 28565, 3742,26848,28791,28441,28440,23848, 139, 139, 139, 139, 139, 139, 139, 9149, 139,29214,29294,29420, 9147, 26383,26424,26424,26424,26424,26424,26424,26424,26424,26424, 26383,28845,28441,29580,29111,26539,27025, 8358, 139, 139, 9148, 139, 139,28686, 139, 7624, 139, 139, 139, 139, 139, 139, 139,26540, 139, 8356,26442,26442,26442,26442, 26442,26442,26442,26442,26442, 139, 139, 139, 139, 139, 139, 139, 139, 434,28687,29516, 434, 9150,28644,29006, 26424,26424,26424,26424,26424,26424,26424,26424,26424, 140, 14117, 257, 6213, 1078, 257, 8358, 139, 139, 139, 139, 8884, 139, 139, 139, 139, 139, 139, 139, 139, 139, 12845, 9151, 139,28901,28661,25140,24824,28988,25967,25684, 28977,12845, 139, 139, 139, 139, 139, 139, 139,28639, 29240, 8105,29594, 140, 9134,26424,26424,26424,26424,26424, 26424,26424,26424,26424, 3742,26848,26538,28828,24825,28586, 28587,25685, 139, 139, 139, 139, 9156, 9157, 9157, 9157, 9157, 9157, 9157, 9157, 9157, 7629,28684,28827,29117,25686, 29016, 139, 9157, 9157, 9157, 9157, 9157, 9158,26539,26396, 464,28782,28588,28701,28640,26424,26424,26424,26424,26424, 26424,26424,26424,26424, 464,27927,26540,25140,28900, 9157, 9157, 9157, 9157, 9157, 9157, 9160, 9161, 9161, 9161, 9161, 9161, 9161, 9161, 9161, 9162, 270, 473,28589, 434, 566, 28912, 9161, 9161, 9161, 9161, 9161, 9163,27928,28899, 270, 24825,26728, 139,29419, 139,28997, 257,26424,26424,26424, 26424,26424,26424,26424,26424,26424,29044,28643, 9161, 9161, 9161, 9161, 9161, 9161, 7624,27816,26424,26424,26424,26424, 26424,26424,26424,26424,26424, 9165, 9166, 9166, 9166, 9166, 9166, 9166, 9166, 9166,28466,26426, 140,27238, 140,28469, 26424, 9166, 9166, 9166, 9166, 9166, 9167,28645,28853,29025, 26426,26735,26736,26706,28467,28928,26736,26424,29020,29569, 29391,29004,27042,28855,26949,29119,28468,27817, 9166, 9166, 9166, 9166, 9166, 9168, 139, 139,10612, 139, 7624, 139, 139, 139, 139, 139, 139, 139,26424, 139, 8356,26442, 26442,26442,26442,26442,26442,26442,26442,26442, 139, 139, 139, 139, 139, 139, 139, 9171,25551,25565,10613, 464, 9150,26442,26442,26442,26442,26442,26442,26442,26442,26442, 26369,27915,28888,23744,23323,28110,27916,28440, 8358, 139, 139, 9173, 9174, 9174, 9174, 9174, 9174, 9174, 9174, 9174, 9175,27927,28714,10614,29141, 1078,28664, 9174, 9174, 9174, 9174, 9174, 9176,27917,28441,29152,23324, 6206, 6203,28689, 28659,29160,26442,26442,26442,26442,26442,26442,26442,26442, 26442,26109,29057,27928, 9174, 9174, 9174, 9174, 9174, 9174, 139, 139,28776, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,28466,28565,28565,25140,24824, 28469,28440,28440,26110, 139, 139, 139, 139, 139, 139, 139,28660,26383,26398,28898,28467, 9182,26442,26442,26442, 26442,26442,26442,26442,26442,26442,28662,28468,28441,28441, 28718,24825, 140,28923, 139, 139, 139, 139, 139, 139, 26426, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8392, 139, 139,29241,26426, 784,25372,25078,28793, 29022,26442, 139, 139, 139, 139, 139, 139, 139,28794, 29034, 6200,28806, 566, 7639, 6199,27027, 9183,24231,23851, 28705,26442,26442,26442,26442,26442,26442,26442,26442,26442, 25079,29711, 139, 139, 139, 139, 139, 139,26109, 139, 7624, 139, 139, 139, 139, 139, 139, 139,23321, 7621, 8356,23852,26109,28719,25367,25073,28668,29045,28139,29062, 139, 139, 139, 139, 139, 139, 139,26765, 139, 140, 26110, 140, 9186,27946, 531, 140,26522,26234,24233,27501, 27502,24221,23841,28663,26110,27947,23853,25074,25106, 140, 8358, 139, 139, 9187, 139, 139,29008, 139, 7624, 139, 139, 139, 139, 139, 139, 139,28787, 7621, 8356,26235, 29242,29184,27503,28710,23842,25107, 139,28830, 139, 139, 139, 139, 139, 139, 139, 9188,28936,26236,28869,29518, 9186,27011,23843, 140,28586,28587,26524,27854,26442,26442, 26442,26442,26442,26442,26442,26442,26442,27505, 8358, 139, 139, 9187, 139, 139, 5904, 139, 7624, 139, 139, 139, 139, 139, 139, 139,26426, 139, 8356,28588,27927,29186, 14117,26383,28586,28587,29497,29126, 139, 139, 139, 139, 139, 139, 139,29129,27084,28706, 5905, 139, 9189,27855, 140,26442,26442,26442,26442,26442,26442,26442,26442,26442, 27928,12845,28589,26383,26545,28588, 8358, 139, 139, 139, 139,28931, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 5906, 7621, 8356,29114,28713,28829,14117, 8057,28985, 29125,26546,28707, 139, 139, 139, 139, 139, 139, 139, 28589,28665, 307,29668, 139, 9192,26773, 140,28669,28669, 28669,28669,28669,28669,28669,28669,28669,28565,12845, 1078, 140,26545,28440, 8358, 139, 139, 9193, 139, 139, 140, 139, 7624, 139, 139, 139, 139, 139, 139, 139,28721, 7621, 8356,28565,28921,28143,28143,29126,28440,26546,28441, 28143, 139, 139, 139, 139, 139, 139, 139, 9194,27949, 27949,29296,29250, 9192,26444,27949,29469,28586,28587,28586, 28587,27950,27950, 8884,28441,28824,26109,27950,28887,26444, 28795, 8358, 139, 139, 9193, 139, 139,29029, 139, 7624, 139, 139, 139, 139, 139, 139, 139,28708, 7621, 8356, 28588,29002,28588,29048, 8105,28727,29251,25106,26110, 139, 139, 139, 139, 139, 139, 139,28996,26545, 140,27501, 27502, 9196, 9197,28735,28735,28735,28735,28735,28735,28735, 28735,28735,25367,25073,25107,28589,28709,28589,28920, 8358, 139, 139, 9198,26112,26546, 139, 139,29056,10613, 9197, 139, 139,27503, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,25074, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 139, 139, 139, 139, 139, 139, 139,28712,29742,10614,29719, 6196, 9201,27505,28735,28735, 28735,28735,28735,28735,28735,28735,28735,25673,25384, 140, 28775,29168,29662, 140, 139, 139, 139, 139, 139,26424, 139, 139, 139, 139, 139, 139, 139, 139, 139,28466, 139, 139,25367,28955,28469,25406,25113,25406,25113,29238, 25385, 139, 139, 139, 139, 139, 139, 139,26396,28467, 29299,26424, 139, 9201,26400, 784,25372,25078,25386,28941, 3742,28468,26424,26439,27915,25074,28781,28821,25114,27916, 25114, 139, 139, 139, 139, 139,27927, 139, 7624, 139, 139, 139, 139, 139, 139, 139,27945, 139, 8356,25079, 28919,28139,25406,28968,23779,27238,27917,28889, 139, 139, 139, 139, 139, 139, 139,28789,27946,23321,27928,28882, 9202,28986,23780,29519,24231,23851,28586,28587,27947, 784, 25372,25078,26949,29326,28777,25114, 140,28823, 8358, 139, 139, 139, 139,23781, 139, 7624, 139, 139, 139, 139, 139, 139, 139,27945, 7621, 8356,28466,23852,28139,28588, 29295,28469,28811,25079,26369, 139, 139, 139, 139, 139, 139, 139,28717,27946,27024,26391,28467, 9204, 9205,27025, 26426,23321, 566,29330, 6193,27947,28938, 8884,28468,28586, 28812,28720,23853,28927,28589, 8358, 139, 139, 9206,28140, 25551,25565,28597,25847,28871, 9205, 139, 139,27927, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 8105, 139, 8356,25551,28588,28466,28466, 140,28586,28587,28469,28469, 139, 139, 139, 139, 139, 139, 139, 9207,28820,28913, 27928,26432, 9189,28467,28467,27501,27502,27501,27502,29338, 25967,25684,29005,28565,29183,28468,28468,28589,28440,28588, 8358, 139, 139, 139, 139,26442, 139, 139, 139, 139, 139, 139, 139, 139, 139,25560, 139, 9209,27503, 140, 27503,28813, 140,25685, 6190,28441,29012, 139, 139, 139, 139, 139, 139, 139,28589,28809,28942,26442,28810, 9210, 26109,25686,23744,23323,26450,28952,26522,26234,29351,28875, 28815,26424,29346,27505, 610,27505,29115, 139, 139, 9211, 139, 139,28886, 139, 139, 139, 139, 139, 139, 139, 139, 139,26110, 139, 9209,23324,27915,28143,28143,26235, 28110,27916,26545,26424, 139, 139, 139, 139, 139, 139, 139, 9212,27949,27949,26737, 139, 9210,26236,28947,26111, 25673,25384, 139,27053,27950,27950,28967,26112,27917,26546, 28870,25106,28880,28825, 139, 139, 9211, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,26424, 139, 9209,26723,25385,28914,28885,26444, 1078,25107,28469, 28917, 139, 139, 139, 139, 139, 139, 139, 6185,26724, 28953,25386,26725, 9215,28467,28872,28872,28872,28872,28872, 28872,28872,28872,28872,28872,26442,28468,29552,28874, 140, 29422, 139, 139, 9211, 139, 139, 140, 139, 139, 139, 139, 139, 139, 139, 139, 139,26442, 139, 9209,26760, 29632, 3742,26848,26538,23744,23323,28143,26442, 139, 139, 139, 139, 139, 139, 139, 9216,26761,27066,26774,26762, 9215,27949,27067,26444,28586,28587,27501,27502, 139,28949, 27501,27502,28884,27950,28918,26539, 139,23324, 139, 139, 9211, 139, 139,29196, 139, 139, 139, 139, 139, 139, 139, 139, 139,26540, 139, 9209, 140,28588,26437,27503, 28586,28587,26850,27503,26441, 139, 139, 139, 139, 139, 139, 139,28778,29007,14117,27928,26545, 9218,28956, 9219, 139, 6127,29239,28779,28779,28779,28779,28779,28779,28779, 28779,28779,28589,28588,27505, 9220, 9220, 9221,28908,28903, 139,29495,29593,26546, 140,12845, 9222, 139, 139,28976, 139, 139, 139, 139, 139, 139, 139, 139, 139,27945, 139, 8356, 140,28143,28139,23744,23323,27927,28589,28904, 29705, 139, 139, 139, 139, 139, 139, 139,27949,27946, 28586,28587,10612, 9133, 6127,29737, 9223,29133,29349, 139, 27950,27947,29213,29003,28822,28973,27501,27502,23324,27928, 28440, 8358, 139, 139, 139,28140,28586,28587,28909,27502, 27927,25140,24824,28588,10613, 139, 139, 139, 139, 139, 139, 139, 139, 139,26110,27915, 139,28441,29037,27503, 27916, 139, 139, 139, 139, 139, 140,28907, 139,28588, 28707,27503,27928,29091,24825,28905,27945,28906,28589,10614, 29063,28139,26675,26383,27238,28911,29421,27917, 139, 139, 139, 139, 139, 139,27505,26383,27946,26383,28910, 784, 25372,28957, 9225, 9231,28589,27945,27505,28565,27947,28971, 28139,26949,28440,29270, 9232, 9232, 9232, 9232, 9232, 9232, 9232, 9232, 9232,29354,29582,27946,29535,26383, 139,26383, 28972,26678, 140,25079,28932, 1572,26679,27947,28916,28441, 26424,27915,27915,28915,29080,26369,27916,27916, 9231, 6127, 26681,23321, 434, 1234, 1225, 1225,26424, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26442, 1225, 4935,27238, 257, 6127,26424,27917,27917,14117,28975,28943, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 139,27238,29134,26424,29595, 9237,26442,26735,26738,25673,29041,26949,26736,26442,25140, 24824,28987,26772,29082,29052, 139,12845,26773, 4937, 1225, 1225, 1225, 1225,26949, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26442, 1225, 4935, 464,25385,28954,25673, 25384,29266,24825, 8884, 139, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9238,29148,26775,25386,29647, 9237,29073,28958, 28958,28958,28958,28958,28958,28958,28958,28958,28958,25142, 139, 270,25385,29536, 8105, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 25386, 1225, 6967, 139, 6170,28998,27945,15414,14117,25551, 28469,28139, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29149, 27238,29493, 139,28960, 9242,28467,27946,25967,25684,26522, 26234, 3742,26848,26538,25367,25073,29036,28468,27947,12845, 29650,29001, 4937, 1225, 1225, 1225, 1225,26949, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29013, 1225, 6967, 25685,28565,26235,25560,28143,26539,28440,25074,29767, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9243,27238,25686,29147, 26236, 9242,28565,26540,28586,28587,28439,28440,29323,29021, 29030,27950,28966,28441,25369,28961, 6170,29648,28970, 4937, 1225, 1225, 1225, 1225,26949, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,28441, 1225, 1225,28588, 8884,27945, 28974,26426,26444, 8884,28139,26444, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 6170, 139, 139,26426,26444, 9246,27946, 26444,28586,28587,28586,28587,29031,29293,27026,27068, 8105, 28565,27947,28589,28686, 8105,28440, 4937, 1225, 1225, 1225, 1225,27069, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29081, 1225, 1225,28588,29000,28588, 139, 140,28586, 28991,29251,28441, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9247,29054,29537, 140,29465, 9246, 531,29176,28586,28587, 27501,27502, 784,25372,25078,29038,26522,26234,29496,28989, 28990,28589,28588, 4937, 1225, 1225, 1225, 1225,29297, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29099, 1225, 1225,28588,26109,27503,25967,25684,25079,26732,26424,26235, 1225, 1225, 1225, 1225, 1225, 1225, 1225,28589,26442,26457, 140,29706, 9250,28992,23321,27501,27502,26236,25406,25113, 29049,28994, 139,25374,26110,29047,28589,25685,27505,27736, 4937, 1225, 1225, 1225, 1225,26109, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,25686, 1225, 1225,27503,25367, 25073,25114,26109,27501,27502,29223, 6127, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9251,29151,28995,26110,29042, 9250, 139, 6127,27501,27502,28993, 3742,26848,26538,25408,28586, 29066,29809,25074,27505,26110, 139,27503, 4937, 1225, 1225, 1225, 1225,29305, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29083, 1225, 1225,27503,26426,26720,29770,26539, 25406,25113,28588,29107, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27505,26769,26442,26545,25551, 9253,26540, 9254,29039, 29039,29039,29039,29039,29039,29039,29039,29039,29039,29051, 27505,27935,29062,25114, 9255, 9256, 9256,28589,27238, 307, 140,26546,29568, 464, 140, 9257, 1225, 1225,25551, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27915, 1225, 6967,28565,28143,27916,28565,26949,28440,29203,28439,28440, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27949, 270, 473, 29156, 434, 9260,10612,29087,28586,28587,28586,28587,27950, 27917,29210,29191,28441,29123, 566,28441,27916,29055, 257, 4937, 1225, 1225, 1225, 1225,29197, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10613, 1225, 6967,28588, 139, 28588,28143, 6105,29053,27917,29078,29067, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9261,28686,27949, 6101, 6095, 9260, 29623,25551,29072,29065,27915,28586,28587,28707,27950,27916, 10614,25551,29360,28589,28709,28589,29079, 4937, 1225, 1225, 1225, 1225,25855, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27945, 1225, 6967,29350,27917,28139,28588,23744, 23323, 139, 139,26545, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26455,27946,29418,29418,25551, 9265,26459,25846,27501, 29069,27501,29070,28565,27947,25551,29088, 140,28440,29121, 26546, 434,23324,28589, 4937, 1225, 1225, 1225, 1225,29068, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 257, 1225, 6967,27503, 139,27503,28441,29109,29253,29190,28143, 29076, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9266,29616, 434, 566, 139, 9265,27949, 784,25372,25078,10612,26383, 25673,25384,29112,25967,29113,28565,27950,27505, 257,27505, 28440, 4937, 1225, 1225, 1225, 1225,29352, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,28466, 1225, 6967,25079, 10613,28469,29732,25385, 139,29400,25685,28441, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29146,28467,23321, 140,29555, 9270,25386,29163,26414,25686,29258,28586,28587,28468,29122, 25675,27021,26426,14117,29218,10614,29140,29075, 4937, 1225, 1225, 1225, 1225,29316, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27945, 1225, 6967,27915,10613,28139,28588, 8884,27916,29592,28143,12845, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9271,27946,29171, 464,29124, 9270,27949,29159, 26522,26234,29309,27063,26444,27947,26383,26398,27917,26672, 27950, 8105,10614,29077,28589, 4937, 1225, 1225, 1225, 1225, 29150, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 270, 1225, 6967,26235, 434, 3742,26848,26538,23744,23323, 139, 139, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29208, 6094,26236, 257,29489, 9274, 464,29110,29110,29110,29110, 29110,29110,29110,29110,29110,29110,29267, 8884,29118,26539, 29231,23324, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26540, 1225, 6967, 29505,28565,28466,29177,29329,29120,28440,28469, 8105, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9275,29251, 434,29640, 29167, 9274,28467,29517, 307,29135,28587,26424,26439, 140, 26730,26444,26757,28441,28468,29143, 257,26664, 139, 4937, 1225, 1225, 1225, 1225,29362, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9276, 1225, 6967,28466,28588,27945, 27915,26391,28469,29189,28139,27916, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9276, 139, 139, 139,28467, 9278,29145, 28586,28587,26424,28586,28587,28707,27501,27502,27927,28468, 26444,27947,27917,28589,29703,28999, 4937, 1225, 1225, 9276, 9276, 1225, 1225,28597, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,28588, 1225, 1225,28588,29252,29188,27503, 27928,27927,29136,26444, 4046, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29604,29642,29654, 6086,26434, 9280,28122, 566, 29137,26442,29175,27501,27502,27927,27733,29226,28589,26442, 26457,28589,26767,27928,27505, 1234, 1225, 1225, 1225, 1225, 26444, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 28466, 1225, 1225,29138,29337,28469,27503,27928, 8884,29399, 139,28143, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9281, 28467, 139,28323,26444, 9280,26452,27949,25673,25384,25967, 25684,29180,28468,27733,26383,29265,29234,26706,27950, 8105, 29308,27505, 1234, 1225, 1225, 1225, 1225,29273, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26545, 1225, 6967, 25385,26432,25685,27945,29211,23744,23323,29142,28139, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 139,29626,25386, 139, 25686, 9285,29219,27946,26546, 3742,26848,26538,26414,25969, 139, 6085,29192,29412,29583,27947, 4030,27238,23324, 4937, 1225, 1225, 1225, 1225,26383, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26383, 1225, 6967,23744,29417,26539, 26522,26234,27501,27502,26949,26681, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9286,29144, 139,29670,26540, 9285,29236, 29178,29178,29178,29178,29178,29178,29178,29178,29178,29178, 23324,29656,29570,26235,29187,27503, 4937, 1225, 1225, 1225, 1225, 140, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,26236, 1225, 6967,14117,27915,28466,28466,29479,28110, 27916,28469,28469, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 27505, 139, 139, 139,29185, 9289,28467,28467,28586,28587, 28586,28587, 464,29649,29249,12845,26424,27917,28468,28468, 27928,29748,29205, 4937, 1225, 1225, 1225, 1225, 464, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29222, 1225, 6967,28588,29204,28588,29199,26426,26720, 270,27019,29212, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9290,29434,29198, 29669,29230, 9289, 270,29227,29605,28586,28587,26444,26757, 26434,27061,27915,25967,25684,26442,28589,27916,28589,29301, 4937, 1225, 1225, 1225, 1225, 8884, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9291, 1225, 6967,28466,28588, 29207, 139, 139,28469,27917,28139,25685, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9291, 139, 8105,29281,28467, 9293, 27946,27501,27502,29235,25686,26522,29243,26426,29200,26452, 28468,27915,27947,29074,28589, 6077,27916, 4937, 1225, 1225, 9291, 9291, 1225, 1225,28597, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,27503, 1225, 4935,29413,26235,29209, 27945, 139,29720,27917,28143,28139, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29641,26424,29278,26236,29655, 9237,27949, 27946,26715,26426,26383,26424, 464,26670,29201,29246,27505, 27927,27950,27947,26383,29274,26738, 4937, 1225, 1225, 1225, 1225,10612, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29259, 1225, 4935,28565, 3742,26848,26538, 566,28440, 270, 139,27928, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 9238,29206,29657,10613,28565, 9237,26715,28565,27927,28440, 26424,27927,28440,26729,26109,29269,28441,29277, 139,26539, 26424,29282,29361, 4937, 1225, 1225, 4935, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299,28441,26540,10614,28441, 27928, 139,29202,27928,29248,14072,26110,26444, 1572,29247, 29237,29237,29237,29237,29237,29237,29237,29237,29237,29237, 29245,14117,26444, 139,29634,29302, 4937, 6076, 6300, 139, 139, 140, 139, 836, 139, 139, 139, 139, 139, 139, 139,26112, 139, 139,29454,29356,28586,28587,28586,28587, 27916,29639,12845, 139, 139, 139, 139, 139, 139, 139, 28143,26752,29345,28143,29358, 572, 8884, 139,29682,28440, 29286, 139,29285, 139,29289,27949,26752,27917,27949,28588, 139,28588,29255, 139, 139, 139,29268,27950,27501,27502, 27950, 139,29633, 4018, 139,26743,28441, 8105, 9302, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012,29256, 2012, 2012,28589,28143,28589,28466, 139,26450, 29322,27503,28469, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 27949,26442,29324,26442,29581, 2501,26766,28467, 139,29675, 29671,26442,27950,26442,29290,29603,29710,26426,29664,28468, 27018,29257,26775, 2012, 2012, 2012,27505,26426,29334, 6071, 139, 139, 464,29743, 139, 9306, 1597, 1597,29264, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,28466, 1597, 5683,27945,29374,28469,28565,29260,28139,27238,14117,28440, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 270,28467,29617, 29663,27946, 9319,29458,29303,23744,23323,26522,26234,29298, 28468, 464, 139,27947,26949,29699,28441,29676,29261,12845, 5685, 1597, 1597, 1597, 1597,29333, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 139, 1597, 5683,23324,29262, 26235,29325,14117,28586,28587,28143, 270, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9320,29780,29405, 139,26236, 9319, 27949, 3742,26848,29300,27915,29426,27915,26524,29291,27916, 28440,27916,27950,12845,29717, 139,28588, 5685, 1597, 1597, 1597, 1597,26426, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26426, 1597, 7776,26539,27917,28441,27917, 566, 14117,14117,29373,27027, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29312, 434,26540,29513,29677, 9324, 139,29292,29292, 29292,29292,29292,29292,29292,29292,29292,29292,29359,29304, 257,12845,12845,29678, 5685, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,28466, 1597, 7776, 434,29455,28469,28466,29414,27501,27502,28143, 28469, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9325,29318, 257, 434,29550, 9324,27949,28467,28586,28587,29314,28587, 28565,28468,29430, 139,29689,28440,27950,28468, 139, 257, 27503, 5685, 1597, 1597, 1597, 1597,29341, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29503, 1597, 1597,28588, 29321,28588,28441, 434,23744,23323,29313,29311, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27505,29317, 139,29778,26444, 9327, 257,27060, 139,26522,26234,26426,29357,29315,26444, 29342,29611,29683,29480,28589,29684,28589,23324, 1606, 1597, 1597, 1597, 1597,26444, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26444, 1597, 1597,27945,26235,27945,26426, 6070,28139, 8105,28139,27069, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9328,29347,29685,26236,27946, 9327,27946, 8884, 139, 139, 139, 3742,26848,26538,29355,28565,27947, 8884, 27947,29381,28440, 139,29396, 1606, 1597, 1597, 1597, 1597, 27927, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8105, 1597, 1597,27945,29319, 464,29718,26539,28139,28441, 8105,29320, 1597, 1597, 1597, 1597, 1597, 1597, 1597,28321, 28586,28587,27928,27946, 9330,26540,29441, 8884,27915,28586, 28587,29367,29263,27916,26850,27947, 9331,29512,29724, 566, 270,29696, 1606, 1597, 1597,29713,29375,27501,27502,28140, 29363,26444,14117,28588,29646, 139, 139,29429, 8105, 139, 27917, 139,28588, 335, 9331, 1597, 1597,14117, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 139, 1597, 7776, 27503, 139,29369,12845,26444,12845,29398,28469,28589, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29726,28589,12845,29738, 139, 9335,28467,29348,29348,29348,29348,29348,29348,29348, 29348,29348,29348,29727,28468,29365,29386,29741,29376, 5685, 1597, 1597, 1597, 1597, 140, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29490, 1597, 7776,29442,14117,27945, 27945, 139,28586,28587,28139,28139, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9336,29739,29828, 139, 566, 9335,27946, 27946,28586,28587,28586,28587,29691,29542,29731, 6063,12845, 29704,27947,27947,26674,26676,28588, 5685, 1597, 1597, 1597, 1597, 566, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26396, 1597, 7776,28588, 434,28588,26400,26677,27330, 26733,28143,29371, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 28589,28809,29370, 257,29366, 9340,27949,26437,23744,23323, 434,14117,29364,26441,26734, 3742,26848,26538,27950,28589, 28709,28589, 139, 5685, 1597, 1597, 1597, 1597, 257, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29524, 1597, 7776,23324,12845,28466, 464,28143,27372,26770,28469,26539, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9341,28143,29372, 27949, 139, 9340,28467,26455, 6058,26444,26540, 139, 6052, 26459,26771,27950,27949,29482,28468,29388,29466,29749, 270, 5685, 1597, 1597, 1597, 1597,27950, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29408, 1597, 7776,29411,26444, 28139,28565,27927,29502, 139,28439,28440, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29368,27946,29755, 139,29766, 9344, 29440, 139,28586,29401,28586,29402,28565,27947, 8884,29343, 29397,28440, 8884,28441,27928,29725,29416, 5685, 1597, 1597, 1597, 1597,27061, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,28122, 1597, 7776,28588, 6043,28588,28441, 8105, 27501,27502, 6040, 8105, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9345,28686, 6039,26774,29746, 9344,26455, 139,29744, 28586,28587,27915,26459, 8884,29589,26444,27916,29532,14117, 28589,29427,28589,27503, 5685, 1597, 1597, 1597, 1597,29549, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29733, 1597, 7776,28466,28588,27917, 8105,28143,28469, 139,26444, 12845, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27505,27736, 27945,27949,28467, 9347,29403,28139,29410,28466,27623,27064, 28707,28143,28469,27950,28468,27501,29432, 9348,28589,29428, 27946, 5685, 1597, 1597,29564, 139,27949,28467, 139,28586, 28587, 6020,27947,27065,29378,29439,23744,23323,27950,28468, 29406, 6016,29752, 139, 139, 9348, 1597, 1597,27503, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29409, 1597, 1597,27915,28588,29435,26426,26711,27916, 8884,14117,23324, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 733,29772,27026, 139, 139, 9350,27505,29776, 139, 139, 139, 139,26426, 29756,29443,29734,27917,29762,29456,23746,28589, 8105,12845, 1606, 1597, 1597, 1597, 1597,14117, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,26444, 1597, 1597, 9351, 9351, 9351, 9351, 9351, 9351, 9351, 9351, 9351, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29453,29531,12845,29383,29757, 9350, 139,29565,28586,28587,29759,27915,28565,28565,26444,28110, 27916,28440,28440,29750, 139,29758,29769, 1606, 1597, 7061, 1597, 1597,29630, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29431, 1597, 7776,28588,28143,27917,28441,28441, 28143,14117,27068,29712, 1597, 1597, 1597, 1597, 1597, 1597, 1597,27949, 5921, 5917, 139,27949, 9354, 139, 139,29450, 28586,28587,28707,27950,29478,29477,27915,27950,29452,27916, 28589,27916,12845,29754, 5685, 1597, 1597, 1597, 1597,14117, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29530, 1597, 7776,28466,28588,29483,28466,27917,28469,27917,28469, 28469, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9355,29463, 12845,29612,28467, 9354,28467,28467,29773,27501,27502,29457, 27915,29760,23744,23323,28468,27916,28468,28468,28589,29771, 139, 5685, 1597, 1597, 1597, 1597, 139, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29601, 1597, 7776,28466, 27503,27945,27917, 139,28469,23324,28139,29436, 1597, 1597, 1597, 1597, 1597, 1597, 1597,28717, 139,27945,29459,28467, 9357,27946,28139, 464,28466,27915, 703,27733,29407,28469, 27916,28468,29544,27947, 9358,27505,29765,27946, 5685, 1597, 1597, 139,29789,29474,28467,28597,29467,28140,28565,27947, 8884,29526, 5887,28440, 5883,29437,28468,27917, 270, 473, 29775, 464, 9358, 1597, 1597, 4476, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 4478, 1597, 5683,29817, 139, 28441, 8105, 139, 8884,29438,14117,29460, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 139,29785, 270, 139,29498, 9362, 9692, 8884, 139,28586,28587,29444,29444,29444,29444,29444, 29444,29444,29444,29444, 8105,29500,12845, 5685, 1597, 1597, 1597, 1597,29577, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 8105, 1597, 5683,27945,28588,27945,28143,29600, 28139,29638,28139,28143, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9363,29792,27949,29786,27946, 9362,27946,27949,29804, 27501,27502,23744,23323,29761,27950,29481,27947,29541,27947, 27950,28589, 139,28440, 5685, 1597, 1597, 1597, 1597, 5814, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 139, 1597, 1597,29838,27503,29510,23324,23744,23323,29777,14117, 28441, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 139,29461, 29462,29464, 139, 9367, 139,14117, 5757,28586,28587,29468, 29468,29468,29468,29468,29468,29468,29468,29468,27505,23324, 12845, 1606, 1597, 1597, 1597, 1597,29491, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12845, 1597, 1597,28466, 28588,27945,29486,28143,28469,29514,28139,28139, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 9368, 139,29578,27949,28467, 9367,27946,27946, 139,27915,29501,29504,29783,28110,27916, 27950,28468,29790,27947,27947,28589, 139,29621, 1606, 1597, 1597, 2555, 2555, 139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29488, 2555, 7133,27917,29484,28143,27945, 29576,23744,29579,28143,28139, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29768,27949,29485, 139, 140, 9408,27949,27946, 531,28565,28586,28587,28565,27950,28440,29806,29816,28440, 27950,27947,29794, 5587,23324, 7135, 2555, 2555, 2555, 2555, 566, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 5572, 2555, 7133,28441, 139,28588,28441, 5568,28586,28587, 29508, 139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9409, 139,29487, 139,29784, 9408,28565, 139,23744,23323,28439, 28440,29492,29492,29492,29492,29492,29492,29492,29492,29492, 29525,28588, 7135, 2555, 2555, 2555, 2555,29522, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28441, 2555, 9412, 23324,29511,27915,28565, 5554,28143,29823,27916,28440, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28589,28709,29791,29499, 27949, 9413,29543,29798,29787,23744,23323, 139,23744,29622, 23744,23323,27950,28565,27917,28441,28686,29551,28440, 7135, 2555, 2555, 2555, 2555, 139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28466, 2555, 9412,28466,23324,28469, 29521,23324,28469,23324,14117,28441, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9414,28467,29774,29523,28467, 9413,27915, 139,29793, 139,27915,27916, 139,28468, 139,27916,28468, 29591,29557,29533, 139, 139,12845, 7135, 2555, 2555, 2555, 2555, 139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27917, 2555, 9412,27945,27917, 139,28466, 566,28139, 139,29507,28469, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29832,29527,29590, 139,27946, 9417, 5553,28467,29799, 139, 29802,29826,28565,28565, 3521,29539,27947,28440,28440,28468, 29815,29813,29556, 7135, 2555, 2555, 2555, 2555,29795, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27945, 2555, 9412,28466,29529,28139,28441,28441,28469, 5545,29818, 139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9418,27946,29797, 29528,28467, 9417,15414,14117,23322,23323,28586,29559,27915, 27947,28565,29558,28468,27916,28439,28440,29805,29801,29572, 7135, 2555, 2555, 2555, 2555,29540, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12845, 2555, 9412,23324, 566, 28588,27917, 139,28441, 139, 139, 5544, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29545,29424,29803, 139, 139, 9420, 27916, 9421, 139, 139, 3505,23746,29425,29425,29425,29425, 29425,29425,29425,29425,29425,28589, 139, 9422, 9423, 9423, 5536,29584,28686,29833,29836, 139, 566,27917, 9424, 2555, 2555, 139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29546, 2555, 7133,28466,28143,28469,27945,28143,28469, 29808,28143,28139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 27949,28467, 5535,27949,28467, 9430,27949,27946,29822,29819, 29811,29820,27950,28468, 139,27950,28468,29812,27950,27947, 29824,29831, 3493, 7135, 2555, 2555, 2555, 2555, 139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27945, 2555, 7133,23744,23323,28139,27915,29560,28143,29548, 139,27916, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9431,27946,29563, 29562,27949, 9430,28565, 5530,28586,28587,29573,28440, 139, 27947, 139,27915,27950,23324, 139,27917,27916,29829,29835, 7135, 2555, 2555, 2555, 2555,29825, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28441, 2555, 7133,28588,29827, 566,23744,23323, 5529,27917,29547,29834, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29610,29566, 566,29571, 335, 9435, 29837, 566, 5522,28586,28587,28707, 566, 5517, 5511, 610, 28565, 5507,29585,28589,23324,28440, 566, 7135, 2555, 2555, 2555, 2555, 5407, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28466, 2555, 7133,28466,28588,28469,27945,28143, 28469, 566,28441,28139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9436,28467,29613,27949,28467, 9435, 5395,27946, 5391, 566, 5381, 5377, 566,28468, 5368,27950,28468, 5364, 566, 27947,28589, 5359, 5355, 7135, 2555, 2555, 2555, 2555, 566, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28466, 2555, 7133, 5350,29574,28469,28143,29620,23744,23323,28143, 29575, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 5346,28467, 27949, 566, 335, 9440,27949, 3347, 5333, 5331, 3954, 3954, 5206,28468,27950, 733, 5203, 733,27950, 485, 5180, 703, 23324, 7135, 2555, 2555, 2555, 2555, 5177, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29588, 2555, 7133,28565, 703,29653,27945, 454,28440, 140,29586,28139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9441,29602, 5129, 140,24121, 9440,28565,27946, 5044, 5040, 5038,28440, 4355, 2523, 4962, 531,28441, 4900, 566,27947, 4888, 566, 4868, 7135, 2555, 2555, 2555, 2555, 4864, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28441, 2555, 7133,27945, 566,29587,28466, 28143,28139, 4854,28143,28469, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29596, 4850, 566,27949,27946, 9444,27949,28467, 4841, 4837, 566, 4832, 4828, 566, 4823,27950,27947, 4819, 27950,28468, 566,29607, 335, 7135, 2555, 2555, 2555, 2555, 610, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29598, 2555, 7133,29702, 4812,27945,28466, 4728, 4717, 566, 28139,28469, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9445, 28143,29667,29597, 4714, 9444,27946,28467, 2818, 2816, 4706, 566, 4703, 2804, 2802, 4698,27949, 566,27947,28468, 4695, 2792, 566, 7135, 2555, 2555, 2555, 2555,27950, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9446, 2555, 7133, 27945,29509, 4688,29688,28143,28139, 4681,28143,29608, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9446, 4667,29609,27949, 27946, 9448,27949,29629, 4666, 4664, 4663, 4648, 4645, 4644, 4643,27950,27947, 4636,27950, 4635, 4634, 4633, 3961, 7135, 2555, 2555, 9446, 9446, 2555, 2555,28140, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29599, 2555, 2555,27945, 28143,28466,28466,28143,28139, 4632,28469,28469, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27949, 4631, 4627,27949,27946, 9450,28467,28467, 3290, 3290, 4530, 4496,27950, 140, 4412, 27950,27947, 4371,28468,28468, 4368, 3707, 4355, 2564, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,27945, 2555, 2555,29627,29618,28139,28466, 29723,29619,29637,28143,28469, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9451,27946, 4283, 4274, 1981, 9450,27949,28467, 531, 4217, 4200, 140, 4182,27947, 566, 4179, 2408, 2406, 27950,28468, 4171, 566, 4168, 2564, 2555, 2555, 2555, 2555, 2394, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 27945, 2555, 7133,28466, 2392,28139, 4163, 566,28469, 4160, 2382,29628, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 566, 27946,29709,29635,28467, 9455, 4153, 4146, 610, 4135, 4048, 4032, 4020,27947, 4010, 566,28468, 335, 3989, 3988, 3972, 3932, 3929, 7135, 2555, 2555, 2555, 2555, 3928, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29644, 2555, 7133, 3927, 3920,28139,29645, 3919,29643, 3918,29636,28143, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9456,27946, 3917, 3297, 3916, 9455, 3915,27949, 3914, 3913, 3861, 733, 485,27947, 3831, 703, 454, 3811, 3810,27950, 3761, 1628, 3707, 7135, 2555, 2555, 2555, 2555, 3659, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28466, 2555, 7133,29665, 3655,28469, 27945, 3653,28469, 3055, 3621,28139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 531,28467, 3565, 3523,28467, 9459, 3507, 27946, 3495, 3485, 610, 3471, 3398,28468, 1839, 1837,28468, 3387, 1827,27947, 1409, 3269, 1285, 7135, 2555, 2555, 2555, 2555, 3071, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,28466, 2555, 7133,29659, 3068,28469, 2545, 3055, 1597, 3020,28143,29651, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9460,28467, 3004, 3000, 2998, 9459,27949, 2471, 531, 2973, 610, 2885, 566,28468, 335, 2773, 2678, 733,27950, 485, 2647, 703, 454, 7135, 2555, 2555, 2555, 2555, 2566, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9461, 2555, 7133,28466,29561, 2545,27945,28143,28469, 2494,29658,28139, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 9461,29695, 2487, 27949,28467, 9463, 2484,27946, 2003, 2471, 1225, 531, 2445, 610, 2367,27950,28468, 2302, 1110,27947, 1739, 1730, 1672, 7135, 2555, 2555, 9461, 9461, 2555, 2555,28597, 2555, 4342, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29730, 2555, 2555, 29680, 2103,29681, 2089, 2050,28139, 2009,28143,28143, 9467, 2555, 2555, 2555, 2555, 2555, 2555, 2003,29666, 531, 1964, 27946, 3682,27949,27949, 610, 1895, 1739, 1730, 1728, 733, 485, 468,27947, 459,27950,27950, 1695, 703, 454, 2564, 2555, 2555, 139, 139, 1672, 139, 836, 139, 139, 139, 139, 139, 139, 139,28466, 139, 139,29660,28143,28469, 1616, 1610, 1596, 531, 1563, 140, 139, 139, 139, 139, 139, 139, 139,27949,28467,27915, 610, 1506, 572,28110, 27916, 1291, 1275, 1261, 222,27950,28468,29395,29395,29395, 29395,29395,29395,29395,29395, 1244, 139, 139, 139, 1242, 28597, 531, 1217, 1197, 610, 1156,29716,27917,29506, 1152, 860, 9486, 139, 139, 1139, 139, 836, 139, 139, 139, 139, 139, 139, 139, 846, 139, 139, 562, 563, 1086, 1081, 1044, 1042, 263, 946, 923, 139, 139, 139, 139, 139, 139, 139, 531, 916,29424, 610, 864, 572, 179, 27916, 860, 846, 803, 794, 513,29425,29425,29425,29425, 29425,29425,29425,29425,29425,27945, 139, 139, 139, 511, 28139, 507, 673, 145, 9487, 139, 139,27917, 139, 139, 139, 139, 139, 139, 139,27946, 139, 139, 139,27945, 29700, 645, 643,29687,28139,28469, 637,27947, 639, 139, 139, 139, 139, 139, 139, 139, 531, 636, 610,27946, 28467, 9500, 598, 588, 575, 565, 564, 563, 140,29673, 513,27947,28468, 511, 296, 293, 455, 408, 407, 139, 139, 139, 139, 139, 139,28140, 139, 139, 139, 139, 139, 139, 139, 9499, 139, 139, 139, 9499, 9501, 9501, 9501, 9501, 9501, 9501, 9501, 9501, 9501, 139, 139, 139, 139, 139, 139, 139, 9501, 9501, 9501, 9501, 9501, 9502, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 139, 139, 139, 139, 9501, 9501, 9501, 9501, 9501, 9501, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 139, 139, 386, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 139, 139, 9505, 9506, 9507, 9508, 9508, 9508, 9508, 9508, 9508, 139, 139, 139, 139, 139, 139, 139, 536, 536, 536, 536, 536, 537, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 139, 139, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 139, 139, 406, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 8699, 139, 7934, 7934, 7934, 7934, 7934, 7934, 7934, 7934, 7934, 139, 139, 139, 139, 139, 139, 139, 151, 151, 151, 151, 151, 314, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139, 139, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 9509, 9510, 9510, 9510, 9510, 9510, 9510, 9510, 9510, 8710,28143, 405, 404, 403, 386, 386, 9510, 9510, 9510, 9510, 9510, 9511, 402, 401, 400,27949, 386, 399, 398, 397, 392, 396, 395, 392, 391, 390, 389,27950, 388, 386, 387, 386, 384, 9510, 9510, 9510, 9510, 9510, 9510, 9512, 9513, 9513, 9513, 9513, 9513, 9513, 9513, 9513, 9514,29674, 364, 342, 140, 297, 296, 9513, 9513, 9513, 9513, 9513, 9515, 243, 242, 241, 237, 236, 215, 214, 213, 212, 206, 205, 140,29840, 136, 136, 135, 135, 134, 134, 133, 133, 9513, 9513, 9513, 9513, 9513, 9513, 9518, 9519, 9519, 9519, 9519, 9519, 9519, 9519, 9519, 9520, 132, 132, 131, 131, 130, 329, 9519, 9519, 9519, 9519, 9519, 9521, 130, 129, 129, 128, 128, 127, 127, 126, 126, 125, 125, 124, 124, 123, 123, 122, 122, 121, 121, 120, 120, 9519, 9519, 9519, 9519, 9519, 9519, 9526, 9527, 9527, 9527, 9527, 9527, 9527, 9527, 9527, 7949,28466, 119, 119, 118, 118,28469, 9527, 9527, 9527, 9527, 9527, 9528, 117, 117, 110, 110,29840,29840,29840,29840,28467, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28468, 9527, 9527, 9527, 9527, 9527, 9527, 9530, 9531, 9531, 9531, 9531, 9531, 9531, 9531, 9531, 9532,29840,29840, 29840,29840,29840,29679, 9531, 9531, 9531, 9531, 9531, 9533, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9531, 9531, 9531, 9531, 9531, 9531, 9540, 9541, 9541, 9541, 9541, 9541, 9541, 9541, 9541, 8736,28466,29840,29840, 29840,29840,28469, 9541, 9541, 9541, 9541, 9541, 9542,29840, 29840,29840,29840,29840,29840,29840,29840,28467,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,28468, 9541, 9541, 9541, 9541, 9541, 9541, 9543, 9544, 9544, 9544, 9544, 9544, 9544, 9544, 9544,27945,28466,29840,29840,29840, 28139,28469, 9544, 9544, 9544, 9544, 9544, 9545,29840,29840, 29840,29840,29840,29840,29840,27946,28467,29840,29840,29840, 29686,29840,29840,29840,29840,29840,29840,27947,28468, 9544, 9544, 9544, 9544, 9544, 9546, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 313, 139, 29693,29840,29840,29701,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 329,29840,29475,27945,29840, 29840, 539,28440,28139,29840,29840,29840,29840,29476,29476, 29476,29476,29476,29476,29476,29476,29476,29840,27946, 139, 139, 139, 322,29840,29840,29840,29840,29840,28466,28441, 27947,27945,29707,28469,29840,29840,28139, 9552, 9564, 9565, 9565, 9565, 9565, 9565, 9565, 9565, 9565, 7987,28467,29840, 29840,27946,29840,29840, 9565, 9565, 9565, 9565, 9565, 9566, 28468,29840,29840,27947,29840,29840,29840,29840,29840,29840, 29694,29840,29840,29840,28597,29840,29840,29840,29840,29840, 29840, 9565, 9565, 9565, 9565, 9565, 9565, 9568, 9569, 9569, 9569, 9569, 9569, 9569, 9569, 9569, 9570,27945,29840,29840, 29840,29840,28139, 9569, 9569, 9569, 9569, 9569, 9571,29840, 29840,29840,29840,29840,29840,29840,29840,27946,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27947, 9569, 9569, 9569, 9569, 9569, 9569, 9573, 9573, 9573, 9573, 9573, 9573, 9573, 9573, 9573,28466,27945,29840,29840,29840, 28469,28139, 9573, 9573, 9573, 9573, 9573, 9574,29840,29840, 29840,29840,29840,29840,29840,28467,27946,29840,29840,29840, 29708,29840,29840,29840,29840, 4455,29840,28468,27947, 9573, 9573, 9573, 9573, 9573, 9575, 9578, 9579, 9579, 9579, 9579, 9579, 9579, 9579, 9579, 8767,27945,29840,29840,29840,29715, 28139, 9579, 9579, 9579, 9579, 9579, 9580,29840,29840,29840, 29840,29840,29840,29840,29840,27946,29840,29714,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27947, 9579, 9579, 9579, 9579, 9579, 9579, 9581, 9581, 9581, 9581, 9581, 9581, 9581, 9581, 9581,28466,28466,29840,29840,29840,28469,28469, 9581, 9581, 9581, 9581, 9581, 9582,29840,29722,29840,29840, 29840,29840,29840,28467,28467,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,28468,28468, 9581, 9581, 9581, 9581, 9581, 9583, 9588, 9589, 9589, 9589, 9589, 9589, 9589, 9589, 9589, 8779,28466,29840,29840,29840,29735,28469, 9589, 9589, 9589, 9589, 9589, 9590,29840,29840,29840,29840,29840, 29840,29840,29840,28467,29840,29840,29728,29840,29840,29840, 29840,29840,29840,29840,29840,28468, 9589, 9589, 9589, 9589, 9589, 9589, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591,28466,29840,29840,29840,29840,28469,29840, 9591, 9591, 9591, 9591, 9591, 9592,29840,29740,29840,29840,29840,29840, 29840,28467,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,28468,29840, 9591, 9591, 9591, 9591, 9591, 9593, 9599, 9600, 9600, 9600, 9600, 9600, 9600, 9600, 9600, 8793,29840,29840,29840,29840,29840,29840, 9600, 9600, 9600, 9600, 9600, 9601,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9600, 9600, 9600, 9600, 9600, 9600, 9602, 9602, 9602, 9602, 9602, 9602, 9602, 9602, 9602,27945, 29840,29840,29840,29840,28139,29840, 9602, 9602, 9602, 9602, 9602, 9603,29840,29840,29840,29840,29840,29840,29840,27946, 27945,29840,29840,29840,29840,28139,29840,29840,29840,29840, 29840,27947,29840, 9602, 9602, 9602, 9602, 9602, 9604, 8817, 27946, 7254, 7254, 7254, 7254, 7254, 7254, 7254, 7254, 7254, 7257,29840,27947,29840,29840,29840,29729, 7254, 7254, 7254, 7254, 7254, 7256,29840,29840,29840,28140,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29652,29840,29840, 29840,29840,29840,29840, 7254, 7254, 7254, 7254, 7254, 7254, 9613, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 8025, 29840,29840,29840,29840,29840,29840, 9614, 9614, 9614, 9614, 9614, 9615,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9614, 9614, 9614, 9614, 9614, 9614, 9617, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9619,29840, 29840,29840,29840,29840,29840, 9618, 9618, 9618, 9618, 9618, 9620,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9618, 9618, 9618, 9618, 9618, 9618, 9627, 9628, 9629, 9630, 9630, 9630, 9630, 9630, 9630,29840,29840,29840, 29840,29840,29840,29840, 7267, 7267, 7267, 7267, 7267, 7271, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7267, 7267, 7267, 7267, 7267, 7267, 9635, 9635, 9635, 9635, 9635, 9635, 9635, 9635, 9635, 6562,28466,29840,29840, 29840,29840,28469, 7264, 7264, 7264, 7264, 7264, 7265,29840, 29840,29840,29840,29840,29840,29840,29840,28467,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,28468, 7264, 7264, 7264, 7264, 7264, 7264, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 3791, 139,29840,29840,29840,29840,29721,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29475,29840, 3809,29840,29840,28440,29840,29840,29840,29840, 29840,29476,29476,29476,29476,29476,29476,29476,29476,29476, 4455, 139, 139, 3799, 246, 246,29840, 251, 449, 246, 246, 246,28441,29840, 246, 246, 246,29840,28466,28466, 29840,29840,29840,28469,28469,29840,29840,29840,29840, 246, 246, 246, 246, 246, 246,29840,29840,29840,28467,28467, 256,29840,29840,29840,29840,29840,29840,29840,29840,29840, 28468,28468,29840,29840,29840,29840,29840,29840, 257, 246, 246, 246, 246, 246,28597, 251, 449, 246, 246, 246, 29840,29840, 246, 246, 246,29672,29745,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 246, 246, 246, 246, 246, 246, 454,29840,29840,29840,29840, 256,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 257, 246, 246, 246, 2648,29840, 7285, 7285, 7285, 7285, 7285, 7285, 7285, 7285, 7285, 5885,29840,29840,29840,29840,29840,29840, 7285, 7285, 7285, 7285, 7285, 7286,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7285, 7285, 7285, 7285, 7285, 7285, 265, 265,29840, 272, 480, 265, 265, 265,29840, 29840, 265, 265, 265,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 265, 265, 265, 265, 265, 265,29840,29840,29840,29840,29840, 277,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 265, 265, 265, 265,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 278, 265, 265,29840, 272, 480, 265, 265, 265,29840,29840, 265, 265, 265,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 265, 265, 265, 265, 265, 265, 485,29840,29840,29840,29840, 277, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 265, 265, 265, 265,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 278, 2679,29840, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 7311, 5919,29840,29840,29840, 29840,29840,29840, 7311, 7311, 7311, 7311, 7311, 7312,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7311, 7311, 7311, 7311, 7311, 7311, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 1769,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9719,29840,29840, 1770,29840, 2204,29840, 29840,29840,29840, 1771,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777,29840,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 3291,29840, 3292,29840,29840,29840,29840,29840, 29840, 1768,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3293,29840,29840,29840, 29840,29840,29840, 3294,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3295,29840, 3296, 3297, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302,29840, 3303,29840, 9720,29840, 3305, 3306, 3307, 1769,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1770,29840,29840,29840,29840,29840, 29840, 1771,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777,29840, 29840, 1778,29840, 9721,29840, 1780,29840, 1781, 1782, 1783, 1769,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1770,29840,29840,29840,29840,29840,29840, 1771, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840, 29840, 2214, 1776,29840,29840,29840, 2215,29840,29840, 1778, 29840, 1779,29840, 9722,29840, 1781, 1782, 1783, 3291,29840, 3292,29840,29840,29840,29840,29840,29840, 1768,29840,29840, 29840,29840,29840,29840,29840, 9725,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3293,29840, 3914,29840,29840,29840,29840, 3294, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840, 29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302, 29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 2223,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2224,29840, 29840,29840,29840, 9730,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234, 29840, 2235,29840, 2236, 2237, 2238, 2223,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2224,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2225,29840, 29840,29840,29840,29840,29840, 2226,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 9731,29840, 29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235, 29840, 2236, 2237, 2238, 2223,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2224,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2225,29840,29840,29840, 29840,29840,29840, 2226,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 9732,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 8137,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840, 29840, 8141,29840,29840,29840,29840,29840, 9733,29840,29840, 29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840, 29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840, 29840, 9734, 8147,29840,29840,29840, 8930,29840,29840, 8149, 29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8142,29840, 8143,29840, 8145,29840, 8922, 8146, 8147,29840,29840,29840, 8148,29840, 9735, 8149,29840, 8150, 29840, 8151,29840, 8152, 8153, 8154, 9755,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2224,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2225,29840, 29840,29840,29840,29840,29840, 2226,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840, 29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235, 29840, 2236, 2237, 2238, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222,29840,29840, 3956,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9756,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840, 29840,29840, 3965,29840, 4643, 3966,29840, 3967,29840, 3968, 29840, 3969, 3970, 3971, 2223,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2224,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2225,29840,29840,29840, 29840,29840,29840, 2226,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840, 9757, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 2754, 3291,29840, 9759,29840,29840,29840,29840, 29840,29840, 2222,29840,29840, 3956,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 3957,29840,29840, 29840,29840,29840,29840, 3958,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959, 29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840, 29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 139, 139,29840, 148, 149, 139, 139, 139, 150, 150, 139, 139, 139, 2840, 150, 7416, 7416, 7416, 7416, 7416, 7416, 7416, 7416, 7416, 6054, 139, 139, 139, 139, 139, 139, 7416, 7416, 7416, 7416, 7416, 7417, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 139, 139, 139, 139, 7416, 7416, 7416, 7416, 7416, 7416, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,29840, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150,29840,29840, 29840,29840,29840, 329, 150, 150, 150, 150, 150, 162, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 150, 150, 150, 150, 150, 150, 2840,29840, 7453, 7453, 7453, 7453, 7453, 7453, 7453, 7453, 7453, 6103,29840, 29840,29840,29840,29840,29840, 7453, 7453, 7453, 7453, 7453, 7454,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7453, 7453, 7453, 7453, 7453, 7453, 139, 139, 29840, 148, 149, 139, 139, 139, 150, 9781, 139, 139, 151, 330, 150, 561, 561, 561, 561, 561, 561, 561, 561, 561, 150, 139, 139, 139, 139, 139, 329, 544, 544, 544, 544, 544, 545, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139, 139, 139, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 4756,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9792,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 4756,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139, 9793, 29840,29840,29840,29840, 9792,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 9797,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9798,29840,29840,29840,29840, 9797,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9802,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9803,29840,29840, 29840,29840, 9802,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9807, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9808,29840,29840,29840,29840, 9807,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840, 9812,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9813,29840,29840,29840,29840, 9812,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9817,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139, 9818, 29840,29840,29840,29840, 9817,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 9821,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9822,29840,29840,29840,29840,29840,29840, 2866, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9822, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9824,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139, 9825, 29840,29840,29840,29840, 9824,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 9827,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9828,29840,29840,29840,29840, 9827,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9833,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9834,29840,29840, 29840,29840, 9833,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9838, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9839,29840,29840,29840,29840, 9838,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840, 9842,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9843,29840,29840,29840,29840,29840, 29840, 2866, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9843, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9845, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9846,29840,29840,29840,29840, 9845,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 203, 139, 139, 139, 139, 139, 139, 9850, 9850, 9850, 9850, 9850, 9851, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 9849, 9849, 9849, 9849, 9849, 9849, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9850, 9850, 9850, 9850, 9850, 9850, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,29840, 139, 139, 139, 139, 139, 139, 9032, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 8284,29840,29840, 9854,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840, 9857,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 9858, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 9855, 9856, 8356, 9859, 9860, 9860, 9860, 9860, 9860, 9860, 9860, 9860, 8339, 139, 139, 139, 139, 139, 139, 9860, 9860, 9860, 9860, 9860, 9861, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 8358, 139, 139, 9858, 9860, 9860, 9860, 9860, 9860, 9860, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840, 9863,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9867,29840,29840,29840, 29840, 9857,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9858, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9869, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9870, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9871,29840,29840,29840,29840, 9869,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 9870, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9873,29840, 9874,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8403, 8404, 8404, 9875,29840,29840,29840, 29840,29840,29840,29840, 9876, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 9877,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7584, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 9882, 9882, 9882, 9882, 9882, 9882,29840,29840,29840, 9881, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9885,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 9886, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 9884, 9856, 8356, 9887, 9888, 9888, 9888, 9888, 9888, 9888, 9888, 9888, 8339, 139, 139, 139, 139, 139, 139, 9888, 9888, 9888, 9888, 9888, 9889, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 8358, 139, 139, 9886, 9888, 9888, 9888, 9888, 9888, 9888, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9891,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139, 9894,29840, 29840,29840,29840, 9885,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 9886, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 9896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9897, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9898,29840,29840,29840,29840, 9896, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9897, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9900,29840, 9901, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8403, 8404, 8404, 9902,29840, 29840,29840,29840,29840,29840,29840, 9903, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840, 9904,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 7590, 139, 139, 139, 139, 139, 139, 139,29840, 344, 139, 9906, 9906, 9906, 9906, 9906, 9906,29840,29840,29840, 9881, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 345,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 176, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 165, 139, 9907, 9907, 9908, 29840,29840,29840,29840,29840,29840, 1137, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 842,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 843, 139, 139,29840, 139, 8301, 139, 139, 139, 139, 139, 7585, 139, 9070, 165, 139, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 1137, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 842,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9072, 139, 139, 139, 843, 139, 139, 29840, 9909, 149, 139, 139, 139,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840, 9910,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 146, 139, 139, 139, 352,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9849, 9849, 9849, 9849, 9849, 9849, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 9917, 9917, 9917, 9917, 9917, 9917, 9917, 9917, 9917,29840,29840,29840,29840,29840,29840, 29840, 9917, 9917, 9917, 9917, 9917, 9918,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9917, 9917, 9917, 9917, 9917, 9917, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9921,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9127, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9922,29840,29840,29840,29840, 9921,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9127, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9923,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 9084, 8332, 139, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 139, 139, 139, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9086, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9926,29840,29840,29840,29840, 9139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840, 9928,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9929,29840,29840,29840, 29840,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9929, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 9931,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9932, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9933,29840,29840,29840,29840, 9931, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9932, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9934,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 9935, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840, 9923,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 9940, 9941, 9941, 9941, 9941, 9941, 9941, 9941, 9941, 8339,29840,29840,29840,29840, 29840,29840, 9941, 9941, 9941, 9941, 9941, 9942,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9941, 9941, 9941, 9941, 9941, 9941, 9944, 9945, 9945, 9945, 9945, 9945, 9945, 9945, 9945, 9946,29840,29840,29840,29840,29840, 29840, 9945, 9945, 9945, 9945, 9945, 9947,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9945, 9945, 9945, 9945, 9945, 9945, 8334,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9949, 9950, 9950, 9950, 9950, 9950, 9950, 9950, 9950,29840,29840,29840,29840,29840,29840, 29840, 9950, 9950, 9950, 9950, 9950, 9951,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9950, 9950, 9950, 9950, 9950, 9952, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9955,29840,29840,29840,29840, 9934,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9957, 9958, 9958, 9958, 9958, 9958, 9958, 9958, 9958, 9959,29840,29840,29840,29840,29840,29840, 9958, 9958, 9958, 9958, 9958, 9960,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9958, 9958, 9958, 9958, 9958, 9958, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9967,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 9968, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139, 9969, 29840,29840,29840,29840, 9967,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 9968, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840, 9970,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9973, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9974, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9975,29840,29840,29840,29840, 9973,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 9974, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9977, 9978,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 9979,29840,29840,29840, 29840,29840,29840, 9978, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9980,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9982, 9983,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 9984,29840, 29840,29840,29840,29840,29840, 9983, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9985,29840,29840, 29840,29840, 9970,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9988, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 9989, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9990,29840,29840,29840,29840, 9988,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 9989, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9991,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840, 9993,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9994,29840,29840,29840,29840, 9993, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9996,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9997,29840, 29840,29840,29840,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9997, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 140,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10000,29840, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10001,29840,29840, 29840,29840, 9991,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10002,29840,29840,29840,29840, 9134, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 8360, 7621, 139, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 139, 139, 139, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8362, 8361, 8361, 10003, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 10008,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,10010,29840,29840,29840,29840,10008,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,10012,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10013,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,10014,29840,29840,29840, 29840,10013,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10017,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 10018,29840,29840,29840,29840,10017,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10020,29840,10021,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10022,10023,10023,29840,29840,29840,29840,29840,29840,29840, 29840,10024, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10026,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,10027, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10028,29840,29840,29840,29840,10026,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,10027, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10029,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10031,29840,29840,29840, 29840,10029,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 9151, 139, 8373, 8373, 8373, 8373, 8373, 8373, 8373, 8373, 8373, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9134,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 10036,10037,10037,10037,10037,10037,10037,10037,10037, 9162, 29840,29840,29840,29840,29840,29840,10037,10037,10037,10037, 10037,10038,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10037,10037,10037,10037,10037,10037,10039, 10040,10040,10040,10040,10040,10040,10040,10040,10041,29840, 29840,29840,29840,29840,29840,10040,10040,10040,10040,10040, 10042,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10040,10040,10040,10040,10040,10040, 7624,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10045, 10046,10046,10046,10046,10046,10046,10046,10046,10047,29840, 29840,29840,29840,29840,29840,10046,10046,10046,10046,10046, 10048,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10046,10046,10046,10046,10046,10046,10055,10056, 10056,10056,10056,10056,10056,10056,10056, 9175,29840,29840, 29840,29840,29840,29840,10056,10056,10056,10056,10056,10057, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10056,10056,10056,10056,10056,10056,10058,10059,10059, 10059,10059,10059,10059,10059,10059,29840,29840,29840,29840, 29840,29840,29840,10059,10059,10059,10059,10059,10060,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10059,10059,10059,10059,10059,10061, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,10066, 139, 139,29840,29840,29840, 29840,29840, 9182,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,10066, 139, 139,10067,29840,29840,29840,29840, 9182,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8392, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 7639,29840, 29840,29840,29840,29840,10068,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10071,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,10072, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,10073, 29840,29840,29840,29840,10071,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,10072, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10074,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10076,29840,29840,29840,29840,10074, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10079,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,10080, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,10081, 29840,29840,29840,29840,10079,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,10080, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10082,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10085, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 10086, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10087,29840,29840,29840,29840,10085,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,10086, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,10089,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10090, 29840,29840,29840, 8358, 139, 139,10091,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10090, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10092,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,10094,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,10095,10095,10095, 10095,10095,10095,10095,10095,10095, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10094,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139,10000, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 10097,29840,29840,29840,29840,10082,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10099,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,10100, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10101,29840,29840,29840,29840, 10099,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,10100, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10103,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10104,29840,29840,29840, 8358, 139, 139,10105, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10104, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10106,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10109,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,10111,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10112,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10112, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10113,29840,29840,29840,29840,10109,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,10118,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10119,29840,29840, 29840,29840,10118,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10122, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10123,29840,29840,29840,29840,10122,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,10125,10126,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211,29840,29840,29840,29840,29840,29840, 29840,10126, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10128,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,10114, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,10128,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10130,10131,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211,29840,29840,29840,29840,29840,29840,29840, 10131, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9991,29840,29840, 29840,29840,29840,10132,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10026,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,10027,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10133,10143,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10144, 10144,10144,10144,10144,10144,10144,10144,10144,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1572,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10143,29840,29840,29840,29840, 1234, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 4935,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840,29840,29840,29840,29840,10147,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 4935,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10148,29840,29840, 29840,29840,10147,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,10152, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10153,29840,29840,29840,29840,10152,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840, 29840,29840,29840,10157,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10158,29840,29840,29840,29840, 10157,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,10162,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10163, 29840,29840,29840,29840,10162,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840, 29840,10166,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10167,29840,29840,29840,29840,10166,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840,29840,29840,29840,29840,10169,10170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,10170, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840, 10172,10172,10172,10172,10172,10172,10172,10172, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 10173,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,10173,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,10175,10176,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,10176, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,10178, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10179,29840,29840,29840,29840,10178,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840, 29840,29840,29840,10183,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10184,29840,29840,29840,29840, 10183,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,10188,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 6967,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10189, 29840,29840,29840,29840,10188,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840, 29840,10193,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10194,29840,29840,29840,29840,10193,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840,29840,29840,29840,29840,10197,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10198,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10198, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840, 29840,10200,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10201,29840,29840,29840,29840,10200,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840,29840,29840,29840,29840,10203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10204,29840,29840, 29840,29840,10203,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,10209, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10210,29840,29840,29840,29840,10209,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840, 29840,29840,29840,10214,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10215,29840,29840,29840,29840, 10214,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,10218,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10219,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10219, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840, 29840,29840,29840,10221,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10222,29840,29840,29840,29840, 10221,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 139, 139,29840, 139, 836, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10231, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 29840, 2012, 2012,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2012, 2012, 2012, 2012, 2012, 2012, 2012,29840, 29840,29840,29840,29840, 2501,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2012, 2012, 2012,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10235,10242,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10243,10243,10243,10243,10243,10243,10243,10243, 10243,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2023,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10242,29840,29840,29840, 29840, 1606, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 5683,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,10248,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 5683,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 10249,29840,29840,29840,29840,10248,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,10253,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10254,29840,29840,29840,29840,10253, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,10257,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10258,29840, 29840,29840,29840,10257,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 10261,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10262,29840,29840,29840,29840,10261,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,10264,29840,10265,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10266,10267,10267,29840,29840,29840,29840,29840, 29840,29840,29840,10268, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 10271,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10272,29840,29840,29840,29840,10271,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,10276,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10277,29840,29840,29840, 29840,10276,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,10281,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 10282,29840,29840,29840,29840,10281,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,10285,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10286,29840,29840,29840,29840,10285, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10287, 1597, 7776,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10287,29840,29840,29840,29840,10289,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597,10287,10287, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840,29840,29840,29840,29840,10291,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10292,29840,29840, 29840,29840,10291,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,10296, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10297,29840,29840,29840,29840,10296,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,10300,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10301,29840,29840,29840,29840, 10300,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10302, 1597, 7776,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10302,29840,29840,29840,29840,10304,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597,10302,10302, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 5683,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,10248,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 5683,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,10249,29840, 29840,29840,29840,10248,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 5683, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2023,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685,29840, 7061, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,10333,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10334,29840,29840,29840,29840, 10333,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,10338,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,10340,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10341,29840,29840,29840, 29840,29840, 2564, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10341, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10342,29840,29840,29840, 29840,10338,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,10346,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 10347,29840,29840,29840,29840,10346,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,10350,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10351,29840,29840,29840,29840,10350, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,10353,10354,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,10354, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 29840,10356,10356,10356,10356,10356,10356,10356,10356, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,10357,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,10357,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,10359,10360,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,10360, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 10365,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10366,29840,29840,29840,29840,10365,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,10370,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10371,29840,29840,29840, 29840,10370,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,10375,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 10376,29840,29840,29840,29840,10375,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,10380,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10381,29840,29840,29840,29840,10380, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,10384,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10385,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10385, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,10387,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10388,29840,29840,29840,29840,10387, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,10390,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10391,29840, 29840,29840,29840,10390,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 10396,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10397,29840,29840,29840,29840,10396,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,10401,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10402,29840,29840,29840, 29840,10401,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,10405,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10406, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10406, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,10408,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,10409,29840,29840,29840, 29840,10408,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 139, 139,29840, 139, 836, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10430, 139, 139,29840, 139, 836, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139,29840,29840, 29840,29840,10431, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10444, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10445,29840,29840,29840,29840,10444,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 313, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 329, 29840,29840,29840,29840,29840, 314,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 313, 139,10449,10449,10449,10449,10449,10449,10449,10449, 10449, 139, 139, 139, 139, 139, 139, 329,29840,29840, 29840,29840,29840, 314,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139,10453,10454,10454,10454,10454, 10454,10454,10454,10454, 8710,29840,29840,29840,29840,29840, 29840,10454,10454,10454,10454,10454,10455,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10454,10454, 10454,10454,10454,10454,10457,10458,10458,10458,10458,10458, 10458,10458,10458,10459,29840,29840,29840,29840,29840,29840, 10458,10458,10458,10458,10458,10460,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10458,10458,10458, 10458,10458,10458,10462,10463,10463,10463,10463,10463,10463, 10463,10463,29840,29840,29840,29840,29840,29840, 329,10463, 10463,10463,10463,10463,10464,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10463,10463,10463,10463, 10463,10465,10468,10469,10469,10469,10469,10469,10469,10469, 10469, 9520,29840,29840,29840,29840,29840,29840,10469,10469, 10469,10469,10469,10470,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10469,10469,10469,10469,10469, 10469,10471,10472,10472,10472,10472,10472,10472,10472,10472, 29840,29840,29840,29840,29840,29840,29840,10472,10472,10472, 10472,10472,10473,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10472,10472,10472,10472,10472,10474, 10479,10480,10480,10480,10480,10480,10480,10480,10480, 9532, 29840,29840,29840,29840,29840,29840,10480,10480,10480,10480, 10480,10481,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10480,10480,10480,10480,10480,10480,10482, 10483,10483,10483,10483,10483,10483,10483,10483,29840,29840, 29840,29840,29840,29840,29840,10483,10483,10483,10483,10483, 10484,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10483,10483,10483,10483,10483,10485,10491,10492, 10492,10492,10492,10492,10492,10492,10492, 8736,29840,29840, 29840,29840,29840,29840,10492,10492,10492,10492,10492,10493, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10492,10492,10492,10492,10492,10492,10495,10496,10496, 10496,10496,10496,10496,10496,10496,10497,29840,29840,29840, 29840,29840,29840,10496,10496,10496,10496,10496,10498,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10496,10496,10496,10496,10496,10496,10505,10506,10507,10508, 10508,10508,10508,10508,10508,29840,29840,29840,29840,29840, 29840,29840, 7959, 7959, 7959, 7959, 7959, 7963,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7959, 7959, 7959, 7959, 7959, 7959, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 313, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 329,29840,29840,29840,29840, 29840, 539,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 322,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10509,10522,10523,10523,10523,10523,10523,10523,10523, 10523, 9570,29840,29840,29840,29840,29840,29840,10523,10523, 10523,10523,10523,10524,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10523,10523,10523,10523,10523, 10523,10525,10525,10525,10525,10525,10525,10525,10525,10525, 10526,29840,29840,29840,29840,29840,29840,10525,10525,10525, 10525,10525,10527,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10525,10525,10525,10525,10525,10528, 10531,10531,10531,10531,10531,10531,10531,10531,10531,10532, 29840,29840,29840,29840,29840,29840,10531,10531,10531,10531, 10531,10533,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4455, 29840,29840,29840,10531,10531,10531,10531,10531,10531,10537, 10538,10538,10538,10538,10538,10538,10538,10538, 8767,29840, 29840,29840,29840,29840,29840,10538,10538,10538,10538,10538, 10539,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10538,10538,10538,10538,10538,10538,10541,10541, 10541,10541,10541,10541,10541,10541,10541,10542,29840,29840, 29840,29840,29840,29840,10541,10541,10541,10541,10541,10543, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10541,10541,10541,10541,10541,10541,10549,10550,10550, 10550,10550,10550,10550,10550,10550, 8779,29840,29840,29840, 29840,29840,29840,10550,10550,10550,10550,10550,10551,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10550,10550,10550,10550,10550,10550,10553,10553,10553,10553, 10553,10553,10553,10553,10553,10554,29840,29840,29840,29840, 29840,29840,10553,10553,10553,10553,10553,10555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10553, 10553,10553,10553,10553,10553,10561,10562,10563,10564,10564, 10564,10564,10564,10564,29840,29840,29840,29840,29840,29840, 29840, 8000, 8000, 8000, 8000, 8000, 8004,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8000, 8000, 8000, 8000, 8000, 8000,10565,10566,10566,10566,10566,10566, 10566,10566,10566, 8793,29840,29840,29840,29840,29840,29840, 10566,10566,10566,10566,10566,10567,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10566,10566,10566, 10566,10566,10566,10569,10569,10569,10569,10569,10569,10569, 10569,10569,10570,29840,29840,29840,29840,29840,29840,10569, 10569,10569,10569,10569,10571,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10569,10569,10569,10569, 10569,10569,10577,10578,10579,10580,10580,10580,10580,10580, 10580,29840,29840,29840,29840,29840,29840,29840, 8011, 8011, 8011, 8011, 8011, 8015,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8011, 8011, 8011, 8011, 8011, 8011, 8817,29840,10581,10581,10581,10581,10581,10581,10581, 10581,10581, 7257,29840,29840,29840,29840,29840,29840, 8008, 8008, 8008, 8008, 8008, 8009,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8008, 8008, 8008, 8008, 8008, 8008,10582,10583,10583,10583,10583,10583,10583,10583, 10583, 9619,29840,29840,29840,29840,29840,29840,10583,10583, 10583,10583,10583,10584,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10583,10583,10583,10583,10583, 10583,10585,10585,10585,10585,10585,10585,10585,10585,10585, 29840,29840,29840,29840,29840,29840,29840,10585,10585,10585, 10585,10585,10586,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10585,10585,10585,10585,10585,10587, 8024, 8024, 8024, 8024, 8024, 8024, 8024, 8024, 8024, 8027, 29840,29840,29840,29840,29840,29840, 8024, 8024, 8024, 8024, 8024, 8026,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8024, 8024, 8024, 8024, 8024, 8024, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 8020, 6562,29840, 29840,29840,29840,29840,29840, 8020, 8020, 8020, 8020, 8020, 8021,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8020, 8020, 8020, 8020, 8020, 8020, 5904,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10622, 10622,10622,10622,10622,10622,10622,10622,10622,29840,10622, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5905,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5906, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,10666,29840, 29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10667, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840, 29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840, 29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718,10668, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9707,29840, 9708,10669, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,29840, 9708,29840, 9709,29840,10670, 9710, 9711, 29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717,10671, 9704,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712, 29840,10672, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,29840, 9712,10673,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10674,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718,10675, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840,10676, 9711,29840,29840,29840,10677,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,29840,10678, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840, 29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718,10679, 9704,29840,29840,29840,29840,29840,29840, 29840,10680,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712, 29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840,10681, 29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 10682,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10683,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 1769,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1770, 29840,29840,29840,29840,29840,29840, 1771,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776, 29840,29840,10684, 1777,29840,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 3291,29840, 3292,29840,29840, 29840,29840,29840,29840, 1768,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3293, 29840,29840,29840,29840,29840,29840, 3294,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911, 29840,29840,29840, 3301,29840,10685, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 3928, 1769,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10686,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1770,29840, 29840,29840,29840,29840,29840, 1771,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840, 29840,29840, 1777,29840, 2216, 1778,29840, 1779,29840, 1780, 29840, 1781, 1782, 1783, 3291,29840, 3292,29840,29840,29840, 29840,29840,29840, 1768,29840,29840,29840,10689,10689,10689, 10689,10690,10689,10689,10689,10689,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3293,29840, 29840,29840,29840,29840,29840, 3294,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840, 29840,29840, 3301,29840,29840, 3302,29840, 3303,29840, 3304, 29840, 3305, 3306, 3307,10695,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10696,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10697,29840,29840,29840, 29840,29840,29840,10698,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10699,29840, 10700,29840,10701,29840,29840,10702,10703,29840,29840,29840, 10704,29840,29840,10705,29840,10706,29840,10707,29840,10708, 10709,10710, 2223,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2224,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2225,29840,29840,29840,29840,29840, 29840, 2226,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,10711, 29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 2223,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2224,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2225,29840,29840,29840,29840,29840,29840, 2226, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840, 29840, 2230, 2231,29840,29840,29840, 2232,10712,29840, 2233, 29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 8137,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840, 29840,29840,29840,10713,29840,29840,29840,29840,29840,29840, 29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150, 29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8140,29840, 29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840, 29840,29840, 8148,29840, 8925,10714,29840, 8150,29840, 8151, 29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,10734,10735,29840,29840,10736,10737,29840, 29840,29840,10738,29840,29840,10739,29840,10740,29840,10741, 29840,10742,10743,10744, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222,29840,29840, 3956,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959,29840, 3960, 3961, 3962,29840,29840, 3963, 4625,29840, 29840,29840, 3965,29840,29840, 3966,29840, 3967,29840,10754, 29840, 3969, 3970, 3971, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222,29840,29840, 3956,29840,29840,29840, 29840,10757,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 4627,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840, 29840,29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968, 29840, 3969, 3970, 3971, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,10760,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,10761,10735,29840,29840,10736,10762,29840, 29840,29840,10738,29840,29840,10739,29840,10740,29840,10741, 29840,10742,10743,10744, 139, 139,29840, 148,10778, 139, 139, 139,29840,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 162,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 4756,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9792,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 4756,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 9793,29840,29840,29840,29840, 9792,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10789,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10790,29840,29840,29840,29840,10789, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10794,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,10795,29840, 29840,29840,29840,10794,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 10799,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10800,29840,29840,29840,29840,10799,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10806,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,10808,10808,10808,10808,10808,10808,10808,10808,10808, 203, 139, 139, 139, 139, 139, 139,10809,10809,10809, 10809,10809,10810, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176,10808,10808,10808,10808,10808,10808, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10809,10809,10809,10809,10809,10809,10809,10809,10809,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10809,10809,10809,10809,10809,10809, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 9032, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840, 8284,29840,29840,29840,29840,29840, 10813,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10815,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,10816, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 9084, 139, 139,10817, 10817,10817,10817,10817,10817,10817,10817,10817, 139, 139, 139, 139, 139, 139, 139,10818,10818,10818,10818,10818, 10819,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818, 139, 139, 139, 139,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,10820,29840, 29840,29840,29840,10815,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,10816, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,10821,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,10822,10823,10823,10823,10823,10823,10823,10823, 10823, 8339,29840,29840,29840,29840,29840,29840,10823,10823, 10823,10823,10823,10824,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10823,10823,10823,10823,10823, 10823, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10827,29840,29840,29840,29840,10821,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10834,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,10835, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10836,29840,29840, 29840,29840,10834,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,10835, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 10837,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,10841, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 10842,29840,29840,29840,29840,10840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,10841, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,10844,10845,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,10846,29840,29840,29840,29840,29840, 29840,10845, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10847,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,10849,10850,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,10851,29840,29840,29840, 29840,29840,29840,10850, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10852,29840,29840,29840,29840, 10837,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 836, 139, 139, 139, 139, 139, 139, 139, 571, 139, 139, 7588, 7588, 7588, 7588, 7588, 7588, 7588, 7588, 7588, 139, 139, 139, 139, 139, 139, 139, 571, 571, 571, 571, 571, 572, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 139, 139, 139, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 571, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9088,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9089,29840,29840,29840,29840,29840, 1133, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9089, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10856,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,10857, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 10858,29840,29840,29840,29840,10856,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,10857, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,10859,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,10860,10861,10861,10861,10861,10861, 10861,10861,10861, 8339,29840,29840,29840,29840,29840,29840, 10861,10861,10861,10861,10861,10862,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10861,10861,10861, 10861,10861,10861, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10865,29840,29840,29840,29840,10859, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10868,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,10869, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,10870, 29840,29840,29840,29840,10868,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,10869, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10871,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10874, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 10875, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10876,29840,29840,29840,29840,10874,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,10875, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,10878,10879,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,10880,29840,29840,29840, 29840,29840,29840,10879, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 10881,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10883,10884,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,10885,29840, 29840,29840,29840,29840,29840,10884, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10886,29840,29840, 29840,29840,10871,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 163, 139, 139, 139, 139, 139, 139, 139, 168, 344, 139, 7593, 7593, 7593, 7593, 7593, 7593, 7593, 7593, 7593, 139, 139, 139, 139, 139, 139, 139, 168, 168, 168, 168, 168, 345, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 139, 139, 139, 176, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 841, 165, 139,10888,10888,10888,10888,10888,10888,10888,10888,10888, 1137, 139, 139, 139, 139, 139, 139, 841, 841, 841, 841, 841, 842, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 139, 139, 139, 843, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 139, 139,29840, 148, 149, 139, 139, 139,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 335,29840,29840,29840,29840, 162,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139,10890, 139, 139, 29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,10891,10891,10891,10891,10891,10891,10891, 10891,10891, 203, 139, 139, 139, 139, 139, 139,10809, 10809,10809,10809,10809,10810, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176,10808,10808,10808,10808, 10808,10808, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177,10896,10896,10896,10896,10896,10896,10896,10896,10896, 29840,29840,29840,29840,29840,29840,29840,10896,10896,10896, 10896,10896,10897,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10896,10896,10896,10896,10896,10896, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10900,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 9989, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,10901, 29840,29840,29840,29840,10900,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 9989, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10903,29840,29840, 29840,29840, 9923,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 9084, 8332, 139, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 139, 139, 139, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9086, 9085, 9085,10904, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,10008,29840,29840,10906,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 10908,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,10909,29840,29840,29840,29840,10908,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10911,29840,10912,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10022,10023,10023,29840,29840,29840,29840,29840, 29840,29840,29840,10913, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 10915,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,10916, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10917,29840,29840,29840,29840,10915,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,10916, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10918,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,10920,29840, 29840,29840,29840,10918,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 9935, 139, 9093, 9093, 9093, 9093, 9093, 9093, 9093, 9093, 9093, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9923,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,10925,10926,10926,10926,10926,10926,10926,10926, 10926, 9946,29840,29840,29840,29840,29840,29840,10926,10926, 10926,10926,10926,10927,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10926,10926,10926,10926,10926, 10926,10928,10929,10929,10929,10929,10929,10929,10929,10929, 10930,29840,29840,29840,29840,29840,29840,10929,10929,10929, 10929,10929,10931,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10929,10929,10929,10929,10929,10929, 8334,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10934,10935,10935,10935,10935,10935,10935,10935,10935, 10936,29840,29840,29840,29840,29840,29840,10935,10935,10935, 10935,10935,10937,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10935,10935,10935,10935,10935,10935, 10944,10945,10945,10945,10945,10945,10945,10945,10945, 9959, 29840,29840,29840,29840,29840,29840,10945,10945,10945,10945, 10945,10946,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10945,10945,10945,10945,10945,10945,10947, 10948,10948,10948,10948,10948,10948,10948,10948,29840,29840, 29840,29840,29840,29840,29840,10948,10948,10948,10948,10948, 10949,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10948,10948,10948,10948,10948,10950, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10957,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,10958, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10959,29840,29840, 29840,29840,10957,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,10958, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 10960,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10962,29840,29840,29840,29840,10960,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10965,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,10966, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10967,29840,29840, 29840,29840,10965,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,10966, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 10968,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10971,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,10972, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 10973,29840,29840,29840,29840,10971,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,10972, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,10975,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10976,29840,29840, 29840, 8358, 139, 139,10977,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10976, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10978,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10979,29840,29840,29840,29840,10968, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10981,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,10982, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,10983, 29840,29840,29840,29840,10981,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,10982, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,10985,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10986,29840,29840,29840, 8358, 139, 139,10987,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10986, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,10988,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10992,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,10993, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10994,29840,29840,29840,29840,10992,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,10993, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,10995,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,10997,29840,29840,29840, 29840,10995,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11000,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 11001,29840,29840,29840,29840,11000,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10999,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11004,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11005,29840,29840,29840,29840,11004, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11007,29840,11008,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11009,11010,11010,29840,29840,29840, 29840,29840,29840,29840,29840,11011, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840, 9134,29840,29840,11015,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 8360, 7621, 139, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 139, 139, 139, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8362, 8361, 8361, 8361, 8361, 8361,11016, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11019,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11021,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11022,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11022, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,11023,29840,29840,29840,29840,11019,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,10012,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11027,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,11029,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,11030,29840,29840,29840,29840,11027, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11034,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,11035,29840, 29840,29840,29840,11034,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11038,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,11039,29840,29840,29840,29840,11038,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,10012,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11041,11042,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139,29840,29840,29840,29840,29840, 29840,29840,11042, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,11044, 11044,11044,11044,11044,11044,11044,11044, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11045, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11045,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11047,11048,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139,29840,29840,29840,29840,29840,29840, 29840,11048, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11050,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,11051, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11052,29840,29840,29840,29840,11050,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,11051, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11053,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11055,29840,29840,29840, 29840,11053,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,11058, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9134,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 11063,11064,11064,11064,11064,11064,11064,11064,11064, 9162, 29840,29840,29840,29840,29840,29840,11064,11064,11064,11064, 11064,11065,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11064,11064,11064,11064,11064,11064,11067, 11068,11068,11068,11068,11068,11068,11068,11068,11069,29840, 29840,29840,29840,29840,29840,11068,11068,11068,11068,11068, 11070,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11068,11068,11068,11068,11068,11068, 7624,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11072, 11073,11073,11073,11073,11073,11073,11073,11073,29840,29840, 29840,29840,29840,29840,29840,11073,11073,11073,11073,11073, 11074,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11073,11073,11073,11073,11073,11075,11078,11079, 11079,11079,11079,11079,11079,11079,11079,10047,29840,29840, 29840,29840,29840,29840,11079,11079,11079,11079,11079,11080, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11079,11079,11079,11079,11079,11079,11081,11082,11082, 11082,11082,11082,11082,11082,11082,29840,29840,29840,29840, 29840,29840,29840,11082,11082,11082,11082,11082,11083,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11082,11082,11082,11082,11082,11084,11090,11091,11091,11091, 11091,11091,11091,11091,11091, 9175,29840,29840,29840,29840, 29840,29840,11091,11091,11091,11091,11091,11092,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11091, 11091,11091,11091,11091,11091,11094,11095,11095,11095,11095, 11095,11095,11095,11095,11096,29840,29840,29840,29840,29840, 29840,11095,11095,11095,11095,11095,11097,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,11095,11095, 11095,11095,11095,11095, 139, 139,29840, 139,11104, 139, 139, 139, 139, 139, 139, 139, 9084, 139, 139,11105, 11106,11107,11108,11108,11108,11108,11108,11108,11109, 139, 139, 139, 139, 139, 139,11110,11110,11110,11110,11110, 11111,11112,11112,11112,11112,11112,11112,11112,11112,11112, 11112,11112,11112,11112,11112,11112,11112,11112, 139, 139, 139, 139,11110,11110,11110,11110,11110,11110,11112,11112, 11112,11112,11112,11113,11112,11112,11112,11112,11112,11112, 11112,11112,11112,11112,11112,11112,11112, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139,10066, 139, 139,29840,29840, 29840,29840,29840, 9182,29840,29840,11114,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 139, 8392, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 7639,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 8365, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 8368, 29840,29840,29840,29840,29840,11115,29840,29840,29840,29840, 29840, 8369,29840,29840,29840,29840,29840, 139, 139, 139, 8365,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8369, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11117,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,11118, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,11119, 29840,29840,29840,29840,11117,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,11118, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11120,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11122,29840,29840,29840,29840,11120, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11126,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,11127, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,11128, 29840,29840,29840,29840,11126,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,11127, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11129,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11131,29840,29840,29840,29840,11129, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11134,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,11135, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,11136, 29840,29840,29840,29840,11134,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,11135, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11137,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11140, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 11141, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11142,29840,29840,29840,29840,11140,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,11141, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,11143, 7621, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 11143,29840,29840,29840,29840,11145,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,11146,11143, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11147,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11148,29840,29840,29840, 29840,11137,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11150,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 11151,29840,29840,29840,29840,11150,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11156,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,11157, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11158,29840,29840,29840,29840, 11156,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,11157, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11159,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,11162,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,11163, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,11164,29840, 29840,29840,29840,11162,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,11163, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,11165, 7621, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11165,29840,29840,29840, 29840,11167,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,11168,11165, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11169,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11170,29840,29840,29840,29840,11159,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11173,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11174,29840,29840,29840, 29840,11173,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11176,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 11177,29840,29840,29840,29840,11176,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11179,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11180,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11180, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11184, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11185,29840,29840,29840,29840,11184,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11189,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11190,29840,29840,29840,29840, 11189,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11193,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,11194, 29840,29840,29840,29840,11193,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,11196,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11197,29840,29840,29840, 139, 139, 9211,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11197, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11199,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11200,29840,29840,29840,29840,11199,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11202,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11203,29840,29840,29840, 29840,11202,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11205,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11206,29840,29840,29840, 139, 139, 9211,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11206, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,10995,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11050,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,11051,29840,29840,29840,29840, 29840,29840,29840,11207, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 4935,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 10147,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 4935,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,10148,29840,29840,29840,29840,10147,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 6967,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,11222,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,11223,29840,29840,29840, 29840,11222,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,11227,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 11228,29840,29840,29840,29840,11227,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,11232,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,11233,29840,29840,29840,29840,11232, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,11237,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,11238,29840, 29840,29840,29840,11237,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 11241,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,11242,29840,29840,29840,29840,11241,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,11244,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,11245,29840, 29840,29840, 4937, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11245, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840, 29840,29840,29840,11247,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,11248, 11248,11248,11248,11248,11248,11248,11248,11248, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 11247,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 6300, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,11251,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,11252, 29840,29840,29840,29840,11251,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840, 29840,11254,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11255,29840,29840,29840, 4937, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11255, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 11257,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,11258,29840,29840,29840,29840,11257,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,11262,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,11263,29840,29840,29840, 29840,11262,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 139, 139,29840, 139, 836, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139,29840, 29840,29840,29840,11276, 2012, 2012, 2013, 2012, 3025, 2012, 2012, 2012, 2012, 2012, 2012, 2012,29840, 2012, 2012,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2012, 2012, 2012, 2012, 2012, 2012, 2012,29840,29840,29840,29840,29840, 2501,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2012, 2012, 2012,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11278,11288,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,11289,11289,11289, 11289,11289,11289,11289,11289,11289,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2023,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11288,29840,29840,29840,29840, 1606, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 5683,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,11292,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 5683,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11293,29840,29840,29840,29840, 11292,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,11297,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11298, 29840,29840,29840,29840,11297,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840, 29840,11302,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11303,29840,29840,29840,29840,11302,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840,29840,29840,29840,29840,11307,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11308,29840,29840, 29840,29840,11307,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,11311, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11312,29840,29840,29840,29840,11311,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,11314,11315,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,11315, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,11317,11317, 11317,11317,11317,11317,11317,11317, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,11318,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840,29840,29840,29840,29840,11318,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,11320,11321,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 11321, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,11323,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11324, 29840,29840,29840,29840,11323,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840, 29840,11328,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11329,29840,29840,29840,29840,11328,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840,29840,29840,29840,29840,11333,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11334,29840,29840, 29840,29840,11333,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,11338, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11339,29840,29840,29840,29840,11338,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,11342,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11343,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11343, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,11345, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11346,29840,29840,29840,29840,11345,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,11348,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11349,29840,29840,29840,29840, 11348,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,11354,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11355, 29840,29840,29840,29840,11354,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840, 29840,11359,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11360,29840,29840,29840,29840,11359,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840,29840,29840,29840,29840,11363,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11364,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11364, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840, 29840,11366,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11367,29840,29840,29840,29840,11366,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,11395,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11396,29840,29840, 29840,29840,11395,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,11400, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11401,29840,29840,29840,29840,11400,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,11403,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11404,29840,29840,29840,29840, 11403,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,11406,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11407, 29840,29840,29840,29840,29840, 2564, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,11407, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,11411,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11412,29840,29840,29840, 29840,11411,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,11416,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 11417,29840,29840,29840,29840,11416,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,11420,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11421,29840,29840,29840,29840,11420, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,11423,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11424,29840,29840,29840, 7135, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,11424, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,11426,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,11427,11427,11427,11427,11427,11427,11427,11427,11427, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,11426,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 8631, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,11430, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11431,29840,29840,29840,29840,11430,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,11433,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,11434,29840,29840, 29840, 7135, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11434, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,11438,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11439,29840,29840,29840,29840,11438, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,11443,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,11444,29840, 29840,29840,29840,11443,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555, 2555, 139, 139,29840, 139, 836, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11471, 139, 139,29840, 139,11472, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11485,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11486,29840,29840,29840, 29840,11485,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,11488,11488,11488,11488,11488,11488,11488, 11488,11488,29840,29840,29840,29840,29840,29840,29840,11488, 11488,11488,11488,11488,11489,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11488,11488,11488,11488, 11488,11488, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 151, 313, 139, 9505, 9505, 9505, 9505, 9505, 9505, 9505, 9505, 9505, 139, 139, 139, 139, 139, 139, 329, 151, 151, 151, 151, 151, 314, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 139, 139, 139, 139, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151,11492,11493,11493,11493,11493, 11493,11493,11493,11493,10459,29840,29840,29840,29840,29840, 29840,11493,11493,11493,11493,11493,11494,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,11493,11493, 11493,11493,11493,11493,11495,11496,11496,11496,11496,11496, 11496,11496,11496,11497,29840,29840,29840,29840,29840,29840, 11496,11496,11496,11496,11496,11498,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,11496,11496,11496, 11496,11496,11496,11501,11502,11502,11502,11502,11502,11502, 11502,11502,11503,29840,29840,29840,29840,29840, 329,11502, 11502,11502,11502,11502,11504,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11502,11502,11502,11502, 11502,11502,11509,11510,11510,11510,11510,11510,11510,11510, 11510, 9520,29840,29840,29840,29840,29840,29840,11510,11510, 11510,11510,11510,11511,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11510,11510,11510,11510,11510, 11510,11513,11514,11514,11514,11514,11514,11514,11514,11514, 11515,29840,29840,29840,29840,29840,29840,11514,11514,11514, 11514,11514,11516,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11514,11514,11514,11514,11514,11514, 11523,11524,11524,11524,11524,11524,11524,11524,11524, 9532, 29840,29840,29840,29840,29840,29840,11524,11524,11524,11524, 11524,11525,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11524,11524,11524,11524,11524,11524,11527, 11528,11528,11528,11528,11528,11528,11528,11528,11529,29840, 29840,29840,29840,29840,29840,11528,11528,11528,11528,11528, 11530,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11528,11528,11528,11528,11528,11528,11537,11538, 11539,11540,11540,11540,11540,11540,11540,29840,29840,29840, 29840,29840,29840,29840, 8723, 8723, 8723, 8723, 8723, 8727, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8723, 8723, 8723, 8723, 8723, 8723,11541,11542,11542, 11542,11542,11542,11542,11542,11542,10497,29840,29840,29840, 29840,29840,29840,11542,11542,11542,11542,11542,11543,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11542,11542,11542,11542,11542,11542,11544,11545,11545,11545, 11545,11545,11545,11545,11545,29840,29840,29840,29840,29840, 29840,29840,11545,11545,11545,11545,11545,11546,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11545, 11545,11545,11545,11545,11547,11553,29840, 8735, 8735, 8735, 8735, 8735, 8735, 8735, 8735, 8735, 8738,29840,29840,29840, 29840,29840,29840, 8735, 8735, 8735, 8735, 8735, 8737,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8735, 8735, 8735, 8735, 8735, 8735, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 313, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 329,29840,29840,29840, 29840,29840, 539,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 322,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11557,11569,11570,11570,11570,11570,11570, 11570,11570,11570, 9570,29840,29840,29840,29840,29840,29840, 11570,11570,11570,11570,11570,11571,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,11570,11570,11570, 11570,11570,11570,11573,11573,11573,11573,11573,11573,11573, 11573,11573,11574,29840,29840,29840,29840,29840,29840,11573, 11573,11573,11573,11573,11575,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11573,11573,11573,11573, 11573,11573,11576,11576,11576,11576,11576,11576,11576,11576, 11576,29840,29840,29840,29840,29840,29840,29840,11576,11576, 11576,11576,11576,11577,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4455,29840,29840,29840,11576,11576,11576,11576,11576, 11576,11581,11581,11581,11581,11581,11581,11581,11581,11581, 10532,29840,29840,29840,29840,29840,29840,11581,11581,11581, 11581,11581,11582,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11581,11581,11581,11581,11581,11581, 11583,11583,11583,11583,11583,11583,11583,11583,11583,29840, 29840,29840,29840,29840,29840,29840,11583,11583,11583,11583, 11583,11584,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11583,11583,11583,11583,11583,11583,11588, 11588,11588,11588,11588,11588,11588,11588,11588,10542,29840, 29840,29840,29840,29840,29840,11588,11588,11588,11588,11588, 11589,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11588,11588,11588,11588,11588,11588,11590,11590, 11590,11590,11590,11590,11590,11590,11590,29840,29840,29840, 29840,29840,29840,29840,11590,11590,11590,11590,11590,11591, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11590,11590,11590,11590,11590,11590,11596,11596,11596, 11596,11596,11596,11596,11596,11596,10554,29840,29840,29840, 29840,29840,29840,11596,11596,11596,11596,11596,11597,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11596,11596,11596,11596,11596,11596,11598,11598,11598,11598, 11598,11598,11598,11598,11598,29840,29840,29840,29840,29840, 29840,29840,11598,11598,11598,11598,11598,11599,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11598, 11598,11598,11598,11598,11598, 8817,29840, 8778, 8778, 8778, 8778, 8778, 8778, 8778, 8778, 8778, 8781,29840,29840,29840, 29840,29840,29840, 8778, 8778, 8778, 8778, 8778, 8780,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8778, 8778, 8778, 8778, 8778, 8778,11607,11607,11607,11607, 11607,11607,11607,11607,11607,10570,29840,29840,29840,29840, 29840,29840,11607,11607,11607,11607,11607,11608,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11607, 11607,11607,11607,11607,11607,11609,11609,11609,11609,11609, 11609,11609,11609,11609,29840,29840,29840,29840,29840,29840, 29840,11609,11609,11609,11609,11609,11610,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,11609,11609, 11609,11609,11609,11609, 8792, 8792, 8792, 8792, 8792, 8792, 8792, 8792, 8792, 8795,29840,29840,29840,29840,29840,29840, 8792, 8792, 8792, 8792, 8792, 8794,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8792, 8792, 8792, 8792, 8792, 8792, 8788, 8788, 8788, 8788, 8788, 8788, 8788, 8788, 8788, 7257,29840,29840,29840,29840,29840,29840, 8788, 8788, 8788, 8788, 8788, 8789,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8788, 8788, 8788, 8788, 8788, 8788,11618,11619,11619,11619,11619,11619,11619,11619, 11619, 9619,29840,29840,29840,29840,29840,29840,11619,11619, 11619,11619,11619,11620,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11619,11619,11619,11619,11619, 11619,11622,11622,11622,11622,11622,11622,11622,11622,11622, 11623,29840,29840,29840,29840,29840,29840,11622,11622,11622, 11622,11622,11624,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11622,11622,11622,11622,11622,11622, 11630,11631,11632,11633,11633,11633,11633,11633,11633,29840, 29840,29840,29840,29840,29840,29840, 8809, 8809, 8809, 8809, 8809, 8813,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8809, 8809, 8809, 8809, 8809, 8809,11634, 11634,11634,11634,11634,11634,11634,11634,11634, 8027,29840, 29840,29840,29840,29840,29840, 8806, 8806, 8806, 8806, 8806, 8807,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8806, 8806, 8806, 8806, 8806, 8806, 5904,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10622, 10622,10622,10622,10622,10622,10622,10622,10622,29840,10622, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5905,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11662, 5906, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,11706,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,29840,11707, 29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11708, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11709,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840, 29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840, 29840, 9710, 9711,29840,29840,29840,11710,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 11711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10683,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,29840,29840, 9713,29840, 9714,29840,11712, 29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840, 29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840,11713,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9707,29840, 9708,11714, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840, 29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,10669, 9709,29840, 29840, 9710,11715,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11708,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11709,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714, 11716, 9715,29840, 9716, 9717, 9718, 1769,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1770,29840, 29840,29840,29840,29840,29840, 1771,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775,11724,29840, 29840,29840, 1777,29840,29840, 1778,29840, 1779,29840, 1780, 29840, 1781, 1782, 1783, 3291,29840, 3292,29840,29840,29840, 29840,29840,29840, 1768,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3293,29840, 29840,29840,29840,29840,29840, 3294,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840, 29840,29840, 3301,29840,29840, 3302,29840,11725,29840, 3304, 29840, 3305, 3306, 3307, 1769,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1770,29840,29840,29840, 29840,29840,29840, 1771,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777,29840,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 1769,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1770,29840,29840,29840,29840,29840, 29840, 1771,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777, 2211, 11726, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 3291,29840, 3292,29840,29840,29840,29840,29840,29840, 1768, 29840,29840,29840,11728,11728,11728,11728,11728,11728,11728, 11728,11728,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3293,29840,29840,29840,29840,29840, 29840, 3294,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301,29840, 29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 10695,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10696,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10697,29840,29840,29840,29840,29840,29840,10698, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10699,29840,10700,29840,10701,29840, 29840,10702,10703,29840,29840,29840,10704,29840,29840,10705, 29840,10706,29840,10707,29840,10708,10709,10710,10695,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10696,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10697,29840,11733,29840,29840,29840,29840,10698,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10699,29840,10700,29840,10701,29840,29840,10702, 10703,29840,29840,29840,10704,29840,29840,10705,29840,10706, 29840,10707,29840,10708,10709,10710, 2223,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2224,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11754,29840,29840,29840,29840,29840,29840, 2225,29840, 29840,29840,29840,29840,29840, 2226,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228, 3327, 2229,29840,29840, 2230, 2231,29840, 29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235, 29840, 2236, 2237, 2238, 2223,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2224,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2225,29840,29840,29840, 29840,29840,29840, 2226,29840,29840,11755,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228, 3327, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 8137,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840, 29840, 8141,29840,29840,11756,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840, 29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136, 29840,29840,10729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10730,29840,29840,29840,29840,29840, 29840,10731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10732,29840,10733,29840, 10735,29840,29840,11757,10762,29840,29840,29840,11758,29840, 29840,10739,29840,10740,29840,10741,29840,10742,10743,10744, 8137,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840, 29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149, 29840, 8150,29840,11759,29840, 8152, 8153, 8154, 8137,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8929, 8147,29840,29840,29840, 8930,29840,11760, 8149,29840, 8150, 29840, 8151,29840, 8152, 8153, 8154, 3291,29840,10728,29840, 29840,29840,29840,29840,29840, 8136,29840,29840,10729,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10730,29840,29840,29840,29840,29840,29840,10731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10732,29840,10733,29840,10735,29840,29840,10736, 10762,29840,29840,29840,10738,29840,29840,10739,29840,10740, 29840,10741,29840,10742,10743,10744, 3291,29840, 3955,29840, 29840,29840,29840,29840,29840, 2222,29840,29840, 3956,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840,11799, 3966,29840, 3967, 29840, 3968,29840, 3969, 3970, 3971, 4644, 3291,29840, 3955, 29840,29840,29840,29840,29840,29840, 2222,29840,29840, 3956, 11802,11802,11802,11802,11803,11802,11802,11802,11802,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 784, 1079,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11817,11817,11817,11817,11817,11817,11817,11817,11817,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1080,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11834,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,11835,29840, 29840,29840,29840,11834,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11839,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11840,29840,29840,29840,29840,11839,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,11842,11842,11842,11842,11842,11842,11842, 11842,11842, 203, 139, 139, 139, 139, 139, 139,11843, 11843,11843,11843,11843,11844, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176,11842,11842,11842,11842, 11842,11842, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11843,11843,11843,11843,11843,11843,11843,11843, 11843,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11843,11843,11843,11843,11843, 11843, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 9032, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 8284,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11849,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,11850, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11851,29840,29840, 29840,29840,11849,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,11850, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11852,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11854,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 843, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,11853, 8332, 139,11853,11853,11853,11853,11853,11853, 11853,11853,11853, 139, 139, 139, 139, 139, 139, 139, 11855,11855,11855,11855,11855,11856,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855, 139, 139, 139, 843,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11859,29840,29840,29840,29840,11852,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 9935, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,11854,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 843, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11867,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,11868, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11869,29840,29840,29840, 29840,11867,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,11868, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11870, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11872,29840,29840,29840,29840,11870,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11875,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,11876, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11877,29840,29840,29840, 29840,11875,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,11876, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11878, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11881,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,11882, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,11883, 29840,29840,29840,29840,11881,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,11882, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11885,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11886,29840,29840,29840, 8358, 139, 139,11887,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11886, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,11888,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11889,29840,29840,29840,29840,11878,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,11891,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,11892, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,11893,29840, 29840,29840,29840,11891,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,11892, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,11895,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11896,29840,29840,29840, 8358, 139, 139,11897,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11896, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11898,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11903,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,11904, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 11905,29840,29840,29840,29840,11903,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,11904, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11906,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11908,29840,29840,29840,29840, 11906,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,11914, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 11915,29840,29840,29840,29840,11913,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,11914, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11916,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11918,29840,29840,29840,29840, 11916,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11921,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,11922, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 11923,29840,29840,29840,29840,11921,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,11922, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11924,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11927,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,11928, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11929,29840,29840,29840,29840,11927,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,11928, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11931,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11932,29840,29840,29840, 8358, 139, 139,11933,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,11932, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,11934,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11935,29840,29840, 29840,29840,11924,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11937, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 11938, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11939,29840,29840,29840,29840,11937,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,11938, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,11941,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11942, 29840,29840,29840, 8358, 139, 139,11943,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,11942, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11944,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8301, 139, 139, 139, 139, 139, 139, 139,29840, 165, 139, 11947,11947,11947,11947,11947,11947,29840,29840,29840,11948, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 842,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 843, 139, 139,29840, 148, 149, 139, 139, 139,29840,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 162, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,11950, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,11951,11951,11951,11951,11951, 11951,11951,11951,11951, 203, 139, 139, 139, 139, 139, 139,11843,11843,11843,11843,11843,11844, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176,11842,11842, 11842,11842,11842,11842, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177,11959,11959,11959,11959,11959,11959,11959, 11959,11959,29840,29840,29840,29840,29840,29840,29840,11959, 11959,11959,11959,11959,11960,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11959,11959,11959,11959, 11959,11959, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11963,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,10993, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11964,29840,29840,29840,29840,11963,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,10993, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840, 9923,29840,29840,11967,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 9084, 8332, 139, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 139, 139, 139, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9086, 9085, 9085, 9085, 9085, 9085,11968, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,11019,29840,29840,29840,29840, 29840,11969,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11971,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,11972,29840,29840,29840,29840,11971, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11975,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,11976,29840, 29840,29840,29840,11975,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11978,11979,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139,29840,29840,29840,29840,29840,29840,29840,11979, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,11981,11982,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139,29840,29840,29840,29840, 29840,29840,29840,11982, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11984,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,11985, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11986,29840,29840,29840,29840,11984,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,11985, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11987,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,11989,29840, 29840,29840,29840,11987,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,11992, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9923,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,11997,11998,11998,11998,11998,11998,11998,11998, 11998, 9946,29840,29840,29840,29840,29840,29840,11998,11998, 11998,11998,11998,11999,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11998,11998,11998,11998,11998, 11998,12001,12002,12002,12002,12002,12002,12002,12002,12002, 12003,29840,29840,29840,29840,29840,29840,12002,12002,12002, 12002,12002,12004,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12002,12002,12002,12002,12002,12002, 8334,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12006,12007,12007,12007,12007,12007,12007,12007,12007, 29840,29840,29840,29840,29840,29840,29840,12007,12007,12007, 12007,12007,12008,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12007,12007,12007,12007,12007,12009, 12012,12013,12013,12013,12013,12013,12013,12013,12013,10936, 29840,29840,29840,29840,29840,29840,12013,12013,12013,12013, 12013,12014,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12013,12013,12013,12013,12013,12013,12015, 12016,12016,12016,12016,12016,12016,12016,12016,29840,29840, 29840,29840,29840,29840,29840,12016,12016,12016,12016,12016, 12017,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12016,12016,12016,12016,12016,12018,12024,12025, 12025,12025,12025,12025,12025,12025,12025, 9959,29840,29840, 29840,29840,29840,29840,12025,12025,12025,12025,12025,12026, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12025,12025,12025,12025,12025,12025,12028,12029,12029, 12029,12029,12029,12029,12029,12029,12030,29840,29840,29840, 29840,29840,29840,12029,12029,12029,12029,12029,12031,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12029,12029,12029,12029,12029,12029, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840, 9088,29840,29840,29840,29840,29840,12038,29840, 29840,29840,29840,29840, 9089,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9089, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12040, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 12041, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12042,29840,29840,29840,29840,12040,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,12041, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12043,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12045,29840,29840, 29840,29840,12043,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12049, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 12050, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12051,29840,29840,29840,29840,12049,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,12050, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12052,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12054,29840,29840, 29840,29840,12052,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12057, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 12058, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12059,29840,29840,29840,29840,12057,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,12058, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12060,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,12063,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,12064, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12065,29840,29840,29840,29840, 12063,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,12064, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,12066, 8332, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12066,29840,29840,29840,29840,12068,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,12069, 12066, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12070,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,12071, 29840,29840,29840,29840,12060,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,12074,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,12075, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12076,29840,29840,29840,29840,12074, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 12075, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12077,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12080,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,12081, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12082,29840,29840, 29840,29840,12080,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,12081, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,12083, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12083,29840,29840,29840,29840, 12085,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,12086,12083, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12087, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12088,29840,29840,29840,29840,12077,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11984,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,11985,29840,29840,29840,29840,29840, 29840,29840,12090, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12092, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 12093, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12094,29840,29840,29840,29840,12092,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,12093, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12095,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12097,29840,29840, 29840,29840,12095,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12101, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12103,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12104,29840, 29840,29840,29840,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12104, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,12105,29840, 29840,29840,29840,12101,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 12109,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12110,29840,29840,29840,29840,12109,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10999,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12113,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12114,29840,29840,29840, 29840,12113,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12116,12117, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,29840, 29840,29840,29840,29840,29840,29840,12117, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,12119,12119,12119,12119,12119,12119,12119, 12119, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,12120,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 12120,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12122,12123,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,29840,29840, 29840,29840,29840,29840,29840,12123, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840, 9134,29840,29840,29840,29840,29840,12125,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139,10069, 139, 139, 139, 139, 139, 139, 139, 8360, 7621, 139, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 139, 139, 139, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8362, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,12127,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,12128,29840,29840,29840,29840, 12127,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12130,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,12131, 29840,29840,29840,29840,12130,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,12133,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12134,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12134, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12140,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 12141,29840,29840,29840,29840,12140,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,12143,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12144,29840,29840,29840,29840,12143, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12148,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,12149,29840, 29840,29840,29840,12148,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 12153,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,12154,29840,29840,29840,29840,12153,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,10012,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12157,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,12158,29840,29840,29840, 29840,12157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12160,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12161,29840,29840,29840,10009, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12161, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12163,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,12164,12164,12164,12164,12164,12164,12164, 12164,12164, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12163,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139,12137, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,12167,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,12168,29840,29840,29840,29840,12167,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12171, 29840,29840,29840,10009, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12171, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12173,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,12174, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12175,29840,29840, 29840,29840,12173,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,12174, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 12176,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12178,29840,29840,29840,29840,12176,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8360, 139, 139,12182,12183,12184,12185,12185,12185,12185, 12185,12185, 139, 139, 139, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8362, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139, 139, 139, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 8360,11058, 139,10032,10032,10032,10032, 10032,10032,10032,10032,10032, 139, 139, 139, 139, 139, 139, 139, 8360, 8360, 8360, 8360, 8360, 9134, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 139, 139, 139, 139, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360,12186,12187,12187,12187,12187,12187, 12187,12187,12187,11069,29840,29840,29840,29840,29840,29840, 12187,12187,12187,12187,12187,12188,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12187,12187,12187, 12187,12187,12187,12189,12190,12190,12190,12190,12190,12190, 12190,12190,12191,29840,29840,29840,29840,29840,29840,12190, 12190,12190,12190,12190,12192,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12190,12190,12190,12190, 12190,12190, 7624,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12195,12196,12196,12196,12196,12196,12196, 12196,12196,12197,29840,29840,29840,29840,29840,29840,12196, 12196,12196,12196,12196,12198,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12196,12196,12196,12196, 12196,12196,12203,12204,12204,12204,12204,12204,12204,12204, 12204,10047,29840,29840,29840,29840,29840,29840,12204,12204, 12204,12204,12204,12205,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12204,12204,12204,12204,12204, 12204,12207,12208,12208,12208,12208,12208,12208,12208,12208, 12209,29840,29840,29840,29840,29840,29840,12208,12208,12208, 12208,12208,12210,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12208,12208,12208,12208,12208,12208, 12217,12218,12218,12218,12218,12218,12218,12218,12218,11096, 29840,29840,29840,29840,29840,29840,12218,12218,12218,12218, 12218,12219,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12218,12218,12218,12218,12218,12218,12220, 12221,12221,12221,12221,12221,12221,12221,12221,29840,29840, 29840,29840,29840,29840,29840,12221,12221,12221,12221,12221, 12222,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12221,12221,12221,12221,12221,12223, 139, 139, 29840, 139,11104, 139, 139, 139, 139, 139, 139, 139, 9084, 139, 139,11105,11106,11107,11108,11108,11108,11108, 11108,11108,11109, 139, 139, 139, 139, 139, 139,11110, 11110,11110,11110,11110,11111,11112,11112,11112,11112,11112, 11112,11112,11112,11112,11112,11112,11112,11112,11112,11112, 11112,11112, 139, 139, 139, 139,11110,11110,11110,11110, 11110,11110,11112,11112,11112,11112,11112,11113,11112,11112, 11112,11112,11112,11112,11112,11112,11112,11112,11112,11112, 11112, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,12229, 8336, 139,12230,12231,12231,12231, 12231,12231,12231,12231,12231, 8339, 139, 139, 139, 139, 139, 139,12231,12231,12231,12231,12231,12232,12229,12229, 12229,12229,12229,12229,12229,12229,12229,12229,12229,12229, 12229,12229,12229,12229,12229, 139, 139, 139,12233,12231, 12231,12231,12231,12231,12231,12229,12229,12229,12229,12229, 12229,12229,12229,12229,12229,12229,12229,12229,12229,12229, 12229,12229,12229,12229, 8332,29840,12229,12229,12229,12229, 12229,12229,12229,12229,12229, 139,29840,29840,29840,29840, 29840,29840,12229,12229,12229,12229,12229,12239,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12229, 12229,12229,12229,12229,12229, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,10066, 139, 139,29840,29840,29840,29840, 29840, 9182,29840,29840,29840,29840,29840,12241,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9141, 29840,29840,29840,29840,29840,29840,29840,29840,12242,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12244,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,12245, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,12246, 29840,29840,29840,29840,12244,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,12245, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,12247,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12249,29840,29840,29840,29840,12247, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12254,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,12255, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,12256, 29840,29840,29840,29840,12254,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,12255, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,12257,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12259,29840,29840,29840,29840,12257, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12263,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,12264, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,12265, 29840,29840,29840,29840,12263,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,12264, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,12266,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12268,29840,29840,29840,29840,12266, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12271,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,12272, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,12273, 29840,29840,29840,29840,12271,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,12272, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,12274,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12277, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12278,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 12279,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12278, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12281,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,12282, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,12283,29840, 29840,29840,29840,12281,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,12282, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,12284,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12285,29840,29840,29840,29840,29840,29840, 8358, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12285, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12286,29840,29840,29840,29840,12274,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12289,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12290,29840,29840,29840, 29840,12289,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12296,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,12297, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12298,29840,29840,29840,29840,12296,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,12297, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12299,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12301,29840,29840,29840, 29840,12299,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12304,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,12305, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12306,29840,29840,29840,29840,12304,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,12305, 139, 139, 29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12307,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,12310,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12311,29840,29840,29840,29840,29840,29840, 8358, 139, 139,12312,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12311, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12314,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,12315, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 12316,29840,29840,29840,29840,12314,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,12315, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,12317,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12318,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12318, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12319,29840,29840,29840,29840,12307, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139,10069, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12247,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,12322,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12323,29840,29840,29840,29840, 12322,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12327,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,12328, 29840,29840,29840,29840,12327,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,12331,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12332,29840,29840,29840,29840,12331,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12334,29840,12335,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12336,12336,12337,29840,29840,29840,29840, 29840,29840,29840,29840,12338, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,12341,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12342,29840,29840,29840,29840,12341,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12346,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12347,29840,29840, 29840,29840,12346,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12351, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12352,29840,29840,29840,29840,12351,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,12355,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12356,29840,29840,29840,29840, 12355,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,12357, 139, 9209,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12357,29840,29840,29840,29840,12359,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211,12357,12357, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12361,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,12362,29840, 29840,29840,29840,12361,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 12365,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12366,29840,29840,29840,29840,12365,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12369,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12370,29840,29840,29840, 29840,12369,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,12371, 139, 9209,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12371,29840,29840,29840,29840,12373,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211,12371, 12371, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12173,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,12174,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12374,12380,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12381,12381,12381,12381,12381, 12381,12381,12381,12381,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1572,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12380, 29840,29840,29840,29840, 1234, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840, 29840,12390,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12391,29840,29840,29840,29840,12390,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840,29840,29840,29840,29840,12395,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12396,29840,29840, 29840,29840,12395,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,12400, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12401,29840,29840,29840,29840,12400,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840, 29840,29840,29840,12405,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12406,29840,29840,29840,29840, 12405,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,12410,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12411, 29840,29840,29840,29840,12410,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840, 29840,12414,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12415,29840,29840,29840,29840,12414,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12416, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 12416,29840,29840,29840,29840,12418,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225,12416,12416, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,12420,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12421,29840,29840,29840, 29840,12420,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,12425,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 12426,29840,29840,29840,29840,12425,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,12429,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12430,29840,29840,29840,29840,12429, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12431, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,12431,29840,29840,29840,29840,12433,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225,12431,12431, 6967, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1572,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 29840, 6300, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,12438,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 139, 139,29840, 139,12443, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 2012, 2012, 2013, 2012,12445, 2012, 2012, 2012, 2012, 2012, 2012, 2012,29840, 2012, 2012,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2012, 2012, 2012, 2012, 2012, 2012, 2012,29840,29840, 29840,29840,29840, 2501,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2012, 2012, 2012, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 5683,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 11292,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 5683,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,11293,29840,29840,29840,29840,11292,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,12459,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12460,29840,29840,29840, 29840,12459,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,12464,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 12465,29840,29840,29840,29840,12464,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,12469,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12470,29840,29840,29840,29840,12469, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,12474,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12475,29840, 29840,29840,29840,12474,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 12478,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12479,29840,29840,29840,29840,12478,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,12481,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12482,29840, 29840,29840, 5685, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12482, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,12484,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,12485, 12485,12485,12485,12485,12485,12485,12485,12485, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 12484,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 7061, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,12488,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12489, 29840,29840,29840,29840,12488,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840, 29840,12491,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12492,29840,29840,29840, 5685, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12492, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 12494,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12495,29840,29840,29840,29840,12494,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,12499,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,12500,29840,29840,29840, 29840,12499,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597,12526,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12527,12527,12527,12527,12527,12527,12527, 12527,12527,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3077,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12526,29840,29840, 29840,29840, 2564, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,12532, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12533,29840,29840,29840,29840,12532,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,12537,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12538,29840,29840,29840,29840, 12537,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,12541,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12542, 29840,29840,29840,29840,12541,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,12545,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12546,29840,29840,29840,29840,12545,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,12548,29840,12549,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12550,12551,12551,29840,29840,29840,29840, 29840,29840,29840,29840,12552, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,12555,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12556,29840,29840,29840,29840,12555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,12560,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12561,29840,29840, 29840,29840,12560,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,12565, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12566,29840,29840,29840,29840,12565,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,12569,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12570,29840,29840,29840,29840, 12569,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12571, 2555, 9412,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12571,29840,29840,29840,29840,12573,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555,12571,12571, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,12575,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12576,29840, 29840,29840,29840,12575,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 12580,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12581,29840,29840,29840,29840,12580,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,12584,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12585,29840,29840,29840, 29840,12584,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12586, 2555, 9412,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12586,29840,29840,29840,29840,12588,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555,12586, 12586, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,12532,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,12533, 29840,29840,29840,29840,12532,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 7133, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 3077,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135,29840, 8631, 139, 139, 29840, 139, 836, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840, 572,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139,29840,29840,29840,29840,29840, 12611, 139, 139,29840, 139, 836, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12622, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12625, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12626,29840,29840,29840,29840,12625,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139,12629, 12629,12629,12629,12629,12629,12629,12629,12629,29840,29840, 29840,29840,29840,29840,29840,12629,12629,12629,12629,12629, 12630,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12629,12629,12629,12629,12629,12629,12633,12634, 12634,12634,12634,12634,12634,12634,12634,10459,29840,29840, 29840,29840,29840,29840,12634,12634,12634,12634,12634,12635, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12634,12634,12634,12634,12634,12634,12637,12638,12638, 12638,12638,12638,12638,12638,12638,12639,29840,29840,29840, 29840,29840,29840,12638,12638,12638,12638,12638,12640,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12638,12638,12638,12638,12638,12638,12642,12642,12642,12642, 12642,12642,12642,12642,12642,29840,29840,29840,29840,29840, 29840, 329,12642,12642,12642,12642,12642,12643,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12642, 12642,12642,12642,12642,12644,12647,12648,12648,12648,12648, 12648,12648,12648,12648,11503,29840,29840,29840,29840,29840, 29840,12648,12648,12648,12648,12648,12649,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12648,12648, 12648,12648,12648,12648,12650,12650,12650,12650,12650,12650, 12650,12650,12650,29840,29840,29840,29840,29840,29840,29840, 12650,12650,12650,12650,12650,12651,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12650,12650,12650, 12650,12650,12652,12657,12658,12658,12658,12658,12658,12658, 12658,12658,11515,29840,29840,29840,29840,29840,29840,12658, 12658,12658,12658,12658,12659,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12658,12658,12658,12658, 12658,12658,12660,12660,12660,12660,12660,12660,12660,12660, 12660,29840,29840,29840,29840,29840,29840,29840,12660,12660, 12660,12660,12660,12661,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12660,12660,12660,12660,12660, 12662,12668,12669,12669,12669,12669,12669,12669,12669,12669, 11529,29840,29840,29840,29840,29840,29840,12669,12669,12669, 12669,12669,12670,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12669,12669,12669,12669,12669,12669, 12671,12671,12671,12671,12671,12671,12671,12671,12671,29840, 29840,29840,29840,29840,29840,29840,12671,12671,12671,12671, 12671,12672,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12671,12671,12671,12671,12671,12673,11553, 29840, 9531, 9531, 9531, 9531, 9531, 9531, 9531, 9531, 9531, 9534,29840,29840,29840,29840,29840,29840, 9531, 9531, 9531, 9531, 9531, 9533,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9531, 9531, 9531, 9531, 9531, 9531, 12682,12683,12683,12683,12683,12683,12683,12683,12683,10497, 29840,29840,29840,29840,29840,29840,12683,12683,12683,12683, 12683,12684,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12683,12683,12683,12683,12683,12683,12686, 12687,12687,12687,12687,12687,12687,12687,12687,12688,29840, 29840,29840,29840,29840,29840,12687,12687,12687,12687,12687, 12689,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12687,12687,12687,12687,12687,12687,12696,12697, 12698,12699,12699,12699,12699,12699,12699,29840,29840,29840, 29840,29840,29840,29840, 9544, 9544, 9544, 9544, 9544, 9548, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9544, 9544, 9544, 9544, 9544, 9544,12704,12704,12704, 12704,12704,12704,12704,12704,12704, 8738,29840,29840,29840, 29840,29840,29840, 9541, 9541, 9541, 9541, 9541, 9542,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9541, 9541, 9541, 9541, 9541, 9541, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 313, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 329,29840,29840,29840, 29840,29840, 539,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 322,12716,12716,12716,12716,12716,12716, 12716,12716,12716,11574,29840,29840,29840,29840,29840,29840, 12716,12716,12716,12716,12716,12717,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12716,12716,12716, 12716,12716,12716,12718,12718,12718,12718,12718,12718,12718, 12718,12718,12719,29840,29840,29840,29840,29840,29840,12718, 12718,12718,12718,12718,12720,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12718,12718,12718,12718, 12718,12718,12722,12722,12722,12722,12722,12722,12722,12722, 12722,12723,29840,29840,29840,29840,29840,29840,12722,12722, 12722,12722,12722,12724,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4455,29840,29840,29840,12722,12722,12722,12722,12722, 12722,12728,12728,12728,12728,12728,12728,12728,12728,12728, 10532,29840,29840,29840,29840,29840,29840,12728,12728,12728, 12728,12728,12729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12728,12728,12728,12728,12728,12728, 12731,12731,12731,12731,12731,12731,12731,12731,12731,12732, 29840,29840,29840,29840,29840,29840,12731,12731,12731,12731, 12731,12733,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12731,12731,12731,12731,12731,12731,12737, 12737,12737,12737,12737,12737,12737,12737,12737,10542,29840, 29840,29840,29840,29840,29840,12737,12737,12737,12737,12737, 12738,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12737,12737,12737,12737,12737,12737,12740,12740, 12740,12740,12740,12740,12740,12740,12740,12741,29840,29840, 29840,29840,29840,29840,12740,12740,12740,12740,12740,12742, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12740,12740,12740,12740,12740,12740,12746,12747,12748, 12749,12749,12749,12749,12749,12749,29840,29840,29840,29840, 29840,29840,29840, 9581, 9581, 9581, 9581, 9581, 9585,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9581, 9581, 9581, 9581, 9581, 9581,12750,12750,12750,12750, 12750,12750,12750,12750,12750,10554,29840,29840,29840,29840, 29840,29840,12750,12750,12750,12750,12750,12751,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12750, 12750,12750,12750,12750,12750,12753,12753,12753,12753,12753, 12753,12753,12753,12753,12754,29840,29840,29840,29840,29840, 29840,12753,12753,12753,12753,12753,12755,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12753,12753, 12753,12753,12753,12753,12759,12760,12761,12762,12762,12762, 12762,12762,12762,29840,29840,29840,29840,29840,29840,29840, 9591, 9591, 9591, 9591, 9591, 9595,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9591, 9591, 9591, 9591, 9591, 9591, 8817,29840,12763,12763,12763,12763,12763, 12763,12763,12763,12763, 8781,29840,29840,29840,29840,29840, 29840, 9589, 9589, 9589, 9589, 9589, 9590,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9589, 9589, 9589, 9589, 9589, 9589,12764,12764,12764,12764,12764,12764, 12764,12764,12764,10570,29840,29840,29840,29840,29840,29840, 12764,12764,12764,12764,12764,12765,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12764,12764,12764, 12764,12764,12764,12767,12767,12767,12767,12767,12767,12767, 12767,12767,12768,29840,29840,29840,29840,29840,29840,12767, 12767,12767,12767,12767,12769,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12767,12767,12767,12767, 12767,12767,12773,12774,12775,12776,12776,12776,12776,12776, 12776,29840,29840,29840,29840,29840,29840,29840, 9602, 9602, 9602, 9602, 9602, 9606,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9602, 9602, 9602, 9602, 9602, 9602,12777,12777,12777,12777,12777,12777,12777,12777,12777, 8795,29840,29840,29840,29840,29840,29840, 9600, 9600, 9600, 9600, 9600, 9601,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9600, 9600, 9600, 9600, 9600, 9600, 12778,12778,12778,12778,12778,12778,12778,12778,12778,11623, 29840,29840,29840,29840,29840,29840,12778,12778,12778,12778, 12778,12779,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12778,12778,12778,12778,12778,12778,12780, 12780,12780,12780,12780,12780,12780,12780,12780,29840,29840, 29840,29840,29840,29840,29840,12780,12780,12780,12780,12780, 12781,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12780,12780,12780,12780,12780,12780, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9618, 9621,29840,29840, 29840,29840,29840,29840, 9618, 9618, 9618, 9618, 9618, 9620, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9618, 9618, 9618, 9618, 9618, 9618, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 9614, 8027,29840,29840,29840, 29840,29840,29840, 9614, 9614, 9614, 9614, 9614, 9615,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9614, 9614, 9614, 9614, 9614, 9614, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,12855,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840, 29840,29840,12856, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9707,29840, 9708,12857, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840, 29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,12858, 9709,29840, 29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10674,29840, 9708,29840, 9709,29840,29840, 9710, 12859,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718,10675, 9704,29840,29840, 29840,29840,29840,29840,29840,12860,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711, 29840,29840,29840, 9712,10673,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840, 29840,29840,29840,29840, 9703,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12867, 29840,29840,29840,29840,29840,29840,12868,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12869,29840,12870,12871,12872,29840,29840,12873,12874, 29840,29840,29840,12875,29840,29840,12876,29840,12877,29840, 12878,29840,12879,12880,12881, 1769,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1770,29840,29840, 29840,29840,29840,29840, 1771,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1772, 29840, 1773,29840,12890,29840,29840, 1775, 1776,29840,29840, 29840, 1777, 2211,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 3291,29840, 3292,29840,29840,29840,29840, 29840,29840, 1768,29840,29840,12891,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 3293,29840,29840, 29840,29840,29840,29840, 3294,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3295, 29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840,29840, 29840, 3301,29840, 3927, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 1769,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1770,29840,29840,29840,29840, 29840,29840, 1771,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773, 29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777, 12892,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 3291,29840,12895,29840,29840,29840,29840,29840,29840, 12896,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12897,29840,29840,29840,29840, 29840,29840,12898,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12899,29840,12900, 29840,12901,29840,29840,12902,12903,29840,29840,29840,12904, 29840,29840,12905,29840,12906,29840,12907,29840,12908,12909, 12910, 3291,29840,12912,29840,29840,29840,29840,29840,29840, 12913,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12914,29840,29840,29840,29840, 29840,29840,12915,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12916,29840,12917, 29840,12918,29840,29840,12919,12920,29840,29840,29840,12921, 29840,29840,12922,29840,12923,29840,12924,29840,12925,12926, 12927, 3291,29840, 3292,29840,29840,29840,29840,29840,29840, 1768,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12928,29840,29840, 3293,29840, 3914,29840,29840, 29840,29840, 3294,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 3295,29840, 3296, 29840, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301, 29840,29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307,10695,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10696,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10697,29840,29840,29840,29840,29840,29840, 10698,29840,29840,29840,29840,29840,12930,29840,29840,29840, 29840,29840,29840,29840,29840,10699,29840,10700,29840,10701, 29840,29840,10702,10703,29840,29840,29840,10704,29840,29840, 10705,29840,10706,29840,10707,29840,10708,10709,10710,10695, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10696, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10697,29840,29840,29840,29840,29840,29840,10698,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10699,29840,10700,29840,10701,29840,11740, 10702,10703,29840,29840,29840,10704,29840,12931,10705,29840, 10706,29840,10707,29840,10708,10709,10710, 2223,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2224,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2225, 29840,29840,29840,29840,29840,29840, 2226,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12951, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231, 29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 2223,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2224,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2225,29840,29840, 29840,29840,29840,29840, 2226,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2227, 29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840,29840, 29840, 2232,29840,29840, 2233,29840,12952,29840, 2235,29840, 2236, 2237, 2238, 8137,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12953,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840, 29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143, 29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148, 29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10730,29840,29840,29840,29840, 29840,29840,10731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10732,29840,10733, 29840,10735,29840,29840,10736,10762,29840,29840,29840,10738, 29840,11779,12954,29840,10740,29840,10741,29840,10742,10743, 10744, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10730,29840,29840,29840,29840, 29840,29840,10731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12955,29840,10733, 29840,10735,29840,29840,10736,10762,29840,29840,29840,10738, 29840,29840,10739,29840,10740,29840,10741,29840,10742,10743, 10744,11783, 8137,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840, 29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12956,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840, 29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8932, 2223,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2224,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229, 29840,29840, 2230,12990,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 3291, 29840, 3955,29840,29840,29840,29840,29840,29840, 2222,29840, 29840, 3956,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 3959,29840, 3960,29840, 3962, 29840,29840, 3963, 4625,29840,29840,29840, 3965,29840,29840, 3966,29840,12991,29840, 3968,29840, 3969, 3970, 3971, 2223, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2224, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2227,29840, 2739,29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2740,29840, 2236, 2741, 2238, 2223,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2224,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2225, 29840,29840,29840,29840,29840,29840, 2226,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231, 29840,29840,29840, 2232, 2748,12992, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 3291,29840, 3955,29840,29840, 29840,29840,29840,29840, 2222,29840,29840, 3956,12993,12993, 12993,12993,12993,12993,12993,12993,12993,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3957, 29840,29840,29840,29840,29840,29840, 3958,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625, 29840,29840,29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13028,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13029,29840,29840,29840,29840,13028,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,13032, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,11839,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,13032, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,11840,29840,29840, 29840,29840,11839,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13034, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1882,29840,29840,29840,29840,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1882, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,13035,13035,13035,13035,13035, 13035,13035,13035,13035, 203, 139, 139, 139, 139, 139, 139,13036,13036,13036,13036,13036,13037, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176,13035,13035, 13035,13035,13035,13035, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13036,13036,13036,13036,13036,13036, 13036,13036,13036,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,13036,13036,13036, 13036,13036,13036, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13042,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,13043, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13044,29840,29840,29840,29840,13042,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,13043, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13045,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13047,29840,29840,29840, 29840,13045,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1137, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11854,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 843, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1137, 139, 139, 139, 139, 139, 139,13048,29840,29840,29840,29840,11854,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 843, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 11853, 8332, 139,11853,11853,11853,11853,11853,11853,11853, 11853,11853, 1137, 139, 139, 139, 139, 139, 139,11855, 11855,11855,11855,11855,11856,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855, 139, 139, 139, 843,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13055,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13056, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13057,29840,29840,29840,29840,13055,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,13056, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13058,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13060,29840,29840,29840,29840, 13058,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13064,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13065, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13066,29840,29840,29840,29840,13064,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,13065, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13067,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13069,29840,29840,29840,29840, 13067,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13072,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13073, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13074,29840,29840,29840,29840,13072,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,13073, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13075,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13078,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13079, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13080,29840,29840,29840,29840,13078,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,13079, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,13081, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13081,29840,29840,29840,29840,13083,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,13084,13081, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13085,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13086,29840,29840, 29840,29840,13075,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13089, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 13090, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13091,29840,29840,29840,29840,13089,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13090, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13092,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13095,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13096, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13097,29840,29840,29840,29840, 13095,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13096, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,13098, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13098,29840,29840,29840,29840,13100,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,13101, 13098, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13102,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,13103, 29840,29840,29840,29840,13092,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13042,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13043,29840,29840,29840,29840,29840,29840,29840, 13106, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13108,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13109, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13110,29840,29840,29840,29840,13108,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,13109, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13111,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13113,29840,29840,29840,29840, 13111,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9088,29840,29840, 29840,29840,29840,12038,29840,29840,29840,29840,29840, 9089, 29840,29840,29840,29840,29840, 1133, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9089, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13118,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,13119, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13120,29840,29840, 29840,29840,13118,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13119, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13121,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13123,29840,29840,29840,29840,13121,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13127,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,13128, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13129,29840,29840, 29840,29840,13127,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13128, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13130,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13132,29840,29840,29840,29840,13130,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13135,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,13136, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13137,29840,29840, 29840,29840,13135,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13136, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13138,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13141,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13142, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13143,29840,29840,29840,29840,13141,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,13142, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,13144, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,13144,29840, 29840,29840,29840,13146,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,13147,13144, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13148,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13149,29840,29840,29840,29840,13138, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13152,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,13153, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,13154, 29840,29840,29840,29840,13152,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,13153, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13155,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13158, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 13159, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13160,29840,29840,29840,29840,13158,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13159, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,13161, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13161,29840,29840,29840,29840,13163,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,13164,13161, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13165,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13166,29840,29840,29840, 29840,13155,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13108,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,13109, 29840,29840,29840,29840,29840,29840,29840,13168, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 841, 165, 139, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 1137, 139, 139, 139, 139, 139, 139, 841, 841, 841, 841, 841, 842, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 139, 139, 139, 843, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 139, 139,29840, 148, 149, 139, 139, 139,29840, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 162,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13170, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,13171,13171,13171,13171, 13171,13171,13171,13171,13171, 203, 139, 139, 139, 139, 139, 139,13036,13036,13036,13036,13036,13037, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176,13035, 13035,13035,13035,13035,13035, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13176,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,13180,13180,13180,13180,13180,13180,13180,13180, 13180,29840,29840,29840,29840,29840,29840,29840,13180,13180, 13180,13180,13180,13181,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,13180,13180,13180,13180,13180, 13180, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13184,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,12093, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13185,29840,29840,29840,29840,13184,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,12093, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840, 9923,29840,29840,29840,29840,29840,13188, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139,10955, 139, 139, 139, 139, 139, 139, 139, 9084, 8332, 139, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 139, 139, 139, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9086, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139, 139, 139, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 139, 139, 29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,12127,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13190,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13191,29840,29840,29840,29840,13190,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13195,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13196,29840,29840, 29840,29840,13195,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13199, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13200,29840,29840,29840,29840,13199,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13202,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,13203,29840,29840, 29840,10009, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,13203, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13205,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13206,29840,29840,29840,29840,13205, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13208,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13209,29840,29840,29840,10009, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13209, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13211,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,13212, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,13213,29840, 29840,29840,29840,13211,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,13212, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13214,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13216,29840,29840,29840,29840,13214,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,11992, 139,10921,10921,10921,10921,10921,10921, 10921,10921,10921, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9923,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139,13224,13225,13225, 13225,13225,13225,13225,13225,13225,12003,29840,29840,29840, 29840,29840,29840,13225,13225,13225,13225,13225,13226,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13225,13225,13225,13225,13225,13225,13227,13228,13228,13228, 13228,13228,13228,13228,13228,13229,29840,29840,29840,29840, 29840,29840,13228,13228,13228,13228,13228,13230,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13228, 13228,13228,13228,13228,13228, 8334,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13233,13234,13234,13234, 13234,13234,13234,13234,13234,13235,29840,29840,29840,29840, 29840,29840,13234,13234,13234,13234,13234,13236,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13234, 13234,13234,13234,13234,13234,13241,13242,13242,13242,13242, 13242,13242,13242,13242,10936,29840,29840,29840,29840,29840, 29840,13242,13242,13242,13242,13242,13243,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13242,13242, 13242,13242,13242,13242,13245,13246,13246,13246,13246,13246, 13246,13246,13246,13247,29840,29840,29840,29840,29840,29840, 13246,13246,13246,13246,13246,13248,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,13246,13246,13246, 13246,13246,13246,13255,13256,13256,13256,13256,13256,13256, 13256,13256,12030,29840,29840,29840,29840,29840,29840,13256, 13256,13256,13256,13256,13257,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13256,13256,13256,13256, 13256,13256,13258,13259,13259,13259,13259,13259,13259,13259, 13259,29840,29840,29840,29840,29840,29840,29840,13259,13259, 13259,13259,13259,13260,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,13259,13259,13259,13259,13259, 13261, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 9139,29840,29840, 29840,29840,29840,29840,29840,29840,13267,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13269,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,13270, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13271,29840,29840, 29840,29840,13269,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13270, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13272,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13274,29840,29840,29840,29840,13272,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13279,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,13280, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13281,29840,29840, 29840,29840,13279,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13280, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13282,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13284,29840,29840,29840,29840,13282,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13288,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,13289, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13290,29840,29840, 29840,29840,13288,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13289, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13291,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13293,29840,29840,29840,29840,13291,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13296,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,13297, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13298,29840,29840, 29840,29840,13296,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13297, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13299,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13302,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13303,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13304,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13303, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13306,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,13307, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13308,29840,29840,29840, 29840,13306,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13307, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13309, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13310,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13310, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13311,29840,29840,29840,29840,13299,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13315,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13316, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13317,29840,29840,29840,29840, 13315,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13316, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13318,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 13320,29840,29840,29840,29840,13318,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13323,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13324, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13325,29840,29840,29840,29840, 13323,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13324, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13326,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13329,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13330,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,13331,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13330, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13333,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13334, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13335,29840,29840,29840,29840,13333, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 13334, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13336,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13337,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13337, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,13338,29840, 29840,29840,29840,13326,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139,10955, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13272,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13211,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13212,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13340, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13342,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13343, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13344,29840,29840,29840,29840,13342,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,13343, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13345,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,13347,29840, 29840,29840,29840,13345,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13352,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13353,29840,29840,29840,29840,13352,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13355,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13356,29840,29840,29840, 29840,13355,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13358,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13359,29840,29840,29840,29840,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13359, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13363,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10999,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13364,29840,29840, 29840,29840,13363,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13368, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13369,29840,29840,29840,29840,13368,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13372,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13373,29840,29840,29840,29840, 13372,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13375,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13376,29840,29840,29840, 8358, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13376, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13378,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,13379,13379,13379,13379,13379,13379,13379,13379, 13379, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13378,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139,10000, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13382,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13383,29840,29840,29840,29840,13382,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10999,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13385,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13386,29840, 29840,29840, 8358, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13386, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840, 9134,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13388,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13389,29840,29840,29840,29840,13388,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13393,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 13392,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13394,29840,29840, 29840,29840,13393,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13397, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13398,29840,29840,29840,29840,13397,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13400,29840,13401,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13402,13403,13403,29840,29840,29840,29840,29840,29840, 29840,29840,13404, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13409, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13410,29840,29840,29840,29840,13409,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139,13412, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,12143,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139,13412, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,12144,29840,29840,29840,29840, 12143,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13416,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,10012,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,13417, 29840,29840,29840,29840,13416,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13421,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13422,29840,29840,29840,29840,13421,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13426,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13427,29840,29840, 29840,29840,13426,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13430, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13431,29840,29840,29840,29840,13430,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,13432, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,13432,29840, 29840,29840,29840,13434,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139,13432,13432, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13436,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13437,29840,29840,29840,29840,13436, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13441,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,13442,29840, 29840,29840,29840,13441,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13445,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,13446,29840,29840,29840,29840,13445,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 13447,10012,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,13447, 29840,29840,29840,29840,13449,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139,13447,13447, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13451,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,13452, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13453,29840,29840,29840, 29840,13451,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13452, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13454, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13456,29840,29840,29840,29840,13454,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840, 9134,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 139, 13460,13460,13460,13460,13460,13460,13460,13460,13460, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840, 9134,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,13464,13465,13465,13465,13465,13465,13465, 13465,13465,11069,29840,29840,29840,29840,29840,29840,13465, 13465,13465,13465,13465,13466,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13465,13465,13465,13465, 13465,13465,13465,13465,13465,13465,13465,13465,13465,13465, 13465,11071,29840,29840,29840,29840,29840,29840,13465,13465, 13465,13465,13465,13466,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,13465,13465,13465,13465,13465, 13465,13468,13469,13469,13469,13469,13469,13469,13469,13469, 13470,29840,29840,29840,29840,29840,29840,13469,13469,13469, 13469,13469,13471,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13469,13469,13469,13469,13469,13469, 7624,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13473,13474,13474,13474,13474,13474,13474,13474,13474, 29840,29840,29840,29840,29840,29840,29840,13474,13474,13474, 13474,13474,13475,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13474,13474,13474,13474,13474,13476, 13479,13480,13480,13480,13480,13480,13480,13480,13480,12197, 29840,29840,29840,29840,29840,29840,13480,13480,13480,13480, 13480,13481,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13480,13480,13480,13480,13480,13480,13482, 13483,13483,13483,13483,13483,13483,13483,13483,29840,29840, 29840,29840,29840,29840,29840,13483,13483,13483,13483,13483, 13484,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,13483,13483,13483,13483,13483,13485,13490,13491, 13491,13491,13491,13491,13491,13491,13491,12209,29840,29840, 29840,29840,29840,29840,13491,13491,13491,13491,13491,13492, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13491,13491,13491,13491,13491,13491,13493,13494,13494, 13494,13494,13494,13494,13494,13494,29840,29840,29840,29840, 29840,29840,29840,13494,13494,13494,13494,13494,13495,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13494,13494,13494,13494,13494,13496,13502,13503,13503,13503, 13503,13503,13503,13503,13503,11096,29840,29840,29840,29840, 29840,29840,13503,13503,13503,13503,13503,13504,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13503, 13503,13503,13503,13503,13503,13506,13507,13507,13507,13507, 13507,13507,13507,13507,13508,29840,29840,29840,29840,29840, 29840,13507,13507,13507,13507,13507,13509,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13507,13507, 13507,13507,13507,13507,13516,13517,13518,13519,13519,13519, 13519,13519,13519,29840,29840,29840,29840,29840,29840,29840, 10059,10059,10059,10059,10059,10063,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10059,10059,10059, 10059,10059,10059, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12239, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 12233, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,12229, 8332, 139,13520,13521,13521,13521, 13521,13521,13521,13521,13521, 8339, 139, 139, 139, 139, 139, 139,13521,13521,13521,13521,13521,13522,12229,12229, 12229,12229,12229,12229,12229,12229,12229,12229,12229,12229, 12229,12229,12229,12229,12229, 139, 139, 139,12233,13521, 13521,13521,13521,13521,13521,12229,12229,12229,12229,12229, 12229,12229,12229,12229,12229,12229,12229,12229,12229,12229, 12229,12229,12229,12229, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13524,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13527,29840,29840,29840,29840,12239,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139,12233, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139,10066, 139, 139, 29840,29840,29840,29840,29840, 9182,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,10013,13529,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13531,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,13532, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13533,29840,29840,29840,29840,13531,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,13532, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13534,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,13536,29840, 29840,29840,29840,13534,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 13541,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13542,29840,29840,29840,29840,13541,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13549,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13550,29840,29840,29840, 29840,13549,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13554,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13556,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,13557,29840,29840, 29840,29840,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,13557, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 12326,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13558,29840,29840, 29840,29840,13554,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13562, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13563,29840,29840,29840,29840,13562,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13566,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13567,29840,29840,29840,29840, 13566,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13569,13570,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211,29840,29840, 29840,29840,29840,29840,29840,13570, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13572,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,10114, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13572, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13574,13575,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211,29840,29840,29840, 29840,29840,29840,29840,13575, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13577,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13578,29840,29840,29840,29840,13577,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13582,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13583,29840,29840, 29840,29840,13582,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13587, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13588,29840,29840,29840,29840,13587,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13592,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13593,29840,29840,29840,29840, 13592,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13596,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13597,29840, 29840,29840,29840,29840,29840, 139, 139, 9211,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13597, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,13599,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13600,29840,29840,29840,29840, 13599,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13602,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,13603, 29840,29840,29840,29840,13602,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13607,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13608,29840,29840,29840,29840,13607,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13612,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13613,29840,29840, 29840,29840,13612,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13617,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13617, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,13619,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13620,29840,29840, 29840,29840,13619,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13451, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 13452,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13621, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,13636,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13637,29840, 29840,29840,29840,13636,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 13641,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13642,29840,29840,29840,29840,13641,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,13646,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13647,29840,29840,29840, 29840,13646,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,13651,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 13652,29840,29840,29840,29840,13651,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,13656,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13657,29840,29840,29840,29840,13656, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,13661,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13662,29840, 29840,29840,29840,13661,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 13665,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13666,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13666, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,13668,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13669,29840, 29840,29840,29840,13668,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 13671,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13672,29840,29840,29840,29840,13671,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,13677,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13678,29840,29840,29840, 29840,13677,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,13682,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 13683,29840,29840,29840,29840,13682,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,13686,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13687,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13687, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,13689,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 13690,29840,29840,29840,29840,13689,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,13694, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,12438,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,13694, 1225, 1225,29840, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13695,29840,29840,29840,29840, 12438,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225,13706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13707,13707,13707,13707,13707,13707,13707, 13707,13707,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2023,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,13706,29840,29840, 29840,29840, 1606, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,13716, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13717,29840,29840,29840,29840,13716,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,13721,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13722,29840,29840,29840,29840, 13721,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,13726,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13727, 29840,29840,29840,29840,13726,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840, 29840,13731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13732,29840,29840,29840,29840,13731,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840,29840,29840,29840,29840,13736,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13737,29840,29840, 29840,29840,13736,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,13740, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13741,29840,29840,29840,29840,13740,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13742, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13742,29840, 29840,29840,29840,13744,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597,13742,13742, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,13746,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13747,29840,29840,29840,29840,13746, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,13751,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13752,29840, 29840,29840,29840,13751,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 13755,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13756,29840,29840,29840,29840,13755,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 13757, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,13757, 29840,29840,29840,29840,13759,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597,13757,13757, 7776, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2023, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685,29840, 7061, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,13764,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1606, 1597, 1597, 1597,13785,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13786, 13786,13786,13786,13786,13786,13786,13786,13786,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3077,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13785,29840,29840,29840,29840, 2564, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,13789,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13790,29840,29840, 29840,29840,13789,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,13794, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13795,29840,29840,29840,29840,13794,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,13799,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13800,29840,29840,29840,29840, 13799,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,13804,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13805, 29840,29840,29840,29840,13804,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,13808,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13809,29840,29840,29840,29840,13808,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,13811,13812,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,13812, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 13814,13814,13814,13814,13814,13814,13814,13814, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 13815,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,13815,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,13817,13818,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,13818, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,13820, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13821,29840,29840,29840,29840,13820,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,13825,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13826,29840,29840,29840,29840, 13825,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,13830,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13831, 29840,29840,29840,29840,13830,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,13835,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13836,29840,29840,29840,29840,13835,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,13839,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13840, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,13842,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13843,29840,29840,29840,29840,13842,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,13845,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13846,29840,29840, 29840,29840,13845,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,13851, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13852,29840,29840,29840,29840,13851,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,13856,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13857,29840,29840,29840,29840, 13856,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,13860,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13861,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13861, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,13863,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13864,29840,29840,29840,29840, 13863,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 139, 139,29840, 139,13887, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139,13888, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 572,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139,13899, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840, 572,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13902,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13903,29840,29840,29840,29840,13902, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,13908,13909,13909,13909,13909,13909,13909,13909,13909, 12639,29840,29840,29840,29840,29840,29840,13909,13909,13909, 13909,13909,13910,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13909,13909,13909,13909,13909,13909, 13911,13911,13911,13911,13911,13911,13911,13911,13911,13912, 29840,29840,29840,29840,29840,29840,13911,13911,13911,13911, 13911,13913,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13911,13911,13911,13911,13911,13914,13917, 13917,13917,13917,13917,13917,13917,13917,13917,13918,29840, 29840,29840,29840,29840, 329,13917,13917,13917,13917,13917, 13919,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,13917,13917,13917,13917,13917,13917,13923,13924, 13924,13924,13924,13924,13924,13924,13924,11503,29840,29840, 29840,29840,29840,29840,13924,13924,13924,13924,13924,13925, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13924,13924,13924,13924,13924,13924,13927,13927,13927, 13927,13927,13927,13927,13927,13927,13928,29840,29840,29840, 29840,29840,29840,13927,13927,13927,13927,13927,13929,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13927,13927,13927,13927,13927,13927,13935,13936,13936,13936, 13936,13936,13936,13936,13936,11515,29840,29840,29840,29840, 29840,29840,13936,13936,13936,13936,13936,13937,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13936, 13936,13936,13936,13936,13936,13939,13939,13939,13939,13939, 13939,13939,13939,13939,13940,29840,29840,29840,29840,29840, 29840,13939,13939,13939,13939,13939,13941,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13939,13939, 13939,13939,13939,13939,13947,13948,13949,13950,13950,13950, 13950,13950,13950,29840,29840,29840,29840,29840,29840,29840, 10472,10472,10472,10472,10472,10476,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10472,10472,10472, 10472,10472,10472,13951,13952,13952,13952,13952,13952,13952, 13952,13952,11529,29840,29840,29840,29840,29840,29840,13952, 13952,13952,13952,13952,13953,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13952,13952,13952,13952, 13952,13952,13955,13955,13955,13955,13955,13955,13955,13955, 13955,13956,29840,29840,29840,29840,29840,29840,13955,13955, 13955,13955,13955,13957,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,13955,13955,13955,13955,13955, 13955,13963,13964,13965,13966,13966,13966,13966,13966,13966, 29840,29840,29840,29840,29840,29840,29840,10483,10483,10483, 10483,10483,10487,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10483,10483,10483,10483,10483,10483, 11553,29840,13967,13967,13967,13967,13967,13967,13967,13967, 13967, 9534,29840,29840,29840,29840,29840,29840,10480,10480, 10480,10480,10480,10481,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10480,10480,10480,10480,10480, 10480,13968,13969,13969,13969,13969,13969,13969,13969,13969, 12688,29840,29840,29840,29840,29840,29840,13969,13969,13969, 13969,13969,13970,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13969,13969,13969,13969,13969,13969, 13971,13971,13971,13971,13971,13971,13971,13971,13971,29840, 29840,29840,29840,29840,29840,29840,13971,13971,13971,13971, 13971,13972,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13971,13971,13971,13971,13971,13973,10496, 10496,10496,10496,10496,10496,10496,10496,10496,10499,29840, 29840,29840,29840,29840,29840,10496,10496,10496,10496,10496, 10498,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10496,10496,10496,10496,10496,10496,10492,10492, 10492,10492,10492,10492,10492,10492,10492, 8738,29840,29840, 29840,29840,29840,29840,10492,10492,10492,10492,10492,10493, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10492,10492,10492,10492,10492,10492,13995,13995,13995, 13995,13995,13995,13995,13995,13995,11574,29840,29840,29840, 29840,29840,29840,13995,13995,13995,13995,13995,13996,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13995,13995,13995,13995,13995,13995,13998,13998,13998,13998, 13998,13998,13998,13998,13998,13999,29840,29840,29840,29840, 29840,29840,13998,13998,13998,13998,13998,14000,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,13998, 13998,13998,13998,13998,13998,14001,14001,14001,14001,14001, 14001,14001,14001,14001,29840,29840,29840,29840,29840,29840, 29840,14001,14001,14001,14001,14001,14002,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4455,29840,29840,29840,14001,14001, 14001,14001,14001,14001,14004,14004,14004,14004,14004,14004, 14004,14004,14004,12723,29840,29840,29840,29840,29840,29840, 14004,14004,14004,14004,14004,14005,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14004,14004,14004, 14004,14004,14004,14006,14006,14006,14006,14006,14006,14006, 14006,14006,29840,29840,29840,29840,29840,29840,29840,14006, 14006,14006,14006,14006,14007,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14006,14006,14006,14006, 14006,14006,14011,14011,14011,14011,14011,14011,14011,14011, 14011,12732,29840,29840,29840,29840,29840,29840,14011,14011, 14011,14011,14011,14012,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14011,14011,14011,14011,14011, 14011,14013,14013,14013,14013,14013,14013,14013,14013,14013, 29840,29840,29840,29840,29840,29840,29840,14013,14013,14013, 14013,14013,14014,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14013,14013,14013,14013,14013,14013, 14017,14017,14017,14017,14017,14017,14017,14017,14017,12741, 29840,29840,29840,29840,29840,29840,14017,14017,14017,14017, 14017,14018,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14017,14017,14017,14017,14017,14017,14019, 14019,14019,14019,14019,14019,14019,14019,14019,29840,29840, 29840,29840,29840,29840,29840,14019,14019,14019,14019,14019, 14020,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14019,14019,14019,14019,14019,14019, 8817,29840, 10541,10541,10541,10541,10541,10541,10541,10541,10541,10542, 29840,29840,29840,29840,29840,29840,10541,10541,10541,10541, 10541,10543,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10541,10541,10541,10541,10541,10541,14026, 14026,14026,14026,14026,14026,14026,14026,14026,12754,29840, 29840,29840,29840,29840,29840,14026,14026,14026,14026,14026, 14027,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14026,14026,14026,14026,14026,14026,14028,14028, 14028,14028,14028,14028,14028,14028,14028,29840,29840,29840, 29840,29840,29840,29840,14028,14028,14028,14028,14028,14029, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14028,14028,14028,14028,14028,14028,10553,10553,10553, 10553,10553,10553,10553,10553,10553,10554,29840,29840,29840, 29840,29840,29840,10553,10553,10553,10553,10553,10555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10553,10553,10553,10553,10553,10553,10550,10550,10550,10550, 10550,10550,10550,10550,10550, 8781,29840,29840,29840,29840, 29840,29840,10550,10550,10550,10550,10550,10551,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10550, 10550,10550,10550,10550,10550,14035,14035,14035,14035,14035, 14035,14035,14035,14035,12768,29840,29840,29840,29840,29840, 29840,14035,14035,14035,14035,14035,14036,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14035,14035, 14035,14035,14035,14035,14037,14037,14037,14037,14037,14037, 14037,14037,14037,29840,29840,29840,29840,29840,29840,29840, 14037,14037,14037,14037,14037,14038,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14037,14037,14037, 14037,14037,14037,10569,10569,10569,10569,10569,10569,10569, 10569,10569,10570,29840,29840,29840,29840,29840,29840,10569, 10569,10569,10569,10569,10571,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10569,10569,10569,10569, 10569,10569,10566,10566,10566,10566,10566,10566,10566,10566, 10566, 8795,29840,29840,29840,29840,29840,29840,10566,10566, 10566,10566,10566,10567,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10566,10566,10566,10566,10566, 10566,14044,14044,14044,14044,14044,14044,14044,14044,14044, 11623,29840,29840,29840,29840,29840,29840,14044,14044,14044, 14044,14044,14045,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14044,14044,14044,14044,14044,14044, 14047,14047,14047,14047,14047,14047,14047,14047,14047,14048, 29840,29840,29840,29840,29840,29840,14047,14047,14047,14047, 14047,14049,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14047,14047,14047,14047,14047,14047,14053, 14054,14055,14056,14056,14056,14056,14056,14056,29840,29840, 29840,29840,29840,29840,29840,10585,10585,10585,10585,10585, 10589,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10585,10585,10585,10585,10585,10585,14057,14057, 14057,14057,14057,14057,14057,14057,14057, 9621,29840,29840, 29840,29840,29840,29840,10583,10583,10583,10583,10583,10584, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10583,10583,10583,10583,10583,10583, 9704,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,14125, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711, 29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718,14126,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840,14127, 29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,29840,14128,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,14129,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,14130, 9708,29840, 9709,29840,29840, 9710, 9711, 29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840,14131,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712, 29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 14132, 3291,29840,12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12867,29840,29840,29840,29840, 29840,29840,12868,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12869,29840,12870, 29840,12872,29840,29840,12873,14133,29840,29840,29840,12875, 29840,29840,12876,29840,12877,29840,12878,29840,12879,12880, 12881, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,14134, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291, 29840,12866,29840,29840,29840,29840,29840,29840, 9703,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12867,29840,29840,29840,29840,29840,29840, 12868,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12869,29840,12870,29840,12872, 29840,29840,12873,14133,29840,29840,29840,12875,29840,29840, 12876,29840,12877,29840,12878,29840,12879,12880,12881, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9707,29840, 9708,14154, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14155,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711, 29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14156, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718,10675, 9704,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840, 29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,14157, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,10670, 9710, 9711,29840,29840,29840, 9712,29840, 14158, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 1769,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1770,29840,29840,29840,29840,29840,29840, 1771, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840, 29840, 1775, 1776,29840,29840,29840, 1777,14162,29840, 1778, 29840, 1779,29840, 1780,29840, 1781, 1782, 2209, 3291,29840, 3292,29840,29840,29840,29840,29840,29840, 1768,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3293,29840,29840,29840,29840,29840,29840, 3294, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840, 29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302, 29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 1769,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14163,29840,29840,29840,29840,29840,29840,29840,29840, 1770,29840,29840,29840,29840,29840,29840, 1771,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777,29840,29840, 1778,29840, 1779, 29840, 1780,29840, 1781, 1782, 1783, 3291,29840,12895,29840, 29840,29840,29840,29840,29840,12896,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12897,29840,29840,29840,29840,29840,29840,12898,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12899,29840,12900,29840,12901,29840,29840,12902, 12903,29840,29840,29840,12904,29840,29840,12905,29840,12906, 29840,12907,29840,12908,12909,12910, 3291,29840,12895,29840, 29840,29840,29840,29840,29840,12896,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12897,29840,14167,29840,29840,29840,29840,12898,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12899,29840,12900,29840,12901,29840,29840,12902, 12903,29840,29840,29840,12904,29840,29840,12905,29840,12906, 29840,12907,29840,12908,12909,12910,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182, 3291,29840,12912,29840,29840,29840, 29840,29840,29840,12913,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 29840,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927, 3291,29840,12912,29840,29840,29840, 29840,29840,29840,12913,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 14200,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215, 3291,29840, 3292,29840,29840,29840,29840,29840, 29840, 1768,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3293,29840,29840,29840, 29840,29840,29840, 3294,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840,29840,14233, 3301,29840,29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307,10695,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10696,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10697,29840,29840,29840,29840,29840, 29840,10698,29840,29840,29840,29840,29840,14235,29840,29840, 29840,29840,29840,29840,29840,29840,10699,29840,10700,29840, 10701,29840,29840,10702,10703,29840,29840,29840,10704,29840, 29840,10705,29840,10706,29840,10707,29840,10708,10709,10710, 10695,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10696,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10697,29840,29840,29840,29840,29840,29840,10698, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10699,29840,10700,29840,10701,29840, 29840,10702,10703,29840,29840,29840,10704,14236,29840,10705, 29840,10706,29840,10707,29840,10708,10709,10710, 3291,29840, 14249,29840,29840,29840,29840,29840,29840,10694,29840,29840, 14250,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14251,29840,29840,29840,29840,29840,29840,14252, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14253,29840,14254,14255,14256,29840, 29840,14257,14258,29840,29840,29840,14259,29840,29840,14260, 29840,14261,29840,14262,29840,14263,14264,14265, 2223,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2224,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2227,29840, 2228,29840, 2229,29840,29840,14274, 2231,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234, 29840, 2235,29840, 2236, 2237, 2238, 2223,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2224,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2225,29840, 29840,29840,29840,29840,29840, 2226,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840, 29840,29840, 2232,29840,14275, 2233,29840, 2234,29840, 2235, 29840, 2236, 2237, 2238, 8137,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8139,14276,14276,14276,14276,14276, 14276,14276,14276,14276,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8140,29840,29840,29840, 29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8916,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8917,29840, 8152, 8918, 8154, 3291,29840,10728,29840,29840,29840,29840,29840, 29840, 8136,29840,29840,10729,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10730,29840,29840,29840, 29840,29840,29840,10731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10732,29840, 10733,29840,10735,29840,29840,11757,10762,29840,29840,29840, 11758,29840,29840,10739,29840,10740,29840,10741,29840,10742, 10743,10744, 3291,29840,10728,29840,29840,29840,29840,29840, 29840, 8136,29840,29840,10729,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10730,29840,29840,29840, 29840,29840,29840,10731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10732,29840, 10733,10734,10735,29840,29840,10736,10737,29840,29840,29840, 10738,29840,29840,10739,29840,10740,29840,10741,29840,10742, 10743,10744, 8137,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840, 29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8142,29840, 8143, 8921, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840, 14277, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840, 3955,29840,29840,29840,29840,29840,29840, 2222, 29840,29840,14313,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3957,29840,29840,29840,29840,29840, 29840, 3958,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840, 4643, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 3291,29840,14316,29840,29840,29840,29840,29840,29840,14317, 29840,29840,14318,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14319,29840,29840,29840,29840,29840, 29840,14320,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14321,29840,14322,29840, 14323,29840,29840,14324,14325,29840,29840,29840,14326,29840, 29840,14327,29840,14328,29840,14329,29840,14330,14331,14332, 3291,29840,14334,29840,29840,29840,29840,29840,29840,14335, 29840,29840,14336,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14337,29840,29840,29840,29840,29840, 29840,14338,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14339,29840,14340,29840, 14341,29840,29840,14342,14343,29840,29840,29840,14344,29840, 29840,14345,29840,14346,29840,14347,29840,14348,14349,14350, 3291,29840, 3955,29840,29840,29840,29840,29840,29840, 2222, 29840,29840, 3956,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3957,29840,29840,29840,29840,29840, 29840, 3958,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,14351, 29840, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 783, 783, 784,14363, 786, 783, 783, 783,29840,29840, 783, 783, 783,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 783, 783, 783, 783, 783, 783,29840,29840,29840,29840,29840,14364,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 146, 783, 783, 783,11826,29840, 11826,29840,29840,13020,13020,13020,13020,13020,13020,13020, 13020,13020,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 140,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11828,29840,29840,11829, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13028,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,13029,29840,29840,29840,29840,13028,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2866, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14379,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 13032, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,11839,29840,29840,29840,29840,29840,14380, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 2351,29840,29840,29840,29840, 2347,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,14381,14381,14381,14381, 14381,14381,14381,14381,14381, 203, 139, 139, 139, 139, 139, 139,14382,14382,14382,14382,14382,14383, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176,14381, 14381,14381,14381,14381,14381, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14382,14382,14382,14382,14382, 14382,14382,14382,14382,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14382,14382, 14382,14382,14382,14382, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14388, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 14389, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14390,29840,29840,29840,29840,14388,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,14389, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14391,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14393,29840,29840, 29840,29840,14391,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1137, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,11854, 29840,29840,14396,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 843, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,11853, 8332, 139,11853,11853,11853,11853, 11853,11853,11853,11853,11853, 1137, 139, 139, 139, 139, 139, 139,11855,11855,11855,11855,11855,11856,11855,11855, 11855,11855,11855,14397,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855, 139, 139, 139, 843,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 9935, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1137, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 11854,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 843, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14400,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,14401, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14402,29840,29840,29840,29840,14400,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,14401, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14403,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14405,29840,29840,29840, 29840,14403,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14410,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,14411, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14412,29840,29840,29840,29840,14410,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,14411, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14413,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14415,29840,29840,29840, 29840,14413,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14419,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,14420, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14421,29840,29840,29840,29840,14419,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,14420, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14422,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14424,29840,29840,29840, 29840,14422,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,14428, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14429,29840,29840,29840,29840,14427,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,14428, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14430,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14433,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14434,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14435,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14434, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14437,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,14438, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14439,29840,29840,29840,29840,14437,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,14438, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14440,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14441,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14441, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14442,29840,29840,29840,29840,14430, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14446,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,14447, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,14448, 29840,29840,29840,29840,14446,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14447, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14449,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14451,29840,29840,29840,29840,14449, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14454,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,14455, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,14456, 29840,29840,29840,29840,14454,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14455, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14457,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14460, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14461,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 14462,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14461, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14464,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,14465, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,14466,29840, 29840,29840,29840,14464,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,14465, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14467,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14468,29840,29840,29840,29840,29840,29840, 8358, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14468, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14469,29840,29840,29840,29840,14457,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139,10955, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14403,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14388,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14389,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14472, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14474,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14475, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14476,29840,29840, 29840,29840,14474,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14475, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14477,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14479,29840,29840,29840,29840,14477,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14484,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14485, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14486,29840,29840, 29840,29840,14484,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14485, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14487,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14489,29840,29840,29840,29840,14487,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14494,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14495, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14496,29840,29840, 29840,29840,14494,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14495, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14497,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14499,29840,29840,29840,29840,14497,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14503,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14504, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14505,29840,29840, 29840,29840,14503,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14504, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14506,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14508,29840,29840,29840,29840,14506,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14511,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14512, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14513,29840,29840, 29840,29840,14511,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14512, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14514,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14517,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14518,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,14519,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14518, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14521,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,14522, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14523,29840,29840,29840, 29840,14521,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14522, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14524, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14525,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14525, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14526,29840,29840,29840,29840,14514,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14530,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14531, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14532,29840,29840,29840,29840, 14530,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14531, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14533,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14535,29840,29840,29840,29840,14533,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14538,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14539, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14540,29840,29840,29840,29840, 14538,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14539, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14541,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14544,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14545,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,14546,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14545, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14548,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14549, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14550,29840,29840,29840,29840,14548, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 14549, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14551,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14552,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14552, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,14553,29840, 29840,29840,29840,14541,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139,11911, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14487,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14474,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,14475,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14555, 783, 783, 784,14556, 786, 783, 783, 783,29840,29840, 783, 783, 783,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 783, 783, 783, 783, 783, 783,29840,29840,29840,29840,29840, 14364,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 146, 783, 783, 783, 139, 139,29840, 148, 149, 139, 139, 139, 29840,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 162,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 29840,29840,29840,29840,14557, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 14558,14558,14558,14558,14558,14558,14558,14558,14558, 203, 139, 139, 139, 139, 139, 139,14382,14382,14382,14382, 14382,14383, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176,14381,14381,14381,14381,14381,14381, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139, 29840, 139,14562, 139, 139, 139, 139, 139, 139, 139, 29840,14563, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13176,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 14562, 139, 139, 139, 139, 139, 139, 139,29840,14563, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14564,29840,29840, 29840,29840,13176,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,11955,29840,29840,29840,29840,29840, 11956,29840,11956,29840,29840,13179,13179,13179,13179,13179, 13179,13179,13179,13179,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 140,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11958,14566,14566,14566,14566,14566,14566, 14566,14566,14566,29840,29840,29840,29840,29840,29840,29840, 14566,14566,14566,14566,14566,14567,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14566,14566,14566, 14566,14566,14566, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14570, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 13343, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14571,29840,29840,29840,29840,14570,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,13343, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9923,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14575,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14576,29840,29840,29840,29840, 14575,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14580,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,14581, 29840,29840,29840,29840,14580,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14585,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14586,29840,29840,29840,29840,14585,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14589,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14590,29840,29840, 29840,29840,14589,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,14591, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14591,29840,29840,29840,29840,14593, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 14591,14591, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14595,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 14596,29840,29840,29840,29840,14595,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14599,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14600,29840,29840,29840,29840,14599, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,14601, 139,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14601,29840,29840,29840,29840,14603,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139,14601,14601, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14605,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,14606, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,14607,29840, 29840,29840,29840,14605,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,14606, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14608,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14610,29840,29840,29840,29840,14608,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840, 9923,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139,14618,14619,14619, 14619,14619,14619,14619,14619,14619,12003,29840,29840,29840, 29840,29840,29840,14619,14619,14619,14619,14619,14620,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14619,14619,14619,14619,14619,14619,14622,14623,14623,14623, 14623,14623,14623,14623,14623,14624,29840,29840,29840,29840, 29840,29840,14623,14623,14623,14623,14623,14625,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14623, 14623,14623,14623,14623,14623, 8334,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14627,14628,14628,14628, 14628,14628,14628,14628,14628,29840,29840,29840,29840,29840, 29840,29840,14628,14628,14628,14628,14628,14629,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14628, 14628,14628,14628,14628,14630,14633,14634,14634,14634,14634, 14634,14634,14634,14634,13235,29840,29840,29840,29840,29840, 29840,14634,14634,14634,14634,14634,14635,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14634,14634, 14634,14634,14634,14634,14636,14637,14637,14637,14637,14637, 14637,14637,14637,29840,29840,29840,29840,29840,29840,29840, 14637,14637,14637,14637,14637,14638,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14637,14637,14637, 14637,14637,14639, 139, 139, 139, 139, 139, 139, 139, 139, 139,10936,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 140,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,14644,14645,14645,14645,14645,14645,14645,14645, 14645,13247,29840,29840,29840,29840,29840,29840,14645,14645, 14645,14645,14645,14646,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14645,14645,14645,14645,14645, 14645,14647,14648,14648,14648,14648,14648,14648,14648,14648, 29840,29840,29840,29840,29840,29840,29840,14648,14648,14648, 14648,14648,14649,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14648,14648,14648,14648,14648,14650, 14656,14657,14657,14657,14657,14657,14657,14657,14657,12030, 29840,29840,29840,29840,29840,29840,14657,14657,14657,14657, 14657,14658,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14657,14657,14657,14657,14657,14657,14660, 14661,14661,14661,14661,14661,14661,14661,14661,14662,29840, 29840,29840,29840,29840,29840,14661,14661,14661,14661,14661, 14663,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14661,14661,14661,14661,14661,14661,14670,14671, 14672,14673,14673,14673,14673,14673,14673,29840,29840,29840, 29840,29840,29840,29840,10948,10948,10948,10948,10948,10952, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10948,10948,10948,10948,10948,10948, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,10008,14674,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14676,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14677, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14678,29840,29840,29840,29840,14676,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,14677, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14679,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,14681,29840, 29840,29840,29840,14679,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14689,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,14690, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14691,29840,29840,29840,29840,14689,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,14690, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14692,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,14694,29840, 29840,29840,29840,14692,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14699,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14700,29840,29840,29840,29840,14699,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14703,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14704,29840,29840,29840, 29840,14703,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14707,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14708,29840,29840,29840,29840,14707,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14710,29840,14711,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14712,14713,14713,29840,29840,29840,29840,29840,29840,29840, 29840,14714, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14717,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14718,29840,29840,29840,29840,14717,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10999,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14722,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14723,29840,29840,29840,29840,14722, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14727,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,14728,29840, 29840,29840,29840,14727,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14732,29840,29840,29840,29840,14731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 14733, 139,10999,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,14733, 29840,29840,29840,29840,14735,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14733,14733, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14737,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14738,29840,29840,29840,29840, 14737,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14742,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10999,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,14743, 29840,29840,29840,29840,14742,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14746,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14747,29840,29840,29840,29840,14746,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,14748, 139,10999,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14748,29840,29840,29840,29840,14750,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,14748,14748, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14752,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14753,29840,29840,29840, 29840,14752,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14757,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14759,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14760,29840,29840, 29840,29840,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14760, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 13392,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14761,29840,29840, 29840,29840,14757,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14765, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14766,29840,29840,29840,29840,14765,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14769,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14770,29840,29840,29840,29840, 14769,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14772,14773,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139,29840,29840, 29840,29840,29840,29840,29840,14773, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,14775,14775,14775,14775,14775,14775,14775,14775, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14776,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14776, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14778,14779,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139,29840,29840,29840, 29840,29840,29840,29840,14779, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14782,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14783,29840,29840,29840,29840,14782,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14787,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14788,29840,29840, 29840,29840,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14788, 139, 139,29840, 139, 13412, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,12143,29840,29840,29840,29840,29840,14789,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14791, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14792,29840,29840,29840,29840,14791,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14796,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14797,29840,29840,29840,29840, 14796,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14801,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,10012,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,14802, 29840,29840,29840,29840,14801,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14806,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14807,29840,29840,29840,29840,14806,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14810,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14811,29840,29840,29840, 29840,29840,29840,10009, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14811, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14813,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14814,29840,29840,29840,29840,14813,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14816,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14817,29840,29840, 29840,29840,14816,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14822, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14823,29840,29840,29840,29840,14822,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14827,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14828,29840,29840,29840,29840, 14827,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14831,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14832,29840, 29840,29840,29840,29840,29840,10009, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14832, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14834,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,14835,29840,29840,29840,29840, 14834,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14837,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139,14838, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14839,29840,29840,29840,29840,14837,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,14838, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14842,29840,29840,29840,29840, 14840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139, 8360, 7621, 139,12182,12182,12182,12182, 12182,12182,12182,12182,12182, 139, 139, 139, 139, 139, 139, 139, 8360, 8360, 8360, 8360, 8360, 9134, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 139, 139, 139, 139, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360,14846,14847,14847,14847,14847,14847, 14847,14847,14847,13470,29840,29840,29840,29840,29840,29840, 14847,14847,14847,14847,14847,14848,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14847,14847,14847, 14847,14847,14847,14849,14850,14850,14850,14850,14850,14850, 14850,14850,14851,29840,29840,29840,29840,29840,29840,14850, 14850,14850,14850,14850,14852,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14850,14850,14850,14850, 14850,14850, 7624,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14855,14856,14856,14856,14856,14856,14856, 14856,14856,14857,29840,29840,29840,29840,29840,29840,14856, 14856,14856,14856,14856,14858,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14856,14856,14856,14856, 14856,14856,14863,14864,14864,14864,14864,14864,14864,14864, 14864,12197,29840,29840,29840,29840,29840,29840,14864,14864, 14864,14864,14864,14865,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14864,14864,14864,14864,14864, 14864,14867,14868,14868,14868,14868,14868,14868,14868,14868, 14869,29840,29840,29840,29840,29840,29840,14868,14868,14868, 14868,14868,14870,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14868,14868,14868,14868,14868,14868, 14877,14878,14878,14878,14878,14878,14878,14878,14878,12209, 29840,29840,29840,29840,29840,29840,14878,14878,14878,14878, 14878,14879,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14878,14878,14878,14878,14878,14878,14881, 14882,14882,14882,14882,14882,14882,14882,14882,14883,29840, 29840,29840,29840,29840,29840,14882,14882,14882,14882,14882, 14884,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14882,14882,14882,14882,14882,14882,14891,14892, 14893,14894,14894,14894,14894,14894,14894,29840,29840,29840, 29840,29840,29840,29840,11082,11082,11082,11082,11082,11086, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11082,11082,11082,11082,11082,11082,14895,14896,14896, 14896,14896,14896,14896,14896,14896,13508,29840,29840,29840, 29840,29840,29840,14896,14896,14896,14896,14896,14897,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14896,14896,14896,14896,14896,14896,14898,14899,14899,14899, 14899,14899,14899,14899,14899,29840,29840,29840,29840,29840, 29840,29840,14899,14899,14899,14899,14899,14900,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14899, 14899,14899,14899,14899,14901,14907,29840,11095,11095,11095, 11095,11095,11095,11095,11095,11095,11098,29840,29840,29840, 29840,29840,29840,11095,11095,11095,11095,11095,11097,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11095,11095,11095,11095,11095,11095, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,12229, 8332, 139,14911,14912,14912,14912,14912,14912,14912,14912,14912, 8339, 139, 139, 139, 139, 139, 139,14912,14912,14912, 14912,14912,14913,12229,12229,12229,12229,12229,12229,12229, 12229,12229,12229,12229,12229,12229,12229,12229,12229,12229, 139, 139, 139,12233,14912,14912,14912,14912,14912,14912, 12229,12229,12229,12229,12229,12229,12229,12229,12229,12229, 12229,12229,12229,12229,12229,12229,12229,12229,12229, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14915,29840,29840,29840,29840,13524,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139,12229,12229,12229,12229, 12229,12229,12229,12229,12229, 139,29840,29840,29840,29840, 29840,29840,12229,12229,12229,12229,12229,12239,29840,29840, 29840,29840,29840,14916,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12229, 12229,12229,12229,12229,12229, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,11027,29840,29840,14918,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 8356, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 140,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358,29840,10000, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14920,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14921,29840,29840,29840,29840,14920,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14925,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 12326,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14926,29840,29840, 29840,29840,14925,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14928, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14929,29840,29840,29840,29840,14928,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,14931,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14932,29840,29840,29840,29840, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14932, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 14936,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14937,29840,29840,29840,29840,14936,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,14941,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14942,29840,29840,29840, 29840,14941,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14945,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14946,29840,29840,29840,29840,14945,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 12326,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14948,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14949,29840,29840,29840, 139, 139, 9211,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14949, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,14951,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14952,29840,29840,29840,29840,14951,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,14954,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 12326,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14955,29840,29840, 29840,29840,14954,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14957, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14958,29840,29840,29840, 139, 139, 9211, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14958, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14960,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 14961,29840,29840,29840,29840,14960,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14965,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,14966,29840,29840,29840,29840,14965, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,14837,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,14838,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14970, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 6967,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,13636,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 6967, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,13637,29840,29840,29840, 29840,13636,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,14985,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 14986,29840,29840,29840,29840,14985,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,14990,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14991,29840,29840,29840,29840,14990, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,14995,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,14996,29840, 29840,29840,29840,14995,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 15002,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,13694, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,12438,29840, 29840,15006,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,15026,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15027,29840, 29840,29840,29840,15026,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 15031,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15032,29840,29840,29840,29840,15031,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,15036,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15037,29840,29840,29840, 29840,15036,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,15041,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 15042,29840,29840,29840,29840,15041,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,15046,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15047,29840,29840,29840,29840,15046, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,15051,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15052,29840, 29840,29840,29840,15051,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 15055,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15056,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15056, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,15058,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15059,29840, 29840,29840,29840,15058,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 15061,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15062,29840,29840,29840,29840,15061,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,15067,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15068,29840,29840,29840, 29840,15067,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,15072,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 15073,29840,29840,29840,29840,15072,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,15076,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15077,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15077, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,15079,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 15080,29840,29840,29840,29840,15079,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,15084, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,13764,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,15084, 1597, 1597,29840, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15085,29840,29840,29840,29840, 13764,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15096,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,13789,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 7133,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,13790,29840, 29840,29840,29840,13789,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 15111,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15112,29840,29840,29840,29840,15111,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,15116,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15117,29840,29840,29840, 29840,15116,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,15121,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 15122,29840,29840,29840,29840,15121,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,15126,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15127,29840,29840,29840,29840,15126, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,15130,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15131,29840, 29840,29840,29840,15130,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 15133,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15134,29840,29840,29840, 7135, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15134, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,15136, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,15137,15137,15137,15137,15137, 15137,15137,15137,15137, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,15136,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2564, 2555, 8631, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,15140,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15141,29840,29840,29840,29840, 15140,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,15143,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15144,29840,29840,29840, 7135, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15144, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,15146,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15147,29840, 29840,29840,29840,15146,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 15151,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,15152,29840,29840,29840,29840,15151,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2564, 2555, 2555, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15197,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15198,29840,29840, 29840,29840,15197,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,15201,15201,15201,15201,15201,15201, 15201,15201,15201,29840,29840,29840,29840,29840,29840,29840, 15201,15201,15201,15201,15201,15202,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15201,15201,15201, 15201,15201,15201,15204,15205,15205,15205,15205,15205,15205, 15205,15205,12639,29840,29840,29840,29840,29840,29840,15205, 15205,15205,15205,15205,15206,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15205,15205,15205,15205, 15205,15205,15208,15208,15208,15208,15208,15208,15208,15208, 15208,15209,29840,29840,29840,29840,29840,29840,15208,15208, 15208,15208,15208,15210,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15208,15208,15208,15208,15208, 15208,15211,15211,15211,15211,15211,15211,15211,15211,15211, 29840,29840,29840,29840,29840,29840, 329,15211,15211,15211, 15211,15211,15212,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15211,15211,15211,15211,15211,15211, 15216,15216,15216,15216,15216,15216,15216,15216,15216,13918, 29840,29840,29840,29840,29840,29840,15216,15216,15216,15216, 15216,15217,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15216,15216,15216,15216,15216,15216,15218, 15218,15218,15218,15218,15218,15218,15218,15218,29840,29840, 29840,29840,29840,29840,29840,15218,15218,15218,15218,15218, 15219,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15218,15218,15218,15218,15218,15218,15223,15223, 15223,15223,15223,15223,15223,15223,15223,13928,29840,29840, 29840,29840,29840,29840,15223,15223,15223,15223,15223,15224, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15223,15223,15223,15223,15223,15223,15225,15225,15225, 15225,15225,15225,15225,15225,15225,29840,29840,29840,29840, 29840,29840,29840,15225,15225,15225,15225,15225,15226,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15225,15225,15225,15225,15225,15225,15231,15231,15231,15231, 15231,15231,15231,15231,15231,13940,29840,29840,29840,29840, 29840,29840,15231,15231,15231,15231,15231,15232,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15231, 15231,15231,15231,15231,15231,15233,15233,15233,15233,15233, 15233,15233,15233,15233,29840,29840,29840,29840,29840,29840, 29840,15233,15233,15233,15233,15233,15234,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15233,15233, 15233,15233,15233,15233,11553,29840,11514,11514,11514,11514, 11514,11514,11514,11514,11514,11517,29840,29840,29840,29840, 29840,29840,11514,11514,11514,11514,11514,11516,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11514, 11514,11514,11514,11514,11514,15242,15242,15242,15242,15242, 15242,15242,15242,15242,13956,29840,29840,29840,29840,29840, 29840,15242,15242,15242,15242,15242,15243,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15242,15242, 15242,15242,15242,15242,15244,15244,15244,15244,15244,15244, 15244,15244,15244,29840,29840,29840,29840,29840,29840,29840, 15244,15244,15244,15244,15244,15245,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15244,15244,15244, 15244,15244,15244,11528,11528,11528,11528,11528,11528,11528, 11528,11528,11531,29840,29840,29840,29840,29840,29840,11528, 11528,11528,11528,11528,11530,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,11528,11528,11528,11528, 11528,11528,11524,11524,11524,11524,11524,11524,11524,11524, 11524, 9534,29840,29840,29840,29840,29840,29840,11524,11524, 11524,11524,11524,11525,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,11524,11524,11524,11524,11524, 11524,15253,15254,15254,15254,15254,15254,15254,15254,15254, 12688,29840,29840,29840,29840,29840,29840,15254,15254,15254, 15254,15254,15255,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15254,15254,15254,15254,15254,15254, 15257,15257,15257,15257,15257,15257,15257,15257,15257,15258, 29840,29840,29840,29840,29840,29840,15257,15257,15257,15257, 15257,15259,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15257,15257,15257,15257,15257,15257,15265, 15266,15267,15268,15268,15268,15268,15268,15268,29840,29840, 29840,29840,29840,29840,29840,11545,11545,11545,11545,11545, 11549,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,11545,11545,11545,11545,11545,11545,15269,15269, 15269,15269,15269,15269,15269,15269,15269,10499,29840,29840, 29840,29840,29840,29840,11542,11542,11542,11542,11542,11543, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11542,11542,11542,11542,11542,11542,15286,15286,15286, 15286,15286,15286,15286,15286,15286,13999,29840,29840,29840, 29840,29840,29840,15286,15286,15286,15286,15286,15287,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15286,15286,15286,15286,15286,15286,14001,14001,14001,14001, 14001,14001,14001,14001,14001,15288,29840,29840,29840,29840, 29840,29840,14001,14001,14001,14001,14001,14002,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14001, 14001,14001,14001,14001,14001,15290,15290,15290,15290,15290, 15290,15290,15290,15290,29840,29840,29840,29840,29840,29840, 29840,15290,15290,15290,15290,15290,15291,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4455,29840,29840,29840,15290,15290, 15290,15290,15290,15290,15293,15293,15293,15293,15293,15293, 15293,15293,15293,12723,29840,29840,29840,29840,29840,29840, 15293,15293,15293,15293,15293,15294,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15293,15293,15293, 15293,15293,15293,15296,15296,15296,15296,15296,15296,15296, 15296,15296,29840,29840,29840,29840,29840,29840,29840,15296, 15296,15296,15296,15296,15297,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15296,15296,15296,15296, 15296,15296,15300,15300,15300,15300,15300,15300,15300,15300, 15300,12732,29840,29840,29840,29840,29840,29840,15300,15300, 15300,15300,15300,15301,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15300,15300,15300,15300,15300, 15300,15303,15303,15303,15303,15303,15303,15303,15303,15303, 29840,29840,29840,29840,29840,29840,29840,15303,15303,15303, 15303,15303,15304,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15303,15303,15303,15303,15303,15303, 15306,15307,15308,15309,15309,15309,15309,15309,15309,29840, 29840,29840,29840,29840,29840,29840,11583,11583,11583,11583, 11583,11584,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11583,11583,11583,11583,11583,11583,15310, 15310,15310,15310,15310,15310,15310,15310,15310,12741,29840, 29840,29840,29840,29840,29840,15310,15310,15310,15310,15310, 15311,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15310,15310,15310,15310,15310,15310,15313,15313, 15313,15313,15313,15313,15313,15313,15313,29840,29840,29840, 29840,29840,29840,29840,15313,15313,15313,15313,15313,15314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15313,15313,15313,15313,15313,15313,15316,15317,15318, 15319,15319,15319,15319,15319,15319,29840,29840,29840,29840, 29840,29840,29840,11590,11590,11590,11590,11590,11591,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11590,11590,11590,11590,11590,11590, 8817,29840,15320,15320, 15320,15320,15320,15320,15320,15320,15320,10542,29840,29840, 29840,29840,29840,29840,11588,11588,11588,11588,11588,11589, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11588,11588,11588,11588,11588,11588,15321,15321,15321, 15321,15321,15321,15321,15321,15321,12754,29840,29840,29840, 29840,29840,29840,15321,15321,15321,15321,15321,15322,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15321,15321,15321,15321,15321,15321,15324,15324,15324,15324, 15324,15324,15324,15324,15324,29840,29840,29840,29840,29840, 29840,29840,15324,15324,15324,15324,15324,15325,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15324, 15324,15324,15324,15324,15324,15327,15328,15329,15330,15330, 15330,15330,15330,15330,29840,29840,29840,29840,29840,29840, 29840,11598,11598,11598,11598,11598,11599,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,11598,11598, 11598,11598,11598,11598,15331,15331,15331,15331,15331,15331, 15331,15331,15331,10554,29840,29840,29840,29840,29840,29840, 11596,11596,11596,11596,11596,11597,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,11596,11596,11596, 11596,11596,11596,15332,15332,15332,15332,15332,15332,15332, 15332,15332,12768,29840,29840,29840,29840,29840,29840,15332, 15332,15332,15332,15332,15333,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15332,15332,15332,15332, 15332,15332,15335,15335,15335,15335,15335,15335,15335,15335, 15335,29840,29840,29840,29840,29840,29840,29840,15335,15335, 15335,15335,15335,15336,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15335,15335,15335,15335,15335, 15335,15338,15339,15340,15341,15341,15341,15341,15341,15341, 29840,29840,29840,29840,29840,29840,29840,11609,11609,11609, 11609,11609,11610,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,11609,11609,11609,11609,11609,11609, 15342,15342,15342,15342,15342,15342,15342,15342,15342,10570, 29840,29840,29840,29840,29840,29840,11607,11607,11607,11607, 11607,11608,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,11607,11607,11607,11607,11607,11607,15343, 15343,15343,15343,15343,15343,15343,15343,15343,14048,29840, 29840,29840,29840,29840,29840,15343,15343,15343,15343,15343, 15344,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15343,15343,15343,15343,15343,15343,15345,15345, 15345,15345,15345,15345,15345,15345,15345,29840,29840,29840, 29840,29840,29840,29840,15345,15345,15345,15345,15345,15346, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15345,15345,15345,15345,15345,15345,11622,11622,11622, 11622,11622,11622,11622,11622,11622,11623,29840,29840,29840, 29840,29840,29840,11622,11622,11622,11622,11622,11624,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11622,11622,11622,11622,11622,11622,11619,11619,11619,11619, 11619,11619,11619,11619,11619, 9621,29840,29840,29840,29840, 29840,29840,11619,11619,11619,11619,11619,11620,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11619, 11619,11619,11619,11619,11619, 5903, 5903,29840,15375, 5904, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 15376,15376,15376,15376,15376,15376,15376,15376,15376, 5903, 5903, 5903, 5903, 5903, 5903, 5903,15377,15377,15377,15377, 15377,15378,15377,15377,15377,15377,15377,15377,15377,15377, 15377,15377,15377,15377,15377,15377,15377,15377,15377, 5903, 5903,15379, 5903,15376,15376,15376,15376,15376,15376, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 5906, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 5903, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15422,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 10666,29840,29840,29840,15423, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840, 29840,29840,29840, 9703,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12867,29840, 29840,29840,29840,29840,29840,12868,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12869,29840,12870,29840,12872,29840,29840,12873,14133,29840, 29840,29840,12875,29840,29840,12876,29840,12877,29840,12878, 29840,12879,12880,14140, 3291,29840,12866,29840,29840,29840, 29840,29840,29840, 9703,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12867,29840, 29840,29840,29840,29840,29840,12868,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12869,29840,12870,29840,12872,29840,29840,12873,14133,29840, 29840,29840,12875,14143,29840,12876,29840,12877,29840,12878, 29840,12879,12880,12881, 1769,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1770,29840,29840,29840, 29840,29840,29840, 1771,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777,29840,29840, 1778,29840, 1779,29840,15454,29840, 1781, 1782, 1783, 1769,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1770,29840,29840,29840,29840,29840, 29840, 1771,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1772,29840,15455,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777,29840, 29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 3291,29840,12895,29840,29840,29840,29840,29840,29840,12896, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12897,29840,29840,29840,29840,29840, 29840,12898,29840,29840,29840,29840,29840,15457,29840,29840, 29840,29840,29840,29840,29840,29840,12899,29840,12900,29840, 12901,29840,29840,12902,12903,29840,29840,29840,12904,29840, 29840,12905,29840,12906,29840,12907,29840,12908,12909,12910, 14168,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14169,29840,15458,29840,29840,29840,29840,14170, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14171,29840,14172,29840,14173,29840, 29840,14174,14175,29840,29840,29840,14176,29840,29840,14177, 29840,14178,29840,14179,29840,14180,14181,14182,14168,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15459,29840,29840,29840,29840, 14169,29840,29840,29840,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,29840,14173,29840,29840,14174, 14175,29840,29840,29840,14176,29840,29840,14177,29840,14178, 29840,14179,29840,14180,14181,14182,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182,15460,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,15461,14173,29840,29840,14174,14175,29840,29840, 29840,14176,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 29840,14173,29840,15462,14174,14175,29840,29840,29840,14176, 29840,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,29840,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,29840,29840, 14177,29840,14178,29840,14179,29840,14180,14181,15463,14168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,15464,14177,29840, 14178,29840,14179,29840,14180,14181,14182,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,29840,14174,14175, 29840,29840,29840,14176,15465,29840,14177,29840,14178,29840, 14179,29840,14180,14181,14182,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15466, 29840,14172,29840,14173,29840,29840,14174,14175,29840,29840, 29840,14176,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,15467,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,15468,14175,29840,29840,29840, 15469,29840,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182,14168,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14169,29840,29840,29840,29840,29840, 29840,14170,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14171,29840,14172,29840, 14173,29840,29840,14174,14175,29840,29840,29840,14176,29840, 15470,14177,29840,14178,29840,14179,29840,14180,14181,14182, 14168,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14169,29840,29840,29840,29840,29840,29840,14170, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14171,29840,14172,29840,14173,29840, 29840,14174,14175,29840,29840,29840,14176,29840,29840,14177, 29840,14178,29840,14179,29840,14180,14181,14182,15471,14168, 29840,29840,29840,29840,29840,29840,29840,15472,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,15473,29840,29840,14174,14175, 29840,29840,29840,14176,29840,29840,15474,29840,14178,29840, 14179,29840,14180,14181,14182,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15475, 29840,14172,29840,14173,29840,29840,14174,14175,29840,29840, 29840,14176,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182, 3291,29840,12895,29840,29840,29840,29840, 29840,29840,12896,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12897,29840,29840, 15476,29840,29840,29840,12898,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12899, 29840,12900,29840,12901,29840,29840,12902,12903,29840,29840, 29840,12904,29840,29840,12905,29840,12906,29840,12907,29840, 12908,12909,12910, 3291,29840,12912,29840,29840,29840,29840, 29840,29840,12913,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12914,29840,29840, 29840,29840,29840,29840,12915,29840,29840,29840,29840,29840, 15493,29840,29840,29840,29840,29840,29840,29840,29840,12916, 29840,12917,29840,12918,29840,29840,12919,12920,29840,29840, 29840,12921,29840,29840,12922,29840,12923,29840,12924,29840, 12925,12926,12927,14201,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14202,29840,15494,29840,29840, 29840,29840,14203,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14204,29840,14205, 29840,14206,29840,29840,14207,14208,29840,29840,29840,14209, 29840,29840,14210,29840,14211,29840,14212,29840,14213,14214, 14215,14201,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15495,29840, 29840,29840,29840,14202,29840,29840,29840,29840,29840,29840, 14203,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14204,29840,14205,29840,14206, 29840,29840,14207,14208,29840,29840,29840,14209,29840,29840, 14210,29840,14211,29840,14212,29840,14213,14214,14215,14201, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14202,29840,29840,29840,29840,29840,29840,14203,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14204,29840,14205,29840,14206,29840,29840, 14207,14208,29840,29840,29840,14209,29840,29840,14210,29840, 14211,29840,14212,29840,14213,14214,14215,15496,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,15497,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14204,29840,14205,29840,14206,29840,15498,14207,14208,29840, 29840,29840,14209,29840,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,15499,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 15500,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,15501,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15502,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,15503,14201,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14202, 29840,29840,29840,29840,29840,29840,14203,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14204,29840,14205,29840,14206,29840,29840,15504,14208, 29840,29840,29840,15505,29840,29840,14210,29840,14211,29840, 14212,29840,14213,14214,14215,14201,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14202,29840,29840, 29840,29840,29840,29840,14203,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14204, 29840,14205,29840,14206,29840,29840,14207,14208,29840,29840, 29840,14209,29840,15506,14210,29840,14211,29840,14212,29840, 14213,14214,14215,14201,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14202,29840,29840,29840,29840, 29840,29840,14203,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14204,29840,14205, 29840,14206,29840,29840,14207,14208,29840,29840,29840,14209, 29840,29840,14210,29840,14211,29840,14212,29840,14213,14214, 14215,15507,14201,29840,29840,29840,29840,29840,29840,29840, 15508,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,15509,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,15510, 29840,14211,29840,14212,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15511,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215, 3291,29840,12912,29840, 29840,29840,29840,29840,29840,12913,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12914,29840,29840,15512,29840,29840,29840,12915,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12916,29840,12917,29840,12918,29840,29840,12919, 12920,29840,29840,29840,12921,29840,29840,12922,29840,12923, 29840,12924,29840,12925,12926,12927, 3291,29840, 3292,29840, 29840,29840,29840,29840,29840, 1768,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3293,29840,29840,29840,29840,29840,29840, 3294,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 15529,29840,29840,29840, 3301,29840,29840, 3302,29840, 3303, 29840, 3304,29840, 3305, 3306, 3307, 3291,29840, 3292,29840, 29840,29840,29840,29840,29840, 1768,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3293,29840,29840,29840,29840,29840,29840, 3294,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301, 3922,15530, 3302,29840, 3303, 29840, 3304,29840, 3305, 3306, 3307,10695,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10696,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10697,29840, 29840,29840,29840,29840,29840,10698,29840,29840,15531,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10699,29840,10700,29840,10701,29840,29840,10702,10703,29840, 29840,29840,10704,29840,29840,10705,29840,10706,29840,10707, 29840,10708,10709,10710,10695,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10696,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10697,29840,29840,29840, 29840,29840,29840,10698,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10699,29840, 10700,29840,10701,29840,29840,10702,10703,29840,29840,29840, 10704,29840,29840,10705,29840,10706,29840,15532,29840,10708, 10709,10710,10695,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10696,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10697,29840,29840,29840,29840,29840, 29840,10698,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10699,29840,10700,29840, 10701,29840,29840,11746,10703,29840,29840,29840,11747,29840, 15533,10705,29840,10706,29840,10707,29840,10708,10709,10710, 3291,29840,14249,29840,29840,29840,29840,29840,29840,10694, 29840,29840,14250,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14251,29840,29840,29840,29840,29840, 29840,14252,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14253,29840,14254,29840, 14256,29840,29840,14257,15542,29840,29840,29840,14259,29840, 29840,14260,29840,14261,29840,14262,29840,14263,14264,14265, 3291,29840,14249,29840,29840,29840,29840,29840,29840,10694, 29840,29840,14250,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14251,29840,29840,29840,29840,29840, 29840,14252,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14253,29840,14254,29840, 14256,29840,29840,14257,15542,29840,29840,29840,14259,29840, 29840,14260,29840,14261,29840,14262,29840,14263,14264,14265, 2223,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2224,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2225,29840,29840,29840,29840,29840,29840, 2226, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15574,29840, 2228,29840, 2229,29840, 29840, 2230, 2231,29840,29840,29840, 2232,29840, 2747, 2233, 29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 2223,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2224,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234, 29840, 2235, 3332,15575, 2237, 2238, 8137,15576,29840,29840, 29840,29840,29840,29840,29840,15577, 8139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8140,29840, 29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840, 29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151, 29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15578,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8140,29840,29840,29840, 29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15579,29840,29840, 29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840, 29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8142,29840, 8916,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840, 29840, 8149,29840, 8150,29840, 8917,29840, 8152, 8918, 8154, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136, 29840,29840,10729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10730,29840,29840,29840,29840,29840, 29840,10731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10732,29840,10733,10761, 10735,29840,29840,10736,10762,29840,29840,29840,10738,29840, 29840,10739,29840,10740,29840,10741,29840,10742,10743,10744, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136, 29840,29840,15582,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10730,29840,29840,29840,29840,29840, 29840,10731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10732,29840,10733,10761, 10735,29840,29840,10736,15583,29840,29840,29840,10738,29840, 29840,10739,29840,10740,29840,10741,29840,10742,10743,10744, 3291,29840, 3955,29840,29840,29840,29840,29840,29840, 2222, 29840,29840, 3956,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3957,29840,29840,29840,29840,29840, 29840, 3958,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3959,29840, 4628,29840, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840, 29840, 3966,29840, 3967,29840, 4629,29840, 3969, 4630, 3971, 3291,29840,14316,29840,29840,29840,29840,29840,29840,14317, 29840,29840,14318,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14319,29840,29840,29840,29840,29840, 29840,14320,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14321,29840,14322,29840, 14323,29840,29840,14324,14325,29840,29840,29840,14326,29840, 29840,14327,29840,14328,29840,14329,29840,14330,14331,14332, 3291,29840,14316,29840,29840,29840,29840,29840,29840,14317, 29840,29840,14318,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14319,29840,15612,29840,29840,29840, 29840,14320,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14321,29840,14322,29840, 14323,29840,29840,14324,14325,29840,29840,29840,14326,29840, 29840,14327,29840,14328,29840,14329,29840,14330,14331,14332, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,29840,15619,29840, 29840,15620,15621,29840,29840,29840,15622,29840,29840,15623, 29840,15624,29840,15625,29840,15626,15627,15628, 3291,29840, 14334,29840,29840,29840,29840,29840,29840,14335,29840,29840, 14336,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14337,29840,29840,29840,29840,29840,29840,14338, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14339,29840,14340,29840,14341,29840, 29840,14342,14343,29840,29840,29840,14344,29840,29840,14345, 29840,14346,29840,14347,29840,14348,14349,14350, 3291,29840, 14334,29840,29840,29840,29840,29840,29840,14335,29840,29840, 14336,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14337,29840,15649,29840,29840,29840,29840,14338, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14339,29840,14340,29840,14341,29840, 29840,14342,14343,29840,29840,29840,14344,29840,29840,14345, 29840,14346,29840,14347,29840,14348,14349,14350,15650,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15651,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15652,29840,29840,29840,29840,29840,29840,15653,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15654,29840,15655,29840,15656,29840,29840,15657, 15658,29840,29840,29840,15659,29840,29840,15660,29840,15661, 29840,15662,29840,15663,15664,15665, 3291,29840, 3955,29840, 29840,29840,29840,29840,29840, 2222,29840,29840, 3956,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15686,29840,29840,29840,29840,29840,29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3959,29840, 3960, 5310, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840,29840, 3966,29840, 3967, 29840, 3968,29840, 3969, 3970, 3971, 783, 783, 784, 785, 786, 783, 783, 783,29840,29840, 783, 783, 783,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 783, 783, 783, 783, 783, 783, 1086,29840,29840, 29840,29840, 789,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 783, 783, 783,15697,13022,29840,13022,29840,29840, 14376,14376,14376,14376,14376,14376,14376,14376,14376,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 140,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13024,29840, 29840,13025, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15712,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 15713,29840,29840,29840,29840,15712,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139,29840,13032, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,11839,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150, 177, 177, 177, 177, 177, 177, 177, 177, 177, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 363,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 175, 175, 175, 175, 175, 175, 175, 175, 175,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,15717,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15718, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15719,29840,29840,29840,29840,15717, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 15718, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15720,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,15722, 29840,29840,29840,29840,15720,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1137, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,11854,29840,29840,29840,29840,29840,15726,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 843, 139, 139,29840, 139,10955, 139, 139, 139, 139, 139, 139, 139,11853, 8332, 139,11853,11853, 11853,11853,11853,11853,11853,11853,11853, 1137, 139, 139, 139, 139, 139, 139,11855,11855,11855,11855,11855,11856, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855, 139, 139, 139, 843,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15728,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15729, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15730,29840,29840,29840,29840, 15728,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15729, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15731,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 15733,29840,29840,29840,29840,15731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15742,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15743, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15744,29840,29840,29840,29840, 15742,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15743, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15745,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 15747,29840,29840,29840,29840,15745,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15752,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15753, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15754,29840,29840,29840,29840, 15752,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15753, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15755,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 15757,29840,29840,29840,29840,15755,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 148, 149, 139, 139, 139,29840,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840, 162,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,29840,29840,29840,15765, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15770,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15771,29840,29840,29840, 29840,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15771, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,13176,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139,14562, 139, 139, 139, 139, 139, 139, 139,29840,14563, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13176, 29840,29840,15772,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,15775,15775,15775,15775,15775,15775,15775,15775,15775, 29840,29840,29840,29840,29840,29840,29840,15775,15775,15775, 15775,15775,15776,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15775,15775,15775,15775,15775,15775, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15779,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,14690, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,15780, 29840,29840,29840,29840,15779,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,14690, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15784,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,15785,29840,29840,29840,29840,15784, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15789,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,15790,29840, 29840,29840,29840,15789,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 15794,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,15795,29840,29840,29840,29840,15794,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15799,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,15800,29840,29840,29840, 29840,15799,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15803,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15804, 29840,29840,29840,29840,29840,29840,10009, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15804, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15806,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,15807,29840,29840,29840, 29840,15806,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15809,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 15810,29840,29840,29840,29840,15809,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15814,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,15815,29840,29840,29840,29840,15814, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15818,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15819,29840,29840, 29840,29840,29840,29840,10009, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15819, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15821,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,15822,29840,29840,29840,29840,15821, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15824,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,15825, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,15826, 29840,29840,29840,29840,15824,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,15825, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15827,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15829,29840,29840,29840,29840,15827, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 9084, 8332, 139,13220,13220,13220,13220,13220, 13220,13220,13220,13220, 139, 139, 139, 139, 139, 139, 139, 9084, 9084, 9084, 9084, 9084, 9923, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 139, 139, 139, 139, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084,15833,15834,15834,15834,15834,15834,15834, 15834,15834,14624,29840,29840,29840,29840,29840,29840,15834, 15834,15834,15834,15834,15835,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15834,15834,15834,15834, 15834,15834,15836,15837,15837,15837,15837,15837,15837,15837, 15837,15838,29840,29840,29840,29840,29840,29840,15837,15837, 15837,15837,15837,15839,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15837,15837,15837,15837,15837, 15837, 8334,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15842,15843,15843,15843,15843,15843,15843,15843, 15843,15844,29840,29840,29840,29840,29840,29840,15843,15843, 15843,15843,15843,15845,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15843,15843,15843,15843,15843, 15843,15850,15851,15851,15851,15851,15851,15851,15851,15851, 13235,29840,29840,29840,29840,29840,29840,15851,15851,15851, 15851,15851,15852,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15851,15851,15851,15851,15851,15851, 15854,15855,15855,15855,15855,15855,15855,15855,15855,15856, 29840,29840,29840,29840,29840,29840,15855,15855,15855,15855, 15855,15857,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15855,15855,15855,15855,15855,15855,15864, 15865,15865,15865,15865,15865,15865,15865,15865,13247,29840, 29840,29840,29840,29840,29840,15865,15865,15865,15865,15865, 15866,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15865,15865,15865,15865,15865,15865,15868,15869, 15869,15869,15869,15869,15869,15869,15869,15870,29840,29840, 29840,29840,29840,29840,15869,15869,15869,15869,15869,15871, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15869,15869,15869,15869,15869,15869,15878,15879,15880, 15881,15881,15881,15881,15881,15881,29840,29840,29840,29840, 29840,29840,29840,12016,12016,12016,12016,12016,12020,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12016,12016,12016,12016,12016,12016,15882,15883,15883,15883, 15883,15883,15883,15883,15883,14662,29840,29840,29840,29840, 29840,29840,15883,15883,15883,15883,15883,15884,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15883, 15883,15883,15883,15883,15883,15885,15886,15886,15886,15886, 15886,15886,15886,15886,29840,29840,29840,29840,29840,29840, 29840,15886,15886,15886,15886,15886,15887,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15886,15886, 15886,15886,15886,15888,15894,29840,12029,12029,12029,12029, 12029,12029,12029,12029,12029,12032,29840,29840,29840,29840, 29840,29840,12029,12029,12029,12029,12029,12031,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12029, 12029,12029,12029,12029,12029, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,11019,29840,29840,15898,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15901,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,15902, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15903,29840,29840,29840,29840,15901,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,15902, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15904,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15906,29840,29840,29840, 29840,15904,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15911,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 15912,29840,29840,29840,29840,15911,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15916,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15917,29840,29840,29840,29840,15916, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15921,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,15922,29840, 29840,29840,29840,15921,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 15925,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15926,29840,29840,29840,29840,15925,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15928,15929,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,29840,29840,29840,29840,29840, 29840,29840,15929, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,15931, 15931,15931,15931,15931,15931,15931,15931, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15932, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15932,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,15934,15935,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,29840,29840,29840,29840,29840,29840, 29840,15935, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15937,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 15938,29840,29840,29840,29840,15937,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10999,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15942,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15943,29840,29840,29840,29840,15942, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15947,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,15948,29840, 29840,29840,29840,15947,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 15952,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15953,29840,29840,29840,29840,15952,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10999,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15956,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15957,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15957, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 15959,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15960,29840,29840,29840,29840,15959,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15962,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15963,29840,29840,29840, 29840,15962,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15968,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 15969,29840,29840,29840,29840,15968,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10999,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15973,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15974,29840,29840,29840,29840,15973, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15977,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15978,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15978, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10999,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15980,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15981,29840,29840,29840,29840,15980, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15983,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,15984,29840, 29840,29840,29840,15983,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 15988,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,15989,29840,29840,29840,29840,15988,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,15991,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15992,29840,29840,29840, 29840,15991,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15994,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15995,29840,29840,29840,29840,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15995, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,15999,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 13392,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,16000,29840,29840, 29840,29840,15999,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16004, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,16005,29840,29840,29840,29840,16004,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,16008,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,16009,29840,29840,29840,29840, 16008,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16011,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,16012,29840,29840,29840,10009, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16012, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16014,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,16015,16015,16015,16015,16015,16015,16015,16015, 16015, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,16014,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139,12137, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 16018,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,16019,29840,29840,29840,29840,16018,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,13392,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,16021,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16022,29840, 29840,29840,10009, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16022, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,16025,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,16026,29840,29840,29840,29840, 16025,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16030,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,16031, 29840,29840,29840,29840,16030,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,16033,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16034,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,16034, 139, 139,29840, 139,16035, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12143,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,16037,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,16038,29840,29840, 29840,29840,16037,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16042, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16043,29840,29840,29840,29840,16042,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,16049,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,16050, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16051,29840,29840,29840, 29840,16049,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16050, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16052, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16054,29840,29840,29840,29840,16052,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,16058,16059,16059, 16059,16059,16059,16059,16059,16059,13470,29840,29840,29840, 29840,29840,29840,16059,16059,16059,16059,16059,16060,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16059,16059,16059,16059,16059,16059,16062,16063,16063,16063, 16063,16063,16063,16063,16063,16064,29840,29840,29840,29840, 29840,29840,16063,16063,16063,16063,16063,16065,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16063, 16063,16063,16063,16063,16063, 7624,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16067,16067,16067,16067, 16067,16067,16067,16067,16067,29840,29840,29840,29840,29840, 29840,29840,16067,16067,16067,16067,16067,16068,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16067, 16067,16067,16067,16067,16069,16072,16073,16073,16073,16073, 16073,16073,16073,16073,14857,29840,29840,29840,29840,29840, 29840,16073,16073,16073,16073,16073,16074,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16073,16073, 16073,16073,16073,16073,16075,16075,16075,16075,16075,16075, 16075,16075,16075,29840,29840,29840,29840,29840,29840,29840, 16075,16075,16075,16075,16075,16076,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,16075,16075,16075, 16075,16075,16077,16082,16083,16083,16083,16083,16083,16083, 16083,16083,14869,29840,29840,29840,29840,29840,29840,16083, 16083,16083,16083,16083,16084,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16083,16083,16083,16083, 16083,16083,16085,16085,16085,16085,16085,16085,16085,16085, 16085,29840,29840,29840,29840,29840,29840,29840,16085,16085, 16085,16085,16085,16086,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16085,16085,16085,16085,16085, 16087,16093,16094,16094,16094,16094,16094,16094,16094,16094, 14883,29840,29840,29840,29840,29840,29840,16094,16094,16094, 16094,16094,16095,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,16094,16094,16094,16094,16094,16094, 16096,16096,16096,16096,16096,16096,16096,16096,16096,29840, 29840,29840,29840,29840,29840,29840,16096,16096,16096,16096, 16096,16097,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16096,16096,16096,16096,16096,16098,14907, 29840,12208,12208,12208,12208,12208,12208,12208,12208,12208, 12211,29840,29840,29840,29840,29840,29840,12208,12208,12208, 12208,12208,12210,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12208,12208,12208,12208,12208,12208, 16107,16108,16108,16108,16108,16108,16108,16108,16108,13508, 29840,29840,29840,29840,29840,29840,16108,16108,16108,16108, 16108,16109,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16108,16108,16108,16108,16108,16108,16111, 16112,16112,16112,16112,16112,16112,16112,16112,16113,29840, 29840,29840,29840,29840,29840,16112,16112,16112,16112,16112, 16114,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16112,16112,16112,16112,16112,16112,16121,16122, 16123,16124,16124,16124,16124,16124,16124,29840,29840,29840, 29840,29840,29840,29840,12221,12221,12221,12221,12221,12225, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12221,12221,12221,12221,12221,12221,16129,16129,16129, 16129,16129,16129,16129,16129,16129,11098,29840,29840,29840, 29840,29840,29840,12218,12218,12218,12218,12218,12219,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12218,12218,12218,12218,12218,12218, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8339, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,12239,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,12233, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8343, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 12239,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,12233, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13524,29840, 29840,16130,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12140,29840,29840,29840,29840, 29840,29840,29840,16132,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16134,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16135,29840,29840,29840,29840,16134, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,16140,29840, 29840,29840,29840,16139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 16143,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16144,29840,29840,29840,29840,16143,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,16147,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16148,29840,29840,29840, 29840,16147,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16150,29840, 16151,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16152,16152,16153,29840, 29840,29840,29840,29840,29840,29840,29840,16154, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,16157,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16158,29840,29840,29840, 29840,16157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16162,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 16163,29840,29840,29840,29840,16162,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 12326,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16167,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16168,29840,29840,29840,29840,16167, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16171,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,16172,29840, 29840,29840,29840,16171,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,16173, 139,12326,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16173,29840,29840,29840,29840, 16175,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211,16173,16173, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16177, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16178,29840,29840,29840,29840,16177,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,16181,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16182,29840,29840,29840,29840, 16181,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16185,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,16186, 29840,29840,29840,29840,16185,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,16187, 139,12326, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16187,29840,29840,29840, 29840,16189,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211,16187,16187, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 16049,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16050, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,16204,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 16205,29840,29840,29840,29840,16204,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,16209,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16210,29840,29840,29840,29840,16209, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,13694, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,12438,29840,29840,29840, 29840,29840,16214,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 7776,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,15026,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 7776, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,15027,29840,29840,29840, 29840,15026,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,16234,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 16235,29840,29840,29840,29840,16234,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,16239,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16240,29840,29840,29840,29840,16239, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,16244,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,16245,29840, 29840,29840,29840,16244,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840, 16251,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,15084, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,13764,29840, 29840,16255,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16265,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,16266,29840, 29840,29840,29840,16265,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139,16272,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16273,16273,16273,16273,16273, 16273,16273,16273,16273,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3077,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16272, 29840,29840,29840,29840, 2564, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,16282,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16283,29840,29840,29840,29840,16282,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840,29840,29840,29840,29840,16287,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16288,29840,29840, 29840,29840,16287,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,16292, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16293,29840,29840,29840,29840,16292,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,16297,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16298,29840,29840,29840,29840, 16297,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,16302,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16303, 29840,29840,29840,29840,16302,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,16306,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16307,29840,29840,29840,29840,16306,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16308, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 16308,29840,29840,29840,29840,16310,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555,16308,16308, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,16312,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16313,29840,29840,29840, 29840,16312,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,16317,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 16318,29840,29840,29840,29840,16317,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,16321,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16322,29840,29840,29840,29840,16321, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16323, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,16323,29840,29840,29840,29840,16325,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555,16323,16323, 9412, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3077,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 29840, 8631, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,16330,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 3741, 3741, 3742, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,29840, 3741, 3741,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3741, 3741, 3741, 3741, 3741, 3741, 3741,29840,29840,29840,29840,29840,16353,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4411, 3741, 3741, 3741, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,16366,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16367,29840,29840, 29840,29840,16366,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,16370,16370,16370,16370,16370,16370, 16370,16370,16370,29840,29840,29840,29840,29840,29840,29840, 16370,16370,16370,16370,16370,16371,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,16370,16370,16370, 16370,16370,16370,16374,16374,16374,16374,16374,16374,16374, 16374,16374,15209,29840,29840,29840,29840,29840,29840,16374, 16374,16374,16374,16374,16375,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16374,16374,16374,16374, 16374,16374,16376,16376,16376,16376,16376,16376,16376,16376, 16376,16377,29840,29840,29840,29840,29840,29840,16376,16376, 16376,16376,16376,16378,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16376,16376,16376,16376,16376, 16376,16380,16380,16380,16380,16380,16380,16380,16380,16380, 16381,29840,29840,29840,29840,29840, 329,16380,16380,16380, 16380,16380,16382,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,16380,16380,16380,16380,16380,16380, 16386,16386,16386,16386,16386,16386,16386,16386,16386,13918, 29840,29840,29840,29840,29840,29840,16386,16386,16386,16386, 16386,16387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16386,16386,16386,16386,16386,16386,16389, 16389,16389,16389,16389,16389,16389,16389,16389,16390,29840, 29840,29840,29840,29840,29840,16389,16389,16389,16389,16389, 16391,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16389,16389,16389,16389,16389,16389,16395,16395, 16395,16395,16395,16395,16395,16395,16395,13928,29840,29840, 29840,29840,29840,29840,16395,16395,16395,16395,16395,16396, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,16395,16395,16395,16395,16395,16395,16398,16398,16398, 16398,16398,16398,16398,16398,16398,16399,29840,29840,29840, 29840,29840,29840,16398,16398,16398,16398,16398,16400,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16398,16398,16398,16398,16398,16398,16404,16405,16406,16407, 16407,16407,16407,16407,16407,29840,29840,29840,29840,29840, 29840,29840,12650,12650,12650,12650,12650,12654,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12650, 12650,12650,12650,12650,12650,16408,16408,16408,16408,16408, 16408,16408,16408,16408,13940,29840,29840,29840,29840,29840, 29840,16408,16408,16408,16408,16408,16409,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16408,16408, 16408,16408,16408,16408,16411,16411,16411,16411,16411,16411, 16411,16411,16411,16412,29840,29840,29840,29840,29840,29840, 16411,16411,16411,16411,16411,16413,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,16411,16411,16411, 16411,16411,16411,16417,16418,16419,16420,16420,16420,16420, 16420,16420,29840,29840,29840,29840,29840,29840,29840,12660, 12660,12660,12660,12660,12664,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12660,12660,12660,12660, 12660,12660,11553,29840,16421,16421,16421,16421,16421,16421, 16421,16421,16421,11517,29840,29840,29840,29840,29840,29840, 12658,12658,12658,12658,12658,12659,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12658,12658,12658, 12658,12658,12658,16422,16422,16422,16422,16422,16422,16422, 16422,16422,13956,29840,29840,29840,29840,29840,29840,16422, 16422,16422,16422,16422,16423,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16422,16422,16422,16422, 16422,16422,16425,16425,16425,16425,16425,16425,16425,16425, 16425,16426,29840,29840,29840,29840,29840,29840,16425,16425, 16425,16425,16425,16427,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16425,16425,16425,16425,16425, 16425,16431,16432,16433,16434,16434,16434,16434,16434,16434, 29840,29840,29840,29840,29840,29840,29840,12671,12671,12671, 12671,12671,12675,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12671,12671,12671,12671,12671,12671, 16435,16435,16435,16435,16435,16435,16435,16435,16435,11531, 29840,29840,29840,29840,29840,29840,12669,12669,12669,12669, 12669,12670,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12669,12669,12669,12669,12669,12669,16436, 16436,16436,16436,16436,16436,16436,16436,16436,15258,29840, 29840,29840,29840,29840,29840,16436,16436,16436,16436,16436, 16437,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16436,16436,16436,16436,16436,16436,16438,16438, 16438,16438,16438,16438,16438,16438,16438,29840,29840,29840, 29840,29840,29840,29840,16438,16438,16438,16438,16438,16439, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,16438,16438,16438,16438,16438,16438,12687,12687,12687, 12687,12687,12687,12687,12687,12687,12690,29840,29840,29840, 29840,29840,29840,12687,12687,12687,12687,12687,12689,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12687,12687,12687,12687,12687,12687,12683,12683,12683,12683, 12683,12683,12683,12683,12683,10499,29840,29840,29840,29840, 29840,29840,12683,12683,12683,12683,12683,12684,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12683, 12683,12683,12683,12683,12683,16463,16463,16463,16463,16463, 16463,16463,16463,16463,13999,29840,29840,29840,29840,29840, 29840,16463,16463,16463,16463,16463,16464,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16463,16463, 16463,16463,16463,16463,16466,16466,16466,16466,16466,16466, 16466,16466,16466,29840,29840,29840,29840,29840,29840,29840, 16466,16466,16466,16466,16466,16467,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4455,29840,29840,29840,16466,16466,16466, 16466,16466,16466,16469,16469,16469,16469,16469,16469,16469, 16469,16469,29840,29840,29840,29840,29840,29840,29840,16469, 16469,16469,16469,16469,16470,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16469,16469,16469,16469, 16469,16469,16472,16473,16474,16475,16475,16475,16475,16475, 16475,12719,29840,29840,29840,29840,29840,29840,12718,12718, 12718,12718,12718,12720,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12718,12718,12718,12718,12718, 12718,16476,16476,16476,16476,16476,16476,16476,16476,16476, 29840,29840,29840,29840,29840,29840,29840,16476,16476,16476, 16476,16476,16477,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,16476,16476,16476,16476,16476,16476, 8817,29840,12731,12731,12731,12731,12731,12731,12731,12731, 12731,12732,29840,29840,29840,29840,29840,29840,12731,12731, 12731,12731,12731,12733,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12731,12731,12731,12731,12731, 12731,16482,16482,16482,16482,16482,16482,16482,16482,16482, 29840,29840,29840,29840,29840,29840,29840,16482,16482,16482, 16482,16482,16483,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,16482,16482,16482,16482,16482,16482, 12740,12740,12740,12740,12740,12740,12740,12740,12740,12741, 29840,29840,29840,29840,29840,29840,12740,12740,12740,12740, 12740,12742,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12740,12740,12740,12740,12740,12740,12737, 12737,12737,12737,12737,12737,12737,12737,12737,10542,29840, 29840,29840,29840,29840,29840,12737,12737,12737,12737,12737, 12738,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12737,12737,12737,12737,12737,12737,16488,16488, 16488,16488,16488,16488,16488,16488,16488,29840,29840,29840, 29840,29840,29840,29840,16488,16488,16488,16488,16488,16489, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,16488,16488,16488,16488,16488,16488,12753,12753,12753, 12753,12753,12753,12753,12753,12753,12754,29840,29840,29840, 29840,29840,29840,12753,12753,12753,12753,12753,12755,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12753,12753,12753,12753,12753,12753,12750,12750,12750,12750, 12750,12750,12750,12750,12750,10554,29840,29840,29840,29840, 29840,29840,12750,12750,12750,12750,12750,12751,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12750, 12750,12750,12750,12750,12750,16494,16494,16494,16494,16494, 16494,16494,16494,16494,29840,29840,29840,29840,29840,29840, 29840,16494,16494,16494,16494,16494,16495,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16494,16494, 16494,16494,16494,16494,12767,12767,12767,12767,12767,12767, 12767,12767,12767,12768,29840,29840,29840,29840,29840,29840, 12767,12767,12767,12767,12767,12769,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12767,12767,12767, 12767,12767,12767,12764,12764,12764,12764,12764,12764,12764, 12764,12764,10570,29840,29840,29840,29840,29840,29840,12764, 12764,12764,12764,12764,12765,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12764,12764,12764,12764, 12764,12764,16500,16500,16500,16500,16500,16500,16500,16500, 16500,14048,29840,29840,29840,29840,29840,29840,16500,16500, 16500,16500,16500,16501,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16500,16500,16500,16500,16500, 16500,16503,16503,16503,16503,16503,16503,16503,16503,16503, 29840,29840,29840,29840,29840,29840,29840,16503,16503,16503, 16503,16503,16504,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,16503,16503,16503,16503,16503,16503, 16506,16507,16508,16509,16509,16509,16509,16509,16509,29840, 29840,29840,29840,29840,29840,29840,12780,12780,12780,12780, 12780,12781,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12780,12780,12780,12780,12780,12780,16510, 16510,16510,16510,16510,16510,16510,16510,16510,11623,29840, 29840,29840,29840,29840,29840,12778,12778,12778,12778,12778, 12779,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12778,12778,12778,12778,12778,12778, 5904,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16534, 16534,16534,16534,16534,16534,16534,16534,16534,29840,16534, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5905,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5906,16537, 5904,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15376,15376, 15376,15376,15376,15376,15376,15376,15376,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5905, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15379, 29840,15376,15376,15376,15376,15376,15376,29840,29840,29840, 29840,29840,29840,29840, 5906, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16578,16578,16578,16578, 16578,16578,16578,16578,16578,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,16579,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712, 29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,29840, 9712,16580,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,16581,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711, 29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,10673,29840, 9713,29840, 9714,16582, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840,29840, 29840,29840, 9703,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12867,29840,29840, 29840,29840,29840,29840,12868,29840,29840,29840,29840,29840, 16586,29840,29840,29840,29840,29840,29840,29840,29840,12869, 29840,12870,29840,12872,29840,29840,12873,14133,29840,29840, 29840,12875,29840,29840,12876,29840,12877,29840,12878,29840, 12879,12880,12881, 3291,29840,12866,29840,29840,29840,29840, 29840,29840, 9703,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12867,29840,29840, 29840,29840,29840,16587,12868,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12869, 29840,12870,29840,12872,29840,29840,12873,14133,29840,29840, 29840,12875,29840,29840,12876,29840,12877,29840,12878,29840, 12879,12880,12881,16609,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1770,29840,29840,29840,29840, 29840,29840, 1771,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773, 29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777, 29840,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 2217, 1769,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1770,29840,29840,29840,29840,29840, 29840, 1771,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840, 2208, 1775, 1776,29840,29840,29840, 1777,29840, 16610, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 3291,29840,12895,29840,29840,29840,29840,29840,29840,12896, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12897,29840,29840,29840,29840,29840, 29840,12898,29840,29840,29840,29840,29840,16612,29840,29840, 29840,29840,29840,29840,29840,29840,12899,29840,12900,29840, 12901,29840,29840,12902,12903,29840,29840,29840,12904,29840, 29840,12905,29840,12906,29840,12907,29840,12908,12909,12910, 14168,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14169,29840,29840,29840,29840,29840,29840,14170, 29840,29840,29840,29840,29840,16613,29840,29840,29840,29840, 29840,29840,29840,29840,14171,29840,14172,29840,14173,29840, 29840,14174,14175,29840,29840,29840,14176,29840,29840,14177, 29840,14178,29840,14179,29840,14180,14181,14182,14168,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14169,29840,29840,16614,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,29840,14173,29840,29840,14174, 14175,29840,29840,29840,14176,29840,29840,14177,29840,14178, 29840,14179,29840,14180,14181,14182,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16615,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16616,29840,14172,29840,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,14174,14175,29840,29840,29840, 16617,29840,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182,14168,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14169,29840,29840,29840,29840,29840, 29840,14170,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14171,29840,14172,29840, 14173,29840,29840,14174,16618,29840,29840,29840,14176,29840, 29840,14177,29840,14178,29840,14179,29840,14180,14181,14182, 14168,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14169,29840,29840,29840,29840,29840,29840,14170, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15475,29840,14172,29840,14173,29840, 29840,14174,14175,29840,29840,29840,14176,29840,29840,14177, 29840,14178,29840,16619,29840,14180,14181,14182,14168,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14169,29840,29840,29840,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,29840,14173,29840,29840,14174, 14175,29840,29840,29840,14176,29840,29840,14177,29840,16620, 29840,14179,29840,14180,14181,14182,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,16621,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,15461,14173,29840,29840,14174,16622,29840,29840,29840, 14176,29840,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182,14168,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16615, 29840,29840,29840,29840,14169,29840,29840,29840,29840,29840, 29840,14170,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16616,29840,14172,29840, 14173,29840,29840,14174,14175,29840,29840,29840,14176,29840, 29840,14177,29840,14178,16623,14179,29840,14180,14181,14182, 3291,29840,12895,29840,29840,29840,29840,29840,29840,12896, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12897,29840,29840,29840,29840,29840, 16631,12898,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12899,29840,12900,29840, 12901,29840,29840,12902,12903,29840,29840,29840,12904,29840, 29840,12905,29840,12906,29840,12907,29840,12908,12909,12910, 3291,29840,12912,29840,29840,29840,29840,29840,29840,12913, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12914,29840,29840,29840,29840,29840, 29840,12915,29840,29840,29840,29840,29840,16648,29840,29840, 29840,29840,29840,29840,29840,29840,12916,29840,12917,29840, 12918,29840,29840,12919,12920,29840,29840,29840,12921,29840, 29840,12922,29840,12923,29840,12924,29840,12925,12926,12927, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,16649,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,16650,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16651,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16652,29840,14205,29840,14206,29840,29840,14207,14208,29840, 29840,29840,14209,29840,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 16653,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,16654,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15511,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,16655,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,29840,14210,29840,16656, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14204,29840,14205,16657,14206,29840,29840,14207,14208,29840, 29840,29840,14209,29840,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,15497,14206,29840,29840,14207,16658,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16651, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16652,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,16659,14212,29840,14213,14214,14215, 3291,29840,12912,29840,29840,29840,29840,29840,29840,12913, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12914,29840,29840,29840,29840,29840, 16667,12915,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12916,29840,12917,29840, 12918,29840,29840,12919,12920,29840,29840,29840,12921,29840, 29840,12922,29840,12923,29840,12924,29840,12925,12926,12927, 3291,29840, 3292,29840,29840,29840,29840,29840,29840, 1768, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3293,29840,29840,29840,29840,29840, 29840, 3294,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3295,29840, 3296,29840, 16684,29840,29840, 3299, 3911,29840,29840,29840, 3301, 3922, 29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 3291,29840, 3292,29840,29840,29840,29840,29840,29840, 1768, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3293,29840,29840,29840,29840,29840, 29840, 3294,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301,16685, 29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 10695,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16686,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10697,29840,29840,29840,29840,29840,29840,10698, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10699,29840,10700,29840,10701,29840, 29840,10702,10703,29840,29840,29840,10704,29840,29840,10705, 29840,10706,29840,10707,29840,10708,10709,10710,10695,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10696,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10697,29840,29840,29840,29840,29840,29840,10698,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16687,29840,10700,29840,10701,29840,29840,10702, 10703,29840,29840,29840,10704,29840,29840,10705,29840,10706, 29840,10707,29840,10708,10709,10710,11749, 3291,29840,14249, 29840,29840,29840,29840,29840,29840,10694,29840,29840,14250, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14251,29840,29840,29840,29840,29840,29840,14252,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14253,29840,14254,29840,14256,29840,29840, 14257,15542,29840,29840,29840,14259,29840,29840,14260,29840, 14261,29840,14262,29840,14263,14264,15552, 3291,29840,14249, 29840,29840,29840,29840,29840,29840,10694,29840,29840,14250, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14251,29840,29840,29840,29840,29840,29840,14252,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14253,29840,14254,29840,14256,29840,29840, 14257,15542,29840,29840,29840,14259,15555,29840,14260,29840, 14261,29840,14262,29840,14263,14264,14265, 2223,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2224,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2225, 29840,29840,29840,29840,29840,29840, 2226,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2227,29840, 2228, 2744, 2229,29840,29840, 2230, 2231, 29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,16724, 2235,29840, 2236, 2237, 2238, 2223,29840,29840,29840,29840, 29840,29840,29840, 2755,29840, 2224,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2225,29840,29840, 29840,29840,29840,29840, 2226,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2227, 29840, 2228,29840, 2229,29840,29840, 2230,16725,29840,29840, 29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238,16726,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840, 29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143, 29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148, 29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8139,16727,16727,16727,16727,16727,16727,16727,16727, 16727,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145, 29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8916,29840,29840,29840,29840,29840, 29840,29840,29840,16728,29840,29840,29840,29840,29840,29840, 29840, 8917,29840,29840, 8918, 3291,29840,10728,29840,29840, 29840,29840,29840,29840, 8136,29840,29840,10729,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10730, 29840,29840,29840,29840,29840,29840,10731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10732,29840,11771,29840,10735,29840,29840,10736,10762, 29840,29840,29840,10738,29840,29840,10739,29840,10740,29840, 11772,29840,10742,11773,10744, 3291,29840,10728,29840,29840, 29840,29840,29840,29840, 8136,29840,29840,10729,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10730, 29840,29840,29840,29840,29840,29840,10731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10732,29840,10733,29840,10735,29840,29840,10736,10762, 29840,29840,29840,10738,11781,29840,10739,29840,10740,16732, 10741,29840,10742,10743,10744,16751,12962, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136, 8136,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8144,29840,29840,29840,29840,12963, 3291, 29840,14316,29840,29840,29840,29840,29840,29840,14317,29840, 29840,14318,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14319,29840,29840,29840,29840,29840,29840, 14320,29840,29840,29840,29840,29840,16756,29840,29840,29840, 29840,29840,29840,29840,29840,14321,29840,14322,29840,14323, 29840,29840,14324,14325,29840,29840,29840,14326,29840,29840, 14327,29840,14328,29840,14329,29840,14330,14331,14332,15613, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15614, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15615,29840,16757,29840,29840,29840,29840,15616,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15617,29840,15618,29840,15619,29840,29840, 15620,15621,29840,29840,29840,15622,29840,29840,15623,29840, 15624,29840,15625,29840,15626,15627,15628,15613,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15614,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15615, 29840,29840,29840,29840,29840,29840,15616,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15617,29840,16758,29840,15619,29840,29840,15620,15621, 29840,29840,29840,15622,29840,29840,15623,29840,15624,29840, 16759,29840,15626,16760,15628,15613,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15614,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16761,29840,29840,29840,29840,15615,29840,29840, 29840,29840,29840,29840,15616,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15617, 29840,15618,29840,15619,29840,29840,15620,15621,29840,29840, 29840,15622,29840,29840,15623,29840,15624,29840,15625,29840, 15626,15627,15628, 3291,29840,14316,29840,29840,29840,29840, 29840,29840,14317,29840,29840,14318,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14319,29840,29840, 29840,29840,29840,29840,14320,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14321, 29840,14322,29840,14323,29840,15635,14324,14325,29840,29840, 29840,14326,29840,16778,14327,29840,14328,29840,14329,29840, 14330,14331,14332, 3291,29840,14334,29840,29840,29840,29840, 29840,29840,14335,29840,29840,14336,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14337,29840,29840, 29840,29840,29840,29840,14338,29840,29840,29840,29840,29840, 16798,29840,29840,29840,29840,29840,29840,29840,29840,14339, 29840,14340,29840,14341,29840,29840,14342,14343,29840,29840, 29840,14344,29840,29840,14345,29840,14346,29840,14347,29840, 14348,14349,14350,15650,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15651,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15652,29840,16799,29840,29840, 29840,29840,15653,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15654,29840,15655, 29840,15656,29840,29840,15657,15658,29840,29840,29840,15659, 29840,29840,15660,29840,15661,29840,15662,29840,15663,15664, 15665,15650,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15651,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15652,29840,29840,29840,29840,29840,29840, 15653,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15654,29840,16800,29840,15656, 29840,29840,15657,15658,29840,29840,29840,15659,29840,29840, 15660,29840,15661,29840,16801,29840,15663,16802,15665,15650, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15651, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16803,29840,29840,29840, 29840,15652,29840,29840,29840,29840,29840,29840,15653,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15654,29840,15655,29840,15656,29840,29840, 15657,15658,29840,29840,29840,15659,29840,29840,15660,29840, 15661,29840,15662,29840,15663,15664,15665, 3291,29840,14334, 29840,29840,29840,29840,29840,29840,14335,29840,29840,14336, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14337,29840,29840,29840,29840,29840,29840,14338,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14339,29840,14340,29840,14341,29840,15672, 14342,14343,29840,29840,29840,14344,29840,16820,14345,29840, 14346,29840,14347,29840,14348,14349,14350, 3291,29840, 3955, 29840,29840,29840,29840,29840,29840, 2222,29840,29840, 3956, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 3291,29840, 3955, 29840,29840,29840,29840,29840,29840, 2222,29840,29840, 3956, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840,29840, 3966,29840, 16841,29840, 3968,29840, 3969, 3970, 3971, 783, 783, 784, 785, 786, 783, 783, 783,29840,29840, 783, 783, 783, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 783, 783, 783, 783, 783, 783,29840,29840, 29840,29840,29840, 789,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 783, 783, 783,29840,29840,29840,29840,29840, 29840,29840,29840,16851, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 15712,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 16864, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15713,29840,29840,29840,29840,15712,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139,16864, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,16869,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,16870, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16871,29840,29840, 29840,29840,16869,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16870, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 16872,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16874,29840,29840,29840,29840,16872,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1137, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,11854,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 843, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16881,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16882, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16883,29840,29840,29840,29840, 16881,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16882, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16884,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 16886,29840,29840,29840,29840,16884,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 148, 16892, 139, 139, 139,29840,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840, 162,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 148, 352, 139, 139, 139, 150, 150, 139, 139, 168, 353, 150,15766, 15766,15766,15766,15766,15766,15766,15766,15766, 203, 139, 139, 139, 139, 139, 139, 175, 175, 175, 175, 175, 204, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 139, 139, 139, 176, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,16896,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16897,29840,29840,29840,29840, 16896,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16899,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16900, 29840,29840,29840,29840,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,16900, 139, 139, 29840, 139,14562, 139, 139, 139, 139, 139, 139, 139, 29840,14563, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13176,29840,29840,29840,29840,29840, 16901,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16903,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15902, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16904,29840,29840,29840,29840, 16903,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15902, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15983,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 15984,29840,29840,29840,29840,15983,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16908,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,16909,29840,29840,29840,29840,16908, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16914,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,16915, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,16916, 29840,29840,29840,29840,16914,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139,16915, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16917,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16919,29840,29840,29840,29840,16917, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 16923,16924,16924,16924,16924,16924,16924,16924,16924,14624, 29840,29840,29840,29840,29840,29840,16924,16924,16924,16924, 16924,16925,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16924,16924,16924,16924,16924,16924,16927, 16928,16928,16928,16928,16928,16928,16928,16928,16929,29840, 29840,29840,29840,29840,29840,16928,16928,16928,16928,16928, 16930,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16928,16928,16928,16928,16928,16928, 8334,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16932, 16932,16932,16932,16932,16932,16932,16932,16932,29840,29840, 29840,29840,29840,29840,29840,16932,16932,16932,16932,16932, 16933,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16932,16932,16932,16932,16932,16934,16937,16938, 16938,16938,16938,16938,16938,16938,16938,15844,29840,29840, 29840,29840,29840,29840,16938,16938,16938,16938,16938,16939, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,16938,16938,16938,16938,16938,16938,16940,16940,16940, 16940,16940,16940,16940,16940,16940,29840,29840,29840,29840, 29840,29840,29840,16940,16940,16940,16940,16940,16941,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16940,16940,16940,16940,16940,16942,16947,16948,16948,16948, 16948,16948,16948,16948,16948,15856,29840,29840,29840,29840, 29840,29840,16948,16948,16948,16948,16948,16949,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16948, 16948,16948,16948,16948,16948,16950,16950,16950,16950,16950, 16950,16950,16950,16950,29840,29840,29840,29840,29840,29840, 29840,16950,16950,16950,16950,16950,16951,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16950,16950, 16950,16950,16950,16952,16958,16959,16959,16959,16959,16959, 16959,16959,16959,15870,29840,29840,29840,29840,29840,29840, 16959,16959,16959,16959,16959,16960,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,16959,16959,16959, 16959,16959,16959,16961,16961,16961,16961,16961,16961,16961, 16961,16961,29840,29840,29840,29840,29840,29840,29840,16961, 16961,16961,16961,16961,16962,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16961,16961,16961,16961, 16961,16963,15894,29840,13246,13246,13246,13246,13246,13246, 13246,13246,13246,13249,29840,29840,29840,29840,29840,29840, 13246,13246,13246,13246,13246,13248,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,13246,13246,13246, 13246,13246,13246,16972,16973,16973,16973,16973,16973,16973, 16973,16973,14662,29840,29840,29840,29840,29840,29840,16973, 16973,16973,16973,16973,16974,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16973,16973,16973,16973, 16973,16973,16976,16977,16977,16977,16977,16977,16977,16977, 16977,16978,29840,29840,29840,29840,29840,29840,16977,16977, 16977,16977,16977,16979,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16977,16977,16977,16977,16977, 16977,16986,16987,16988,16989,16989,16989,16989,16989,16989, 29840,29840,29840,29840,29840,29840,29840,13259,13259,13259, 13259,13259,13263,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13259,13259,13259,13259,13259,13259, 16994,16994,16994,16994,16994,16994,16994,16994,16994,12032, 29840,29840,29840,29840,29840,29840,13256,13256,13256,13256, 13256,13257,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13256,13256,13256,13256,13256,13256, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,12127,29840,29840,29840,29840, 29840,29840,29840,16995,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,15901,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15902, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,15903,29840,29840,29840,29840, 15901,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15902, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15904,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 15906,29840,29840,29840,29840,15904,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10999,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16997,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16998,29840,29840,29840,29840,16997, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17002,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,17003,29840, 29840,29840,29840,17002,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 17007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17008,29840,29840,29840,29840,17007,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,17012,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17013,29840,29840,29840, 29840,17012,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17016,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 17017,29840,29840,29840,29840,17016,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,17019,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17020,29840,29840,29840, 8358, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17020, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,17022,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,17023,17023,17023, 17023,17023,17023,17023,17023,17023, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17022,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139,10000, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,17026,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17027,29840,29840, 29840,29840,17026,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17029, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17030,29840,29840,29840, 8358, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17030, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17032,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 17033,29840,29840,29840,29840,17032,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,17037,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17038,29840,29840,29840,29840,17037, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17044,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,17045,29840, 29840,29840,29840,17044,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 17049,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,17050,29840,29840,29840,29840,17049,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,17053,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,17054,29840,29840,29840, 29840,17053,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17057,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 17058,29840,29840,29840,29840,17057,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,17060,29840,17061,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17062,17063,17063,29840,29840,29840,29840,29840,29840,29840, 29840,17064, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17067,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 17068,29840,29840,29840,29840,17067,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 13392,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,17072,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,17073,29840,29840,29840,29840,17072, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17077,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,17078,29840, 29840,29840,29840,17077,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 17081,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,17082,29840,29840,29840,29840,17081,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 17083, 139,13392,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,17083, 29840,29840,29840,29840,17085,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139,17083,17083, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,17087,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17088,29840,29840,29840,29840, 17087,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17092,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,13392,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,17093, 29840,29840,29840,29840,17092,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,17096,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,17097,29840,29840,29840,29840,17096,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,17098, 139,13392,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 17098,29840,29840,29840,29840,17100,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139,17098,17098, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840,10012,10007,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,17103,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,17104,29840,29840,29840, 29840,17103,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17109,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 17111,29840,29840,29840,29840,17109,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 17108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,17114,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17115,29840,29840,29840,29840,17114, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17117,29840,17118,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17119,17120,17120,29840,29840,29840, 29840,29840,29840,29840,29840,17121, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,14787,29840,29840,29840,29840,29840,17122,29840, 29840,29840,29840,29840,14788,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14788,10007,12136,12136,12136,12136,12136,12136, 12136,12136,12136, 8367,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 140,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009,29840,12137, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16049,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16050, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 7621, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16051,29840,29840,29840,29840, 16049,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16050, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16052,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 7624, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 16054,29840,29840,29840,29840,16052,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,17123,17124,17124,17124, 17124,17124,17124,17124,17124,16064,29840,29840,29840,29840, 29840,29840,17124,17124,17124,17124,17124,17125,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17124, 17124,17124,17124,17124,17124,17126,17126,17126,17126,17126, 17126,17126,17126,17126,17127,29840,29840,29840,29840,29840, 29840,17126,17126,17126,17126,17126,17128,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17126,17126, 17126,17126,17126,17129, 7624,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17132,17132,17132,17132,17132, 17132,17132,17132,17132,17133,29840,29840,29840,29840,29840, 29840,17132,17132,17132,17132,17132,17134,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17132,17132, 17132,17132,17132,17132,17138,17139,17139,17139,17139,17139, 17139,17139,17139,14857,29840,29840,29840,29840,29840,29840, 17139,17139,17139,17139,17139,17140,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17139,17139,17139, 17139,17139,17139,17142,17142,17142,17142,17142,17142,17142, 17142,17142,17143,29840,29840,29840,29840,29840,29840,17142, 17142,17142,17142,17142,17144,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17142,17142,17142,17142, 17142,17142,17150,17151,17151,17151,17151,17151,17151,17151, 17151,14869,29840,29840,29840,29840,29840,29840,17151,17151, 17151,17151,17151,17152,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17151,17151,17151,17151,17151, 17151,17154,17154,17154,17154,17154,17154,17154,17154,17154, 17155,29840,29840,29840,29840,29840,29840,17154,17154,17154, 17154,17154,17156,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17154,17154,17154,17154,17154,17154, 17162,17163,17164,17165,17165,17165,17165,17165,17165,29840, 29840,29840,29840,29840,29840,29840,13483,13483,13483,13483, 13483,13487,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,13483,13483,13483,13483,13483,13483,17166, 17167,17167,17167,17167,17167,17167,17167,17167,14883,29840, 29840,29840,29840,29840,29840,17167,17167,17167,17167,17167, 17168,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17167,17167,17167,17167,17167,17167,17170,17170, 17170,17170,17170,17170,17170,17170,17170,17171,29840,29840, 29840,29840,29840,29840,17170,17170,17170,17170,17170,17172, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17170,17170,17170,17170,17170,17170,17178,17179,17180, 17181,17181,17181,17181,17181,17181,29840,29840,29840,29840, 29840,29840,29840,13494,13494,13494,13494,13494,13498,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13494,13494,13494,13494,13494,13494,14907,29840,17182,17182, 17182,17182,17182,17182,17182,17182,17182,12211,29840,29840, 29840,29840,29840,29840,13491,13491,13491,13491,13491,13492, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13491,13491,13491,13491,13491,13491,17183,17184,17184, 17184,17184,17184,17184,17184,17184,16113,29840,29840,29840, 29840,29840,29840,17184,17184,17184,17184,17184,17185,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17184,17184,17184,17184,17184,17184,17186,17186,17186,17186, 17186,17186,17186,17186,17186,29840,29840,29840,29840,29840, 29840,29840,17186,17186,17186,17186,17186,17187,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17186, 17186,17186,17186,17186,17188,13507,13507,13507,13507,13507, 13507,13507,13507,13507,13510,29840,29840,29840,29840,29840, 29840,13507,13507,13507,13507,13507,13509,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13507,13507, 13507,13507,13507,13507,13503,13503,13503,13503,13503,13503, 13503,13503,13503,11098,29840,29840,29840,29840,29840,29840, 13503,13503,13503,13503,13503,13504,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,13503,13503,13503, 13503,13503,13503, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13524, 29840,29840,29840,29840,29840,17199,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12239,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139,12233,29840,29840, 29840,29840,29840,29840,29840,17200, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17201, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,13409,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17204,29840,29840,29840,29840,17203,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,17208,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17209,29840,29840,29840,29840, 17208,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17213,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,17214, 29840,29840,29840,29840,17213,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,17218,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17219,29840,29840,29840,29840,17218,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,17222,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17223,29840,29840, 29840,29840,17222,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17225, 17226,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 29840,29840,29840,29840,29840,29840,29840,17226, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,17228,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,10114, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,17228,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17230,17231, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211,29840, 29840,29840,29840,29840,29840,29840,17231, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,17233,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17234,29840,29840,29840,29840, 17233,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17238,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,17239, 29840,29840,29840,29840,17238,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,17243,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17244,29840,29840,29840,29840,17243,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,17248,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 12326,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17249,29840,29840, 29840,29840,17248,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17252, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17253,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17253, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,17255,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 12326,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17256,29840,29840, 29840,29840,17255,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17258, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17259,29840,29840,29840,29840,17258,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,17263,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17264,29840,29840,29840,29840, 17263,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17268,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,17269, 29840,29840,29840,29840,17268,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,17272,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17273,29840,29840,29840,29840,29840,29840, 139, 139, 9211,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17273, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17275,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,17276, 29840,29840,29840,29840,17275,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840, 29840,17292,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,17293,29840,29840,29840,29840,17292,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,17296, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840,29840,29840,29840,29840,16209,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,17296, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,16210,29840,29840, 29840,29840,16209,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,17298, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3603,29840,29840,29840,29840,29840, 1234, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3603, 1225, 1225,29840, 1225, 3570, 1225, 1225, 1225, 1225,13694, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,12438,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1597, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 29840,29840,29840,29840,17321,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,17322,29840,29840,29840, 29840,17321,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,17326,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 17327,29840,29840,29840,29840,17326,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,15084, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,13764,29840,29840,29840,29840,29840,17331,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 139, 139,29840, 139, 139, 139, 139,17338, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 16265,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139,17338, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16266,29840,29840,29840,29840,16265,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 9412,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,17357,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17358,29840,29840,29840, 29840,17357,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,17362,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 17363,29840,29840,29840,29840,17362,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,17367,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17368,29840,29840,29840,29840,17367, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,17372,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17373,29840, 29840,29840,29840,17372,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 17377,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17378,29840,29840,29840,29840,17377,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,17382,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17383,29840,29840,29840, 29840,17382,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,17386,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17387, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17387, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,17389,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17390,29840,29840,29840, 29840,17389,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,17392,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 17393,29840,29840,29840,29840,17392,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,17398,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17399,29840,29840,29840,29840,17398, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,17403,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17404,29840, 29840,29840,29840,17403,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 17407,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17408,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17408, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,17410,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17411,29840, 29840,29840,29840,17410,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,17415, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 16330,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,17415, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,17416,29840,29840,29840,29840,16330,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 3741, 3741, 3742, 3741, 3741, 3741, 3741, 3741, 3741,17440, 3741, 3741,29840, 3741, 3741,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3741, 3741, 3741, 3741, 3741, 3741, 3741,29840,29840,29840,29840,29840,16353,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 4411, 3741, 3741, 3741, 3741, 3741, 3742, 3741, 3741, 3741, 3741, 3741, 3741,17440, 3741, 3741, 29840, 3741, 3741,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3741, 3741, 3741, 3741, 3741, 3741, 3741,17441, 29840,29840,29840,29840,16353,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 4411, 3741, 3741, 3741, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,17453,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17454,29840,29840,29840,29840, 17453,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,17459,17459,17459,17459,17459,17459,17459,17459, 17459,15209,29840,29840,29840,29840,29840,29840,17459,17459, 17459,17459,17459,17460,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17459,17459,17459,17459,17459, 17459,17462,17462,17462,17462,17462,17462,17462,17462,17462, 17463,29840,29840,29840,29840,29840,29840,17462,17462,17462, 17462,17462,17464,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17462,17462,17462,17462,17462,17462, 17465,17465,17465,17465,17465,17465,17465,17465,17465,29840, 29840,29840,29840,29840,29840, 329,17465,17465,17465,17465, 17465,17466,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17465,17465,17465,17465,17465,17465,17468, 17468,17468,17468,17468,17468,17468,17468,17468,16381,29840, 29840,29840,29840,29840,29840,17468,17468,17468,17468,17468, 17469,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17468,17468,17468,17468,17468,17468,17470,17470, 17470,17470,17470,17470,17470,17470,17470,29840,29840,29840, 29840,29840,29840,29840,17470,17470,17470,17470,17470,17471, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17470,17470,17470,17470,17470,17470,17475,17475,17475, 17475,17475,17475,17475,17475,17475,16390,29840,29840,29840, 29840,29840,29840,17475,17475,17475,17475,17475,17476,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17475,17475,17475,17475,17475,17475,17477,17477,17477,17477, 17477,17477,17477,17477,17477,29840,29840,29840,29840,29840, 29840,29840,17477,17477,17477,17477,17477,17478,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17477, 17477,17477,17477,17477,17477,17481,17481,17481,17481,17481, 17481,17481,17481,17481,16399,29840,29840,29840,29840,29840, 29840,17481,17481,17481,17481,17481,17482,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17481,17481, 17481,17481,17481,17481,17483,17483,17483,17483,17483,17483, 17483,17483,17483,29840,29840,29840,29840,29840,29840,29840, 17483,17483,17483,17483,17483,17484,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17483,17483,17483, 17483,17483,17483,11553,29840,13927,13927,13927,13927,13927, 13927,13927,13927,13927,13928,29840,29840,29840,29840,29840, 29840,13927,13927,13927,13927,13927,13929,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,13927,13927, 13927,13927,13927,13927,17490,17490,17490,17490,17490,17490, 17490,17490,17490,16412,29840,29840,29840,29840,29840,29840, 17490,17490,17490,17490,17490,17491,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17490,17490,17490, 17490,17490,17490,17492,17492,17492,17492,17492,17492,17492, 17492,17492,29840,29840,29840,29840,29840,29840,29840,17492, 17492,17492,17492,17492,17493,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17492,17492,17492,17492, 17492,17492,13939,13939,13939,13939,13939,13939,13939,13939, 13939,13940,29840,29840,29840,29840,29840,29840,13939,13939, 13939,13939,13939,13941,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,13939,13939,13939,13939,13939, 13939,13936,13936,13936,13936,13936,13936,13936,13936,13936, 11517,29840,29840,29840,29840,29840,29840,13936,13936,13936, 13936,13936,13937,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,13936,13936,13936,13936,13936,13936, 17499,17499,17499,17499,17499,17499,17499,17499,17499,16426, 29840,29840,29840,29840,29840,29840,17499,17499,17499,17499, 17499,17500,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17499,17499,17499,17499,17499,17499,17501, 17501,17501,17501,17501,17501,17501,17501,17501,29840,29840, 29840,29840,29840,29840,29840,17501,17501,17501,17501,17501, 17502,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17501,17501,17501,17501,17501,17501,13955,13955, 13955,13955,13955,13955,13955,13955,13955,13956,29840,29840, 29840,29840,29840,29840,13955,13955,13955,13955,13955,13957, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,13955,13955,13955,13955,13955,13955,13952,13952,13952, 13952,13952,13952,13952,13952,13952,11531,29840,29840,29840, 29840,29840,29840,13952,13952,13952,13952,13952,13953,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 13952,13952,13952,13952,13952,13952,17508,17508,17508,17508, 17508,17508,17508,17508,17508,15258,29840,29840,29840,29840, 29840,29840,17508,17508,17508,17508,17508,17509,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17508, 17508,17508,17508,17508,17508,17511,17511,17511,17511,17511, 17511,17511,17511,17511,17512,29840,29840,29840,29840,29840, 29840,17511,17511,17511,17511,17511,17513,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17511,17511, 17511,17511,17511,17511,17517,17518,17519,17520,17520,17520, 17520,17520,17520,29840,29840,29840,29840,29840,29840,29840, 13971,13971,13971,13971,13971,13975,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,13971,13971,13971, 13971,13971,13971,17521,17521,17521,17521,17521,17521,17521, 17521,17521,12690,29840,29840,29840,29840,29840,29840,13969, 13969,13969,13969,13969,13970,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,13969,13969,13969,13969, 13969,13969,15277,29840,15277,29840,29840,16455,16455,16455, 16455,16455,16455,16455,16455,16455,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1275,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15279,29840,29840,15280,17536, 17536,17536,17536,17536,17536,17536,17536,17536,29840,29840, 29840,29840,29840,29840,29840,17536,17536,17536,17536,17536, 17537,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4455,29840, 29840,29840,17536,17536,17536,17536,17536,17536,17539,17539, 17539,17539,17539,17539,17539,17539,17539,29840,29840,29840, 29840,29840,29840,29840,17539,17539,17539,17539,17539,17540, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17539,17539,17539,17539,17539,17539, 8817,29840,13998, 13998,13998,13998,13998,13998,13998,13998,13998,13999,29840, 29840,29840,29840,29840,29840,13998,13998,13998,13998,13998, 14000,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,13998,13998,13998,13998,13998,13998,17545,17545, 17545,17545,17545,17545,17545,17545,17545,29840,29840,29840, 29840,29840,29840,29840,17545,17545,17545,17545,17545,17546, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17545,17545,17545,17545,17545,17545, 8817,29840,17548, 17548,17548,17548,17548,17548,17548,17548,17548,12732,29840, 29840,29840,29840,29840,29840,14011,14011,14011,14011,14011, 14012,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14011,14011,14011,14011,14011,14011,17549,17549, 17549,17549,17549,17549,17549,17549,17549,29840,29840,29840, 29840,29840,29840,29840,17549,17549,17549,17549,17549,17550, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17549,17549,17549,17549,17549,17549,17552,17552,17552, 17552,17552,17552,17552,17552,17552,12741,29840,29840,29840, 29840,29840,29840,14017,14017,14017,14017,14017,14018,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14017,14017,14017,14017,14017,14017,17553,17553,17553,17553, 17553,17553,17553,17553,17553,29840,29840,29840,29840,29840, 29840,29840,17553,17553,17553,17553,17553,17554,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17553, 17553,17553,17553,17553,17553,17556,17556,17556,17556,17556, 17556,17556,17556,17556,12754,29840,29840,29840,29840,29840, 29840,14026,14026,14026,14026,14026,14027,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14026,14026, 14026,14026,14026,14026,17557,17557,17557,17557,17557,17557, 17557,17557,17557,29840,29840,29840,29840,29840,29840,29840, 17557,17557,17557,17557,17557,17558,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17557,17557,17557, 17557,17557,17557,17560,17560,17560,17560,17560,17560,17560, 17560,17560,12768,29840,29840,29840,29840,29840,29840,14035, 14035,14035,14035,14035,14036,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14035,14035,14035,14035, 14035,14035,17561,17561,17561,17561,17561,17561,17561,17561, 17561,29840,29840,29840,29840,29840,29840,29840,17561,17561, 17561,17561,17561,17562,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17561,17561,17561,17561,17561, 17561,14047,14047,14047,14047,14047,14047,14047,14047,14047, 14048,29840,29840,29840,29840,29840,29840,14047,14047,14047, 14047,14047,14049,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14047,14047,14047,14047,14047,14047, 14044,14044,14044,14044,14044,14044,14044,14044,14044,11623, 29840,29840,29840,29840,29840,29840,14044,14044,14044,14044, 14044,14045,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14044,14044,14044,14044,14044,14044, 5904, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16534,16534,16534,16534,16534,16534,16534,16534,16534,29840, 16534,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 5905,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17584, 5906, 5904,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17586,17586, 17586,17586,17586,17586,17586,17586,17586,29840,17586,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5905, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5906,10612,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17590,17590,17590,17590, 17590,17590,17590,17590,17590,29840,17590,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10613,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10614, 9704,17628,29840,29840,29840,29840,29840, 29840,29840,17629,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712, 29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,17630,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291, 29840,12866,29840,29840,29840,29840,29840,29840, 9703,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12867,29840,29840,29840,29840,29840,29840, 12868,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12869,29840,12870,15439,12872, 29840,29840,12873,14133,29840,29840,29840,12875,29840,29840, 12876,29840,12877,29840,12878,29840,12879,12880,12881, 3291, 29840,12866,29840,29840,29840,29840,29840,29840, 9703,29840, 29840,17631,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12867,29840,29840,29840,29840,29840,29840, 12868,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12869,29840,12870,15439,12872, 29840,29840,12873,17632,29840,29840,29840,12875,29840,29840, 12876,29840,12877,29840,12878,29840,12879,12880,12881, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840,17633,29840, 9716, 9717, 9718, 9704,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,29840, 9708,29840, 9709,29840,29840,17634, 9711, 29840,29840,29840,10677,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840,17635,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,17652, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712, 29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,29840, 9712,17653,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710,17654,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711, 29840,29840,29840, 9712,17655,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,17656, 9716, 9717, 9718, 1769,17657,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1770,29840, 2204,29840,29840, 29840,29840, 1771,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773, 29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777, 29840,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 1769,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1770,29840,29840,29840,29840,29840,29840, 1771,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774, 29840,29840, 1775, 1776,29840,29840,29840,17658,29840,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 3291, 29840,12895,29840,29840,29840,29840,29840,29840,12896,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12897,29840,29840,29840,29840,29840,29840, 12898,29840,29840,17660,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12899,29840,12900,29840,12901, 29840,29840,12902,12903,29840,29840,29840,12904,29840,29840, 12905,29840,12906,29840,12907,29840,12908,12909,12910,14168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,17661,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,17662,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,29840,14174,14175, 29840,29840,29840,14176,29840,29840,14177,29840,14178,29840, 14179,29840,14180,14181,14182,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,17663,14173,29840,29840,14174,14175,29840,29840, 29840,14176,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 17664,14173,29840,29840,14174,14175,29840,29840,29840,14176, 29840,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15466,29840,14172,29840,14173, 29840,29840,14174,17665,29840,29840,29840,14176,29840,29840, 14177,29840,14178,29840,14179,29840,14180,14181,14182,15467, 14168,29840,29840,29840,29840,29840,29840,29840,17666,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14169,29840,29840,29840,29840,29840,29840,14170, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14171,29840,14172,29840,14173,29840, 29840,14174,14175,29840,29840,29840,14176,15465,29840,14177, 29840,14178,29840,14179,29840,14180,14181,14182, 3291,29840, 12895,29840,29840,29840,29840,29840,29840,12896,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12897,29840,29840,29840,29840,29840,29840,12898, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12899,29840,12900,14185,12901,29840, 29840,12902,15484,29840,29840,29840,12904,29840,29840,12905, 29840,12906,29840,12907,29840,12908,12909,12910, 3291,29840, 12912,29840,29840,29840,29840,29840,29840,12913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12914,29840,29840,29840,29840,29840,29840,12915, 29840,29840,17695,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12916,29840,12917,29840,12918,29840, 29840,12919,12920,29840,29840,29840,12921,29840,29840,12922, 29840,12923,29840,12924,29840,12925,12926,12927,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,17696,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,17697,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14204,29840,14205,29840,14206,29840,29840,14207,14208,29840, 29840,29840,14209,29840,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,17698,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,17699, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15502,29840,14205,29840,14206,29840, 29840,14207,17700,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215,15503,14201, 29840,29840,29840,29840,29840,29840,29840,17701,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14202,29840,29840,29840,29840,29840,29840,14203,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14204,29840,14205,29840,14206,29840,29840, 14207,14208,29840,29840,29840,14209,15501,29840,14210,29840, 14211,29840,14212,29840,14213,14214,14215, 3291,29840,12912, 29840,29840,29840,29840,29840,29840,12913,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12914,29840,29840,29840,29840,29840,29840,12915,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12916,29840,12917,14218,12918,29840,29840, 12919,15520,29840,29840,29840,12921,29840,29840,12922,29840, 12923,29840,12924,29840,12925,12926,12927, 3291,29840, 3292, 29840,29840,29840,29840,29840,29840, 1768,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3293,29840,29840,29840,29840,29840,29840, 3294,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301,17730,29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3919, 3291,29840, 3292, 29840,29840,29840,29840,29840,29840, 1768,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17731,29840,29840,29840,29840,29840,29840,29840, 29840, 3293,29840,29840,29840,29840,29840,29840, 3294,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307,10695,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10696,17732,17732, 17732,17732,17732,17732,17732,17732,17732,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10699,29840,11734,29840,10701,29840,29840,10702,10703, 29840,29840,29840,10704,29840,29840,10705,29840,10706,29840, 11735,29840,10708,11736,10710,10695,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10696,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10697,29840,29840, 29840,29840,29840,29840,10698,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10699, 29840,10700,11739,10701,29840,29840,10702,10703,29840,29840, 29840,10704,29840,17733,10705,29840,10706,29840,10707,29840, 10708,10709,10710, 3291,29840,14249,29840,29840,29840,29840, 29840,29840,10694,29840,29840,14250,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14251,29840,29840, 29840,29840,29840,29840,14252,29840,29840,29840,29840,29840, 17743,29840,29840,29840,29840,29840,29840,29840,29840,14253, 29840,14254,29840,14256,29840,29840,14257,15542,29840,29840, 29840,14259,29840,29840,14260,29840,14261,29840,14262,29840, 14263,14264,14265, 3291,29840,14249,29840,29840,29840,29840, 29840,29840,10694,29840,29840,14250,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14251,29840,29840, 29840,29840,29840,29840,14252,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14253, 29840,14254,29840,14256,29840,29840,14257,15542,29840,29840, 29840,14259,17744,29840,14260,29840,14261,29840,14262,29840, 14263,14264,14265, 2223,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2224,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2225,29840,29840,29840,29840, 29840,29840, 2226,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228, 29840, 2229,29840,29840,17769, 2231,29840,29840,29840, 2232, 29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 2223,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2224,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2227,29840, 2228,17770, 2229, 29840,29840, 2230, 2231,29840,29840,29840, 2232, 2748,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 8137, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8139, 29840,29840,17771,29840,17772,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8140,29840, 8914,29840,29840,29840,29840, 8141,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,15576,29840, 29840,29840,29840,29840,29840,29840,29840, 8139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8140, 29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147, 29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840, 29840,29840,29840,29840, 8136,29840,29840,10729,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10730, 29840,29840,29840,29840,29840,29840,10731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10732,29840,10733,29840,10735,29840,29840,10736,10762, 29840,29840,29840,10738,29840,29840,10739,29840,10740,29840, 17776,29840,10742,10743,10744, 3291,29840,10728,29840,29840, 29840,29840,29840,29840, 8136,29840,29840,10729,17780,17780, 17780,17780,17780,17780,17780,17780,17780,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10730, 29840,29840,29840,29840,29840,29840,10731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10732,29840,11771,29840,10735,29840,29840,10736,10762, 29840,29840,29840,10738,29840,29840,10739,29840,10740,29840, 11772,29840,10742,11773,10744,10727,10727,10727,10727,10727, 10727,10727,10727,10727,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10733,10734,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17781,29840,29840,29840,29840,10741,29840,29840, 10743,17782,10727,10727,10727,10727,10727,10727,10727,10727, 10727,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10733,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10741,29840,29840,10743,10727,10727, 10727,10727,10727,10727,10727,10727,10727,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10733,29840,29840,29840,17783,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10741,29840,29840,10743,10727,10727,10727,10727,10727,10727, 10727,10727,10727,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17784,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10733, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10741,29840,29840,10743, 10727,10727,10727,10727,10727,10727,10727,10727,10727,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10733,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17785,29840,29840,29840, 29840,29840,10741,29840,29840,10743,10727,10727,10727,10727, 10727,10727,10727,10727,10727,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10733,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17786,29840,29840,29840,29840,29840,10741,29840, 29840,10743,10727,10727,10727,10727,10727,10727,10727,10727, 10727,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10733,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17787,29840, 29840,29840,29840,29840,10741,29840,29840,10743,10727,10727, 10727,10727,10727,10727,10727,10727,10727,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10733,17788,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10741,29840,29840,10743,10727,10727,10727,10727,10727,10727, 10727,10727,10727,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10733, 29840,29840,29840,11776,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10741,17789,29840,10743, 10727,10727,10727,10727,10727,10727,10727,10727,10727,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10733,29840,29840,29840,29840, 29840,29840,29840,29840,17790,29840,11781,29840,29840,29840, 29840,29840,10741,29840,29840,10743,10727,10727,10727,10727, 10727,10727,10727,10727,10727,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,11782, 29840,10733,29840,29840,29840,29840,29840,17791,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10741,29840, 29840,10743,29840,11783,10727,10727,10727,10727,10727,10727, 10727,10727,10727,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10733, 29840,29840,17792,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10741,29840,29840,10743, 10727,10727,10727,10727,10727,10727,10727,10727,10727,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10733,29840,29840,29840,29840, 29840,17793,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10741,29840,29840,10743,10727,10727,10727,10727, 10727,10727,10727,10727,10727,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10733,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17794,29840,29840,29840,29840,29840,10741,29840, 29840,10743, 3291,29840,14316,29840,29840,29840,29840,29840, 29840,14317,29840,29840,14318,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14319,29840,29840,29840, 29840,29840,29840,14320,29840,29840,29840,29840,29840,17798, 29840,29840,29840,29840,29840,29840,29840,29840,14321,29840, 14322,29840,14323,29840,29840,14324,14325,29840,29840,29840, 14326,29840,29840,14327,29840,14328,29840,14329,29840,14330, 14331,14332,15613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15614,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15615,29840,29840,29840,29840,29840, 29840,15616,29840,29840,29840,29840,29840,17799,29840,29840, 29840,29840,29840,29840,29840,29840,15617,29840,15618,29840, 15619,29840,29840,15620,15621,29840,29840,29840,15622,29840, 29840,15623,29840,15624,29840,15625,29840,15626,15627,15628, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,29840,15619,29840, 16764,15620,15621,29840,29840,29840,15622,29840,17800,15623, 29840,15624,29840,15625,29840,15626,15627,15628, 3291,29840, 14316,29840,29840,29840,29840,29840,29840,14317,29840,29840, 14318,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14319,29840,29840,29840,29840,29840,29840,14320, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14321,29840,14322,29840,14323,29840, 29840,14324,14325,29840,29840,29840,14326,17820,29840,14327, 29840,14328,29840,14329,29840,14330,14331,14332, 3291,29840, 14334,29840,29840,29840,29840,29840,29840,14335,29840,29840, 14336,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14337,29840,29840,29840,29840,29840,29840,14338, 29840,29840,29840,29840,29840,17840,29840,29840,29840,29840, 29840,29840,29840,29840,14339,29840,14340,29840,14341,29840, 29840,14342,14343,29840,29840,29840,14344,29840,29840,14345, 29840,14346,29840,14347,29840,14348,14349,14350,15650,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15651,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15652,29840,29840,29840,29840,29840,29840,15653,29840,29840, 29840,29840,29840,17841,29840,29840,29840,29840,29840,29840, 29840,29840,15654,29840,15655,29840,15656,29840,29840,15657, 15658,29840,29840,29840,15659,29840,29840,15660,29840,15661, 29840,15662,29840,15663,15664,15665,15650,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15652,29840, 29840,29840,29840,29840,29840,15653,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15654,29840,15655,29840,15656,29840,16806,15657,15658,29840, 29840,29840,15659,29840,17842,15660,29840,15661,29840,15662, 29840,15663,15664,15665, 3291,29840,14334,29840,29840,29840, 29840,29840,29840,14335,29840,29840,14336,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14337,29840, 29840,29840,29840,29840,29840,14338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14339,29840,14340,29840,14341,29840,29840,14342,14343,29840, 29840,29840,14344,17862,29840,14345,29840,14346,29840,14347, 29840,14348,14349,14350, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222,29840,29840, 3956,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840,17882, 4625,29840, 29840,29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968, 29840, 3969, 3970, 3971, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222,29840,29840, 3956,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840, 29840,29840, 3965,29840,17883, 3966,29840, 3967,29840, 3968, 29840, 3969, 3970, 3971,10727,10727,10727,10727,10727,10727, 10727,10727,10727,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10733, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,11779,17884,29840,29840,29840,10741,29840,29840,10743, 783, 783, 784, 785, 786, 783, 783, 783,29840,29840, 783, 783, 783,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 783, 783, 783, 783, 783, 783,29840,29840,29840,29840,29840, 789,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 783, 783, 783,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17893, 15701,29840,15701,29840,29840,16857,16857,16857,16857,16857, 16857,16857,16857,16857,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 140,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15703,29840,29840,15704, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,15712,29840,29840,29840,29840,29840,17903, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139,16864, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 17907,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,17908, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17909,29840,29840,29840,29840,17907,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,17908, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17910,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,17912,29840, 29840,29840,29840,17910,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 17918,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,17919, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17920,29840,29840,29840,29840,17918,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,17919, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17921,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,17923,29840, 29840,29840,29840,17921,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 17932,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17933,29840,29840,29840,29840,17932,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139,17930, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,17936,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17937,29840,29840,29840, 29840,17936,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17939,29840, 17940,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17941,17941,17941,29840, 29840,29840,29840,29840,29840,29840,29840,17942, 139, 139, 29840, 139,17943, 139, 139, 139, 139, 139, 139, 139, 29840,14563, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13176,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16903,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15902, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16904,29840,29840,29840,29840, 16903,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,15902, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17044,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 17045,29840,29840,29840,29840,17044,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16914,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16915, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 8356,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,16916,29840,29840,29840,29840, 16914,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,16915, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,16917,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 139, 8356,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 16919,29840,29840,29840,29840,16917,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,17944,17945,17945,17945, 17945,17945,17945,17945,17945,16929,29840,29840,29840,29840, 29840,29840,17945,17945,17945,17945,17945,17946,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17945, 17945,17945,17945,17945,17945,17947,17947,17947,17947,17947, 17947,17947,17947,17947,17948,29840,29840,29840,29840,29840, 29840,17947,17947,17947,17947,17947,17949,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17947,17947, 17947,17947,17947,17950, 8334,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17953,17953,17953,17953,17953, 17953,17953,17953,17953,17954,29840,29840,29840,29840,29840, 29840,17953,17953,17953,17953,17953,17955,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17953,17953, 17953,17953,17953,17953,17959,17960,17960,17960,17960,17960, 17960,17960,17960,15844,29840,29840,29840,29840,29840,29840, 17960,17960,17960,17960,17960,17961,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17960,17960,17960, 17960,17960,17960,17963,17963,17963,17963,17963,17963,17963, 17963,17963,17964,29840,29840,29840,29840,29840,29840,17963, 17963,17963,17963,17963,17965,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17963,17963,17963,17963, 17963,17963,17971,17972,17972,17972,17972,17972,17972,17972, 17972,15856,29840,29840,29840,29840,29840,29840,17972,17972, 17972,17972,17972,17973,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17972,17972,17972,17972,17972, 17972,17975,17975,17975,17975,17975,17975,17975,17975,17975, 17976,29840,29840,29840,29840,29840,29840,17975,17975,17975, 17975,17975,17977,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17975,17975,17975,17975,17975,17975, 17983,17984,17985,17986,17986,17986,17986,17986,17986,29840, 29840,29840,29840,29840,29840,29840,14637,14637,14637,14637, 14637,14641,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14637,14637,14637,14637,14637,14637,17987, 17988,17988,17988,17988,17988,17988,17988,17988,15870,29840, 29840,29840,29840,29840,29840,17988,17988,17988,17988,17988, 17989,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17988,17988,17988,17988,17988,17988,17991,17991, 17991,17991,17991,17991,17991,17991,17991,17992,29840,29840, 29840,29840,29840,29840,17991,17991,17991,17991,17991,17993, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17991,17991,17991,17991,17991,17991,17999,18000,18001, 18002,18002,18002,18002,18002,18002,29840,29840,29840,29840, 29840,29840,29840,14648,14648,14648,14648,14648,14652,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14648,14648,14648,14648,14648,14648,15894,29840,18003,18003, 18003,18003,18003,18003,18003,18003,18003,13249,29840,29840, 29840,29840,29840,29840,14645,14645,14645,14645,14645,14646, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14645,14645,14645,14645,14645,14645,18004,18005,18005, 18005,18005,18005,18005,18005,18005,16978,29840,29840,29840, 29840,29840,29840,18005,18005,18005,18005,18005,18006,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18005,18005,18005,18005,18005,18005,18007,18007,18007,18007, 18007,18007,18007,18007,18007,29840,29840,29840,29840,29840, 29840,29840,18007,18007,18007,18007,18007,18008,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18007, 18007,18007,18007,18007,18009,14661,14661,14661,14661,14661, 14661,14661,14661,14661,14664,29840,29840,29840,29840,29840, 29840,14661,14661,14661,14661,14661,14663,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14661,14661, 14661,14661,14661,14661,14657,14657,14657,14657,14657,14657, 14657,14657,14657,12032,29840,29840,29840,29840,29840,29840, 14657,14657,14657,14657,14657,14658,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14657,14657,14657, 14657,14657,14657, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17201, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,13388, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18021,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,18022,29840, 29840,29840,29840,18021,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 18026,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18027,29840,29840,29840,29840,18026,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,18031,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18032,29840,29840,29840, 29840,18031,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18036,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 18037,29840,29840,29840,29840,18036,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,18041,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18042,29840,29840,29840,29840,18041, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18045,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,18046,29840, 29840,29840,29840,18045,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,18047, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18047,29840,29840,29840,29840, 18049,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,18047,18047, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18051, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18052,29840,29840,29840,29840,18051,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18056,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18057,29840,29840,29840,29840, 18056,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18060,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,18061, 29840,29840,29840,29840,18060,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,18062, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18062,29840,29840,29840, 29840,18064,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139,18062,18062,10999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 140,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358,29840,10000, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18066,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18067,29840,29840,29840,29840, 18066,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18071,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,13392,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,18072, 29840,29840,29840,29840,18071,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18076,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18077,29840,29840,29840,29840,18076,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18081,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18082,29840,29840, 29840,29840,18081,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18085, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18086,29840,29840,29840,29840,18085,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18088,18089,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139,29840,29840,29840,29840,29840,29840, 29840,18089, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,18091,18091, 18091,18091,18091,18091,18091,18091, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18092,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18092,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,18094,18095,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139,29840,29840,29840,29840,29840,29840,29840, 18095, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18097,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,13392,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,18098, 29840,29840,29840,29840,18097,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18102,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18103,29840,29840,29840,29840,18102,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18107,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 13392,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18108,29840,29840, 29840,29840,18107,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18112, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18113,29840,29840,29840,29840,18112,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18116,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18117,29840,29840,29840,29840,29840, 29840,10009, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,18117, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18119, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18120,29840,29840,29840,29840,18119,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18122,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18123,29840,29840,29840,29840, 18122,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18128,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,13392,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,18129, 29840,29840,29840,29840,18128,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18133,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18134,29840,29840,29840,29840,18133,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18137,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18138,29840,29840,29840, 29840,29840,29840,10009, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18138, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18140,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18141,29840,29840,29840,29840,18140,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18144,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18145,29840,29840, 29840,29840,18144,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18149, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18151,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18152,29840, 29840,29840,29840,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18152, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,18153,29840, 29840,29840,29840,18149,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 18158,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18159,29840,29840,29840,29840,18158,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,18162,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18163,29840,29840,29840, 29840,18162,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18165,18166, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139,29840, 29840,29840,29840,29840,29840,29840,18166, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,18168,18168,18168,18168,18168,18168,18168, 18168, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18169,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 18169,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18171,18172,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139,29840,29840, 29840,29840,29840,29840,29840,18172, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,16030,29840,29840,29840,29840,29840,29840,29840, 29840,18173,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,18174,18175,18175,18175,18175,18175,18175, 18175,18175,16064,29840,29840,29840,29840,29840,29840,18175, 18175,18175,18175,18175,18176,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18175,18175,18175,18175, 18175,18175,18178,18178,18178,18178,18178,18178,18178,18178, 18178,18179,29840,29840,29840,29840,29840,29840,18178,18178, 18178,18178,18178,18180,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18178,18178,18178,18178,18178, 18178, 7624,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,18181,18181,18181,18181,18181,18181,18181,18181, 18181,29840,29840,29840,29840,29840,29840,29840,18181,18181, 18181,18181,18181,18182,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18181,18181,18181,18181,18181, 18181,18186,18186,18186,18186,18186,18186,18186,18186,18186, 17133,29840,29840,29840,29840,29840,29840,18186,18186,18186, 18186,18186,18187,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18186,18186,18186,18186,18186,18186, 18188,18188,18188,18188,18188,18188,18188,18188,18188,29840, 29840,29840,29840,29840,29840,29840,18188,18188,18188,18188, 18188,18189,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18188,18188,18188,18188,18188,18188,18193, 18193,18193,18193,18193,18193,18193,18193,18193,17143,29840, 29840,29840,29840,29840,29840,18193,18193,18193,18193,18193, 18194,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,18193,18193,18193,18193,18193,18193,18195,18195, 18195,18195,18195,18195,18195,18195,18195,29840,29840,29840, 29840,29840,29840,29840,18195,18195,18195,18195,18195,18196, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,18195,18195,18195,18195,18195,18195,18201,18201,18201, 18201,18201,18201,18201,18201,18201,17155,29840,29840,29840, 29840,29840,29840,18201,18201,18201,18201,18201,18202,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18201,18201,18201,18201,18201,18201,18203,18203,18203,18203, 18203,18203,18203,18203,18203,29840,29840,29840,29840,29840, 29840,29840,18203,18203,18203,18203,18203,18204,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18203, 18203,18203,18203,18203,18203,14907,29840,14868,14868,14868, 14868,14868,14868,14868,14868,14868,14871,29840,29840,29840, 29840,29840,29840,14868,14868,14868,14868,14868,14870,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14868,14868,14868,14868,14868,14868,18212,18212,18212,18212, 18212,18212,18212,18212,18212,17171,29840,29840,29840,29840, 29840,29840,18212,18212,18212,18212,18212,18213,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18212, 18212,18212,18212,18212,18212,18214,18214,18214,18214,18214, 18214,18214,18214,18214,29840,29840,29840,29840,29840,29840, 29840,18214,18214,18214,18214,18214,18215,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18214,18214, 18214,18214,18214,18214,14882,14882,14882,14882,14882,14882, 14882,14882,14882,14885,29840,29840,29840,29840,29840,29840, 14882,14882,14882,14882,14882,14884,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14882,14882,14882, 14882,14882,14882,14878,14878,14878,14878,14878,14878,14878, 14878,14878,12211,29840,29840,29840,29840,29840,29840,14878, 14878,14878,14878,14878,14879,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14878,14878,14878,14878, 14878,14878,18223,18224,18224,18224,18224,18224,18224,18224, 18224,16113,29840,29840,29840,29840,29840,29840,18224,18224, 18224,18224,18224,18225,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18224,18224,18224,18224,18224, 18224,18227,18227,18227,18227,18227,18227,18227,18227,18227, 18228,29840,29840,29840,29840,29840,29840,18227,18227,18227, 18227,18227,18229,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18227,18227,18227,18227,18227,18227, 18235,18236,18237,18238,18238,18238,18238,18238,18238,29840, 29840,29840,29840,29840,29840,29840,14899,14899,14899,14899, 14899,14903,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14899,14899,14899,14899,14899,14899,18239, 18239,18239,18239,18239,18239,18239,18239,18239,13510,29840, 29840,29840,29840,29840,29840,14896,14896,14896,14896,14896, 14897,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14896,14896,14896,14896,14896,14896, 139, 139, 29840, 139,10955, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,13524,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,12239,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,12233,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,18244, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 9209,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,17203,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 9209, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17204,29840,29840,29840, 29840,17203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18246,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 18247,29840,29840,29840,29840,18246,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,18251,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18252,29840,29840,29840,29840,18251, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18256,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,18257,29840, 29840,29840,29840,18256,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 18261,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18262,29840,29840,29840,29840,18261,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,18265,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18266,29840,29840,29840, 29840,18265,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18268,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,18269,29840,29840,29840, 139, 139, 9211,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18269, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18271,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,18272, 29840,29840,29840,29840,18271,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18274,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18275,29840,29840,29840,29840,18274,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18277,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18278, 29840,29840,29840, 139, 139, 9211,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,18278, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,18280,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18281,29840,29840,29840, 29840,18280,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18285,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 18286,29840,29840,29840,29840,18285,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,17292,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,17293,29840,29840,29840,29840,17292, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 4937, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,18308,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 29840,17296, 1225,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 29840,29840,29840,29840,16209,29840,29840,29840,29840,29840, 18309,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 4251,29840,29840,29840, 29840, 4247,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,18332,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 18333,29840,29840,29840,29840,18332,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,18336, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840, 29840,29840,17326,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,18336, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,17327,29840,29840,29840,29840,17326, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,18338,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 4319,29840, 29840,29840,29840,29840, 1606, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 4319, 1597, 1597,29840, 1597, 4286, 1597, 1597, 1597, 1597,15084, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,13764,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1606, 1597, 1597, 1597, 139, 139,29840, 139, 139, 139, 139,17338, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,16265,29840,29840,29840,29840,29840,18349,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,17357,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 9412,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 17358,29840,29840,29840,29840,17357,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,18365,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18366,29840,29840,29840,29840,18365, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,18370,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18371,29840, 29840,29840,29840,18370,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 18375,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,18376,29840,29840,29840,29840,18375,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 29840,29840,29840,29840,18382,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2564, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,17415, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,16330,29840,29840,18386,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 1617,29840,29840,29840,29840,29840, 16338,29840,16338,29840,29840,17426,17426,17426,17426,17426, 17426,17426,17426,17426,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1618,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16340,29840,29840,16341, 3741, 3741, 3742, 3741, 3741, 3741, 3741, 3741, 3741,17440, 3741, 3741,29840, 3741, 3741,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3741, 3741, 3741, 3741, 3741, 3741, 3741,29840,29840, 29840,29840,29840,16353,29840,29840,18407,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4411, 3741, 3741, 3741, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18419,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18420,29840,29840,29840,29840,18419, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,18423,18423,18423,18423,18423,18423,18423,18423,18423, 29840,29840,29840,29840,29840,29840,29840,18423,18423,18423, 18423,18423,18424,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18423,18423,18423,18423,18423,18423, 18426,18426,18426,18426,18426,18426,18426,18426,18426,17463, 29840,29840,29840,29840,29840,29840,18426,18426,18426,18426, 18426,18427,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18426,18426,18426,18426,18426,18426,17465, 17465,17465,17465,17465,17465,17465,17465,17465,18428,29840, 29840,29840,29840,29840,29840,17465,17465,17465,17465,17465, 17466,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17465,17465,17465,17465,17465,17465,18430,18430, 18430,18430,18430,18430,18430,18430,18430,29840,29840,29840, 29840,29840,29840, 329,18430,18430,18430,18430,18430,18431, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,18430,18430,18430,18430,18430,18430,18433,18433,18433, 18433,18433,18433,18433,18433,18433,16381,29840,29840,29840, 29840,29840,29840,18433,18433,18433,18433,18433,18434,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18433,18433,18433,18433,18433,18433,18436,18436,18436,18436, 18436,18436,18436,18436,18436,29840,29840,29840,29840,29840, 29840,29840,18436,18436,18436,18436,18436,18437,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18436, 18436,18436,18436,18436,18436,18440,18440,18440,18440,18440, 18440,18440,18440,18440,16390,29840,29840,29840,29840,29840, 29840,18440,18440,18440,18440,18440,18441,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18440,18440, 18440,18440,18440,18440,18443,18443,18443,18443,18443,18443, 18443,18443,18443,29840,29840,29840,29840,29840,29840,29840, 18443,18443,18443,18443,18443,18444,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,18443,18443,18443, 18443,18443,18443,18446,18447,18448,18449,18449,18449,18449, 18449,18449,29840,29840,29840,29840,29840,29840,29840,15218, 15218,15218,15218,15218,15219,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15218,15218,15218,15218, 15218,15218,18450,18450,18450,18450,18450,18450,18450,18450, 18450,16399,29840,29840,29840,29840,29840,29840,18450,18450, 18450,18450,18450,18451,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18450,18450,18450,18450,18450, 18450,18453,18453,18453,18453,18453,18453,18453,18453,18453, 29840,29840,29840,29840,29840,29840,29840,18453,18453,18453, 18453,18453,18454,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18453,18453,18453,18453,18453,18453, 18456,18457,18458,18459,18459,18459,18459,18459,18459,29840, 29840,29840,29840,29840,29840,29840,15225,15225,15225,15225, 15225,15226,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15225,15225,15225,15225,15225,15225,11553, 29840,18460,18460,18460,18460,18460,18460,18460,18460,18460, 13928,29840,29840,29840,29840,29840,29840,15223,15223,15223, 15223,15223,15224,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15223,15223,15223,15223,15223,15223, 18461,18461,18461,18461,18461,18461,18461,18461,18461,16412, 29840,29840,29840,29840,29840,29840,18461,18461,18461,18461, 18461,18462,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18461,18461,18461,18461,18461,18461,18464, 18464,18464,18464,18464,18464,18464,18464,18464,29840,29840, 29840,29840,29840,29840,29840,18464,18464,18464,18464,18464, 18465,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,18464,18464,18464,18464,18464,18464,18467,18468, 18469,18470,18470,18470,18470,18470,18470,29840,29840,29840, 29840,29840,29840,29840,15233,15233,15233,15233,15233,15234, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15233,15233,15233,15233,15233,15233,18471,18471,18471, 18471,18471,18471,18471,18471,18471,13940,29840,29840,29840, 29840,29840,29840,15231,15231,15231,15231,15231,15232,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15231,15231,15231,15231,15231,15231,18472,18472,18472,18472, 18472,18472,18472,18472,18472,16426,29840,29840,29840,29840, 29840,29840,18472,18472,18472,18472,18472,18473,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18472, 18472,18472,18472,18472,18472,18475,18475,18475,18475,18475, 18475,18475,18475,18475,29840,29840,29840,29840,29840,29840, 29840,18475,18475,18475,18475,18475,18476,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18475,18475, 18475,18475,18475,18475,18478,18479,18480,18481,18481,18481, 18481,18481,18481,29840,29840,29840,29840,29840,29840,29840, 15244,15244,15244,15244,15244,15245,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15244,15244,15244, 15244,15244,15244,18482,18482,18482,18482,18482,18482,18482, 18482,18482,13956,29840,29840,29840,29840,29840,29840,15242, 15242,15242,15242,15242,15243,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15242,15242,15242,15242, 15242,15242,18483,18483,18483,18483,18483,18483,18483,18483, 18483,17512,29840,29840,29840,29840,29840,29840,18483,18483, 18483,18483,18483,18484,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18483,18483,18483,18483,18483, 18483,18485,18485,18485,18485,18485,18485,18485,18485,18485, 29840,29840,29840,29840,29840,29840,29840,18485,18485,18485, 18485,18485,18486,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18485,18485,18485,18485,18485,18485, 15257,15257,15257,15257,15257,15257,15257,15257,15257,15258, 29840,29840,29840,29840,29840,29840,15257,15257,15257,15257, 15257,15259,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15257,15257,15257,15257,15257,15257,15254, 15254,15254,15254,15254,15254,15254,15254,15254,12690,29840, 29840,29840,29840,29840,29840,15254,15254,15254,15254,15254, 15255,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15254,15254,15254,15254,15254,15254,16457,29840, 16457,29840,29840,17533,17533,17533,17533,17533,17533,17533, 17533,17533,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1275,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,16459,29840,29840,16460, 8817,29840,18505,18505,18505, 18505,18505,18505,18505,18505,18505,13999,29840,29840,29840, 29840,29840,29840,15286,15286,15286,15286,15286,15287,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15286,15286,15286,15286,15286,15286,15300,15300,15300,15300, 15300,15300,15300,15300,15300,12732,29840,29840,29840,29840, 29840,29840,15300,15300,15300,15300,15300,15301,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 4455,29840,29840,29840,15300, 15300,15300,15300,15300,15300,15310,15310,15310,15310,15310, 15310,15310,15310,15310,12741,29840,29840,29840,29840,29840, 29840,15310,15310,15310,15310,15310,15311,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15310,15310, 15310,15310,15310,15310,15321,15321,15321,15321,15321,15321, 15321,15321,15321,12754,29840,29840,29840,29840,29840,29840, 15321,15321,15321,15321,15321,15322,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15321,15321,15321, 15321,15321,15321,15332,15332,15332,15332,15332,15332,15332, 15332,15332,12768,29840,29840,29840,29840,29840,29840,15332, 15332,15332,15332,15332,15333,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15332,15332,15332,15332, 15332,15332,18506,18506,18506,18506,18506,18506,18506,18506, 18506,29840,29840,29840,29840,29840,29840,29840,18506,18506, 18506,18506,18506,18507,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4455,29840,29840,29840,18506,18506,18506,18506,18506, 18506,18509,18509,18509,18509,18509,18509,18509,18509,18509, 14048,29840,29840,29840,29840,29840,29840,15343,15343,15343, 15343,15343,15344,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15343,15343,15343,15343,15343,15343, 5904,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17586,17586,17586,17586,17586,17586,17586,17586,17586, 29840,17586,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5905,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18527, 5906, 5904,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18528, 18528,18528,18528,18528,18528,18528,18528,18528,29840,18528, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5905,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 5906,10612,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17590,17590,17590, 17590,17590,17590,17590,17590,17590,29840,17590,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10613,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,18531,10614,18565,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840, 29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18566,18566,18566,18566,18566,18566,18566, 18566,18566,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840, 29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840,29840,29840,29840, 9703, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12867,29840,29840,29840,29840,29840, 29840,12868,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12869,29840,12870,29840, 12872,29840,29840,12873,14133,29840,29840,29840,12875,29840, 29840,12876,29840,12877,29840,12878,29840,12879,12880,12881, 3291,29840,12866,29840,29840,29840,29840,29840,29840, 9703, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12867,29840,29840,29840,29840,29840, 29840,12868,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12869,29840,12870,29840, 12872,29840,29840,12873,14133,29840,29840,29840,12875,14143, 29840,12876,29840,12877,18568,12878,29840,12879,12880,12881, 18585,15426, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703, 9703,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,11714,29840, 29840,29840,29840,15427, 1769,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1770,29840,29840,29840, 29840,29840,29840, 1771,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1772,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777,29840,29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 1769,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1770,29840,29840,29840,29840,29840, 29840, 1771,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 3288, 2212,29840, 1773,29840, 1774,29840,29840, 1775, 1776,29840,29840,29840, 1777,29840, 29840, 1778,29840, 1779,29840, 1780,29840, 1781, 1782, 1783, 2213, 3291,29840,12895,29840,29840,29840,29840,29840,29840, 12896,29840,29840,18589,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12897,29840,29840,29840,29840, 29840,29840,12898,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12899,29840,12900, 29840,12901,29840,29840,12902,12903,29840,29840,29840,12904, 29840,29840,12905,29840,12906,29840,12907,29840,12908,12909, 12910,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,18590,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,29840,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,29840,29840, 14177,29840,14178,29840,14179,29840,14180,14181,14182,18591, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,29840,14174,14175, 29840,29840,29840,18592,29840,29840,14177,29840,14178,29840, 14179,29840,14180,14181,14182,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,29840,14173,29840,29840,14174,14175,29840,29840, 29840,18593,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 29840,14173,29840,29840,14174,14175,29840,29840,29840,14176, 18594,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,18595,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,29840,29840, 14177,29840,14178,29840,14179,29840,14180,14181,14182,14168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,18596,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,29840,14174,14175, 29840,29840,29840,14176,29840,29840,14177,29840,14178,29840, 14179,29840,14180,14181,18597, 3291,29840,12895,29840,29840, 29840,29840,29840,29840,12896,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12897, 29840,29840,29840,29840,29840,29840,12898,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12899,29840,12900,29840,12901,29840,29840,12902,12903, 29840,29840,29840,12904,29840,29840,12905,29840,12906,29840, 12907,29840,12908,12909,12910,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,29840,14173,29840,29840,14174,14175,29840,29840, 18598,14176,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 18599,14173,29840,29840,14174,14175,29840,29840,29840,14176, 29840,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18600,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,29840,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,29840,29840, 14177,29840,14178,29840,14179,29840,14180,14181,14182,14168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18601,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,15467,14168,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14169,29840,29840,29840,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,18602,14173,29840,29840,14174, 14175,29840,29840,29840,14176,29840,29840,14177,29840,14178, 29840,14179,29840,14180,14181,14182,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,15462,14174,14175,29840, 29840,29840,14176,29840,18603,14177,29840,14178,29840,14179, 29840,14180,14181,14182, 3291,29840,12912,29840,29840,29840, 29840,29840,29840,12913,29840,29840,18621,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 29840,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,18622,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,18623,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,18624,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,18625,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14204,29840,14205,29840,14206,29840,29840,14207,14208,29840, 29840,29840,14209,18626,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,18627, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 18628,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,18629, 3291,29840, 12912,29840,29840,29840,29840,29840,29840,12913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12914,29840,29840,29840,29840,29840,29840,12915, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12916,29840,12917,29840,12918,29840, 29840,12919,12920,29840,29840,29840,12921,29840,29840,12922, 29840,12923,29840,12924,29840,12925,12926,12927,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,18630,14209,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14204,29840,14205,18631,14206,29840,29840,14207,14208,29840, 29840,29840,14209,29840,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18632,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18633,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 15503,14201,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14202,29840,29840,29840,29840,29840,29840, 14203,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14204,29840,14205,18634,14206, 29840,29840,14207,14208,29840,29840,29840,14209,29840,29840, 14210,29840,14211,29840,14212,29840,14213,14214,14215,14201, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14202,29840,29840,29840,29840,29840,29840,14203,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14204,29840,14205,29840,14206,29840,15498, 14207,14208,29840,29840,29840,14209,29840,18635,14210,29840, 14211,29840,14212,29840,14213,14214,14215, 3291,29840, 3292, 29840,29840,29840,29840,29840,29840, 1768,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3293,29840,29840,29840,29840,29840,29840, 3294,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302,29840, 3303,29840,18653,29840, 3305, 3306, 3307, 3291,29840, 3292, 29840,29840,29840,29840,29840,29840, 1768,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3293,29840,29840,29840,29840,29840,29840, 3294,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3295,29840,18654,29840, 3298,29840,29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307,10695,18655,29840, 29840,29840,29840,29840,29840,29840,18656,10696,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10699,29840,10700,29840,10701,29840,29840,10702,10703, 29840,29840,29840,10704,29840,29840,10705,29840,10706,29840, 10707,29840,10708,10709,10710,10695,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18657,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10697,29840,29840, 29840,29840,29840,29840,10698,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10699, 29840,10700,29840,10701,29840,29840,10702,10703,29840,29840, 29840,10704,29840,29840,10705,29840,10706,29840,10707,29840, 10708,10709,10710,10695,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10696,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18658,29840, 29840,29840,29840,29840,29840,10697,29840,29840,29840,29840, 29840,29840,10698,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10699,29840,11734, 29840,10701,29840,29840,10702,10703,29840,29840,29840,10704, 29840,29840,10705,29840,10706,29840,11735,29840,10708,11736, 10710, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,14250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14253,29840,14254, 16709,14256,29840,29840,14257,15542,29840,29840,29840,14259, 29840,29840,14260,29840,14261,29840,14262,29840,14263,14264, 14265, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,18661,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14253,29840,14254, 16709,14256,29840,29840,14257,18662,29840,29840,29840,14259, 29840,29840,14260,29840,14261,29840,14262,29840,14263,14264, 14265, 2223,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2224,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18690,29840,29840,29840,29840,29840, 29840,29840,29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229, 29840,29840, 2230, 2231,29840,29840,29840, 2232,29840, 2747, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 2223, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2224, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2227,29840, 2228,29840,18691,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 8137,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8139,18692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8140, 29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147, 29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8139,29840,29840,29840,29840, 18693,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8140,29840,29840, 29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8142, 29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840, 29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840,29840,29840, 29840,29840, 8136,29840,29840,10729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10730,29840,29840, 29840,29840,29840,29840,10731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10732, 29840,10733,29840,10735,29840,29840,10736,10762,29840,29840, 29840,10738,29840,29840,10739,29840,18697,29840,10741,29840, 10742,10743,10744,11785, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,15582,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,10761,10735,29840,29840,10736,15583,29840, 29840,29840,10738,29840,29840,10739,29840,10740,29840,10741, 29840,10742,10743,10744, 2223,18713,29840,29840,29840,29840, 29840,29840,29840,29840, 2224,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2225,29840, 2738,29840, 29840,29840,29840, 2226,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 3291,29840,14316,29840,29840,29840,29840,29840, 29840,14317,29840,29840,14318,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14319,29840,29840,29840, 29840,29840,29840,14320,29840,29840,18715,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14321,29840, 14322,29840,14323,29840,29840,14324,14325,29840,29840,29840, 14326,29840,29840,14327,29840,14328,29840,14329,29840,14330, 14331,14332,15613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15614,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15615,29840,29840,29840,29840,29840, 29840,15616,29840,29840,29840,29840,29840,18716,29840,29840, 29840,29840,29840,29840,29840,29840,15617,29840,15618,29840, 15619,29840,29840,15620,15621,29840,29840,29840,15622,29840, 29840,15623,29840,15624,29840,15625,29840,15626,15627,15628, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,29840,15619,29840, 29840,15620,15621,29840,29840,29840,15622,18717,29840,15623, 29840,15624,29840,15625,29840,15626,15627,15628, 3291,29840, 14316,29840,29840,29840,29840,29840,29840,14317,29840,29840, 14318,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14319,29840,29840,29840,29840,29840,29840,14320, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14321,29840,14322,15634,14323,29840, 29840,14324,16789,29840,29840,29840,14326,29840,29840,14327, 29840,14328,29840,14329,29840,14330,14331,14332, 3291,29840, 14334,29840,29840,29840,29840,29840,29840,14335,29840,29840, 14336,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14337,29840,29840,29840,29840,29840,29840,14338, 29840,29840,18756,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14339,29840,14340,29840,14341,29840, 29840,14342,14343,29840,29840,29840,14344,29840,29840,14345, 29840,14346,29840,14347,29840,14348,14349,14350,15650,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15651,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15652,29840,29840,29840,29840,29840,29840,15653,29840,29840, 29840,29840,29840,18757,29840,29840,29840,29840,29840,29840, 29840,29840,15654,29840,15655,29840,15656,29840,29840,15657, 15658,29840,29840,29840,15659,29840,29840,15660,29840,15661, 29840,15662,29840,15663,15664,15665,15650,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15652,29840, 29840,29840,29840,29840,29840,15653,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15654,29840,15655,29840,15656,29840,29840,15657,15658,29840, 29840,29840,15659,18758,29840,15660,29840,15661,29840,15662, 29840,15663,15664,15665, 3291,29840,14334,29840,29840,29840, 29840,29840,29840,14335,29840,29840,14336,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14337,29840, 29840,29840,29840,29840,29840,14338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14339,29840,14340,15671,14341,29840,29840,14342,16831,29840, 29840,29840,14344,29840,29840,14345,29840,14346,29840,14347, 29840,14348,14349,14350, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222,29840,29840, 3956,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18797,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840, 29840,29840, 3965,29840, 4636, 3966,29840, 3967,29840, 3968, 29840, 3969, 3970, 3971, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222,29840,29840, 3956,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840, 29840,29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968, 5314,18798, 3970, 3971, 783, 783, 784,14556, 786, 783, 783, 783,29840,29840, 783, 783, 783,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 783, 783, 783, 783, 783, 783,29840,29840,29840,29840,29840, 14364,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 146, 783, 783, 783, 783, 783, 784, 785, 786, 783, 783, 783, 29840,29840, 783, 783, 783,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 783, 783, 783, 783, 783, 783,29840,29840,29840,29840,29840, 789,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 783, 783, 783, 29840,29840,29840,29840,18807, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,15712,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139,16864, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17907,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,17908, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17909,29840,29840,29840,29840,17907,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,17908, 139, 139, 29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,17910,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17912,29840,29840,29840, 29840,17910,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,17918,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139,17919, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 9856, 8356,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17920,29840,29840,29840,29840,17918,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139,17919, 139, 139, 29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139, 29840, 365, 8356,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,17921,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 9883, 139, 139, 139, 139, 139, 139, 139,29840, 365, 8356, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,17923,29840,29840,29840, 29840,17921,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18824,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 18825,29840,29840,29840,29840,18824,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,18829,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18830,29840,29840,29840,29840,18829, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18833,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,18834,29840, 29840,29840,29840,18833,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 18836,18837,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,18837, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18839,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,18841,18842,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 18842, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,15770,29840,29840, 29840,29840,29840,18843,29840,29840,29840,29840,29840,15771, 29840,29840,29840,29840,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15771,18844,18845, 18845,18845,18845,18845,18845,18845,18845,16929,29840,29840, 29840,29840,29840,29840,18845,18845,18845,18845,18845,18846, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,18845,18845,18845,18845,18845,18845,18848,18848,18848, 18848,18848,18848,18848,18848,18848,18849,29840,29840,29840, 29840,29840,29840,18848,18848,18848,18848,18848,18850,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18848,18848,18848,18848,18848,18848, 8334,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,18851,18851,18851, 18851,18851,18851,18851,18851,18851,29840,29840,29840,29840, 29840,29840,29840,18851,18851,18851,18851,18851,18852,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18851,18851,18851,18851,18851,18851,18856,18856,18856,18856, 18856,18856,18856,18856,18856,17954,29840,29840,29840,29840, 29840,29840,18856,18856,18856,18856,18856,18857,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18856, 18856,18856,18856,18856,18856,18858,18858,18858,18858,18858, 18858,18858,18858,18858,29840,29840,29840,29840,29840,29840, 29840,18858,18858,18858,18858,18858,18859,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18858,18858, 18858,18858,18858,18858,18863,18863,18863,18863,18863,18863, 18863,18863,18863,17964,29840,29840,29840,29840,29840,29840, 18863,18863,18863,18863,18863,18864,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,18863,18863,18863, 18863,18863,18863,18865,18865,18865,18865,18865,18865,18865, 18865,18865,29840,29840,29840,29840,29840,29840,29840,18865, 18865,18865,18865,18865,18866,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18865,18865,18865,18865, 18865,18865,18871,18871,18871,18871,18871,18871,18871,18871, 18871,17976,29840,29840,29840,29840,29840,29840,18871,18871, 18871,18871,18871,18872,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18871,18871,18871,18871,18871, 18871,18873,18873,18873,18873,18873,18873,18873,18873,18873, 29840,29840,29840,29840,29840,29840,29840,18873,18873,18873, 18873,18873,18874,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18873,18873,18873,18873,18873,18873, 15894,29840,15855,15855,15855,15855,15855,15855,15855,15855, 15855,15858,29840,29840,29840,29840,29840,29840,15855,15855, 15855,15855,15855,15857,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15855,15855,15855,15855,15855, 15855,18882,18882,18882,18882,18882,18882,18882,18882,18882, 17992,29840,29840,29840,29840,29840,29840,18882,18882,18882, 18882,18882,18883,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18882,18882,18882,18882,18882,18882, 18884,18884,18884,18884,18884,18884,18884,18884,18884,29840, 29840,29840,29840,29840,29840,29840,18884,18884,18884,18884, 18884,18885,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18884,18884,18884,18884,18884,18884,15869, 15869,15869,15869,15869,15869,15869,15869,15869,15872,29840, 29840,29840,29840,29840,29840,15869,15869,15869,15869,15869, 15871,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15869,15869,15869,15869,15869,15869,15865,15865, 15865,15865,15865,15865,15865,15865,15865,13249,29840,29840, 29840,29840,29840,29840,15865,15865,15865,15865,15865,15866, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15865,15865,15865,15865,15865,15865,18893,18894,18894, 18894,18894,18894,18894,18894,18894,16978,29840,29840,29840, 29840,29840,29840,18894,18894,18894,18894,18894,18895,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18894,18894,18894,18894,18894,18894,18897,18897,18897,18897, 18897,18897,18897,18897,18897,18898,29840,29840,29840,29840, 29840,29840,18897,18897,18897,18897,18897,18899,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18897, 18897,18897,18897,18897,18897,18905,18906,18907,18908,18908, 18908,18908,18908,18908,29840,29840,29840,29840,29840,29840, 29840,15886,15886,15886,15886,15886,15890,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15886,15886, 15886,15886,15886,15886,18909,18909,18909,18909,18909,18909, 18909,18909,18909,14664,29840,29840,29840,29840,29840,29840, 15883,15883,15883,15883,15883,15884,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15883,15883,15883, 15883,15883,15883, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18915, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18916,29840,29840,29840,29840,18915,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18920,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18921,29840,29840,29840,29840, 18920,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18925,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,18926, 29840,29840,29840,29840,18925,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18930,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18931,29840,29840,29840,29840,18930,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18935,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18936,29840,29840, 29840,29840,18935,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18940, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18941,29840,29840,29840,29840,18940,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18944,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18945,29840,29840,29840,29840,29840, 29840, 8358, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,18945, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18947, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18948,29840,29840,29840,29840,18947,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18950,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18951,29840,29840,29840,29840, 18950,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18956,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,18957, 29840,29840,29840,29840,18956,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18961,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18962,29840,29840,29840,29840,18961,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18965,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18966,29840,29840,29840, 29840,29840,29840, 8358, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18966, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18968,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18969,29840,29840,29840,29840,18968,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10007,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18066,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 10007,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18067,29840,29840, 29840,29840,18066,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18971, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18972,29840,29840,29840,29840,18971,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18976,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18977,29840,29840,29840,29840, 18976,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18981,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,18982, 29840,29840,29840,29840,18981,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18986,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18987,29840,29840,29840,29840,18986,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18990,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18991,29840,29840, 29840,29840,18990,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18993, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18994,29840,29840,29840,10009, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,18994, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,18996,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,18997,18997,18997,18997,18997,18997, 18997,18997,18997, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18996,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139,12137, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,19000,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,19001,29840,29840,29840,29840,19000, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19003,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19004,29840,29840,29840,10009, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19004, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19006,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 13392,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,19007,29840,29840, 29840,29840,19006,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19011, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19012,29840,29840,29840,29840,19011,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 10012,10007,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,18144,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,10012,10007,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,18145,29840,29840,29840,29840, 18144,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19019,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19020, 29840,29840,29840,29840,19019,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19022,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19023,29840,29840,29840,29840,19022,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19025,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19026,29840,29840, 29840,29840,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19026, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 17108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,19032,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19033,29840,29840,29840,29840,19032, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19037,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,19038,29840, 29840,29840,29840,19037,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 19041,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19042,29840,29840,29840,29840,19041,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,19044,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19045,29840, 29840,29840,17110, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,19045, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,19047,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,19048, 19048,19048,19048,19048,19048,19048,19048,19048, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 19047,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 19029, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19051,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19052, 29840,29840,29840,29840,19051,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19054,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19055,29840,29840,29840,17110, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19055, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 17109,19056,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139,19057,19057,19057,19057,19057,19057,19057,19057,19057, 18179,29840,29840,29840,29840,29840,29840,19057,19057,19057, 19057,19057,19058,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19057,19057,19057,19057,19057,19057, 19059,19059,19059,19059,19059,19059,19059,19059,19059,19060, 29840,29840,29840,29840,29840,29840,19059,19059,19059,19059, 19059,19061,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19059,19059,19059,19059,19059,19059, 7624, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19063,19063,19063,19063,19063,19063,19063,19063,19063,19064, 29840,29840,29840,29840,29840,29840,19063,19063,19063,19063, 19063,19065,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19063,19063,19063,19063,19063,19063,19069, 19069,19069,19069,19069,19069,19069,19069,19069,17133,29840, 29840,29840,29840,29840,29840,19069,19069,19069,19069,19069, 19070,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19069,19069,19069,19069,19069,19069,19072,19072, 19072,19072,19072,19072,19072,19072,19072,19073,29840,29840, 29840,29840,29840,29840,19072,19072,19072,19072,19072,19074, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19072,19072,19072,19072,19072,19072,19078,19078,19078, 19078,19078,19078,19078,19078,19078,17143,29840,29840,29840, 29840,29840,29840,19078,19078,19078,19078,19078,19079,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19078,19078,19078,19078,19078,19078,19081,19081,19081,19081, 19081,19081,19081,19081,19081,19082,29840,29840,29840,29840, 29840,29840,19081,19081,19081,19081,19081,19083,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19081, 19081,19081,19081,19081,19081,19087,19088,19089,19090,19090, 19090,19090,19090,19090,29840,29840,29840,29840,29840,29840, 29840,16075,16075,16075,16075,16075,16079,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16075,16075, 16075,16075,16075,16075,19091,19091,19091,19091,19091,19091, 19091,19091,19091,17155,29840,29840,29840,29840,29840,29840, 19091,19091,19091,19091,19091,19092,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19091,19091,19091, 19091,19091,19091,19094,19094,19094,19094,19094,19094,19094, 19094,19094,19095,29840,29840,29840,29840,29840,29840,19094, 19094,19094,19094,19094,19096,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,19094,19094,19094,19094, 19094,19094,19100,19101,19102,19103,19103,19103,19103,19103, 19103,29840,29840,29840,29840,29840,29840,29840,16085,16085, 16085,16085,16085,16089,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16085,16085,16085,16085,16085, 16085,14907,29840,19104,19104,19104,19104,19104,19104,19104, 19104,19104,14871,29840,29840,29840,29840,29840,29840,16083, 16083,16083,16083,16083,16084,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16083,16083,16083,16083, 16083,16083,19105,19105,19105,19105,19105,19105,19105,19105, 19105,17171,29840,29840,29840,29840,29840,29840,19105,19105, 19105,19105,19105,19106,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19105,19105,19105,19105,19105, 19105,19108,19108,19108,19108,19108,19108,19108,19108,19108, 19109,29840,29840,29840,29840,29840,29840,19108,19108,19108, 19108,19108,19110,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19108,19108,19108,19108,19108,19108, 19114,19115,19116,19117,19117,19117,19117,19117,19117,29840, 29840,29840,29840,29840,29840,29840,16096,16096,16096,16096, 16096,16100,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16096,16096,16096,16096,16096,16096,19118, 19118,19118,19118,19118,19118,19118,19118,19118,14885,29840, 29840,29840,29840,29840,29840,16094,16094,16094,16094,16094, 16095,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16094,16094,16094,16094,16094,16094,19119,19119, 19119,19119,19119,19119,19119,19119,19119,18228,29840,29840, 29840,29840,29840,29840,19119,19119,19119,19119,19119,19120, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19119,19119,19119,19119,19119,19119,19121,19121,19121, 19121,19121,19121,19121,19121,19121,29840,29840,29840,29840, 29840,29840,29840,19121,19121,19121,19121,19121,19122,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19121,19121,19121,19121,19121,19121,16112,16112,16112,16112, 16112,16112,16112,16112,16112,16115,29840,29840,29840,29840, 29840,29840,16112,16112,16112,16112,16112,16114,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16112, 16112,16112,16112,16112,16112,16108,16108,16108,16108,16108, 16108,16108,16108,16108,13510,29840,29840,29840,29840,29840, 29840,16108,16108,16108,16108,16108,16109,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16108,16108, 16108,16108,16108,16108, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 12239,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,12233,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19132, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19134,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19135, 29840,29840,29840,29840,19134,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19140,29840,29840,29840,29840,19139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19144,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19145,29840,29840, 29840,29840,19144,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19149, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19150,29840,29840,29840,29840,19149,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,19154,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19155,29840,29840,29840,29840, 19154,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19158,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19159, 29840,29840,29840,29840,19158,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,19160, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19160,29840,29840,29840, 29840,19162,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211,19160,19160, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 19164,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19165,29840,29840,29840,29840,19164,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,19168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19169,29840,29840,29840, 29840,19168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19172,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 19173,29840,29840,29840,29840,19172,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,19174, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19174,29840,29840, 29840,29840,19176,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211,19174,19174,17284,29840,17284,29840,29840, 18300,18300,18300,18300,18300,18300,18300,18300,18300,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1572,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17286, 1234, 29840,17287, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840,19191,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 19192,29840,29840,29840,29840,19191,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1234, 1225, 1225, 1225, 1225,29840, 1225, 3570, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,17296, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,16209,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 1225, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,18332, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,18333,29840,29840,29840,29840,18332,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 5685, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840, 29840,29840,29840,19220,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1606, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,18336, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840, 29840,17326,29840,29840,29840,29840,29840,19221,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 4997,29840,29840,29840,29840, 4993,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 139, 139,29840, 139, 1078, 139, 139,17338, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,16265,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,19245,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,19246,29840,29840,29840,29840,19245, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,19250,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,19251,29840, 29840,29840,29840,19250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,17415, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 16330,29840,29840,29840,29840,29840,19255,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 1617,29840,29840,29840,29840,29840,17428,29840, 17428,29840,29840,18397,18397,18397,18397,18397,18397,18397, 18397,18397,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 1618,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17430,29840,29840,17431, 3741, 3741, 3742, 3741, 3741, 3741, 3741, 3741, 3741,17440, 3741, 3741,29840, 3741, 3741, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3741, 3741, 3741, 3741, 3741, 3741, 3741,29840,29840,29840,29840, 29840,16353,29840,29840,29840,29840,29840,19278,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 4411, 3741, 3741, 3741, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19291, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19292,29840,29840,29840,29840,19291,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139,19295, 19295,19295,19295,19295,19295,19295,19295,19295,29840,29840, 29840,29840,29840,29840,29840,19295,19295,19295,19295,19295, 19296,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19295,19295,19295,19295,19295,19295,19299,19299, 19299,19299,19299,19299,19299,19299,19299,17463,29840,29840, 29840,29840,29840,29840,19299,19299,19299,19299,19299,19300, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19299,19299,19299,19299,19299,19299,19302,19302,19302, 19302,19302,19302,19302,19302,19302,29840,29840,29840,29840, 29840,29840, 329,19302,19302,19302,19302,19302,19303,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19302,19302,19302,19302,19302,19302,19305,19305,19305,19305, 19305,19305,19305,19305,19305,29840,29840,29840,29840,29840, 29840,29840,19305,19305,19305,19305,19305,19306,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19305, 19305,19305,19305,19305,19305,19308,19309,19310,19311,19311, 19311,19311,19311,19311,16377,29840,29840,29840,29840,29840, 29840,16376,16376,16376,16376,16376,16378,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16376,16376, 16376,16376,16376,16376,19312,19312,19312,19312,19312,19312, 19312,19312,19312,29840,29840,29840,29840,29840,29840,29840, 19312,19312,19312,19312,19312,19313,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19312,19312,19312, 19312,19312,19312,11553,29840,16389,16389,16389,16389,16389, 16389,16389,16389,16389,16390,29840,29840,29840,29840,29840, 29840,16389,16389,16389,16389,16389,16391,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16389,16389, 16389,16389,16389,16389,19318,19318,19318,19318,19318,19318, 19318,19318,19318,29840,29840,29840,29840,29840,29840,29840, 19318,19318,19318,19318,19318,19319,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19318,19318,19318, 19318,19318,19318,16398,16398,16398,16398,16398,16398,16398, 16398,16398,16399,29840,29840,29840,29840,29840,29840,16398, 16398,16398,16398,16398,16400,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16398,16398,16398,16398, 16398,16398,16395,16395,16395,16395,16395,16395,16395,16395, 16395,13928,29840,29840,29840,29840,29840,29840,16395,16395, 16395,16395,16395,16396,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16395,16395,16395,16395,16395, 16395,19324,19324,19324,19324,19324,19324,19324,19324,19324, 29840,29840,29840,29840,29840,29840,29840,19324,19324,19324, 19324,19324,19325,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19324,19324,19324,19324,19324,19324, 16411,16411,16411,16411,16411,16411,16411,16411,16411,16412, 29840,29840,29840,29840,29840,29840,16411,16411,16411,16411, 16411,16413,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16411,16411,16411,16411,16411,16411,16408, 16408,16408,16408,16408,16408,16408,16408,16408,13940,29840, 29840,29840,29840,29840,29840,16408,16408,16408,16408,16408, 16409,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16408,16408,16408,16408,16408,16408,19330,19330, 19330,19330,19330,19330,19330,19330,19330,29840,29840,29840, 29840,29840,29840,29840,19330,19330,19330,19330,19330,19331, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19330,19330,19330,19330,19330,19330,16425,16425,16425, 16425,16425,16425,16425,16425,16425,16426,29840,29840,29840, 29840,29840,29840,16425,16425,16425,16425,16425,16427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16425,16425,16425,16425,16425,16425,16422,16422,16422,16422, 16422,16422,16422,16422,16422,13956,29840,29840,29840,29840, 29840,29840,16422,16422,16422,16422,16422,16423,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16422, 16422,16422,16422,16422,16422,19336,19336,19336,19336,19336, 19336,19336,19336,19336,17512,29840,29840,29840,29840,29840, 29840,19336,19336,19336,19336,19336,19337,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19336,19336, 19336,19336,19336,19336,19339,19339,19339,19339,19339,19339, 19339,19339,19339,29840,29840,29840,29840,29840,29840,29840, 19339,19339,19339,19339,19339,19340,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19339,19339,19339, 19339,19339,19339,19342,19343,19344,19345,19345,19345,19345, 19345,19345,29840,29840,29840,29840,29840,29840,29840,16438, 16438,16438,16438,16438,16439,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16438,16438,16438,16438, 16438,16438,19346,19346,19346,19346,19346,19346,19346,19346, 19346,15258,29840,29840,29840,29840,29840,29840,16436,16436, 16436,16436,16436,16437,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,16436,16436,16436,16436,16436, 16436, 8817,29840,16463,16463,16463,16463,16463,16463,16463, 16463,16463,13999,29840,29840,29840,29840,29840,29840,16463, 16463,16463,16463,16463,16464,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16463,16463,16463,16463, 16463,16463,16500,16500,16500,16500,16500,16500,16500,16500, 16500,14048,29840,29840,29840,29840,29840,29840,16500,16500, 16500,16500,16500,16501,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 4455,29840,29840,29840,16500,16500,16500,16500,16500, 16500, 5904,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15377,15377, 15377,15377,15377,15378,15377,15377,15377,15377,15377,15377, 15377,15377,15377,15377,15377,15377,15377,15377,15377,15377, 15377,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5906,16537, 5904,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15376,15376,15376,15376,15376,15376,15376,15376,15376, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5905,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15379,29840,15376,15376,15376,15376,15376,15376, 29840,29840,29840,29840,29840,29840,29840, 5906, 5904,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18528, 18528,18528,18528,18528,18528,18528,18528,18528,29840,18528, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5905,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19374, 5906, 5904,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19375,19375,19375, 19375,19375,19375,19375,19375,19375,29840,19375,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 5905,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 5906, 9704,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19410, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,10666,29840, 29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,17628,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840, 29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706, 19411,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840, 29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840, 12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12867,29840,29840,29840,29840,29840,29840,12868, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12869,29840,12870,29840,12872,29840, 29840,12873,14133,29840,29840,29840,12875,29840,29840,12876, 29840,12877,29840,19412,29840,12879,12880,12881, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19413,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,10678, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19414,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840,10676, 9711,29840, 29840,29840,10677,29840,29840, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840, 29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,19415,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840,29840,29840, 29840, 9703,29840,29840,29840,19416,19416,19416,19416,19416, 19416,19416,19416,19416,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12867,29840,29840,29840, 29840,29840,29840,12868,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12869,29840, 12870,29840,12872,29840,29840,12873,14133,29840,29840,29840, 12875,29840,29840,12876,29840,12877,29840,12878,29840,12879, 12880,12881, 9704,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840, 29840,19429,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840,29840,29840,18585, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840, 29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,18585,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840,10676, 9711,29840,29840,29840,10677,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12895,29840, 29840,29840,29840,29840,29840,12896,29840,29840,29840,19431, 19431,19431,19431,19431,19431,19431,19431,19431,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12897,29840,29840,29840,29840,29840,29840,12898,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12899,29840,12900,29840,12901,29840,29840,12902, 12903,29840,29840,29840,12904,29840,29840,12905,29840,12906, 29840,12907,29840,12908,12909,12910,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,19432,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,15458,29840, 29840,29840,19433,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,14174,14175,29840,29840,29840, 14176,29840,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182, 3291,29840,12895,29840,29840,29840,29840,29840, 29840,12896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12897,29840,29840,29840, 29840,29840,29840,12898,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12899,29840, 12900,29840,12901,29840,29840,12902,12903,29840,29840,29840, 12904,29840,29840,12905,29840,12906,29840,12907,29840,12908, 12909,14187, 3291,29840,12912,29840,29840,29840,29840,29840, 29840,12913,29840,29840,29840,19460,19460,19460,19460,19460, 19460,19460,19460,19460,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12914,29840,29840,29840, 29840,29840,29840,12915,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12916,29840, 12917,29840,12918,29840,29840,12919,12920,29840,29840,29840, 12921,29840,29840,12922,29840,12923,29840,12924,29840,12925, 12926,12927,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19461,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,15494,29840,29840,29840,19462,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215, 3291,29840, 12912,29840,29840,29840,29840,29840,29840,12913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12914,29840,29840,29840,29840,29840,29840,12915, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12916,29840,12917,29840,12918,29840, 29840,12919,12920,29840,29840,29840,12921,29840,29840,12922, 29840,12923,29840,12924,29840,12925,12926,14220, 3291,29840, 19489,29840,29840,29840,29840,29840,29840, 1768,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3293,29840,29840,29840,29840,29840,29840, 3294, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840, 29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302, 29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 3928, 3291, 29840, 3292,29840,29840,29840,29840,29840,29840, 1768,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3293,29840,29840,29840,29840,29840,29840, 3294,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 3295,29840, 3296,29840, 3298, 29840, 3917, 3299, 3911,29840,29840,29840, 3301,29840,19490, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307,19491, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10696, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10697,29840,29840,29840,29840,29840,29840,10698,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10699,29840,10700,29840,10701,29840,29840, 10702,10703,29840,29840,29840,10704,29840,29840,10705,29840, 10706,29840,10707,29840,10708,10709,10710,10695,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10696,19492,19492, 19492,19492,19492,19492,19492,19492,19492,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10699,29840,10700,29840,10701,29840,29840,10702,10703, 29840,29840,29840,10704,29840,29840,10705,29840,10706,29840, 10707,29840,10708,10709,10710,10694,10694,10694,10694,10694, 10694,10694,10694,10694,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 11734,29840,29840,29840,29840,29840,29840,29840,29840,19493, 29840,29840,29840,29840,29840,29840,29840,11735,29840,29840, 11736, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,14250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14253,29840,15545, 29840,14256,29840,29840,14257,15542,29840,29840,29840,14259, 29840,29840,14260,29840,14261,29840,15546,29840,14263,15547, 14265, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,14250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14253,29840,14254, 29840,14256,29840,29840,14257,15542,29840,29840,29840,14259, 15555,29840,14260,29840,14261,19497,14262,29840,14263,14264, 14265,19517,16693,10694,10694,10694,10694,10694,10694,10694, 10694,10694,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12941, 29840,29840,29840,29840,16694, 8137,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8140,29840,29840, 29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8142, 29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840, 29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 2223,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2224,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2225,29840,29840,29840,29840, 29840,29840, 2226,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2227,29840, 2228, 29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232, 29840,29840, 2233,29840,19520,29840, 2235,29840, 2236, 2237, 2746, 8137,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8139,19521,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145, 29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291, 29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840, 29840,10729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10730,29840,29840,29840,29840,29840,29840, 10731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19526,29840,10733,29840,10735, 29840,29840,10736,10762,29840,29840,29840,10738,29840,11784, 10739,29840,10740,29840,10741,29840,10742,10743,10744, 3291, 29840,19529,29840,29840,29840,29840,29840,29840, 8136,29840, 29840,10729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10730,29840,29840,29840,29840,29840,29840, 10731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10732,29840,10733,29840,10735, 29840,29840,10736,10762,29840,29840,29840,10738,29840,29840, 10739,29840,10740,29840,10741,29840,10742,10743,10744, 2223, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2224, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2225,29840,29840,29840,29840,29840,29840, 2226,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 2223,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2224,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2225, 29840,29840,29840,29840,29840,29840, 2226,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3952, 2749,29840, 2228,29840, 2229,29840,29840, 2230, 2231, 29840,29840,29840, 2232,29840,29840, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 2750, 3291,29840,14316,29840, 29840,29840,29840,29840,29840,14317,29840,29840,19540,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14319,29840,29840,29840,29840,29840,29840,14320,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14321,29840,14322,29840,14323,29840,29840,14324, 14325,29840,29840,29840,14326,29840,29840,14327,29840,14328, 29840,14329,29840,14330,14331,14332,15613,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15614,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15615,29840, 29840,29840,29840,29840,29840,15616,29840,29840,19541,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15617,29840,15618,29840,15619,29840,29840,15620,15621,29840, 29840,29840,15622,29840,29840,15623,29840,15624,29840,15625, 29840,15626,15627,15628,15613,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15614,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15615,29840,29840,29840, 29840,29840,29840,15616,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15617,29840, 15618,29840,15619,29840,29840,15620,15621,29840,29840,29840, 15622,29840,29840,15623,29840,15624,29840,19542,29840,15626, 15627,15628,15613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15614,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15615,29840,29840,29840,29840,29840, 29840,15616,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15617,29840,15618,29840, 15619,29840,29840,16770,15621,29840,29840,29840,16771,29840, 19543,15623,29840,15624,29840,15625,29840,15626,15627,15628, 3291,29840,14316,29840,29840,29840,29840,29840,29840,14317, 29840,29840,14318,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14319,29840,29840,29840,29840,29840, 29840,14320,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14321,29840,14322,29840, 14323,29840,29840,14324,14325,29840,29840,29840,14326,29840, 29840,14327,29840,14328,29840,14329,29840,14330,14331,14332, 3291,29840,14334,29840,29840,29840,29840,29840,29840,14335, 29840,29840,19578,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14337,29840,29840,29840,29840,29840, 29840,14338,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14339,29840,14340,29840, 14341,29840,29840,14342,14343,29840,29840,29840,14344,29840, 29840,14345,29840,14346,29840,14347,29840,14348,14349,14350, 15650,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15651,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15652,29840,29840,29840,29840,29840,29840,15653, 29840,29840,19579,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15654,29840,15655,29840,15656,29840, 29840,15657,15658,29840,29840,29840,15659,29840,29840,15660, 29840,15661,29840,15662,29840,15663,15664,15665,15650,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15651,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15652,29840,29840,29840,29840,29840,29840,15653,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15654,29840,15655,29840,15656,29840,29840,15657, 15658,29840,29840,29840,15659,29840,29840,15660,29840,15661, 29840,19580,29840,15663,15664,15665,15650,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15652,29840, 29840,29840,29840,29840,29840,15653,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15654,29840,15655,29840,15656,29840,29840,16812,15658,29840, 29840,29840,16813,29840,19581,15660,29840,15661,29840,15662, 29840,15663,15664,15665, 3291,29840,14334,29840,29840,29840, 29840,29840,29840,14335,29840,29840,14336,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14337,29840, 29840,29840,29840,29840,29840,14338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14339,29840,14340,29840,14341,29840,29840,14342,14343,29840, 29840,29840,14344,29840,29840,14345,29840,14346,29840,14347, 29840,14348,14349,14350, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222,29840,29840, 3956,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959,29840, 3960, 3961, 3962,29840,29840, 3963, 4625,29840, 29840,29840, 3965,29840,29840, 3966,29840, 3967,19616, 3968, 29840, 3969, 3970, 3971, 3291,29840, 3955,29840,29840,29840, 29840,29840,29840, 2222, 4645,29840, 3956,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840, 29840,29840,29840,29840,29840, 3958,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963,19617,29840, 29840,29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968, 29840, 3969, 3970, 3971, 783, 783, 784, 785, 786, 783, 783, 783,29840,29840, 783, 783, 783,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 783, 783, 783, 783, 783, 783,29840,29840,29840,29840,29840, 789,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 783, 783, 783,29840,29840,29840,19625, 139, 139,29840, 139, 17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,19645,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19646,29840,29840,29840,29840,19645, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,19652,29840, 29840,29840,29840,19651,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 19656,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19657,29840,29840,29840,29840,19656,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139,17930, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,19660,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19661,29840,29840,29840, 29840,19660,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19663,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19664,29840,29840,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19664, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19666,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19667, 29840,29840,29840,29840,19666,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19669,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19670,29840,29840,29840,29840,19669,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19672,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19673, 29840,29840,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19673, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,16896,29840,29840,29840,29840,29840, 29840,29840,29840,19674,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139,19675,19675,19675,19675,19675, 19675,19675,19675,19675,18849,29840,29840,29840,29840,29840, 29840,19675,19675,19675,19675,19675,19676,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19675,19675, 19675,19675,19675,19675,19677,19677,19677,19677,19677,19677, 19677,19677,19677,19678,29840,29840,29840,29840,29840,29840, 19677,19677,19677,19677,19677,19679,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19677,19677,19677, 19677,19677,19677, 8334,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19681,19681,19681,19681,19681,19681, 19681,19681,19681,19682,29840,29840,29840,29840,29840,29840, 19681,19681,19681,19681,19681,19683,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19681,19681,19681, 19681,19681,19681,19687,19687,19687,19687,19687,19687,19687, 19687,19687,17954,29840,29840,29840,29840,29840,29840,19687, 19687,19687,19687,19687,19688,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,19687,19687,19687,19687, 19687,19687,19690,19690,19690,19690,19690,19690,19690,19690, 19690,19691,29840,29840,29840,29840,29840,29840,19690,19690, 19690,19690,19690,19692,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19690,19690,19690,19690,19690, 19690,19696,19696,19696,19696,19696,19696,19696,19696,19696, 17964,29840,29840,29840,29840,29840,29840,19696,19696,19696, 19696,19696,19697,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19696,19696,19696,19696,19696,19696, 19699,19699,19699,19699,19699,19699,19699,19699,19699,19700, 29840,29840,29840,29840,29840,29840,19699,19699,19699,19699, 19699,19701,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19699,19699,19699,19699,19699,19699,19705, 19706,19707,19708,19708,19708,19708,19708,19708,29840,29840, 29840,29840,29840,29840,29840,16940,16940,16940,16940,16940, 16944,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16940,16940,16940,16940,16940,16940,19709,19709, 19709,19709,19709,19709,19709,19709,19709,17976,29840,29840, 29840,29840,29840,29840,19709,19709,19709,19709,19709,19710, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19709,19709,19709,19709,19709,19709,19712,19712,19712, 19712,19712,19712,19712,19712,19712,19713,29840,29840,29840, 29840,29840,29840,19712,19712,19712,19712,19712,19714,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19712,19712,19712,19712,19712,19712,19718,19719,19720,19721, 19721,19721,19721,19721,19721,29840,29840,29840,29840,29840, 29840,29840,16950,16950,16950,16950,16950,16954,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,16950, 16950,16950,16950,16950,16950,15894,29840,19722,19722,19722, 19722,19722,19722,19722,19722,19722,15858,29840,29840,29840, 29840,29840,29840,16948,16948,16948,16948,16948,16949,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 16948,16948,16948,16948,16948,16948,19723,19723,19723,19723, 19723,19723,19723,19723,19723,17992,29840,29840,29840,29840, 29840,29840,19723,19723,19723,19723,19723,19724,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19723, 19723,19723,19723,19723,19723,19726,19726,19726,19726,19726, 19726,19726,19726,19726,19727,29840,29840,29840,29840,29840, 29840,19726,19726,19726,19726,19726,19728,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19726,19726, 19726,19726,19726,19726,19732,19733,19734,19735,19735,19735, 19735,19735,19735,29840,29840,29840,29840,29840,29840,29840, 16961,16961,16961,16961,16961,16965,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,16961,16961,16961, 16961,16961,16961,19736,19736,19736,19736,19736,19736,19736, 19736,19736,15872,29840,29840,29840,29840,29840,29840,16959, 16959,16959,16959,16959,16960,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,16959,16959,16959,16959, 16959,16959,19737,19737,19737,19737,19737,19737,19737,19737, 19737,18898,29840,29840,29840,29840,29840,29840,19737,19737, 19737,19737,19737,19738,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19737,19737,19737,19737,19737, 19737,19739,19739,19739,19739,19739,19739,19739,19739,19739, 29840,29840,29840,29840,29840,29840,29840,19739,19739,19739, 19739,19739,19740,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19739,19739,19739,19739,19739,19739, 16977,16977,16977,16977,16977,16977,16977,16977,16977,16980, 29840,29840,29840,29840,29840,29840,16977,16977,16977,16977, 16977,16979,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16977,16977,16977,16977,16977,16977,16973, 16973,16973,16973,16973,16973,16973,16973,16973,14664,29840, 29840,29840,29840,29840,29840,16973,16973,16973,16973,16973, 16974,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16973,16973,16973,16973,16973,16973, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,10999,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,18915,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,10999, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,18916,29840,29840,29840, 29840,18915,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19751,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 19752,29840,29840,29840,29840,19751,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,19756,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19757,29840,29840,29840,29840,19756, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19761,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,19762,29840, 29840,29840,29840,19761,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 19768,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,19769,29840,29840,29840,29840,19768,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,19773,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,19774,29840,29840,29840, 29840,19773,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19778,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 19779,29840,29840,29840,29840,19778,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,19783,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,19784,29840,29840,29840,29840,19783, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19788,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,19789,29840, 29840,29840,29840,19788,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 19792,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,19793,29840,29840,29840,29840,19792,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 19794, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,19794, 29840,29840,29840,29840,19796,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139,19794,19794, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,19798,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19799,29840,29840,29840,29840, 19798,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19803,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,19804, 29840,29840,29840,29840,19803,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19807,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,19808,29840,29840,29840,29840,19807,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,19809, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 19809,29840,29840,29840,29840,19811,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139,19809,19809,13392,12136, 12136,12136,12136,12136,12136,12136,12136,12136, 8367,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 140,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009,29840, 12137, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19814,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19815, 29840,29840,29840,29840,19814,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19819,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19820,29840,29840,29840,29840,19819,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19823,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 19818,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19824,29840,29840, 29840,29840,19823,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19826, 29840,19827,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19828,19829,19829, 29840,29840,29840,29840,29840,29840,29840,29840,19830, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19834,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 17108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19835,29840,29840, 29840,29840,19834,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19839, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19840,29840,29840,29840,29840,19839,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,19844,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19845,29840,29840,29840,29840, 19844,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19848,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19849, 29840,29840,29840,29840,19848,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,19850, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19850,29840,29840,29840, 29840,19852,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139,19850,19850, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 19854,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19855,29840,29840,29840,29840,19854,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,19859,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19860,29840,29840,29840, 29840,19859,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19863,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 19864,29840,29840,29840,29840,19863,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,19865, 139, 17108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19865,29840,29840, 29840,29840,19867,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139,19865,19865, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,18149,29840,29840,19868,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139,19869,19869,19869,19869,19869,19869,19869,19869, 19869,18179,29840,29840,29840,29840,29840,29840,19869,19869, 19869,19869,19869,19870,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19869,19869,19869,19869,19869, 19869,19872,19872,19872,19872,19872,19872,19872,19872,19872, 19873,29840,29840,29840,29840,29840,29840,19872,19872,19872, 19872,19872,19874,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19872,19872,19872,19872,19872,19872, 7624,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19875,19875,19875,19875,19875,19875,19875,19875,19875, 29840,29840,29840,29840,29840,29840,29840,19875,19875,19875, 19875,19875,19876,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19875,19875,19875,19875,19875,19875, 19878,19878,19878,19878,19878,19878,19878,19878,19878,19064, 29840,29840,29840,29840,29840,29840,19878,19878,19878,19878, 19878,19879,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19878,19878,19878,19878,19878,19878,19880, 19880,19880,19880,19880,19880,19880,19880,19880,29840,29840, 29840,29840,29840,29840,29840,19880,19880,19880,19880,19880, 19881,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19880,19880,19880,19880,19880,19880,19885,19885, 19885,19885,19885,19885,19885,19885,19885,19073,29840,29840, 29840,29840,29840,29840,19885,19885,19885,19885,19885,19886, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19885,19885,19885,19885,19885,19885,19887,19887,19887, 19887,19887,19887,19887,19887,19887,29840,29840,29840,29840, 29840,29840,29840,19887,19887,19887,19887,19887,19888,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19887,19887,19887,19887,19887,19887,19891,19891,19891,19891, 19891,19891,19891,19891,19891,19082,29840,29840,29840,29840, 29840,29840,19891,19891,19891,19891,19891,19892,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19891, 19891,19891,19891,19891,19891,19893,19893,19893,19893,19893, 19893,19893,19893,19893,29840,29840,29840,29840,29840,29840, 29840,19893,19893,19893,19893,19893,19894,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19893,19893, 19893,19893,19893,19893,14907,29840,17142,17142,17142,17142, 17142,17142,17142,17142,17142,17143,29840,29840,29840,29840, 29840,29840,17142,17142,17142,17142,17142,17144,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17142, 17142,17142,17142,17142,17142,19900,19900,19900,19900,19900, 19900,19900,19900,19900,19095,29840,29840,29840,29840,29840, 29840,19900,19900,19900,19900,19900,19901,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19900,19900, 19900,19900,19900,19900,19902,19902,19902,19902,19902,19902, 19902,19902,19902,29840,29840,29840,29840,29840,29840,29840, 19902,19902,19902,19902,19902,19903,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19902,19902,19902, 19902,19902,19902,17154,17154,17154,17154,17154,17154,17154, 17154,17154,17155,29840,29840,29840,29840,29840,29840,17154, 17154,17154,17154,17154,17156,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17154,17154,17154,17154, 17154,17154,17151,17151,17151,17151,17151,17151,17151,17151, 17151,14871,29840,29840,29840,29840,29840,29840,17151,17151, 17151,17151,17151,17152,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17151,17151,17151,17151,17151, 17151,19909,19909,19909,19909,19909,19909,19909,19909,19909, 19109,29840,29840,29840,29840,29840,29840,19909,19909,19909, 19909,19909,19910,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19909,19909,19909,19909,19909,19909, 19911,19911,19911,19911,19911,19911,19911,19911,19911,29840, 29840,29840,29840,29840,29840,29840,19911,19911,19911,19911, 19911,19912,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19911,19911,19911,19911,19911,19911,17170, 17170,17170,17170,17170,17170,17170,17170,17170,17171,29840, 29840,29840,29840,29840,29840,17170,17170,17170,17170,17170, 17172,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17170,17170,17170,17170,17170,17170,17167,17167, 17167,17167,17167,17167,17167,17167,17167,14885,29840,29840, 29840,29840,29840,29840,17167,17167,17167,17167,17167,17168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17167,17167,17167,17167,17167,17167,19918,19918,19918, 19918,19918,19918,19918,19918,19918,18228,29840,29840,29840, 29840,29840,29840,19918,19918,19918,19918,19918,19919,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19918,19918,19918,19918,19918,19918,19921,19921,19921,19921, 19921,19921,19921,19921,19921,19922,29840,29840,29840,29840, 29840,29840,19921,19921,19921,19921,19921,19923,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19921, 19921,19921,19921,19921,19921,19927,19928,19929,19930,19930, 19930,19930,19930,19930,29840,29840,29840,29840,29840,29840, 29840,17186,17186,17186,17186,17186,17190,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17186,17186, 17186,17186,17186,17186,19931,19931,19931,19931,19931,19931, 19931,19931,19931,16115,29840,29840,29840,29840,29840,29840, 17184,17184,17184,17184,17184,17185,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17184,17184,17184, 17184,17184,17184, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12239, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 12233,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19936, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19938,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,12326,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19939, 29840,29840,29840,29840,19938,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19943,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19944,29840,29840,29840,29840,19943,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19948,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19949,29840,29840, 29840,29840,19948,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19953, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19954,29840,29840,29840,29840,19953,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,19958,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19959,29840,29840,29840,29840, 19958,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19963,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19964, 29840,29840,29840,29840,19963,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19967,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19968,29840,29840,29840,29840,29840,29840, 139, 139, 9211,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19968, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19970,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,19971, 29840,29840,29840,29840,19970,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19973,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19974,29840,29840,29840,29840,19973,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19978,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19979,29840,29840, 29840,29840,19978,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19983, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19984,29840,29840,29840,29840,19983,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,19987,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19988,29840,29840,29840,29840,29840, 29840, 139, 139, 9211,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19988, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,19990, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19991,29840,29840,29840,29840,19990,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211,18302,29840,18302, 29840,29840,19188,19188,19188,19188,19188,19188,19188,19188, 19188,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1572,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18304, 1234,29840,18305, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840,29840, 19191,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225, 20007, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,19192,29840,29840,29840,29840,19191,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1234, 1225,20007,18324,29840, 18324,29840,29840,19212,19212,19212,19212,19212,19212,19212, 19212,19212,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2023,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,18326, 1606,29840,18327, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840, 29840,20032,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20033,29840,29840,29840,29840,20032,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 1606, 1597, 1597, 1597, 1597,29840, 1597, 4286, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,18336, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840,29840,29840,29840,29840,17326,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1606, 1597, 1597, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840, 29840,29840,20059,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,20060,29840,29840,29840,29840,20059, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,20063, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,19250,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 20063, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,19251,29840, 29840,29840,29840,19250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840, 20065,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5745,29840,29840,29840,29840,29840, 2564, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 5745, 2555, 2555,29840, 2555, 5712, 2555, 2555, 2555, 2555, 17415, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,16330,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 3741, 3741, 3742, 3741, 6476, 3741, 3741, 3741, 3741,17440, 3741, 3741,29840, 3741, 3741,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 29840,29840,29840,29840,29840,16353,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 4411, 3741, 3741, 3741, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,20103,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20104,29840,29840,29840, 29840,20103,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,20109,20109,20109,20109,20109,20109,20109, 20109,20109,29840,29840,29840,29840,29840,29840, 329,20109, 20109,20109,20109,20109,20110,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20109,20109,20109,20109, 20109,20109,20112,20112,20112,20112,20112,20112,20112,20112, 20112,29840,29840,29840,29840,29840,29840,29840,20112,20112, 20112,20112,20112,20113,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20112,20112,20112,20112,20112, 20112,11553,29840,17462,17462,17462,17462,17462,17462,17462, 17462,17462,17463,29840,29840,29840,29840,29840,29840,17462, 17462,17462,17462,17462,17464,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17462,17462,17462,17462, 17462,17462,20118,20118,20118,20118,20118,20118,20118,20118, 20118,29840,29840,29840,29840,29840,29840,29840,20118,20118, 20118,20118,20118,20119,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20118,20118,20118,20118,20118, 20118,11553,29840,20121,20121,20121,20121,20121,20121,20121, 20121,20121,16390,29840,29840,29840,29840,29840,29840,17475, 17475,17475,17475,17475,17476,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17475,17475,17475,17475, 17475,17475,20122,20122,20122,20122,20122,20122,20122,20122, 20122,29840,29840,29840,29840,29840,29840,29840,20122,20122, 20122,20122,20122,20123,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20122,20122,20122,20122,20122, 20122,20125,20125,20125,20125,20125,20125,20125,20125,20125, 16399,29840,29840,29840,29840,29840,29840,17481,17481,17481, 17481,17481,17482,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17481,17481,17481,17481,17481,17481, 20126,20126,20126,20126,20126,20126,20126,20126,20126,29840, 29840,29840,29840,29840,29840,29840,20126,20126,20126,20126, 20126,20127,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20126,20126,20126,20126,20126,20126,20129, 20129,20129,20129,20129,20129,20129,20129,20129,16412,29840, 29840,29840,29840,29840,29840,17490,17490,17490,17490,17490, 17491,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17490,17490,17490,17490,17490,17490,20130,20130, 20130,20130,20130,20130,20130,20130,20130,29840,29840,29840, 29840,29840,29840,29840,20130,20130,20130,20130,20130,20131, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20130,20130,20130,20130,20130,20130,20133,20133,20133, 20133,20133,20133,20133,20133,20133,16426,29840,29840,29840, 29840,29840,29840,17499,17499,17499,17499,17499,17500,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17499,17499,17499,17499,17499,17499,20134,20134,20134,20134, 20134,20134,20134,20134,20134,29840,29840,29840,29840,29840, 29840,29840,20134,20134,20134,20134,20134,20135,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20134, 20134,20134,20134,20134,20134,17511,17511,17511,17511,17511, 17511,17511,17511,17511,17512,29840,29840,29840,29840,29840, 29840,17511,17511,17511,17511,17511,17513,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17511,17511, 17511,17511,17511,17511,17508,17508,17508,17508,17508,17508, 17508,17508,17508,15258,29840,29840,29840,29840,29840,29840, 17508,17508,17508,17508,17508,17509,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17508,17508,17508, 17508,17508,17508,18494,29840,18494,29840,29840,19350,19350, 19350,19350,19350,19350,19350,19350,19350,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1275, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18496,29840,29840,18497, 5904,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19375,19375,19375,19375,19375,19375,19375,19375,19375, 29840,19375,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 5905,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20164, 5906, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20199,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20200,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840, 29840,29840,29840, 9703,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12867,29840, 29840,29840,29840,29840,29840,12868,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12869,29840,12870,29840,12872,29840,29840,12873,14133,29840, 29840,29840,12875,29840,29840,12876,29840,20201,29840,12878, 29840,12879,12880,12881,14149, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,10669, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,29840, 9713,29840, 9714,29840,20202,29840, 9716, 9717, 9718, 9704,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712, 29840,20203, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840,17631,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12867,29840,29840,29840,29840, 29840,29840,12868,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12869,29840,12870, 15439,12872,29840,29840,12873,17632,29840,29840,29840,12875, 29840,29840,12876,29840,12877,29840,12878,29840,12879,12880, 12881, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840,20214, 9711,29840,29840,29840,10677,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291, 29840,12895,20216,29840,29840,29840,29840,29840,12896,29840, 20217,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12897,29840,29840,29840,29840,29840,29840, 12898,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12899,29840,12900,29840,12901, 29840,29840,12902,12903,29840,29840,29840,12904,29840,29840, 12905,29840,12906,29840,12907,29840,12908,12909,12910,14168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20218,20218,20218,20218,20218,20218,20218,20218,20218,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,20219,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,29840,14174,14175, 29840,29840,29840,14176,29840,29840,14177,29840,14178,29840, 14179,29840,14180,14181,14182,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,29840,14173,29840,29840,14174,14175,29840,29840, 29840,14176,20220,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 29840,14173,29840,29840,14174,14175,29840,29840,29840,14176, 20221,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,29840,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,29840,29840, 14177,29840,14178,29840,14179,29840,14180,14181,14182,14168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,15465,29840,14177,29840, 14178,20222,14179,29840,14180,14181,14182, 3291,29840,12895, 29840,29840,29840,29840,29840,29840,12896,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12897,20232,29840,29840,29840,29840,29840,12898,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12899,29840,12900,29840,12901,29840,29840, 12902,12903,29840,29840,29840,12904,29840,29840,12905,29840, 12906,29840,12907,29840,12908,12909,12910, 3291,29840,12912, 20241,29840,29840,29840,29840,29840,12913,29840,20242,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12914,29840,29840,29840,29840,29840,29840,12915,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12916,29840,12917,29840,12918,29840,29840, 12919,12920,29840,29840,29840,12921,29840,29840,12922,29840, 12923,29840,12924,29840,12925,12926,12927,14201,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20243,20243, 20243,20243,20243,20243,20243,20243,20243,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14202, 29840,29840,29840,29840,29840,29840,14203,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14204,29840,14205,29840,14206,29840,29840,14207,14208, 29840,29840,29840,14209,29840,29840,14210,29840,14211,29840, 14212,29840,14213,14214,14215,14201,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14202,29840,29840, 29840,29840,29840,29840,14203,29840,20244,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14204, 29840,14205,29840,14206,29840,29840,14207,14208,29840,29840, 29840,14209,29840,29840,14210,29840,14211,29840,14212,29840, 14213,14214,14215,14201,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14202,29840,29840,29840,29840, 29840,29840,14203,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14204,29840,14205, 29840,14206,29840,29840,14207,14208,29840,29840,29840,14209, 20245,29840,14210,29840,14211,29840,14212,29840,14213,14214, 14215,14201,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14202,29840,29840,29840,29840,29840,29840, 14203,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14204,29840,14205,29840,14206, 29840,29840,14207,14208,29840,29840,29840,14209,20246,29840, 14210,29840,14211,29840,14212,29840,14213,14214,14215,14201, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14202,29840,29840,29840,29840,29840,29840,14203,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14204,29840,14205,29840,14206,29840,29840, 14207,14208,29840,29840,29840,14209,29840,29840,14210,29840, 14211,29840,14212,29840,14213,14214,14215,14201,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14202, 29840,29840,29840,29840,29840,29840,14203,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14204,29840,14205,29840,14206,29840,29840,14207,14208, 29840,29840,29840,14209,15501,29840,14210,29840,14211,20247, 14212,29840,14213,14214,14215, 3291,29840,12912,29840,29840, 29840,29840,29840,29840,12913,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12914, 20257,29840,29840,29840,29840,29840,12915,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12916,29840,12917,29840,12918,29840,29840,12919,12920, 29840,29840,29840,12921,29840,29840,12922,29840,12923,29840, 12924,29840,12925,12926,12927, 3291,29840, 3292,20266,29840, 29840,29840,29840,29840, 1768,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3293, 29840, 3914,29840,29840,29840,29840, 3294,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911, 29840,29840,29840, 3301,29840,29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 3291,29840, 3292,29840,29840, 29840,29840,29840,29840, 1768,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3293, 29840,29840,29840,29840,29840,29840, 3294,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3295,29840, 3296,29840, 3298,29840,29840, 3299, 3911, 29840,29840,29840,20267,29840,29840, 3302,29840, 3303,29840, 3304,29840, 3305, 3306, 3307,10695,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10696,29840,29840,29840,29840, 20268,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10697,29840,11733, 29840,29840,29840,29840,10698,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10699, 29840,10700,29840,10701,29840,29840,10702,10703,29840,29840, 29840,10704,29840,29840,10705,29840,10706,29840,10707,29840, 10708,10709,10710,10695,18655,29840,29840,29840,29840,29840, 29840,29840,29840,10696,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10697,29840,29840,29840,29840, 29840,29840,10698,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10699,29840,10700, 29840,10701,29840,29840,10702,10703,29840,29840,29840,10704, 29840,29840,10705,29840,10706,29840,10707,29840,10708,10709, 10710,20272,29840,29840,29840,29840,29840,29840,29840,29840, 20273,20274,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20275,29840,29840,29840,29840,29840,29840, 20276,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20277,29840,20278,20279,20280, 29840,29840,20281,20282,29840,29840,29840,20283,29840,29840, 20284,29840,20285,29840,20286,29840,20287,20288,20289, 3291, 29840,14249,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14251,29840,29840,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,14254,29840,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,29840, 14260,29840,14261,29840,20291,29840,14263,14264,14265, 3291, 29840,14249,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,20295,20295,20295,20295,20295,20295,20295,20295, 20295,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14251,29840,29840,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,15545,29840,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,29840, 14260,29840,14261,29840,15546,29840,14263,15547,14265,14248, 14248,14248,14248,14248,14248,14248,14248,14248,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14254,14255,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20296,29840,29840,29840, 29840,14262,29840,29840,14264,20297,14248,14248,14248,14248, 14248,14248,14248,14248,14248,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14254,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14262,29840, 29840,14264,14248,14248,14248,14248,14248,14248,14248,14248, 14248,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14254,29840,29840, 29840,20298,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14262,29840,29840,14264,14248,14248, 14248,14248,14248,14248,14248,14248,14248,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20299,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14254,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14262,29840,29840,14264,14248,14248,14248,14248,14248,14248, 14248,14248,14248,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14254, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20300,29840,29840,29840,29840,29840,14262,29840,29840,14264, 14248,14248,14248,14248,14248,14248,14248,14248,14248,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14254,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20301,29840,29840,29840, 29840,29840,14262,29840,29840,14264,14248,14248,14248,14248, 14248,14248,14248,14248,14248,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14254,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20302,29840,29840,29840,29840,29840,14262,29840, 29840,14264,14248,14248,14248,14248,14248,14248,14248,14248, 14248,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14254,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20303,29840,29840,29840,14262,29840,29840,14264,14248,14248, 14248,14248,14248,14248,14248,14248,14248,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14254,20304,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14262,29840,29840,14264,14248,14248,14248,14248,14248,14248, 14248,14248,14248,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14254, 29840,29840,29840,15550,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14262,20305,29840,14264, 14248,14248,14248,14248,14248,14248,14248,14248,14248,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14254,29840,29840,29840,29840, 29840,29840,29840,29840,20306,29840,15555,29840,29840,29840, 29840,29840,14262,29840,29840,14264,14248,14248,14248,14248, 14248,14248,14248,14248,14248,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15556, 29840,14254,29840,29840,29840,29840,29840,20307,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14262,29840, 29840,14264,29840,15557,14248,14248,14248,14248,14248,14248, 14248,14248,14248,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14254, 29840,29840,20308,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14262,29840,29840,14264, 14248,14248,14248,14248,14248,14248,14248,14248,14248,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14254,29840,29840,29840,29840, 29840,20309,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14262,29840,29840,14264,14248,14248,14248,14248, 14248,14248,14248,14248,14248,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14254,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20310,29840,29840,29840,29840,29840,14262,29840, 29840,14264, 2223,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2224,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18690,29840,29840,29840,29840, 29840,29840,29840,29840, 2225,29840,29840,29840,29840,29840, 29840, 2226,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2227,29840, 2228,29840, 2229,29840,29840, 2230, 2231,29840,29840,29840, 2232,29840, 2753, 2233,29840, 2234,29840, 2235,29840, 2236, 2237, 2238, 20313,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20314,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20315,29840,29840,29840,29840,29840,29840,20316, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20317,29840,20318,29840,20319,29840, 29840,20320,20321,29840,29840,29840,20322,29840,29840,20323, 29840,20324,29840,20325,29840,20326,20327,20328,20272,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20274,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20275,29840,29840,29840,29840,29840,29840,20276,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20277,29840,20278,29840,20280,29840,29840,20281, 20282,29840,29840,29840,20283,29840,29840,20284,29840,20285, 29840,20286,29840,20287,20288,20289, 8137,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8140,29840, 29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840, 29840,29840, 8148,20329,29840, 8149,29840, 8150,29840, 8151, 29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8140,29840,29840,29840, 29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,20330,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840,29840,29840,29840, 29840, 8136,29840,29840,10729,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10730,29840,29840,29840, 29840,29840,29840,10731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10732,29840, 10733,10734,10735,29840,29840,10736,10762,29840,29840,29840, 10738,29840,29840,10739,29840,10740,29840,20332,29840,10742, 10743,10744, 3291,29840,10728,29840,29840,29840,29840,29840, 29840, 8136,29840,29840,10729,29840,29840,20335,29840,20336, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10730,29840,11770,29840, 29840,29840,29840,10731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10732,29840, 10733,29840,10735,29840,29840,10736,10762,29840,29840,29840, 10738,29840,29840,10739,29840,10740,29840,10741,29840,10742, 10743,10744, 3291,29840,14316,29840,29840,29840,29840,29840, 29840,14317,29840,29840,14318,20342,20342,20342,20342,20342, 20342,20342,20342,20342,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14319,29840,29840,29840, 29840,29840,29840,14320,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14321,29840, 15629,29840,14323,29840,29840,14324,14325,29840,29840,29840, 14326,29840,29840,14327,29840,14328,29840,15630,29840,14330, 15631,14332,15613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20343,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15615,29840,29840,29840,29840,29840, 29840,15616,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15617,29840,15618,29840, 15619,29840,29840,15620,15621,29840,29840,29840,15622,29840, 29840,15623,29840,15624,29840,15625,29840,15626,15627,15628, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20344,29840,15618,29840,15619,29840, 29840,15620,15621,29840,29840,29840,15622,29840,29840,15623, 29840,15624,29840,15625,29840,15626,15627,15628,16773, 3291, 29840,14316,29840,29840,29840,29840,29840,29840,14317,29840, 29840,14318,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14319,29840,29840,29840,29840,29840,29840, 14320,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14321,29840,14322,29840,14323, 29840,29840,14324,14325,29840,29840,29840,14326,29840,29840, 14327,29840,14328,29840,14329,29840,14330,14331,15636, 3291, 29840,14334,29840,29840,29840,29840,29840,29840,14335,29840, 29840,14336,20377,20377,20377,20377,20377,20377,20377,20377, 20377,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14337,29840,29840,29840,29840,29840,29840, 14338,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14339,29840,15666,29840,14341, 29840,29840,14342,14343,29840,29840,29840,14344,29840,29840, 14345,29840,14346,29840,15667,29840,14348,15668,14350,15650, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20378, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15652,29840,29840,29840,29840,29840,29840,15653,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15654,29840,15655,29840,15656,29840,29840, 15657,15658,29840,29840,29840,15659,29840,29840,15660,29840, 15661,29840,15662,29840,15663,15664,15665,15650,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15651,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15652, 29840,29840,29840,29840,29840,29840,15653,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20379,29840,15655,29840,15656,29840,29840,15657,15658, 29840,29840,29840,15659,29840,29840,15660,29840,15661,29840, 15662,29840,15663,15664,15665,16815, 3291,29840,14334,29840, 29840,29840,29840,29840,29840,14335,29840,29840,14336,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14337,29840,29840,29840,29840,29840,29840,14338,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14339,29840,14340,29840,14341,29840,29840,14342, 14343,29840,29840,29840,14344,29840,29840,14345,29840,14346, 29840,14347,29840,14348,14349,15673, 3291,29840, 3955,29840, 29840,29840,29840,29840,29840, 2222,29840,29840, 3956,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3959,29840, 3960,29840, 3962,29840,29840,20412, 4625,29840,29840,29840, 3965,29840,29840, 3966,29840, 3967, 29840, 3968,29840, 3969, 3970, 3971, 3291,29840, 3955,29840, 29840,29840,29840,29840,29840, 2222,29840,29840, 3956,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3959,29840, 3960,20413, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965, 4638,29840, 3966,29840, 3967, 29840, 3968,29840, 3969, 3970, 3971, 783, 783, 784, 785, 20421, 783, 783, 783,29840,29840, 783, 783, 783,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 783, 783, 783, 783, 783, 783,29840,29840,29840, 29840,29840, 789,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 783, 783, 783, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 20437,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20438,29840,29840,29840,29840,20437,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139,17930, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,20442,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20443,29840,29840,29840, 29840,20442,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20447,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 20448,29840,29840,29840,29840,20447,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,20452,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20453,29840,29840,29840,29840,20452, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20456,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,20457,29840, 29840,29840,29840,20456,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,20458, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20458,29840,29840,29840,29840, 20460,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,20458,20458, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20462, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20463,29840,29840,29840,29840,20462,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,20466,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20467,29840,29840,29840,29840, 20466,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20470,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139,17930, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,20471, 29840,29840,29840,29840,20470,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,20472, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20472,29840,29840,29840, 29840,20474,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,20472,20472, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 17932,20475,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,20476,20476,20476,20476,20476,20476,20476,20476,20476, 18849,29840,29840,29840,29840,29840,29840,20476,20476,20476, 20476,20476,20477,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20476,20476,20476,20476,20476,20476, 20479,20479,20479,20479,20479,20479,20479,20479,20479,20480, 29840,29840,29840,29840,29840,29840,20479,20479,20479,20479, 20479,20481,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20479,20479,20479,20479,20479,20479, 8334, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20482,20482,20482,20482,20482,20482,20482,20482,20482,29840, 29840,29840,29840,29840,29840,29840,20482,20482,20482,20482, 20482,20483,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20482,20482,20482,20482,20482,20482,20485, 20485,20485,20485,20485,20485,20485,20485,20485,19682,29840, 29840,29840,29840,29840,29840,20485,20485,20485,20485,20485, 20486,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20485,20485,20485,20485,20485,20485,20487,20487, 20487,20487,20487,20487,20487,20487,20487,29840,29840,29840, 29840,29840,29840,29840,20487,20487,20487,20487,20487,20488, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20487,20487,20487,20487,20487,20487,20492,20492,20492, 20492,20492,20492,20492,20492,20492,19691,29840,29840,29840, 29840,29840,29840,20492,20492,20492,20492,20492,20493,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20492,20492,20492,20492,20492,20492,20494,20494,20494,20494, 20494,20494,20494,20494,20494,29840,29840,29840,29840,29840, 29840,29840,20494,20494,20494,20494,20494,20495,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20494, 20494,20494,20494,20494,20494,20498,20498,20498,20498,20498, 20498,20498,20498,20498,19700,29840,29840,29840,29840,29840, 29840,20498,20498,20498,20498,20498,20499,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20498,20498, 20498,20498,20498,20498,20500,20500,20500,20500,20500,20500, 20500,20500,20500,29840,29840,29840,29840,29840,29840,29840, 20500,20500,20500,20500,20500,20501,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20500,20500,20500, 20500,20500,20500,15894,29840,17963,17963,17963,17963,17963, 17963,17963,17963,17963,17964,29840,29840,29840,29840,29840, 29840,17963,17963,17963,17963,17963,17965,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17963,17963, 17963,17963,17963,17963,20507,20507,20507,20507,20507,20507, 20507,20507,20507,19713,29840,29840,29840,29840,29840,29840, 20507,20507,20507,20507,20507,20508,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20507,20507,20507, 20507,20507,20507,20509,20509,20509,20509,20509,20509,20509, 20509,20509,29840,29840,29840,29840,29840,29840,29840,20509, 20509,20509,20509,20509,20510,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20509,20509,20509,20509, 20509,20509,17975,17975,17975,17975,17975,17975,17975,17975, 17975,17976,29840,29840,29840,29840,29840,29840,17975,17975, 17975,17975,17975,17977,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17975,17975,17975,17975,17975, 17975,17972,17972,17972,17972,17972,17972,17972,17972,17972, 15858,29840,29840,29840,29840,29840,29840,17972,17972,17972, 17972,17972,17973,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17972,17972,17972,17972,17972,17972, 20516,20516,20516,20516,20516,20516,20516,20516,20516,19727, 29840,29840,29840,29840,29840,29840,20516,20516,20516,20516, 20516,20517,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20516,20516,20516,20516,20516,20516,20518, 20518,20518,20518,20518,20518,20518,20518,20518,29840,29840, 29840,29840,29840,29840,29840,20518,20518,20518,20518,20518, 20519,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20518,20518,20518,20518,20518,20518,17991,17991, 17991,17991,17991,17991,17991,17991,17991,17992,29840,29840, 29840,29840,29840,29840,17991,17991,17991,17991,17991,17993, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17991,17991,17991,17991,17991,17991,17988,17988,17988, 17988,17988,17988,17988,17988,17988,15872,29840,29840,29840, 29840,29840,29840,17988,17988,17988,17988,17988,17989,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17988,17988,17988,17988,17988,17988,20525,20525,20525,20525, 20525,20525,20525,20525,20525,18898,29840,29840,29840,29840, 29840,29840,20525,20525,20525,20525,20525,20526,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20525, 20525,20525,20525,20525,20525,20528,20528,20528,20528,20528, 20528,20528,20528,20528,20529,29840,29840,29840,29840,29840, 29840,20528,20528,20528,20528,20528,20530,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20528,20528, 20528,20528,20528,20528,20534,20535,20536,20537,20537,20537, 20537,20537,20537,29840,29840,29840,29840,29840,29840,29840, 18007,18007,18007,18007,18007,18011,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,18007,18007,18007, 18007,18007,18007,20538,20538,20538,20538,20538,20538,20538, 20538,20538,16980,29840,29840,29840,29840,29840,29840,18005, 18005,18005,18005,18005,18006,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18005,18005,18005,18005, 18005,18005, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20544,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 20545,29840,29840,29840,29840,20544,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 13392,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,20549,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20550,29840,29840,29840,29840,20549, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20554,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,20555,29840, 29840,29840,29840,20554,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 20559,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20560,29840,29840,29840,29840,20559,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,20564,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20565,29840,29840,29840, 29840,20564,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20569,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 20570,29840,29840,29840,29840,20569,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,20574,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20575,29840,29840,29840,29840,20574, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20578,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20579,29840,29840, 29840,29840,29840,29840,10009, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20579, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,20581,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20582,29840,29840,29840,29840,20581, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20584,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,20585,29840, 29840,29840,29840,20584,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 20590,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20591,29840,29840,29840,29840,20590,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10009, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,20595,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20596,29840,29840,29840, 29840,20595,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20599,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20600, 29840,29840,29840,29840,29840,29840,10009, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20600, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,20602,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20603,29840,29840,29840, 29840,20602,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20605,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20607,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,20608,29840, 29840,29840,29840,20607,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 20612,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20614,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20615, 29840,29840,29840,29840,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20615, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,19818,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,20616, 29840,29840,29840,29840,20612,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,20620,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20621,29840,29840,29840,29840,20620,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,20624,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 19818,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20625,29840,29840, 29840,29840,20624,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20627, 20628,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 29840,29840,29840,29840,29840,29840,29840,20628, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,20630,20630,20630,20630,20630,20630, 20630,20630, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,20631,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,20631,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20633,20634, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139,29840, 29840,29840,29840,29840,29840,29840,20634, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,20637,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20638,29840,29840,29840,29840, 20637,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20642,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,20643, 29840,29840,29840,29840,20642,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,20647,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20648,29840,29840,29840,29840,20647,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,20652,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 17108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20653,29840,29840, 29840,29840,20652,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20656, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20657,29840,29840,29840,29840,29840,29840,17110, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20657, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,20659,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 17108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20660,29840,29840, 29840,29840,20659,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20662, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20663,29840,29840,29840,29840,20662,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,20668,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20669,29840,29840,29840,29840, 20668,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20673,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,20674, 29840,29840,29840,29840,20673,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,20677,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20678,29840,29840,29840,29840,29840,29840,17110, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20678, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20680,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,17108,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,20681, 29840,29840,29840,29840,20680,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19019,29840,29840,29840,29840,29840,29840,29840,20682, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139,20683,20683,20683,20683,20683,20683,20683,20683, 20683,19873,29840,29840,29840,29840,29840,29840,20683,20683, 20683,20683,20683,20684,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20683,20683,20683,20683,20683, 20683,19875,19875,19875,19875,19875,19875,19875,19875,19875, 20685,29840,29840,29840,29840,29840,29840,19875,19875,19875, 19875,19875,19876,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19875,19875,19875,19875,19875,19875, 7624,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20687,20687,20687,20687,20687,20687,20687,20687,20687, 29840,29840,29840,29840,29840,29840,29840,20687,20687,20687, 20687,20687,20688,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20687,20687,20687,20687,20687,20687, 20690,20690,20690,20690,20690,20690,20690,20690,20690,19064, 29840,29840,29840,29840,29840,29840,20690,20690,20690,20690, 20690,20691,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20690,20690,20690,20690,20690,20690,20693, 20693,20693,20693,20693,20693,20693,20693,20693,29840,29840, 29840,29840,29840,29840,29840,20693,20693,20693,20693,20693, 20694,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20693,20693,20693,20693,20693,20693,20697,20697, 20697,20697,20697,20697,20697,20697,20697,19073,29840,29840, 29840,29840,29840,29840,20697,20697,20697,20697,20697,20698, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20697,20697,20697,20697,20697,20697,20700,20700,20700, 20700,20700,20700,20700,20700,20700,29840,29840,29840,29840, 29840,29840,29840,20700,20700,20700,20700,20700,20701,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20700,20700,20700,20700,20700,20700,20703,20704,20705,20706, 20706,20706,20706,20706,20706,29840,29840,29840,29840,29840, 29840,29840,18188,18188,18188,18188,18188,18189,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18188, 18188,18188,18188,18188,18188,20707,20707,20707,20707,20707, 20707,20707,20707,20707,19082,29840,29840,29840,29840,29840, 29840,20707,20707,20707,20707,20707,20708,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20707,20707, 20707,20707,20707,20707,20710,20710,20710,20710,20710,20710, 20710,20710,20710,29840,29840,29840,29840,29840,29840,29840, 20710,20710,20710,20710,20710,20711,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20710,20710,20710, 20710,20710,20710,20713,20714,20715,20716,20716,20716,20716, 20716,20716,29840,29840,29840,29840,29840,29840,29840,18195, 18195,18195,18195,18195,18196,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18195,18195,18195,18195, 18195,18195,14907,29840,20717,20717,20717,20717,20717,20717, 20717,20717,20717,17143,29840,29840,29840,29840,29840,29840, 18193,18193,18193,18193,18193,18194,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,18193,18193,18193, 18193,18193,18193,20718,20718,20718,20718,20718,20718,20718, 20718,20718,19095,29840,29840,29840,29840,29840,29840,20718, 20718,20718,20718,20718,20719,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20718,20718,20718,20718, 20718,20718,20721,20721,20721,20721,20721,20721,20721,20721, 20721,29840,29840,29840,29840,29840,29840,29840,20721,20721, 20721,20721,20721,20722,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20721,20721,20721,20721,20721, 20721,20724,20725,20726,20727,20727,20727,20727,20727,20727, 29840,29840,29840,29840,29840,29840,29840,18203,18203,18203, 18203,18203,18204,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18203,18203,18203,18203,18203,18203, 20728,20728,20728,20728,20728,20728,20728,20728,20728,17155, 29840,29840,29840,29840,29840,29840,18201,18201,18201,18201, 18201,18202,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18201,18201,18201,18201,18201,18201,20729, 20729,20729,20729,20729,20729,20729,20729,20729,19109,29840, 29840,29840,29840,29840,29840,20729,20729,20729,20729,20729, 20730,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20729,20729,20729,20729,20729,20729,20732,20732, 20732,20732,20732,20732,20732,20732,20732,29840,29840,29840, 29840,29840,29840,29840,20732,20732,20732,20732,20732,20733, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20732,20732,20732,20732,20732,20732,20735,20736,20737, 20738,20738,20738,20738,20738,20738,29840,29840,29840,29840, 29840,29840,29840,18214,18214,18214,18214,18214,18215,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18214,18214,18214,18214,18214,18214,20739,20739,20739,20739, 20739,20739,20739,20739,20739,17171,29840,29840,29840,29840, 29840,29840,18212,18212,18212,18212,18212,18213,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18212, 18212,18212,18212,18212,18212,20740,20740,20740,20740,20740, 20740,20740,20740,20740,19922,29840,29840,29840,29840,29840, 29840,20740,20740,20740,20740,20740,20741,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20740,20740, 20740,20740,20740,20740,20742,20742,20742,20742,20742,20742, 20742,20742,20742,29840,29840,29840,29840,29840,29840,29840, 20742,20742,20742,20742,20742,20743,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20742,20742,20742, 20742,20742,20742,18227,18227,18227,18227,18227,18227,18227, 18227,18227,18228,29840,29840,29840,29840,29840,29840,18227, 18227,18227,18227,18227,18229,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18227,18227,18227,18227, 18227,18227,18224,18224,18224,18224,18224,18224,18224,18224, 18224,16115,29840,29840,29840,29840,29840,29840,18224,18224, 18224,18224,18224,18225,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,18224,18224,18224,18224,18224, 18224, 139, 139,29840, 139, 8334, 139, 139, 139, 139, 139, 139, 139,29840, 8332, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,12239,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139,12233, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,12326,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,19938,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 12326,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,19939,29840,29840, 29840,29840,19938,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20751, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20752,29840,29840,29840,29840,20751,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,20756,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20757,29840,29840,29840,29840, 20756,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20761,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,20762, 29840,29840,29840,29840,20761,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 1225, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840,29840, 29840,19191,29840,29840,29840,29840,29840,20779,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225,20007,19214,29840,19214,29840,29840,20029,20029,20029, 20029,20029,20029,20029,20029,20029,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2023,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19216, 1606,29840,19217, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 29840,29840,29840,29840,29840,20032,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 1606, 1597,20801, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,20033,29840,29840, 29840,29840,20032,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1606, 1597,20801, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,20059, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,20060,29840,29840,29840,29840,20059,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 7135, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,20830,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,20063, 2555, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840, 29840,19250,29840,29840,29840,29840,29840,20831,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 6430,29840,29840,29840,29840, 6426,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 1617, 29840,29840,29840,29840,29840,19260,29840,19260,29840,29840, 20075,20075,20075,20075,20075,20075,20075,20075,20075,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 1618,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19262,29840, 29840,19263, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,20867,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,20868,29840,29840,29840,29840,20867,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139,20871,20871, 20871,20871,20871,20871,20871,20871,20871,29840,29840,29840, 29840,29840,29840,29840,20871,20871,20871,20871,20871,20872, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20871,20871,20871,20871,20871,20871,11553,29840,20874, 20874,20874,20874,20874,20874,20874,20874,20874,17463,29840, 29840,29840,29840,29840,29840,18426,18426,18426,18426,18426, 18427,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,18426,18426,18426,18426,18426,18426,18440,18440, 18440,18440,18440,18440,18440,18440,18440,16390,29840,29840, 29840,29840,29840, 329,18440,18440,18440,18440,18440,18441, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,18440,18440,18440,18440,18440,18440,18450,18450,18450, 18450,18450,18450,18450,18450,18450,16399,29840,29840,29840, 29840,29840,29840,18450,18450,18450,18450,18450,18451,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18450,18450,18450,18450,18450,18450,18461,18461,18461,18461, 18461,18461,18461,18461,18461,16412,29840,29840,29840,29840, 29840,29840,18461,18461,18461,18461,18461,18462,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18461, 18461,18461,18461,18461,18461,18472,18472,18472,18472,18472, 18472,18472,18472,18472,16426,29840,29840,29840,29840,29840, 29840,18472,18472,18472,18472,18472,18473,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18472,18472, 18472,18472,18472,18472,20875,20875,20875,20875,20875,20875, 20875,20875,20875,29840,29840,29840,29840,29840,29840, 329, 20875,20875,20875,20875,20875,20876,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20875,20875,20875, 20875,20875,20875,20878,20878,20878,20878,20878,20878,20878, 20878,20878,17512,29840,29840,29840,29840,29840,29840,18483, 18483,18483,18483,18483,18484,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,18483,18483,18483,18483, 18483,18483,10611,10611,29840,20905,10612,10611,10611,10611, 10611,10611,10611,10611,10611,10611,10611,20906,20906,20906, 20906,20906,20906,20906,20906,20906,10611,10611,10611,10611, 10611,10611,10611,20907,20907,20907,20907,20907,20908,20907, 20907,20907,20907,20907,20907,20907,20907,20907,20907,20907, 20907,20907,20907,20907,20907,20907,10611,10611,20909,10611, 20906,20906,20906,20906,20906,20906,10611,10611,10611,10611, 10611,10611,10611,10614,10611,10611,10611,10611,10611,10611, 10611,10611,10611,10611,10611, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718,20941,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840, 29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708, 29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712, 29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12867,29840,29840,29840,29840, 29840,29840,12868,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20942,29840,12870, 29840,12872,29840,29840,12873,14133,29840,29840,29840,12875, 29840,14148,12876,29840,12877,29840,12878,29840,12879,12880, 12881, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,20943, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718,10679, 3291,29840,20945,29840,29840,29840,29840,29840,29840, 9703, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12867,29840,29840,29840,29840,29840, 29840,12868,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12869,29840,12870,29840, 12872,29840,29840,12873,14133,29840,29840,29840,12875,29840, 29840,12876,29840,12877,29840,12878,29840,12879,12880,12881, 3291,29840,20956,29840,29840,29840,29840,29840,29840,12896, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12897,29840,29840,29840,29840,29840, 29840,12898,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12899,29840,12900,29840, 12901,29840,29840,12902,12903,29840,29840,29840,12904,29840, 29840,12905,29840,12906,29840,12907,29840,12908,12909,12910, 3291,29840,12895,29840,29840,29840,29840,29840,29840,12896, 29840,29840,29840,20957,20957,20957,20957,20957,20957,20957, 20957,20957,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12897,29840,29840,29840,29840,29840, 29840,12898,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12899,29840,12900,29840, 12901,29840,29840,12902,12903,29840,29840,29840,12904,29840, 29840,12905,29840,12906,29840,12907,29840,12908,12909,12910, 14168,20958,29840,29840,29840,29840,29840,29840,29840,20959, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14169,29840,29840,29840,29840,29840,29840,14170, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14171,29840,14172,29840,14173,29840, 29840,14174,14175,29840,29840,29840,14176,29840,29840,14177, 29840,14178,29840,14179,29840,14180,14181,14182,14168,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14169,20960,29840,29840,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,29840,14173,29840,29840,14174, 14175,29840,29840,29840,14176,29840,29840,14177,29840,14178, 29840,14179,29840,14180,14181,14182,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,20961, 29840,14180,14181,14182,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,20962,14175,29840,29840,29840, 15469,29840,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182,14168,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14169,29840,29840,29840,29840,29840, 29840,14170,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14171,29840,14172,29840, 14173,29840,29840,14174,14175,29840,29840,29840,20963,29840, 29840,14177,29840,14178,29840,14179,29840,14180,14181,14182, 14168,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14169,29840,29840,29840,29840,29840,29840,14170, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14171,20964,14172,29840,14173,29840, 29840,14174,14175,29840,29840,29840,14176,29840,29840,14177, 29840,14178,29840,14179,29840,14180,14181,14182,14168,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14169,29840,29840,29840,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,29840,14173,29840,29840,14174, 14175,29840,29840,29840,14176,20965,29840,14177,29840,14178, 29840,14179,29840,14180,14181,14182,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,14174,20966,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,14174,14175,29840,29840,29840, 14176,20967,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182,14168,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14169,29840,29840,29840,29840,29840, 29840,14170,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14171,29840,14172,29840, 14173,29840,29840,14174,14175,29840,29840,29840,14176,29840, 29840,14177,29840,14178,29840,14179,20968,14180,14181,14182, 20973,18610,12894,12894,12894,12894,12894,12894,12894,12894, 12894,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15483,29840, 29840,29840,29840,18611, 3291,29840,20976,29840,29840,29840, 29840,29840,29840,12913,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 29840,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927, 3291,29840,12912,29840,29840,29840, 29840,29840,29840,12913,29840,29840,29840,20977,20977,20977, 20977,20977,20977,20977,20977,20977,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 29840,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927,14201,20978,29840,29840,29840,29840, 29840,29840,29840,20979,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,20980,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,20981,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,20982, 14208,29840,29840,29840,15505,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14204,29840,14205,29840,14206,29840,29840,14207,14208,29840, 29840,29840,20983,29840,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,20984, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,20985, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,20986,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,20987,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14204,29840,14205,29840,14206,29840,29840,14207,14208,29840, 29840,29840,14209,29840,29840,14210,29840,14211,29840,14212, 20988,14213,14214,14215,20993,18642,12911,12911,12911,12911, 12911,12911,12911,12911,12911,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15519,29840,29840,29840,29840,18643, 3291,29840, 3292,29840,29840,29840,29840,29840,29840, 1768,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3293,29840,29840,29840,29840,29840,29840, 3294, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 3295,29840, 3296,29840, 3298,29840, 29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302, 29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 3291,29840, 3292,29840,29840,29840,29840,29840,29840, 1768,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 3293,29840,29840,29840,29840,29840,29840, 3294, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3921, 3923,29840, 3296,29840, 3298,29840, 29840, 3299, 3911,29840,29840,29840, 3301,29840,29840, 3302, 29840, 3303,29840, 3304,29840, 3305, 3306, 3307, 3924,10695, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10696, 29840,29840,29840,29840,20996,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10697,29840,29840,29840,29840,29840,29840,10698,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10699,29840,10700,29840,10701,29840,29840, 10702,10703,29840,29840,29840,10704,29840,29840,10705,29840, 10706,29840,10707,29840,10708,10709,10710,10695,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10696,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10699,29840,10700,29840,10701,29840,20997,10702,10703, 29840,29840,29840,10704,29840,29840,10705,29840,10706,29840, 10707,29840,10708,10709,10710,20272,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20274,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20275,29840,29840, 29840,29840,29840,29840,20276,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20277, 29840,20278,29840,20280,29840,29840,20281,20282,29840,29840, 29840,20283,29840,29840,20284,29840,20285,29840,20286,29840, 20287,20288,20289,20272,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20274,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20275,29840,20999,29840,29840, 29840,29840,20276,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20277,29840,20278, 29840,20280,29840,29840,20281,20282,29840,29840,29840,20283, 29840,29840,20284,29840,20285,29840,20286,29840,20287,20288, 20289, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,14250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14253,29840,14254, 29840,14256,29840,29840,14257,15542,29840,29840,29840,14259, 29840,29840,14260,29840,21023,29840,14262,29840,14263,14264, 14265,15561, 3291,29840,14249,29840,29840,29840,29840,29840, 29840,10694,29840,29840,18661,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14251,29840,29840,29840, 29840,29840,29840,14252,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14253,29840, 14254,16709,14256,29840,29840,14257,18662,29840,29840,29840, 14259,29840,29840,14260,29840,14261,29840,14262,29840,14263, 14264,14265,20313,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20314,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20315,29840,29840,29840,29840,29840, 29840,20316,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20317,29840,20318,29840, 20319,29840,29840,20320,20321,29840,29840,29840,20322,29840, 29840,20323,29840,20324,29840,20325,29840,20326,20327,20328, 20313,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20314,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20315,29840,21040,29840,29840,29840,29840,20316, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20317,29840,20318,29840,20319,29840, 29840,20320,20321,29840,29840,29840,20322,29840,29840,20323, 29840,20324,29840,20325,29840,20326,20327,20328, 8137,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,21061,29840,29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8142,29840, 8143, 8144, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150, 29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8140,29840, 29840,29840,29840,29840,29840, 8141,29840,29840,21062,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143, 8144, 8145,29840,29840, 8146, 8147,29840, 29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151, 29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,29840,10735,29840,29840,10736,10762,29840, 29840,29840,10738,29840,21064,10739,29840,10740,29840,10741, 29840,10742,10743,10744,11785, 3291,29840,10728,29840,29840, 29840,29840,29840,29840, 8136,29840,29840,10729,21067,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10730, 29840,29840,29840,29840,29840,29840,10731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10732,29840,10733,29840,10735,29840,29840,10736,10762, 29840,29840,29840,10738,29840,29840,10739,29840,10740,29840, 10741,29840,10742,10743,10744, 3291,29840,14316,21074,29840, 29840,29840,29840,29840,14317,29840,21075,14318,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14319, 29840,29840,29840,29840,29840,29840,14320,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14321,29840,14322,29840,14323,29840,29840,14324,14325, 29840,29840,29840,14326,29840,29840,14327,29840,14328,29840, 14329,29840,14330,14331,14332,15613,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15614,21076,21076,21076,21076, 21076,21076,21076,21076,21076,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15615,29840,29840, 29840,29840,29840,29840,15616,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15617, 29840,16758,29840,15619,29840,29840,15620,15621,29840,29840, 29840,15622,29840,29840,15623,29840,15624,29840,16759,29840, 15626,16760,15628,15613,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15614,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15615,29840,29840,29840,29840, 29840,29840,15616,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15617,29840,15618, 16763,15619,29840,29840,15620,15621,29840,29840,29840,15622, 29840,21077,15623,29840,15624,29840,15625,29840,15626,15627, 15628, 3291,29840,14316,29840,29840,29840,29840,29840,29840, 14317,29840,29840,21093,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14319,29840,29840,29840,29840, 29840,29840,14320,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14321,29840,14322, 29840,14323,29840,29840,14324,14325,29840,29840,29840,14326, 29840,29840,14327,29840,14328,29840,14329,29840,14330,14331, 14332, 3291,29840,14334,21105,29840,29840,29840,29840,29840, 14335,29840,21106,14336,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14337,29840,29840,29840,29840, 29840,29840,14338,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14339,29840,14340, 29840,14341,29840,29840,14342,14343,29840,29840,29840,14344, 29840,29840,14345,29840,14346,29840,14347,29840,14348,14349, 14350,15650,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15651,21107,21107,21107,21107,21107,21107,21107,21107, 21107,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15652,29840,29840,29840,29840,29840,29840, 15653,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15654,29840,16800,29840,15656, 29840,29840,15657,15658,29840,29840,29840,15659,29840,29840, 15660,29840,15661,29840,16801,29840,15663,16802,15665,15650, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15651, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15652,29840,29840,29840,29840,29840,29840,15653,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15654,29840,15655,16805,15656,29840,29840, 15657,15658,29840,29840,29840,15659,29840,21108,15660,29840, 15661,29840,15662,29840,15663,15664,15665, 3291,29840,14334, 29840,29840,29840,29840,29840,29840,14335,29840,29840,21124, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14337,29840,29840,29840,29840,29840,29840,14338,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14339,29840,14340,29840,14341,29840,29840, 14342,14343,29840,29840,29840,14344,29840,29840,14345,29840, 14346,29840,14347,29840,14348,14349,14350, 3291,29840, 3955, 29840,29840,29840,29840,29840,29840, 2222,29840,29840, 3956, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21136,29840,29840,29840,29840,29840,29840,29840, 29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3959,29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840, 4636, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 3291,29840, 3955, 29840,29840,29840,29840,29840,29840, 2222,29840,29840, 3956, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3957,29840,29840,29840,29840,29840,29840, 3958,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 3959,29840, 3960,29840,21137,29840,29840, 3963, 4625,29840,29840,29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21156,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21157,29840,29840,29840,29840, 21156,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21161,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139,17930, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,21162, 29840,29840,29840,29840,21161,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,21166,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21167,29840,29840,29840,29840,21166,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,21171,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21172,29840,29840, 29840,29840,21171,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21176, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21177,29840,29840,29840,29840,21176,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21180,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21181,29840,29840,29840,29840,29840, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21181, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21183, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21184,29840,29840,29840,29840,21183,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21186,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21187,29840,29840,29840,29840, 21186,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21191,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139,17930, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,21192, 29840,29840,29840,29840,21191,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,21196,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21197,29840,29840,29840,29840,21196,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,21200,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21201,29840,29840,29840, 29840,29840,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21201, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,21203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21204,29840,29840,29840,29840,21203,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,18824,29840,29840,21205,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139,21206,21206,21206,21206, 21206,21206,21206,21206,21206,20480,29840,29840,29840,29840, 29840,29840,21206,21206,21206,21206,21206,21207,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,21206, 21206,21206,21206,21206,21206,20482,20482,20482,20482,20482, 20482,20482,20482,20482,21208,29840,29840,29840,29840,29840, 29840,20482,20482,20482,20482,20482,20483,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20482,20482, 20482,20482,20482,20482, 8334,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21210,21210,21210,21210,21210, 21210,21210,21210,21210,29840,29840,29840,29840,29840,29840, 29840,21210,21210,21210,21210,21210,21211,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21210,21210, 21210,21210,21210,21210,21213,21213,21213,21213,21213,21213, 21213,21213,21213,19682,29840,29840,29840,29840,29840,29840, 21213,21213,21213,21213,21213,21214,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21213,21213,21213, 21213,21213,21213,21216,21216,21216,21216,21216,21216,21216, 21216,21216,29840,29840,29840,29840,29840,29840,29840,21216, 21216,21216,21216,21216,21217,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21216,21216,21216,21216, 21216,21216,21220,21220,21220,21220,21220,21220,21220,21220, 21220,19691,29840,29840,29840,29840,29840,29840,21220,21220, 21220,21220,21220,21221,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21220,21220,21220,21220,21220, 21220,21223,21223,21223,21223,21223,21223,21223,21223,21223, 29840,29840,29840,29840,29840,29840,29840,21223,21223,21223, 21223,21223,21224,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21223,21223,21223,21223,21223,21223, 21226,21227,21228,21229,21229,21229,21229,21229,21229,29840, 29840,29840,29840,29840,29840,29840,18858,18858,18858,18858, 18858,18859,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18858,18858,18858,18858,18858,18858,21230, 21230,21230,21230,21230,21230,21230,21230,21230,19700,29840, 29840,29840,29840,29840,29840,21230,21230,21230,21230,21230, 21231,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21230,21230,21230,21230,21230,21230,21233,21233, 21233,21233,21233,21233,21233,21233,21233,29840,29840,29840, 29840,29840,29840,29840,21233,21233,21233,21233,21233,21234, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,21233,21233,21233,21233,21233,21233,21236,21237,21238, 21239,21239,21239,21239,21239,21239,29840,29840,29840,29840, 29840,29840,29840,18865,18865,18865,18865,18865,18866,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18865,18865,18865,18865,18865,18865,15894,29840,21240,21240, 21240,21240,21240,21240,21240,21240,21240,17964,29840,29840, 29840,29840,29840,29840,18863,18863,18863,18863,18863,18864, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,18863,18863,18863,18863,18863,18863,21241,21241,21241, 21241,21241,21241,21241,21241,21241,19713,29840,29840,29840, 29840,29840,29840,21241,21241,21241,21241,21241,21242,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 21241,21241,21241,21241,21241,21241,21244,21244,21244,21244, 21244,21244,21244,21244,21244,29840,29840,29840,29840,29840, 29840,29840,21244,21244,21244,21244,21244,21245,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,21244, 21244,21244,21244,21244,21244,21247,21248,21249,21250,21250, 21250,21250,21250,21250,29840,29840,29840,29840,29840,29840, 29840,18873,18873,18873,18873,18873,18874,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,18873,18873, 18873,18873,18873,18873,21251,21251,21251,21251,21251,21251, 21251,21251,21251,17976,29840,29840,29840,29840,29840,29840, 18871,18871,18871,18871,18871,18872,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,18871,18871,18871, 18871,18871,18871,21252,21252,21252,21252,21252,21252,21252, 21252,21252,19727,29840,29840,29840,29840,29840,29840,21252, 21252,21252,21252,21252,21253,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21252,21252,21252,21252, 21252,21252,21255,21255,21255,21255,21255,21255,21255,21255, 21255,29840,29840,29840,29840,29840,29840,29840,21255,21255, 21255,21255,21255,21256,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21255,21255,21255,21255,21255, 21255,21258,21259,21260,21261,21261,21261,21261,21261,21261, 29840,29840,29840,29840,29840,29840,29840,18884,18884,18884, 18884,18884,18885,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18884,18884,18884,18884,18884,18884, 21262,21262,21262,21262,21262,21262,21262,21262,21262,17992, 29840,29840,29840,29840,29840,29840,18882,18882,18882,18882, 18882,18883,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,18882,18882,18882,18882,18882,18882,21263, 21263,21263,21263,21263,21263,21263,21263,21263,20529,29840, 29840,29840,29840,29840,29840,21263,21263,21263,21263,21263, 21264,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21263,21263,21263,21263,21263,21263,21265,21265, 21265,21265,21265,21265,21265,21265,21265,29840,29840,29840, 29840,29840,29840,29840,21265,21265,21265,21265,21265,21266, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,21265,21265,21265,21265,21265,21265,18897,18897,18897, 18897,18897,18897,18897,18897,18897,18898,29840,29840,29840, 29840,29840,29840,18897,18897,18897,18897,18897,18899,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 18897,18897,18897,18897,18897,18897,18894,18894,18894,18894, 18894,18894,18894,18894,18894,16980,29840,29840,29840,29840, 29840,29840,18894,18894,18894,18894,18894,18895,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18894, 18894,18894,18894,18894,18894, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,21274,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21275,29840,29840,29840,29840,21274,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,13392,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,20549,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 13392,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,20550,29840,29840, 29840,29840,20549,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21279, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,21280,29840,29840,29840,29840,21279,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21284,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,21285,29840,29840,29840,29840, 21284,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21289,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,21290, 29840,29840,29840,29840,21289,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,21296,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21297,29840,29840,29840,29840,21296,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,21299,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 17108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21300,29840,29840, 29840,29840,21299,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21304, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21305,29840,29840,29840,29840,21304,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21307,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21308,29840,29840,29840,29840, 21307,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21310,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,21311, 29840,29840,29840,29840,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21311, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,19818,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,21315,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21316,29840,29840,29840, 29840,21315,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21320,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 21321,29840,29840,29840,29840,21320,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 19818,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,21324,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21325,29840,29840,29840,29840,21324, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21327,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 21328,29840,29840,29840,17110, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21328, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,21330,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,21331,21331,21331,21331,21331,21331,21331,21331,21331, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,21330,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139,19029, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21334, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21335,29840,29840,29840,29840,21334,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21337,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21338,29840,29840, 29840,17110, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21338, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 17108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,21340,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21341,29840,29840,29840,29840,21340, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21345,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,21346,29840, 29840,29840,29840,21345,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 3987, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 19814,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139,21351,21351,21351,21351,21351,21351,21351,21351,21351, 19873,29840,29840,29840,29840,29840,29840,21351,21351,21351, 21351,21351,21352,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21351,21351,21351,21351,21351,21351, 7624,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,21354,21354,21354,21354,21354,21354,21354,21354,21354, 29840,29840,29840,29840,29840,29840,29840,21354,21354,21354, 21354,21354,21355,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21354,21354,21354,21354,21354,21354, 21357,21357,21357,21357,21357,21357,21357,21357,21357,29840, 29840,29840,29840,29840,29840,29840,21357,21357,21357,21357, 21357,21358,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,21357,21357,21357,21357,21357,21357,21360, 21361,21362,21363,21363,21363,21363,21363,21363,19060,29840, 29840,29840,29840,29840,29840,19059,19059,19059,19059,19059, 19061,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19059,19059,19059,19059,19059,19059,21364,21364, 21364,21364,21364,21364,21364,21364,21364,29840,29840,29840, 29840,29840,29840,29840,21364,21364,21364,21364,21364,21365, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,21364,21364,21364,21364,21364,21364,14907,29840,19072, 19072,19072,19072,19072,19072,19072,19072,19072,19073,29840, 29840,29840,29840,29840,29840,19072,19072,19072,19072,19072, 19074,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19072,19072,19072,19072,19072,19072,21370,21370, 21370,21370,21370,21370,21370,21370,21370,29840,29840,29840, 29840,29840,29840,29840,21370,21370,21370,21370,21370,21371, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,21370,21370,21370,21370,21370,21370,19081,19081,19081, 19081,19081,19081,19081,19081,19081,19082,29840,29840,29840, 29840,29840,29840,19081,19081,19081,19081,19081,19083,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19081,19081,19081,19081,19081,19081,19078,19078,19078,19078, 19078,19078,19078,19078,19078,17143,29840,29840,29840,29840, 29840,29840,19078,19078,19078,19078,19078,19079,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19078, 19078,19078,19078,19078,19078,21376,21376,21376,21376,21376, 21376,21376,21376,21376,29840,29840,29840,29840,29840,29840, 29840,21376,21376,21376,21376,21376,21377,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21376,21376, 21376,21376,21376,21376,19094,19094,19094,19094,19094,19094, 19094,19094,19094,19095,29840,29840,29840,29840,29840,29840, 19094,19094,19094,19094,19094,19096,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19094,19094,19094, 19094,19094,19094,19091,19091,19091,19091,19091,19091,19091, 19091,19091,17155,29840,29840,29840,29840,29840,29840,19091, 19091,19091,19091,19091,19092,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,19091,19091,19091,19091, 19091,19091,21382,21382,21382,21382,21382,21382,21382,21382, 21382,29840,29840,29840,29840,29840,29840,29840,21382,21382, 21382,21382,21382,21383,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21382,21382,21382,21382,21382, 21382,19108,19108,19108,19108,19108,19108,19108,19108,19108, 19109,29840,29840,29840,29840,29840,29840,19108,19108,19108, 19108,19108,19110,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19108,19108,19108,19108,19108,19108, 19105,19105,19105,19105,19105,19105,19105,19105,19105,17171, 29840,29840,29840,29840,29840,29840,19105,19105,19105,19105, 19105,19106,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19105,19105,19105,19105,19105,19105,21388, 21388,21388,21388,21388,21388,21388,21388,21388,19922,29840, 29840,29840,29840,29840,29840,21388,21388,21388,21388,21388, 21389,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21388,21388,21388,21388,21388,21388,21391,21391, 21391,21391,21391,21391,21391,21391,21391,29840,29840,29840, 29840,29840,29840,29840,21391,21391,21391,21391,21391,21392, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,21391,21391,21391,21391,21391,21391,21394,21395,21396, 21397,21397,21397,21397,21397,21397,29840,29840,29840,29840, 29840,29840,29840,19121,19121,19121,19121,19121,19122,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19121,19121,19121,19121,19121,19121,21398,21398,21398,21398, 21398,21398,21398,21398,21398,18228,29840,29840,29840,29840, 29840,29840,19119,19119,19119,19119,19119,19120,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19119, 19119,19119,19119,19119,19119, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,21400,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21401,29840,29840,29840,29840,21400,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211,19997, 29840,19997,29840,29840,20772,20772,20772,20772,20772,20772, 20772,20772,20772,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 1572,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,19999, 1234,29840,20000, 1225, 1225,29840, 1225, 3570, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840, 1225, 1225,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1225,29840,29840,29840, 29840,29840,19191,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 1234, 1225,20007, 1597, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,20032, 29840,29840,29840,29840,29840,21433,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1606, 1597,20801, 20051,29840,20051,29840,29840,20822,20822,20822,20822,20822, 20822,20822,20822,20822,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3077,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20053, 2564,29840,20054, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,21458,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,21459,29840,29840,29840,29840, 21458,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 2555, 2555, 2555,29840, 2555, 5712, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,20063, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,19250,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2564, 2555, 2555, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,21491,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21492,29840,29840, 29840,29840,21491,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,21495,21495,21495,21495,21495,21495, 21495,21495,21495,29840,29840,29840,29840,29840,29840,29840, 21495,21495,21495,21495,21495,21496,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21495,21495,21495, 21495,21495,21495,11553,29840,19299,19299,19299,19299,19299, 19299,19299,19299,19299,17463,29840,29840,29840,29840,29840, 29840,19299,19299,19299,19299,19299,19300,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19299,19299, 19299,19299,19299,19299,19336,19336,19336,19336,19336,19336, 19336,19336,19336,17512,29840,29840,29840,29840,29840, 329, 19336,19336,19336,19336,19336,19337,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19336,19336,19336, 19336,19336,19336,10612,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21520,21520,21520,21520,21520,21520, 21520,21520,21520,29840,21520,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10613,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10614,21523,10612,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20906,20906,20906,20906,20906,20906,20906, 20906,20906,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10613,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20909,29840,20906,20906,20906,20906, 20906,20906,29840,29840,29840,29840,29840,29840,29840,10614, 9704,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,21554, 29840,29840, 9705,29840,10666,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840, 29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840, 12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12867,29840,29840,29840,29840,29840,29840,12868, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12869,29840,12870,12871,12872,29840, 29840,12873,14133,29840,29840,29840,12875,29840,29840,12876, 29840,12877,29840,21555,29840,12879,12880,12881, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840,21556, 29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840,10676, 9711,29840, 29840,29840,10677,29840,29840, 9713,29840, 9714,29840,21557, 29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840, 29840,29840,29840, 9703,29840,29840,29840,29840,29840,29840, 29840,21558,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12867,29840, 14135,29840,29840,29840,29840,12868,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12869,29840,12870,29840,12872,29840,29840,12873,14133,29840, 29840,29840,12875,29840,29840,12876,29840,12877,29840,12878, 29840,12879,12880,12881, 3291,29840,12895,29840,29840,29840, 29840,29840,29840,12896,29840,29840,29840,29840,29840,29840, 29840,21565,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12897,29840, 14167,29840,29840,29840,29840,12898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12899,29840,12900,29840,12901,29840,29840,12902,12903,29840, 29840,29840,12904,29840,29840,12905,29840,12906,29840,12907, 29840,12908,12909,12910, 3291,29840,12895,20216,29840,29840, 29840,29840,29840,12896,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12897,29840, 29840,29840,29840,29840,29840,12898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12899,29840,12900,29840,12901,29840,29840,12902,12903,29840, 29840,29840,12904,29840,29840,12905,29840,12906,29840,12907, 29840,12908,12909,12910,21566,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,14174,14175,29840,29840,29840, 14176,29840,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182,14168,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,21567,21567,21567,21567,21567,21567,21567, 21567,21567,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14169,29840,29840,29840,29840,29840, 29840,14170,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14171,29840,14172,29840, 14173,29840,29840,14174,14175,29840,29840,29840,14176,29840, 29840,14177,29840,14178,29840,14179,29840,14180,14181,14182, 21572,19436,12896,12896,12896,12896,12896,12896,12896,12896, 12896,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16621,29840, 29840,29840,29840,19437, 3291,29840,12912,29840,29840,29840, 29840,29840,29840,12913,29840,29840,29840,29840,29840,29840, 29840,21580,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 14200,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927, 3291,29840,12912,20241,29840,29840, 29840,29840,29840,12913,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 29840,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927,21581,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,21582,21582,21582,21582,21582,21582,21582, 21582,21582,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 21587,19465,12913,12913,12913,12913,12913,12913,12913,12913, 12913,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16657,29840, 29840,29840,29840,19466,10695,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10696,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10697,29840,29840,29840, 29840,29840,29840,10698,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10699,29840, 10700,29840,10701,29840,29840,10702,10703,29840,29840,29840, 10704,29840,29840,10705,29840,10706,29840,10707,29840,10708, 10709,10710,10695,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10696,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10697,29840,29840,29840,29840,29840, 29840,10698,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10699,29840,10700,29840, 10701,29840,29840,10702,21595,29840,29840,29840,10704,29840, 29840,10705,29840,10706,29840,10707,29840,10708,10709,10710, 10695,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10696,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10697,29840,29840,29840,29840,29840,29840,10698, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10699,29840,10700,29840,10701,29840, 29840,10702,21596,29840,29840,29840,10704,29840,29840,10705, 29840,10706,29840,10707,29840,10708,10709,10710,20272,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20274,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20275,29840,29840,29840,29840,29840,29840,20276,29840,29840, 29840,29840,29840,21597,29840,29840,29840,29840,29840,29840, 29840,29840,20277,29840,20278,29840,20280,29840,29840,20281, 20282,29840,29840,29840,20283,29840,29840,20284,29840,20285, 29840,20286,29840,20287,20288,20289,20272,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20274,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20275,29840, 29840,29840,29840,29840,29840,20276,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20277,29840,20278,29840,20280,29840,29840,21598,20282,29840, 29840,29840,21015,29840,29840,20284,29840,20285,29840,20286, 29840,20287,20288,20289,20272,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20274,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20275,29840,29840,29840, 29840,29840,29840,20276,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20277,29840, 20278,29840,20280,29840,21007,20281,20282,29840,29840,29840, 20283,29840,21599,20284,29840,20285,29840,20286,29840,20287, 20288,20289,21619,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10696,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10697,29840,29840,29840,29840,29840, 29840,10698,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10699,29840,10700,29840, 10701,29840,29840,10702,10703,29840,29840,29840,10704,29840, 29840,10705,29840,10706,29840,10707,29840,10708,10709,10710, 3291,29840,14249,29840,29840,29840,29840,29840,29840,10694, 29840,29840,14250,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14251,29840,29840,29840,29840,29840, 29840,14252,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21620,29840,14254,29840, 14256,29840,29840,14257,15542,29840,29840,29840,14259,29840, 15560,14260,29840,14261,29840,14262,29840,14263,14264,14265, 10695,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10696,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10697,29840,29840,29840,29840,29840,29840,10698, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10699,29840,10700,29840,10701,29840, 29840,10702,10703,29840,29840,29840,10704,29840,21621,10705, 29840,10706,29840,10707,29840,10708,10709,10710,11749, 3291, 29840,21623,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14251,29840,29840,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,14254,29840,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,29840, 14260,29840,14261,29840,14262,29840,14263,14264,14265,20313, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20315,29840,29840,29840,29840,29840,29840,20316,29840, 29840,29840,29840,29840,21635,29840,29840,29840,29840,29840, 29840,29840,29840,20317,29840,20318,29840,20319,29840,29840, 20320,20321,29840,29840,29840,20322,29840,29840,20323,29840, 20324,29840,20325,29840,20326,20327,20328,20313,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20314,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20315, 29840,29840,29840,29840,29840,29840,20316,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20317,29840,20318,29840,20319,29840,21047,20320,20321, 29840,29840,29840,20322,29840,21636,20323,29840,20324,29840, 20325,29840,20326,20327,20328, 8137,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8140,29840,29840, 29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21656, 8142, 29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840, 29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840, 29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143, 29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148, 29840,29840, 8149,29840,21657,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145, 29840,29840, 8146,21658,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291, 29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840, 29840,10729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10730,29840,29840,29840,29840,29840,29840, 10731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10732,29840,10733,29840,10735, 29840,29840,10736,10762,29840,29840,29840,10738,29840,29840, 10739,29840,21659,29840,10741,29840,10742,10743,10744, 8137, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8142,29840, 8916,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8917,29840, 8152, 8918, 8154, 8137,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 21660,29840,29840,29840,29840,29840,29840,29840,29840, 8140, 29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147, 29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840, 29840,29840,29840,29840, 8136,29840,29840,10729,21661,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10730, 29840,29840,29840,29840,29840,29840,10731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10732,29840,10733,29840,10735,29840,29840,10736,10762, 29840,29840,29840,10738,29840,29840,10739,29840,10740,29840, 10741,29840,10742,10743,10744, 3291,29840,21668,29840,29840, 29840,29840,29840,29840,14317,29840,29840,14318,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14319, 29840,29840,29840,29840,29840,29840,14320,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14321,29840,14322,29840,14323,29840,29840,14324,14325, 29840,29840,29840,14326,29840,29840,14327,29840,14328,29840, 14329,29840,14330,14331,14332, 3291,29840,14316,29840,29840, 29840,29840,29840,29840,14317,29840,29840,14318,21669,21669, 21669,21669,21669,21669,21669,21669,21669,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14319, 29840,29840,29840,29840,29840,29840,14320,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14321,29840,14322,29840,14323,29840,29840,14324,14325, 29840,29840,29840,14326,29840,29840,14327,29840,14328,29840, 14329,29840,14330,14331,14332,15613,21670,29840,29840,29840, 29840,29840,29840,29840,21671,15614,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15615,29840,29840, 29840,29840,29840,29840,15616,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15617, 29840,15618,29840,15619,29840,29840,15620,15621,29840,29840, 29840,15622,29840,29840,15623,29840,15624,29840,15625,29840, 15626,15627,15628,15613,29840,29840,29840,29840,29840,29840, 29840,29840,29840,21672,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15615,29840,29840,29840,29840, 29840,29840,15616,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15617,29840,15618, 29840,15619,29840,29840,15620,15621,29840,29840,29840,15622, 29840,29840,15623,29840,15624,29840,15625,29840,15626,15627, 15628,15613,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15614,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21673,29840,29840,29840, 29840,29840,29840,15615,29840,29840,29840,29840,29840,29840, 15616,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15617,29840,16758,29840,15619, 29840,29840,15620,15621,29840,29840,29840,15622,29840,29840, 15623,29840,15624,29840,16759,29840,15626,16760,15628,14315, 14315,14315,14315,14315,14315,14315,14315,14315,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15629,29840,29840,29840,29840,29840, 29840,29840,29840,21684,29840,29840,29840,29840,29840,29840, 29840,15630,29840,29840,15631,21691,19567,14315,14315,14315, 14315,14315,14315,14315,14315,14315,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,16788,29840,29840,29840,29840,19568, 3291, 29840,21694,29840,29840,29840,29840,29840,29840,14335,29840, 29840,14336,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14337,29840,29840,29840,29840,29840,29840, 14338,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14339,29840,14340,29840,14341, 29840,29840,14342,14343,29840,29840,29840,14344,29840,29840, 14345,29840,14346,29840,14347,29840,14348,14349,14350, 3291, 29840,14334,29840,29840,29840,29840,29840,29840,14335,29840, 29840,14336,21695,21695,21695,21695,21695,21695,21695,21695, 21695,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14337,29840,29840,29840,29840,29840,29840, 14338,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14339,29840,14340,29840,14341, 29840,29840,14342,14343,29840,29840,29840,14344,29840,29840, 14345,29840,14346,29840,14347,29840,14348,14349,14350,15650, 21696,29840,29840,29840,29840,29840,29840,29840,21697,15651, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15652,29840,29840,29840,29840,29840,29840,15653,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15654,29840,15655,29840,15656,29840,29840, 15657,15658,29840,29840,29840,15659,29840,29840,15660,29840, 15661,29840,15662,29840,15663,15664,15665,15650,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21698,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15652, 29840,29840,29840,29840,29840,29840,15653,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15654,29840,15655,29840,15656,29840,29840,15657,15658, 29840,29840,29840,15659,29840,29840,15660,29840,15661,29840, 15662,29840,15663,15664,15665,15650,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15651,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 21699,29840,29840,29840,29840,29840,29840,15652,29840,29840, 29840,29840,29840,29840,15653,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15654, 29840,16800,29840,15656,29840,29840,15657,15658,29840,29840, 29840,15659,29840,29840,15660,29840,15661,29840,16801,29840, 15663,16802,15665,14333,14333,14333,14333,14333,14333,14333, 14333,14333,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15666,29840, 29840,29840,29840,29840,29840,29840,29840,21710,29840,29840, 29840,29840,29840,29840,29840,15667,29840,29840,15668,21717, 19605,14333,14333,14333,14333,14333,14333,14333,14333,14333, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,16830,29840,29840, 29840,29840,19606, 3291,29840, 3955,29840,29840,29840,29840, 29840,29840, 2222,29840,29840, 3956,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 3957,29840,29840, 29840,29840,29840,29840, 3958,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959, 29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840, 29840, 3965,29840,29840, 3966,29840,21720,29840, 3968,29840, 3969, 3970, 4635, 3291,29840, 3955,29840,29840,29840,29840, 29840,29840, 2222,29840,29840, 3956,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 3957,29840,29840, 29840,29840,29840,29840, 3958,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959, 29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840, 29840, 3965,29840,29840, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21737, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21738,29840,29840,29840,29840,21737,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21742,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21743,29840,29840,29840,29840, 21742,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21747,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,21748, 29840,29840,29840,29840,21747,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,19645,29840,29840,29840,29840,29840,29840,29840,21752, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,21753,21753,21753,21753,21753,21753,21753,21753, 21753,20480,29840,29840,29840,29840,29840,29840,21753,21753, 21753,21753,21753,21754,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21753,21753,21753,21753,21753, 21753, 8334,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21756,21756,21756,21756,21756,21756,21756,21756, 21756,29840,29840,29840,29840,29840,29840,29840,21756,21756, 21756,21756,21756,21757,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21756,21756,21756,21756,21756, 21756,21759,21759,21759,21759,21759,21759,21759,21759,21759, 29840,29840,29840,29840,29840,29840,29840,21759,21759,21759, 21759,21759,21760,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21759,21759,21759,21759,21759,21759, 21762,21763,21764,21765,21765,21765,21765,21765,21765,19678, 29840,29840,29840,29840,29840,29840,19677,19677,19677,19677, 19677,19679,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19677,19677,19677,19677,19677,19677,21766, 21766,21766,21766,21766,21766,21766,21766,21766,29840,29840, 29840,29840,29840,29840,29840,21766,21766,21766,21766,21766, 21767,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21766,21766,21766,21766,21766,21766,15894,29840, 19690,19690,19690,19690,19690,19690,19690,19690,19690,19691, 29840,29840,29840,29840,29840,29840,19690,19690,19690,19690, 19690,19692,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19690,19690,19690,19690,19690,19690,21772, 21772,21772,21772,21772,21772,21772,21772,21772,29840,29840, 29840,29840,29840,29840,29840,21772,21772,21772,21772,21772, 21773,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21772,21772,21772,21772,21772,21772,19699,19699, 19699,19699,19699,19699,19699,19699,19699,19700,29840,29840, 29840,29840,29840,29840,19699,19699,19699,19699,19699,19701, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19699,19699,19699,19699,19699,19699,19696,19696,19696, 19696,19696,19696,19696,19696,19696,17964,29840,29840,29840, 29840,29840,29840,19696,19696,19696,19696,19696,19697,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19696,19696,19696,19696,19696,19696,21778,21778,21778,21778, 21778,21778,21778,21778,21778,29840,29840,29840,29840,29840, 29840,29840,21778,21778,21778,21778,21778,21779,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,21778, 21778,21778,21778,21778,21778,19712,19712,19712,19712,19712, 19712,19712,19712,19712,19713,29840,29840,29840,29840,29840, 29840,19712,19712,19712,19712,19712,19714,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,19712,19712, 19712,19712,19712,19712,19709,19709,19709,19709,19709,19709, 19709,19709,19709,17976,29840,29840,29840,29840,29840,29840, 19709,19709,19709,19709,19709,19710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19709,19709,19709, 19709,19709,19709,21784,21784,21784,21784,21784,21784,21784, 21784,21784,29840,29840,29840,29840,29840,29840,29840,21784, 21784,21784,21784,21784,21785,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21784,21784,21784,21784, 21784,21784,19726,19726,19726,19726,19726,19726,19726,19726, 19726,19727,29840,29840,29840,29840,29840,29840,19726,19726, 19726,19726,19726,19728,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19726,19726,19726,19726,19726, 19726,19723,19723,19723,19723,19723,19723,19723,19723,19723, 17992,29840,29840,29840,29840,29840,29840,19723,19723,19723, 19723,19723,19724,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,19723,19723,19723,19723,19723,19723, 21790,21790,21790,21790,21790,21790,21790,21790,21790,20529, 29840,29840,29840,29840,29840,29840,21790,21790,21790,21790, 21790,21791,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,21790,21790,21790,21790,21790,21790,21793, 21793,21793,21793,21793,21793,21793,21793,21793,29840,29840, 29840,29840,29840,29840,29840,21793,21793,21793,21793,21793, 21794,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21793,21793,21793,21793,21793,21793,21796,21797, 21798,21799,21799,21799,21799,21799,21799,29840,29840,29840, 29840,29840,29840,29840,19739,19739,19739,19739,19739,19740, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19739,19739,19739,19739,19739,19739,21800,21800,21800, 21800,21800,21800,21800,21800,21800,18898,29840,29840,29840, 29840,29840,29840,19737,19737,19737,19737,19737,19738,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 19737,19737,19737,19737,19737,19737, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,21274,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21275,29840,29840,29840,29840,21274, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8358, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21802,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,21803,29840, 29840,29840,29840,21802,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139,12136,12136,12136,12136,12136,12136, 12136,12136,12136, 8367,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 140,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10009,29840,12137, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,21806, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,21296,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,21806, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21297,29840,29840,29840,29840,21296, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21809,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,21810,29840, 29840,29840,29840,21809,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 21814,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21815,29840,29840,29840,29840,21814,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,21818,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21819,29840,29840,29840, 29840,21818,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21822,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 21823,29840,29840,29840,29840,21822,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,21825,29840,21826,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 21827,21828,21828,29840,29840,29840,29840,29840,29840,29840, 29840,21829, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21832,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 21833,29840,29840,29840,29840,21832,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 19818,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,21837,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21838,29840,29840,29840,29840,21837, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21842,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,21843,29840, 29840,29840,29840,21842,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 21846,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21847,29840,29840,29840,29840,21846,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 21848, 139,19818,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,21848, 29840,29840,29840,29840,21850,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139,21848,21848, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21852,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21853,29840,29840,29840,29840, 21852,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21857,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,19818,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,21858, 29840,29840,29840,29840,21857,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,21861,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21862,29840,29840,29840,29840,21861,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,21863, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 21863,29840,29840,29840,29840,21865,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139,21863,21863,17108,19028, 19028,19028,19028,19028,19028,19028,19028,19028,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 140,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110,29840, 19029, 7624,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21866,21866,21866,21866,21866,21866,21866,21866, 21866,29840,29840,29840,29840,29840,29840,29840,21866,21866, 21866,21866,21866,21867,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21866,21866,21866,21866,21866, 21866,21869,21869,21869,21869,21869,21869,21869,21869,21869, 29840,29840,29840,29840,29840,29840,29840,21869,21869,21869, 21869,21869,21870,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21869,21869,21869,21869,21869,21869, 14907,29840,19872,19872,19872,19872,19872,19872,19872,19872, 19872,19873,29840,29840,29840,29840,29840,29840,19872,19872, 19872,19872,19872,19874,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19872,19872,19872,19872,19872, 19872,21875,21875,21875,21875,21875,21875,21875,21875,21875, 29840,29840,29840,29840,29840,29840,29840,21875,21875,21875, 21875,21875,21876,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21875,21875,21875,21875,21875,21875, 14907,29840,21878,21878,21878,21878,21878,21878,21878,21878, 21878,19073,29840,29840,29840,29840,29840,29840,19885,19885, 19885,19885,19885,19886,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,19885,19885,19885,19885,19885, 19885,21879,21879,21879,21879,21879,21879,21879,21879,21879, 29840,29840,29840,29840,29840,29840,29840,21879,21879,21879, 21879,21879,21880,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21879,21879,21879,21879,21879,21879, 21882,21882,21882,21882,21882,21882,21882,21882,21882,19082, 29840,29840,29840,29840,29840,29840,19891,19891,19891,19891, 19891,19892,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,19891,19891,19891,19891,19891,19891,21883, 21883,21883,21883,21883,21883,21883,21883,21883,29840,29840, 29840,29840,29840,29840,29840,21883,21883,21883,21883,21883, 21884,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,21883,21883,21883,21883,21883,21883,21886,21886, 21886,21886,21886,21886,21886,21886,21886,19095,29840,29840, 29840,29840,29840,29840,19900,19900,19900,19900,19900,19901, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,19900,19900,19900,19900,19900,19900,21887,21887,21887, 21887,21887,21887,21887,21887,21887,29840,29840,29840,29840, 29840,29840,29840,21887,21887,21887,21887,21887,21888,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 21887,21887,21887,21887,21887,21887,21890,21890,21890,21890, 21890,21890,21890,21890,21890,19109,29840,29840,29840,29840, 29840,29840,19909,19909,19909,19909,19909,19910,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,19909, 19909,19909,19909,19909,19909,21891,21891,21891,21891,21891, 21891,21891,21891,21891,29840,29840,29840,29840,29840,29840, 29840,21891,21891,21891,21891,21891,21892,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21891,21891, 21891,21891,21891,21891,19921,19921,19921,19921,19921,19921, 19921,19921,19921,19922,29840,29840,29840,29840,29840,29840, 19921,19921,19921,19921,19921,19923,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,19921,19921,19921, 19921,19921,19921,19918,19918,19918,19918,19918,19918,19918, 19918,19918,18228,29840,29840,29840,29840,29840,29840,19918, 19918,19918,19918,19918,19919,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,19918,19918,19918,19918, 19918,19918, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21898,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 21899,29840,29840,29840,29840,21898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 9211,20791,29840,20791,29840, 29840,21426,21426,21426,21426,21426,21426,21426,21426,21426, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 2023,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20793, 1606,29840,20794, 1597, 1597,29840, 1597, 4286, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840, 1597, 1597,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1597, 1597, 1597, 1597, 1597, 1597, 1597,29840,29840,29840,29840,29840,20032, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 1606, 1597,20801, 20824,29840,20824,29840,29840,21455,21455,21455,21455,21455, 21455,21455,21455,21455,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 3077,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20826, 2564,29840,20827, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840, 29840,29840,29840,21458,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 2564, 2555,21954, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,21459,29840,29840,29840,29840, 21458,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 2564, 2555, 21954, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21985,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 21986,29840,29840,29840,29840,21985,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,21997, 139, 139,21998,21999,22000,22001,22001,22001,22001,22001, 22001,22002, 139, 139, 139, 139, 139, 139,22003,22003, 22003,22003,22003,22004,22005,22005,22005,22005,22005,22005, 22005,22005,22005,22005,22005,22005,22005,22005,22005,22005, 22005, 139, 139, 139, 139,22003,22003,22003,22003,22003, 22003,22005,22005,22005,22005,22005,22006,22005,22005,22005, 22005,22005,22005,22005,22005,22005,22005,22005,22005,22005, 10612,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,21520,21520,21520,21520,21520,21520,21520,21520,21520, 29840,21520,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22019,10614,10612,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22021, 22021,22021,22021,22021,22021,22021,22021,22021,29840,22021, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10614, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,22052, 9712,29840,29840, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840, 29840,29840,29840, 9703,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12867,29840, 29840,29840,29840,29840,29840,12868,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12869,29840,12870,29840,12872,29840,29840,12873,14133,29840, 29840,29840,12875,29840,22053,12876,29840,12877,29840,12878, 29840,12879,12880,12881,14149, 9704,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22054,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840, 29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707, 29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840, 29840, 9712,29840,10678, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840,29840, 29840,29840, 9703,29840,29840,29840,22056,22056,22056,22056, 22057,22056,22056,22056,22056,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12867,29840,29840, 29840,29840,29840,29840,12868,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12869, 29840,12870,29840,12872,29840,29840,12873,14133,29840,29840, 29840,12875,29840,29840,12876,29840,12877,29840,12878,29840, 12879,12880,12881, 3291,29840,12895,29840,29840,29840,29840, 29840,29840,12896,29840,29840,29840,22062,22062,22062,22062, 22063,22062,22062,22062,22062,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12897,29840,29840, 29840,29840,29840,29840,12898,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12899, 29840,12900,29840,12901,29840,29840,12902,12903,29840,29840, 29840,12904,29840,29840,12905,29840,12906,29840,12907,29840, 12908,12909,12910,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22064,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,15458,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 29840,14173,29840,29840,14174,14175,29840,29840,29840,14176, 29840,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182,14168,20958,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,29840,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,29840,29840, 14177,29840,14178,29840,14179,29840,14180,14181,14182,14168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,22065, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22066,29840,14172,29840,14173,29840,29840,14174,14175, 29840,29840,29840,14176,29840,15470,14177,29840,14178,29840, 14179,29840,14180,14181,14182,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22067,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,29840,14173,29840,29840,15468,14175,29840,29840, 29840,15469,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 29840,14173,29840,29840,14174,14175,29840,29840,29840,14176, 22068,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,29840,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,29840,29840, 22069,29840,14178,29840,14179,29840,14180,14181,14182,14168, 29840,29840,29840,29840,29840,29840,29840,29840,21572,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14171,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,14168,29840,29840, 29840,29840,29840,29840,29840,29840,21572,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,29840,15468,14175, 29840,29840,29840,15469,29840,29840,14177,29840,14178,29840, 14179,29840,14180,14181,14182, 3291,29840,12895,29840,29840, 29840,29840,29840,29840,12896,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22070,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12897, 29840,29840,29840,29840,29840,29840,12898,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12899,29840,12900,29840,12901,29840,29840,12902,12903, 29840,29840,29840,12904,29840,29840,12905,29840,12906,29840, 12907,29840,12908,12909,12910, 3291,29840,12912,29840,29840, 29840,29840,29840,29840,12913,29840,29840,29840,22074,22074, 22074,22074,22075,22074,22074,22074,22074,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12914, 29840,29840,29840,29840,29840,29840,12915,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12916,29840,12917,29840,12918,29840,29840,12919,12920, 29840,29840,29840,12921,29840,29840,12922,29840,12923,29840, 12924,29840,12925,12926,12927,14201,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22076,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14202,29840,15494, 29840,29840,29840,29840,14203,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14204, 29840,14205,29840,14206,29840,29840,14207,14208,29840,29840, 29840,14209,29840,29840,14210,29840,14211,29840,14212,29840, 14213,14214,14215,14201,20978,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14202,29840,29840,29840,29840, 29840,29840,14203,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14204,29840,14205, 29840,14206,29840,29840,14207,14208,29840,29840,29840,14209, 29840,29840,14210,29840,14211,29840,14212,29840,14213,14214, 14215,14201,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14202,29840,29840,29840,29840,29840,29840, 14203,22077,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14204,29840,14205,29840,14206, 29840,29840,14207,14208,29840,29840,29840,14209,29840,29840, 14210,29840,14211,29840,14212,29840,14213,14214,14215,14201, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14202,29840,29840,29840,29840,29840,29840,14203,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22078,29840,14205,29840,14206,29840,29840, 14207,14208,29840,29840,29840,14209,29840,15506,14210,29840, 14211,29840,14212,29840,14213,14214,14215,14201,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22079,29840,29840,29840,29840,29840,29840,14202, 29840,29840,29840,29840,29840,29840,14203,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14204,29840,14205,29840,14206,29840,29840,15504,14208, 29840,29840,29840,15505,29840,29840,14210,29840,14211,29840, 14212,29840,14213,14214,14215,14201,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14202,29840,29840, 29840,29840,29840,29840,14203,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14204, 29840,14205,29840,14206,29840,29840,14207,14208,29840,29840, 29840,14209,22080,29840,14210,29840,14211,29840,14212,29840, 14213,14214,14215,14201,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14202,29840,29840,29840,29840, 29840,29840,14203,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14204,29840,14205, 29840,14206,29840,29840,14207,14208,29840,29840,29840,14209, 29840,29840,22081,29840,14211,29840,14212,29840,14213,14214, 14215,14201,29840,29840,29840,29840,29840,29840,29840,29840, 21587,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14202,29840,29840,29840,29840,29840,29840, 14203,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14204,29840,14205,29840,14206, 29840,29840,14207,14208,29840,29840,29840,14209,29840,29840, 14210,29840,14211,29840,14212,29840,14213,14214,14215,14201, 29840,29840,29840,29840,29840,29840,29840,29840,21587,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14202,29840,29840,29840,29840,29840,29840,14203,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14204,29840,14205,29840,14206,29840,29840, 15504,14208,29840,29840,29840,15505,29840,29840,14210,29840, 14211,29840,14212,29840,14213,14214,14215, 3291,29840,12912, 29840,29840,29840,29840,29840,29840,12913,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22082, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12914,29840,29840,29840,29840,29840,29840,12915,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12916,29840,12917,29840,12918,29840,29840, 12919,12920,29840,29840,29840,12921,29840,29840,12922,29840, 12923,29840,12924,29840,12925,12926,12927,10695,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10696,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10699,29840,10700,29840,10701,29840,29840,10702,10703, 29840,29840,29840,10704,22086,29840,10705,29840,10706,29840, 10707,29840,10708,10709,10710,10695,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10696,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10697,29840,29840, 29840,29840,29840,29840,10698,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10699, 29840,10700,29840,10701,29840,29840,10702,10703,29840,29840, 29840,10704,22087,29840,10705,29840,10706,29840,10707,29840, 10708,10709,10710,20272,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20274,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20275,29840,29840,29840,29840, 29840,29840,20276,29840,29840,29840,29840,29840,22088,29840, 29840,29840,29840,29840,29840,29840,29840,20277,29840,20278, 29840,20280,29840,29840,20281,20282,29840,29840,29840,20283, 29840,29840,20284,29840,20285,29840,20286,29840,20287,20288, 20289,20272,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20274,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20275,29840,29840,29840,29840,29840,29840, 20276,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20277,29840,20278,29840,20280, 29840,29840,20281,20282,29840,29840,29840,20283,29840,21010, 22089,29840,20285,29840,20286,29840,20287,20288,20289, 3291, 29840,22103,29840,29840,29840,29840,29840,29840,20271,29840, 29840,22104,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22105,29840,29840,29840,29840,29840,29840, 22106,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22107,29840,22108,22109,22110, 29840,29840,22111,22112,29840,29840,29840,22113,29840,29840, 22114,29840,22115,29840,22116,29840,22117,22118,22119, 3291, 29840,14249,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14251,29840,29840,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,14254,14255,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,29840, 14260,29840,14261,29840,22129,29840,14263,14264,14265, 3291, 29840,14249,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,29840,29840,29840,29840,22132,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14251,29840,15544,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,14254,29840,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,29840, 14260,29840,14261,29840,14262,29840,14263,14264,14265, 3291, 29840,22103,29840,29840,29840,29840,29840,29840,20271,29840, 22135,22104,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22105,29840,29840,29840,29840,29840,29840, 22106,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22107,29840,22108,22136,22110, 29840,29840,22111,22137,29840,29840,29840,22113,29840,29840, 22114,29840,22115,29840,22116,29840,22117,22118,22119,20313, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20315,29840,29840,29840,29840,29840,29840,20316,29840, 29840,29840,29840,29840,22142,29840,29840,29840,29840,29840, 29840,29840,29840,20317,29840,20318,29840,20319,29840,29840, 20320,20321,29840,29840,29840,20322,29840,29840,20323,29840, 20324,29840,20325,29840,20326,20327,20328,20313,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20314,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20315, 29840,29840,29840,29840,29840,29840,20316,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20317,29840,20318,29840,20319,29840,29840,20320,20321, 29840,29840,29840,20322,22143,29840,20323,29840,20324,29840, 20325,29840,20326,20327,20328, 3291,29840,22156,29840,29840, 29840,29840,29840,29840,20312,29840,29840,22157,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22158, 29840,29840,29840,29840,29840,29840,22159,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22160,29840,22161,22162,22163,29840,29840,22164,22165, 29840,29840,29840,22166,29840,29840,22167,29840,22168,29840, 22169,29840,22170,22171,22172, 8137,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8140,29840,29840, 29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8142, 29840, 8143,29840, 8145,29840,29840,22181, 8147,29840,29840, 29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840, 29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143, 29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148, 29840,22182, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840,29840,22184,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10730,29840,29840,29840,29840, 29840,29840,10731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10732,29840,10733, 29840,10735,29840,29840,10736,10762,29840,29840,29840,10738, 29840,11784,10739,29840,10740,29840,10741,29840,10742,10743, 10744, 3291,29840,22156,29840,29840,29840,29840,29840,29840, 20312,29840,29840,22157,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22158,29840,29840,29840,29840, 29840,29840,22159,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22160,29840,22161, 29840,22163,29840,29840,22164,22186,29840,29840,29840,22166, 29840,29840,22167,29840,22168,29840,22169,29840,22170,22171, 22172, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22193,29840,22194, 29840,22195,29840,29840,22196,22197,29840,29840,29840,22198, 29840,29840,22199,29840,22200,29840,22201,29840,22202,22203, 22204, 3291,29840,22206,29840,29840,29840,29840,29840,29840, 22207,29840,29840,22208,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22209,29840,29840,29840,29840, 29840,29840,22210,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22211,29840,22212, 29840,22213,29840,29840,22214,22215,29840,29840,29840,22216, 29840,29840,22217,29840,22218,29840,22219,29840,22220,22221, 22222, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10730,29840,29840,29840,29840, 29840,29840,10731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10732,29840,10733, 29840,10735,29840,29840,10736,10762,29840,29840,29840,10738, 22223,29840,10739,29840,10740,29840,10741,29840,10742,10743, 10744, 3291,29840,14316,29840,29840,29840,29840,29840,29840, 14317,29840,29840,14318,29840,29840,29840,29840,22226,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14319,29840,15612,29840,29840, 29840,29840,14320,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14321,29840,14322, 29840,14323,29840,29840,14324,14325,29840,29840,29840,14326, 29840,29840,14327,29840,14328,29840,14329,29840,14330,14331, 14332, 3291,29840,14316,21074,29840,29840,29840,29840,29840, 14317,29840,29840,14318,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14319,29840,29840,29840,29840, 29840,29840,14320,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14321,29840,14322, 29840,14323,29840,29840,14324,14325,29840,29840,29840,14326, 29840,29840,14327,29840,14328,29840,14329,29840,14330,14331, 14332,22227,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15614,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15615,29840,29840,29840,29840,29840,29840, 15616,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15617,29840,15618,29840,15619, 29840,29840,15620,15621,29840,29840,29840,15622,29840,29840, 15623,29840,15624,29840,15625,29840,15626,15627,15628,15613, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15614, 22228,22228,22228,22228,22228,22228,22228,22228,22228,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15615,29840,29840,29840,29840,29840,29840,15616,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15617,29840,15618,29840,15619,29840,29840, 15620,15621,29840,29840,29840,15622,29840,29840,15623,29840, 15624,29840,15625,29840,15626,15627,15628,14317,14317,14317, 14317,14317,14317,14317,14317,14317,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,16758,29840,29840,29840,29840,29840,29840,29840, 29840,22229,29840,29840,29840,29840,29840,29840,29840,16759, 29840,29840,16760,22236,20350,14317,14317,14317,14317,14317, 14317,14317,14317,14317,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17810,29840,29840,29840,29840,20351, 3291,29840,22188, 29840,29840,29840,29840,29840,29840,22189,29840,22241,22190, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22191,29840,29840,29840,29840,29840,29840,22192,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22193,29840,22194,22242,22195,29840,29840, 22196,22197,29840,29840,29840,22198,29840,29840,22199,29840, 22200,29840,22201,29840,22202,22203,22204, 3291,29840,14334, 29840,29840,29840,29840,29840,29840,14335,29840,29840,14336, 29840,29840,29840,29840,22248,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14337,29840,15649,29840,29840,29840,29840,14338,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14339,29840,14340,29840,14341,29840,29840, 14342,14343,29840,29840,29840,14344,29840,29840,14345,29840, 14346,29840,14347,29840,14348,14349,14350, 3291,29840,14334, 21105,29840,29840,29840,29840,29840,14335,29840,29840,14336, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14337,29840,29840,29840,29840,29840,29840,14338,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14339,29840,14340,29840,14341,29840,29840, 14342,14343,29840,29840,29840,14344,29840,29840,14345,29840, 14346,29840,14347,29840,14348,14349,14350,22249,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15651,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15652, 29840,29840,29840,29840,29840,29840,15653,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15654,29840,15655,29840,15656,29840,29840,15657,15658, 29840,29840,29840,15659,29840,29840,15660,29840,15661,29840, 15662,29840,15663,15664,15665,15650,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15651,22250,22250,22250,22250, 22250,22250,22250,22250,22250,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15652,29840,29840, 29840,29840,29840,29840,15653,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15654, 29840,15655,29840,15656,29840,29840,15657,15658,29840,29840, 29840,15659,29840,29840,15660,29840,15661,29840,15662,29840, 15663,15664,15665,14335,14335,14335,14335,14335,14335,14335, 14335,14335,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,16800,29840, 29840,29840,29840,29840,29840,29840,29840,22251,29840,29840, 29840,29840,29840,29840,29840,16801,29840,29840,16802,22258, 20385,14335,14335,14335,14335,14335,14335,14335,14335,14335, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17852,29840,29840, 29840,29840,20386, 3291,29840,22206,29840,29840,29840,29840, 29840,29840,22207,29840,22263,22208,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22209,29840,29840, 29840,29840,29840,29840,22210,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22211, 29840,22212,22264,22213,29840,29840,22214,22215,29840,29840, 29840,22216,29840,29840,22217,29840,22218,29840,22219,29840, 22220,22221,22222, 3291,29840, 3955,29840,29840,29840,29840, 29840,29840, 2222,29840,29840, 3956,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21136,29840, 29840,29840,29840,29840,29840,29840,29840, 3957,29840,29840, 29840,29840,29840,29840, 3958,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 3959, 29840, 3960,29840, 3962,29840,29840, 3963, 4625,29840,29840, 29840, 3965,29840, 4643, 3966,29840, 3967,29840, 3968,29840, 3969, 3970, 3971, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22284, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22285,29840,29840,29840,29840,22284,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 3987, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,20437,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 8334,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22288,22288,22288,22288,22288, 22288,22288,22288,22288,29840,29840,29840,29840,29840,29840, 29840,22288,22288,22288,22288,22288,22289,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22288,22288, 22288,22288,22288,22288,22291,22291,22291,22291,22291,22291, 22291,22291,22291,29840,29840,29840,29840,29840,29840,29840, 22291,22291,22291,22291,22291,22292,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22291,22291,22291, 22291,22291,22291,15894,29840,20479,20479,20479,20479,20479, 20479,20479,20479,20479,20480,29840,29840,29840,29840,29840, 29840,20479,20479,20479,20479,20479,20481,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20479,20479, 20479,20479,20479,20479,22297,22297,22297,22297,22297,22297, 22297,22297,22297,29840,29840,29840,29840,29840,29840,29840, 22297,22297,22297,22297,22297,22298,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22297,22297,22297, 22297,22297,22297,15894,29840,22300,22300,22300,22300,22300, 22300,22300,22300,22300,19691,29840,29840,29840,29840,29840, 29840,20492,20492,20492,20492,20492,20493,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20492,20492, 20492,20492,20492,20492,22301,22301,22301,22301,22301,22301, 22301,22301,22301,29840,29840,29840,29840,29840,29840,29840, 22301,22301,22301,22301,22301,22302,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22301,22301,22301, 22301,22301,22301,22304,22304,22304,22304,22304,22304,22304, 22304,22304,19700,29840,29840,29840,29840,29840,29840,20498, 20498,20498,20498,20498,20499,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20498,20498,20498,20498, 20498,20498,22305,22305,22305,22305,22305,22305,22305,22305, 22305,29840,29840,29840,29840,29840,29840,29840,22305,22305, 22305,22305,22305,22306,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22305,22305,22305,22305,22305, 22305,22308,22308,22308,22308,22308,22308,22308,22308,22308, 19713,29840,29840,29840,29840,29840,29840,20507,20507,20507, 20507,20507,20508,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20507,20507,20507,20507,20507,20507, 22309,22309,22309,22309,22309,22309,22309,22309,22309,29840, 29840,29840,29840,29840,29840,29840,22309,22309,22309,22309, 22309,22310,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22309,22309,22309,22309,22309,22309,22312, 22312,22312,22312,22312,22312,22312,22312,22312,19727,29840, 29840,29840,29840,29840,29840,20516,20516,20516,20516,20516, 20517,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20516,20516,20516,20516,20516,20516,22313,22313, 22313,22313,22313,22313,22313,22313,22313,29840,29840,29840, 29840,29840,29840,29840,22313,22313,22313,22313,22313,22314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22313,22313,22313,22313,22313,22313,20528,20528,20528, 20528,20528,20528,20528,20528,20528,20529,29840,29840,29840, 29840,29840,29840,20528,20528,20528,20528,20528,20530,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20528,20528,20528,20528,20528,20528,20525,20525,20525,20525, 20525,20525,20525,20525,20525,18898,29840,29840,29840,29840, 29840,29840,20525,20525,20525,20525,20525,20526,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20525, 20525,20525,20525,20525,20525, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,22320,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,22321,29840,29840,29840,29840,22320,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,22325,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 21806, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,21296,29840,29840,29840,29840,29840,22326, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 22328,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22329,29840,29840,29840,29840,22328,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,19818,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,22333,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22334,29840,29840,29840, 29840,22333,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22338,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 22339,29840,29840,29840,29840,22338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,22343,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22344,29840,29840,29840,29840,22343, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22347,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,22348,29840, 29840,29840,29840,22347,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 22350,22351,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139,29840,29840,29840,29840,29840,29840,29840,22351, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,22353,22353,22353,22353,22353, 22353,22353,22353, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,22354,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,22354,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22356, 22357,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 29840,29840,29840,29840,29840,29840,29840,22357, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,19818,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,22359,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22360,29840,29840,29840, 29840,22359,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22364,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 22365,29840,29840,29840,29840,22364,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 19818,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,22369,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22370,29840,29840,29840,29840,22369, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22374,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,22375,29840, 29840,29840,29840,22374,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 22378,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22379,29840,29840,29840,29840,29840,29840,17110, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22379, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22381,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,22382,29840, 29840,29840,29840,22381,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 22384,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22385,29840,29840,29840,29840,22384,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,19818,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,22390,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22391,29840,29840,29840, 29840,22390,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22395,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 22396,29840,29840,29840,29840,22395,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 19818,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,22399,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22400,29840,29840,29840,29840,29840,29840, 17110, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22400, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22402,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 22403,29840,29840,29840,29840,22402,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139,14907,29840,22404,22404, 22404,22404,22404,22404,22404,22404,22404,19873,29840,29840, 29840,29840,29840,29840,20683,20683,20683,20683,20683,20684, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20683,20683,20683,20683,20683,20683, 7624,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20697,20697, 20697,20697,20697,20697,20697,20697,20697,19073,29840,29840, 29840,29840,29840,29840,20697,20697,20697,20697,20697,20698, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20697,20697,20697,20697,20697,20697,20707,20707,20707, 20707,20707,20707,20707,20707,20707,19082,29840,29840,29840, 29840,29840,29840,20707,20707,20707,20707,20707,20708,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20707,20707,20707,20707,20707,20707,20718,20718,20718,20718, 20718,20718,20718,20718,20718,19095,29840,29840,29840,29840, 29840,29840,20718,20718,20718,20718,20718,20719,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20718, 20718,20718,20718,20718,20718,20729,20729,20729,20729,20729, 20729,20729,20729,20729,19109,29840,29840,29840,29840,29840, 29840,20729,20729,20729,20729,20729,20730,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20729,20729, 20729,20729,20729,20729, 7624,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22405,22405,22405,22405,22405, 22405,22405,22405,22405,29840,29840,29840,29840,29840,29840, 29840,22405,22405,22405,22405,22405,22406,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22405,22405, 22405,22405,22405,22405,22408,22408,22408,22408,22408,22408, 22408,22408,22408,19922,29840,29840,29840,29840,29840,29840, 20740,20740,20740,20740,20740,20741,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20740,20740,20740, 20740,20740,20740, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,21898, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 9211, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,21899,29840,29840,29840,29840,21898,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 9211, 6392,29840,29840, 29840,29840,29840,21438,29840,21438,29840,29840,21935,21935, 21935,21935,21935,21935,21935,21935,21935,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 5705, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21440,29840,29840,21441, 2555, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,21458,29840,29840,29840, 29840,29840,22458,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 2564, 2555,21954, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,22488,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22489,29840,29840,29840, 29840,22488,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,22492,22492,22492,22492,22492,22492,22492, 22492,22492,29840,29840,29840,29840,29840,29840,29840,22492, 22492,22492,22492,22492,22493,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22492,22492,22492,22492, 22492,22492, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22499,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,22500,22501, 139,22502,22503,22503,22503,22503, 22503,22503,22503,22503,22504, 139, 139, 139, 139, 139, 139,22503,22503,22503,22503,22503,22505,22500,22500,22500, 22500,22500,22500,22500,22500,22500,22500,22500,22500,22500, 22500,22500,22500,22500, 139, 139, 139,22506,22503,22503, 22503,22503,22503,22503,22500,22500,22500,22500,22500,22500, 22500,22500,22500,22500,22500,22500,22500,22500,22500,22500, 22500,22500,22500,22498,29840,22500,22500,22500,22500,22500, 22500,22500,22500,22500, 139,29840,29840,29840,29840,29840, 29840,22500,22500,22500,22500,22500,22514,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22500,22500, 22500,22500,22500,22500,10612,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22021,22021,22021,22021,22021, 22021,22021,22021,22021,29840,22021,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10613,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22530,10614,10612,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22531,22531,22531,22531,22531,22531,22531, 22531,22531,29840,22531,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10613,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10614, 9704,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840, 29840, 9710,22560,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840, 12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12867,29840,29840,29840,29840,29840,29840,12868, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12869,29840,12870,29840,12872,29840, 29840,12873,14133,29840,29840,29840,12875,29840,29840,12876, 29840,22561,29840,12878,29840,12879,12880,12881, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718, 9704,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840, 29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840, 29840,29840, 9712,10673,22562, 9713,29840, 9714,29840, 9715, 29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840,29840, 29840,29840,29840, 9703,29840,29840,29840,22563,22563,22563, 22563,22563,22563,22563,22563,22563,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12867,29840, 29840,29840,29840,29840,29840,12868,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12869,29840,12870,29840,12872,29840,29840,12873,14133,29840, 29840,29840,12875,29840,29840,12876,29840,12877,29840,12878, 29840,12879,12880,12881, 3291,29840,12895,29840,29840,29840, 29840,29840,29840,12896,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12897,29840, 29840,29840,29840,29840,29840,12898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12899,29840,12900,29840,12901,29840,29840,12902,12903,29840, 29840,29840,12904,29840,29840,12905,29840,12906,29840,12907, 29840,12908,12909,12910, 3291,29840,12895,29840,29840,29840, 29840,29840,29840,12896,29840,29840,29840,29840,29840,29840, 29840,22568,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12897,29840, 29840,29840,29840,29840,29840,12898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12899,29840,12900,29840,12901,29840,29840,12902,12903,29840, 29840,29840,12904,29840,29840,12905,29840,12906,29840,12907, 29840,12908,12909,12910,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22569, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,14174,14175,29840,29840,29840, 14176,29840,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182,14168,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22570,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14169,29840,29840,29840,29840,29840, 29840,14170,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14171,29840,14172,29840, 14173,29840,29840,14174,14175,29840,29840,29840,14176,29840, 29840,14177,29840,14178,29840,14179,29840,14180,14181,14182, 14168,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14169,29840,29840,29840,29840,29840,29840,14170, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14171,29840,14172,15461,14173,29840, 29840,14174,14175,29840,29840,29840,14176,29840,29840,14177, 29840,14178,29840,22571,29840,14180,14181,14182,14168,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14169,29840,29840,29840,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,29840,14173,29840,29840,14174, 14175,29840,29840,29840,14176,29840,22572,14177,29840,14178, 29840,14179,29840,14180,14181,14182,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,22573,14175,29840, 29840,29840,15469,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182, 3291,29840,12912,29840,29840,29840, 29840,29840,29840,12913,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 29840,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927, 3291,29840,12912,29840,29840,29840, 29840,29840,29840,12913,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12914,29840, 29840,29840,29840,29840,29840,12915,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12916,29840,12917,29840,12918,29840,29840,12919,12920,29840, 29840,29840,12921,29840,29840,12922,29840,12923,29840,12924, 29840,12925,12926,12927,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22578, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,29840,29840,14210,29840,14211,29840,14212,29840,14213, 14214,14215,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22579,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,15497,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,22580,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,22581,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14204,29840,14205,29840,14206,29840,29840,22582,14208,29840, 29840,29840,15505,29840,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,10695,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10696,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22587, 29840,29840,29840,29840,29840,29840,10697,29840,29840,29840, 29840,29840,29840,10698,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10699,29840, 10700,12941,10701,29840,29840,10702,10703,29840,29840,29840, 10704,29840,29840,10705,29840,10706,29840,10707,29840,10708, 10709,10710,10695,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10696,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10697,29840,29840,29840,29840,29840, 29840,10698,29840,29840,22588,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10699,29840,10700,12941, 10701,29840,29840,10702,10703,29840,29840,29840,10704,29840, 29840,10705,29840,10706,29840,10707,29840,10708,10709,10710, 20272,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20274,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20275,29840,29840,29840,29840,29840,29840,20276, 29840,29840,22589,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20277,29840,20278,29840,20280,29840, 29840,20281,20282,29840,29840,29840,20283,29840,29840,20284, 29840,20285,29840,20286,29840,20287,20288,20289, 3291,29840, 22103,29840,29840,29840,29840,29840,29840,20271,29840,29840, 22104,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22105,29840,29840,29840,29840,29840,29840,22106, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22107,29840,22108,29840,22110,29840, 29840,22590,22137,29840,29840,29840,22591,29840,29840,22114, 29840,22115,29840,22116,29840,22117,22118,22119,20272,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20274,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20275,29840,29840,29840,29840,29840,29840,20276,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20277,29840,20278,29840,20280,29840,29840,20281, 20282,29840,29840,29840,20283,29840,29840,20284,29840,20285, 29840,22592,29840,20287,20288,20289,20272,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20274,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20275,29840, 29840,29840,29840,29840,29840,20276,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20277,29840,20278,29840,20280,29840,29840,21014,20282,29840, 29840,29840,21015,29840,22593,20284,29840,20285,29840,20286, 29840,20287,20288,20289, 3291,29840,22103,29840,29840,29840, 29840,29840,29840,20271,29840,29840,22104,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22105,29840, 29840,29840,29840,29840,29840,22106,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22107,29840,22108,29840,22110,29840,29840,22111,22137,29840, 29840,29840,22113,29840,29840,22114,29840,22115,29840,22116, 29840,22117,22118,22119, 3291,29840,14249,29840,29840,29840, 29840,29840,29840,10694,29840,29840,14250,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14251,29840, 29840,29840,29840,29840,29840,14252,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14253,29840,14254,29840,14256,29840,29840,14257,15542,29840, 29840,29840,14259,29840,22632,14260,29840,14261,29840,14262, 29840,14263,14264,14265,15561, 3291,29840,14249,29840,29840, 29840,29840,29840,29840,10694,29840,29840,14250,22635,22635, 22635,22635,22636,22635,22635,22635,22635,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14251, 29840,29840,29840,29840,29840,29840,14252,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14253,29840,14254,29840,14256,29840,29840,14257,15542, 29840,29840,29840,14259,29840,29840,14260,29840,14261,29840, 14262,29840,14263,14264,14265,20313,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20314,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20315,29840,29840, 29840,29840,29840,29840,20316,29840,29840,22644,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20317, 29840,20318,29840,20319,29840,29840,20320,20321,29840,29840, 29840,20322,29840,29840,20323,29840,20324,29840,20325,29840, 20326,20327,20328,20313,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20314,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20315,29840,29840,29840,29840, 29840,29840,20316,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20317,29840,20318, 29840,20319,29840,29840,20320,20321,29840,29840,29840,20322, 29840,29840,20323,29840,20324,29840,22645,29840,20326,20327, 20328,20313,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20314,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20315,29840,29840,29840,29840,29840,29840, 20316,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20317,29840,20318,29840,20319, 29840,29840,21053,20321,29840,29840,29840,21054,29840,22646, 20323,29840,20324,29840,20325,29840,20326,20327,20328, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,22164,22186,29840,29840,29840,22166,29840,29840, 22167,29840,22168,29840,22169,29840,22170,22171,22172, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,22164,22186,29840,29840,29840,22166,29840,29840, 22167,29840,22168,29840,22169,29840,22170,22171,22172, 8137, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22686,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840, 8925, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8140, 29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147, 29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151, 9750,22687, 8153, 8154, 3291,29840,10728,29840,29840, 29840,29840,29840,29840, 8136,29840,29840,10729,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10730, 29840,29840,29840,29840,29840,29840,10731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10732,29840,11771,29840,10735,29840,29840,10736,10762, 29840,29840,29840,10738,29840,29840,10739,29840,10740,29840, 11772,29840,10742,11773,10744, 3291,29840,22188,29840,29840, 29840,29840,29840,29840,22189,29840,29840,22190,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22191, 29840,29840,29840,29840,29840,29840,22192,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22193,29840,22194,29840,22195,29840,29840,22196,22197, 29840,29840,29840,22198,29840,29840,22199,29840,22200,29840, 22201,29840,22202,22203,22204, 3291,29840,22188,29840,29840, 29840,29840,29840,29840,22189,29840,29840,22190,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22191, 29840,22690,29840,29840,29840,29840,22192,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22193,29840,22194,29840,22195,29840,29840,22196,22197, 29840,29840,29840,22198,29840,29840,22199,29840,22200,29840, 22201,29840,22202,22203,22204,22691,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22692,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22693,29840,29840, 29840,29840,29840,29840,22694,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22695, 29840,22696,29840,22697,29840,29840,22698,22699,29840,29840, 29840,22700,29840,29840,22701,29840,22702,29840,22703,29840, 22704,22705,22706, 3291,29840,22206,29840,29840,29840,29840, 29840,29840,22207,29840,29840,22208,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22209,29840,29840, 29840,29840,29840,29840,22210,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22211, 29840,22212,29840,22213,29840,29840,22214,22215,29840,29840, 29840,22216,29840,29840,22217,29840,22218,29840,22219,29840, 22220,22221,22222, 3291,29840,22206,29840,29840,29840,29840, 29840,29840,22207,29840,29840,22208,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22209,29840,22727, 29840,29840,29840,29840,22210,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22211, 29840,22212,29840,22213,29840,29840,22214,22215,29840,29840, 29840,22216,29840,29840,22217,29840,22218,29840,22219,29840, 22220,22221,22222,22728,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22730,29840,29840,29840,29840, 29840,29840,22731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22732,29840,22733, 29840,22734,29840,29840,22735,22736,29840,29840,29840,22737, 29840,29840,22738,29840,22739,29840,22740,29840,22741,22742, 22743, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22764,29840, 29840,29840,29840,29840,29840,10730,29840,29840,29840,29840, 29840,29840,10731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10732,29840,10733, 10761,10735,29840,29840,10736,10762,29840,29840,29840,10738, 29840,29840,10739,29840,10740,29840,10741,29840,10742,10743, 10744, 3291,29840,14316,29840,29840,29840,29840,29840,29840, 14317,29840,29840,14318,22767,22767,22767,22767,22768,22767, 22767,22767,22767,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14319,29840,29840,29840,29840, 29840,29840,14320,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14321,29840,14322, 29840,14323,29840,29840,14324,14325,29840,29840,29840,14326, 29840,29840,14327,29840,14328,29840,14329,29840,14330,14331, 14332,15613,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15614,29840,29840,29840,29840,22769,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15615,29840,16757,29840,29840,29840,29840, 15616,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15617,29840,15618,29840,15619, 29840,29840,15620,15621,29840,29840,29840,15622,29840,29840, 15623,29840,15624,29840,15625,29840,15626,15627,15628,15613, 21670,29840,29840,29840,29840,29840,29840,29840,29840,15614, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15615,29840,29840,29840,29840,29840,29840,15616,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15617,29840,15618,29840,15619,29840,29840, 15620,15621,29840,29840,29840,15622,29840,29840,15623,29840, 15624,29840,15625,29840,15626,15627,15628,22691,29840,29840, 29840,29840,29840,29840,29840,29840,22772,22692,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22693, 29840,29840,29840,29840,29840,29840,22694,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22695,29840,22696,22773,22697,29840,29840,22698,22699, 29840,29840,29840,22700,29840,29840,22701,29840,22702,29840, 22703,29840,22704,22705,22706, 3291,29840,14316,29840,29840, 29840,29840,29840,29840,14317,29840,29840,14318,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14319, 29840,29840,29840,29840,29840,29840,14320,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14321,29840,14322,29840,14323,29840,22779,14324,14325, 29840,29840,29840,14326,29840,29840,14327,29840,14328,29840, 14329,29840,14330,14331,14332, 3291,29840,14334,29840,29840, 29840,29840,29840,29840,14335,29840,29840,14336,22787,22787, 22787,22787,22788,22787,22787,22787,22787,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14337, 29840,29840,29840,29840,29840,29840,14338,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14339,29840,14340,29840,14341,29840,29840,14342,14343, 29840,29840,29840,14344,29840,29840,14345,29840,14346,29840, 14347,29840,14348,14349,14350,15650,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15651,29840,29840,29840,29840, 22789,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15652,29840,16799, 29840,29840,29840,29840,15653,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15654, 29840,15655,29840,15656,29840,29840,15657,15658,29840,29840, 29840,15659,29840,29840,15660,29840,15661,29840,15662,29840, 15663,15664,15665,15650,21696,29840,29840,29840,29840,29840, 29840,29840,29840,15651,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15652,29840,29840,29840,29840, 29840,29840,15653,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15654,29840,15655, 29840,15656,29840,29840,15657,15658,29840,29840,29840,15659, 29840,29840,15660,29840,15661,29840,15662,29840,15663,15664, 15665,22728,29840,29840,29840,29840,29840,29840,29840,29840, 22792,22729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22730,29840,29840,29840,29840,29840,29840, 22731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22732,29840,22733,22793,22734, 29840,29840,22735,22736,29840,29840,29840,22737,29840,29840, 22738,29840,22739,29840,22740,29840,22741,22742,22743, 3291, 29840,14334,29840,29840,29840,29840,29840,29840,14335,29840, 29840,14336,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14337,29840,29840,29840,29840,29840,29840, 14338,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14339,29840,14340,29840,14341, 29840,22799,14342,14343,29840,29840,29840,14344,29840,29840, 14345,29840,14346,29840,14347,29840,14348,14349,14350, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,22820,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22821,29840,29840, 29840,29840,22820,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,15894,29840,22824,22824,22824,22824,22824, 22824,22824,22824,22824,20480,29840,29840,29840,29840,29840, 29840,21206,21206,21206,21206,21206,21207,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21206,21206, 21206,21206,21206,21206, 8334,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21220,21220,21220,21220,21220, 21220,21220,21220,21220,19691,29840,29840,29840,29840,29840, 29840,21220,21220,21220,21220,21220,21221,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21220,21220, 21220,21220,21220,21220,21230,21230,21230,21230,21230,21230, 21230,21230,21230,19700,29840,29840,29840,29840,29840,29840, 21230,21230,21230,21230,21230,21231,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21230,21230,21230, 21230,21230,21230,21241,21241,21241,21241,21241,21241,21241, 21241,21241,19713,29840,29840,29840,29840,29840,29840,21241, 21241,21241,21241,21241,21242,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21241,21241,21241,21241, 21241,21241,21252,21252,21252,21252,21252,21252,21252,21252, 21252,19727,29840,29840,29840,29840,29840,29840,21252,21252, 21252,21252,21252,21253,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21252,21252,21252,21252,21252, 21252, 8334,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22825,22825,22825,22825,22825,22825,22825,22825, 22825,29840,29840,29840,29840,29840,29840,29840,22825,22825, 22825,22825,22825,22826,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22825,22825,22825,22825,22825, 22825,22828,22828,22828,22828,22828,22828,22828,22828,22828, 20529,29840,29840,29840,29840,29840,29840,21263,21263,21263, 21263,21263,21264,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21263,21263,21263,21263,21263,21263, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8367, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22320,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8367, 139, 139, 139, 139, 139, 139,22321,29840, 29840,29840,29840,22320,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10009, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 22830,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22831,29840,29840,29840,29840,22830,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 29840,21806, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,21296,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,22328,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,17108,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22329,29840,29840,29840,29840,22328,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,22833,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 19818,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22834,29840,29840, 29840,29840,22833,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22838, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22839,29840,29840,29840,29840,22838,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,22843,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22844,29840,29840,29840,29840, 22843,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22848,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,22849, 29840,29840,29840,29840,22848,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,22852,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22853,29840,29840,29840,29840,22852,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,22855,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22856, 29840,29840,29840,17110, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22856, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,22858,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 22859,22859,22859,22859,22859,22859,22859,22859,22859, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,22858,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139,19029, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22862,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 22863,29840,29840,29840,29840,22862,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,22865,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22866,29840,29840,29840, 17110, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22866, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,22868,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22869,29840,29840,29840,29840,22868,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,22873,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22874,29840,29840, 29840,29840,22873,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,14907,29840,21351,21351,21351,21351,21351, 21351,21351,21351,21351,19873,29840,29840,29840,29840,29840, 29840,21351,21351,21351,21351,21351,21352,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21351,21351, 21351,21351,21351,21351, 7624,29840,29840,29840,29840,29840, 29840,29840,29840,14907,29840,21388,21388,21388,21388,21388, 21388,21388,21388,21388,19922,29840,29840,29840,29840,29840, 29840,21388,21388,21388,21388,21388,21389,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,21388,21388, 21388,21388,21388,21388,21944,29840,21944,29840,29840,22451, 22451,22451,22451,22451,22451,22451,22451,22451,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 3077,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21946, 2564,29840, 21947, 2555, 2555,29840, 2555, 5712, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840, 2555, 2555,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2555, 2555, 2555, 2555, 2555, 2555, 2555,29840,29840,29840,29840,29840,21458,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 2564, 2555,21954, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,22943,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22944,29840,29840, 29840,29840,22943,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,22947,22947,22947,22947,22947,22947, 22947,22947,22947,29840,29840,29840,29840,29840,29840,29840, 22947,22947,22947,22947,22947,22948,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22947,22947,22947, 22947,22947,22947, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,21997, 139, 139,21997,21997, 21997,21997,21997,21997,21997,21997,21997, 139, 139, 139, 139, 139, 139, 139,22955,22955,22955,22955,22955,22956, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955, 139, 139, 139, 139,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22957,29840,29840, 29840,29840,22499,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 22514,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22958, 139, 139,22506, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,22500,22498, 139,22963,22964,22964, 22964,22964,22964,22964,22964,22964,22504, 139, 139, 139, 139, 139, 139,22964,22964,22964,22964,22964,22965,22500, 22500,22500,22500,22500,22500,22500,22500,22500,22500,22500, 22500,22500,22500,22500,22500,22500,22958, 139, 139,22506, 22964,22964,22964,22964,22964,22964,22500,22500,22500,22500, 22500,22500,22500,22500,22500,22500,22500,22500,22500,22500, 22500,22500,22500,22500,22500,22966,22967,22967,22967,22967, 22967,22967,22967,22967,22968,29840,29840,29840,29840,29840, 29840,22967,22967,22967,22967,22967,22969,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22967,22967, 22967,22967,22967,22967, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 22971,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22958, 139, 139,22974,22975,22975,22975,22975,22975,22975,22975,22975, 29840,29840,29840,29840,29840,29840,29840,22975,22975,22975, 22975,22975,22976,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22958,29840,29840,29840,22975,22975,22975,22975,22975,22977, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22979,29840,29840,29840,29840,22514,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22958, 139, 139,22506,10612,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20907,20907,20907,20907,20907, 20908,20907,20907,20907,20907,20907,20907,20907,20907,20907, 20907,20907,20907,20907,20907,20907,20907,20907,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10614,21523,10612,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20906,20906, 20906,20906,20906,20906,20906,20906,20906,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10613, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20909, 29840,20906,20906,20906,20906,20906,20906,29840,29840,29840, 29840,29840,29840,29840,10614,10612,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22531,22531,22531,22531, 22531,22531,22531,22531,22531,29840,22531,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10613,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22993,10614,10612,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22994,22994,22994,22994,22994,22994, 22994,22994,22994,29840,22994,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10613,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10614, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840,23021, 29840,29840, 9710, 9711,29840,29840,29840, 9712,10673,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291, 29840,12866,29840,29840,29840,29840,29840,29840, 9703,29840, 29840,23022,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12867,29840,29840,29840,29840,29840,29840, 12868,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12869,29840,12870,29840,12872, 29840,29840,12873,14133,29840,29840,29840,12875,29840,14148, 12876,29840,12877,29840,12878,29840,12879,12880,12881, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,23023,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12912, 29840,29840,29840,29840,29840,29840,12913,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12914,29840,29840,29840,29840,29840,29840,12915,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12916,29840,12917,29840,12918,29840,29840, 12919,12920,29840,29840,29840,12921,29840,29840,12922,29840, 12923,29840,12924,29840,12925,12926,12927, 3291,29840,12866, 29840,29840,29840,29840,29840,29840, 9703,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,23024,29840, 29840,12867,29840,14135,29840,29840,29840,29840,12868,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12869,29840,12870,29840,12872,29840,29840, 12873,14133,29840,29840,29840,12875,29840,29840,12876,29840, 12877,29840,12878,29840,12879,12880,12881, 3291,29840,12912, 29840,29840,29840,29840,29840,29840,12913,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12914,29840,29840,29840,29840,29840,29840,12915,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12916,29840,12917,29840,12918,29840,29840, 12919,12920,29840,29840,29840,12921,29840,29840,12922,29840, 12923,29840,12924,29840,12925,12926,12927,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23026,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,29840,14174,14175, 29840,29840,29840,14176,29840,29840,14177,29840,14178,29840, 14179,29840,14180,14181,14182,23027,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,29840,14173,29840,29840,14174,14175,29840,29840, 29840,14176,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 29840,14173,29840,29840,14174,14175,29840,29840,29840,14176, 29840,23028,14177,29840,14178,29840,14179,29840,14180,14181, 14182,15471, 3291,29840,12895,29840,29840,29840,29840,29840, 29840,12896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23031,29840,29840,12897,29840,14167,29840, 29840,29840,29840,12898,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12899,29840, 12900,29840,12901,29840,29840,12902,12903,29840,29840,29840, 12904,29840,29840,12905,29840,12906,29840,12907,29840,12908, 12909,12910, 3291,29840,12895,29840,29840,29840,29840,29840, 29840,12896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12897,29840,29840,29840, 29840,29840,29840,12898,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12899,29840, 12900,29840,12901,29840,29840,12902,12903,29840,29840,29840, 12904,29840,29840,12905,29840,23032,29840,12907,29840,12908, 12909,12910,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 23034,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,23035,14210,29840,14211, 29840,14212,29840,14213,14214,14215,15507,10695,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10696,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 23041,10699,29840,10700,29840,10701,29840,29840,10702,10703, 29840,29840,29840,10704,29840,29840,10705,29840,10706,29840, 10707,29840,10708,10709,10710,10695,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10696,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10697,29840,29840, 29840,29840,29840,29840,10698,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10699, 29840,10700,29840,10701,29840,29840,10702,10703,29840,29840, 29840,10704,29840,29840,10705,29840,23042,29840,10707,29840, 10708,10709,10710,20272,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23043,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20275,29840,29840,29840,29840, 29840,29840,20276,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20277,29840,20278, 29840,20280,29840,29840,20281,20282,29840,29840,29840,20283, 29840,29840,20284,29840,20285,29840,20286,29840,20287,20288, 20289, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22107,29840,22108, 29840,22110,29840,29840,22111,22137,29840,29840,29840,22113, 29840,22612,23044,29840,22115,29840,22116,29840,22117,22118, 22119, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,23045,29840,22108, 29840,22110,29840,29840,22111,22137,29840,29840,29840,22113, 29840,29840,22114,29840,22115,29840,22116,29840,22117,22118, 22119,22616,20272,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20274,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20275,29840,29840,29840,29840,29840, 29840,20276,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23046,29840,20278,29840, 20280,29840,29840,20281,20282,29840,29840,29840,20283,29840, 29840,20284,29840,20285,29840,20286,29840,20287,20288,20289, 21017,10695,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10696,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10697,29840,29840,29840,29840,29840,29840, 10698,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10699,29840,10700,29840,10701, 29840,29840,10702,23080,29840,29840,29840,10704,29840,29840, 10705,29840,10706,29840,10707,29840,10708,10709,10710, 3291, 29840,14249,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14251,29840,29840,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,14254,29840,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,29840, 14260,29840,23081,29840,14262,29840,14263,14264,14265,10695, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10696, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10697,29840,29840,29840,29840,29840,29840,10698,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10699,29840,11734,29840,10701,29840,29840, 10702,10703,29840,29840,29840,10704,29840,29840,10705,29840, 10706,29840,11735,29840,10708,11736,10710,10695,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10696,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10699,29840,10700,29840,10701,29840,29840,10702,10703, 29840,29840,29840,10704,11743,23082,10705,29840,10706,29840, 10707,29840,10708,10709,10710, 3291,29840,14249,29840,29840, 29840,29840,29840,29840,10694,29840,29840,14250,23083,23083, 23083,23083,23083,23083,23083,23083,23083,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14251, 29840,29840,29840,29840,29840,29840,14252,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14253,29840,14254,29840,14256,29840,29840,14257,15542, 29840,29840,29840,14259,29840,29840,14260,29840,14261,29840, 14262,29840,14263,14264,14265,20313,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23091,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20315,29840,29840, 29840,29840,29840,29840,20316,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20317, 29840,20318,29840,20319,29840,29840,20320,20321,29840,29840, 29840,20322,29840,29840,20323,29840,20324,29840,20325,29840, 20326,20327,20328,20313,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20314,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20315,29840,29840,29840,29840, 29840,29840,20316,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,23092,29840,20318, 29840,20319,29840,29840,20320,20321,29840,29840,29840,20322, 29840,29840,20323,29840,20324,29840,20325,29840,20326,20327, 20328,21056, 3291,29840,22156,29840,29840,29840,29840,29840, 29840,20312,29840,29840,22157,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22158,29840,29840,29840, 29840,29840,29840,22159,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22160,29840, 22161,29840,22163,29840,29840,22164,22186,29840,29840,29840, 22166,29840,29840,22167,29840,22168,29840,22169,29840,22170, 22171,22664, 3291,29840,22156,29840,29840,29840,29840,29840, 29840,20312,29840,29840,22157,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22158,29840,29840,29840, 29840,29840,29840,22159,29840,29840,29840,29840,29840,23103, 29840,29840,29840,29840,29840,29840,29840,29840,22160,29840, 22161,29840,22163,29840,29840,22164,22186,29840,29840,29840, 22166,29840,29840,22167,29840,22168,29840,22169,29840,22170, 22171,22172, 8137,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840, 29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8142,29840, 8143, 8921, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840, 29840, 8149,29840, 8150,23129, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840,29840,29840, 8933,29840, 8139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840, 29840, 8146,23130,29840,29840,29840, 8148,29840,29840, 8149, 29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840, 22188,29840,29840,29840,29840,29840,29840,22189,29840,29840, 22190,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22191,29840,29840,29840,29840,29840,29840,22192, 29840,29840,29840,29840,29840,23133,29840,29840,29840,29840, 29840,29840,29840,29840,22193,29840,22194,29840,22195,29840, 29840,22196,22197,29840,29840,29840,22198,29840,29840,22199, 29840,22200,29840,22201,29840,22202,22203,22204,22691,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,23134,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22695,29840,22696,29840,22697,29840,29840,22698, 22699,29840,29840,29840,22700,29840,29840,22701,29840,22702, 29840,22703,29840,22704,22705,22706,22691,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22692,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22693,29840, 29840,29840,29840,29840,29840,22694,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22695,29840,23135,29840,22697,29840,29840,22698,22699,29840, 29840,29840,22700,29840,29840,22701,29840,22702,29840,23136, 29840,22704,23137,22706,22691,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22692,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,23138,29840,29840,29840,29840,22693,29840,29840,29840, 29840,29840,29840,22694,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22695,29840, 22696,29840,22697,29840,29840,22698,22699,29840,29840,29840, 22700,29840,29840,22701,29840,22702,29840,22703,29840,22704, 22705,22706, 3291,29840,22188,29840,29840,29840,29840,29840, 29840,22189,29840,29840,22190,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22191,29840,29840,29840, 29840,29840,29840,22192,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22193,29840, 22194,29840,22195,29840,22713,22196,22197,29840,29840,29840, 22198,29840,23155,22199,29840,22200,29840,22201,29840,22202, 22203,22204, 3291,29840,22206,29840,29840,29840,29840,29840, 29840,22207,29840,29840,22208,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22209,29840,29840,29840, 29840,29840,29840,22210,29840,29840,29840,29840,29840,23174, 29840,29840,29840,29840,29840,29840,29840,29840,22211,29840, 22212,29840,22213,29840,29840,22214,22215,29840,29840,29840, 22216,29840,29840,22217,29840,22218,29840,22219,29840,22220, 22221,22222,22728,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22730,29840,23175,29840,29840,29840, 29840,22731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22732,29840,22733,29840, 22734,29840,29840,22735,22736,29840,29840,29840,22737,29840, 29840,22738,29840,22739,29840,22740,29840,22741,22742,22743, 22728,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22729,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22730,29840,29840,29840,29840,29840,29840,22731, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22732,29840,23176,29840,22734,29840, 29840,22735,22736,29840,29840,29840,22737,29840,29840,22738, 29840,22739,29840,23177,29840,22741,23178,22743,22728,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22729,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23179,29840,29840,29840,29840, 22730,29840,29840,29840,29840,29840,29840,22731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22732,29840,22733,29840,22734,29840,29840,22735, 22736,29840,29840,29840,22737,29840,29840,22738,29840,22739, 29840,22740,29840,22741,22742,22743, 3291,29840,22206,29840, 29840,29840,29840,29840,29840,22207,29840,29840,22208,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22209,29840,29840,29840,29840,29840,29840,22210,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22211,29840,22212,29840,22213,29840,22750,22214, 22215,29840,29840,29840,22216,29840,23196,22217,29840,22218, 29840,22219,29840,22220,22221,22222, 3291,29840,10728,29840, 29840,29840,29840,29840,29840, 8136,29840,29840,10729,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10730,29840,29840,29840,29840,29840,29840,10731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,23215,10732,29840,10733,29840,10735,29840,29840,10736, 10762,29840,29840,29840,10738,29840,29840,10739,29840,10740, 29840,10741,29840,10742,10743,10744, 3291,29840,10728,29840, 29840,29840,29840,29840,29840, 8136,29840,29840,10729,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10730,29840,29840,29840,29840,29840,29840,10731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10732,29840,10733,29840,10735,29840,29840,10736, 10762,29840,29840,29840,10738,29840,29840,10739,29840,23216, 29840,10741,29840,10742,10743,10744, 3291,29840,14316,29840, 29840,29840,29840,29840,29840,14317,29840,29840,14318,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14319,29840,29840,29840,29840,29840,29840,14320,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14321,29840,14322,29840,14323,29840,29840,14324, 14325,29840,29840,29840,14326,29840,29840,14327,29840,14328, 29840,14329,29840,14330,14331,14332, 3291,29840,14316,29840, 29840,29840,29840,29840,29840,14317,29840,29840,14318,29840, 29840,29840,29840,23218,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14319,29840,29840,29840,29840,29840,29840,14320,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14321,29840,14322,29840,14323,29840,29840,14324, 14325,29840,29840,29840,14326,29840,29840,14327,29840,14328, 29840,14329,29840,14330,14331,14332,15613,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15614,29840,29840,29840, 29840,23219,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15615,29840, 29840,29840,29840,29840,29840,15616,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15617,29840,15618,29840,15619,29840,29840,15620,15621,29840, 29840,29840,15622,29840,29840,15623,29840,15624,29840,15625, 29840,15626,15627,15628,15613,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15614,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15615,29840,29840,29840, 29840,29840,29840,15616,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15617,29840, 15618,29840,15619,29840,23220,15620,15621,29840,29840,29840, 15622,29840,29840,15623,29840,15624,29840,15625,29840,15626, 15627,15628, 3291,29840,14334,29840,29840,29840,29840,29840, 29840,14335,29840,29840,14336,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14337,29840,29840,29840, 29840,29840,29840,14338,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14339,29840, 14340,29840,14341,29840,29840,14342,14343,29840,29840,29840, 14344,29840,29840,14345,29840,14346,29840,14347,29840,14348, 14349,14350, 3291,29840,14334,29840,29840,29840,29840,29840, 29840,14335,29840,29840,14336,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14337,29840,29840,29840, 29840,29840,29840,14338,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14339,29840, 14340,29840,14341,29840,29840,14342,14343,29840,29840,29840, 14344,29840,29840,14345,29840,14346,29840,14347,29840,14348, 14349,14350,15650,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15651,29840,29840,29840,29840,23236,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15652,29840,29840,29840,29840,29840, 29840,15653,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15654,29840,15655,29840, 15656,29840,29840,15657,15658,29840,29840,29840,15659,29840, 29840,15660,29840,15661,29840,15662,29840,15663,15664,15665, 15650,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15651,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15652,29840,29840,29840,29840,29840,29840,15653, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15654,29840,15655,29840,15656,29840, 23237,15657,15658,29840,29840,29840,15659,29840,29840,15660, 29840,15661,29840,15662,29840,15663,15664,15665, 139, 139, 29840, 139,17930, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,22820,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139,29840, 139,17930, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22821,29840,29840,29840, 29840,22820,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139,15894,29840,21753,21753,21753,21753,21753,21753, 21753,21753,21753,20480,29840,29840,29840,29840,29840,29840, 21753,21753,21753,21753,21753,21754,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21753,21753,21753, 21753,21753,21753, 8334,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,21790,21790,21790,21790,21790,21790, 21790,21790,21790,20529,29840,29840,29840,29840,29840,29840, 21790,21790,21790,21790,21790,21791,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,21790,21790,21790, 21790,21790,21790, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22830, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139,23263, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,22831,29840,29840,29840,29840,22830,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139,23263, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,23266,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23267,29840,29840,29840,29840, 23266,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23271,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,23272, 29840,29840,29840,29840,23271,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,23276,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23277,29840,29840,29840,29840,23276,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,23281,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23282,29840,29840, 29840,29840,23281,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23286, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23287,29840,29840,29840,29840,23286,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,23290,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23291,29840,29840,29840,29840, 23290,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,23292, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23292,29840,29840,29840,29840,23294,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139,23292,23292, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23296,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,23297,29840, 29840,29840,29840,23296,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 23301,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23302,29840,29840,29840,29840,23301,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,23305,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23306,29840,29840,29840, 29840,23305,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,23307, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23307,29840,29840,29840,29840,23309,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139,23307, 23307, 139,19818, 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 140,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23371,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23372,29840,29840,29840,29840,23371,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 21997,22498, 139,21997,21997,21997,21997,21997,21997,21997, 21997,21997, 139, 139, 139, 139, 139, 139, 139,22955, 22955,22955,22955,22955,22956,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22958, 139, 139, 139,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22499,29840,29840, 23380,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,23381, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,22499,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,22500, 22498, 139,23386,23387,23387,23387,23387,23387,23387,23387, 23387,22504, 139, 139, 139, 139, 139, 139,23387,23387, 23387,23387,23387,23388,22500,22500,22500,22500,22500,22500, 22500,22500,22500,22500,22500,22500,22500,22500,22500,22500, 22500,22958, 139, 139,22506,23387,23387,23387,23387,23387, 23387,22500,22500,22500,22500,22500,22500,22500,22500,22500, 22500,22500,22500,22500,22500,22500,22500,22500,22500,22500, 139,23390,23391,23391,23391,23391,23391,23391,23391,23391, 23392,29840,29840,29840,29840,29840,29840,23391,23391,23391, 23391,23391,23393,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139,29840,29840,29840,23391,23391,23391,23391,23391,23391, 23395,23396,23396,23396,23396,23396,23396,23396,23396, 139, 29840,29840,29840,29840,29840,29840,23396,23396,23396,23396, 23396,23397,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22958, 29840,29840,29840,23396,23396,23396,23396,23396,23398, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 23400,29840,29840,29840,29840,22971,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22958, 139, 139,23402,23403,23403,23403, 23403,23403,23403,23403,23403,23404,29840,29840,29840,29840, 29840,29840,23403,23403,23403,23403,23403,23405,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23403, 23403,23403,23403,23403,23403,22500,22500,22500,22500,22500, 22500,22500,22500,22500, 139,29840,29840,29840,29840,29840, 29840,22500,22500,22500,22500,22500,22514,29840,29840,29840, 29840,29840,23410,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22500,22500, 22500,22500,22500,22500,10612,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22994,22994,22994,22994,22994, 22994,22994,22994,22994,29840,22994,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10613,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 23423,10614, 9704,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840, 29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,23448, 29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717,10671, 3291,29840,12866,29840,29840,29840,29840,29840,29840, 9703, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12867,29840,29840,29840,29840,29840, 29840,12868,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12869,29840,12870,29840, 12872,29840,29840,12873,14133,29840,29840,29840,12875,29840, 29840,12876,29840,12877,29840,12878,29840,12879,12880,12881, 9704,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23449,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840, 29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840, 12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12867,29840,29840,29840,29840,29840,29840,12868, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12869,29840,12870,29840,12872,29840, 29840,12873,14133,29840,29840,23450,12875,29840,29840,12876, 29840,12877,29840,12878,29840,12879,12880,12881,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23452,29840,29840,14169,29840, 15458,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,14174,14175,29840,29840,29840, 14176,29840,29840,14177,29840,23453,29840,14179,29840,14180, 14181,14182,14168,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14169,29840,29840,29840,29840,29840, 29840,14170,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14171,29840,14172,29840, 14173,29840,29840,15468,14175,29840,29840,29840,15469,29840, 29840,14177,29840,14178,29840,23454,29840,14180,14181,14182, 3291,29840,12895,29840,29840,29840,29840,29840,29840,12896, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12897,29840,29840,29840,29840,29840, 29840,12898,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12899,29840,12900,29840, 12901,29840,29840,14192,12903,29840,29840,29840,14193,29840, 29840,12905,29840,12906,29840,12907,29840,12908,12909,12910, 3291,29840,12895,29840,29840,29840,29840,29840,29840,12896, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12897,29840,29840,29840,29840,29840, 29840,12898,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12899,29840,12900,29840, 12901,29840,29840,12902,12903,29840,29840,23455,12904,29840, 29840,12905,29840,12906,29840,12907,29840,12908,12909,12910, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23458, 29840,29840,14202,29840,15494,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215, 3291,29840, 12912,29840,29840,29840,29840,29840,29840,12913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12914,29840,29840,29840,29840,29840,29840,12915, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12916,29840,12917,29840,12918,29840, 29840,14225,12920,29840,29840,29840,14226,29840,29840,12922, 29840,12923,29840,12924,29840,12925,12926,12927, 3291,29840, 12912,29840,29840,29840,29840,29840,29840,12913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12914,29840,29840,29840,29840,29840,29840,12915, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12916,29840,12917,29840,12918,29840, 29840,12919,12920,29840,29840,23461,12921,29840,29840,12922, 29840,12923,29840,12924,29840,12925,12926,12927,10695,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10696,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10697,29840,29840,29840,29840,29840,29840,10698,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10699,29840,10700,29840,10701,29840,29840,23464, 10703,29840,29840,29840,10704,29840,29840,10705,29840,10706, 29840,10707,29840,10708,10709,10710,10695,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10696,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10697,29840, 29840,29840,29840,29840,29840,10698,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10699,29840,10700,29840,10701,29840,29840,10702,10703,29840, 29840,29840,10704,29840,23465,10705,29840,10706,29840,10707, 29840,10708,10709,10710,20272,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20274,23466,23466,23466,23466,23466, 23466,23466,23466,23466,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20275,29840,29840,29840, 29840,29840,29840,20276,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20277,29840, 21001,29840,20280,29840,29840,20281,20282,29840,29840,29840, 20283,29840,29840,20284,29840,20285,29840,21002,29840,20287, 21003,20289, 3291,29840,22103,29840,29840,29840,29840,29840, 29840,20271,29840,29840,22104,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22105,29840,29840,29840, 29840,29840,29840,22106,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22107,29840, 22108,29840,22110,29840,29840,22590,22137,29840,29840,29840, 22591,29840,29840,22114,29840,22115,29840,22116,29840,22117, 22118,22119, 3291,29840,22103,29840,29840,29840,29840,29840, 29840,20271,29840,29840,22104,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22105,29840,29840,29840, 29840,29840,29840,22106,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22107,29840, 22108,22109,22110,29840,29840,22111,22112,29840,29840,29840, 22113,29840,29840,22114,29840,22115,29840,22116,29840,22117, 22118,22119,20272,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20274,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20275,29840,29840,29840,29840,29840, 29840,20276,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20277,29840,20278,21006, 20280,29840,29840,20281,20282,29840,29840,29840,20283,29840, 23467,20284,29840,20285,29840,20286,29840,20287,20288,20289, 3291,29840,14249,29840,29840,29840,29840,29840,29840,10694, 29840,29840,23503,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14251,29840,29840,29840,29840,29840, 29840,14252,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14253,29840,14254,29840, 14256,29840,29840,14257,15542,29840,29840,29840,14259,29840, 15560,14260,29840,14261,29840,14262,29840,14263,14264,14265, 3291,29840,14334,29840,29840,29840,29840,29840,29840,14335, 29840,29840,14336,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14337,29840,29840,29840,29840,29840, 29840,14338,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14339,29840,14340,29840, 14341,29840,29840,14342,14343,29840,29840,29840,14344,29840, 29840,14345,29840,14346,29840,14347,29840,14348,14349,14350, 3291,29840,14249,29840,29840,29840,29840,29840,29840,10694, 29840,29840,14250,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14251,29840,29840,29840,29840,29840, 29840,14252,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14253,29840,14254,29840, 14256,29840,29840,14257,15542,29840,29840,29840,14259,23505, 29840,14260,29840,14261,29840,14262,29840,14263,14264,14265, 20313,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20314,23511,23511,23511,23511,23511,23511,23511,23511,23511, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20315,29840,29840,29840,29840,29840,29840,20316, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20317,29840,21041,29840,20319,29840, 29840,20320,20321,29840,29840,29840,20322,29840,29840,20323, 29840,20324,29840,21042,29840,20326,21043,20328,20313,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20314,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20315,29840,29840,29840,29840,29840,29840,20316,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20317,29840,20318,21046,20319,29840,29840,20320, 20321,29840,29840,29840,20322,29840,23512,20323,29840,20324, 29840,20325,29840,20326,20327,20328, 3291,29840,22156,29840, 29840,29840,29840,29840,29840,20312,29840,29840,22157,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22158,29840,29840,29840,29840,29840,29840,22159,29840,29840, 29840,29840,29840,23522,29840,29840,29840,29840,29840,29840, 29840,29840,22160,29840,22161,29840,22163,29840,29840,22164, 22186,29840,29840,29840,22166,29840,29840,22167,29840,22168, 29840,22169,29840,22170,22171,22172, 3291,29840,22156,29840, 29840,29840,29840,29840,29840,20312,29840,29840,22157,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22158,29840,29840,29840,29840,29840,29840,22159,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22160,29840,22161,29840,22163,29840,29840,22164, 22186,29840,29840,29840,22166,23523,29840,22167,29840,22168, 29840,22169,29840,22170,22171,22172, 8137,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8140,29840, 29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840,23548, 8147,29840, 29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151, 29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 8139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8140,29840,29840,29840, 29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143,23549, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148, 8926,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,22188,29840,29840,29840,29840,29840, 29840,22189,29840,29840,22190,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22191,29840,29840,29840, 29840,29840,29840,22192,29840,29840,29840,29840,29840,23551, 29840,29840,29840,29840,29840,29840,29840,29840,22193,29840, 22194,29840,22195,29840,29840,22196,22197,29840,29840,29840, 22198,29840,29840,22199,29840,22200,29840,22201,29840,22202, 22203,22204,22691,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22692,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22693,29840,29840,29840,29840,29840, 29840,22694,29840,29840,29840,29840,29840,23552,29840,29840, 29840,29840,29840,29840,29840,29840,22695,29840,22696,29840, 22697,29840,29840,22698,22699,29840,29840,29840,22700,29840, 29840,22701,29840,22702,29840,22703,29840,22704,22705,22706, 22691,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22692,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22693,29840,29840,29840,29840,29840,29840,22694, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22695,29840,22696,29840,22697,29840, 23141,22698,22699,29840,29840,29840,22700,29840,23553,22701, 29840,22702,29840,22703,29840,22704,22705,22706, 3291,29840, 22188,29840,29840,29840,29840,29840,29840,22189,29840,29840, 22190,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22191,29840,29840,29840,29840,29840,29840,22192, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22193,29840,22194,29840,22195,29840, 29840,22196,22197,29840,29840,29840,22198,23572,29840,22199, 29840,22200,29840,22201,29840,22202,22203,22204, 3291,29840, 22206,29840,29840,29840,29840,29840,29840,22207,29840,29840, 22208,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22209,29840,29840,29840,29840,29840,29840,22210, 29840,29840,29840,29840,29840,23591,29840,29840,29840,29840, 29840,29840,29840,29840,22211,29840,22212,29840,22213,29840, 29840,22214,22215,29840,29840,29840,22216,29840,29840,22217, 29840,22218,29840,22219,29840,22220,22221,22222,22728,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22729,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22730,29840,29840,29840,29840,29840,29840,22731,29840,29840, 29840,29840,29840,23592,29840,29840,29840,29840,29840,29840, 29840,29840,22732,29840,22733,29840,22734,29840,29840,22735, 22736,29840,29840,29840,22737,29840,29840,22738,29840,22739, 29840,22740,29840,22741,22742,22743,22728,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22730,29840, 29840,29840,29840,29840,29840,22731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22732,29840,22733,29840,22734,29840,23182,22735,22736,29840, 29840,29840,22737,29840,23593,22738,29840,22739,29840,22740, 29840,22741,22742,22743, 3291,29840,22206,29840,29840,29840, 29840,29840,29840,22207,29840,29840,22208,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22209,29840, 29840,29840,29840,29840,29840,22210,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22211,29840,22212,29840,22213,29840,29840,22214,22215,29840, 29840,29840,22216,23612,29840,22217,29840,22218,29840,22219, 29840,22220,22221,22222, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,29840,10735,29840,29840,23631,10762,29840, 29840,29840,10738,29840,29840,10739,29840,10740,29840,10741, 29840,10742,10743,10744, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,29840,10735,29840,29840,10736,10762,29840, 29840,29840,10738,29840,23632,10739,29840,10740,29840,10741, 29840,10742,10743,10744, 3291,29840,14334,29840,29840,29840, 29840,29840,29840,14335,29840,29840,14336,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14337,29840, 29840,29840,29840,29840,29840,14338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14339,29840,14340,29840,14341,29840,29840,14342,14343,29840, 29840,29840,14344,29840,29840,14345,29840,14346,29840,14347, 29840,14348,14349,14350,15613,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15614,29840,29840,29840,29840,23634, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15615,29840,29840,29840, 29840,29840,29840,15616,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15617,29840, 15618,29840,15619,29840,29840,15620,15621,29840,29840,29840, 15622,29840,29840,15623,29840,15624,29840,15625,29840,15626, 15627,15628,15613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15614,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15615,29840,29840,29840,29840,29840, 29840,15616,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15617,29840,15618,29840, 15619,29840,29840,15620,23635,29840,29840,29840,15622,29840, 29840,15623,29840,15624,29840,15625,29840,15626,15627,15628, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,29840,15619,29840, 29840,15620,23636,29840,29840,29840,15622,29840,29840,15623, 29840,15624,29840,15625,29840,15626,15627,15628,23639,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15614,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15615,29840,29840,29840,29840,29840,29840,15616,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15617,29840,15618,29840,15619,29840,29840,15620, 15621,29840,29840,29840,15622,29840,29840,15623,29840,15624, 29840,15625,29840,15626,15627,15628,15613,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15614,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15615,29840, 29840,29840,29840,29840,29840,15616,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15617,29840,15618,29840,15619,29840,29840,15620,15621,29840, 29840,29840,15622,29840,23640,15623,29840,15624,29840,15625, 29840,15626,15627,15628,16773, 3291,29840,14316,29840,29840, 29840,29840,29840,29840,14317,29840,29840,14318,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14319, 29840,29840,29840,29840,29840,29840,14320,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14321,29840,14322,29840,14323,29840,29840,14324,14325, 29840,29840,29840,14326,23643,29840,14327,29840,14328,29840, 14329,29840,14330,14331,14332, 3291,29840,14316,29840,29840, 29840,29840,29840,29840,14317,29840,29840,14318,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14319, 29840,29840,29840,29840,29840,29840,14320,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14321,29840,14322,29840,14323,29840,29840,14324,14325, 29840,29840,29840,14326,23644,29840,14327,29840,14328,29840, 14329,29840,14330,14331,14332,15650,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15651,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15652,29840,29840, 29840,29840,29840,29840,15653,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15654, 29840,15655,29840,15656,29840,29840,15657,15658,29840,29840, 29840,15659,29840,29840,15660,29840,15661,29840,15662,29840, 15663,15664,15665,15650,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15651,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15652,29840,29840,29840,29840, 29840,29840,15653,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15654,29840,15655, 29840,15656,29840,29840,15657,23650,29840,29840,29840,15659, 29840,29840,15660,29840,15661,29840,15662,29840,15663,15664, 15665,15650,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15651,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15652,29840,29840,29840,29840,29840,29840, 15653,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15654,29840,15655,29840,15656, 29840,29840,15657,23651,29840,29840,29840,15659,29840,29840, 15660,29840,15661,29840,15662,29840,15663,15664,15665,23654, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15651, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15652,29840,29840,29840,29840,29840,29840,15653,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15654,29840,15655,29840,15656,29840,29840, 15657,15658,29840,29840,29840,15659,29840,29840,15660,29840, 15661,29840,15662,29840,15663,15664,15665,15650,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15651,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15652, 29840,29840,29840,29840,29840,29840,15653,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15654,29840,15655,29840,15656,29840,29840,15657,15658, 29840,29840,29840,15659,29840,23655,15660,29840,15661,29840, 15662,29840,15663,15664,15665,16815, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,22830,29840,29840,29840,29840,29840,23675,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139,23263, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23677, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23678,29840,29840,29840,29840,23677,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,23682,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23683,29840,29840,29840,29840, 23682,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23687,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,23688, 29840,29840,29840,29840,23687,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,23692,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23693,29840,29840,29840,29840,23692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,23697,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23698,29840,29840, 29840,29840,23697,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23702, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23703,29840,29840,29840,29840,23702,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,23706,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23707,29840,29840,29840,29840,29840, 29840,17110, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23707, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23709, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23710,29840,29840,29840,29840,23709,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,23712,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23713,29840,29840,29840,29840, 23712,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,23718,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,23719, 29840,29840,29840,29840,23718,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,23723,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23724,29840,29840,29840,29840,23723,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,23727,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23728,29840,29840,29840, 29840,29840,29840,17110, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23728, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,23730,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23731,29840,29840,29840,29840,23730,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,23793,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,23794,29840, 29840,29840,29840,23793,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139,23797,23797,23797,23797,23797, 23797,23797,23797,23797,29840,29840,29840,29840,29840,29840, 29840,23797,23797,23797,23797,23797,23798,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,23797,23797, 23797,23797,23797,23797, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,21997,22498, 139,21997, 21997,21997,21997,21997,21997,21997,21997,21997, 139, 139, 139, 139, 139, 139, 139,22955,22955,22955,22955,22955, 22956,22955,22955,23802,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22958, 139, 139, 139,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 22498, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,22499,29840,29840,29840,29840,29840,23803, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,23381, 139, 22959,22959,22959,22959,22959,22959,22959,22959,22959, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,22499,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22504, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22514, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22958, 139, 139, 22506, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22508, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22514,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22958, 139, 139,22506,23808, 23809,23809,23809,23809,23809,23809,23809,23809,23392,29840, 29840,29840,29840,29840,29840,23809,23809,23809,23809,23809, 23810,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23809,23809,23809,23809,23809,23809,23811,23812, 23812,23812,23812,23812,23812,23812,23812,23813,29840,29840, 29840,29840,29840,29840,23812,23812,23812,23812,23812,23814, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,23812,23812,23812,23812,23812,23812,23817,23818,23818, 23818,23818,23818,23818,23818,23818,23819,29840,29840,29840, 29840,29840,29840,23818,23818,23818,23818,23818,23820,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22958,29840,29840,29840, 23818,23818,23818,23818,23818,23818, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,22971,29840,29840,23825,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22958, 139, 139,23826,23827,23827,23827,23827,23827,23827, 23827,23827,23404,29840,29840,29840,29840,29840,29840,23827, 23827,23827,23827,23827,23828,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23827,23827,23827,23827, 23827,23827,23829,23830,23830,23830,23830,23830,23830,23830, 23830,29840,29840,29840,29840,29840,29840,29840,23830,23830, 23830,23830,23830,23831,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23830,23830,23830,23830,23830, 23832, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840,23883,29840, 9716, 9717, 9718, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9707,29840,23884,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866, 29840,29840,29840,29840,29840,29840, 9703,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12867,29840,29840,29840,29840,29840,29840,12868,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12869,29840,12870,29840,12872,29840,29840, 12873,23885,29840,29840,29840,12875,29840,29840,12876,29840, 12877,29840,12878,29840,12879,12880,12881, 3291,29840,12866, 29840,29840,29840,29840,29840,29840, 9703,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12867,29840,29840,29840,29840,29840,29840,12868,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12869,29840,12870,29840,12872,29840,29840, 12873,14133,29840,29840,29840,12875,14143,23886,12876,29840, 12877,29840,12878,29840,12879,12880,12881,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,29840,14174,14175, 29840,29840,23887,14176,29840,29840,14177,29840,14178,29840, 14179,29840,14180,14181,14182,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23888,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,29840,14173,29840,29840,14174,14175,29840,29840, 29840,14176,29840,15470,14177,29840,14178,29840,14179,29840, 14180,14181,14182, 3291,29840,12895,29840,29840,29840,29840, 29840,29840,12896,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12897,29840,29840, 29840,29840,29840,29840,12898,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12899, 29840,12900,29840,12901,29840,29840,12902,23890,29840,29840, 29840,12904,29840,29840,12905,29840,12906,29840,12907,29840, 12908,12909,12910, 3291,29840,12895,29840,29840,29840,29840, 29840,29840,12896,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12897,29840,29840, 29840,29840,29840,29840,12898,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12899, 29840,12900,29840,12901,29840,29840,12902,12903,29840,29840, 29840,12904,29840,29840,12905,29840,12906,29840,12907,29840, 12908,12909,12910,14201,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14202,29840,29840,29840,29840, 29840,29840,14203,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14204,29840,14205, 29840,14206,29840,29840,14207,14208,29840,29840,23892,14209, 29840,29840,14210,29840,14211,29840,14212,29840,14213,14214, 14215,14201,29840,29840,29840,29840,29840,29840,29840,29840, 29840,23893,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14202,29840,29840,29840,29840,29840,29840, 14203,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14204,29840,14205,29840,14206, 29840,29840,14207,14208,29840,29840,29840,14209,29840,15506, 14210,29840,14211,29840,14212,29840,14213,14214,14215, 3291, 29840,12912,29840,29840,29840,29840,29840,29840,12913,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12914,29840,29840,29840,29840,29840,29840, 12915,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12916,29840,12917,29840,12918, 29840,29840,12919,23895,29840,29840,29840,12921,29840,29840, 12922,29840,12923,29840,12924,29840,12925,12926,12927, 3291, 29840,12912,29840,29840,29840,29840,29840,29840,12913,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12914,29840,29840,29840,29840,29840,29840, 12915,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12916,29840,12917,29840,12918, 29840,29840,12919,12920,29840,29840,29840,12921,29840,29840, 12922,29840,12923,29840,12924,29840,12925,12926,12927,10695, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10696, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10697,29840,29840,29840,29840,29840,29840,10698,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23897,29840,10700,29840,10701,29840,29840, 10702,10703,29840,29840,29840,10704,29840,11742,10705,29840, 10706,29840,10707,29840,10708,10709,10710,10695,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10696,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10699,29840,10700,29840,10701,29840,29840,10702,10703, 29840,29840,29840,10704,29840,29840,10705,29840,10706,29840, 10707,12946,23898,10709,10710,20272,23899,29840,29840,29840, 29840,29840,29840,29840,23900,20274,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20275,29840,29840, 29840,29840,29840,29840,20276,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20277, 29840,20278,29840,20280,29840,29840,20281,20282,29840,29840, 29840,20283,29840,29840,20284,29840,20285,29840,20286,29840, 20287,20288,20289,20272,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23901,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20275,29840,29840,29840,29840, 29840,29840,20276,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20277,29840,20278, 29840,20280,29840,29840,20281,20282,29840,29840,29840,20283, 29840,29840,20284,29840,20285,29840,20286,29840,20287,20288, 20289,20272,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20274,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23902,29840,29840,29840, 29840,29840,29840,20275,29840,29840,29840,29840,29840,29840, 20276,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20277,29840,21001,29840,20280, 29840,29840,20281,20282,29840,29840,29840,20283,29840,29840, 20284,29840,20285,29840,21002,29840,20287,21003,20289, 3291, 29840,22103,29840,29840,29840,29840,29840,29840,20271,29840, 29840,22104,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22105,29840,29840,29840,29840,29840,29840, 22106,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22107,29840,22108,22136,22110, 29840,29840,22111,22137,29840,29840,29840,22113,29840,29840, 22114,29840,22115,29840,22116,29840,22117,22118,22119, 3291, 29840,22103,29840,29840,29840,29840,29840,29840,20271,29840, 29840,23905,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22105,29840,29840,29840,29840,29840,29840, 22106,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22107,29840,22108,22136,22110, 29840,29840,22111,23906,29840,29840,29840,22113,29840,29840, 22114,29840,22115,29840,22116,29840,22117,22118,22119, 3291, 29840,14249,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14251,29840,29840,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,15545,29840,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,29840, 14260,29840,14261,29840,15546,29840,14263,15547,14265, 3291, 29840,14249,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23935,29840,29840,29840, 29840,29840,29840,14251,29840,29840,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,14254,16709,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,29840, 14260,29840,14261,29840,14262,29840,14263,14264,14265,20313, 23940,29840,29840,29840,29840,29840,29840,29840,23941,20314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20315,29840,29840,29840,29840,29840,29840,20316,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20317,29840,20318,29840,20319,29840,29840, 20320,20321,29840,29840,29840,20322,29840,29840,20323,29840, 20324,29840,20325,29840,20326,20327,20328,20313,29840,29840, 29840,29840,29840,29840,29840,29840,29840,23942,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20315, 29840,29840,29840,29840,29840,29840,20316,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20317,29840,20318,29840,20319,29840,29840,20320,20321, 29840,29840,29840,20322,29840,29840,20323,29840,20324,29840, 20325,29840,20326,20327,20328,20313,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20314,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 23943,29840,29840,29840,29840,29840,29840,20315,29840,29840, 29840,29840,29840,29840,20316,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20317, 29840,21041,29840,20319,29840,29840,20320,20321,29840,29840, 29840,20322,29840,29840,20323,29840,20324,29840,21042,29840, 20326,21043,20328, 3291,29840,22156,29840,29840,29840,29840, 29840,29840,20312,29840,29840,22157,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22158,29840,29840, 29840,29840,29840,29840,22159,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22160, 29840,22161,23114,22163,29840,29840,22164,22186,29840,29840, 29840,22166,29840,29840,22167,29840,22168,29840,22169,29840, 22170,22171,22172, 3291,29840,22156,29840,29840,29840,29840, 29840,29840,20312,29840,29840,23946,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22158,29840,29840, 29840,29840,29840,29840,22159,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22160, 29840,22161,23114,22163,29840,29840,22164,23947,29840,29840, 29840,22166,29840,29840,22167,29840,22168,29840,22169,29840, 22170,22171,22172, 8137,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23975,29840,29840,29840, 29840,29840,29840,29840,29840, 8140,29840,29840,29840,29840, 29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8142,29840, 8143, 29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148, 29840, 8925, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8142,29840, 8143,29840,23976, 29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137, 23977,29840,29840,29840,29840,29840,29840,29840,29840, 8139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8140,29840, 8914,29840,29840,29840,29840, 8141,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,22188, 29840,29840,29840,29840,29840,29840,22189,29840,29840,22190, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22191,29840,29840,29840,29840,29840,29840,22192,29840, 29840,23978,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22193,29840,22194,29840,22195,29840,29840, 22196,22197,29840,29840,29840,22198,29840,29840,22199,29840, 22200,29840,22201,29840,22202,22203,22204,22691,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22692,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22693, 29840,29840,29840,29840,29840,29840,22694,29840,29840,29840, 29840,29840,23979,29840,29840,29840,29840,29840,29840,29840, 29840,22695,29840,22696,29840,22697,29840,29840,22698,22699, 29840,29840,29840,22700,29840,29840,22701,29840,22702,29840, 22703,29840,22704,22705,22706,22691,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22692,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22693,29840,29840, 29840,29840,29840,29840,22694,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22695, 29840,22696,29840,22697,29840,29840,22698,22699,29840,29840, 29840,22700,23980,29840,22701,29840,22702,29840,22703,29840, 22704,22705,22706, 3291,29840,22188,29840,29840,29840,29840, 29840,29840,22189,29840,29840,22190,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22191,29840,29840, 29840,29840,29840,29840,22192,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22193, 29840,22194,22712,22195,29840,29840,22196,23165,29840,29840, 29840,22198,29840,29840,22199,29840,22200,29840,22201,29840, 22202,22203,22204, 3291,29840,22206,29840,29840,29840,29840, 29840,29840,22207,29840,29840,22208,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22209,29840,29840, 29840,29840,29840,29840,22210,29840,29840,24017,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22211, 29840,22212,29840,22213,29840,29840,22214,22215,29840,29840, 29840,22216,29840,29840,22217,29840,22218,29840,22219,29840, 22220,22221,22222,22728,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22730,29840,29840,29840,29840, 29840,29840,22731,29840,29840,29840,29840,29840,24018,29840, 29840,29840,29840,29840,29840,29840,29840,22732,29840,22733, 29840,22734,29840,29840,22735,22736,29840,29840,29840,22737, 29840,29840,22738,29840,22739,29840,22740,29840,22741,22742, 22743,22728,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22730,29840,29840,29840,29840,29840,29840, 22731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22732,29840,22733,29840,22734, 29840,29840,22735,22736,29840,29840,29840,22737,24019,29840, 22738,29840,22739,29840,22740,29840,22741,22742,22743, 3291, 29840,22206,29840,29840,29840,29840,29840,29840,22207,29840, 29840,22208,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22209,29840,29840,29840,29840,29840,29840, 22210,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22211,29840,22212,22749,22213, 29840,29840,22214,23206,29840,29840,29840,22216,29840,29840, 22217,29840,22218,29840,22219,29840,22220,22221,22222, 3291, 29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840, 29840,10729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10730,29840,29840,29840,29840,29840,29840, 10731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24056,29840,10733,29840,10735, 29840,29840,10736,10762,29840,29840,29840,10738,29840,11779, 10739,29840,10740,29840,10741,29840,10742,10743,10744, 3291, 29840,10728,29840,29840,29840,29840,29840,29840, 8136,29840, 29840,10729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10730,29840,29840,29840,29840,29840,29840, 10731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10732,29840,10733,29840,10735, 29840,29840,10736,10762,29840,29840,29840,10738,29840,29840, 10739,29840,10740,29840,10741,12979,24057,10743,10744,15650, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15651, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15652,29840,29840,29840,29840,29840,29840,15653,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15654,29840,15655,29840,15656,29840,29840, 15657,15658,29840,29840,29840,15659,29840,29840,15660,29840, 15661,29840,15662,29840,15663,15664,15665,15613,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15614,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15615, 29840,29840,29840,29840,29840,29840,15616,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15617,29840,15618,29840,15619,29840,29840,15620,15621, 29840,29840,29840,15622,24059,29840,15623,29840,15624,29840, 15625,29840,15626,15627,15628,15613,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15614,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15615,29840,29840, 29840,29840,29840,29840,15616,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15617, 29840,15618,29840,15619,29840,29840,15620,15621,29840,29840, 29840,15622,24060,29840,15623,29840,15624,29840,15625,29840, 15626,15627,15628, 3291,29840,14316,29840,29840,29840,29840, 29840,29840,14317,29840,29840,14318,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14319,29840,29840, 29840,29840,29840,29840,14320,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14321, 29840,14322,29840,14323,29840,29840,15641,14325,29840,29840, 29840,15642,29840,29840,14327,29840,14328,29840,14329,29840, 14330,14331,14332, 3291,29840,14316,29840,29840,29840,29840, 29840,29840,14317,29840,29840,14318,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24066,29840,29840,29840,29840,29840,29840,14319,29840,29840, 29840,29840,29840,29840,14320,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14321, 29840,14322,16788,14323,29840,29840,14324,14325,29840,29840, 29840,14326,29840,29840,14327,29840,14328,29840,14329,29840, 14330,14331,14332,15650,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15651,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15652,29840,29840,29840,29840, 29840,29840,15653,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15654,29840,15655, 29840,15656,29840,29840,15657,15658,29840,29840,29840,15659, 24072,29840,15660,29840,15661,29840,15662,29840,15663,15664, 15665, 3291,29840,14334,29840,29840,29840,29840,29840,29840, 14335,29840,29840,14336,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14337,29840,29840,29840,29840, 29840,29840,14338,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14339,29840,14340, 29840,14341,29840,29840,15678,14343,29840,29840,29840,15679, 29840,29840,14345,29840,14346,29840,14347,29840,14348,14349, 14350, 3291,29840,14334,29840,29840,29840,29840,29840,29840, 14335,29840,29840,14336,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,24079,29840, 29840,29840,29840,29840,29840,14337,29840,29840,29840,29840, 29840,29840,14338,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14339,29840,14340, 16830,14341,29840,29840,14342,14343,29840,29840,29840,14344, 29840,29840,14345,29840,14346,29840,14347,29840,14348,14349, 14350, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22830,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139,23263, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139, 139, 139, 29840, 139,19818,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,23677,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139,19818, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,23678,29840,29840,29840, 29840,23677,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,24095,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 24096,29840,29840,29840,29840,24095,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,24100,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,24101,29840,29840,29840,29840,24100, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,24105,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,24106,29840, 29840,29840,29840,24105,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139,23744,23323,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,24120,24120,24120,24120, 24120,24120,24120,24120,24120,29840,24120,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,23324, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,24162,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,24163,29840,29840, 29840,29840,24162,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,24166,24166,24166,24166,24166,24166, 24166,24166,24166,29840,29840,29840,29840,29840,29840,29840, 24166,24166,24166,24166,24166,24167,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24166,24166,24166, 24166,24166,24166, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,21997,22498, 139,21997,21997, 21997,21997,21997,21997,21997,21997,21997, 139, 139, 139, 139, 139, 139, 139,22955,22955,22955,22955,22955,22956, 22955,22955,22955,22955,22955,24172,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22958, 139, 139, 139,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,22499,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,24173, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 22499,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,24178,24179,24179,24179,24179,24179,24179,24179, 24179,23392,29840,29840,29840,29840,29840,29840,24179,24179, 24179,24179,24179,24180,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24179,24179,24179,24179,24179, 24179,24182,24183,24183,24183,24183,24183,24183,24183,24183, 24184,29840,29840,29840,29840,29840,29840,24183,24183,24183, 24183,24183,24185,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24183,24183,24183,24183,24183,24183, 24187,24188,24188,24188,24188,24188,24188,24188,24188,29840, 29840,29840,29840,29840,29840,29840,24188,24188,24188,24188, 24188,24189,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22958, 29840,29840,29840,24188,24188,24188,24188,24188,24190,24193, 24194,24194,24194,24194,24194,24194,24194,24194,23819,29840, 29840,29840,29840,29840,29840,24194,24194,24194,24194,24194, 24195,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24194,24194,24194,24194,24194,24194,24196,24197, 24197,24197,24197,24197,24197,24197,24197,29840,29840,29840, 29840,29840,29840,29840,24197,24197,24197,24197,24197,24198, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24197,24197,24197,24197,24197,24199, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,22971,29840,29840,29840,29840,29840,24204, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22958, 139, 139,24205,24206,24206,24206,24206,24206, 24206,24206,24206,23404,29840,29840,29840,29840,29840,29840, 24206,24206,24206,24206,24206,24207,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24206,24206,24206, 24206,24206,24206,24209,24210,24210,24210,24210,24210,24210, 24210,24210,24211,29840,29840,29840,29840,29840,29840,24210, 24210,24210,24210,24210,24212,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,24210,24210,24210,24210, 24210,24210, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22514,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22958, 139, 139,22506, 29840,29840,29840,29840,29840,29840,29840,24219,24250,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 140,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,24262,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718,10679, 9704,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705, 29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9707,29840, 9708,29840, 9709,29840,10670, 9710, 9711, 29840,29840,29840, 9712,29840,24263, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840,29840, 29840,29840,29840,29840, 9703,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12867, 29840,29840,29840,29840,29840,29840,12868,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12869,29840,12870,29840,24264,29840,29840,12873,14133, 29840,29840,29840,12875,14143,29840,12876,29840,12877,29840, 12878,29840,12879,12880,12881, 3291,29840,12866,29840,29840, 29840,29840,29840,29840, 9703,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12867, 29840,29840,29840,29840,29840,29840,12868,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12869,29840,12870,29840,12872,29840,29840,12873,14133, 29840,29840,29840,12875,24265,29840,12876,29840,12877,29840, 12878,29840,12879,12880,12881,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,29840,14173,29840,29840,14174,24266,29840,29840, 29840,14176,29840,29840,14177,29840,14178,29840,14179,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,14172, 29840,14173,29840,29840,14174,14175,29840,29840,29840,14176, 29840,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,29840,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,15465,24267, 14177,29840,14178,29840,14179,29840,14180,14181,14182, 3291, 29840,12895,29840,29840,29840,29840,29840,29840,12896,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12897,29840,29840,29840,29840,29840,29840, 12898,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12899,29840,12900,29840,24268, 29840,29840,12902,12903,29840,29840,29840,12904,14189,29840, 12905,29840,12906,29840,12907,29840,12908,12909,12910, 3291, 29840,12895,29840,29840,29840,29840,29840,29840,12896,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12897,29840,29840,29840,29840,29840,29840, 12898,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12899,29840,12900,29840,12901, 29840,29840,12902,12903,29840,29840,29840,12904,24269,29840, 12905,29840,12906,29840,12907,29840,12908,12909,12910,14201, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14202,29840,29840,29840,29840,29840,29840,14203,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14204,29840,14205,29840,14206,29840,29840, 14207,24270,29840,29840,29840,14209,29840,29840,14210,29840, 14211,29840,14212,29840,14213,14214,14215,14201,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14202, 29840,29840,29840,29840,29840,29840,14203,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14204,29840,14205,29840,14206,29840,29840,14207,14208, 29840,29840,29840,14209,29840,29840,14210,29840,14211,29840, 14212,29840,14213,14214,14215,14201,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14202,29840,29840, 29840,29840,29840,29840,14203,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14204, 29840,14205,29840,14206,29840,29840,14207,14208,29840,29840, 29840,14209,15501,24271,14210,29840,14211,29840,14212,29840, 14213,14214,14215, 3291,29840,12912,29840,29840,29840,29840, 29840,29840,12913,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12914,29840,29840, 29840,29840,29840,29840,12915,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12916, 29840,12917,29840,24272,29840,29840,12919,12920,29840,29840, 29840,12921,14222,29840,12922,29840,12923,29840,12924,29840, 12925,12926,12927, 3291,29840,12912,29840,29840,29840,29840, 29840,29840,12913,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12914,29840,29840, 29840,29840,29840,29840,12915,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12916, 29840,12917,29840,12918,29840,29840,12919,12920,29840,29840, 29840,12921,24273,29840,12922,29840,12923,29840,12924,29840, 12925,12926,12927,10695,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10696,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10697,29840,29840,29840,29840, 29840,29840,10698,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10699,29840,10700, 11739,10701,29840,29840,10702,10703,29840,29840,29840,10704, 29840,29840,10705,29840,10706,24274,10707,29840,10708,10709, 10710,10695,29840,29840,29840,29840,29840,29840,29840,11750, 29840,10696,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10697,29840,29840,29840,29840,29840,29840, 10698,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10699,29840,10700,29840,10701, 29840,29840,10702,24275,29840,29840,29840,10704,29840,29840, 10705,29840,10706,29840,10707,29840,10708,10709,10710,24276, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20274, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20275,29840,29840,29840,29840,29840,29840,20276,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20277,29840,20278,29840,20280,29840,29840, 20281,20282,29840,29840,29840,20283,29840,29840,20284,29840, 20285,29840,20286,29840,20287,20288,20289,20272,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20274,24277,24277, 24277,24277,24277,24277,24277,24277,24277,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20275, 29840,29840,29840,29840,29840,29840,20276,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20277,29840,20278,29840,20280,29840,29840,20281,20282, 29840,29840,29840,20283,29840,29840,20284,29840,20285,29840, 20286,29840,20287,20288,20289,20271,20271,20271,20271,20271, 20271,20271,20271,20271,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 21001,29840,29840,29840,29840,29840,29840,29840,29840,24278, 29840,29840,29840,29840,29840,29840,29840,21002,29840,29840, 21003, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22107,29840,22604, 29840,22110,29840,29840,22111,22137,29840,29840,29840,22113, 29840,29840,22114,29840,22115,29840,22605,29840,22117,22606, 22119, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22107,29840,22108, 29840,22110,29840,29840,22111,22137,29840,29840,29840,22113, 22614,29840,22114,29840,22115,24282,22116,29840,22117,22118, 22119,24301,23052,20271,20271,20271,20271,20271,20271,20271, 20271,20271,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20279, 29840,29840,29840,29840,23053, 3291,29840,14249,29840,29840, 29840,29840,29840,29840,10694,29840,29840,14250,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14251, 29840,29840,29840,29840,29840,29840,14252,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24306,14253,29840,14254,29840,14256,29840,29840,14257,15542, 29840,29840,29840,14259,29840,29840,14260,29840,14261,29840, 14262,29840,14263,14264,14265, 3291,29840,14249,29840,29840, 29840,29840,29840,29840,10694,29840,29840,14250,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14251, 29840,29840,29840,29840,29840,29840,14252,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14253,29840,14254,29840,14256,29840,29840,14257,15542, 29840,29840,29840,14259,29840,29840,14260,29840,24307,29840, 14262,29840,14263,14264,14265,24311,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20314,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20315,29840,29840, 29840,29840,29840,29840,20316,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20317, 29840,20318,29840,20319,29840,29840,20320,20321,29840,29840, 29840,20322,29840,29840,20323,29840,20324,29840,20325,29840, 20326,20327,20328,20313,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20314,24312,24312,24312,24312,24312,24312, 24312,24312,24312,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20315,29840,29840,29840,29840, 29840,29840,20316,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20317,29840,20318, 29840,20319,29840,29840,20320,20321,29840,29840,29840,20322, 29840,29840,20323,29840,20324,29840,20325,29840,20326,20327, 20328,20312,20312,20312,20312,20312,20312,20312,20312,20312, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,21041,29840,29840,29840, 29840,29840,29840,29840,29840,24313,29840,29840,29840,29840, 29840,29840,29840,21042,29840,29840,21043, 3291,29840,22156, 29840,29840,29840,29840,29840,29840,20312,29840,29840,22157, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22158,29840,29840,29840,29840,29840,29840,22159,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22160,29840,22657,29840,22163,29840,29840, 22164,22186,29840,29840,29840,22166,29840,29840,22167,29840, 22168,29840,22658,29840,22170,22659,22172, 3291,29840,22156, 29840,29840,29840,29840,29840,29840,20312,29840,29840,22157, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22158,29840,29840,29840,29840,29840,29840,22159,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22160,29840,22161,29840,22163,29840,29840, 22164,22186,29840,29840,29840,22166,22667,29840,22167,29840, 22168,24317,22169,29840,22170,22171,22172,24337,23098,20312, 20312,20312,20312,20312,20312,20312,20312,20312,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,21646,29840,29840,29840,29840, 23099, 8137,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145, 29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 8137, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8140,29840,29840,29840,29840,29840,29840, 8141,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840,29840, 8149,29840, 24340,29840, 8151,29840, 8152, 8153, 8924, 8137,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 8139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 8140, 29840,29840,29840,29840,29840,29840, 8141,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147, 29840,29840,29840, 8148,29840,29840, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,22188,29840,29840, 29840,29840,29840,29840,22189,29840,29840,24341,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22191, 29840,29840,29840,29840,29840,29840,22192,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22193,29840,22194,29840,22195,29840,29840,22196,22197, 29840,29840,29840,22198,29840,29840,22199,29840,22200,29840, 22201,29840,22202,22203,22204,22691,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22692,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22693,29840,29840, 29840,29840,29840,29840,22694,29840,29840,24342,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22695, 29840,22696,29840,22697,29840,29840,22698,22699,29840,29840, 29840,22700,29840,29840,22701,29840,22702,29840,22703,29840, 22704,22705,22706,22691,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22692,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22693,29840,29840,29840,29840, 29840,29840,22694,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22695,29840,22696, 29840,22697,29840,29840,22698,22699,29840,29840,29840,22700, 29840,29840,22701,29840,22702,29840,24343,29840,22704,22705, 22706,22691,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22692,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22693,29840,29840,29840,29840,29840,29840, 22694,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22695,29840,22696,29840,22697, 29840,29840,23147,22699,29840,29840,29840,23148,29840,24344, 22701,29840,22702,29840,22703,29840,22704,22705,22706, 3291, 29840,22188,29840,29840,29840,29840,29840,29840,22189,29840, 29840,22190,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22191,29840,29840,29840,29840,29840,29840, 22192,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22193,29840,22194,29840,22195, 29840,29840,22196,22197,29840,29840,29840,22198,29840,29840, 22199,29840,22200,29840,22201,29840,22202,22203,22204, 3291, 29840,22206,29840,29840,29840,29840,29840,29840,22207,29840, 29840,24377,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22209,29840,29840,29840,29840,29840,29840, 22210,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22211,29840,22212,29840,22213, 29840,29840,22214,22215,29840,29840,29840,22216,29840,29840, 22217,29840,22218,29840,22219,29840,22220,22221,22222,22728, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22729, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22730,29840,29840,29840,29840,29840,29840,22731,29840, 29840,24378,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22732,29840,22733,29840,22734,29840,29840, 22735,22736,29840,29840,29840,22737,29840,29840,22738,29840, 22739,29840,22740,29840,22741,22742,22743,22728,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22729,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22730, 29840,29840,29840,29840,29840,29840,22731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22732,29840,22733,29840,22734,29840,29840,22735,22736, 29840,29840,29840,22737,29840,29840,22738,29840,22739,29840, 24379,29840,22741,22742,22743,22728,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22730,29840,29840, 29840,29840,29840,29840,22731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22732, 29840,22733,29840,22734,29840,29840,23188,22736,29840,29840, 29840,23189,29840,24380,22738,29840,22739,29840,22740,29840, 22741,22742,22743, 3291,29840,22206,29840,29840,29840,29840, 29840,29840,22207,29840,29840,22208,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22209,29840,29840, 29840,29840,29840,29840,22210,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22211, 29840,22212,29840,22213,29840,29840,22214,22215,29840,29840, 29840,22216,29840,29840,22217,29840,22218,29840,22219,29840, 22220,22221,22222, 3291,29840,10728,29840,29840,29840,29840, 29840,29840, 8136,29840,29840,10729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10730,29840,29840, 29840,29840,29840,29840,10731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10732, 29840,10733,10734,10735,29840,29840,10736,10762,29840,29840, 29840,10738,29840,29840,10739,29840,10740,24413,10741,29840, 10742,10743,10744, 3291,29840,10728,29840,29840,29840,29840, 29840,29840, 8136,11786,29840,10729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10730,29840,29840, 29840,29840,29840,29840,10731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10732, 29840,10733,29840,10735,29840,29840,10736,24414,29840,29840, 29840,10738,29840,29840,10739,29840,10740,29840,10741,29840, 10742,10743,10744,15613,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15614,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,24416,29840, 29840,29840,29840,29840,29840,15615,29840,29840,29840,29840, 29840,29840,15616,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15617,29840,15618, 17810,15619,29840,29840,15620,15621,29840,29840,29840,15622, 29840,29840,15623,29840,15624,29840,15625,29840,15626,15627, 15628,15613,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15614,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15615,29840,29840,29840,29840,29840,29840, 15616,29840,29840,24417,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15617,29840,15618,17810,15619, 29840,29840,15620,15621,29840,29840,29840,15622,29840,29840, 15623,29840,15624,29840,15625,29840,15626,15627,15628, 3291, 29840,14316,29840,29840,29840,29840,29840,29840,14317,29840, 29840,14318,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14319,29840,29840,29840,29840,29840,29840, 14320,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24422,14321,29840,14322,29840,14323, 29840,29840,14324,14325,29840,29840,29840,14326,29840,29840, 14327,29840,14328,29840,14329,29840,14330,14331,14332, 3291, 29840,14316,29840,29840,29840,29840,29840,29840,14317,29840, 29840,14318,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14319,29840,29840,29840,29840,29840,29840, 14320,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14321,29840,14322,29840,14323, 29840,29840,14324,14325,29840,29840,29840,14326,29840,29840, 14327,29840,24423,29840,14329,29840,14330,14331,14332,15650, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15651, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24427,29840,29840,29840,29840,29840, 29840,15652,29840,29840,29840,29840,29840,29840,15653,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15654,29840,15655,17852,15656,29840,29840, 15657,15658,29840,29840,29840,15659,29840,29840,15660,29840, 15661,29840,15662,29840,15663,15664,15665,15650,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15651,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15652, 29840,29840,29840,29840,29840,29840,15653,29840,29840,24428, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15654,29840,15655,17852,15656,29840,29840,15657,15658, 29840,29840,29840,15659,29840,29840,15660,29840,15661,29840, 15662,29840,15663,15664,15665, 3291,29840,14334,29840,29840, 29840,29840,29840,29840,14335,29840,29840,14336,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14337, 29840,29840,29840,29840,29840,29840,14338,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24433,14339,29840,14340,29840,14341,29840,29840,14342,14343, 29840,29840,29840,14344,29840,29840,14345,29840,14346,29840, 14347,29840,14348,14349,14350, 3291,29840,14334,29840,29840, 29840,29840,29840,29840,14335,29840,29840,14336,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14337, 29840,29840,29840,29840,29840,29840,14338,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14339,29840,14340,29840,14341,29840,29840,14342,14343, 29840,29840,29840,14344,29840,29840,14345,29840,24434,29840, 14347,29840,14348,14349,14350, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,24448,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,24449,29840,29840,29840,29840,24448,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139,23744, 23323,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24460,24460,24460,24460,24460,24460,24460,24460,24460, 29840,24460,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23324,23744,23323,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24120,24120,24120,24120,24120, 24120,24120,24120,24120,29840,24120,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23324,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24461, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,24499,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 24500,29840,29840,29840,29840,24499,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139,21997, 22498, 139,21997,21997,21997,21997,21997,21997,21997,21997, 21997, 139, 139, 139, 139, 139, 139, 139,22955,22955, 22955,22955,22955,22956,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22958, 139, 139, 139,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,21997,24173, 139,23804,23804,23804,23804,23804, 23804,23804,23804,23804, 139, 139, 139, 139, 139, 139, 139,21997,21997,21997,21997,21997,22499,21997,21997,21997, 21997,21997,21997,21997,21997,21997,21997,21997,21997,21997, 21997,21997,21997,21997, 139, 139, 139, 139,21997,21997, 21997,21997,21997,21997,21997,21997,21997,21997,21997,21997, 21997,21997,21997,21997,21997,21997,21997,21997,21997,21997, 21997,21997,21997,24511,24512,24512,24512,24512,24512,24512, 24512,24512,24184,29840,29840,29840,29840,29840,29840,24512, 24512,24512,24512,24512,24513,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,24512,24512,24512,24512, 24512,24512,24514,24515,24515,24515,24515,24515,24515,24515, 24515,24516,29840,29840,29840,29840,29840,29840,24515,24515, 24515,24515,24515,24517,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24515,24515,24515,24515,24515, 24515,24520,24521,24521,24521,24521,24521,24521,24521,24521, 24522,29840,29840,29840,29840,29840,29840,24521,24521,24521, 24521,24521,24523,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22958,29840,29840,29840,24521,24521,24521,24521,24521,24521, 24528,24529,24529,24529,24529,24529,24529,24529,24529,23819, 29840,29840,29840,29840,29840,29840,24529,24529,24529,24529, 24529,24530,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24529,24529,24529,24529,24529,24529,24532, 24533,24533,24533,24533,24533,24533,24533,24533,24534,29840, 29840,29840,29840,29840,29840,24533,24533,24533,24533,24533, 24535,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24533,24533,24533,24533,24533,24533, 139, 139, 29840, 139, 1078, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,22971,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22958, 139, 139,24542,24543,24543,24543,24543, 24543,24543,24543,24543,24211,29840,29840,29840,29840,29840, 29840,24543,24543,24543,24543,24543,24544,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,24543,24543, 24543,24543,24543,24543,24545,24546,24546,24546,24546,24546, 24546,24546,24546,29840,29840,29840,29840,29840,29840,29840, 24546,24546,24546,24546,24546,24547,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24546,24546,24546, 24546,24546,24548, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22514, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22958, 139, 139, 22506,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24554,24221,23841,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,24557,24557, 24557,24557,24557,24557,24557,24557,24557,29840,24557,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23842, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,23843,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,24225,24227,23847,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,24563, 24563,24563,24563,24563,24563,24563,24563,24563,29840,24563, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 23848,24231,23851,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24567,24567,24567,24567,24567,24567,24567, 24567,24567,29840,24567,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23852,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23853, 9704,24595,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9705,29840,10666,29840,29840,29840,29840, 9706, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 9707,29840, 9708,29840, 9709,29840, 29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713, 29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 9707,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840,24596,29840,29840, 9713,29840, 9714, 29840, 9715,29840, 9716, 9717, 9718, 3291,29840,12866,29840, 29840,29840,29840,29840,29840, 9703,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12867,29840,29840,29840,29840,29840,29840,12868,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12869,29840,12870,29840,12872,29840,29840,12873, 14133,29840,29840,29840,12875,24597,29840,12876,29840,12877, 29840,12878,29840,12879,12880,14140, 3291,29840,12866,29840, 29840,29840,29840,29840,29840, 9703,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24598,29840,29840,29840,29840,29840,29840,29840,29840, 12867,29840,29840,29840,29840,29840,29840,12868,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12869,29840,12870,29840,12872,29840,29840,12873, 14133,29840,29840,29840,12875,29840,29840,12876,29840,12877, 29840,12878,29840,12879,12880,12881,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,24599,29840,29840,14174,14175,29840, 29840,29840,14176,15465,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,14174,14175,29840,29840,29840, 14176,24600,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182, 3291,29840,12895,29840,29840,29840,29840,29840, 29840,12896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12897,29840,29840,29840, 29840,29840,29840,12898,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12899,29840, 12900,29840,12901,29840,29840,12902,12903,29840,29840,29840, 12904,24601,29840,12905,29840,12906,29840,12907,29840,12908, 12909,14187, 3291,29840,12895,29840,29840,29840,29840,29840, 29840,12896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24602,29840,29840, 29840,29840,29840,29840,29840,29840,12897,29840,29840,29840, 29840,29840,29840,12898,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12899,29840, 12900,29840,12901,29840,29840,12902,12903,29840,29840,29840, 12904,29840,29840,12905,29840,12906,29840,12907,29840,12908, 12909,12910,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 24603,29840,29840,14207,14208,29840,29840,29840,14209,15501, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,14205,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,24604,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215, 3291,29840, 12912,29840,29840,29840,29840,29840,29840,12913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12914,29840,29840,29840,29840,29840,29840,12915, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12916,29840,12917,29840,12918,29840, 29840,12919,12920,29840,29840,29840,12921,24605,29840,12922, 29840,12923,29840,12924,29840,12925,12926,14220, 3291,29840, 12912,29840,29840,29840,29840,29840,29840,12913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24606,29840,29840,29840,29840,29840,29840, 29840,29840,12914,29840,29840,29840,29840,29840,29840,12915, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12916,29840,12917,29840,12918,29840, 29840,12919,12920,29840,29840,29840,12921,29840,29840,12922, 29840,12923,29840,12924,29840,12925,12926,12927,10695,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10696,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10697,29840,29840,29840,29840,29840,29840,10698,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10699,29840,10700,29840,10701,29840,29840,24607, 10703,29840,29840,29840,10704,29840,29840,10705,29840,10706, 29840,10707,29840,10708,10709,10710,10695,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10696,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10697,29840, 29840,29840,29840,29840,29840,10698,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10699,29840,10700,24608,10701,29840,29840,10702,10703,29840, 29840,29840,10704,11743,29840,10705,29840,10706,29840,10707, 29840,10708,10709,10710,20272,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20274,29840,29840,24609,29840,24610, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20275,29840,20999,29840, 29840,29840,29840,20276,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20277,29840, 20278,29840,20280,29840,29840,20281,20282,29840,29840,29840, 20283,29840,29840,20284,29840,20285,29840,20286,29840,20287, 20288,20289,20272,23899,29840,29840,29840,29840,29840,29840, 29840,29840,20274,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20275,29840,29840,29840,29840,29840, 29840,20276,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20277,29840,20278,29840, 20280,29840,29840,20281,20282,29840,29840,29840,20283,29840, 29840,20284,29840,20285,29840,20286,29840,20287,20288,20289, 3291,29840,22103,29840,29840,29840,29840,29840,29840,20271, 29840,29840,22104,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22105,29840,29840,29840,29840,29840, 29840,22106,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22107,29840,22108,29840, 22110,29840,29840,22111,22137,29840,29840,29840,22113,29840, 29840,22114,29840,22115,29840,24614,29840,22117,22118,22119, 3291,29840,22103,29840,29840,29840,29840,29840,29840,20271, 29840,29840,22104,24618,24618,24618,24618,24618,24618,24618, 24618,24618,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22105,29840,29840,29840,29840,29840, 29840,22106,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22107,29840,22604,29840, 22110,29840,29840,22111,22137,29840,29840,29840,22113,29840, 29840,22114,29840,22115,29840,22605,29840,22117,22606,22119, 22102,22102,22102,22102,22102,22102,22102,22102,22102,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22108,22109,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24619,29840,29840, 29840,29840,22116,29840,29840,22118,24620,22102,22102,22102, 22102,22102,22102,22102,22102,22102,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22108,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22116, 29840,29840,22118,22102,22102,22102,22102,22102,22102,22102, 22102,22102,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22108,29840, 29840,29840,24621,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22116,29840,29840,22118,22102, 22102,22102,22102,22102,22102,22102,22102,22102,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,24622, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22108,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22116,29840,29840,22118,22102,22102,22102,22102,22102, 22102,22102,22102,22102,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22108,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24623,29840,29840,29840,29840,29840,22116,29840,29840, 22118,22102,22102,22102,22102,22102,22102,22102,22102,22102, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22108,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24624,29840,29840, 29840,29840,29840,22116,29840,29840,22118,22102,22102,22102, 22102,22102,22102,22102,22102,22102,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22108,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24625,29840,29840,29840,29840,29840,22116, 29840,29840,22118,22102,22102,22102,22102,22102,22102,22102, 22102,22102,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22108,24626, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22116,29840,29840,22118,22102, 22102,22102,22102,22102,22102,22102,22102,22102,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22108,29840,29840,29840,22609,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22116,24627,29840,22118,22102,22102,22102,22102,22102, 22102,22102,22102,22102,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22108,29840,29840,29840,29840,29840,29840,29840,29840,24628, 29840,22614,29840,29840,29840,29840,29840,22116,29840,29840, 22118,22102,22102,22102,22102,22102,22102,22102,22102,22102, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22615,29840,22108,29840,29840,29840, 29840,29840,24629,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22116,29840,29840,22118,29840,22616,22102, 22102,22102,22102,22102,22102,22102,22102,22102,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22108,29840,29840,24630,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22116,29840,29840,22118,22102,22102,22102,22102,22102, 22102,22102,22102,22102,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22108,29840,29840,29840,29840,29840,24631,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22116,29840,29840, 22118,22102,22102,22102,22102,22102,22102,22102,22102,22102, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22108,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24632,29840,29840, 29840,29840,29840,22116,29840,29840,22118, 3291,29840,14249, 29840,29840,29840,29840,29840,29840,10694,29840,29840,14250, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14251,29840,29840,29840,29840,29840,29840,14252,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14253,29840,14254,29840,14256,29840,29840, 24636,15542,29840,29840,29840,14259,29840,29840,14260,29840, 14261,29840,14262,29840,14263,14264,14265, 3291,29840,14249, 29840,29840,29840,29840,29840,29840,10694,29840,29840,14250, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14251,29840,29840,29840,29840,29840,29840,14252,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14253,29840,14254,29840,14256,29840,29840, 14257,15542,29840,29840,29840,14259,29840,24637,14260,29840, 14261,29840,14262,29840,14263,14264,14265,22102,22102,22102, 22102,22102,22102,22102,22102,22102,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22108,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22612,24638,29840,29840,29840,22116, 29840,29840,22118,20313,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20314,29840,29840,24641,29840,24642,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20315,29840,21040,29840,29840, 29840,29840,20316,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20317,29840,20318, 29840,20319,29840,29840,20320,20321,29840,29840,29840,20322, 29840,29840,20323,29840,20324,29840,20325,29840,20326,20327, 20328,20313,23940,29840,29840,29840,29840,29840,29840,29840, 29840,20314,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20315,29840,29840,29840,29840,29840,29840, 20316,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20317,29840,20318,29840,20319, 29840,29840,20320,20321,29840,29840,29840,20322,29840,29840, 20323,29840,20324,29840,20325,29840,20326,20327,20328, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,22164,22186,29840,29840,29840,22166,29840,29840, 22167,29840,22168,29840,24647,29840,22170,22171,22172, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,24651,24651,24651,24651,24651,24651,24651,24651, 24651,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22657,29840,22163, 29840,29840,22164,22186,29840,29840,29840,22166,29840,29840, 22167,29840,22168,29840,22658,29840,22170,22659,22172,22155, 22155,22155,22155,22155,22155,22155,22155,22155,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22161,22162,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,24652,29840,29840,29840, 29840,22169,29840,29840,22171,24653,22155,22155,22155,22155, 22155,22155,22155,22155,22155,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22161,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22169,29840, 29840,22171,22155,22155,22155,22155,22155,22155,22155,22155, 22155,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22161,29840,29840, 29840,24654,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22169,29840,29840,22171,22155,22155, 22155,22155,22155,22155,22155,22155,22155,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,24655,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22161,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22169,29840,29840,22171,22155,22155,22155,22155,22155,22155, 22155,22155,22155,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22161, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24656,29840,29840,29840,29840,29840,22169,29840,29840,22171, 22155,22155,22155,22155,22155,22155,22155,22155,22155,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22161,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,24657,29840,29840,29840, 29840,29840,22169,29840,29840,22171,22155,22155,22155,22155, 22155,22155,22155,22155,22155,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22161,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24658,29840,29840,29840,29840,29840,22169,29840, 29840,22171,22155,22155,22155,22155,22155,22155,22155,22155, 22155,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22161,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24659,29840,29840,29840,22169,29840,29840,22171,22155,22155, 22155,22155,22155,22155,22155,22155,22155,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22161,24660,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22169,29840,29840,22171,22155,22155,22155,22155,22155,22155, 22155,22155,22155,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22161, 29840,29840,29840,22662,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22169,24661,29840,22171, 22155,22155,22155,22155,22155,22155,22155,22155,22155,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22161,29840,29840,29840,29840, 29840,29840,29840,29840,24662,29840,22667,29840,29840,29840, 29840,29840,22169,29840,29840,22171,22155,22155,22155,22155, 22155,22155,22155,22155,22155,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22668, 29840,22161,29840,29840,29840,29840,29840,24663,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22169,29840, 29840,22171,29840,22669,22155,22155,22155,22155,22155,22155, 22155,22155,22155,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22161, 29840,29840,24664,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22169,29840,29840,22171, 22155,22155,22155,22155,22155,22155,22155,22155,22155,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22161,29840,29840,29840,29840, 29840,24665,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22169,29840,29840,22171,22155,22155,22155,22155, 22155,22155,22155,22155,22155,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22161,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24666,29840,29840,29840,29840,29840,22169,29840, 29840,22171, 8137,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 8139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23975,29840,29840,29840,29840, 29840,29840,29840,29840, 8140,29840,29840,29840,29840,29840, 29840, 8141,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 8142,29840, 8143,29840, 8145,29840,29840, 8146, 8147,29840,29840,29840, 8148,29840, 8931, 8149,29840, 8150,29840, 8151,29840, 8152, 8153, 8154, 3291,29840,22188,29840,29840,29840,29840,29840,29840,22189, 29840,29840,22190,24668,24668,24668,24668,24668,24668,24668, 24668,24668,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22191,29840,29840,29840,29840,29840, 29840,22192,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22193,29840,22707,29840, 22195,29840,29840,22196,22197,29840,29840,29840,22198,29840, 29840,22199,29840,22200,29840,22708,29840,22202,22709,22204, 22691,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24669,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22693,29840,29840,29840,29840,29840,29840,22694, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22695,29840,22696,29840,22697,29840, 29840,22698,22699,29840,29840,29840,22700,29840,29840,22701, 29840,22702,29840,22703,29840,22704,22705,22706,22691,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,29840,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24670,29840,22696,29840,22697,29840,29840,22698, 22699,29840,29840,29840,22700,29840,29840,22701,29840,22702, 29840,22703,29840,22704,22705,22706,23150, 3291,29840,22188, 29840,29840,29840,29840,29840,29840,22189,29840,29840,22190, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22191,29840,29840,29840,29840,29840,29840,22192,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22193,29840,22194,29840,22195,29840,29840, 22196,22197,29840,29840,29840,22198,29840,29840,22199,29840, 22200,29840,22201,29840,22202,22203,22714, 3291,29840,22206, 29840,29840,29840,29840,29840,29840,22207,29840,29840,22208, 24701,24701,24701,24701,24701,24701,24701,24701,24701,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22209,29840,29840,29840,29840,29840,29840,22210,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22211,29840,22744,29840,22213,29840,29840, 22214,22215,29840,29840,29840,22216,29840,29840,22217,29840, 22218,29840,22745,29840,22220,22746,22222,22728,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24702,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22730, 29840,29840,29840,29840,29840,29840,22731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22732,29840,22733,29840,22734,29840,29840,22735,22736, 29840,29840,29840,22737,29840,29840,22738,29840,22739,29840, 22740,29840,22741,22742,22743,22728,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22730,29840,29840, 29840,29840,29840,29840,22731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,24703, 29840,22733,29840,22734,29840,29840,22735,22736,29840,29840, 29840,22737,29840,29840,22738,29840,22739,29840,22740,29840, 22741,22742,22743,23191, 3291,29840,22206,29840,29840,29840, 29840,29840,29840,22207,29840,29840,22208,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22209,29840, 29840,29840,29840,29840,29840,22210,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22211,29840,22212,29840,22213,29840,29840,22214,22215,29840, 29840,29840,22216,29840,29840,22217,29840,22218,29840,22219, 29840,22220,22221,22751, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,29840,10735,29840,29840,24734,10762,29840, 29840,29840,10738,29840,29840,10739,29840,10740,29840,10741, 29840,10742,10743,10744, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,24735,10735,29840,29840,10736,10762,29840, 29840,29840,10738,11781,29840,10739,29840,10740,29840,10741, 29840,10742,10743,10744,15613,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15614,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15615,29840,29840,29840, 29840,29840,29840,15616,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24737,15617,29840, 15618,29840,15619,29840,29840,15620,15621,29840,29840,29840, 15622,29840,29840,15623,29840,15624,29840,15625,29840,15626, 15627,15628,15613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15614,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15615,29840,29840,29840,29840,29840, 29840,15616,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15617,29840,15618,29840, 15619,29840,29840,15620,15621,29840,29840,29840,15622,29840, 29840,15623,29840,24738,29840,15625,29840,15626,15627,15628, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,29840,15619,29840, 29840,15620,24740,29840,29840,29840,15622,29840,29840,15623, 29840,15624,29840,15625,29840,15626,15627,15628,15613,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15614,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15615,29840,29840,29840,29840,29840,29840,15616,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15617,29840,16758,29840,15619,29840,29840,15620, 15621,29840,29840,29840,15622,29840,29840,15623,29840,15624, 29840,16759,29840,15626,16760,15628,15613,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15614,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15615,29840, 29840,29840,29840,29840,29840,15616,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15617,29840,15618,29840,15619,29840,29840,15620,15621,29840, 29840,29840,15622,16767,24741,15623,29840,15624,29840,15625, 29840,15626,15627,15628, 3291,29840,14316,29840,29840,29840, 29840,29840,29840,14317,29840,29840,14318,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14319,29840, 29840,29840,29840,29840,29840,14320,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14321,29840,14322,29840,14323,29840,29840,24742,14325,29840, 29840,29840,14326,29840,29840,14327,29840,14328,29840,14329, 29840,14330,14331,14332, 3291,29840,14316,29840,29840,29840, 29840,29840,29840,14317,29840,29840,14318,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14319,29840, 29840,29840,29840,29840,29840,14320,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14321,29840,14322,29840,14323,29840,29840,14324,14325,29840, 29840,29840,14326,29840,24743,14327,29840,14328,29840,14329, 29840,14330,14331,14332,15650,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15651,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15652,29840,29840,29840, 29840,29840,29840,15653,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24747,15654,29840, 15655,29840,15656,29840,29840,15657,15658,29840,29840,29840, 15659,29840,29840,15660,29840,15661,29840,15662,29840,15663, 15664,15665,15650,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15651,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15652,29840,29840,29840,29840,29840, 29840,15653,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15654,29840,15655,29840, 15656,29840,29840,15657,15658,29840,29840,29840,15659,29840, 29840,15660,29840,24748,29840,15662,29840,15663,15664,15665, 15650,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15651,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15652,29840,29840,29840,29840,29840,29840,15653, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15654,29840,15655,29840,15656,29840, 29840,15657,24750,29840,29840,29840,15659,29840,29840,15660, 29840,15661,29840,15662,29840,15663,15664,15665,15650,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15651,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15652,29840,29840,29840,29840,29840,29840,15653,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15654,29840,16800,29840,15656,29840,29840,15657, 15658,29840,29840,29840,15659,29840,29840,15660,29840,15661, 29840,16801,29840,15663,16802,15665,15650,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15652,29840, 29840,29840,29840,29840,29840,15653,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15654,29840,15655,29840,15656,29840,29840,15657,15658,29840, 29840,29840,15659,16809,24751,15660,29840,15661,29840,15662, 29840,15663,15664,15665, 3291,29840,14334,29840,29840,29840, 29840,29840,29840,14335,29840,29840,14336,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14337,29840, 29840,29840,29840,29840,29840,14338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14339,29840,14340,29840,14341,29840,29840,24752,14343,29840, 29840,29840,14344,29840,29840,14345,29840,14346,29840,14347, 29840,14348,14349,14350, 3291,29840,14334,29840,29840,29840, 29840,29840,29840,14335,29840,29840,14336,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14337,29840, 29840,29840,29840,29840,29840,14338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14339,29840,14340,29840,14341,29840,29840,14342,14343,29840, 29840,29840,14344,29840,24753,14345,29840,14346,29840,14347, 29840,14348,14349,14350, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 24766,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,24767,29840,29840,29840,29840,24766,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,17110, 139, 139,23744,23323, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24460,24460,24460,24460,24460,24460,24460,24460,24460,29840, 24460,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,23324,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24776, 139, 139,29840, 139, 139, 139, 139, 139,24795, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,24797,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 24815,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,24816,29840,29840,29840,29840,24815,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 24819,24819,24819,24819,24819,24819,24819,24819,24819,29840, 29840,29840,29840,29840,29840,29840,24819,24819,24819,24819, 24819,24820,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24819,24819,24819,24819,24819,24819, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,22499,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22958, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 22498, 139,24826,24826,24826,24826,24826,24826,24826,24826, 24826, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,22499,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22958, 139, 139, 139,24830,24831,24831,24831,24831, 24831,24831,24831,24831,24184,29840,29840,29840,29840,29840, 29840,24831,24831,24831,24831,24831,24832,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,24831,24831, 24831,24831,24831,24831,24834,24835,24835,24835,24835,24835, 24835,24835,24835,24836,29840,29840,29840,29840,29840,29840, 24835,24835,24835,24835,24835,24837,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24835,24835,24835, 24835,24835,24835,24839,24840,24840,24840,24840,24840,24840, 24840,24840,29840,29840,29840,29840,29840,29840,29840,24840, 24840,24840,24840,24840,24841,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22958,29840,29840,29840,24840,24840,24840,24840, 24840,24842,24845,24846,24846,24846,24846,24846,24846,24846, 24846,24522,29840,29840,29840,29840,29840,29840,24846,24846, 24846,24846,24846,24847,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24846,24846,24846,24846,24846, 24846,24848,24849,24849,24849,24849,24849,24849,24849,24849, 29840,29840,29840,29840,29840,29840,29840,24849,24849,24849, 24849,24849,24850,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24849,24849,24849,24849,24849,24851, 24856,24857,24857,24857,24857,24857,24857,24857,24857,24534, 29840,29840,29840,29840,29840,29840,24857,24857,24857,24857, 24857,24858,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24857,24857,24857,24857,24857,24857,24859, 24860,24860,24860,24860,24860,24860,24860,24860,29840,29840, 29840,29840,29840,29840,29840,24860,24860,24860,24860,24860, 24861,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24860,24860,24860,24860,24860,24862,24868,24869, 24869,24869,24869,24869,24869,24869,24869,24211,29840,29840, 29840,29840,29840,29840,24869,24869,24869,24869,24869,24870, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24869,24869,24869,24869,24869,24869,24872,24873,24873, 24873,24873,24873,24873,24873,24873,24874,29840,29840,29840, 29840,29840,29840,24873,24873,24873,24873,24873,24875,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24873,24873,24873,24873,24873,24873,24882,24883,24884,24885, 24885,24885,24885,24885,24885,29840,29840,29840,29840,29840, 29840,29840,23830,23830,23830,23830,23830,23834,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23830, 23830,23830,23830,23830,23830, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,22514,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22958, 139, 139,22506,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24886,24221,23841,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24888,24888,24888,24888,24888,24888, 24888,24888,24888,29840,24888,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23842,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23843,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24225,24221,23841,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24557,24557,24557,24557,24557, 24557,24557,24557,24557,29840,24557,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23842,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23843,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24889,24227,23847,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24894,24894,24894,24894,24894,24894,24894, 24894,24894,29840,24894,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23848,24227,23847,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24563,24563,24563, 24563,24563,24563,24563,24563,24563,29840,24563,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,23848,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24895,24231,23851,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24898,24898,24898,24898,24898, 24898,24898,24898,24898,29840,24898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23852,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,23853,24231,23851,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24567,24567,24567,24567,24567,24567, 24567,24567,24567,29840,24567,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23852,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,24899, 23853, 9704,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 9707,29840, 9708,29840, 9709, 29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718, 9704, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 9705,29840,29840,29840,29840,29840,29840, 9706,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12863,10674,29840, 9708,29840, 9709,29840,29840, 9710, 9711,29840,29840,29840, 9712,29840,29840, 9713,29840, 9714,29840, 9715,29840, 9716, 9717, 9718,10675, 3291,29840, 12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12867,29840,29840,29840,29840,29840,29840,12868, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12869,29840,12870,29840,12872,29840, 29840,12873,14133,29840,29840,29840,12875,29840,29840,12876, 29840,12877,29840,24926,29840,12879,12880,12881, 3291,29840, 12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12867,29840,29840,29840,29840,29840,29840,12868, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12869,29840,24927,29840,12872,29840, 29840,12873,14133,29840,29840,29840,12875,29840,29840,12876, 29840,12877,29840,12878,29840,12879,12880,12881,14168,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14169,29840,29840,29840,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,29840,14173,29840,29840,14174, 14175,29840,29840,29840,14176,24928,29840,14177,29840,14178, 29840,14179,29840,14180,14181,15463,14168,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,24929, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 29840,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182, 3291,29840,12895,29840,29840,29840, 29840,29840,29840,12896,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12897,29840, 29840,29840,29840,29840,29840,12898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12899,29840,12900,29840,12901,29840,29840,12902,12903,29840, 29840,29840,12904,29840,29840,12905,29840,12906,29840,24930, 29840,12908,12909,12910, 3291,29840,12895,29840,29840,29840, 29840,29840,29840,12896,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12897,29840, 29840,29840,29840,29840,29840,12898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12899,29840,24931,29840,12901,29840,29840,12902,12903,29840, 29840,29840,12904,29840,29840,12905,29840,12906,29840,12907, 29840,12908,12909,12910,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,29840,14207,14208,29840,29840,29840, 14209,24932,29840,14210,29840,14211,29840,14212,29840,14213, 14214,15499,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24933,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,14212,29840,14213,14214,14215, 3291,29840,12912,29840,29840,29840,29840,29840,29840,12913, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12914,29840,29840,29840,29840,29840, 29840,12915,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12916,29840,12917,29840, 12918,29840,29840,12919,12920,29840,29840,29840,12921,29840, 29840,12922,29840,12923,29840,24934,29840,12925,12926,12927, 3291,29840,12912,29840,29840,29840,29840,29840,29840,12913, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12914,29840,29840,29840,29840,29840, 29840,12915,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12916,29840,24935,29840, 12918,29840,29840,12919,12920,29840,29840,29840,12921,29840, 29840,12922,29840,12923,29840,12924,29840,12925,12926,12927, 10695,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10696,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24936,29840,29840,29840,29840,29840,29840, 29840,29840,10697,29840,29840,29840,29840,29840,29840,10698, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10699,29840,10700,29840,10701,29840, 29840,10702,10703,29840,29840,29840,10704,29840,11742,10705, 29840,10706,29840,10707,29840,10708,10709,10710,10695,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10696,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10697,29840,29840,29840,29840,29840,29840,10698,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10699,29840,10700,29840,24937,29840,29840,10702, 10703,29840,29840,29840,10704,29840,29840,10705,29840,10706, 29840,10707,29840,10708,10709,10710,20272,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20274,24938,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20275,29840, 29840,29840,29840,29840,29840,20276,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20277,29840,20278,29840,20280,29840,29840,20281,20282,29840, 29840,29840,20283,29840,29840,20284,29840,20285,29840,20286, 29840,20287,20288,20289,20272,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20274,29840,29840,29840,29840,24939, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20275,29840,29840,29840, 29840,29840,29840,20276,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20277,29840, 20278,29840,20280,29840,29840,20281,20282,29840,29840,29840, 20283,29840,29840,20284,29840,20285,29840,20286,29840,20287, 20288,20289, 3291,29840,22103,29840,29840,29840,29840,29840, 29840,20271,29840,29840,22104,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22105,29840,29840,29840, 29840,29840,29840,22106,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22107,29840, 22108,29840,22110,29840,29840,22111,22137,29840,29840,29840, 22113,29840,29840,22114,29840,24943,29840,22116,29840,22117, 22118,22119,22618, 3291,29840,22103,29840,29840,29840,29840, 29840,29840,20271,29840,29840,23905,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22105,29840,29840, 29840,29840,29840,29840,22106,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22107, 29840,22108,22136,22110,29840,29840,22111,23906,29840,29840, 29840,22113,29840,29840,22114,29840,22115,29840,22116,29840, 22117,22118,22119,10695,24959,29840,29840,29840,29840,29840, 29840,29840,29840,10696,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10697,29840,11733,29840,29840, 29840,29840,10698,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10699,29840,10700, 29840,10701,29840,29840,10702,10703,29840,29840,29840,10704, 29840,29840,10705,29840,10706,29840,10707,29840,10708,10709, 10710, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,14250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24961,29840,14254, 29840,14256,29840,29840,14257,15542,29840,29840,29840,14259, 29840,15553,14260,29840,14261,29840,14262,29840,14263,14264, 14265, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,14250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14253,29840,14254, 29840,14256,29840,29840,14257,15542,29840,29840,29840,14259, 29840,29840,14260,29840,14261,29840,14262,16713,24962,14264, 14265,20313,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20314,24966,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20315,29840,29840,29840,29840,29840,29840, 20316,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20317,29840,20318,29840,20319, 29840,29840,20320,20321,29840,29840,29840,20322,29840,29840, 20323,29840,20324,29840,20325,29840,20326,20327,20328,20313, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20314, 29840,29840,29840,29840,24967,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20315,29840,29840,29840,29840,29840,29840,20316,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20317,29840,20318,29840,20319,29840,29840, 20320,20321,29840,29840,29840,20322,29840,29840,20323,29840, 20324,29840,20325,29840,20326,20327,20328, 3291,29840,22156, 29840,29840,29840,29840,29840,29840,20312,29840,29840,22157, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22158,29840,29840,29840,29840,29840,29840,22159,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22160,29840,22161,29840,22163,29840,29840, 22164,22186,29840,29840,29840,22166,29840,29840,22167,29840, 24972,29840,22169,29840,22170,22171,22172,22673, 3291,29840, 22156,29840,29840,29840,29840,29840,29840,20312,29840,29840, 23946,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22158,29840,29840,29840,29840,29840,29840,22159, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22160,29840,22161,23114,22163,29840, 29840,22164,23947,29840,29840,29840,22166,29840,29840,22167, 29840,22168,29840,22169,29840,22170,22171,22172, 3291,29840, 22188,24989,29840,29840,29840,29840,29840,22189,29840,24990, 22190,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22191,29840,29840,29840,29840,29840,29840,22192, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22193,29840,22194,29840,22195,29840, 29840,22196,22197,29840,29840,29840,22198,29840,29840,22199, 29840,22200,29840,22201,29840,22202,22203,22204,22691,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22692,24991, 24991,24991,24991,24991,24991,24991,24991,24991,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,29840,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22695,29840,23135,29840,22697,29840,29840,22698, 22699,29840,29840,29840,22700,29840,29840,22701,29840,22702, 29840,23136,29840,22704,23137,22706,22691,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22692,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22693,29840, 29840,29840,29840,29840,29840,22694,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22695,29840,22696,23140,22697,29840,29840,22698,22699,29840, 29840,29840,22700,29840,24992,22701,29840,22702,29840,22703, 29840,22704,22705,22706, 3291,29840,22188,29840,29840,29840, 29840,29840,29840,22189,29840,29840,25007,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22191,29840, 29840,29840,29840,29840,29840,22192,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22193,29840,22194,29840,22195,29840,29840,22196,22197,29840, 29840,29840,22198,29840,29840,22199,29840,22200,29840,22201, 29840,22202,22203,22204, 3291,29840,22206,25018,29840,29840, 29840,29840,29840,22207,29840,25019,22208,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22209,29840, 29840,29840,29840,29840,29840,22210,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22211,29840,22212,29840,22213,29840,29840,22214,22215,29840, 29840,29840,22216,29840,29840,22217,29840,22218,29840,22219, 29840,22220,22221,22222,22728,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22729,25020,25020,25020,25020,25020, 25020,25020,25020,25020,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22730,29840,29840,29840, 29840,29840,29840,22731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22732,29840, 23176,29840,22734,29840,29840,22735,22736,29840,29840,29840, 22737,29840,29840,22738,29840,22739,29840,23177,29840,22741, 23178,22743,22728,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22730,29840,29840,29840,29840,29840, 29840,22731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22732,29840,22733,23181, 22734,29840,29840,22735,22736,29840,29840,29840,22737,29840, 25021,22738,29840,22739,29840,22740,29840,22741,22742,22743, 3291,29840,22206,29840,29840,29840,29840,29840,29840,22207, 29840,29840,25036,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22209,29840,29840,29840,29840,29840, 29840,22210,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22211,29840,22212,29840, 22213,29840,29840,22214,22215,29840,29840,29840,22216,29840, 29840,22217,29840,22218,29840,22219,29840,22220,22221,22222, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136, 29840,29840,10729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25047,29840,29840,29840,29840, 29840,29840,29840,29840,10730,29840,29840,29840,29840,29840, 29840,10731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10732,29840,10733,29840, 10735,29840,29840,10736,10762,29840,29840,29840,10738,29840, 11779,10739,29840,10740,29840,10741,29840,10742,10743,10744, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136, 29840,29840,10729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,10730,29840,29840,29840,29840,29840, 29840,10731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10732,29840,10733,29840, 25048,29840,29840,10736,10762,29840,29840,29840,10738,29840, 29840,10739,29840,10740,29840,10741,29840,10742,10743,10744, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,29840,15619,29840, 29840,25050,15621,29840,29840,29840,15622,29840,29840,15623, 29840,15624,29840,15625,29840,15626,15627,15628,15613,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15614,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15615,29840,29840,29840,29840,29840,29840,15616,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15617,29840,15618,29840,15619,29840,29840,15620, 15621,29840,29840,29840,15622,29840,25051,15623,29840,15624, 29840,15625,29840,15626,15627,15628, 3291,29840,14316,29840, 29840,29840,29840,29840,29840,14317,29840,29840,14318,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14319,29840,29840,29840,29840,29840,29840,14320,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25055,29840,14322,29840,14323,29840,29840,14324, 14325,29840,29840,29840,14326,29840,15637,14327,29840,14328, 29840,14329,29840,14330,14331,14332, 3291,29840,14316,29840, 29840,29840,29840,29840,29840,14317,29840,29840,14318,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14319,29840,29840,29840,29840,29840,29840,14320,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14321,29840,14322,29840,14323,29840,29840,14324, 14325,29840,29840,29840,14326,29840,29840,14327,29840,14328, 29840,14329,16793,25056,14331,14332,15650,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15652,29840, 29840,29840,29840,29840,29840,15653,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15654,29840,15655,29840,15656,29840,29840,25060,15658,29840, 29840,29840,15659,29840,29840,15660,29840,15661,29840,15662, 29840,15663,15664,15665,15650,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15651,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15652,29840,29840,29840, 29840,29840,29840,15653,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15654,29840, 15655,29840,15656,29840,29840,15657,15658,29840,29840,29840, 15659,29840,25061,15660,29840,15661,29840,15662,29840,15663, 15664,15665, 3291,29840,14334,29840,29840,29840,29840,29840, 29840,14335,29840,29840,14336,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14337,29840,29840,29840, 29840,29840,29840,14338,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25065,29840, 14340,29840,14341,29840,29840,14342,14343,29840,29840,29840, 14344,29840,15674,14345,29840,14346,29840,14347,29840,14348, 14349,14350, 3291,29840,14334,29840,29840,29840,29840,29840, 29840,14335,29840,29840,14336,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14337,29840,29840,29840, 29840,29840,29840,14338,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14339,29840, 14340,29840,14341,29840,29840,14342,14343,29840,29840,29840, 14344,29840,29840,14345,29840,14346,29840,14347,16835,25066, 14349,14350, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,24766,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 24767,29840,29840,29840,29840,24766,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,17110, 139, 139, 139, 139,29840, 139, 25108, 139, 139, 139, 139, 139, 139, 139,29840,25109, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,24797,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139,25108, 139, 139, 139, 139, 139, 139, 139,29840,25109, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,25110,29840,29840,29840,29840, 24797,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,25132,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,25133,29840,29840,29840,29840,25132,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139,25136,25136, 25136,25136,25136,25136,25136,25136,25136,29840,29840,29840, 29840,29840,29840,29840,25136,25136,25136,25136,25136,25137, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25136,25136,25136,25136,25136,25136, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,21997, 22498, 139,24507,24507,24507,24507,24507,24507,24507,24507, 24507, 139, 139, 139, 139, 139, 139, 139,21997,21997, 21997,21997,21997,22499,21997,21997,21997,21997,21997,21997, 21997,21997,21997,21997,21997,21997,21997,21997,21997,21997, 21997,22958, 139, 139, 139,21997,21997,21997,21997,21997, 21997,21997,21997,21997,21997,21997,21997,21997,21997,21997, 21997,21997,21997,21997,21997,21997,21997,21997,21997,21997, 25144,25145,25145,25145,25145,25145,25145,25145,25145,24836, 29840,29840,29840,29840,29840,29840,25145,25145,25145,25145, 25145,25146,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25145,25145,25145,25145,25145,25145,25147, 25148,25148,25148,25148,25148,25148,25148,25148,25149,29840, 29840,29840,29840,29840,29840,25148,25148,25148,25148,25148, 25150,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25148,25148,25148,25148,25148,25148,25153,25154, 25154,25154,25154,25154,25154,25154,25154,25155,29840,29840, 29840,29840,29840,29840,25154,25154,25154,25154,25154,25156, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22958,29840,29840, 29840,25154,25154,25154,25154,25154,25154,25161,25162,25162, 25162,25162,25162,25162,25162,25162,24522,29840,29840,29840, 29840,29840,29840,25162,25162,25162,25162,25162,25163,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25162,25162,25162,25162,25162,25162,25165,25166,25166,25166, 25166,25166,25166,25166,25166,25167,29840,29840,29840,29840, 29840,29840,25166,25166,25166,25166,25166,25168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25166, 25166,25166,25166,25166,25166,25175,25176,25176,25176,25176, 25176,25176,25176,25176,24534,29840,29840,29840,29840,29840, 29840,25176,25176,25176,25176,25176,25177,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25176,25176, 25176,25176,25176,25176,25179,25180,25180,25180,25180,25180, 25180,25180,25180,25181,29840,29840,29840,29840,29840,29840, 25180,25180,25180,25180,25180,25182,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25180,25180,25180, 25180,25180,25180,25189,25190,25191,25192,25192,25192,25192, 25192,25192,29840,29840,29840,29840,29840,29840,29840,24197, 24197,24197,24197,24197,24201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,24197,24197,24197,24197, 24197,24197,25193,25194,25194,25194,25194,25194,25194,25194, 25194,24874,29840,29840,29840,29840,29840,29840,25194,25194, 25194,25194,25194,25195,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25194,25194,25194,25194,25194, 25194,25196,25197,25197,25197,25197,25197,25197,25197,25197, 29840,29840,29840,29840,29840,29840,29840,25197,25197,25197, 25197,25197,25198,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25197,25197,25197,25197,25197,25199, 25205,29840,24210,24210,24210,24210,24210,24210,24210,24210, 24210,24213,29840,29840,29840,29840,29840,29840,24210,24210, 24210,24210,24210,24212,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24210,24210,24210,24210,24210, 24210, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22514,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22958, 139, 139,22506,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25209,24221, 23841,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24888,24888,24888,24888,24888,24888,24888,24888,24888, 29840,24888,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23842,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 23843,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25211,24227,23847,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,24894, 24894,24894,24894,24894,24894,24894,24894,24894,29840,24894, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 23848,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25216,24231,23851,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,24898,24898,24898, 24898,24898,24898,24898,24898,24898,29840,24898,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,23852,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25219,23853, 3291,29840,25244,29840,29840,29840, 29840,29840,29840, 9703,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12867,29840, 29840,29840,29840,29840,29840,12868,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 12869,29840,12870,29840,12872,29840,29840,12873,14133,29840, 29840,29840,12875,29840,29840,12876,29840,12877,29840,12878, 29840,12879,12880,12881,14149, 3291,29840,12866,29840,29840, 29840,29840,29840,29840, 9703,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12867, 29840,29840,29840,29840,29840,29840,12868,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12869,29840,12870,29840,12872,29840,14138,12873,14133, 29840,29840,29840,12875,29840,25245,12876,29840,12877,29840, 12878,29840,12879,12880,12881,14168,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14169,29840,29840, 29840,29840,29840,29840,14170,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14171, 29840,14172,29840,14173,29840,29840,14174,14175,29840,29840, 29840,14176,29840,29840,14177,29840,14178,29840,25246,29840, 14180,14181,14182,14168,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14169,29840,29840,29840,29840, 29840,29840,14170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14171,29840,25247, 29840,14173,29840,29840,14174,14175,29840,29840,29840,14176, 29840,29840,14177,29840,14178,29840,14179,29840,14180,14181, 14182, 3291,29840,25248,29840,29840,29840,29840,29840,29840, 12896,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12897,29840,29840,29840,29840, 29840,29840,12898,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,12899,29840,12900, 29840,12901,29840,29840,12902,12903,29840,29840,29840,12904, 29840,29840,12905,29840,12906,29840,12907,29840,12908,12909, 12910,14195, 3291,29840,12895,29840,29840,29840,29840,29840, 29840,12896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12897,29840,29840,29840, 29840,29840,29840,12898,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12899,29840, 12900,29840,12901,29840,14186,12902,12903,29840,29840,29840, 12904,29840,25249,12905,29840,12906,29840,12907,29840,12908, 12909,12910,14201,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14202,29840,29840,29840,29840,29840, 29840,14203,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14204,29840,14205,29840, 14206,29840,29840,14207,14208,29840,29840,29840,14209,29840, 29840,14210,29840,14211,29840,25250,29840,14213,14214,14215, 14201,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14202,29840,29840,29840,29840,29840,29840,14203, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14204,29840,25251,29840,14206,29840, 29840,14207,14208,29840,29840,29840,14209,29840,29840,14210, 29840,14211,29840,14212,29840,14213,14214,14215, 3291,29840, 25252,29840,29840,29840,29840,29840,29840,12913,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12914,29840,29840,29840,29840,29840,29840,12915, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12916,29840,12917,29840,12918,29840, 29840,12919,12920,29840,29840,29840,12921,29840,29840,12922, 29840,12923,29840,12924,29840,12925,12926,12927,14228, 3291, 29840,12912,29840,29840,29840,29840,29840,29840,12913,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12914,29840,29840,29840,29840,29840,29840, 12915,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12916,29840,12917,29840,12918, 29840,14219,12919,12920,29840,29840,29840,12921,29840,25253, 12922,29840,12923,29840,12924,29840,12925,12926,12927,20272, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20274, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20275,29840,29840,29840,29840,29840,29840,20276,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20277,29840,20278,29840,20280,29840,29840, 20281,20282,29840,29840,29840,20283,29840,29840,20284,29840, 20285,29840,20286,29840,20287,20288,20289,10695,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10696,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,10697, 29840,29840,29840,29840,29840,29840,10698,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10699,29840,10700,29840,10701,29840,29840,10702,10703, 29840,29840,29840,10704,29840,29840,10705,29840,25254,29840, 10707,29840,10708,10709,11741,20272,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20274,25255,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20275,29840,29840, 29840,29840,29840,29840,20276,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20277, 29840,20278,29840,20280,29840,29840,20281,20282,29840,29840, 29840,20283,29840,29840,20284,29840,20285,29840,20286,29840, 20287,20288,20289, 3291,29840,22103,29840,29840,29840,29840, 29840,29840,20271,29840,29840,22104,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22105,29840,29840, 29840,29840,29840,29840,22106,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25259, 29840,22108,29840,22110,29840,29840,22111,22137,29840,29840, 29840,22113,29840,22617,22114,29840,22115,29840,22116,29840, 22117,22118,22119, 3291,29840,25262,29840,29840,29840,29840, 29840,29840,20271,29840,29840,22104,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22105,29840,29840, 29840,29840,29840,29840,22106,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22107, 29840,22108,29840,22110,29840,29840,22111,22137,29840,29840, 29840,22113,29840,29840,22114,29840,22115,29840,22116,29840, 22117,22118,22119,10695,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10696,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,10697,29840,29840,29840,29840, 29840,29840,10698,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,10699,29840,10700, 29840,10701,29840,29840,10702,10703,29840,29840,29840,10704, 29840,29840,10705,29840,10706,29840,10707,29840,10708,10709, 10710,10695,29840,29840,29840,29840,29840,29840,29840,29840, 29840,10696,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,10697,29840,29840,29840,29840,29840,29840, 10698,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14246,11744,29840,10700,29840,10701, 29840,29840,10702,10703,29840,29840,29840,10704,29840,29840, 10705,29840,10706,29840,10707,29840,10708,10709,10710,11745, 3291,29840,14249,29840,29840,29840,29840,29840,29840,10694, 29840,29840,14250,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14251,29840,29840,29840,29840,29840, 29840,14252,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14253,29840,14254,14255, 14256,29840,29840,14257,15542,29840,29840,29840,14259,29840, 29840,14260,29840,14261,25273,14262,29840,14263,14264,14265, 3291,29840,14249,29840,29840,29840,29840,29840,29840,10694, 15562,29840,14250,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14251,29840,29840,29840,29840,29840, 29840,14252,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14253,29840,14254,29840, 14256,29840,29840,14257,25274,29840,29840,29840,14259,29840, 29840,14260,29840,14261,29840,14262,29840,14263,14264,14265, 20313,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20314,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20315,29840,29840,29840,29840,29840,29840,20316, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20317,29840,20318,29840,20319,29840, 29840,20320,20321,29840,29840,29840,20322,29840,29840,20323, 29840,20324,29840,20325,29840,20326,20327,20328,20313,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20314,29840, 29840,29840,29840,25278,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20315,29840,29840,29840,29840,29840,29840,20316,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20317,29840,20318,29840,20319,29840,29840,20320, 20321,29840,29840,29840,20322,29840,29840,20323,29840,20324, 29840,20325,29840,20326,20327,20328, 3291,29840,22156,29840, 29840,29840,29840,29840,29840,20312,29840,29840,22157,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22158,29840,29840,29840,29840,29840,29840,22159,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25283,29840,22161,29840,22163,29840,29840,22164, 22186,29840,29840,29840,22166,29840,22672,22167,29840,22168, 29840,22169,29840,22170,22171,22172, 3291,29840,25286,29840, 29840,29840,29840,29840,29840,20312,29840,29840,22157,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22158,29840,29840,29840,29840,29840,29840,22159,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22160,29840,22161,29840,22163,29840,29840,22164, 22186,29840,29840,29840,22166,29840,29840,22167,29840,22168, 29840,22169,29840,22170,22171,22172, 3291,29840,25298,29840, 29840,29840,29840,29840,29840,22189,29840,29840,22190,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22191,29840,29840,29840,29840,29840,29840,22192,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22193,29840,22194,29840,22195,29840,29840,22196, 22197,29840,29840,29840,22198,29840,29840,22199,29840,22200, 29840,22201,29840,22202,22203,22204, 3291,29840,22188,29840, 29840,29840,29840,29840,29840,22189,29840,29840,22190,25299, 25299,25299,25299,25299,25299,25299,25299,25299,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22191,29840,29840,29840,29840,29840,29840,22192,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22193,29840,22194,29840,22195,29840,29840,22196, 22197,29840,29840,29840,22198,29840,29840,22199,29840,22200, 29840,22201,29840,22202,22203,22204,22691,25300,29840,29840, 29840,29840,29840,29840,29840,25301,22692,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22693,29840, 29840,29840,29840,29840,29840,22694,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22695,29840,22696,29840,22697,29840,29840,22698,22699,29840, 29840,29840,22700,29840,29840,22701,29840,22702,29840,22703, 29840,22704,22705,22706,22691,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25302,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22693,29840,29840,29840, 29840,29840,29840,22694,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22695,29840, 22696,29840,22697,29840,29840,22698,22699,29840,29840,29840, 22700,29840,29840,22701,29840,22702,29840,22703,29840,22704, 22705,22706,22691,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22692,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25303,29840,29840, 29840,29840,29840,29840,22693,29840,29840,29840,29840,29840, 29840,22694,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22695,29840,23135,29840, 22697,29840,29840,22698,22699,29840,29840,29840,22700,29840, 29840,22701,29840,22702,29840,23136,29840,22704,23137,22706, 22187,22187,22187,22187,22187,22187,22187,22187,22187,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22707,29840,29840,29840,29840, 29840,29840,29840,29840,25313,29840,29840,29840,29840,29840, 29840,29840,22708,29840,29840,22709,25319,24367,22187,22187, 22187,22187,22187,22187,22187,22187,22187,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22242,29840,29840,29840,29840,24368, 3291,29840,25322,29840,29840,29840,29840,29840,29840,22207, 29840,29840,22208,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22209,29840,29840,29840,29840,29840, 29840,22210,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22211,29840,22212,29840, 22213,29840,29840,22214,22215,29840,29840,29840,22216,29840, 29840,22217,29840,22218,29840,22219,29840,22220,22221,22222, 3291,29840,22206,29840,29840,29840,29840,29840,29840,22207, 29840,29840,22208,25323,25323,25323,25323,25323,25323,25323, 25323,25323,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22209,29840,29840,29840,29840,29840, 29840,22210,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22211,29840,22212,29840, 22213,29840,29840,22214,22215,29840,29840,29840,22216,29840, 29840,22217,29840,22218,29840,22219,29840,22220,22221,22222, 22728,25324,29840,29840,29840,29840,29840,29840,29840,25325, 22729,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22730,29840,29840,29840,29840,29840,29840,22731, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22732,29840,22733,29840,22734,29840, 29840,22735,22736,29840,29840,29840,22737,29840,29840,22738, 29840,22739,29840,22740,29840,22741,22742,22743,22728,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25326,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22730,29840,29840,29840,29840,29840,29840,22731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22732,29840,22733,29840,22734,29840,29840,22735, 22736,29840,29840,29840,22737,29840,29840,22738,29840,22739, 29840,22740,29840,22741,22742,22743,22728,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25327,29840,29840,29840,29840,29840,29840,22730,29840, 29840,29840,29840,29840,29840,22731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22732,29840,23176,29840,22734,29840,29840,22735,22736,29840, 29840,29840,22737,29840,29840,22738,29840,22739,29840,23177, 29840,22741,23178,22743,22205,22205,22205,22205,22205,22205, 22205,22205,22205,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22744, 29840,29840,29840,29840,29840,29840,29840,29840,25337,29840, 29840,29840,29840,29840,29840,29840,22745,29840,29840,22746, 25343,24403,22205,22205,22205,22205,22205,22205,22205,22205, 22205,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22264,29840, 29840,29840,29840,24404, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,29840,10735,29840,29840,10736,10762,29840, 29840,29840,10738,29840,29840,10739,29840,10740,29840,10741, 29840,10742,10743,10744, 3291,29840,10728,29840,29840,29840, 29840,29840,29840, 8136,29840,29840,10729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,10730,29840, 29840,29840,29840,29840,29840,10731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 10732,29840,10733,29840,10735,29840,29840,10736,10762,29840, 29840,29840,10738,29840,29840,10739,29840,25346,29840,10741, 29840,10742,10743,11778,15613,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15614,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15615,29840,29840,29840, 29840,29840,29840,15616,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25347,29840, 15618,29840,15619,29840,29840,15620,15621,29840,29840,29840, 15622,29840,16766,15623,29840,15624,29840,15625,29840,15626, 15627,15628,15613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15614,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15615,29840,29840,29840,29840,29840, 29840,15616,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15617,29840,15618,29840, 15619,29840,29840,15620,15621,29840,29840,29840,15622,29840, 29840,15623,29840,15624,29840,15625,17815,25348,15627,15628, 3291,29840,14316,29840,29840,29840,29840,29840,29840,14317, 29840,29840,14318,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14319,29840,29840,29840,29840,29840, 29840,14320,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14321,29840,14322,15634, 14323,29840,29840,14324,14325,29840,29840,29840,14326,29840, 29840,14327,29840,14328,25352,14329,29840,14330,14331,14332, 3291,29840,14316,29840,29840,29840,29840,29840,29840,14317, 15645,29840,14318,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14319,29840,29840,29840,29840,29840, 29840,14320,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14321,29840,14322,29840, 14323,29840,29840,14324,25353,29840,29840,29840,14326,29840, 29840,14327,29840,14328,29840,14329,29840,14330,14331,14332, 15650,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15651,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15652,29840,29840,29840,29840,29840,29840,15653, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25357,29840,15655,29840,15656,29840, 29840,15657,15658,29840,29840,29840,15659,29840,16808,15660, 29840,15661,29840,15662,29840,15663,15664,15665,15650,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15651,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15652,29840,29840,29840,29840,29840,29840,15653,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15654,29840,15655,29840,15656,29840,29840,15657, 15658,29840,29840,29840,15659,29840,29840,15660,29840,15661, 29840,15662,17857,25358,15664,15665, 3291,29840,14334,29840, 29840,29840,29840,29840,29840,14335,29840,29840,14336,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14337,29840,29840,29840,29840,29840,29840,14338,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14339,29840,14340,15671,14341,29840,29840,14342, 14343,29840,29840,29840,14344,29840,29840,14345,29840,14346, 25362,14347,29840,14348,14349,14350, 3291,29840,14334,29840, 29840,29840,29840,29840,29840,14335,15682,29840,14336,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14337,29840,29840,29840,29840,29840,29840,14338,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14339,29840,14340,29840,14341,29840,29840,14342, 25363,29840,29840,29840,14344,29840,29840,14345,29840,14346, 29840,14347,29840,14348,14349,14350, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,24797,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139,25108, 139, 139, 139, 139, 139, 139, 139,29840,25109, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 24797,29840,29840,25405,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,25428,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,25429,29840,29840,29840,29840,25428,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139,25140,24824, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25435,25435,25435,25435,25435,25435,25435,25435,25435,29840, 25435,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24825,25438,25439,25439,25439,25439,25439,25439,25439, 25439,24836,29840,29840,29840,29840,29840,29840,25439,25439, 25439,25439,25439,25440,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25439,25439,25439,25439,25439, 25439,25442,25443,25443,25443,25443,25443,25443,25443,25443, 25444,29840,29840,29840,29840,29840,29840,25443,25443,25443, 25443,25443,25445,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25443,25443,25443,25443,25443,25443, 25447,25447,25447,25447,25447,25447,25447,25447,25447,29840, 29840,29840,29840,29840,29840,29840,25447,25447,25447,25447, 25447,25448,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22958, 29840,29840,29840,25447,25447,25447,25447,25447,25449,25452, 25453,25453,25453,25453,25453,25453,25453,25453,25155,29840, 29840,29840,29840,29840,29840,25453,25453,25453,25453,25453, 25454,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25453,25453,25453,25453,25453,25453,25455,25455, 25455,25455,25455,25455,25455,25455,25455,29840,29840,29840, 29840,29840,29840,29840,25455,25455,25455,25455,25455,25456, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25455,25455,25455,25455,25455,25457,25462,25463,25463, 25463,25463,25463,25463,25463,25463,25167,29840,29840,29840, 29840,29840,29840,25463,25463,25463,25463,25463,25464,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25463,25463,25463,25463,25463,25463,25465,25465,25465,25465, 25465,25465,25465,25465,25465,29840,29840,29840,29840,29840, 29840,29840,25465,25465,25465,25465,25465,25466,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25465, 25465,25465,25465,25465,25467,25473,25474,25474,25474,25474, 25474,25474,25474,25474,25181,29840,29840,29840,29840,29840, 29840,25474,25474,25474,25474,25474,25475,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25474,25474, 25474,25474,25474,25474,25476,25476,25476,25476,25476,25476, 25476,25476,25476,29840,29840,29840,29840,29840,29840,29840, 25476,25476,25476,25476,25476,25477,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25476,25476,25476, 25476,25476,25478,25205,29840,24533,24533,24533,24533,24533, 24533,24533,24533,24533,24536,29840,29840,29840,29840,29840, 29840,24533,24533,24533,24533,24533,24535,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,24533,24533, 24533,24533,24533,24533,25487,25488,25488,25488,25488,25488, 25488,25488,25488,24874,29840,29840,29840,29840,29840,29840, 25488,25488,25488,25488,25488,25489,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25488,25488,25488, 25488,25488,25488,25491,25492,25492,25492,25492,25492,25492, 25492,25492,25493,29840,29840,29840,29840,29840,29840,25492, 25492,25492,25492,25492,25494,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25492,25492,25492,25492, 25492,25492,25501,25502,25503,25504,25504,25504,25504,25504, 25504,29840,29840,29840,29840,29840,29840,29840,24546,24546, 24546,24546,24546,24550,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24546,24546,24546,24546,24546, 24546,25509,25509,25509,25509,25509,25509,25509,25509,25509, 24213,29840,29840,29840,29840,29840,29840,24543,24543,24543, 24543,24543,24544,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24543,24543,24543,24543,24543,24543, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840,22498, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,22514,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22958, 139, 139,22506, 3291,29840, 12866,25541,29840,29840,29840,29840,29840, 9703,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12867,29840,14135,29840,29840,29840,29840,12868, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12869,29840,12870,29840,12872,29840, 29840,12873,14133,29840,29840,29840,12875,29840,29840,12876, 29840,12877,29840,12878,29840,12879,12880,12881, 3291,29840, 12866,29840,29840,29840,29840,29840,29840, 9703,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,12867,29840,29840,29840,29840,29840,29840,12868, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,12869,29840,12870,29840,12872,29840, 29840,12873,14133,29840,29840,29840,25542,29840,29840,12876, 29840,12877,29840,12878,29840,12879,12880,12881,25543,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14169,29840,29840,29840,29840,29840,29840,14170,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14171,29840,14172,29840,14173,29840,29840,14174, 14175,29840,29840,29840,14176,29840,29840,14177,29840,14178, 29840,14179,29840,14180,14181,14182,15471,14168,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14169, 29840,29840,29840,29840,29840,29840,14170,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14171,29840,14172,29840,14173,29840,15462,14174,14175, 29840,29840,29840,14176,29840,25544,14177,29840,14178,29840, 14179,29840,14180,14181,14182, 3291,29840,12895,25545,29840, 29840,29840,29840,29840,12896,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12897, 29840,14167,29840,29840,29840,29840,12898,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12899,29840,12900,29840,12901,29840,29840,12902,12903, 29840,29840,29840,12904,29840,29840,12905,29840,12906,29840, 12907,29840,12908,12909,12910, 3291,29840,12895,29840,29840, 29840,29840,29840,29840,12896,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12897, 29840,29840,29840,29840,29840,29840,12898,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12899,29840,12900,29840,12901,29840,29840,12902,12903, 29840,29840,29840,25546,29840,29840,12905,29840,12906,29840, 12907,29840,12908,12909,12910,25547,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14202,29840,29840, 29840,29840,29840,29840,14203,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14204, 29840,14205,29840,14206,29840,29840,14207,14208,29840,29840, 29840,14209,29840,29840,14210,29840,14211,29840,14212,29840, 14213,14214,14215,15507,14201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14202,29840,29840,29840, 29840,29840,29840,14203,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14204,29840, 14205,29840,14206,29840,15498,14207,14208,29840,29840,29840, 14209,29840,25548,14210,29840,14211,29840,14212,29840,14213, 14214,14215, 3291,29840,12912,25549,29840,29840,29840,29840, 29840,12913,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12914,29840,14200,29840, 29840,29840,29840,12915,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12916,29840, 12917,29840,12918,29840,29840,12919,12920,29840,29840,29840, 12921,29840,29840,12922,29840,12923,29840,12924,29840,12925, 12926,12927, 3291,29840,12912,29840,29840,29840,29840,29840, 29840,12913,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12914,29840,29840,29840, 29840,29840,29840,12915,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12916,29840, 12917,29840,12918,29840,29840,12919,12920,29840,29840,29840, 25550,29840,29840,12922,29840,12923,29840,12924,29840,12925, 12926,12927,10695,29840,29840,29840,29840,29840,29840,29840, 29840,29840,10696,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24936,29840,29840,29840,29840, 29840,29840,29840,29840,10697,29840,29840,29840,29840,29840, 29840,10698,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10699,29840,10700,29840, 10701,29840,29840,10702,10703,29840,29840,29840,10704,29840, 11748,10705,29840,10706,29840,10707,29840,10708,10709,10710, 25552,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25553,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25554,29840,29840,29840,29840,29840,29840,25555, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25556,29840,25557,29840,25558,29840, 29840,25559,25560,29840,29840,29840,25561,29840,29840,25562, 29840,25563,29840,25564,29840,25565,25566,25567,20272,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20274,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20275,29840,29840,29840,29840,29840,29840,20276,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20277,29840,20278,29840,20280,29840,29840,20281, 20282,29840,29840,29840,20283,25568,29840,20284,29840,20285, 29840,20286,29840,20287,20288,20289,20272,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20274,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20275,29840, 29840,29840,29840,29840,29840,20276,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20277,29840,20278,29840,20280,29840,29840,20281,20282,29840, 29840,29840,20283,25569,29840,20284,29840,20285,29840,20286, 29840,20287,20288,20289, 3291,29840,22103,29840,29840,29840, 29840,29840,29840,20271,29840,29840,22104,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22105,29840, 29840,29840,29840,29840,29840,22106,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22107,29840,22108,22109,22110,29840,29840,22111,22137,29840, 29840,29840,22113,29840,29840,22114,29840,22115,29840,25571, 29840,22117,22118,22119, 3291,29840,22103,29840,29840,29840, 29840,29840,29840,20271,29840,29840,22104,29840,29840,25574, 29840,25575,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22105,29840, 22603,29840,29840,29840,29840,22106,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22107,29840,22108,29840,22110,29840,29840,22111,22137,29840, 29840,29840,22113,29840,29840,22114,29840,22115,29840,22116, 29840,22117,22118,22119, 3291,29840,14249,29840,29840,29840, 29840,29840,29840,10694,29840,29840,14250,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14251,29840, 29840,29840,29840,29840,29840,14252,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14253,29840,14254,29840,14256,29840,29840,25581,15542,29840, 29840,29840,14259,29840,29840,14260,29840,14261,29840,14262, 29840,14263,14264,14265, 3291,29840,14249,29840,29840,29840, 29840,29840,29840,10694,29840,29840,14250,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14251,29840, 29840,29840,29840,29840,29840,14252,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14253,29840,14254,25582,14256,29840,29840,14257,15542,29840, 29840,29840,14259,15555,29840,14260,29840,14261,29840,14262, 29840,14263,14264,14265,25552,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25553,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25554,29840,29840,29840, 29840,29840,29840,25555,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25556,29840, 25557,29840,25558,29840,29840,25559,25560,29840,29840,29840, 25561,29840,29840,25562,29840,25563,29840,25564,29840,25565, 25566,25567,20313,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20314,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20315,29840,29840,29840,29840,29840, 29840,20316,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20317,29840,20318,29840, 20319,29840,29840,20320,20321,29840,29840,29840,20322,25586, 29840,20323,29840,20324,29840,20325,29840,20326,20327,20328, 20313,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20314,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20315,29840,29840,29840,29840,29840,29840,20316, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20317,29840,20318,29840,20319,29840, 29840,20320,20321,29840,29840,29840,20322,25587,29840,20323, 29840,20324,29840,20325,29840,20326,20327,20328, 3291,29840, 22156,29840,29840,29840,29840,29840,29840,20312,29840,29840, 22157,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22158,29840,29840,29840,29840,29840,29840,22159, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22160,29840,22161,22162,22163,29840, 29840,22164,22186,29840,29840,29840,22166,29840,29840,22167, 29840,22168,29840,25590,29840,22170,22171,22172, 3291,29840, 22156,29840,29840,29840,29840,29840,29840,20312,29840,29840, 22157,29840,29840,25593,29840,25594,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22158,29840,22656,29840,29840,29840,29840,22159, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22160,29840,22161,29840,22163,29840, 29840,22164,22186,29840,29840,29840,22166,29840,29840,22167, 29840,22168,29840,22169,29840,22170,22171,22172, 3291,29840, 22188,29840,29840,29840,29840,29840,29840,22189,29840,29840, 22190,29840,29840,25602,29840,25603,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22191,29840,22690,29840,29840,29840,29840,22192, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22193,29840,22194,29840,22195,29840, 29840,22196,22197,29840,29840,29840,22198,29840,29840,22199, 29840,22200,29840,22201,29840,22202,22203,22204, 3291,29840, 22188,24989,29840,29840,29840,29840,29840,22189,29840,29840, 22190,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22191,29840,29840,29840,29840,29840,29840,22192, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22193,29840,22194,29840,22195,29840, 29840,22196,22197,29840,29840,29840,22198,29840,29840,22199, 29840,22200,29840,22201,29840,22202,22203,22204,25604,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,29840,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22695,29840,22696,29840,22697,29840,29840,22698, 22699,29840,29840,29840,22700,29840,29840,22701,29840,22702, 29840,22703,29840,22704,22705,22706,22691,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22692,25605,25605,25605, 25605,25605,25605,25605,25605,25605,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22693,29840, 29840,29840,29840,29840,29840,22694,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22695,29840,22696,29840,22697,29840,29840,22698,22699,29840, 29840,29840,22700,29840,29840,22701,29840,22702,29840,22703, 29840,22704,22705,22706,22189,22189,22189,22189,22189,22189, 22189,22189,22189,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23135, 29840,29840,29840,29840,29840,29840,29840,29840,25606,29840, 29840,29840,29840,29840,29840,29840,23136,29840,29840,23137, 25612,24676,22189,22189,22189,22189,22189,22189,22189,22189, 22189,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22773,29840, 29840,29840,29840,24677, 3291,29840,22206,29840,29840,29840, 29840,29840,29840,22207,29840,29840,22208,29840,29840,25621, 29840,25622,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22209,29840, 22727,29840,29840,29840,29840,22210,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22211,29840,22212,29840,22213,29840,29840,22214,22215,29840, 29840,29840,22216,29840,29840,22217,29840,22218,29840,22219, 29840,22220,22221,22222, 3291,29840,22206,25018,29840,29840, 29840,29840,29840,22207,29840,29840,22208,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22209,29840, 29840,29840,29840,29840,29840,22210,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22211,29840,22212,29840,22213,29840,29840,22214,22215,29840, 29840,29840,22216,29840,29840,22217,29840,22218,29840,22219, 29840,22220,22221,22222,25623,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22729,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22730,29840,29840,29840, 29840,29840,29840,22731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22732,29840, 22733,29840,22734,29840,29840,22735,22736,29840,29840,29840, 22737,29840,29840,22738,29840,22739,29840,22740,29840,22741, 22742,22743,22728,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22729,25624,25624,25624,25624,25624,25624,25624, 25624,25624,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22730,29840,29840,29840,29840,29840, 29840,22731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22732,29840,22733,29840, 22734,29840,29840,22735,22736,29840,29840,29840,22737,29840, 29840,22738,29840,22739,29840,22740,29840,22741,22742,22743, 22207,22207,22207,22207,22207,22207,22207,22207,22207,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23176,29840,29840,29840,29840, 29840,29840,29840,29840,25625,29840,29840,29840,29840,29840, 29840,29840,23177,29840,29840,23178,25631,24709,22207,22207, 22207,22207,22207,22207,22207,22207,22207,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22793,29840,29840,29840,29840,24710, 3291,29840,10728,29840,29840,29840,29840,29840,29840, 8136, 29840,29840,10729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25047,29840,29840,29840,29840, 29840,29840,29840,29840,10730,29840,29840,29840,29840,29840, 29840,10731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,10732,29840,10733,29840, 10735,29840,29840,10736,10762,29840,29840,29840,10738,29840, 11784,10739,29840,10740,29840,10741,29840,10742,10743,10744, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,16763,15619,29840, 29840,15620,15621,29840,29840,29840,15622,29840,29840,15623, 29840,15624,25640,15625,29840,15626,15627,15628,15613,29840, 29840,29840,29840,29840,29840,29840,16774,29840,15614,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15615,29840,29840,29840,29840,29840,29840,15616,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15617,29840,15618,29840,15619,29840,29840,15620, 25641,29840,29840,29840,15622,29840,29840,15623,29840,15624, 29840,15625,29840,15626,15627,15628, 3291,29840,14316,29840, 29840,29840,29840,29840,29840,14317,29840,29840,14318,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14319,29840,29840,29840,29840,29840,29840,14320,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14321,29840,14322,29840,14323,29840,29840,25645, 14325,29840,29840,29840,14326,29840,29840,14327,29840,14328, 29840,14329,29840,14330,14331,14332, 3291,29840,14316,29840, 29840,29840,29840,29840,29840,14317,29840,29840,14318,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14319,29840,29840,29840,29840,29840,29840,14320,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14321,29840,14322,25646,14323,29840,29840,14324, 14325,29840,29840,29840,14326,15638,29840,14327,29840,14328, 29840,14329,29840,14330,14331,14332,15650,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15652,29840, 29840,29840,29840,29840,29840,15653,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15654,29840,15655,16805,15656,29840,29840,15657,15658,29840, 29840,29840,15659,29840,29840,15660,29840,15661,25650,15662, 29840,15663,15664,15665,15650,29840,29840,29840,29840,29840, 29840,29840,16816,29840,15651,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15652,29840,29840,29840, 29840,29840,29840,15653,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15654,29840, 15655,29840,15656,29840,29840,15657,25651,29840,29840,29840, 15659,29840,29840,15660,29840,15661,29840,15662,29840,15663, 15664,15665, 3291,29840,14334,29840,29840,29840,29840,29840, 29840,14335,29840,29840,14336,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14337,29840,29840,29840, 29840,29840,29840,14338,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14339,29840, 14340,29840,14341,29840,29840,25655,14343,29840,29840,29840, 14344,29840,29840,14345,29840,14346,29840,14347,29840,14348, 14349,14350, 3291,29840,14334,29840,29840,29840,29840,29840, 29840,14335,29840,29840,14336,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14337,29840,29840,29840, 29840,29840,29840,14338,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14339,29840, 14340,25656,14341,29840,29840,14342,14343,29840,29840,29840, 14344,15675,29840,14345,29840,14346,29840,14347,29840,14348, 14349,14350,25367,25073,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25661,25661,25661,25661,25661,25661, 25661,25661,25661,29840,25661,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25074,23744,23323,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25666,25666, 25666,25666,25666,25666,25666,25666,25666,29840,25666,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23324, 139, 139,29840, 139,25108, 139, 139, 139, 139, 139, 139, 139,29840,25109, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,24797,29840,29840,29840, 29840,29840,25698,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139,25406,25113, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25700,25700,25700,25700,25700,25700,25700,25700,25700,29840, 25700,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25114, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,25719,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,25720,29840,29840,29840,29840,25719,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139,25723,25723, 25723,25723,25723,25723,25723,25723,25723,29840,29840,29840, 29840,29840,29840,29840,25723,25723,25723,25723,25723,25724, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25723,25723,25723,25723,25723,25723,25140,24824,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25726, 25726,25726,25726,25726,25726,25726,25726,25726,29840,25726, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24825,25140,24824,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25435,25435,25435,25435,25435,25435,25435, 25435,25435,29840,25435,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24825,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25727,25730, 25731,25731,25731,25731,25731,25731,25731,25731,25444,29840, 29840,29840,29840,29840,29840,25731,25731,25731,25731,25731, 25732,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25731,25731,25731,25731,25731,25731,25733,25733, 25733,25733,25733,25733,25733,25733,25733,25734,29840,29840, 29840,29840,29840,29840,25733,25733,25733,25733,25733,25735, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25733,25733,25733,25733,25733,25736,25739,25739,25739, 25739,25739,25739,25739,25739,25739,25740,29840,29840,29840, 29840,29840,29840,25739,25739,25739,25739,25739,25741,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22958,29840,29840,29840, 25739,25739,25739,25739,25739,25739,25745,25746,25746,25746, 25746,25746,25746,25746,25746,25155,29840,29840,29840,29840, 29840,29840,25746,25746,25746,25746,25746,25747,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25746, 25746,25746,25746,25746,25746,25749,25749,25749,25749,25749, 25749,25749,25749,25749,25750,29840,29840,29840,29840,29840, 29840,25749,25749,25749,25749,25749,25751,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25749,25749, 25749,25749,25749,25749,25757,25758,25758,25758,25758,25758, 25758,25758,25758,25167,29840,29840,29840,29840,29840,29840, 25758,25758,25758,25758,25758,25759,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25758,25758,25758, 25758,25758,25758,25761,25761,25761,25761,25761,25761,25761, 25761,25761,25762,29840,29840,29840,29840,29840,29840,25761, 25761,25761,25761,25761,25763,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25761,25761,25761,25761, 25761,25761,25769,25770,25771,25772,25772,25772,25772,25772, 25772,29840,29840,29840,29840,29840,29840,29840,24849,24849, 24849,24849,24849,24853,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24849,24849,24849,24849,24849, 24849,25773,25774,25774,25774,25774,25774,25774,25774,25774, 25181,29840,29840,29840,29840,29840,29840,25774,25774,25774, 25774,25774,25775,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25774,25774,25774,25774,25774,25774, 25777,25777,25777,25777,25777,25777,25777,25777,25777,25778, 29840,29840,29840,29840,29840,29840,25777,25777,25777,25777, 25777,25779,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25777,25777,25777,25777,25777,25777,25785, 25786,25787,25788,25788,25788,25788,25788,25788,29840,29840, 29840,29840,29840,29840,29840,24860,24860,24860,24860,24860, 24864,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24860,24860,24860,24860,24860,24860,25205,29840, 25789,25789,25789,25789,25789,25789,25789,25789,25789,24536, 29840,29840,29840,29840,29840,29840,24857,24857,24857,24857, 24857,24858,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24857,24857,24857,24857,24857,24857,25790, 25791,25791,25791,25791,25791,25791,25791,25791,25493,29840, 29840,29840,29840,29840,29840,25791,25791,25791,25791,25791, 25792,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25791,25791,25791,25791,25791,25791,25793,25793, 25793,25793,25793,25793,25793,25793,25793,29840,29840,29840, 29840,29840,29840,29840,25793,25793,25793,25793,25793,25794, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25793,25793,25793,25793,25793,25795,24873,24873,24873, 24873,24873,24873,24873,24873,24873,24876,29840,29840,29840, 29840,29840,29840,24873,24873,24873,24873,24873,24875,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 24873,24873,24873,24873,24873,24873,24869,24869,24869,24869, 24869,24869,24869,24869,24869,24213,29840,29840,29840,29840, 29840,29840,24869,24869,24869,24869,24869,24870,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,24869, 24869,24869,24869,24869,24869, 3291,29840,12866,29840,29840, 29840,29840,29840,29840, 9703,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12867, 29840,29840,29840,29840,29840,29840,12868,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,12869,29840,12870,29840,12872,29840,29840,12873,14133, 29840,29840,29840,12875,29840,29840,12876,29840,12877,29840, 12878,29840,12879,12880,12881, 3291,29840,12866,29840,29840, 29840,29840,29840,29840, 9703,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,12867, 29840,29840,29840,29840,29840,29840,12868,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14142,14144,29840,12870,29840,12872,29840,29840,12873,14133, 29840,29840,29840,12875,29840,29840,12876,29840,12877,29840, 12878,29840,12879,12880,12881,14145,14168,25835,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14169,29840, 15458,29840,29840,29840,29840,14170,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14171,29840,14172,29840,14173,29840,29840,14174,14175,29840, 29840,29840,14176,29840,29840,14177,29840,14178,29840,14179, 29840,14180,14181,14182,14168,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14169,29840,29840,29840, 29840,29840,29840,14170,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14171,29840, 14172,29840,14173,29840,29840,14174,14175,29840,29840,29840, 25836,29840,29840,14177,29840,14178,29840,14179,29840,14180, 14181,14182, 3291,29840,12895,29840,29840,29840,29840,29840, 29840,12896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12897,29840,29840,29840, 29840,29840,29840,12898,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,12899,29840, 12900,29840,12901,29840,29840,12902,12903,29840,29840,29840, 12904,29840,29840,12905,29840,12906,29840,12907,29840,12908, 12909,12910, 3291,29840,12895,29840,29840,29840,29840,29840, 29840,12896,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,12897,29840,29840,29840, 29840,29840,29840,12898,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,16638,14190,29840, 12900,29840,12901,29840,29840,12902,12903,29840,29840,29840, 12904,29840,29840,12905,29840,12906,29840,12907,29840,12908, 12909,12910,14191,14201,25837,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14202,29840,15494,29840,29840, 29840,29840,14203,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14204,29840,14205, 29840,14206,29840,29840,14207,14208,29840,29840,29840,14209, 29840,29840,14210,29840,14211,29840,14212,29840,14213,14214, 14215,14201,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14202,29840,29840,29840,29840,29840,29840, 14203,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14204,29840,14205,29840,14206, 29840,29840,14207,14208,29840,29840,29840,25838,29840,29840, 14210,29840,14211,29840,14212,29840,14213,14214,14215, 3291, 29840,12912,29840,29840,29840,29840,29840,29840,12913,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12914,29840,29840,29840,29840,29840,29840, 12915,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,12916,29840,12917,29840,12918, 29840,29840,12919,12920,29840,29840,29840,12921,29840,29840, 12922,29840,12923,29840,12924,29840,12925,12926,12927, 3291, 29840,12912,29840,29840,29840,29840,29840,29840,12913,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,12914,29840,29840,29840,29840,29840,29840, 12915,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,16674,14223,29840,12917,29840,12918, 29840,29840,12919,12920,29840,29840,29840,12921,29840,29840, 12922,29840,12923,29840,12924,29840,12925,12926,12927,14224, 25552,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25553,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25554,29840,29840,29840,29840,29840,29840,25555, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25556,29840,25557,29840,25558,29840, 29840,25559,25560,29840,29840,29840,25561,29840,29840,25562, 29840,25563,29840,25564,29840,25565,25566,25567,25552,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25553,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,25839,29840,29840,29840,29840,25555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25556,29840,25557,29840,25558,29840,29840,25559, 25560,29840,29840,29840,25561,29840,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567,20272,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20274,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25860,29840,29840,29840,29840,29840,29840,20275,29840, 29840,29840,29840,29840,29840,20276,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20277,29840,20278,20279,20280,29840,29840,20281,20282,29840, 29840,29840,20283,29840,29840,20284,29840,20285,29840,20286, 29840,20287,20288,20289,20272,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20274,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20275,29840,29840,29840, 29840,29840,29840,20276,29840,29840,25861,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20277,29840, 20278,20279,20280,29840,29840,20281,20282,29840,29840,29840, 20283,29840,29840,20284,29840,20285,29840,20286,29840,20287, 20288,20289, 3291,29840,22103,29840,29840,29840,29840,29840, 29840,20271,29840,29840,22104,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22105,29840,29840,29840, 29840,29840,29840,22106,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22107,29840, 22108,29840,22110,29840,29840,22111,22137,29840,29840,29840, 22113,29840,25863,22114,29840,22115,29840,22116,29840,22117, 22118,22119,22618, 3291,29840,22103,29840,29840,29840,29840, 29840,29840,20271,29840,29840,22104,25866,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22105,29840,29840, 29840,29840,29840,29840,22106,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22107, 29840,22108,29840,22110,29840,29840,22111,22137,29840,29840, 29840,22113,29840,29840,22114,29840,22115,29840,22116,29840, 22117,22118,22119, 3291,29840,14249,29840,29840,29840,29840, 29840,29840,10694,29840,29840,14250,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25873,29840, 29840,29840,29840,29840,29840,29840,29840,14251,29840,29840, 29840,29840,29840,29840,14252,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14253, 29840,14254,29840,14256,29840,29840,14257,15542,29840,29840, 29840,14259,29840,15553,14260,29840,14261,29840,14262,29840, 14263,14264,14265, 3291,29840,14249,29840,29840,29840,29840, 29840,29840,10694,29840,29840,14250,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14251,29840,29840, 29840,29840,29840,29840,14252,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,14253, 29840,14254,29840,25874,29840,29840,14257,15542,29840,29840, 29840,14259,29840,29840,14260,29840,14261,29840,14262,29840, 14263,14264,14265,20313,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20314,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25878,29840, 29840,29840,29840,29840,29840,20315,29840,29840,29840,29840, 29840,29840,20316,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20317,29840,20318, 21646,20319,29840,29840,20320,20321,29840,29840,29840,20322, 29840,29840,20323,29840,20324,29840,20325,29840,20326,20327, 20328,20313,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20314,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20315,29840,29840,29840,29840,29840,29840, 20316,29840,29840,25879,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20317,29840,20318,21646,20319, 29840,29840,20320,20321,29840,29840,29840,20322,29840,29840, 20323,29840,20324,29840,20325,29840,20326,20327,20328, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,22670,22186,29840,29840,29840,22671,29840,29840, 22167,29840,22168,29840,22169,29840,22170,22171,22172, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,22164,22186,29840,29840,29840,22166,29840,25881, 22167,29840,22168,29840,22169,29840,22170,22171,22172,22673, 3291,29840,22188,29840,29840,29840,29840,29840,29840,22189, 29840,29840,22190,25893,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22191,29840,29840,29840,29840,29840, 29840,22192,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22193,29840,22194,29840, 22195,29840,29840,22196,22197,29840,29840,29840,22198,29840, 29840,22199,29840,22200,29840,22201,29840,22202,22203,22204, 3291,29840,22188,29840,29840,29840,29840,29840,29840,22189, 29840,29840,22190,25894,25894,25894,25894,25895,25894,25894, 25894,25894,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22191,29840,29840,29840,29840,29840, 29840,22192,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22193,29840,22194,29840, 22195,29840,29840,22196,22197,29840,29840,29840,22198,29840, 29840,22199,29840,22200,29840,22201,29840,22202,22203,22204, 22691,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22692,29840,29840,25896,29840,25897,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22693,29840,23134,29840,29840,29840,29840,22694, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22695,29840,22696,29840,22697,29840, 29840,22698,22699,29840,29840,29840,22700,29840,29840,22701, 29840,22702,29840,22703,29840,22704,22705,22706,22691,25300, 29840,29840,29840,29840,29840,29840,29840,29840,22692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,29840,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22695,29840,22696,29840,22697,29840,29840,22698, 22699,29840,29840,29840,22700,29840,29840,22701,29840,22702, 29840,22703,29840,22704,22705,22706, 3291,29840,22206,29840, 29840,29840,29840,29840,29840,22207,29840,29840,22208,25909, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22209,29840,29840,29840,29840,29840,29840,22210,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22211,29840,22212,29840,22213,29840,29840,22214, 22215,29840,29840,29840,22216,29840,29840,22217,29840,22218, 29840,22219,29840,22220,22221,22222, 3291,29840,22206,29840, 29840,29840,29840,29840,29840,22207,29840,29840,22208,25910, 25910,25910,25910,25911,25910,25910,25910,25910,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22209,29840,29840,29840,29840,29840,29840,22210,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22211,29840,22212,29840,22213,29840,29840,22214, 22215,29840,29840,29840,22216,29840,29840,22217,29840,22218, 29840,22219,29840,22220,22221,22222,22728,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22729,29840,29840,25912, 29840,25913,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22730,29840, 23175,29840,29840,29840,29840,22731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22732,29840,22733,29840,22734,29840,29840,22735,22736,29840, 29840,29840,22737,29840,29840,22738,29840,22739,29840,22740, 29840,22741,22742,22743,22728,25324,29840,29840,29840,29840, 29840,29840,29840,29840,22729,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22730,29840,29840,29840, 29840,29840,29840,22731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22732,29840, 22733,29840,22734,29840,29840,22735,22736,29840,29840,29840, 22737,29840,29840,22738,29840,22739,29840,22740,29840,22741, 22742,22743,15613,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15614,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15615,29840,29840,29840,29840,29840, 29840,15616,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15617,29840,15618,29840, 15619,29840,29840,25925,15621,29840,29840,29840,15622,29840, 29840,15623,29840,15624,29840,15625,29840,15626,15627,15628, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,25926,15619,29840, 29840,15620,15621,29840,29840,29840,15622,16767,29840,15623, 29840,15624,29840,15625,29840,15626,15627,15628, 3291,29840, 14316,29840,29840,29840,29840,29840,29840,14317,29840,29840, 14318,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25930,29840,29840,29840,29840,29840,29840, 29840,29840,14319,29840,29840,29840,29840,29840,29840,14320, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14321,29840,14322,29840,14323,29840, 29840,14324,14325,29840,29840,29840,14326,29840,15637,14327, 29840,14328,29840,14329,29840,14330,14331,14332, 3291,29840, 14316,29840,29840,29840,29840,29840,29840,14317,29840,29840, 14318,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14319,29840,29840,29840,29840,29840,29840,14320, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,14321,29840,14322,29840,25931,29840, 29840,14324,14325,29840,29840,29840,14326,29840,29840,14327, 29840,14328,29840,14329,29840,14330,14331,14332,15650,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15651,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15652,29840,29840,29840,29840,29840,29840,15653,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15654,29840,15655,29840,15656,29840,29840,25935, 15658,29840,29840,29840,15659,29840,29840,15660,29840,15661, 29840,15662,29840,15663,15664,15665,15650,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15652,29840, 29840,29840,29840,29840,29840,15653,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15654,29840,15655,25936,15656,29840,29840,15657,15658,29840, 29840,29840,15659,16809,29840,15660,29840,15661,29840,15662, 29840,15663,15664,15665, 3291,29840,14334,29840,29840,29840, 29840,29840,29840,14335,29840,29840,14336,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25940, 29840,29840,29840,29840,29840,29840,29840,29840,14337,29840, 29840,29840,29840,29840,29840,14338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14339,29840,14340,29840,14341,29840,29840,14342,14343,29840, 29840,29840,14344,29840,15674,14345,29840,14346,29840,14347, 29840,14348,14349,14350, 3291,29840,14334,29840,29840,29840, 29840,29840,29840,14335,29840,29840,14336,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14337,29840, 29840,29840,29840,29840,29840,14338,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14339,29840,14340,29840,25941,29840,29840,14342,14343,29840, 29840,29840,14344,29840,29840,14345,29840,14346,29840,14347, 29840,14348,14349,14350,25367,25073,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25945,25945,25945,25945, 25945,25945,25945,25945,25945,29840,25945,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25074,25367,25073, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25661,25661,25661,25661,25661,25661,25661,25661,25661,29840, 25661,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25074,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25946,23744,23323,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25950,25950, 25950,25950,25950,25950,25950,25950,25950,29840,25950,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23324, 23744,23323,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25666,25666,25666,25666,25666,25666,25666,25666, 25666,29840,25666,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23324,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25951,25673,25384, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25959,25959,25959,25959,25959,25959,25959,25959,25959,29840, 25959,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25385,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25386, 23744,23323,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25965,25965,25965,25965,25965,25965,25965,25965, 25965,29840,25965,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23324, 139, 139,29840, 139,25981, 139, 139, 139, 139, 139, 139, 139,29840,25109, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 24797,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,25406,25113,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25982,25982,25982,25982,25982,25982, 25982,25982,25982,29840,25982,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25114,25406,25113,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25700,25700, 25700,25700,25700,25700,25700,25700,25700,29840,25700,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25114, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25983, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 26001,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,26002,29840,29840,29840,29840,26001,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 26005,26005,26005,26005,26005,26005,26005,26005,26005,29840, 29840,29840,29840,29840,29840,29840,26005,26005,26005,26005, 26005,26006,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26005,26005,26005,26005,26005,26005,25140, 24824,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25726,25726,25726,25726,25726,25726,25726,25726,25726, 29840,25726,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,24825,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26009,26012,26013,26013, 26013,26013,26013,26013,26013,26013,25444,29840,29840,29840, 29840,29840,29840,26013,26013,26013,26013,26013,26014,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26013,26013,26013,26013,26013,26013,26016,26016,26016,26016, 26016,26016,26016,26016,26016,26017,29840,29840,29840,29840, 29840,29840,26016,26016,26016,26016,26016,26018,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26016, 26016,26016,26016,26016,26016,26019,26019,26019,26019,26019, 26019,26019,26019,26019,29840,29840,29840,29840,29840,29840, 29840,26019,26019,26019,26019,26019,26020,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22958,29840,29840,29840,26019,26019, 26019,26019,26019,26019,26024,26024,26024,26024,26024,26024, 26024,26024,26024,25740,29840,29840,29840,29840,29840,29840, 26024,26024,26024,26024,26024,26025,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26024,26024,26024, 26024,26024,26024,26026,26026,26026,26026,26026,26026,26026, 26026,26026,29840,29840,29840,29840,29840,29840,29840,26026, 26026,26026,26026,26026,26027,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26026,26026,26026,26026, 26026,26026,26031,26031,26031,26031,26031,26031,26031,26031, 26031,25750,29840,29840,29840,29840,29840,29840,26031,26031, 26031,26031,26031,26032,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26031,26031,26031,26031,26031, 26031,26033,26033,26033,26033,26033,26033,26033,26033,26033, 29840,29840,29840,29840,29840,29840,29840,26033,26033,26033, 26033,26033,26034,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26033,26033,26033,26033,26033,26033, 26039,26039,26039,26039,26039,26039,26039,26039,26039,25762, 29840,29840,29840,29840,29840,29840,26039,26039,26039,26039, 26039,26040,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26039,26039,26039,26039,26039,26039,26041, 26041,26041,26041,26041,26041,26041,26041,26041,29840,29840, 29840,29840,29840,29840,29840,26041,26041,26041,26041,26041, 26042,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26041,26041,26041,26041,26041,26041,25205,29840, 25166,25166,25166,25166,25166,25166,25166,25166,25166,25169, 29840,29840,29840,29840,29840,29840,25166,25166,25166,25166, 25166,25168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25166,25166,25166,25166,25166,25166,26050, 26050,26050,26050,26050,26050,26050,26050,26050,25778,29840, 29840,29840,29840,29840,29840,26050,26050,26050,26050,26050, 26051,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26050,26050,26050,26050,26050,26050,26052,26052, 26052,26052,26052,26052,26052,26052,26052,29840,29840,29840, 29840,29840,29840,29840,26052,26052,26052,26052,26052,26053, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26052,26052,26052,26052,26052,26052,25180,25180,25180, 25180,25180,25180,25180,25180,25180,25183,29840,29840,29840, 29840,29840,29840,25180,25180,25180,25180,25180,25182,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25180,25180,25180,25180,25180,25180,25176,25176,25176,25176, 25176,25176,25176,25176,25176,24536,29840,29840,29840,29840, 29840,29840,25176,25176,25176,25176,25176,25177,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25176, 25176,25176,25176,25176,25176,26061,26062,26062,26062,26062, 26062,26062,26062,26062,25493,29840,29840,29840,29840,29840, 29840,26062,26062,26062,26062,26062,26063,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26062,26062, 26062,26062,26062,26062,26065,26065,26065,26065,26065,26065, 26065,26065,26065,26066,29840,29840,29840,29840,29840,29840, 26065,26065,26065,26065,26065,26067,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26065,26065,26065, 26065,26065,26065,26073,26074,26075,26076,26076,26076,26076, 26076,26076,29840,29840,29840,29840,29840,29840,29840,25197, 25197,25197,25197,25197,25201,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25197,25197,25197,25197, 25197,25197,26077,26077,26077,26077,26077,26077,26077,26077, 26077,24876,29840,29840,29840,29840,29840,29840,25194,25194, 25194,25194,25194,25195,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25194,25194,25194,25194,25194, 25194,14168,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14169,29840,29840,29840,29840,29840,29840, 14170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14171,29840,14172,29840,14173, 29840,29840,14174,14175,29840,29840,29840,14176,29840,29840, 14177,29840,14178,29840,14179,29840,14180,14181,14182,14168, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14169,29840,29840,29840,29840,29840,29840,14170,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,17669,15466,29840,14172,29840,14173,29840,29840, 14174,14175,29840,29840,29840,14176,29840,29840,14177,29840, 14178,29840,14179,29840,14180,14181,14182,15467,14201,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 14202,29840,29840,29840,29840,29840,29840,14203,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,14204,29840,14205,29840,14206,29840,29840,14207, 14208,29840,29840,29840,14209,29840,29840,14210,29840,14211, 29840,14212,29840,14213,14214,14215,14201,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,14202,29840, 29840,29840,29840,29840,29840,14203,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,17704, 15502,29840,14205,29840,14206,29840,29840,14207,14208,29840, 29840,29840,14209,29840,29840,14210,29840,14211,29840,14212, 29840,14213,14214,14215,15503,25552,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25553,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25554,29840,29840, 29840,29840,29840,29840,25555,29840,29840,29840,29840,29840, 26114,29840,29840,29840,29840,29840,29840,29840,29840,25556, 29840,25557,29840,25558,29840,29840,25559,25560,29840,29840, 29840,25561,29840,29840,25562,29840,25563,29840,25564,29840, 25565,25566,25567,25552,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25553,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25554,29840,29840,29840,29840, 29840,29840,25555,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25556,29840,25557, 29840,25558,29840,25846,25559,25560,29840,29840,29840,25561, 29840,26115,25562,29840,25563,29840,25564,29840,25565,25566, 25567,20272,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20274,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20275,29840,29840,29840,29840,29840,29840, 20276,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26135,20277,29840,20278,29840,20280, 29840,29840,20281,20282,29840,29840,29840,20283,29840,29840, 20284,29840,20285,29840,20286,29840,20287,20288,20289,20272, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20274, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20275,29840,29840,29840,29840,29840,29840,20276,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20277,29840,20278,29840,20280,29840,29840, 20281,20282,29840,29840,29840,20283,29840,29840,20284,29840, 26136,29840,20286,29840,20287,20288,20289,20272,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20274,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20275, 29840,29840,29840,29840,29840,29840,20276,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20277,29840,20278,29840,20280,29840,29840,20281,26137, 29840,29840,29840,20283,29840,29840,20284,29840,20285,29840, 20286,29840,20287,20288,20289, 3291,29840,22103,29840,29840, 29840,29840,29840,29840,20271,29840,29840,22104,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22105, 29840,29840,29840,29840,29840,29840,22106,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22107,29840,22108,29840,22110,29840,29840,22111,22137, 29840,29840,29840,22113,29840,29840,22114,29840,26138,29840, 22116,29840,22117,22118,22119,20272,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20274,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20275,29840,29840, 29840,29840,29840,29840,20276,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20277, 29840,21001,29840,20280,29840,29840,20281,20282,29840,29840, 29840,20283,29840,29840,20284,29840,20285,29840,21002,29840, 20287,21003,20289,20272,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20274,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26139,29840,29840,29840, 29840,29840,29840,29840,29840,20275,29840,29840,29840,29840, 29840,29840,20276,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20277,29840,20278, 29840,20280,29840,29840,20281,20282,29840,29840,29840,20283, 29840,29840,20284,29840,20285,29840,20286,29840,20287,20288, 20289, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,26140,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22107,29840,22108, 29840,22110,29840,29840,22111,22137,29840,29840,29840,22113, 29840,29840,22114,29840,22115,29840,22116,29840,22117,22118, 22119, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,14250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14253,29840,14254, 29840,14256,29840,29840,14257,15542,29840,29840,29840,14259, 29840,29840,14260,29840,26146,29840,14262,29840,14263,14264, 15552, 3291,29840,14249,29840,29840,29840,29840,29840,29840, 10694,29840,29840,14250,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14251,29840,29840,29840,29840, 29840,29840,14252,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14253,29840,14254, 29840,14256,29840,29840,14257,15542,29840,29840,29840,14259, 29840,29840,14260,29840,14261,29840,14262,29840,14263,14264, 14265,20313,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20314,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20315,29840,29840,29840,29840,29840,29840, 20316,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26148,20317,29840,20318,29840,20319, 29840,29840,20320,20321,29840,29840,29840,20322,29840,29840, 20323,29840,20324,29840,20325,29840,20326,20327,20328,20313, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20315,29840,29840,29840,29840,29840,29840,20316,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20317,29840,20318,29840,20319,29840,29840, 20320,20321,29840,29840,29840,20322,29840,29840,20323,29840, 26149,29840,20325,29840,20326,20327,20328,20313,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20314,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20315, 29840,29840,29840,29840,29840,29840,20316,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20317,29840,20318,29840,20319,29840,29840,20320,26150, 29840,29840,29840,20322,29840,29840,20323,29840,20324,29840, 20325,29840,20326,20327,20328, 3291,29840,22156,29840,29840, 29840,29840,29840,29840,20312,29840,29840,22157,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22158, 29840,29840,29840,29840,29840,29840,22159,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22160,29840,22161,29840,22163,29840,29840,22164,22186, 29840,29840,29840,22166,29840,29840,22167,29840,26151,29840, 22169,29840,22170,22171,22172,20313,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20314,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20315,29840,29840, 29840,29840,29840,29840,20316,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20317, 29840,21041,29840,20319,29840,29840,20320,20321,29840,29840, 29840,20322,29840,29840,20323,29840,20324,29840,21042,29840, 20326,21043,20328,20313,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20314,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20315,29840,29840,29840,29840, 29840,29840,20316,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20317,29840,20318, 29840,20319,29840,29840,20320,20321,29840,29840,29840,20322, 21050,26152,20323,29840,20324,29840,20325,29840,20326,20327, 20328, 3291,29840,22156,29840,29840,29840,29840,29840,29840, 20312,29840,29840,22157,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22158,29840,29840,29840,29840, 29840,29840,22159,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22160,29840,22161, 29840,22163,29840,29840,22164,22186,29840,29840,29840,22166, 29840,29840,22167,29840,22168,29840,22169,29840,22170,22171, 22172, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,26161,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22193,29840,22194, 29840,22195,29840,29840,22196,22197,29840,29840,29840,22198, 29840,29840,22199,29840,22200,29840,22201,29840,22202,22203, 22204, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22193,29840,22194, 29840,22195,29840,29840,22196,22197,29840,29840,29840,22198, 29840,29840,22199,29840,22200,29840,22201,29840,22202,22203, 22204,22691,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22692,26163,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22693,29840,29840,29840,29840,29840,29840, 22694,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22695,29840,22696,29840,22697, 29840,29840,22698,22699,29840,29840,29840,22700,29840,29840, 22701,29840,22702,29840,22703,29840,22704,22705,22706,22691, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22692, 29840,29840,29840,29840,26164,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22693,29840,29840,29840,29840,29840,29840,22694,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22695,29840,22696,29840,22697,29840,29840, 22698,22699,29840,29840,29840,22700,29840,29840,22701,29840, 22702,29840,22703,29840,22704,22705,22706, 3291,29840,22206, 29840,29840,29840,29840,29840,29840,22207,29840,29840,22208, 26175,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22209,29840,29840,29840,29840,29840,29840,22210,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22211,29840,22212,29840,22213,29840,29840, 22214,22215,29840,29840,29840,22216,29840,29840,22217,29840, 22218,29840,22219,29840,22220,22221,22222, 3291,29840,22206, 29840,29840,29840,29840,29840,29840,22207,29840,29840,22208, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22209,29840,29840,29840,29840,29840,29840,22210,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22211,29840,22212,29840,22213,29840,29840, 22214,22215,29840,29840,29840,22216,29840,29840,22217,29840, 22218,29840,22219,29840,22220,22221,22222,22728,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22729,26176,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22730, 29840,29840,29840,29840,29840,29840,22731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22732,29840,22733,29840,22734,29840,29840,22735,22736, 29840,29840,29840,22737,29840,29840,22738,29840,22739,29840, 22740,29840,22741,22742,22743,22728,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22729,29840,29840,29840,29840, 26177,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22730,29840,29840, 29840,29840,29840,29840,22731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22732, 29840,22733,29840,22734,29840,29840,22735,22736,29840,29840, 29840,22737,29840,29840,22738,29840,22739,29840,22740,29840, 22741,22742,22743,15613,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15614,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26188,29840,29840,29840, 29840,29840,29840,29840,29840,15615,29840,29840,29840,29840, 29840,29840,15616,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15617,29840,15618, 29840,15619,29840,29840,15620,15621,29840,29840,29840,15622, 29840,16766,15623,29840,15624,29840,15625,29840,15626,15627, 15628,15613,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15614,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15615,29840,29840,29840,29840,29840,29840, 15616,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15617,29840,15618,29840,26189, 29840,29840,15620,15621,29840,29840,29840,15622,29840,29840, 15623,29840,15624,29840,15625,29840,15626,15627,15628,15613, 26191,29840,29840,29840,29840,29840,29840,29840,29840,15614, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15615,29840,16757,29840,29840,29840,29840,15616,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15617,29840,15618,29840,15619,29840,29840, 15620,15621,29840,29840,29840,15622,29840,29840,15623,29840, 15624,29840,15625,29840,15626,15627,15628, 3291,29840,14316, 29840,29840,29840,29840,29840,29840,14317,29840,29840,14318, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14319,29840,29840,29840,29840,29840,29840,14320,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14321,29840,14322,29840,14323,29840,29840, 14324,14325,29840,29840,29840,14326,29840,29840,14327,29840, 26193,29840,14329,29840,14330,14331,15636, 3291,29840,14316, 29840,29840,29840,29840,29840,29840,14317,29840,29840,14318, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14319,29840,29840,29840,29840,29840,29840,14320,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,14321,29840,14322,29840,14323,29840,29840, 14324,14325,29840,29840,29840,14326,29840,29840,14327,29840, 14328,29840,14329,29840,14330,14331,14332,15650,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15651,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26195,29840,29840,29840,29840,29840,29840,29840,29840,15652, 29840,29840,29840,29840,29840,29840,15653,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15654,29840,15655,29840,15656,29840,29840,15657,15658, 29840,29840,29840,15659,29840,16808,15660,29840,15661,29840, 15662,29840,15663,15664,15665,15650,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15651,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15652,29840,29840, 29840,29840,29840,29840,15653,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15654, 29840,15655,29840,26196,29840,29840,15657,15658,29840,29840, 29840,15659,29840,29840,15660,29840,15661,29840,15662,29840, 15663,15664,15665,15650,26198,29840,29840,29840,29840,29840, 29840,29840,29840,15651,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15652,29840,16799,29840,29840, 29840,29840,15653,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15654,29840,15655, 29840,15656,29840,29840,15657,15658,29840,29840,29840,15659, 29840,29840,15660,29840,15661,29840,15662,29840,15663,15664, 15665, 3291,29840,14334,29840,29840,29840,29840,29840,29840, 14335,29840,29840,14336,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14337,29840,29840,29840,29840, 29840,29840,14338,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14339,29840,14340, 29840,14341,29840,29840,14342,14343,29840,29840,29840,14344, 29840,29840,14345,29840,26200,29840,14347,29840,14348,14349, 15673, 3291,29840,14334,29840,29840,29840,29840,29840,29840, 14335,29840,29840,14336,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14337,29840,29840,29840,29840, 29840,29840,14338,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,14339,29840,14340, 29840,14341,29840,29840,14342,14343,29840,29840,29840,14344, 29840,29840,14345,29840,14346,29840,14347,29840,14348,14349, 14350,25367,25073,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25945,25945,25945,25945,25945,25945,25945, 25945,25945,29840,25945,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25074,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26202,23744, 23323,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25950,25950,25950,25950,25950,25950,25950,25950,25950, 29840,25950,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23324,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26206,25673,25384,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26214, 26214,26214,26214,26214,26214,26214,26214,26214,29840,26214, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25385,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25386,25673, 25384,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25959,25959,25959,25959,25959,25959,25959,25959,25959, 29840,25959,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25386,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26215,23744,23323,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25965, 25965,25965,25965,25965,25965,25965,25965,25965,29840,25965, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 23324,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26220,25967,25684,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26223,26223,26223, 26223,26223,26223,26223,26223,26223,29840,26223,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25685,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25686,25406,25113,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25982, 25982,25982,25982,25982,25982,25982,25982,25982,29840,25982, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25114,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26240, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,26257,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,26258,29840,29840,29840,29840,26257, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,26265,26265,26265,26265,26265,26265,26265,26265,26265, 26017,29840,29840,29840,29840,29840,29840,26265,26265,26265, 26265,26265,26266,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26265,26265,26265,26265,26265,26265, 26267,26267,26267,26267,26267,26267,26267,26267,26267,26268, 29840,29840,29840,29840,29840,29840,26267,26267,26267,26267, 26267,26269,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26267,26267,26267,26267,26267,26267,26271, 26271,26271,26271,26271,26271,26271,26271,26271,26272,29840, 29840,29840,29840,29840,29840,26271,26271,26271,26271,26271, 26273,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22958,29840, 29840,29840,26271,26271,26271,26271,26271,26271,26277,26277, 26277,26277,26277,26277,26277,26277,26277,25740,29840,29840, 29840,29840,29840,29840,26277,26277,26277,26277,26277,26278, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26277,26277,26277,26277,26277,26277,26280,26280,26280, 26280,26280,26280,26280,26280,26280,26281,29840,29840,29840, 29840,29840,29840,26280,26280,26280,26280,26280,26282,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26280,26280,26280,26280,26280,26280,26286,26286,26286,26286, 26286,26286,26286,26286,26286,25750,29840,29840,29840,29840, 29840,29840,26286,26286,26286,26286,26286,26287,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26286, 26286,26286,26286,26286,26286,26289,26289,26289,26289,26289, 26289,26289,26289,26289,26290,29840,29840,29840,29840,29840, 29840,26289,26289,26289,26289,26289,26291,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26289,26289, 26289,26289,26289,26289,26295,26296,26297,26298,26298,26298, 26298,26298,26298,29840,29840,29840,29840,29840,29840,29840, 25455,25455,25455,25455,25455,25459,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25455,25455,25455, 25455,25455,25455,26299,26299,26299,26299,26299,26299,26299, 26299,26299,25762,29840,29840,29840,29840,29840,29840,26299, 26299,26299,26299,26299,26300,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26299,26299,26299,26299, 26299,26299,26302,26302,26302,26302,26302,26302,26302,26302, 26302,26303,29840,29840,29840,29840,29840,29840,26302,26302, 26302,26302,26302,26304,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26302,26302,26302,26302,26302, 26302,26308,26309,26310,26311,26311,26311,26311,26311,26311, 29840,29840,29840,29840,29840,29840,29840,25465,25465,25465, 25465,25465,25469,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25465,25465,25465,25465,25465,25465, 25205,29840,26312,26312,26312,26312,26312,26312,26312,26312, 26312,25169,29840,29840,29840,29840,29840,29840,25463,25463, 25463,25463,25463,25464,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25463,25463,25463,25463,25463, 25463,26313,26313,26313,26313,26313,26313,26313,26313,26313, 25778,29840,29840,29840,29840,29840,29840,26313,26313,26313, 26313,26313,26314,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26313,26313,26313,26313,26313,26313, 26316,26316,26316,26316,26316,26316,26316,26316,26316,26317, 29840,29840,29840,29840,29840,29840,26316,26316,26316,26316, 26316,26318,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26316,26316,26316,26316,26316,26316,26322, 26323,26324,26325,26325,26325,26325,26325,26325,29840,29840, 29840,29840,29840,29840,29840,25476,25476,25476,25476,25476, 25480,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25476,25476,25476,25476,25476,25476,26326,26326, 26326,26326,26326,26326,26326,26326,26326,25183,29840,29840, 29840,29840,29840,29840,25474,25474,25474,25474,25474,25475, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25474,25474,25474,25474,25474,25474,26327,26327,26327, 26327,26327,26327,26327,26327,26327,26066,29840,29840,29840, 29840,29840,29840,26327,26327,26327,26327,26327,26328,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26327,26327,26327,26327,26327,26327,26329,26329,26329,26329, 26329,26329,26329,26329,26329,29840,29840,29840,29840,29840, 29840,29840,26329,26329,26329,26329,26329,26330,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26329, 26329,26329,26329,26329,26329,25492,25492,25492,25492,25492, 25492,25492,25492,25492,25495,29840,29840,29840,29840,29840, 29840,25492,25492,25492,25492,25492,25494,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25492,25492, 25492,25492,25492,25492,25488,25488,25488,25488,25488,25488, 25488,25488,25488,24876,29840,29840,29840,29840,29840,29840, 25488,25488,25488,25488,25488,25489,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25488,25488,25488, 25488,25488,25488,24221,23841,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26340,26340,26340,26340,26340, 26340,26340,26340,26340,29840,26340,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23842,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23843,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,24225,24227,23847,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26344,26344,26344,26344, 26344,26344,26344,26344,26344,29840,26344,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,23848,24231,23851, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26346,26346,26346,26346,26346,26346,26346,26346,26346,29840, 26346,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,23852,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23853,25552,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25553,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25554, 29840,29840,29840,29840,29840,29840,25555,29840,29840,29840, 29840,29840,26370,29840,29840,29840,29840,29840,29840,29840, 29840,25556,29840,25557,29840,25558,29840,29840,25559,25560, 29840,29840,29840,25561,29840,29840,25562,29840,25563,29840, 25564,29840,25565,25566,25567,25552,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25553,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25554,29840,29840, 29840,29840,29840,29840,25555,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25556, 29840,25557,29840,25558,29840,29840,25559,25560,29840,29840, 29840,25561,26371,29840,25562,29840,25563,29840,25564,29840, 25565,25566,25567, 3291,29840,26384,29840,29840,29840,29840, 29840,29840,25551,29840,29840,26385,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26386,29840,29840, 29840,29840,29840,29840,26387,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26388, 29840,26389,26390,26391,29840,29840,26392,26393,29840,29840, 29840,26394,29840,29840,26395,29840,26396,29840,26397,29840, 26398,26399,26400,20272,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20274,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20275,29840,29840,29840,29840, 29840,29840,20276,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20277,29840,20278, 29840,20280,29840,29840,26409,20282,29840,29840,29840,20283, 29840,29840,20284,29840,20285,29840,20286,29840,20287,20288, 20289,20272,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20274,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20275,29840,29840,29840,29840,29840,29840, 20276,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20277,29840,20278,29840,20280, 29840,29840,20281,20282,29840,29840,29840,20283,29840,26410, 20284,29840,20285,29840,20286,29840,20287,20288,20289, 3291, 29840,22103,29840,29840,29840,29840,29840,29840,20271,29840, 29840,26412,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22105,29840,29840,29840,29840,29840,29840, 22106,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22107,29840,22108,29840,22110, 29840,29840,22111,22137,29840,29840,29840,22113,29840,22617, 22114,29840,22115,29840,22116,29840,22117,22118,22119, 3291, 29840,26384,29840,29840,29840,29840,29840,29840,25551,29840, 29840,26385,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26386,29840,29840,29840,29840,29840,29840, 26387,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26388,29840,26389,29840,26391, 29840,29840,26392,26414,29840,29840,29840,26394,29840,29840, 26395,29840,26396,29840,26397,29840,26398,26399,26400, 3291, 29840,22206,29840,29840,29840,29840,29840,29840,22207,29840, 29840,22208,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22209,29840,29840,29840,29840,29840,29840, 22210,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22211,29840,22212,29840,22213, 29840,29840,22214,22215,29840,29840,29840,22216,29840,29840, 22217,29840,22218,29840,22219,29840,22220,22221,22222, 3291, 29840,22103,29840,29840,29840,29840,29840,29840,20271,29840, 29840,22104,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22105,29840,29840,29840,29840,29840,29840, 22106,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22107,29840,22108,29840,22110, 29840,29840,22111,22137,29840,29840,29840,22113,26415,29840, 22114,29840,22115,29840,22116,29840,22117,22118,22119, 3291, 29840,14249,29840,29840,29840,29840,29840,29840,10694,29840, 29840,14250,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25873,29840,29840,29840,29840,29840, 29840,29840,29840,14251,29840,29840,29840,29840,29840,29840, 14252,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,14253,29840,14254,29840,14256, 29840,29840,14257,15542,29840,29840,29840,14259,29840,15560, 14260,29840,14261,29840,14262,29840,14263,14264,14265,20313, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20315,29840,29840,29840,29840,29840,29840,20316,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20317,29840,20318,29840,20319,29840,29840, 26419,20321,29840,29840,29840,20322,29840,29840,20323,29840, 20324,29840,20325,29840,20326,20327,20328,20313,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20314,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20315, 29840,29840,29840,29840,29840,29840,20316,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20317,29840,20318,29840,20319,29840,29840,20320,20321, 29840,29840,29840,20322,29840,26420,20323,29840,20324,29840, 20325,29840,20326,20327,20328, 3291,29840,22156,29840,29840, 29840,29840,29840,29840,20312,29840,29840,26422,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22158, 29840,29840,29840,29840,29840,29840,22159,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22160,29840,22161,29840,22163,29840,29840,22164,22186, 29840,29840,29840,22166,29840,22672,22167,29840,22168,29840, 22169,29840,22170,22171,22172, 3291,29840,26425,29840,29840, 29840,29840,29840,29840,26426,29840,29840,26427,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26428, 29840,29840,29840,29840,29840,29840,26429,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26430,29840,26431,29840,26432,29840,29840,26433,26434, 29840,29840,29840,26435,29840,29840,26436,29840,26437,29840, 26438,29840,26439,26440,26441, 3291,29840,26443,29840,29840, 29840,29840,29840,29840,26444,29840,29840,26445,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26446, 29840,29840,29840,29840,29840,29840,26447,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26448,29840,26449,29840,26450,29840,29840,26451,26452, 29840,29840,29840,26453,29840,29840,26454,29840,26455,29840, 26456,29840,26457,26458,26459, 3291,29840,22156,29840,29840, 29840,29840,29840,29840,20312,29840,29840,22157,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22158, 29840,29840,29840,29840,29840,29840,22159,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22160,29840,22161,29840,22163,29840,29840,22164,22186, 29840,29840,29840,22166,26460,29840,22167,29840,22168,29840, 22169,29840,22170,22171,22172, 3291,29840,26425,29840,29840, 29840,29840,29840,29840,26426,29840,29840,26427,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26428, 29840,29840,29840,29840,29840,29840,26429,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26430,29840,26431,29840,26432,29840,29840,26433,26434, 29840,29840,29840,26435,29840,29840,26436,29840,26437,29840, 26438,29840,26439,26440,26441, 3291,29840,22206,29840,29840, 29840,29840,29840,29840,22207,29840,29840,22208,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22209, 29840,29840,29840,29840,29840,29840,22210,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22211,29840,22212,29840,22213,29840,29840,22214,22215, 29840,29840,29840,22216,29840,29840,22217,29840,22218,29840, 22219,29840,22220,22221,22222,22691,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22692,26465,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22693,29840,29840, 29840,29840,29840,29840,22694,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22695, 29840,22696,29840,22697,29840,29840,22698,22699,29840,29840, 29840,22700,29840,29840,22701,29840,22702,29840,22703,29840, 22704,22705,22706,22691,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22692,29840,29840,29840,29840,26466,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22693,29840,29840,29840,29840, 29840,29840,22694,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22695,29840,22696, 29840,22697,29840,29840,22698,22699,29840,29840,29840,22700, 29840,29840,22701,29840,22702,29840,22703,29840,22704,22705, 22706, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22193,29840,22194, 29840,22195,29840,29840,22196,22197,29840,29840,29840,22198, 26472,29840,22199,29840,22200,29840,22201,29840,22202,22203, 22204, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22193,29840,22194, 29840,22195,29840,29840,22196,22197,29840,29840,29840,22198, 26473,29840,22199,29840,22200,29840,22201,29840,22202,22203, 22204, 3291,29840,26443,29840,29840,29840,29840,29840,29840, 26444,29840,29840,26445,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26446,29840,29840,29840,29840, 29840,29840,26447,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26448,29840,26449, 29840,26450,29840,29840,26451,26452,29840,29840,29840,26453, 29840,29840,26454,29840,26455,29840,26456,29840,26457,26458, 26459,22728,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22729,26476,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22730,29840,29840,29840,29840,29840,29840, 22731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22732,29840,22733,29840,22734, 29840,29840,22735,22736,29840,29840,29840,22737,29840,29840, 22738,29840,22739,29840,22740,29840,22741,22742,22743,22728, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22729, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22730,29840,29840,29840,29840,29840,29840,22731,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22732,29840,22733,29840,22734,29840,29840, 22735,22736,29840,29840,29840,22737,29840,29840,22738,29840, 22739,29840,22740,29840,22741,22742,22743,22728,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22729,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22730, 29840,29840,29840,29840,29840,29840,22731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22732,29840,22733,29840,22734,29840,29840,22735,26477, 29840,29840,29840,22737,29840,29840,22738,29840,22739,29840, 22740,29840,22741,22742,22743,22728,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22730,29840,29840, 29840,29840,29840,29840,22731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22732, 29840,22733,29840,22734,29840,29840,22735,26478,29840,29840, 29840,22737,29840,29840,22738,29840,22739,29840,22740,29840, 22741,22742,22743,26479,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22730,29840,29840,29840,29840, 29840,29840,22731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22732,29840,22733, 29840,22734,29840,29840,22735,22736,29840,29840,29840,22737, 29840,29840,22738,29840,22739,29840,22740,29840,22741,22742, 22743,22728,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22730,29840,29840,29840,29840,29840,29840, 22731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22732,29840,22733,29840,22734, 29840,29840,22735,22736,29840,29840,29840,22737,29840,26480, 22738,29840,22739,29840,22740,29840,22741,22742,22743,23191, 15613,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15614,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15615,29840,29840,29840,29840,29840,29840,15616, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,15617,29840,15618,29840,15619,29840, 29840,15620,15621,29840,29840,29840,15622,29840,29840,15623, 29840,26486,29840,15625,29840,15626,15627,16765,15613,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15614,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15615,29840,29840,29840,29840,29840,29840,15616,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15617,29840,15618,29840,15619,29840,29840,15620, 15621,29840,29840,29840,15622,29840,29840,15623,29840,15624, 29840,15625,29840,15626,15627,15628,15613,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15614,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15615,29840, 29840,29840,29840,29840,29840,15616,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,18727, 16768,29840,15618,29840,15619,29840,29840,15620,15621,29840, 29840,29840,15622,29840,29840,15623,29840,15624,29840,15625, 29840,15626,15627,15628,16769, 3291,29840,14316,29840,29840, 29840,29840,29840,29840,14317,29840,29840,14318,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25930,29840,29840,29840,29840,29840,29840,29840,29840,14319, 29840,29840,29840,29840,29840,29840,14320,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,14321,29840,14322,29840,14323,29840,29840,14324,14325, 29840,29840,29840,14326,29840,15643,14327,29840,14328,29840, 14329,29840,14330,14331,14332,15650,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15651,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15652,29840,29840, 29840,29840,29840,29840,15653,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,15654, 29840,15655,29840,15656,29840,29840,15657,15658,29840,29840, 29840,15659,29840,29840,15660,29840,26489,29840,15662,29840, 15663,15664,16807,15650,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15651,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,15652,29840,29840,29840,29840, 29840,29840,15653,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,15654,29840,15655, 29840,15656,29840,29840,15657,15658,29840,29840,29840,15659, 29840,29840,15660,29840,15661,29840,15662,29840,15663,15664, 15665,15650,29840,29840,29840,29840,29840,29840,29840,29840, 29840,15651,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,15652,29840,29840,29840,29840,29840,29840, 15653,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,18768,16810,29840,15655,29840,15656, 29840,29840,15657,15658,29840,29840,29840,15659,29840,29840, 15660,29840,15661,29840,15662,29840,15663,15664,15665,16811, 3291,29840,14334,29840,29840,29840,29840,29840,29840,14335, 29840,29840,14336,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25940,29840,29840,29840,29840, 29840,29840,29840,29840,14337,29840,29840,29840,29840,29840, 29840,14338,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,14339,29840,14340,29840, 14341,29840,29840,14342,14343,29840,29840,29840,14344,29840, 15680,14345,29840,14346,29840,14347,29840,14348,14349,14350, 25673,25384,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26214,26214,26214,26214,26214,26214,26214,26214, 26214,29840,26214,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25385,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25386,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26506,25967,25684, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26512,26512,26512,26512,26512,26512,26512,26512,26512,29840, 26512,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25685,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25686, 25967,25684,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26223,26223,26223,26223,26223,26223,26223,26223, 26223,29840,26223,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25685,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25686,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26513, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,26549,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,26550,29840,29840, 29840,29840,26549,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,26553,26553,26553,26553,26553,26553, 26553,26553,26553,29840,29840,29840,29840,29840,29840,29840, 26553,26553,26553,26553,26553,26554,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26553,26553,26553, 26553,26553,26553,26558,26558,26558,26558,26558,26558,26558, 26558,26558,26017,29840,29840,29840,29840,29840,29840,26558, 26558,26558,26558,26558,26559,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26558,26558,26558,26558, 26558,26558,26561,26561,26561,26561,26561,26561,26561,26561, 26561,26562,29840,29840,29840,29840,29840,29840,26561,26561, 26561,26561,26561,26563,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26561,26561,26561,26561,26561, 26561,26564,26564,26564,26564,26564,26564,26564,26564,26564, 29840,29840,29840,29840,29840,29840,29840,26564,26564,26564, 26564,26564,26565,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22958,29840,29840,29840,26564,26564,26564,26564,26564,26564, 26567,26567,26567,26567,26567,26567,26567,26567,26567,26272, 29840,29840,29840,29840,29840,29840,26567,26567,26567,26567, 26567,26568,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26567,26567,26567,26567,26567,26567,26569, 26569,26569,26569,26569,26569,26569,26569,26569,29840,29840, 29840,29840,29840,29840,29840,26569,26569,26569,26569,26569, 26570,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26569,26569,26569,26569,26569,26569,26574,26574, 26574,26574,26574,26574,26574,26574,26574,26281,29840,29840, 29840,29840,29840,29840,26574,26574,26574,26574,26574,26575, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26574,26574,26574,26574,26574,26574,26576,26576,26576, 26576,26576,26576,26576,26576,26576,29840,29840,29840,29840, 29840,29840,29840,26576,26576,26576,26576,26576,26577,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26576,26576,26576,26576,26576,26576,26580,26580,26580,26580, 26580,26580,26580,26580,26580,26290,29840,29840,29840,29840, 29840,29840,26580,26580,26580,26580,26580,26581,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26580, 26580,26580,26580,26580,26580,26582,26582,26582,26582,26582, 26582,26582,26582,26582,29840,29840,29840,29840,29840,29840, 29840,26582,26582,26582,26582,26582,26583,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26582,26582, 26582,26582,26582,26582,25205,29840,25749,25749,25749,25749, 25749,25749,25749,25749,25749,25750,29840,29840,29840,29840, 29840,29840,25749,25749,25749,25749,25749,25751,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25749, 25749,25749,25749,25749,25749,26589,26589,26589,26589,26589, 26589,26589,26589,26589,26303,29840,29840,29840,29840,29840, 29840,26589,26589,26589,26589,26589,26590,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26589,26589, 26589,26589,26589,26589,26591,26591,26591,26591,26591,26591, 26591,26591,26591,29840,29840,29840,29840,29840,29840,29840, 26591,26591,26591,26591,26591,26592,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26591,26591,26591, 26591,26591,26591,25761,25761,25761,25761,25761,25761,25761, 25761,25761,25762,29840,29840,29840,29840,29840,29840,25761, 25761,25761,25761,25761,25763,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25761,25761,25761,25761, 25761,25761,25758,25758,25758,25758,25758,25758,25758,25758, 25758,25169,29840,29840,29840,29840,29840,29840,25758,25758, 25758,25758,25758,25759,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25758,25758,25758,25758,25758, 25758,26598,26598,26598,26598,26598,26598,26598,26598,26598, 26317,29840,29840,29840,29840,29840,29840,26598,26598,26598, 26598,26598,26599,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26598,26598,26598,26598,26598,26598, 26600,26600,26600,26600,26600,26600,26600,26600,26600,29840, 29840,29840,29840,29840,29840,29840,26600,26600,26600,26600, 26600,26601,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26600,26600,26600,26600,26600,26600,25777, 25777,25777,25777,25777,25777,25777,25777,25777,25778,29840, 29840,29840,29840,29840,29840,25777,25777,25777,25777,25777, 25779,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25777,25777,25777,25777,25777,25777,25774,25774, 25774,25774,25774,25774,25774,25774,25774,25183,29840,29840, 29840,29840,29840,29840,25774,25774,25774,25774,25774,25775, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25774,25774,25774,25774,25774,25774,26607,26607,26607, 26607,26607,26607,26607,26607,26607,26066,29840,29840,29840, 29840,29840,29840,26607,26607,26607,26607,26607,26608,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26607,26607,26607,26607,26607,26607,26610,26610,26610,26610, 26610,26610,26610,26610,26610,26611,29840,29840,29840,29840, 29840,29840,26610,26610,26610,26610,26610,26612,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26610, 26610,26610,26610,26610,26610,26616,26617,26618,26619,26619, 26619,26619,26619,26619,29840,29840,29840,29840,29840,29840, 29840,25793,25793,25793,25793,25793,25797,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25793,25793, 25793,25793,25793,25793,26620,26620,26620,26620,26620,26620, 26620,26620,26620,25495,29840,29840,29840,29840,29840,29840, 25791,25791,25791,25791,25791,25792,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25791,25791,25791, 25791,25791,25791,24221,23841,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26340,26340,26340,26340,26340, 26340,26340,26340,26340,29840,26340,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23842,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23843,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26625,24227,23847,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26344,26344,26344,26344,26344,26344,26344, 26344,26344,29840,26344,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23848,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26628,24231, 23851,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26346,26346,26346,26346,26346,26346,26346,26346,26346, 29840,26346,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23852,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26630,23853,25552,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25553,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,29840,29840,29840,29840,29840,25555,29840,29840, 26652,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25556,29840,25557,29840,25558,29840,29840,25559, 25560,29840,29840,29840,25561,29840,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567,25552,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25553,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25554,29840, 29840,29840,29840,29840,29840,25555,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25556,29840,25557,29840,25558,29840,29840,25559,25560,29840, 29840,29840,25561,29840,29840,25562,29840,25563,29840,26653, 29840,25565,25566,25567,25552,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25553,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25554,29840,29840,29840, 29840,29840,29840,25555,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25556,29840, 25557,29840,25558,29840,29840,25852,25560,29840,29840,29840, 25853,29840,26654,25562,29840,25563,29840,25564,29840,25565, 25566,25567, 3291,29840,26384,29840,29840,29840,29840,29840, 29840,25551,29840,29840,26385,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26386,29840,29840,29840, 29840,29840,29840,26387,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26388,29840, 26389,29840,26391,29840,29840,26392,26414,29840,29840,29840, 26394,29840,29840,26395,29840,26396,29840,26397,29840,26398, 26399,26400, 3291,29840,26384,29840,29840,29840,29840,29840, 29840,25551,29840,29840,26385,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26386,29840,29840,29840, 29840,29840,29840,26387,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26388,29840, 26389,29840,26391,29840,29840,26392,26414,29840,29840,29840, 26394,29840,29840,26395,29840,26396,29840,26397,29840,26398, 26399,26400,20272,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20274,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20275,29840,29840,29840,29840,29840, 29840,20276,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26694,29840,20278,29840, 20280,29840,29840,20281,20282,29840,29840,29840,20283,29840, 21010,20284,29840,20285,29840,20286,29840,20287,20288,20289, 20272,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20274,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20275,29840,29840,29840,29840,29840,29840,20276, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20277,29840,20278,29840,20280,29840, 29840,20281,20282,29840,29840,29840,20283,29840,29840,20284, 29840,20285,29840,20286,21614,26695,20288,20289, 3291,29840, 22103,29840,29840,29840,29840,29840,29840,20271,29840,29840, 22104,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22105,29840,29840,29840,29840,29840,29840,22106, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22107,29840,22604,29840,22110,29840, 29840,22111,22137,29840,29840,29840,22113,29840,29840,22114, 29840,22115,29840,22605,29840,22117,22606,22119, 3291,29840, 22103,29840,29840,29840,29840,29840,29840,20271,29840,29840, 22104,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26698,29840,29840,29840,29840, 29840,29840,22105,29840,29840,29840,29840,29840,29840,22106, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22107,29840,22108,22136,22110,29840, 29840,22111,22137,29840,29840,29840,22113,29840,29840,22114, 29840,22115,29840,22116,29840,22117,22118,22119,20313,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20314,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20315,29840,29840,29840,29840,29840,29840,20316,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26702,29840,20318,29840,20319,29840,29840,20320, 20321,29840,29840,29840,20322,29840,21049,20323,29840,20324, 29840,20325,29840,20326,20327,20328,20313,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20314,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20315,29840, 29840,29840,29840,29840,29840,20316,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20317,29840,20318,29840,20319,29840,29840,20320,20321,29840, 29840,29840,20322,29840,29840,20323,29840,20324,29840,20325, 21651,26703,20327,20328, 3291,29840,22156,29840,29840,29840, 29840,29840,29840,20312,29840,29840,22157,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22158,29840, 29840,29840,29840,29840,29840,22159,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22160,29840,22657,29840,22163,29840,29840,22164,22186,29840, 29840,29840,22166,29840,29840,22167,29840,22168,29840,22658, 29840,22170,22659,22172, 3291,29840,26425,29840,29840,29840, 29840,29840,29840,26426,29840,29840,26427,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26428,29840, 29840,29840,29840,29840,29840,26429,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26430,29840,26431,29840,26432,29840,29840,26433,26434,29840, 29840,29840,26435,29840,29840,26436,29840,26437,29840,26438, 29840,26439,26440,26441, 3291,29840,26425,29840,29840,29840, 29840,29840,29840,26426,29840,29840,26427,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26428,29840, 26706,29840,29840,29840,29840,26429,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26430,29840,26431,29840,26432,29840,29840,26433,26434,29840, 29840,29840,26435,29840,29840,26436,29840,26437,29840,26438, 29840,26439,26440,26441,26707,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26708,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26709,29840,29840,29840, 29840,29840,29840,26710,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26711,29840, 26712,29840,26713,29840,29840,26714,26715,29840,29840,29840, 26716,29840,29840,26717,29840,26718,29840,26719,29840,26720, 26721,26722, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,26450,29840,29840,26451,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,26743,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,26450,29840,29840,26451,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,29840, 26750,29840,29840,26751,26752,29840,29840,29840,26753,29840, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 3291,29840,22156,29840,29840,29840,29840,29840,29840,20312, 29840,29840,22157,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26780,29840,29840, 29840,29840,29840,29840,22158,29840,29840,29840,29840,29840, 29840,22159,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22160,29840,22161,23114, 22163,29840,29840,22164,22186,29840,29840,29840,22166,29840, 29840,22167,29840,22168,29840,22169,29840,22170,22171,22172, 26707,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26708,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26709,29840,29840,29840,29840,29840,29840,26710, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26711,29840,26712,29840,26713,29840, 29840,26714,26715,29840,29840,29840,26716,29840,29840,26717, 29840,26718,29840,26719,29840,26720,26721,26722,22728,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22729,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22730,29840,29840,29840,29840,29840,29840,22731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22732,29840,22733,29840,22734,29840,29840,22735, 22736,29840,29840,29840,22737,29840,29840,22738,29840,22739, 29840,22740,29840,22741,22742,22743,22691,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22692,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22693,29840, 29840,29840,29840,29840,29840,22694,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22695,29840,22696,29840,22697,29840,29840,22698,22699,29840, 29840,29840,22700,26784,29840,22701,29840,22702,29840,22703, 29840,22704,22705,22706,22691,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22692,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22693,29840,29840,29840, 29840,29840,29840,22694,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22695,29840, 22696,29840,22697,29840,29840,22698,22699,29840,29840,29840, 22700,26785,29840,22701,29840,22702,29840,22703,29840,22704, 22705,22706, 3291,29840,22188,29840,29840,29840,29840,29840, 29840,22189,29840,29840,22190,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22191,29840,29840,29840, 29840,29840,29840,22192,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22193,29840, 22194,29840,22195,29840,29840,22719,22197,29840,29840,29840, 22720,29840,29840,22199,29840,22200,29840,22201,29840,22202, 22203,22204, 3291,29840,22188,29840,29840,29840,29840,29840, 29840,22189,29840,29840,22190,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26788, 29840,29840,29840,29840,29840,29840,22191,29840,29840,29840, 29840,29840,29840,22192,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22193,29840, 22194,22242,22195,29840,29840,22196,22197,29840,29840,29840, 22198,29840,29840,22199,29840,22200,29840,22201,29840,22202, 22203,22204,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,29840, 26750,29840,29840,26751,26752,29840,29840,29840,26753,29840, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 22728,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22729,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22730,29840,29840,29840,29840,29840,29840,22731, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22732,29840,22733,29840,22734,29840, 29840,22735,22736,29840,29840,29840,22737,26792,29840,22738, 29840,22739,29840,22740,29840,22741,22742,22743, 3291,29840, 22206,29840,29840,29840,29840,29840,29840,22207,29840,29840, 22208,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22209,29840,29840,29840,29840,29840,29840,22210, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22211,29840,22212,29840,22213,29840, 29840,22756,22215,29840,29840,29840,22757,29840,29840,22217, 29840,22218,29840,22219,29840,22220,22221,22222, 3291,29840, 22206,29840,29840,29840,29840,29840,29840,22207,29840,29840, 22208,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26796,29840,29840,29840,29840, 29840,29840,22209,29840,29840,29840,29840,29840,29840,22210, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22211,29840,22212,22264,22213,29840, 29840,22214,22215,29840,29840,29840,22216,29840,29840,22217, 29840,22218,29840,22219,29840,22220,22221,22222,15613,29840, 29840,29840,29840,29840,29840,29840,29840,29840,15614,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26188,29840,29840,29840,29840,29840,29840,29840,29840, 15615,29840,29840,29840,29840,29840,29840,15616,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,15617,29840,15618,29840,15619,29840,29840,15620, 15621,29840,29840,29840,15622,29840,16772,15623,29840,15624, 29840,15625,29840,15626,15627,15628,15650,29840,29840,29840, 29840,29840,29840,29840,29840,29840,15651,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26195, 29840,29840,29840,29840,29840,29840,29840,29840,15652,29840, 29840,29840,29840,29840,29840,15653,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 15654,29840,15655,29840,15656,29840,29840,15657,15658,29840, 29840,29840,15659,29840,16814,15660,29840,15661,29840,15662, 29840,15663,15664,15665,26811,23323,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26812,26812,26812,26812, 26812,26812,26812,26812,26812,29840,29840,29840,29840,29840, 29840,29840,26813,26813,26813,26813,26813,26814,26813,26813, 26813,26813,26813,26813,26813,26813,26813,26813,26813,26813, 26813,26813,26813,26813,26813,29840,29840,26815,29840,26812, 26812,26812,26812,26812,26812,25967,25684,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26512,26512,26512, 26512,26512,26512,26512,26512,26512,29840,26512,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25685,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25686,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26826,26522,26234,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26836,26836,26836,26836,26836, 26836,26836,26836,26836,29840,26836,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26235,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26236, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,26859,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,26860,29840,29840,29840,29840,26859, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,26863,26863,26863,26863,26863,26863,26863,26863,26863, 29840,29840,29840,29840,29840,29840,29840,26863,26863,26863, 26863,26863,26864,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26863,26863,26863,26863,26863,26863, 26869,26869,26869,26869,26869,26869,26869,26869,26869,26562, 29840,29840,29840,29840,29840,29840,26869,26869,26869,26869, 26869,26870,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26869,26869,26869,26869,26869,26869,26564, 26564,26564,26564,26564,26564,26564,26564,26564,26871,29840, 29840,29840,29840,29840,29840,26564,26564,26564,26564,26564, 26565,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26564,26564,26564,26564,26564,26564,26873,26873, 26873,26873,26873,26873,26873,26873,26873,29840,29840,29840, 29840,29840,29840,29840,26873,26873,26873,26873,26873,26874, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22958,29840,29840, 29840,26873,26873,26873,26873,26873,26873,26876,26876,26876, 26876,26876,26876,26876,26876,26876,26272,29840,29840,29840, 29840,29840,29840,26876,26876,26876,26876,26876,26877,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26876,26876,26876,26876,26876,26876,26879,26879,26879,26879, 26879,26879,26879,26879,26879,29840,29840,29840,29840,29840, 29840,29840,26879,26879,26879,26879,26879,26880,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26879, 26879,26879,26879,26879,26879,26883,26883,26883,26883,26883, 26883,26883,26883,26883,26281,29840,29840,29840,29840,29840, 29840,26883,26883,26883,26883,26883,26884,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26883,26883, 26883,26883,26883,26883,26886,26886,26886,26886,26886,26886, 26886,26886,26886,29840,29840,29840,29840,29840,29840,29840, 26886,26886,26886,26886,26886,26887,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26886,26886,26886, 26886,26886,26886,26889,26890,26891,26892,26892,26892,26892, 26892,26892,29840,29840,29840,29840,29840,29840,29840,26026, 26026,26026,26026,26026,26027,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26026,26026,26026,26026, 26026,26026,26893,26893,26893,26893,26893,26893,26893,26893, 26893,26290,29840,29840,29840,29840,29840,29840,26893,26893, 26893,26893,26893,26894,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26893,26893,26893,26893,26893, 26893,26896,26896,26896,26896,26896,26896,26896,26896,26896, 29840,29840,29840,29840,29840,29840,29840,26896,26896,26896, 26896,26896,26897,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26896,26896,26896,26896,26896,26896, 26899,26900,26901,26902,26902,26902,26902,26902,26902,29840, 29840,29840,29840,29840,29840,29840,26033,26033,26033,26033, 26033,26034,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26033,26033,26033,26033,26033,26033,25205, 29840,26903,26903,26903,26903,26903,26903,26903,26903,26903, 25750,29840,29840,29840,29840,29840,29840,26031,26031,26031, 26031,26031,26032,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26031,26031,26031,26031,26031,26031, 26904,26904,26904,26904,26904,26904,26904,26904,26904,26303, 29840,29840,29840,29840,29840,29840,26904,26904,26904,26904, 26904,26905,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26904,26904,26904,26904,26904,26904,26907, 26907,26907,26907,26907,26907,26907,26907,26907,29840,29840, 29840,29840,29840,29840,29840,26907,26907,26907,26907,26907, 26908,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26907,26907,26907,26907,26907,26907,26910,26911, 26912,26913,26913,26913,26913,26913,26913,29840,29840,29840, 29840,29840,29840,29840,26041,26041,26041,26041,26041,26042, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26041,26041,26041,26041,26041,26041,26914,26914,26914, 26914,26914,26914,26914,26914,26914,25762,29840,29840,29840, 29840,29840,29840,26039,26039,26039,26039,26039,26040,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26039,26039,26039,26039,26039,26039,26915,26915,26915,26915, 26915,26915,26915,26915,26915,26317,29840,29840,29840,29840, 29840,29840,26915,26915,26915,26915,26915,26916,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26915, 26915,26915,26915,26915,26915,26918,26918,26918,26918,26918, 26918,26918,26918,26918,29840,29840,29840,29840,29840,29840, 29840,26918,26918,26918,26918,26918,26919,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26918,26918, 26918,26918,26918,26918,26921,26922,26923,26924,26924,26924, 26924,26924,26924,29840,29840,29840,29840,29840,29840,29840, 26052,26052,26052,26052,26052,26053,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26052,26052,26052, 26052,26052,26052,26925,26925,26925,26925,26925,26925,26925, 26925,26925,25778,29840,29840,29840,29840,29840,29840,26050, 26050,26050,26050,26050,26051,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26050,26050,26050,26050, 26050,26050,26926,26926,26926,26926,26926,26926,26926,26926, 26926,26611,29840,29840,29840,29840,29840,29840,26926,26926, 26926,26926,26926,26927,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26926,26926,26926,26926,26926, 26926,26928,26928,26928,26928,26928,26928,26928,26928,26928, 29840,29840,29840,29840,29840,29840,29840,26928,26928,26928, 26928,26928,26929,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26928,26928,26928,26928,26928,26928, 26065,26065,26065,26065,26065,26065,26065,26065,26065,26066, 29840,29840,29840,29840,29840,29840,26065,26065,26065,26065, 26065,26067,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26065,26065,26065,26065,26065,26065,26062, 26062,26062,26062,26062,26062,26062,26062,26062,25495,29840, 29840,29840,29840,29840,29840,26062,26062,26062,26062,26062, 26063,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26062,26062,26062,26062,26062,26062,25552,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26960,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,29840,29840,29840,29840,29840,25555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25556,29840,25557,29840,25558,29840,29840,25559, 25560,29840,29840,29840,25561,29840,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567,25552,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25553,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25554,29840, 29840,29840,29840,29840,29840,25555,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26961,29840,25557,29840,25558,29840,29840,25559,25560,29840, 29840,29840,25561,29840,29840,25562,29840,25563,29840,25564, 29840,25565,25566,25567,25855, 3291,29840,26384,29840,29840, 29840,29840,29840,29840,25551,29840,29840,26385,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26386, 29840,29840,29840,29840,29840,29840,26387,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26388,29840,26389,29840,26391,29840,29840,26392,26414, 29840,29840,29840,26394,29840,29840,26395,29840,26396,29840, 26397,29840,26398,26399,26672, 3291,29840,26384,29840,29840, 29840,29840,29840,29840,25551,29840,29840,26385,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26386, 29840,29840,29840,29840,29840,29840,26387,29840,29840,29840, 29840,29840,26972,29840,29840,29840,29840,29840,29840,29840, 29840,26388,29840,26389,29840,26391,29840,29840,26392,26414, 29840,29840,29840,26394,29840,29840,26395,29840,26396,29840, 26397,29840,26398,26399,26400,20272,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20274,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20275,29840,29840, 29840,29840,29840,29840,20276,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20277, 29840,20278,21006,20280,29840,29840,20281,20282,29840,29840, 29840,20283,29840,29840,20284,29840,20285,26998,20286,29840, 20287,20288,20289,20272,29840,29840,29840,29840,29840,29840, 29840,21018,29840,20274,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20275,29840,29840,29840,29840, 29840,29840,20276,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20277,29840,20278, 29840,20280,29840,29840,20281,26999,29840,29840,29840,20283, 29840,29840,20284,29840,20285,29840,20286,29840,20287,20288, 20289, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27002,22107,29840,22108, 29840,22110,29840,29840,22111,22137,29840,29840,29840,22113, 29840,29840,22114,29840,22115,29840,22116,29840,22117,22118, 22119, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22107,29840,22108, 29840,22110,29840,29840,22111,22137,29840,29840,29840,22113, 29840,29840,22114,29840,27003,29840,22116,29840,22117,22118, 22119,20313,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20314,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20315,29840,29840,29840,29840,29840,29840, 20316,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20317,29840,20318,21046,20319, 29840,29840,20320,20321,29840,29840,29840,20322,29840,29840, 20323,29840,20324,27006,20325,29840,20326,20327,20328,20313, 29840,29840,29840,29840,29840,29840,29840,21057,29840,20314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20315,29840,29840,29840,29840,29840,29840,20316,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20317,29840,20318,29840,20319,29840,29840, 20320,27007,29840,29840,29840,20322,29840,29840,20323,29840, 20324,29840,20325,29840,20326,20327,20328, 3291,29840,26425, 29840,29840,29840,29840,29840,29840,26426,29840,29840,26427, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26428,29840,29840,29840,29840,29840,29840,26429,29840, 29840,29840,29840,29840,27010,29840,29840,29840,29840,29840, 29840,29840,29840,26430,29840,26431,29840,26432,29840,29840, 26433,26434,29840,29840,29840,26435,29840,29840,26436,29840, 26437,29840,26438,29840,26439,26440,26441,26707,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26708,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26709, 29840,27011,29840,29840,29840,29840,26710,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26711,29840,26712,29840,26713,29840,29840,26714,26715, 29840,29840,29840,26716,29840,29840,26717,29840,26718,29840, 26719,29840,26720,26721,26722,26707,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26708,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26709,29840,29840, 29840,29840,29840,29840,26710,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26711, 29840,27012,29840,26713,29840,29840,26714,26715,29840,29840, 29840,26716,29840,29840,26717,29840,26718,29840,27013,29840, 26720,27014,26722,26707,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26708,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27015,29840,29840,29840,29840,26709,29840,29840,29840,29840, 29840,29840,26710,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26711,29840,26712, 29840,26713,29840,29840,26714,26715,29840,29840,29840,26716, 29840,29840,26717,29840,26718,29840,26719,29840,26720,26721, 26722, 3291,29840,26425,29840,29840,29840,29840,29840,29840, 26426,29840,29840,26427,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26428,29840,29840,29840,29840, 29840,29840,26429,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26430,29840,26431, 29840,26432,29840,26729,26433,26434,29840,29840,29840,26435, 29840,27032,26436,29840,26437,29840,26438,29840,26439,26440, 26441, 3291,29840,26443,29840,29840,29840,29840,29840,29840, 26444,29840,29840,26445,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26446,29840,29840,29840,29840, 29840,29840,26447,29840,29840,29840,29840,29840,27052,29840, 29840,29840,29840,29840,29840,29840,29840,26448,29840,26449, 29840,26450,29840,29840,26451,26452,29840,29840,29840,26453, 29840,29840,26454,29840,26455,29840,26456,29840,26457,26458, 26459,26744,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26745,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26746,29840,27053,29840,29840,29840,29840, 26747,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26748,29840,26749,29840,26750, 29840,29840,26751,26752,29840,29840,29840,26753,29840,29840, 26754,29840,26755,29840,26756,29840,26757,26758,26759,26744, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26745, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26746,29840,29840,29840,29840,29840,29840,26747,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26748,29840,27054,29840,26750,29840,29840, 26751,26752,29840,29840,29840,26753,29840,29840,26754,29840, 26755,29840,27055,29840,26757,27056,26759,26744,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26745,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27057,29840,29840,29840,29840,26746, 29840,29840,29840,29840,29840,29840,26747,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26748,29840,26749,29840,26750,29840,29840,26751,26752, 29840,29840,29840,26753,29840,29840,26754,29840,26755,29840, 26756,29840,26757,26758,26759, 3291,29840,26443,29840,29840, 29840,29840,29840,29840,26444,29840,29840,26445,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26446, 29840,29840,29840,29840,29840,29840,26447,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26448,29840,26449,29840,26450,29840,26766,26451,26452, 29840,29840,29840,26453,29840,27074,26454,29840,26455,29840, 26456,29840,26457,26458,26459, 3291,29840,22156,29840,29840, 29840,29840,29840,29840,20312,29840,29840,22157,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22158, 29840,29840,29840,29840,29840,29840,22159,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27094,22160,29840,22161,29840,22163,29840,29840,22164,22186, 29840,29840,29840,22166,29840,29840,22167,29840,22168,29840, 22169,29840,22170,22171,22172, 3291,29840,22156,29840,29840, 29840,29840,29840,29840,20312,29840,29840,22157,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22158, 29840,29840,29840,29840,29840,29840,22159,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22160,29840,22161,29840,22163,29840,29840,22164,22186, 29840,29840,29840,22166,29840,29840,22167,29840,27095,29840, 22169,29840,22170,22171,22172,22691,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22692,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27098,29840,29840,29840,29840,29840,29840,22693,29840,29840, 29840,29840,29840,29840,22694,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22695, 29840,22696,22773,22697,29840,29840,22698,22699,29840,29840, 29840,22700,29840,29840,22701,29840,22702,29840,22703,29840, 22704,22705,22706,22691,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22692,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22693,29840,29840,29840,29840, 29840,29840,22694,29840,29840,27099,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22695,29840,22696, 22773,22697,29840,29840,22698,22699,29840,29840,29840,22700, 29840,29840,22701,29840,22702,29840,22703,29840,22704,22705, 22706, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27102,22193,29840,22194, 29840,22195,29840,29840,22196,22197,29840,29840,29840,22198, 29840,29840,22199,29840,22200,29840,22201,29840,22202,22203, 22204, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22193,29840,22194, 29840,22195,29840,29840,22196,22197,29840,29840,29840,22198, 29840,29840,22199,29840,27103,29840,22201,29840,22202,22203, 22204,22728,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27105,29840,29840,29840, 29840,29840,29840,22730,29840,29840,29840,29840,29840,29840, 22731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22732,29840,22733,22793,22734, 29840,29840,22735,22736,29840,29840,29840,22737,29840,29840, 22738,29840,22739,29840,22740,29840,22741,22742,22743,22728, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22729, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22730,29840,29840,29840,29840,29840,29840,22731,29840, 29840,27106,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22732,29840,22733,22793,22734,29840,29840, 22735,22736,29840,29840,29840,22737,29840,29840,22738,29840, 22739,29840,22740,29840,22741,22742,22743, 3291,29840,22206, 29840,29840,29840,29840,29840,29840,22207,29840,29840,22208, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22209,29840,29840,29840,29840,29840,29840,22210,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27109,22211,29840,22212,29840,22213,29840,29840, 22214,22215,29840,29840,29840,22216,29840,29840,22217,29840, 22218,29840,22219,29840,22220,22221,22222, 3291,29840,22206, 29840,29840,29840,29840,29840,29840,22207,29840,29840,22208, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22209,29840,29840,29840,29840,29840,29840,22210,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22211,29840,22212,29840,22213,29840,29840, 22214,22215,29840,29840,29840,22216,29840,29840,22217,29840, 27110,29840,22219,29840,22220,22221,22222,23744,23323,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27121, 27121,27121,27121,27121,27121,27121,27121,27121,29840,27121, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 23324,27124,23323,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26812,26812,26812,26812,26812,26812,26812, 26812,26812,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23324,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26815,29840,26812,26812,26812,26812, 26812,26812,26522,26234,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27148,27148,27148,27148,27148,27148, 27148,27148,27148,29840,27148,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26235,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26236,26522,26234,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26836,26836,26836,26836, 26836,26836,26836,26836,26836,29840,26836,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26235,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26236,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,27149,23744,23323,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,24120,24120,24120,24120,24120,24120, 24120,24120,24120,29840,24120,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23324, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840, 29840,29840,27170,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,27171,29840,29840,29840,29840, 27170,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,25140,24824,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27176,27176,27176,27176,27176,27176, 27176,27176,27176,29840,27176,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,24825,27178,27178,27178,27178, 27178,27178,27178,27178,27178,26562,29840,29840,29840,29840, 29840,29840,27178,27178,27178,27178,27178,27179,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27178, 27178,27178,27178,27178,27178,27181,27181,27181,27181,27181, 27181,27181,27181,27181,29840,29840,29840,29840,29840,29840, 29840,27181,27181,27181,27181,27181,27182,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22958,29840,29840,29840,27181,27181, 27181,27181,27181,27181,27184,27184,27184,27184,27184,27184, 27184,27184,27184,29840,29840,29840,29840,29840,29840,29840, 27184,27184,27184,27184,27184,27185,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27184,27184,27184, 27184,27184,27184,27187,27188,27189,27190,27190,27190,27190, 27190,27190,26268,29840,29840,29840,29840,29840,29840,26267, 26267,26267,26267,26267,26269,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26267,26267,26267,26267, 26267,26267,27191,27191,27191,27191,27191,27191,27191,27191, 27191,29840,29840,29840,29840,29840,29840,29840,27191,27191, 27191,27191,27191,27192,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27191,27191,27191,27191,27191, 27191,25205,29840,26280,26280,26280,26280,26280,26280,26280, 26280,26280,26281,29840,29840,29840,29840,29840,29840,26280, 26280,26280,26280,26280,26282,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26280,26280,26280,26280, 26280,26280,27197,27197,27197,27197,27197,27197,27197,27197, 27197,29840,29840,29840,29840,29840,29840,29840,27197,27197, 27197,27197,27197,27198,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27197,27197,27197,27197,27197, 27197,26289,26289,26289,26289,26289,26289,26289,26289,26289, 26290,29840,29840,29840,29840,29840,29840,26289,26289,26289, 26289,26289,26291,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26289,26289,26289,26289,26289,26289, 26286,26286,26286,26286,26286,26286,26286,26286,26286,25750, 29840,29840,29840,29840,29840,29840,26286,26286,26286,26286, 26286,26287,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26286,26286,26286,26286,26286,26286,27203, 27203,27203,27203,27203,27203,27203,27203,27203,29840,29840, 29840,29840,29840,29840,29840,27203,27203,27203,27203,27203, 27204,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27203,27203,27203,27203,27203,27203,26302,26302, 26302,26302,26302,26302,26302,26302,26302,26303,29840,29840, 29840,29840,29840,29840,26302,26302,26302,26302,26302,26304, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26302,26302,26302,26302,26302,26302,26299,26299,26299, 26299,26299,26299,26299,26299,26299,25762,29840,29840,29840, 29840,29840,29840,26299,26299,26299,26299,26299,26300,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26299,26299,26299,26299,26299,26299,27209,27209,27209,27209, 27209,27209,27209,27209,27209,29840,29840,29840,29840,29840, 29840,29840,27209,27209,27209,27209,27209,27210,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27209, 27209,27209,27209,27209,27209,26316,26316,26316,26316,26316, 26316,26316,26316,26316,26317,29840,29840,29840,29840,29840, 29840,26316,26316,26316,26316,26316,26318,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26316,26316, 26316,26316,26316,26316,26313,26313,26313,26313,26313,26313, 26313,26313,26313,25778,29840,29840,29840,29840,29840,29840, 26313,26313,26313,26313,26313,26314,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26313,26313,26313, 26313,26313,26313,27215,27215,27215,27215,27215,27215,27215, 27215,27215,26611,29840,29840,29840,29840,29840,29840,27215, 27215,27215,27215,27215,27216,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27215,27215,27215,27215, 27215,27215,27218,27218,27218,27218,27218,27218,27218,27218, 27218,29840,29840,29840,29840,29840,29840,29840,27218,27218, 27218,27218,27218,27219,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27218,27218,27218,27218,27218, 27218,27221,27222,27223,27224,27224,27224,27224,27224,27224, 29840,29840,29840,29840,29840,29840,29840,26329,26329,26329, 26329,26329,26330,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26329,26329,26329,26329,26329,26329, 27225,27225,27225,27225,27225,27225,27225,27225,27225,26066, 29840,29840,29840,29840,29840,29840,26327,26327,26327,26327, 26327,26328,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26327,26327,26327,26327,26327,26327,25552, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25553, 27250,27250,27250,27250,27250,27250,27250,27250,27250,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25554,29840,29840,29840,29840,29840,29840,25555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25556,29840,25840,29840,25558,29840,29840, 25559,25560,29840,29840,29840,25561,29840,29840,25562,29840, 25563,29840,25841,29840,25565,25842,25567,25552,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25553,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25554, 29840,29840,29840,29840,29840,29840,25555,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25556,29840,25557,25845,25558,29840,29840,25559,25560, 29840,29840,29840,25561,29840,27251,25562,29840,25563,29840, 25564,29840,25565,25566,25567, 3291,29840,26384,29840,29840, 29840,29840,29840,29840,25551,29840,29840,26385,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26386, 29840,29840,29840,29840,29840,29840,26387,29840,29840,29840, 29840,29840,27261,29840,29840,29840,29840,29840,29840,29840, 29840,26388,29840,26389,29840,26391,29840,29840,26392,26414, 29840,29840,29840,26394,29840,29840,26395,29840,26396,29840, 26397,29840,26398,26399,26400, 3291,29840,26384,29840,29840, 29840,29840,29840,29840,25551,29840,29840,26385,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26386, 29840,29840,29840,29840,29840,29840,26387,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26388,29840,26389,29840,26391,29840,29840,26392,26414, 29840,29840,29840,26394,27262,29840,26395,29840,26396,29840, 26397,29840,26398,26399,26400,20272,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20274,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20275,29840,29840, 29840,29840,29840,29840,20276,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20277, 29840,20278,29840,20280,29840,29840,27287,20282,29840,29840, 29840,20283,29840,29840,20284,29840,20285,29840,20286,29840, 20287,20288,20289,20272,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20274,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20275,29840,29840,29840,29840, 29840,29840,20276,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20277,29840,20278, 27288,20280,29840,29840,20281,20282,29840,29840,29840,20283, 21011,29840,20284,29840,20285,29840,20286,29840,20287,20288, 20289, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22107,29840,22108, 29840,22110,29840,29840,27290,22137,29840,29840,29840,22113, 29840,29840,22114,29840,22115,29840,22116,29840,22117,22118, 22119, 3291,29840,22103,29840,29840,29840,29840,29840,29840, 20271,29840,29840,22104,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22105,29840,29840,29840,29840, 29840,29840,22106,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22107,29840,22108, 29840,22110,29840,29840,22111,22137,29840,29840,29840,22113, 29840,27291,22114,29840,22115,29840,22116,29840,22117,22118, 22119,20313,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20314,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20315,29840,29840,29840,29840,29840,29840, 20316,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,20317,29840,20318,29840,20319, 29840,29840,27294,20321,29840,29840,29840,20322,29840,29840, 20323,29840,20324,29840,20325,29840,20326,20327,20328,20313, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20314, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20315,29840,29840,29840,29840,29840,29840,20316,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20317,29840,20318,27295,20319,29840,29840, 20320,20321,29840,29840,29840,20322,21050,29840,20323,29840, 20324,29840,20325,29840,20326,20327,20328, 3291,29840,26425, 29840,29840,29840,29840,29840,29840,26426,29840,29840,26427, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26428,29840,29840,29840,29840,29840,29840,26429,29840, 29840,29840,29840,29840,27298,29840,29840,29840,29840,29840, 29840,29840,29840,26430,29840,26431,29840,26432,29840,29840, 26433,26434,29840,29840,29840,26435,29840,29840,26436,29840, 26437,29840,26438,29840,26439,26440,26441,26707,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26708,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26709, 29840,29840,29840,29840,29840,29840,26710,29840,29840,29840, 29840,29840,27299,29840,29840,29840,29840,29840,29840,29840, 29840,26711,29840,26712,29840,26713,29840,29840,26714,26715, 29840,29840,29840,26716,29840,29840,26717,29840,26718,29840, 26719,29840,26720,26721,26722,26707,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26708,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26709,29840,29840, 29840,29840,29840,29840,26710,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26711, 29840,26712,29840,26713,29840,27018,26714,26715,29840,29840, 29840,26716,29840,27300,26717,29840,26718,29840,26719,29840, 26720,26721,26722, 3291,29840,26425,29840,29840,29840,29840, 29840,29840,26426,29840,29840,26427,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26428,29840,29840, 29840,29840,29840,29840,26429,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26430, 29840,26431,29840,26432,29840,29840,26433,26434,29840,29840, 29840,26435,27320,29840,26436,29840,26437,29840,26438,29840, 26439,26440,26441, 3291,29840,26443,29840,29840,29840,29840, 29840,29840,26444,29840,29840,26445,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26446,29840,29840, 29840,29840,29840,29840,26447,29840,29840,29840,29840,29840, 27340,29840,29840,29840,29840,29840,29840,29840,29840,26448, 29840,26449,29840,26450,29840,29840,26451,26452,29840,29840, 29840,26453,29840,29840,26454,29840,26455,29840,26456,29840, 26457,26458,26459,26744,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26745,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26746,29840,29840,29840,29840, 29840,29840,26747,29840,29840,29840,29840,29840,27341,29840, 29840,29840,29840,29840,29840,29840,29840,26748,29840,26749, 29840,26750,29840,29840,26751,26752,29840,29840,29840,26753, 29840,29840,26754,29840,26755,29840,26756,29840,26757,26758, 26759,26744,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26745,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26746,29840,29840,29840,29840,29840,29840, 26747,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26748,29840,26749,29840,26750, 29840,27060,26751,26752,29840,29840,29840,26753,29840,27342, 26754,29840,26755,29840,26756,29840,26757,26758,26759, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26448,29840,26449,29840,26450, 29840,29840,26451,26452,29840,29840,29840,26453,27362,29840, 26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,27382,22186,29840,29840,29840,22166,29840,29840, 22167,29840,22168,29840,22169,29840,22170,22171,22172, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,22164,22186,29840,29840,29840,22166,29840,27383, 22167,29840,22168,29840,22169,29840,22170,22171,22172,22691, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22692, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22693,29840,29840,29840,29840,29840,29840,22694,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27386,22695,29840,22696,29840,22697,29840,29840, 22698,22699,29840,29840,29840,22700,29840,29840,22701,29840, 22702,29840,22703,29840,22704,22705,22706,22691,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22692,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22693, 29840,29840,29840,29840,29840,29840,22694,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22695,29840,22696,29840,22697,29840,29840,22698,22699, 29840,29840,29840,22700,29840,29840,22701,29840,27387,29840, 22703,29840,22704,22705,22706,22691,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22692,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22693,29840,29840, 29840,29840,29840,29840,22694,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22695, 29840,22696,29840,22697,29840,29840,22698,27388,29840,29840, 29840,22700,29840,29840,22701,29840,22702,29840,22703,29840, 22704,22705,22706,22691,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22692,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22693,29840,29840,29840,29840, 29840,29840,22694,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22695,29840,23135, 29840,22697,29840,29840,22698,22699,29840,29840,29840,22700, 29840,29840,22701,29840,22702,29840,23136,29840,22704,23137, 22706, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22193,29840,22194, 29840,22195,29840,29840,27389,22197,29840,29840,29840,22198, 29840,29840,22199,29840,22200,29840,22201,29840,22202,22203, 22204, 3291,29840,22188,29840,29840,29840,29840,29840,29840, 22189,29840,29840,22190,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22191,29840,29840,29840,29840, 29840,29840,22192,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22193,29840,22194, 29840,22195,29840,29840,22196,22197,29840,29840,29840,22198, 29840,27390,22199,29840,22200,29840,22201,29840,22202,22203, 22204,22728,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22730,29840,29840,29840,29840,29840,29840, 22731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27392,22732,29840,22733,29840,22734, 29840,29840,22735,22736,29840,29840,29840,22737,29840,29840, 22738,29840,22739,29840,22740,29840,22741,22742,22743,22728, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22729, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22730,29840,29840,29840,29840,29840,29840,22731,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22732,29840,22733,29840,22734,29840,29840, 22735,22736,29840,29840,29840,22737,29840,29840,22738,29840, 27393,29840,22740,29840,22741,22742,22743,22728,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22729,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22730, 29840,29840,29840,29840,29840,29840,22731,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22732,29840,22733,29840,22734,29840,29840,22735,27394, 29840,29840,29840,22737,29840,29840,22738,29840,22739,29840, 22740,29840,22741,22742,22743,22728,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22730,29840,29840, 29840,29840,29840,29840,22731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22732, 29840,23176,29840,22734,29840,29840,22735,22736,29840,29840, 29840,22737,29840,29840,22738,29840,22739,29840,23177,29840, 22741,23178,22743, 3291,29840,22206,29840,29840,29840,29840, 29840,29840,22207,29840,29840,22208,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22209,29840,29840, 29840,29840,29840,29840,22210,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22211, 29840,22212,29840,22213,29840,29840,27395,22215,29840,29840, 29840,22216,29840,29840,22217,29840,22218,29840,22219,29840, 22220,22221,22222, 3291,29840,22206,29840,29840,29840,29840, 29840,29840,22207,29840,29840,22208,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22209,29840,29840, 29840,29840,29840,29840,22210,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22211, 29840,22212,29840,22213,29840,29840,22214,22215,29840,29840, 29840,22216,29840,27396,22217,29840,22218,29840,22219,29840, 22220,22221,22222,22691,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22692,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27398,29840,29840,29840, 29840,29840,29840,29840,29840,22693,29840,29840,29840,29840, 29840,29840,22694,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22695,29840,22696, 29840,22697,29840,29840,22698,22699,29840,29840,29840,22700, 29840,29840,22701,29840,22702,29840,22703,29840,22704,22705, 22706,22728,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22729,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27400,29840,29840,29840,29840,29840, 29840,29840,29840,22730,29840,29840,29840,29840,29840,29840, 22731,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22732,29840,22733,29840,22734, 29840,29840,22735,22736,29840,29840,29840,22737,29840,29840, 22738,29840,22739,29840,22740,29840,22741,22742,22743,25367, 25073,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,27402,27402,27402,27402,27402,27402,27402,27402,27402, 29840,27402,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25074,26806,26496,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27119,27119,27119,27119,27119, 27119,27119,27119,27119,29840,27119,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27405,23744,23323,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27121,27121,27121,27121,27121,27121,27121, 27121,27121,29840,27121,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23324,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,27407,23744, 23323,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,27409,27409,27409,27409,27409,27409,27409,27409,27409, 29840,27409,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23324,23744,23323,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27413,27413,27413,27413,27413, 27413,27413,27413,27413,29840,27413,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23324,26522,26234,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27148, 27148,27148,27148,27148,27148,27148,27148,27148,29840,27148, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26235,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26236,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27436,25406,25113,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27442,27442,27442, 27442,27442,27442,27442,27442,27442,29840,27442,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25114,23744, 23323,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24460,24460,24460,24460,24460,24460,24460,24460,24460, 29840,24460,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,23324, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,27456, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,27457,29840,29840,29840,29840,27456,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139,27460, 27460,27460,27460,27460,27460,27460,27460,27460,29840,29840, 29840,29840,29840,29840,29840,27460,27460,27460,27460,27460, 27461,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27460,27460,27460,27460,27460,27460,25140,24824, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27176,27176,27176,27176,27176,27176,27176,27176,27176,29840, 27176,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,24825,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27463,27465,27465,27465,27465, 27465,27465,27465,27465,27465,29840,29840,29840,29840,29840, 29840,29840,27465,27465,27465,27465,27465,27466,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22958,29840,29840,29840,27465, 27465,27465,27465,27465,27465,27468,27468,27468,27468,27468, 27468,27468,27468,27468,29840,29840,29840,29840,29840,29840, 29840,27468,27468,27468,27468,27468,27469,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,27468,27468, 27468,27468,27468,27468,25205,29840,26561,26561,26561,26561, 26561,26561,26561,26561,26561,26562,29840,29840,29840,29840, 29840,29840,26561,26561,26561,26561,26561,26563,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26561, 26561,26561,26561,26561,26561,27474,27474,27474,27474,27474, 27474,27474,27474,27474,29840,29840,29840,29840,29840,29840, 29840,27474,27474,27474,27474,27474,27475,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,27474,27474, 27474,27474,27474,27474,25205,29840,27477,27477,27477,27477, 27477,27477,27477,27477,27477,26281,29840,29840,29840,29840, 29840,29840,26574,26574,26574,26574,26574,26575,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26574, 26574,26574,26574,26574,26574,27478,27478,27478,27478,27478, 27478,27478,27478,27478,29840,29840,29840,29840,29840,29840, 29840,27478,27478,27478,27478,27478,27479,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,27478,27478, 27478,27478,27478,27478,27481,27481,27481,27481,27481,27481, 27481,27481,27481,26290,29840,29840,29840,29840,29840,29840, 26580,26580,26580,26580,26580,26581,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26580,26580,26580, 26580,26580,26580,27482,27482,27482,27482,27482,27482,27482, 27482,27482,29840,29840,29840,29840,29840,29840,29840,27482, 27482,27482,27482,27482,27483,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27482,27482,27482,27482, 27482,27482,27485,27485,27485,27485,27485,27485,27485,27485, 27485,26303,29840,29840,29840,29840,29840,29840,26589,26589, 26589,26589,26589,26590,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26589,26589,26589,26589,26589, 26589,27486,27486,27486,27486,27486,27486,27486,27486,27486, 29840,29840,29840,29840,29840,29840,29840,27486,27486,27486, 27486,27486,27487,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27486,27486,27486,27486,27486,27486, 27489,27489,27489,27489,27489,27489,27489,27489,27489,26317, 29840,29840,29840,29840,29840,29840,26598,26598,26598,26598, 26598,26599,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26598,26598,26598,26598,26598,26598,27490, 27490,27490,27490,27490,27490,27490,27490,27490,29840,29840, 29840,29840,29840,29840,29840,27490,27490,27490,27490,27490, 27491,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27490,27490,27490,27490,27490,27490,26610,26610, 26610,26610,26610,26610,26610,26610,26610,26611,29840,29840, 29840,29840,29840,29840,26610,26610,26610,26610,26610,26612, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26610,26610,26610,26610,26610,26610,26607,26607,26607, 26607,26607,26607,26607,26607,26607,26066,29840,29840,29840, 29840,29840,29840,26607,26607,26607,26607,26607,26608,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26607,26607,26607,26607,26607,26607,25552,27524,29840,29840, 29840,29840,29840,29840,29840,27525,25553,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25554,29840, 29840,29840,29840,29840,29840,25555,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25556,29840,25557,29840,25558,29840,29840,25559,25560,29840, 29840,29840,25561,29840,29840,25562,29840,25563,29840,25564, 29840,25565,25566,25567,25552,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27526,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25554,29840,29840,29840, 29840,29840,29840,25555,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25556,29840, 25557,29840,25558,29840,29840,25559,25560,29840,29840,29840, 25561,29840,29840,25562,29840,25563,29840,25564,29840,25565, 25566,25567,25552,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25553,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27527,29840,29840, 29840,29840,29840,29840,25554,29840,29840,29840,29840,29840, 29840,25555,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25556,29840,25840,29840, 25558,29840,29840,25559,25560,29840,29840,29840,25561,29840, 29840,25562,29840,25563,29840,25841,29840,25565,25842,25567, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,26385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,26983, 26391,29840,29840,26392,26414,29840,29840,29840,26394,29840, 29840,26395,29840,26396,29840,26397,29840,26398,26399,26400, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,27530,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,26983, 26391,29840,29840,26392,27531,29840,29840,29840,26394,29840, 29840,26395,29840,26396,29840,26397,29840,26398,26399,26400, 20272,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20274,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27559,29840,29840,29840,29840,29840,29840, 29840,29840,20275,29840,29840,29840,29840,29840,29840,20276, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20277,29840,20278,29840,20280,29840, 29840,20281,20282,29840,29840,29840,20283,29840,21010,20284, 29840,20285,29840,20286,29840,20287,20288,20289,20272,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20274,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20275,29840,29840,29840,29840,29840,29840,20276,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20277,29840,20278,29840,27560,29840,29840,20281, 20282,29840,29840,29840,20283,29840,29840,20284,29840,20285, 29840,20286,29840,20287,20288,20289,20272,27561,29840,29840, 29840,29840,29840,29840,29840,29840,20274,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20275,29840, 20999,29840,29840,29840,29840,20276,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20277,29840,20278,29840,20280,29840,29840,20281,20282,29840, 29840,29840,20283,29840,29840,20284,29840,20285,29840,20286, 29840,20287,20288,20289, 3291,29840,22103,29840,29840,29840, 29840,29840,29840,20271,29840,29840,22104,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22105,29840, 29840,29840,29840,29840,29840,22106,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27562,29840,22108,29840,22110,29840,29840,22111,22137,29840, 29840,29840,22113,29840,22612,22114,29840,22115,29840,22116, 29840,22117,22118,22119, 3291,29840,22103,29840,29840,29840, 29840,29840,29840,20271,29840,29840,22104,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22105,29840, 29840,29840,29840,29840,29840,22106,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22107,29840,22108,29840,22110,29840,29840,22111,22137,29840, 29840,29840,22113,29840,29840,22114,29840,22115,29840,22116, 23069,27563,22118,22119,20313,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20314,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27566,29840,29840, 29840,29840,29840,29840,29840,29840,20315,29840,29840,29840, 29840,29840,29840,20316,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20317,29840, 20318,29840,20319,29840,29840,20320,20321,29840,29840,29840, 20322,29840,21049,20323,29840,20324,29840,20325,29840,20326, 20327,20328,20313,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20314,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20315,29840,29840,29840,29840,29840, 29840,20316,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20317,29840,20318,29840, 27567,29840,29840,20320,20321,29840,29840,29840,20322,29840, 29840,20323,29840,20324,29840,20325,29840,20326,20327,20328, 20313,27568,29840,29840,29840,29840,29840,29840,29840,29840, 20314,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20315,29840,21040,29840,29840,29840,29840,20316, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20317,29840,20318,29840,20319,29840, 29840,20320,20321,29840,29840,29840,20322,29840,29840,20323, 29840,20324,29840,20325,29840,20326,20327,20328, 3291,29840, 26425,29840,29840,29840,29840,29840,29840,26426,29840,29840, 26427,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26428,29840,29840,29840,29840,29840,29840,26429, 29840,29840,27570,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26430,29840,26431,29840,26432,29840, 29840,26433,26434,29840,29840,29840,26435,29840,29840,26436, 29840,26437,29840,26438,29840,26439,26440,26441,26707,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26708,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26709,29840,29840,29840,29840,29840,29840,26710,29840,29840, 29840,29840,29840,27571,29840,29840,29840,29840,29840,29840, 29840,29840,26711,29840,26712,29840,26713,29840,29840,26714, 26715,29840,29840,29840,26716,29840,29840,26717,29840,26718, 29840,26719,29840,26720,26721,26722,26707,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26708,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26709,29840, 29840,29840,29840,29840,29840,26710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26711,29840,26712,29840,26713,29840,29840,26714,26715,29840, 29840,29840,26716,27572,29840,26717,29840,26718,29840,26719, 29840,26720,26721,26722, 3291,29840,26425,29840,29840,29840, 29840,29840,29840,26426,29840,29840,26427,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26428,29840, 29840,29840,29840,29840,29840,26429,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26430,29840,26431,26728,26432,29840,29840,26433,27043,29840, 29840,29840,26435,29840,29840,26436,29840,26437,29840,26438, 29840,26439,26440,26441, 3291,29840,26443,29840,29840,29840, 29840,29840,29840,26444,29840,29840,26445,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26446,29840, 29840,29840,29840,29840,29840,26447,29840,29840,27611,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26448,29840,26449,29840,26450,29840,29840,26451,26452,29840, 29840,29840,26453,29840,29840,26454,29840,26455,29840,26456, 29840,26457,26458,26459,26744,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26745,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26746,29840,29840,29840, 29840,29840,29840,26747,29840,29840,29840,29840,29840,27612, 29840,29840,29840,29840,29840,29840,29840,29840,26748,29840, 26749,29840,26750,29840,29840,26751,26752,29840,29840,29840, 26753,29840,29840,26754,29840,26755,29840,26756,29840,26757, 26758,26759,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,29840, 26750,29840,29840,26751,26752,29840,29840,29840,26753,27613, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 3291,29840,26443,29840,29840,29840,29840,29840,29840,26444, 29840,29840,26445,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26446,29840,29840,29840,29840,29840, 29840,26447,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26448,29840,26449,26765, 26450,29840,29840,26451,27085,29840,29840,29840,26453,29840, 29840,26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291,29840,22156,29840,29840,29840,29840,29840,29840,20312, 29840,29840,22157,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22158,29840,29840,29840,29840,29840, 29840,22159,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27652,29840,22161,29840, 22163,29840,29840,22164,22186,29840,29840,29840,22166,29840, 22665,22167,29840,22168,29840,22169,29840,22170,22171,22172, 3291,29840,22156,29840,29840,29840,29840,29840,29840,20312, 29840,29840,22157,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22158,29840,29840,29840,29840,29840, 29840,22159,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22160,29840,22161,29840, 22163,29840,29840,22164,22186,29840,29840,29840,22166,29840, 29840,22167,29840,22168,29840,22169,23118,27653,22171,22172, 22691,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22692,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22693,29840,29840,29840,29840,29840,29840,22694, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22695,29840,22696,29840,22697,29840, 29840,27656,22699,29840,29840,29840,22700,29840,29840,22701, 29840,22702,29840,22703,29840,22704,22705,22706,22691,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,29840,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22695,29840,22696,29840,22697,29840,29840,22698, 22699,29840,29840,29840,22700,29840,27657,22701,29840,22702, 29840,22703,29840,22704,22705,22706, 3291,29840,22188,29840, 29840,29840,29840,29840,29840,22189,29840,29840,22190,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22191,29840,29840,29840,29840,29840,29840,22192,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27659,29840,22194,29840,22195,29840,29840,22196, 22197,29840,29840,29840,22198,29840,22715,22199,29840,22200, 29840,22201,29840,22202,22203,22204, 3291,29840,22188,29840, 29840,29840,29840,29840,29840,22189,29840,29840,22190,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22191,29840,29840,29840,29840,29840,29840,22192,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22193,29840,22194,29840,22195,29840,29840,22196, 22197,29840,29840,29840,22198,29840,29840,22199,29840,22200, 29840,22201,23169,27660,22203,22204,22728,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22730,29840, 29840,29840,29840,29840,29840,22731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22732,29840,22733,29840,22734,29840,29840,27662,22736,29840, 29840,29840,22737,29840,29840,22738,29840,22739,29840,22740, 29840,22741,22742,22743,22728,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22729,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22730,29840,29840,29840, 29840,29840,29840,22731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22732,29840, 22733,29840,22734,29840,29840,22735,22736,29840,29840,29840, 22737,29840,27663,22738,29840,22739,29840,22740,29840,22741, 22742,22743, 3291,29840,22206,29840,29840,29840,29840,29840, 29840,22207,29840,29840,22208,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22209,29840,29840,29840, 29840,29840,29840,22210,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,27665,29840, 22212,29840,22213,29840,29840,22214,22215,29840,29840,29840, 22216,29840,22752,22217,29840,22218,29840,22219,29840,22220, 22221,22222, 3291,29840,22206,29840,29840,29840,29840,29840, 29840,22207,29840,29840,22208,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22209,29840,29840,29840, 29840,29840,29840,22210,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22211,29840, 22212,29840,22213,29840,29840,22214,22215,29840,29840,29840, 22216,29840,29840,22217,29840,22218,29840,22219,23210,27666, 22221,22222,25367,25073,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27402,27402,27402,27402,27402,27402, 27402,27402,27402,29840,27402,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25074,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27672, 26806,26496,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27404,27404,27404,27404,27404,27404,27404,27404, 27404,29840,27404,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27674,23744,23323, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27409,27409,27409,27409,27409,27409,27409,27409,27409,29840, 27409,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,23324,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27678,23744,23323,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,27679,27679, 27679,27679,27679,27679,27679,27679,27679,29840,27679,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,23324, 23744,23323,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27413,27413,27413,27413,27413,27413,27413,27413, 27413,29840,27413,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23324,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27682,25673,25384, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27687,27687,27687,27687,27687,27687,27687,27687,27687,29840, 27687,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25385,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25386, 25406,25113,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27442,27442,27442,27442,27442,27442,27442,27442, 27442,29840,27442,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25114,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27702, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,27714,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,27715,29840,29840, 29840,29840,27714,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,27718,27718,27718,27718,27718,27718, 27718,27718,27718,29840,29840,29840,29840,29840,29840,29840, 27718,27718,27718,27718,27718,27719,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27718,27718,27718, 27718,27718,27718,25205,29840,27723,27723,27723,27723,27723, 27723,27723,27723,27723,26562,29840,29840,29840,29840,29840, 29840,26869,26869,26869,26869,26869,26870,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26869,26869, 26869,26869,26869,26869,26883,26883,26883,26883,26883,26883, 26883,26883,26883,26281,29840,29840,29840,29840,29840,29840, 26883,26883,26883,26883,26883,26884,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22958,29840,29840,29840,26883,26883,26883, 26883,26883,26883,26893,26893,26893,26893,26893,26893,26893, 26893,26893,26290,29840,29840,29840,29840,29840,29840,26893, 26893,26893,26893,26893,26894,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26893,26893,26893,26893, 26893,26893,26904,26904,26904,26904,26904,26904,26904,26904, 26904,26303,29840,29840,29840,29840,29840,29840,26904,26904, 26904,26904,26904,26905,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26904,26904,26904,26904,26904, 26904,26915,26915,26915,26915,26915,26915,26915,26915,26915, 26317,29840,29840,29840,29840,29840,29840,26915,26915,26915, 26915,26915,26916,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26915,26915,26915,26915,26915,26915, 27724,27724,27724,27724,27724,27724,27724,27724,27724,29840, 29840,29840,29840,29840,29840,29840,27724,27724,27724,27724, 27724,27725,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22958, 29840,29840,29840,27724,27724,27724,27724,27724,27724,27727, 27727,27727,27727,27727,27727,27727,27727,27727,26611,29840, 29840,29840,29840,29840,29840,26926,26926,26926,26926,26926, 26927,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26926,26926,26926,26926,26926,26926,27754,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25553,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,29840,29840,29840,29840,29840,25555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25556,29840,25557,29840,25558,29840,29840,25559, 25560,29840,29840,29840,25561,29840,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567,25552,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25553,27755,27755,27755, 27755,27755,27755,27755,27755,27755,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25554,29840, 29840,29840,29840,29840,29840,25555,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25556,29840,25557,29840,25558,29840,29840,25559,25560,29840, 29840,29840,25561,29840,29840,25562,29840,25563,29840,25564, 29840,25565,25566,25567,25551,25551,25551,25551,25551,25551, 25551,25551,25551,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25840, 29840,29840,29840,29840,29840,29840,29840,29840,27756,29840, 29840,29840,29840,29840,29840,29840,25841,29840,29840,25842, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,26385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26665,29840, 26391,29840,29840,26392,26414,29840,29840,29840,26394,29840, 29840,26395,29840,26396,29840,26666,29840,26398,26667,26400, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,26385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,29840, 26391,29840,29840,26392,26414,29840,29840,29840,26394,26675, 29840,26395,29840,26396,27760,26397,29840,26398,26399,26400, 27780,26967,25551,25551,25551,25551,25551,25551,25551,25551, 25551,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26125,29840, 29840,29840,29840,26968,20272,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20274,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20275,29840,29840,29840, 29840,29840,29840,20276,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20277,29840, 20278,29840,20280,29840,29840,20281,20282,29840,29840,29840, 20283,29840,29840,20284,29840,20285,29840,20286,29840,20287, 20288,20289,20272,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20274,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20275,29840,29840,29840,29840,29840, 29840,20276,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20277,29840,20278,29840, 20280,29840,29840,20281,20282,29840,29840,29840,20283,29840, 29840,20284,29840,27783,29840,20286,29840,20287,20288,21009, 20272,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20274,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20275,29840,29840,29840,29840,29840,29840,20276, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20277,29840,20278,29840,20280,29840, 29840,20281,20282,29840,29840,29840,20283,29840,29840,20284, 29840,20285,29840,20286,29840,20287,20288,20289, 3291,29840, 22103,29840,29840,29840,29840,29840,29840,20271,29840,29840, 22104,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22105,29840,29840,29840,29840,29840,29840,22106, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22107,29840,22108,22109,22110,29840, 29840,22111,22137,29840,29840,29840,22113,29840,29840,22114, 29840,22115,27784,22116,29840,22117,22118,22119, 3291,29840, 22103,29840,29840,29840,29840,29840,29840,20271,22619,29840, 22104,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22105,29840,29840,29840,29840,29840,29840,22106, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22107,29840,22108,29840,22110,29840, 29840,22111,27785,29840,29840,29840,22113,29840,29840,22114, 29840,22115,29840,22116,29840,22117,22118,22119,20313,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20314,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20315,29840,29840,29840,29840,29840,29840,20316,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20317,29840,20318,29840,20319,29840,29840,20320, 20321,29840,29840,29840,20322,29840,29840,20323,29840,20324, 29840,20325,29840,20326,20327,20328,20313,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20314,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20315,29840, 29840,29840,29840,29840,29840,20316,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 20317,29840,20318,29840,20319,29840,29840,20320,20321,29840, 29840,29840,20322,29840,29840,20323,29840,27788,29840,20325, 29840,20326,20327,21048,20313,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20314,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,20315,29840,29840,29840, 29840,29840,29840,20316,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,20317,29840, 20318,29840,20319,29840,29840,20320,20321,29840,29840,29840, 20322,29840,29840,20323,29840,20324,29840,20325,29840,20326, 20327,20328,20313,29840,29840,29840,29840,29840,29840,29840, 29840,29840,20314,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,20315,29840,29840,29840,29840,29840, 29840,20316,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22153,21051,29840,20318,29840, 20319,29840,29840,20320,20321,29840,29840,29840,20322,29840, 29840,20323,29840,20324,29840,20325,29840,20326,20327,20328, 21052, 3291,29840,26425,29840,29840,29840,29840,29840,29840, 26426,29840,29840,27789,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26428,29840,29840,29840,29840, 29840,29840,26429,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26430,29840,26431, 29840,26432,29840,29840,26433,26434,29840,29840,29840,26435, 29840,29840,26436,29840,26437,29840,26438,29840,26439,26440, 26441,26707,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26708,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26709,29840,29840,29840,29840,29840,29840, 26710,29840,29840,27790,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26711,29840,26712,29840,26713, 29840,29840,26714,26715,29840,29840,29840,26716,29840,29840, 26717,29840,26718,29840,26719,29840,26720,26721,26722,26707, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26708, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26709,29840,29840,29840,29840,29840,29840,26710,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26711,29840,26712,29840,26713,29840,29840, 26714,26715,29840,29840,29840,26716,29840,29840,26717,29840, 26718,29840,27791,29840,26720,26721,26722,26707,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26708,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26709, 29840,29840,29840,29840,29840,29840,26710,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26711,29840,26712,29840,26713,29840,29840,27024,26715, 29840,29840,29840,27025,29840,27792,26717,29840,26718,29840, 26719,29840,26720,26721,26722, 3291,29840,26425,29840,29840, 29840,29840,29840,29840,26426,29840,29840,26427,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26428, 29840,29840,29840,29840,29840,29840,26429,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26430,29840,26431,29840,26432,29840,29840,26433,26434, 29840,29840,29840,26435,29840,29840,26436,29840,26437,29840, 26438,29840,26439,26440,26441, 3291,29840,26443,29840,29840, 29840,29840,29840,29840,26444,29840,29840,27827,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26446, 29840,29840,29840,29840,29840,29840,26447,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26448,29840,26449,29840,26450,29840,29840,26451,26452, 29840,29840,29840,26453,29840,29840,26454,29840,26455,29840, 26456,29840,26457,26458,26459,26744,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26745,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26746,29840,29840, 29840,29840,29840,29840,26747,29840,29840,27828,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26748, 29840,26749,29840,26750,29840,29840,26751,26752,29840,29840, 29840,26753,29840,29840,26754,29840,26755,29840,26756,29840, 26757,26758,26759,26744,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26745,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26746,29840,29840,29840,29840, 29840,29840,26747,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26748,29840,26749, 29840,26750,29840,29840,26751,26752,29840,29840,29840,26753, 29840,29840,26754,29840,26755,29840,27829,29840,26757,26758, 26759,26744,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26745,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26746,29840,29840,29840,29840,29840,29840, 26747,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26748,29840,26749,29840,26750, 29840,29840,27066,26752,29840,29840,29840,27067,29840,27830, 26754,29840,26755,29840,26756,29840,26757,26758,26759, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26448,29840,26449,29840,26450, 29840,29840,26451,26452,29840,29840,29840,26453,29840,29840, 26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,22162,22163, 29840,29840,22164,22186,29840,29840,29840,22166,29840,29840, 22167,29840,22168,27865,22169,29840,22170,22171,22172, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,22674, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,22164,27866,29840,29840,29840,22166,29840,29840, 22167,29840,22168,29840,22169,29840,22170,22171,22172,22691, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22692, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22693,29840,29840,29840,29840,29840,29840,22694,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27869,29840,22696,29840,22697,29840,29840, 22698,22699,29840,29840,29840,22700,29840,23143,22701,29840, 22702,29840,22703,29840,22704,22705,22706,22691,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22692,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22693, 29840,29840,29840,29840,29840,29840,22694,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22695,29840,22696,29840,22697,29840,29840,22698,22699, 29840,29840,29840,22700,29840,29840,22701,29840,22702,29840, 22703,23567,27870,22705,22706, 3291,29840,22188,29840,29840, 29840,29840,29840,29840,22189,29840,29840,22190,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22191, 29840,29840,29840,29840,29840,29840,22192,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22193,29840,22194,22712,22195,29840,29840,22196,22197, 29840,29840,29840,22198,29840,29840,22199,29840,22200,27872, 22201,29840,22202,22203,22204, 3291,29840,22188,29840,29840, 29840,29840,29840,29840,22189,22723,29840,22190,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22191, 29840,29840,29840,29840,29840,29840,22192,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22193,29840,22194,29840,22195,29840,29840,22196,27873, 29840,29840,29840,22198,29840,29840,22199,29840,22200,29840, 22201,29840,22202,22203,22204,22728,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22730,29840,29840, 29840,29840,29840,29840,22731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27875, 29840,22733,29840,22734,29840,29840,22735,22736,29840,29840, 29840,22737,29840,23184,22738,29840,22739,29840,22740,29840, 22741,22742,22743,22728,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22730,29840,29840,29840,29840, 29840,29840,22731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22732,29840,22733, 29840,22734,29840,29840,22735,22736,29840,29840,29840,22737, 29840,29840,22738,29840,22739,29840,22740,23607,27876,22742, 22743, 3291,29840,22206,29840,29840,29840,29840,29840,29840, 22207,29840,29840,22208,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22209,29840,29840,29840,29840, 29840,29840,22210,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22211,29840,22212, 22749,22213,29840,29840,22214,22215,29840,29840,29840,22216, 29840,29840,22217,29840,22218,27878,22219,29840,22220,22221, 22222, 3291,29840,22206,29840,29840,29840,29840,29840,29840, 22207,22760,29840,22208,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22209,29840,29840,29840,29840, 29840,29840,22210,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22211,29840,22212, 29840,22213,29840,29840,22214,27879,29840,29840,29840,22216, 29840,29840,22217,29840,22218,29840,22219,29840,22220,22221, 22222,23744,23323,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26813, 26813,26813,26813,26813,26814,26813,26813,26813,26813,26813, 26813,26813,26813,26813,26813,26813,26813,26813,26813,26813, 26813,26813,27124,23323,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26812,26812,26812,26812,26812,26812, 26812,26812,26812,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,23324,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26815,29840,26812,26812,26812, 26812,26812,26812,23744,23323,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27679,27679,27679,27679,27679, 27679,27679,27679,27679,29840,27679,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,23324,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27888,23744,23323,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27889,27889,27889,27889,27889,27889,27889, 27889,27889,29840,27889,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23324,25673,25384,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27687,27687,27687, 27687,27687,27687,27687,27687,27687,29840,27687,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25385,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25386,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27894,25967,25684,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27898,27898,27898,27898,27898, 27898,27898,27898,27898,29840,27898,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25685,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25686, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,27921,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,27922,29840,29840,29840,29840,27921, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,25205,29840,27178,27178,27178,27178,27178,27178,27178, 27178,27178,26562,29840,29840,29840,29840,29840,29840,27178, 27178,27178,27178,27178,27179,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27178,27178,27178,27178, 27178,27178,27215,27215,27215,27215,27215,27215,27215,27215, 27215,26611,29840,29840,29840,29840,29840,29840,27215,27215, 27215,27215,27215,27216,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22958,29840,29840,29840,27215,27215,27215,27215,27215, 27215,27501,27502,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27934,27934,27934,27934,27934,27934,27934, 27934,27934,29840,27934,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27503,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27505, 25552,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25553,29840,29840,27958,29840,27959,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25554,29840,25839,29840,29840,29840,29840,25555, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25556,29840,25557,29840,25558,29840, 29840,25559,25560,29840,29840,29840,25561,29840,29840,25562, 29840,25563,29840,25564,29840,25565,25566,25567,25552,27524, 29840,29840,29840,29840,29840,29840,29840,29840,25553,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,29840,29840,29840,29840,29840,25555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25556,29840,25557,29840,25558,29840,29840,25559, 25560,29840,29840,29840,25561,29840,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567, 3291,29840,26384,29840, 29840,29840,29840,29840,29840,25551,29840,29840,26385,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26386,29840,29840,29840,29840,29840,29840,26387,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26388,29840,26389,29840,26391,29840,29840,26392, 26414,29840,29840,29840,26394,29840,29840,26395,29840,26396, 29840,27964,29840,26398,26399,26400, 3291,29840,26384,29840, 29840,29840,29840,29840,29840,25551,29840,29840,26385,27968, 27968,27968,27968,27968,27968,27968,27968,27968,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26386,29840,29840,29840,29840,29840,29840,26387,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26388,29840,26665,29840,26391,29840,29840,26392, 26414,29840,29840,29840,26394,29840,29840,26395,29840,26396, 29840,26666,29840,26398,26667,26400,26383,26383,26383,26383, 26383,26383,26383,26383,26383,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26389,26390,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27969,29840,29840,29840,29840,26397,29840, 29840,26399,27970,26383,26383,26383,26383,26383,26383,26383, 26383,26383,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26389,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26397,29840,29840,26399,26383, 26383,26383,26383,26383,26383,26383,26383,26383,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26389,29840,29840,29840,27971,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26397,29840,29840,26399,26383,26383,26383,26383,26383, 26383,26383,26383,26383,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27972,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26389,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26397,29840,29840, 26399,26383,26383,26383,26383,26383,26383,26383,26383,26383, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26389,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27973,29840,29840, 29840,29840,29840,26397,29840,29840,26399,26383,26383,26383, 26383,26383,26383,26383,26383,26383,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26389,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27974,29840,29840,29840,29840,29840,26397, 29840,29840,26399,26383,26383,26383,26383,26383,26383,26383, 26383,26383,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26389,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27975, 29840,29840,29840,29840,29840,26397,29840,29840,26399,26383, 26383,26383,26383,26383,26383,26383,26383,26383,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26389,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27976,29840,29840, 29840,26397,29840,29840,26399,26383,26383,26383,26383,26383, 26383,26383,26383,26383,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26389,27977,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26397,29840,29840, 26399,26383,26383,26383,26383,26383,26383,26383,26383,26383, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26389,29840,29840,29840, 26670,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26397,27978,29840,26399,26383,26383,26383, 26383,26383,26383,26383,26383,26383,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26389,29840,29840,29840,29840,29840,29840,29840, 29840,27979,29840,26675,29840,29840,29840,29840,29840,26397, 29840,29840,26399,26383,26383,26383,26383,26383,26383,26383, 26383,26383,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26676,29840,26389,29840, 29840,29840,29840,29840,27980,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26397,29840,29840,26399,29840, 26677,26383,26383,26383,26383,26383,26383,26383,26383,26383, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26389,29840,29840,27981, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26397,29840,29840,26399,26383,26383,26383, 26383,26383,26383,26383,26383,26383,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26389,29840,29840,29840,29840,29840,27982,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26397, 29840,29840,26399,26383,26383,26383,26383,26383,26383,26383, 26383,26383,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26389,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,27983, 29840,29840,29840,29840,29840,26397,29840,29840,26399,20272, 29840,29840,29840,29840,29840,29840,29840,29840,29840,20274, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27559,29840,29840,29840,29840,29840,29840,29840, 29840,20275,29840,29840,29840,29840,29840,29840,20276,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,20277,29840,20278,29840,20280,29840,29840, 20281,20282,29840,29840,29840,20283,29840,21016,20284,29840, 20285,29840,20286,29840,20287,20288,20289, 3291,29840,22103, 29840,29840,29840,29840,29840,29840,20271,29840,29840,22104, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22105,29840,29840,29840,29840,29840,29840,22106,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22107,29840,22108,29840,22110,29840,29840, 27985,22137,29840,29840,29840,22113,29840,29840,22114,29840, 22115,29840,22116,29840,22117,22118,22119, 3291,29840,22103, 29840,29840,29840,29840,29840,29840,20271,29840,29840,22104, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22105,29840,29840,29840,29840,29840,29840,22106,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22107,29840,22108,27986,22110,29840,29840, 22111,22137,29840,29840,29840,22113,22614,29840,22114,29840, 22115,29840,22116,29840,22117,22118,22119,20313,29840,29840, 29840,29840,29840,29840,29840,29840,29840,20314,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 27566,29840,29840,29840,29840,29840,29840,29840,29840,20315, 29840,29840,29840,29840,29840,29840,20316,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,20317,29840,20318,29840,20319,29840,29840,20320,20321, 29840,29840,29840,20322,29840,21055,20323,29840,20324,29840, 20325,29840,20326,20327,20328, 3291,29840,26425,29840,29840, 29840,29840,29840,29840,26426,29840,29840,26427,27988,27988, 27988,27988,27988,27988,27988,27988,27988,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26428, 29840,29840,29840,29840,29840,29840,26429,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26430,29840,26723,29840,26432,29840,29840,26433,26434, 29840,29840,29840,26435,29840,29840,26436,29840,26437,29840, 26724,29840,26439,26725,26441,26707,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27989,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26709,29840,29840, 29840,29840,29840,29840,26710,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26711, 29840,26712,29840,26713,29840,29840,26714,26715,29840,29840, 29840,26716,29840,29840,26717,29840,26718,29840,26719,29840, 26720,26721,26722,26707,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26708,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26709,29840,29840,29840,29840, 29840,29840,26710,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27990,29840,26712, 29840,26713,29840,29840,26714,26715,29840,29840,29840,26716, 29840,29840,26717,29840,26718,29840,26719,29840,26720,26721, 26722,27027, 3291,29840,26425,29840,29840,29840,29840,29840, 29840,26426,29840,29840,26427,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26428,29840,29840,29840, 29840,29840,29840,26429,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26430,29840, 26431,29840,26432,29840,29840,26433,26434,29840,29840,29840, 26435,29840,29840,26436,29840,26437,29840,26438,29840,26439, 26440,26730, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,28023,28023,28023,28023,28023, 28023,28023,28023,28023,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26760,29840,26450,29840,29840,26451,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26761,29840,26457, 26762,26459,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,28024,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,29840, 26750,29840,29840,26751,26752,29840,29840,29840,26753,29840, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 26744,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26745,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26746,29840,29840,29840,29840,29840,29840,26747, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28025,29840,26749,29840,26750,29840, 29840,26751,26752,29840,29840,29840,26753,29840,29840,26754, 29840,26755,29840,26756,29840,26757,26758,26759,27069, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26448,29840,26449,29840,26450, 29840,29840,26451,26452,29840,29840,29840,26453,29840,29840, 26454,29840,26455,29840,26456,29840,26457,26458,26767, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,29840,22163, 29840,29840,28058,22186,29840,29840,29840,22166,29840,29840, 22167,29840,22168,29840,22169,29840,22170,22171,22172, 3291, 29840,22156,29840,29840,29840,29840,29840,29840,20312,29840, 29840,22157,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22158,29840,29840,29840,29840,29840,29840, 22159,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22160,29840,22161,28059,22163, 29840,29840,22164,22186,29840,29840,29840,22166,22667,29840, 22167,29840,22168,29840,22169,29840,22170,22171,22172,22691, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22692, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22693,29840,29840,29840,29840,29840,29840,22694,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,22695,29840,22696,23140,22697,29840,29840, 22698,22699,29840,29840,29840,22700,29840,29840,22701,29840, 22702,28062,22703,29840,22704,22705,22706,22691,29840,29840, 29840,29840,29840,29840,29840,23151,29840,22692,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22693, 29840,29840,29840,29840,29840,29840,22694,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22695,29840,22696,29840,22697,29840,29840,22698,28063, 29840,29840,29840,22700,29840,29840,22701,29840,22702,29840, 22703,29840,22704,22705,22706, 3291,29840,22188,29840,29840, 29840,29840,29840,29840,22189,29840,29840,22190,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22191, 29840,29840,29840,29840,29840,29840,22192,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22193,29840,22194,29840,22195,29840,29840,28065,22197, 29840,29840,29840,22198,29840,29840,22199,29840,22200,29840, 22201,29840,22202,22203,22204, 3291,29840,22188,29840,29840, 29840,29840,29840,29840,22189,29840,29840,22190,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22191, 29840,29840,29840,29840,29840,29840,22192,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,22193,29840,22194,28066,22195,29840,29840,22196,22197, 29840,29840,29840,22198,22716,29840,22199,29840,22200,29840, 22201,29840,22202,22203,22204,22728,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22729,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22730,29840,29840, 29840,29840,29840,29840,22731,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,22732, 29840,22733,23181,22734,29840,29840,22735,22736,29840,29840, 29840,22737,29840,29840,22738,29840,22739,28068,22740,29840, 22741,22742,22743,22728,29840,29840,29840,29840,29840,29840, 29840,23192,29840,22729,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22730,29840,29840,29840,29840, 29840,29840,22731,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22732,29840,22733, 29840,22734,29840,29840,22735,28069,29840,29840,29840,22737, 29840,29840,22738,29840,22739,29840,22740,29840,22741,22742, 22743, 3291,29840,22206,29840,29840,29840,29840,29840,29840, 22207,29840,29840,22208,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22209,29840,29840,29840,29840, 29840,29840,22210,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22211,29840,22212, 29840,22213,29840,29840,28071,22215,29840,29840,29840,22216, 29840,29840,22217,29840,22218,29840,22219,29840,22220,22221, 22222, 3291,29840,22206,29840,29840,29840,29840,29840,29840, 22207,29840,29840,22208,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,22209,29840,29840,29840,29840, 29840,29840,22210,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,22211,29840,22212, 28072,22213,29840,29840,22214,22215,29840,29840,29840,22216, 22753,29840,22217,29840,22218,29840,22219,29840,22220,22221, 22222,23744,23323,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27889,27889,27889,27889,27889,27889,27889, 27889,27889,29840,27889,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,23324,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,28079,25967, 25684,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,27898,27898,27898,27898,27898,27898,27898,27898,27898, 29840,27898,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25685,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25686,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,28094, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29840,29840, 29840,29840,29840,28116,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,28117,29840,29840,29840, 29840,28116,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,28120,28120,28120,28120,28120,28120,28120, 28120,28120,29840,29840,29840,29840,29840,29840,29840,28120, 28120,28120,28120,28120,28121,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,28120,28120,28120,28120, 28120,28120,27501,27502,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27934,27934,27934,27934,27934,27934, 27934,27934,27934,29840,27934,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27503,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,28129, 27505,25552,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25553,28153,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25554,29840,29840,29840,29840,29840,29840, 25555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25556,29840,25557,29840,25558, 29840,29840,25559,25560,29840,29840,29840,25561,29840,29840, 25562,29840,25563,29840,25564,29840,25565,25566,25567,25552, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25553, 29840,29840,29840,29840,28154,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25554,29840,29840,29840,29840,29840,29840,25555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25556,29840,25557,29840,25558,29840,29840, 25559,25560,29840,29840,29840,25561,29840,29840,25562,29840, 25563,29840,25564,29840,25565,25566,25567, 3291,29840,26384, 29840,29840,29840,29840,29840,29840,25551,29840,29840,26385, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26386,29840,29840,29840,29840,29840,29840,26387,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26388,29840,26389,29840,26391,29840,29840, 26392,26414,29840,29840,29840,26394,29840,29840,26395,29840, 28159,29840,26397,29840,26398,26399,26400,26681, 3291,29840, 26384,29840,29840,29840,29840,29840,29840,25551,29840,29840, 27530,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26386,29840,29840,29840,29840,29840,29840,26387, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26388,29840,26389,26983,26391,29840, 29840,26392,27531,29840,29840,29840,26394,29840,29840,26395, 29840,26396,29840,26397,29840,26398,26399,26400, 3291,29840, 22103,29840,29840,29840,29840,29840,29840,20271,29840,29840, 22104,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,28176,29840,29840,29840,29840,29840,29840, 29840,29840,22105,29840,29840,29840,29840,29840,29840,22106, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22107,29840,22108,29840,22110,29840, 29840,22111,22137,29840,29840,29840,22113,29840,22612,22114, 29840,22115,29840,22116,29840,22117,22118,22119, 3291,29840, 22103,29840,29840,29840,29840,29840,29840,20271,29840,29840, 22104,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22105,29840,29840,29840,29840,29840,29840,22106, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22107,29840,22108,29840,28177,29840, 29840,22111,22137,29840,29840,29840,22113,29840,29840,22114, 29840,22115,29840,22116,29840,22117,22118,22119, 3291,29840, 26425,28179,29840,29840,29840,29840,29840,26426,29840,28180, 26427,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26428,29840,29840,29840,29840,29840,29840,26429, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26430,29840,26431,29840,26432,29840, 29840,26433,26434,29840,29840,29840,26435,29840,29840,26436, 29840,26437,29840,26438,29840,26439,26440,26441,26707,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26708,28181, 28181,28181,28181,28181,28181,28181,28181,28181,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26709,29840,29840,29840,29840,29840,29840,26710,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26711,29840,27012,29840,26713,29840,29840,26714, 26715,29840,29840,29840,26716,29840,29840,26717,29840,26718, 29840,27013,29840,26720,27014,26722,26707,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26708,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26709,29840, 29840,29840,29840,29840,29840,26710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26711,29840,26712,27017,26713,29840,29840,26714,26715,29840, 29840,29840,26716,29840,28182,26717,29840,26718,29840,26719, 29840,26720,26721,26722, 3291,29840,26425,29840,29840,29840, 29840,29840,29840,26426,29840,29840,28198,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26428,29840, 29840,29840,29840,29840,29840,26429,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26430,29840,26431,29840,26432,29840,29840,26433,26434,29840, 29840,29840,26435,29840,29840,26436,29840,26437,29840,26438, 29840,26439,26440,26441, 3291,29840,26443,28210,29840,29840, 29840,29840,29840,26444,29840,28211,26445,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26446,29840, 29840,29840,29840,29840,29840,26447,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26448,29840,26449,29840,26450,29840,29840,26451,26452,29840, 29840,29840,26453,29840,29840,26454,29840,26455,29840,26456, 29840,26457,26458,26459,26744,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26745,28212,28212,28212,28212,28212, 28212,28212,28212,28212,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26746,29840,29840,29840, 29840,29840,29840,26747,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26748,29840, 27054,29840,26750,29840,29840,26751,26752,29840,29840,29840, 26753,29840,29840,26754,29840,26755,29840,27055,29840,26757, 27056,26759,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,27059, 26750,29840,29840,26751,26752,29840,29840,29840,26753,29840, 28213,26754,29840,26755,29840,26756,29840,26757,26758,26759, 3291,29840,26443,29840,29840,29840,29840,29840,29840,26444, 29840,29840,28229,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26446,29840,29840,29840,29840,29840, 29840,26447,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26448,29840,26449,29840, 26450,29840,29840,26451,26452,29840,29840,29840,26453,29840, 29840,26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291,29840,22156,29840,29840,29840,29840,29840,29840,20312, 29840,29840,22157,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,28241,29840,29840,29840,29840, 29840,29840,29840,29840,22158,29840,29840,29840,29840,29840, 29840,22159,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22160,29840,22161,29840, 22163,29840,29840,22164,22186,29840,29840,29840,22166,29840, 22665,22167,29840,22168,29840,22169,29840,22170,22171,22172, 3291,29840,22156,29840,29840,29840,29840,29840,29840,20312, 29840,29840,22157,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22158,29840,29840,29840,29840,29840, 29840,22159,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22160,29840,22161,29840, 28242,29840,29840,22164,22186,29840,29840,29840,22166,29840, 29840,22167,29840,22168,29840,22169,29840,22170,22171,22172, 22691,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22692,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22693,29840,29840,29840,29840,29840,29840,22694, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22695,29840,22696,29840,22697,29840, 29840,28245,22699,29840,29840,29840,22700,29840,29840,22701, 29840,22702,29840,22703,29840,22704,22705,22706,22691,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,29840,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22695,29840,22696,28246,22697,29840,29840,22698, 22699,29840,29840,29840,22700,23144,29840,22701,29840,22702, 29840,22703,29840,22704,22705,22706, 3291,29840,22188,29840, 29840,29840,29840,29840,29840,22189,29840,29840,22190,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28248,29840,29840,29840,29840,29840,29840,29840,29840, 22191,29840,29840,29840,29840,29840,29840,22192,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22193,29840,22194,29840,22195,29840,29840,22196, 22197,29840,29840,29840,22198,29840,22715,22199,29840,22200, 29840,22201,29840,22202,22203,22204, 3291,29840,22188,29840, 29840,29840,29840,29840,29840,22189,29840,29840,22190,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22191,29840,29840,29840,29840,29840,29840,22192,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22193,29840,22194,29840,28249,29840,29840,22196, 22197,29840,29840,29840,22198,29840,29840,22199,29840,22200, 29840,22201,29840,22202,22203,22204,22728,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22730,29840, 29840,29840,29840,29840,29840,22731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22732,29840,22733,29840,22734,29840,29840,28251,22736,29840, 29840,29840,22737,29840,29840,22738,29840,22739,29840,22740, 29840,22741,22742,22743,22728,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22729,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22730,29840,29840,29840, 29840,29840,29840,22731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22732,29840, 22733,28252,22734,29840,29840,22735,22736,29840,29840,29840, 22737,23185,29840,22738,29840,22739,29840,22740,29840,22741, 22742,22743, 3291,29840,22206,29840,29840,29840,29840,29840, 29840,22207,29840,29840,22208,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,28254,29840,29840, 29840,29840,29840,29840,29840,29840,22209,29840,29840,29840, 29840,29840,29840,22210,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22211,29840, 22212,29840,22213,29840,29840,22214,22215,29840,29840,29840, 22216,29840,22752,22217,29840,22218,29840,22219,29840,22220, 22221,22222, 3291,29840,22206,29840,29840,29840,29840,29840, 29840,22207,29840,29840,22208,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22209,29840,29840,29840, 29840,29840,29840,22210,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22211,29840, 22212,29840,28255,29840,29840,22214,22215,29840,29840,29840, 22216,29840,29840,22217,29840,22218,29840,22219,29840,22220, 22221,22222,26522,26234,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28282,28282,28282,28282,28282,28282, 28282,28282,28282,29840,28282,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26235,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26236, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 28297,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,28298,29840,29840,29840,29840,28297,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 28301,28301,28301,28301,28301,28301,28301,28301,28301,29840, 29840,29840,29840,29840,29840,29840,28301,28301,28301,28301, 28301,28302,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,28301,28301,28301,28301,28301,28301,25552, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25553, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25554,29840,29840,29840,29840,29840,29840,25555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25556,29840,25557,29840,25558,29840,29840, 25559,25560,29840,29840,29840,25561,29840,29840,25562,29840, 25563,29840,25564,29840,25565,25566,25567,25552,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25553,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25554, 29840,29840,29840,29840,29840,29840,25555,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25556,29840,25557,29840,25558,29840,29840,25559,25560, 29840,29840,29840,25561,29840,29840,25562,29840,25563,29840, 25564,29840,25565,25566,25567,25552,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25553,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25554,29840,29840, 29840,29840,29840,29840,25555,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25556, 29840,25557,29840,25558,29840,29840,25559,28332,29840,29840, 29840,25561,29840,29840,25562,29840,25563,29840,25564,29840, 25565,25566,25567,25552,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25553,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25554,29840,29840,29840,29840, 29840,29840,25555,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25556,29840,25557, 29840,25558,29840,29840,25559,28333,29840,29840,29840,25561, 29840,29840,25562,29840,25563,29840,25564,29840,25565,25566, 25567,25552,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25553,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25554,29840,29840,29840,29840,29840,29840, 25555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25556,29840,25557,29840,25558, 29840,29840,28334,25560,29840,29840,29840,25853,29840,29840, 25562,29840,25563,29840,25564,29840,25565,25566,25567,28335, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25553, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25554,29840,29840,29840,29840,29840,29840,25555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25556,29840,25557,29840,25558,29840,29840, 25559,25560,29840,29840,29840,25561,29840,29840,25562,29840, 25563,29840,25564,29840,25565,25566,25567, 3291,29840,26384, 29840,29840,29840,29840,29840,29840,25551,29840,29840,26385, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26386,29840,29840,29840,29840,29840,29840,26387,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,28336,29840,26389,29840,26391,29840,29840, 26392,26414,29840,29840,29840,26394,29840,26680,26395,29840, 26396,29840,26397,29840,26398,26399,26400,25552,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25553,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25554, 29840,29840,29840,29840,29840,29840,25555,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25556,29840,25557,29840,25558,29840,29840,25559,25560, 29840,29840,29840,25561,29840,28337,25562,29840,25563,29840, 25564,29840,25565,25566,25567,25855, 3291,29840,28339,29840, 29840,29840,29840,29840,29840,25551,29840,29840,26385,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26386,29840,29840,29840,29840,29840,29840,26387,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26388,29840,26389,29840,26391,29840,29840,26392, 26414,29840,29840,29840,26394,29840,29840,26395,29840,26396, 29840,26397,29840,26398,26399,26400, 3291,29840,22103,29840, 29840,29840,29840,29840,29840,20271,29840,29840,22104,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22105,29840,29840,29840,29840,29840,29840,22106,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22107,29840,22108,29840,22110,29840,29840,22111, 22137,29840,29840,29840,22113,29840,29840,22114,29840,22115, 29840,22116,29840,22117,22118,22119, 3291,29840,22103,29840, 29840,29840,29840,29840,29840,20271,29840,29840,22104,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22105,29840,29840,29840,29840,29840,29840,22106,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22107,29840,22108,29840,22110,29840,29840,22111, 22137,29840,29840,29840,22113,29840,29840,22114,29840,28351, 29840,22116,29840,22117,22118,22611, 3291,29840,28352,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,29840,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,28353, 28353,28353,28353,28353,28353,28353,28353,28353,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,29840,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441,26707,28354,29840,29840, 29840,29840,29840,29840,29840,28355,26708,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26709,29840, 29840,29840,29840,29840,29840,26710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26711,29840,26712,29840,26713,29840,29840,26714,26715,29840, 29840,29840,26716,29840,29840,26717,29840,26718,29840,26719, 29840,26720,26721,26722,26707,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28356,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26709,29840,29840,29840, 29840,29840,29840,26710,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26711,29840, 26712,29840,26713,29840,29840,26714,26715,29840,29840,29840, 26716,29840,29840,26717,29840,26718,29840,26719,29840,26720, 26721,26722,26707,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26708,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,28357,29840,29840, 29840,29840,29840,29840,26709,29840,29840,29840,29840,29840, 29840,26710,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26711,29840,27012,29840, 26713,29840,29840,26714,26715,29840,29840,29840,26716,29840, 29840,26717,29840,26718,29840,27013,29840,26720,27014,26722, 26424,26424,26424,26424,26424,26424,26424,26424,26424,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26723,29840,29840,29840,29840, 29840,29840,29840,29840,28368,29840,29840,29840,29840,29840, 29840,29840,26724,29840,29840,26725,28375,27816,26424,26424, 26424,26424,26424,26424,26424,26424,26424,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,27042,29840,29840,29840,29840,27817, 3291,29840,28378,29840,29840,29840,29840,29840,29840,26444, 29840,29840,26445,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26446,29840,29840,29840,29840,29840, 29840,26447,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26448,29840,26449,29840, 26450,29840,29840,26451,26452,29840,29840,29840,26453,29840, 29840,26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291,29840,26443,29840,29840,29840,29840,29840,29840,26444, 29840,29840,26445,28379,28379,28379,28379,28379,28379,28379, 28379,28379,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26446,29840,29840,29840,29840,29840, 29840,26447,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26448,29840,26449,29840, 26450,29840,29840,26451,26452,29840,29840,29840,26453,29840, 29840,26454,29840,26455,29840,26456,29840,26457,26458,26459, 26744,28380,29840,29840,29840,29840,29840,29840,29840,28381, 26745,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26746,29840,29840,29840,29840,29840,29840,26747, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26748,29840,26749,29840,26750,29840, 29840,26751,26752,29840,29840,29840,26753,29840,29840,26754, 29840,26755,29840,26756,29840,26757,26758,26759,26744,29840, 29840,29840,29840,29840,29840,29840,29840,29840,28382,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26746,29840,29840,29840,29840,29840,29840,26747,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26748,29840,26749,29840,26750,29840,29840,26751, 26752,29840,29840,29840,26753,29840,29840,26754,29840,26755, 29840,26756,29840,26757,26758,26759,26744,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26745,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28383,29840,29840,29840,29840,29840,29840,26746,29840, 29840,29840,29840,29840,29840,26747,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26748,29840,27054,29840,26750,29840,29840,26751,26752,29840, 29840,29840,26753,29840,29840,26754,29840,26755,29840,27055, 29840,26757,27056,26759,26442,26442,26442,26442,26442,26442, 26442,26442,26442,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26760, 29840,29840,29840,29840,29840,29840,29840,29840,28394,29840, 29840,29840,29840,29840,29840,29840,26761,29840,29840,26762, 28401,27854,26442,26442,26442,26442,26442,26442,26442,26442, 26442,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,27084,29840, 29840,29840,29840,27855, 3291,29840,22156,29840,29840,29840, 29840,29840,29840,20312,29840,29840,22157,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22158,29840, 29840,29840,29840,29840,29840,22159,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22160,29840,22161,29840,22163,29840,29840,22164,22186,29840, 29840,29840,22166,29840,29840,22167,29840,22168,29840,22169, 29840,22170,22171,22172, 3291,29840,22156,29840,29840,29840, 29840,29840,29840,20312,29840,29840,22157,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22158,29840, 29840,29840,29840,29840,29840,22159,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22160,29840,22161,29840,22163,29840,29840,22164,22186,29840, 29840,29840,22166,29840,29840,22167,29840,28404,29840,22169, 29840,22170,22171,22664,22691,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22692,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,28405,29840,29840, 29840,29840,29840,29840,29840,29840,22693,29840,29840,29840, 29840,29840,29840,22694,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22695,29840, 22696,29840,22697,29840,29840,22698,22699,29840,29840,29840, 22700,29840,23143,22701,29840,22702,29840,22703,29840,22704, 22705,22706,22691,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22692,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22693,29840,29840,29840,29840,29840, 29840,22694,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22695,29840,22696,29840, 28406,29840,29840,22698,22699,29840,29840,29840,22700,29840, 29840,22701,29840,22702,29840,22703,29840,22704,22705,22706, 22691,28407,29840,29840,29840,29840,29840,29840,29840,29840, 22692,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22693,29840,23134,29840,29840,29840,29840,22694, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22695,29840,22696,29840,22697,29840, 29840,22698,22699,29840,29840,29840,22700,29840,29840,22701, 29840,22702,29840,22703,29840,22704,22705,22706, 3291,29840, 22188,29840,29840,29840,29840,29840,29840,22189,29840,29840, 22190,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22191,29840,29840,29840,29840,29840,29840,22192, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22193,29840,22194,29840,22195,29840, 29840,22196,22197,29840,29840,29840,22198,29840,29840,22199, 29840,22200,29840,22201,29840,22202,22203,22204, 3291,29840, 22188,29840,29840,29840,29840,29840,29840,22189,29840,29840, 22190,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22191,29840,29840,29840,29840,29840,29840,22192, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22193,29840,22194,29840,22195,29840, 29840,22196,22197,29840,29840,29840,22198,29840,29840,22199, 29840,28408,29840,22201,29840,22202,22203,22714,22728,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22729,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28409,29840,29840,29840,29840,29840,29840,29840,29840, 22730,29840,29840,29840,29840,29840,29840,22731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22732,29840,22733,29840,22734,29840,29840,22735, 22736,29840,29840,29840,22737,29840,23184,22738,29840,22739, 29840,22740,29840,22741,22742,22743,22728,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22730,29840, 29840,29840,29840,29840,29840,22731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22732,29840,22733,29840,28410,29840,29840,22735,22736,29840, 29840,29840,22737,29840,29840,22738,29840,22739,29840,22740, 29840,22741,22742,22743,22728,28411,29840,29840,29840,29840, 29840,29840,29840,29840,22729,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22730,29840,23175,29840, 29840,29840,29840,22731,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22732,29840, 22733,29840,22734,29840,29840,22735,22736,29840,29840,29840, 22737,29840,29840,22738,29840,22739,29840,22740,29840,22741, 22742,22743, 3291,29840,22206,29840,29840,29840,29840,29840, 29840,22207,29840,29840,22208,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22209,29840,29840,29840, 29840,29840,29840,22210,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22211,29840, 22212,29840,22213,29840,29840,22214,22215,29840,29840,29840, 22216,29840,29840,22217,29840,22218,29840,22219,29840,22220, 22221,22222, 3291,29840,22206,29840,29840,29840,29840,29840, 29840,22207,29840,29840,22208,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22209,29840,29840,29840, 29840,29840,29840,22210,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22211,29840, 22212,29840,22213,29840,29840,22214,22215,29840,29840,29840, 22216,29840,29840,22217,29840,28412,29840,22219,29840,22220, 22221,22751,26522,26234,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28282,28282,28282,28282,28282,28282, 28282,28282,28282,29840,28282,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26235,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26236,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,28428, 23744,23323,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25965,25965,25965,25965,25965,25965,25965,25965, 25965,29840,25965,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,23324, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 28445,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,28446,29840,29840,29840,29840,28445,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 25552,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25553,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25554,29840,29840,29840,29840,29840,29840,25555, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25556,29840,25557,29840,25558,29840, 29840,25559,25560,29840,29840,29840,25561,28481,29840,25562, 29840,25563,29840,25564,29840,25565,25566,25567,25552,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25553,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,29840,29840,29840,29840,29840,25555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25556,29840,25557,29840,25558,29840,29840,25559, 25560,29840,29840,29840,25561,28482,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567, 3291,29840,26384,29840, 29840,29840,29840,29840,29840,25551,29840,29840,26385,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26386,29840,29840,29840,29840,29840,29840,26387,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26388,29840,26389,26390,26391,29840,29840,26392, 26414,29840,29840,29840,26394,29840,29840,26395,29840,26396, 29840,28485,29840,26398,26399,26400, 3291,29840,26384,29840, 29840,29840,29840,29840,29840,25551,29840,29840,26385,29840, 29840,28488,29840,28489,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26386,29840,26664,29840,29840,29840,29840,26387,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26388,29840,26389,29840,26391,29840,29840,26392, 26414,29840,29840,29840,26394,29840,29840,26395,29840,26396, 29840,26397,29840,26398,26399,26400, 3291,29840,22103,29840, 29840,29840,29840,29840,29840,20271,29840,29840,22104,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28176,29840,29840,29840,29840,29840,29840,29840,29840, 22105,29840,29840,29840,29840,29840,29840,22106,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22107,29840,22108,29840,22110,29840,29840,22111, 22137,29840,29840,29840,22113,29840,22617,22114,29840,22115, 29840,22116,29840,22117,22118,22119, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,28497,29840,28498,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,26706,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,29840,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441, 3291,29840,26425,28179, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,29840,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441,28499,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26708,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26709,29840, 29840,29840,29840,29840,29840,26710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26711,29840,26712,29840,26713,29840,29840,26714,26715,29840, 29840,29840,26716,29840,29840,26717,29840,26718,29840,26719, 29840,26720,26721,26722,26707,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26708,28500,28500,28500,28500,28500, 28500,28500,28500,28500,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26709,29840,29840,29840, 29840,29840,29840,26710,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26711,29840, 26712,29840,26713,29840,29840,26714,26715,29840,29840,29840, 26716,29840,29840,26717,29840,26718,29840,26719,29840,26720, 26721,26722,26426,26426,26426,26426,26426,26426,26426,26426, 26426,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27012,29840,29840, 29840,29840,29840,29840,29840,29840,28501,29840,29840,29840, 29840,29840,29840,29840,27013,29840,29840,27014,28508,27996, 26426,26426,26426,26426,26426,26426,26426,26426,26426,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,27310,29840,29840,29840, 29840,27997, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,29840,29840,28519,29840,28520, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,26743,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,26450,29840,29840,26451,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459, 3291,29840,26443,28210,29840,29840,29840,29840, 29840,26444,29840,29840,26445,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,26450,29840,29840,26451,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459,28521,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,29840, 26750,29840,29840,26751,26752,29840,29840,29840,26753,29840, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 26744,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26745,28522,28522,28522,28522,28522,28522,28522,28522,28522, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26746,29840,29840,29840,29840,29840,29840,26747, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26748,29840,26749,29840,26750,29840, 29840,26751,26752,29840,29840,29840,26753,29840,29840,26754, 29840,26755,29840,26756,29840,26757,26758,26759,26444,26444, 26444,26444,26444,26444,26444,26444,26444,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,27054,29840,29840,29840,29840,29840,29840, 29840,29840,28523,29840,29840,29840,29840,29840,29840,29840, 27055,29840,29840,27056,28530,28031,26444,26444,26444,26444, 26444,26444,26444,26444,26444,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27352,29840,29840,29840,29840,28032, 3291,29840, 22156,29840,29840,29840,29840,29840,29840,20312,29840,29840, 22157,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,28241,29840,29840,29840,29840,29840,29840, 29840,29840,22158,29840,29840,29840,29840,29840,29840,22159, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22160,29840,22161,29840,22163,29840, 29840,22164,22186,29840,29840,29840,22166,29840,22672,22167, 29840,22168,29840,22169,29840,22170,22171,22172,22691,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,29840,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22695,29840,22696,29840,22697,29840,29840,22698, 22699,29840,29840,29840,22700,29840,29840,22701,29840,22702, 29840,22703,29840,22704,22705,22706,22691,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22692,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22693,29840, 29840,29840,29840,29840,29840,22694,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22695,29840,22696,29840,22697,29840,29840,22698,22699,29840, 29840,29840,22700,29840,29840,22701,29840,28541,29840,22703, 29840,22704,22705,23142,22691,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22692,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22693,29840,29840,29840, 29840,29840,29840,22694,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22695,29840, 22696,29840,22697,29840,29840,22698,22699,29840,29840,29840, 22700,29840,29840,22701,29840,22702,29840,22703,29840,22704, 22705,22706, 3291,29840,22188,29840,29840,29840,29840,29840, 29840,22189,29840,29840,22190,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,28248,29840,29840, 29840,29840,29840,29840,29840,29840,22191,29840,29840,29840, 29840,29840,29840,22192,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22193,29840, 22194,29840,22195,29840,29840,22196,22197,29840,29840,29840, 22198,29840,22721,22199,29840,22200,29840,22201,29840,22202, 22203,22204,22728,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22729,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22730,29840,29840,29840,29840,29840, 29840,22731,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22732,29840,22733,29840, 22734,29840,29840,22735,22736,29840,29840,29840,22737,29840, 29840,22738,29840,22739,29840,22740,29840,22741,22742,22743, 22728,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22729,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22730,29840,29840,29840,29840,29840,29840,22731, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,22732,29840,22733,29840,22734,29840, 29840,22735,22736,29840,29840,29840,22737,29840,29840,22738, 29840,28542,29840,22740,29840,22741,22742,23183,22728,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22729,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22730,29840,29840,29840,29840,29840,29840,22731,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22732,29840,22733,29840,22734,29840,29840,22735, 22736,29840,29840,29840,22737,29840,29840,22738,29840,22739, 29840,22740,29840,22741,22742,22743, 3291,29840,22206,29840, 29840,29840,29840,29840,29840,22207,29840,29840,22208,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28254,29840,29840,29840,29840,29840,29840,29840,29840, 22209,29840,29840,29840,29840,29840,29840,22210,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22211,29840,22212,29840,22213,29840,29840,22214, 22215,29840,29840,29840,22216,29840,22758,22217,29840,22218, 29840,22219,29840,22220,22221,22222,26806,26496,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,28414,28414, 28414,28414,28414,28414,28414,28414,28414,29840,28414,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,28544, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 28572,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,28573,29840,29840,29840,29840,28572,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 28576,28576,28576,28576,28576,28576,28576,28576,28576,29840, 29840,29840,29840,29840,29840,29840,28576,28576,28576,28576, 28576,28577,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,28576,28576,28576,28576,28576,28576,25552, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25553, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28611,29840,29840,29840,29840,29840, 29840,25554,29840,29840,29840,29840,29840,29840,25555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25556,29840,25557,26125,25558,29840,29840, 25559,25560,29840,29840,29840,25561,29840,29840,25562,29840, 25563,29840,25564,29840,25565,25566,25567,25552,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25553,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25554, 29840,29840,29840,29840,29840,29840,25555,29840,29840,28612, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25556,29840,25557,26125,25558,29840,29840,25559,25560, 29840,29840,29840,25561,29840,29840,25562,29840,25563,29840, 25564,29840,25565,25566,25567, 3291,29840,26384,29840,29840, 29840,29840,29840,29840,25551,29840,29840,26385,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26386, 29840,29840,29840,29840,29840,29840,26387,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26388,29840,26389,29840,26391,29840,29840,26678,26414, 29840,29840,29840,26679,29840,29840,26395,29840,26396,29840, 26397,29840,26398,26399,26400, 3291,29840,26384,29840,29840, 29840,29840,29840,29840,25551,29840,29840,26385,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26386, 29840,29840,29840,29840,29840,29840,26387,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26388,29840,26389,29840,26391,29840,29840,26392,26414, 29840,29840,29840,26394,29840,28614,26395,29840,26396,29840, 26397,29840,26398,26399,26400,26681, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,28626, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,29840,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,28627, 28627,28627,28627,28628,28627,28627,28627,28627,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,29840,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441,26707,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26708,29840,29840,28629, 29840,28630,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26709,29840, 27011,29840,29840,29840,29840,26710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26711,29840,26712,29840,26713,29840,29840,26714,26715,29840, 29840,29840,26716,29840,29840,26717,29840,26718,29840,26719, 29840,26720,26721,26722,26707,28354,29840,29840,29840,29840, 29840,29840,29840,29840,26708,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26709,29840,29840,29840, 29840,29840,29840,26710,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26711,29840, 26712,29840,26713,29840,29840,26714,26715,29840,29840,29840, 26716,29840,29840,26717,29840,26718,29840,26719,29840,26720, 26721,26722, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,28646,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,26450,29840,29840,26451,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,28647,28647,28647,28647,28648, 28647,28647,28647,28647,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,26450,29840,29840,26451,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,28649,29840,28650,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,27053,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,29840, 26750,29840,29840,26751,26752,29840,29840,29840,26753,29840, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 26744,28380,29840,29840,29840,29840,29840,29840,29840,29840, 26745,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26746,29840,29840,29840,29840,29840,29840,26747, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26748,29840,26749,29840,26750,29840, 29840,26751,26752,29840,29840,29840,26753,29840,29840,26754, 29840,26755,29840,26756,29840,26757,26758,26759,22691,29840, 29840,29840,29840,29840,29840,29840,29840,29840,22692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28405,29840,29840,29840,29840,29840,29840,29840,29840, 22693,29840,29840,29840,29840,29840,29840,22694,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,22695,29840,22696,29840,22697,29840,29840,22698, 22699,29840,29840,29840,22700,29840,23149,22701,29840,22702, 29840,22703,29840,22704,22705,22706,22728,29840,29840,29840, 29840,29840,29840,29840,29840,29840,22729,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,28409, 29840,29840,29840,29840,29840,29840,29840,29840,22730,29840, 29840,29840,29840,29840,29840,22731,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 22732,29840,22733,29840,22734,29840,29840,22735,22736,29840, 29840,29840,22737,29840,23190,22738,29840,22739,29840,22740, 29840,22741,22742,22743, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840, 28692,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,28693,29840,29840,29840,29840,28692,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 28696,28696,28696,28696,28696,28696,28696,28696,28696,29840, 29840,29840,29840,29840,29840,29840,28696,28696,28696,28696, 28696,28697,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,28696,28696,28696,28696,28696,28696,27501, 27502,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28711,28711,28711,28711,28711,28711,28711,28711,28711, 29840,28711,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27503,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27505,25552,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25553,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,29840,29840,29840,29840,29840,25555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28730,25556,29840,25557,29840,25558,29840,29840,25559, 25560,29840,29840,29840,25561,29840,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567,25552,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25553,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25554,29840, 29840,29840,29840,29840,29840,25555,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25556,29840,25557,29840,25558,29840,29840,25559,25560,29840, 29840,29840,25561,29840,29840,25562,29840,28731,29840,25564, 29840,25565,25566,25567,25552,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25553,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25554,29840,29840,29840, 29840,29840,29840,25555,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25556,29840, 25557,29840,25558,29840,29840,25559,28732,29840,29840,29840, 25561,29840,29840,25562,29840,25563,29840,25564,29840,25565, 25566,25567, 3291,29840,26384,29840,29840,29840,29840,29840, 29840,25551,29840,29840,26385,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26386,29840,29840,29840, 29840,29840,29840,26387,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26388,29840, 26389,29840,26391,29840,29840,26392,26414,29840,29840,29840, 26394,29840,29840,26395,29840,28733,29840,26397,29840,26398, 26399,26400,25552,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25553,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25554,29840,29840,29840,29840,29840, 29840,25555,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25556,29840,25840,29840, 25558,29840,29840,25559,25560,29840,29840,29840,25561,29840, 29840,25562,29840,25563,29840,25841,29840,25565,25842,25567, 25552,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25553,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25554,29840,29840,29840,29840,29840,29840,25555, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25556,29840,25557,29840,25558,29840, 29840,25559,25560,29840,29840,29840,25561,25849,28734,25562, 29840,25563,29840,25564,29840,25565,25566,25567, 3291,29840, 26384,29840,29840,29840,29840,29840,29840,25551,29840,29840, 26385,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26386,29840,29840,29840,29840,29840,29840,26387, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26388,29840,26389,29840,26391,29840, 29840,26392,26414,29840,29840,29840,26394,29840,29840,26395, 29840,26396,29840,26397,29840,26398,26399,26400, 3291,29840, 26425,29840,29840,29840,29840,29840,29840,26426,29840,29840, 26427,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26428,29840,29840,29840,29840,29840,29840,26429, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26430,29840,26431,29840,26432,29840, 29840,26433,26434,29840,29840,29840,26435,29840,29840,26436, 29840,26437,29840,26438,29840,26439,26440,26441, 3291,29840, 26425,29840,29840,29840,29840,29840,29840,26426,29840,29840, 26427,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26428,29840,29840,29840,29840,29840,29840,26429, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26430,29840,26431,29840,26432,29840, 29840,26433,26434,29840,29840,29840,26435,29840,29840,26436, 29840,26437,29840,26438,29840,26439,26440,26441,26707,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26708,28743, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26709,29840,29840,29840,29840,29840,29840,26710,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26711,29840,26712,29840,26713,29840,29840,26714, 26715,29840,29840,29840,26716,29840,29840,26717,29840,26718, 29840,26719,29840,26720,26721,26722,26707,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26708,29840,29840,29840, 29840,28744,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26709,29840, 29840,29840,29840,29840,29840,26710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26711,29840,26712,29840,26713,29840,29840,26714,26715,29840, 29840,29840,26716,29840,29840,26717,29840,26718,29840,26719, 29840,26720,26721,26722, 3291,29840,26443,29840,29840,29840, 29840,29840,29840,26444,29840,29840,26445,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26446,29840, 29840,29840,29840,29840,29840,26447,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26448,29840,26449,29840,26450,29840,29840,26451,26452,29840, 29840,29840,26453,29840,29840,26454,29840,26455,29840,26456, 29840,26457,26458,26459, 3291,29840,26443,29840,29840,29840, 29840,29840,29840,26444,29840,29840,26445,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26446,29840, 29840,29840,29840,29840,29840,26447,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26448,29840,26449,29840,26450,29840,29840,26451,26452,29840, 29840,29840,26453,29840,29840,26454,29840,26455,29840,26456, 29840,26457,26458,26459,26744,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26745,28759,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26746,29840,29840,29840, 29840,29840,29840,26747,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26748,29840, 26749,29840,26750,29840,29840,26751,26752,29840,29840,29840, 26753,29840,29840,26754,29840,26755,29840,26756,29840,26757, 26758,26759,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,29840,29840,28760,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,29840, 26750,29840,29840,26751,26752,29840,29840,29840,26753,29840, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139, 29840, 139, 139, 139,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,28799,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,28800, 29840,29840,29840,29840,28799,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139,28586,28587,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,28808,28808, 28808,28808,28808,28808,28808,28808,28808,29840,28808,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,28588, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28589,27501,27502,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,28711,28711,28711, 28711,28711,28711,28711,28711,28711,29840,28711,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,27503,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,28814,27505,25552,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25553,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25554,29840,29840,29840, 29840,29840,29840,25555,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25556,29840, 25557,29840,25558,29840,29840,28832,25560,29840,29840,29840, 25561,29840,29840,25562,29840,25563,29840,25564,29840,25565, 25566,25567,25552,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25553,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25554,29840,29840,29840,29840,29840, 29840,25555,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25556,29840,25557,29840, 25558,29840,29840,25559,25560,29840,29840,29840,25561,29840, 28833,25562,29840,25563,29840,25564,29840,25565,25566,25567, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,28835,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,29840, 26391,29840,29840,26392,26414,29840,29840,29840,26394,29840, 26680,26395,29840,26396,29840,26397,29840,26398,26399,26400, 3291,29840,26443,29840,29840,29840,29840,29840,29840,26444, 29840,29840,26445,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26446,29840,29840,29840,29840,29840, 29840,26447,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26448,29840,26449,29840, 26450,29840,29840,26451,26452,29840,29840,29840,26453,29840, 29840,26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,26385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,29840, 26391,29840,29840,26392,26414,29840,29840,29840,26394,28837, 29840,26395,29840,26396,29840,26397,29840,26398,26399,26400, 3291,29840,26443,29840,29840,29840,29840,29840,29840,26444, 29840,29840,26445,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26446,29840,29840,29840,29840,29840, 29840,26447,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26448,29840,26449,29840, 26450,29840,29840,26451,26452,29840,29840,29840,26453,29840, 29840,26454,29840,26455,29840,26456,29840,26457,26458,26459, 26707,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26708,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26709,29840,29840,29840,29840,29840,29840,26710, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26711,29840,26712,29840,26713,29840, 29840,26714,26715,29840,29840,29840,26716,29840,29840,26717, 29840,26718,29840,26719,29840,26720,26721,26722,26707,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26708,29840, 29840,29840,29840,28842,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26709,29840,29840,29840,29840,29840,29840,26710,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26711,29840,26712,29840,26713,29840,29840,26714, 26715,29840,29840,29840,26716,29840,29840,26717,29840,26718, 29840,26719,29840,26720,26721,26722, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,28850,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,28851,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441,26744,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26745,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26746,29840, 29840,29840,29840,29840,29840,26747,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26748,29840,26749,29840,26750,29840,29840,26751,26752,29840, 29840,29840,26753,29840,29840,26754,29840,26755,29840,26756, 29840,26757,26758,26759,26744,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26745,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26746,29840,29840,29840, 29840,29840,29840,26747,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26748,29840, 26749,29840,26750,29840,29840,26751,26752,29840,29840,29840, 26753,29840,29840,26754,29840,26755,29840,26756,29840,26757, 26758,26759,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,29840, 26750,29840,29840,26751,28856,29840,29840,29840,26753,29840, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 26744,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26745,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26746,29840,29840,29840,29840,29840,29840,26747, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26748,29840,26749,29840,26750,29840, 29840,26751,28857,29840,29840,29840,26753,29840,29840,26754, 29840,26755,29840,26756,29840,26757,26758,26759,26744,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26745,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26746,29840,29840,29840,29840,29840,29840,26747,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26748,29840,26749,29840,26750,29840,29840,28858, 26752,29840,29840,29840,27067,29840,29840,26754,29840,26755, 29840,26756,29840,26757,26758,26759,28859,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26745,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26746,29840, 29840,29840,29840,29840,29840,26747,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26748,29840,26749,29840,26750,29840,29840,26751,26752,29840, 29840,29840,26753,29840,29840,26754,29840,26755,29840,26756, 29840,26757,26758,26759,26744,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26745,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26746,29840,29840,29840, 29840,29840,29840,26747,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26748,29840, 26749,29840,26750,29840,29840,26751,26752,29840,29840,29840, 26753,29840,28860,26754,29840,26755,29840,26756,29840,26757, 26758,26759,27069, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840,29840,28892, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,28893,29840,29840,29840,29840,28892,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840, 139, 139, 139, 139,28896, 28896,28896,28896,28896,28896,28896,28896,28896,29840,29840, 29840,29840,29840,29840,29840,28896,28896,28896,28896,28896, 28897,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,28896,28896,28896,28896,28896,28896,28586,28587, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 28808,28808,28808,28808,28808,28808,28808,28808,28808,29840, 28808,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28588,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,28902,28589,25552,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25553,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25554, 29840,29840,29840,29840,29840,29840,25555,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28925,29840,25557,29840,25558,29840,29840,25559,25560, 29840,29840,29840,25561,29840,25848,25562,29840,25563,29840, 25564,29840,25565,25566,25567,25552,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25553,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25554,29840,29840, 29840,29840,29840,29840,25555,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,25556, 29840,25557,29840,25558,29840,29840,25559,25560,29840,29840, 29840,25561,29840,29840,25562,29840,25563,29840,25564,26130, 28926,25566,25567, 3291,29840,26384,29840,29840,29840,29840, 29840,29840,25551,29840,29840,26385,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26386,29840,29840, 29840,29840,29840,29840,26387,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26388, 29840,26665,29840,26391,29840,29840,26392,26414,29840,29840, 29840,26394,29840,29840,26395,29840,26396,29840,26666,29840, 26398,26667,26400, 3291,29840,26384,29840,29840,29840,29840, 29840,29840,25551,29840,29840,26385,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 28929,29840,29840,29840,29840,29840,29840,26386,29840,29840, 29840,29840,29840,29840,26387,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26388, 29840,26389,26983,26391,29840,29840,26392,26414,29840,29840, 29840,26394,29840,29840,26395,29840,26396,29840,26397,29840, 26398,26399,26400,26744,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26745,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26746,29840,29840,29840,29840, 29840,29840,26747,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26748,29840,26749, 29840,26750,29840,29840,26751,26752,29840,29840,29840,26753, 29840,29840,26754,29840,26755,29840,26756,29840,26757,26758, 26759,26707,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26708,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26709,29840,29840,29840,29840,29840,29840, 26710,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26711,29840,26712,29840,26713, 29840,29840,26714,26715,29840,29840,29840,26716,28933,29840, 26717,29840,26718,29840,26719,29840,26720,26721,26722,26707, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26708, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26709,29840,29840,29840,29840,29840,29840,26710,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26711,29840,26712,29840,26713,29840,29840, 26714,26715,29840,29840,29840,26716,28934,29840,26717,29840, 26718,29840,26719,29840,26720,26721,26722, 3291,29840,26425, 29840,29840,29840,29840,29840,29840,26426,29840,29840,26427, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26428,29840,29840,29840,29840,29840,29840,26429,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26430,29840,26431,29840,26432,29840,29840, 26735,26434,29840,29840,29840,26736,29840,29840,26436,29840, 26437,29840,26438,29840,26439,26440,26441, 3291,29840,26425, 29840,29840,29840,29840,29840,29840,26426,29840,29840,26427, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28939,29840,29840,29840,29840,29840, 29840,26428,29840,29840,29840,29840,29840,29840,26429,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26430,29840,26431,27042,26432,29840,29840, 26433,26434,29840,29840,29840,26435,29840,29840,26436,29840, 26437,29840,26438,29840,26439,26440,26441,26744,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26745,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26746, 29840,29840,29840,29840,29840,29840,26747,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26748,29840,26749,29840,26750,29840,29840,26751,26752, 29840,29840,29840,26753,28944,29840,26754,29840,26755,29840, 26756,29840,26757,26758,26759, 3291,29840,26443,29840,29840, 29840,29840,29840,29840,26444,29840,29840,26445,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26446, 29840,29840,29840,29840,29840,29840,26447,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26448,29840,26449,29840,26450,29840,29840,26772,26452, 29840,29840,29840,26773,29840,29840,26454,29840,26455,29840, 26456,29840,26457,26458,26459, 3291,29840,26443,29840,29840, 29840,29840,29840,29840,26444,29840,29840,26445,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,28950,29840,29840,29840,29840,29840,29840,26446, 29840,29840,29840,29840,29840,29840,26447,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26448,29840,26449,27084,26450,29840,29840,26451,26452, 29840,29840,29840,26453,29840,29840,26454,29840,26455,29840, 26456,29840,26457,26458,26459, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29840,29840,29840,29840, 29840,28978,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,28979,29840,29840,29840,29840,28978, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,28982,28982,28982,28982,28982,28982,28982,28982,28982, 29840,29840,29840,29840,29840,29840,29840,28982,28982,28982, 28982,28982,28983,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28982,28982,28982,28982,28982,28982, 25552,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25553,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25554,29840,29840,29840,29840,29840,29840,25555, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25556,29840,25557,25845,25558,29840, 29840,25559,25560,29840,29840,29840,25561,29840,29840,25562, 29840,25563,29010,25564,29840,25565,25566,25567,25552,29840, 29840,29840,29840,29840,29840,29840,25856,29840,25553,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,29840,29840,29840,29840,29840,25555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25556,29840,25557,29840,25558,29840,29840,25559, 29011,29840,29840,29840,25561,29840,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567, 3291,29840,26384,29840, 29840,29840,29840,29840,29840,25551,29840,29840,26385,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26386,29840,29840,29840,29840,29840,29840,26387,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29014,26388,29840,26389,29840,26391,29840,29840,26392, 26414,29840,29840,29840,26394,29840,29840,26395,29840,26396, 29840,26397,29840,26398,26399,26400, 3291,29840,26384,29840, 29840,29840,29840,29840,29840,25551,29840,29840,26385,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26386,29840,29840,29840,29840,29840,29840,26387,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26388,29840,26389,29840,26391,29840,29840,26392, 26414,29840,29840,29840,26394,29840,29840,26395,29840,29015, 29840,26397,29840,26398,26399,26400,26707,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26708,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29018,29840,29840,29840,29840,29840,29840,26709,29840, 29840,29840,29840,29840,29840,26710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26711,29840,26712,27310,26713,29840,29840,26714,26715,29840, 29840,29840,26716,29840,29840,26717,29840,26718,29840,26719, 29840,26720,26721,26722,26707,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26708,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26709,29840,29840,29840, 29840,29840,29840,26710,29840,29840,29019,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26711,29840, 26712,27310,26713,29840,29840,26714,26715,29840,29840,29840, 26716,29840,29840,26717,29840,26718,29840,26719,29840,26720, 26721,26722, 3291,29840,26425,29840,29840,29840,29840,29840, 29840,26426,29840,29840,26427,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26428,29840,29840,29840, 29840,29840,29840,26429,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26430,29840, 26431,29840,26432,29840,29840,26735,26434,29840,29840,29840, 26736,29840,29840,26436,29840,26437,29840,26438,29840,26439, 26440,26441, 3291,29840,26425,29840,29840,29840,29840,29840, 29840,26426,29840,29840,26427,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26428,29840,29840,29840, 29840,29840,29840,26429,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29023,26430,29840, 26431,29840,26432,29840,29840,26433,26434,29840,29840,29840, 26435,29840,29840,26436,29840,26437,29840,26438,29840,26439, 26440,26441,26744,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26745,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29027,29840,29840, 29840,29840,29840,29840,26746,29840,29840,29840,29840,29840, 29840,26747,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26748,29840,26749,27352, 26750,29840,29840,26751,26752,29840,29840,29840,26753,29840, 29840,26754,29840,26755,29840,26756,29840,26757,26758,26759, 26744,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26745,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26746,29840,29840,29840,29840,29840,29840,26747, 29840,29840,29028,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26748,29840,26749,27352,26750,29840, 29840,26751,26752,29840,29840,29840,26753,29840,29840,26754, 29840,26755,29840,26756,29840,26757,26758,26759, 3291,29840, 26443,29840,29840,29840,29840,29840,29840,26444,29840,29840, 26445,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26446,29840,29840,29840,29840,29840,29840,26447, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26448,29840,26449,29840,26450,29840, 29840,26772,26452,29840,29840,29840,26773,29840,29840,26454, 29840,26455,29840,26456,29840,26457,26458,26459, 3291,29840, 26443,29840,29840,29840,29840,29840,29840,26444,29840,29840, 26445,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26446,29840,29840,29840,29840,29840,29840,26447, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29032,26448,29840,26449,29840,26450,29840, 29840,26451,26452,29840,29840,29840,26453,29840,29840,26454, 29840,26455,29840,26456,29840,26457,26458,26459, 139, 139, 29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,29058,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139,29059,29840,29840, 29840,29840,29058,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139,27501,27502,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29071,29071,29071,29071, 29071,29071,29071,29071,29071,29840,29071,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27503,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,27505,25552,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25553,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25554,29840,29840,29840,29840, 29840,29840,25555,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25556,29840,25557, 29840,25558,29840,29840,29085,25560,29840,29840,29840,25561, 29840,29840,25562,29840,25563,29840,25564,29840,25565,25566, 25567,25552,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25553,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25554,29840,29840,29840,29840,29840,29840, 25555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25556,29840,25557,29086,25558, 29840,29840,25559,25560,29840,29840,29840,25561,25849,29840, 25562,29840,25563,29840,25564,29840,25565,25566,25567, 3291, 29840,26384,29840,29840,29840,29840,29840,29840,25551,29840, 29840,26385,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26386,29840,29840,29840,29840,29840,29840, 26387,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26388,29840,26389,29840,26391, 29840,29840,29089,26414,29840,29840,29840,26394,29840,29840, 26395,29840,26396,29840,26397,29840,26398,26399,26400, 3291, 29840,26384,29840,29840,29840,29840,29840,29840,25551,29840, 29840,26385,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26386,29840,29840,29840,29840,29840,29840, 26387,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26388,29840,26389,29840,26391, 29840,29840,26392,26414,29840,29840,29840,26394,29840,29090, 26395,29840,26396,29840,26397,29840,26398,26399,26400,26707, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26708, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26709,29840,29840,29840,29840,29840,29840,26710,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29093,26711,29840,26712,29840,26713,29840,29840, 26714,26715,29840,29840,29840,26716,29840,29840,26717,29840, 26718,29840,26719,29840,26720,26721,26722,26707,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26708,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26709, 29840,29840,29840,29840,29840,29840,26710,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26711,29840,26712,29840,26713,29840,29840,26714,26715, 29840,29840,29840,26716,29840,29840,26717,29840,29094,29840, 26719,29840,26720,26721,26722,26707,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26708,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26709,29840,29840, 29840,29840,29840,29840,26710,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26711, 29840,26712,29840,26713,29840,29840,26714,29095,29840,29840, 29840,26716,29840,29840,26717,29840,26718,29840,26719,29840, 26720,26721,26722,26707,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26708,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26709,29840,29840,29840,29840, 29840,29840,26710,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26711,29840,27012, 29840,26713,29840,29840,26714,26715,29840,29840,29840,26716, 29840,29840,26717,29840,26718,29840,27013,29840,26720,27014, 26722,26707,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26708,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26709,29840,29840,29840,29840,29840,29840, 26710,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26711,29840,26712,29840,26713, 29840,29840,26714,26715,29840,29840,29840,26716,27021,29096, 26717,29840,26718,29840,26719,29840,26720,26721,26722, 3291, 29840,26425,29840,29840,29840,29840,29840,29840,26426,29840, 29840,26427,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26428,29840,29840,29840,29840,29840,29840, 26429,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26430,29840,26431,29840,26432, 29840,29840,29097,26434,29840,29840,29840,26435,29840,29840, 26436,29840,26437,29840,26438,29840,26439,26440,26441, 3291, 29840,26425,29840,29840,29840,29840,29840,29840,26426,29840, 29840,26427,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26428,29840,29840,29840,29840,29840,29840, 26429,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26430,29840,26431,29840,26432, 29840,29840,26433,26434,29840,29840,29840,26435,29840,29098, 26436,29840,26437,29840,26438,29840,26439,26440,26441,26744, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26745, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26746,29840,29840,29840,29840,29840,29840,26747,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29101,26748,29840,26749,29840,26750,29840,29840, 26751,26752,29840,29840,29840,26753,29840,29840,26754,29840, 26755,29840,26756,29840,26757,26758,26759,26744,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26745,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26746, 29840,29840,29840,29840,29840,29840,26747,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26748,29840,26749,29840,26750,29840,29840,26751,26752, 29840,29840,29840,26753,29840,29840,26754,29840,29102,29840, 26756,29840,26757,26758,26759,26744,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26745,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26746,29840,29840, 29840,29840,29840,29840,26747,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26748, 29840,26749,29840,26750,29840,29840,26751,29103,29840,29840, 29840,26753,29840,29840,26754,29840,26755,29840,26756,29840, 26757,26758,26759,26744,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26745,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26746,29840,29840,29840,29840, 29840,29840,26747,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26748,29840,27054, 29840,26750,29840,29840,26751,26752,29840,29840,29840,26753, 29840,29840,26754,29840,26755,29840,27055,29840,26757,27056, 26759,26744,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26745,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26746,29840,29840,29840,29840,29840,29840, 26747,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26748,29840,26749,29840,26750, 29840,29840,26751,26752,29840,29840,29840,26753,27063,29104, 26754,29840,26755,29840,26756,29840,26757,26758,26759, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26448,29840,26449,29840,26450, 29840,29840,29105,26452,29840,29840,29840,26453,29840,29840, 26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26448,29840,26449,29840,26450, 29840,29840,26451,26452,29840,29840,29840,26453,29840,29106, 26454,29840,26455,29840,26456,29840,26457,26458,26459, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 29840,29840,29840,29840,29840,29127,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139, 139, 139, 139, 139,29840, 139, 139, 139,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139, 139, 139, 139,29128,29840, 29840,29840,29840,29127,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840, 139, 139, 139, 139,29131,29131,29131,29131,29131, 29131,29131,29131,29131,29840,29840,29840,29840,29840,29840, 29840,29131,29131,29131,29131,29131,29132,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29131,29131, 29131,29131,29131,29131,27501,27502,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29071,29071,29071,29071, 29071,29071,29071,29071,29071,29840,29071,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,27503,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29139,27505,25552,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25553,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29153,29840,29840,29840, 29840,29840,29840,29840,29840,25554,29840,29840,29840,29840, 29840,29840,25555,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,25556,29840,25557, 29840,25558,29840,29840,25559,25560,29840,29840,29840,25561, 29840,25848,25562,29840,25563,29840,25564,29840,25565,25566, 25567,25552,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25553,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25554,29840,29840,29840,29840,29840,29840, 25555,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,25556,29840,25557,29840,29154, 29840,29840,25559,25560,29840,29840,29840,25561,29840,29840, 25562,29840,25563,29840,25564,29840,25565,25566,25567,25552, 29155,29840,29840,29840,29840,29840,29840,29840,29840,25553, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,25554,29840,25839,29840,29840,29840,29840,25555,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,25556,29840,25557,29840,25558,29840,29840, 25559,25560,29840,29840,29840,25561,29840,29840,25562,29840, 25563,29840,25564,29840,25565,25566,25567, 3291,29840,26384, 29840,29840,29840,29840,29840,29840,25551,29840,29840,26385, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26386,29840,29840,29840,29840,29840,29840,26387,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29157,29840,26389,29840,26391,29840,29840, 26392,26414,29840,29840,29840,26394,29840,26673,26395,29840, 26396,29840,26397,29840,26398,26399,26400, 3291,29840,26384, 29840,29840,29840,29840,29840,29840,25551,29840,29840,26385, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26386,29840,29840,29840,29840,29840,29840,26387,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26388,29840,26389,29840,26391,29840,29840, 26392,26414,29840,29840,29840,26394,29840,29840,26395,29840, 26396,29840,26397,26987,29158,26399,26400,26707,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26708,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26709, 29840,29840,29840,29840,29840,29840,26710,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26711,29840,26712,29840,26713,29840,29840,29161,26715, 29840,29840,29840,26716,29840,29840,26717,29840,26718,29840, 26719,29840,26720,26721,26722,26707,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26708,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26709,29840,29840, 29840,29840,29840,29840,26710,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26711, 29840,26712,29840,26713,29840,29840,26714,26715,29840,29840, 29840,26716,29840,29162,26717,29840,26718,29840,26719,29840, 26720,26721,26722, 3291,29840,26425,29840,29840,29840,29840, 29840,29840,26426,29840,29840,26427,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26428,29840,29840, 29840,29840,29840,29840,26429,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29165, 29840,26431,29840,26432,29840,29840,26433,26434,29840,29840, 29840,26435,29840,26731,26436,29840,26437,29840,26438,29840, 26439,26440,26441, 3291,29840,26425,29840,29840,29840,29840, 29840,29840,26426,29840,29840,26427,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26428,29840,29840, 29840,29840,29840,29840,26429,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26430, 29840,26431,29840,26432,29840,29840,26433,26434,29840,29840, 29840,26435,29840,29840,26436,29840,26437,29840,26438,27047, 29166,26440,26441,26744,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26745,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26746,29840,29840,29840,29840, 29840,29840,26747,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26748,29840,26749, 29840,26750,29840,29840,29169,26752,29840,29840,29840,26753, 29840,29840,26754,29840,26755,29840,26756,29840,26757,26758, 26759,26744,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26745,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26746,29840,29840,29840,29840,29840,29840, 26747,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26748,29840,26749,29840,26750, 29840,29840,26751,26752,29840,29840,29840,26753,29840,29170, 26754,29840,26755,29840,26756,29840,26757,26758,26759, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29173,29840,26449,29840,26450, 29840,29840,26451,26452,29840,29840,29840,26453,29840,26768, 26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26448,29840,26449,29840,26450, 29840,29840,26451,26452,29840,29840,29840,26453,29840,29840, 26454,29840,26455,29840,26456,27089,29174,26458,26459,29193, 29193,29193,29193,29193,29193,29193,29193,29193,29840,29840, 29840,29840,29840,29840,29840,29193,29193,29193,29193,29193, 29194,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29193,29193,29193,29193,29193,29193,25552,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25553,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25554,29840,29840,29840,29840,29840,29840,25555,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25556,29840,25557,29840,25558,29840,29840,25559, 25560,29840,29840,29840,25561,29840,29840,25562,29840,25563, 29840,25564,29840,25565,25566,25567,25552,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25553,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25554,29840, 29840,29840,29840,29840,29840,25555,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 25556,29840,25557,29840,25558,29840,29840,25559,25560,29840, 29840,29840,25561,29840,29840,25562,29840,29215,29840,25564, 29840,25565,25566,25847,25552,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25553,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25554,29840,29840,29840, 29840,29840,29840,25555,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,25556,29840, 25557,29840,25558,29840,29840,25559,25560,29840,29840,29840, 25561,29840,29840,25562,29840,25563,29840,25564,29840,25565, 25566,25567,25552,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25553,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,25554,29840,29840,29840,29840,29840, 29840,25555,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26381,25850,29840,25557,29840, 25558,29840,29840,25559,25560,29840,29840,29840,25561,29840, 29840,25562,29840,25563,29840,25564,29840,25565,25566,25567, 25851, 3291,29840,26384,29840,29840,29840,29840,29840,29840, 25551,29840,29840,26385,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26386,29840,29840,29840,29840, 29840,29840,26387,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26388,29840,26389, 26390,26391,29840,29840,26392,26414,29840,29840,29840,26394, 29840,29840,26395,29840,26396,29216,26397,29840,26398,26399, 26400, 3291,29840,26384,29840,29840,29840,29840,29840,29840, 25551,26682,29840,26385,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26386,29840,29840,29840,29840, 29840,29840,26387,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26388,29840,26389, 29840,26391,29840,29840,26392,29217,29840,29840,29840,26394, 29840,29840,26395,29840,26396,29840,26397,29840,26398,26399, 26400,26707,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26708,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26709,29840,29840,29840,29840,29840,29840, 26710,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29220,29840,26712,29840,26713, 29840,29840,26714,26715,29840,29840,29840,26716,29840,27020, 26717,29840,26718,29840,26719,29840,26720,26721,26722,26707, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26708, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26709,29840,29840,29840,29840,29840,29840,26710,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26711,29840,26712,29840,26713,29840,29840, 26714,26715,29840,29840,29840,26716,29840,29840,26717,29840, 26718,29840,26719,27315,29221,26721,26722, 3291,29840,26425, 29840,29840,29840,29840,29840,29840,26426,29840,29840,26427, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26428,29840,29840,29840,29840,29840,29840,26429,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26430,29840,26431,26728,26432,29840,29840, 26433,26434,29840,29840,29840,26435,29840,29840,26436,29840, 26437,29224,26438,29840,26439,26440,26441, 3291,29840,26425, 29840,29840,29840,29840,29840,29840,26426,26739,29840,26427, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26428,29840,29840,29840,29840,29840,29840,26429,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26430,29840,26431,29840,26432,29840,29840, 26433,29225,29840,29840,29840,26435,29840,29840,26436,29840, 26437,29840,26438,29840,26439,26440,26441,26744,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26745,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26746, 29840,29840,29840,29840,29840,29840,26747,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29228,29840,26749,29840,26750,29840,29840,26751,26752, 29840,29840,29840,26753,29840,27062,26754,29840,26755,29840, 26756,29840,26757,26758,26759,26744,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26745,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26746,29840,29840, 29840,29840,29840,29840,26747,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26748, 29840,26749,29840,26750,29840,29840,26751,26752,29840,29840, 29840,26753,29840,29840,26754,29840,26755,29840,26756,27357, 29229,26758,26759, 3291,29840,26443,29840,29840,29840,29840, 29840,29840,26444,29840,29840,26445,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26446,29840,29840, 29840,29840,29840,29840,26447,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26448, 29840,26449,26765,26450,29840,29840,26451,26452,29840,29840, 29840,26453,29840,29840,26454,29840,26455,29232,26456,29840, 26457,26458,26459, 3291,29840,26443,29840,29840,29840,29840, 29840,29840,26444,26776,29840,26445,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26446,29840,29840, 29840,29840,29840,29840,26447,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26448, 29840,26449,29840,26450,29840,29840,26451,29233,29840,29840, 29840,26453,29840,29840,26454,29840,26455,29840,26456,29840, 26457,26458,26459,28586,28587,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29254,29254,29254,29254,29254, 29254,29254,29254,29254,29840,29254,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,28588,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28589,25552,29840,29840,29840,29840,29840,29840,29840, 29840,29840,25553,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29153,29840,29840,29840,29840, 29840,29840,29840,29840,25554,29840,29840,29840,29840,29840, 29840,25555,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,25556,29840,25557,29840, 25558,29840,29840,25559,25560,29840,29840,29840,25561,29840, 25854,25562,29840,25563,29840,25564,29840,25565,25566,25567, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,26385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,29840, 26391,29840,29840,29271,26414,29840,29840,29840,26394,29840, 29840,26395,29840,26396,29840,26397,29840,26398,26399,26400, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,26385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,29272, 26391,29840,29840,26392,26414,29840,29840,29840,26394,26675, 29840,26395,29840,26396,29840,26397,29840,26398,26399,26400, 26707,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26708,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26709,29840,29840,29840,29840,29840,29840,26710, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26711,29840,26712,27017,26713,29840, 29840,26714,26715,29840,29840,29840,26716,29840,29840,26717, 29840,26718,29275,26719,29840,26720,26721,26722,26707,29840, 29840,29840,29840,29840,29840,29840,27028,29840,26708,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26709,29840,29840,29840,29840,29840,29840,26710,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26711,29840,26712,29840,26713,29840,29840,26714, 29276,29840,29840,29840,26716,29840,29840,26717,29840,26718, 29840,26719,29840,26720,26721,26722, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,29279, 26434,29840,29840,29840,26435,29840,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29280,26432,29840,29840,26433, 26434,29840,29840,29840,26435,26732,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441,26744,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26745,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26746,29840, 29840,29840,29840,29840,29840,26747,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26748,29840,26749,27059,26750,29840,29840,26751,26752,29840, 29840,29840,26753,29840,29840,26754,29840,26755,29283,26756, 29840,26757,26758,26759,26744,29840,29840,29840,29840,29840, 29840,29840,27070,29840,26745,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26746,29840,29840,29840, 29840,29840,29840,26747,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26748,29840, 26749,29840,26750,29840,29840,26751,29284,29840,29840,29840, 26753,29840,29840,26754,29840,26755,29840,26756,29840,26757, 26758,26759, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,26450,29840,29840,29287,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29288,26450,29840,29840,26451,26452,29840,29840,29840, 26453,26769,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459,29306,29306,29306,29306,29306,29306,29306,29306, 29306,29840,29840,29840,29840,29840,29840,29840,29306,29306, 29306,29306,29306,29307,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29306,29306,29306,29306,29306, 29306,28586,28587,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29254,29254,29254,29254,29254,29254,29254, 29254,29254,29840,29254,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28588,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29310,28589, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,26385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29327,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,29840, 26391,29840,29840,26392,26414,29840,29840,29840,26394,29840, 26673,26395,29840,26396,29840,26397,29840,26398,26399,26400, 3291,29840,26384,29840,29840,29840,29840,29840,29840,25551, 29840,29840,26385,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26386,29840,29840,29840,29840,29840, 29840,26387,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26388,29840,26389,29840, 29328,29840,29840,26392,26414,29840,29840,29840,26394,29840, 29840,26395,29840,26396,29840,26397,29840,26398,26399,26400, 26707,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26708,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26709,29840,29840,29840,29840,29840,29840,26710, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26711,29840,26712,29840,26713,29840, 29840,29331,26715,29840,29840,29840,26716,29840,29840,26717, 29840,26718,29840,26719,29840,26720,26721,26722,26707,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26708,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26709,29840,29840,29840,29840,29840,29840,26710,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26711,29840,26712,29332,26713,29840,29840,26714, 26715,29840,29840,29840,26716,27021,29840,26717,29840,26718, 29840,26719,29840,26720,26721,26722, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29335,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,26432,29840,29840,26433, 26434,29840,29840,29840,26435,29840,26731,26436,29840,26437, 29840,26438,29840,26439,26440,26441, 3291,29840,26425,29840, 29840,29840,29840,29840,29840,26426,29840,29840,26427,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26428,29840,29840,29840,29840,29840,29840,26429,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26430,29840,26431,29840,29336,29840,29840,26433, 26434,29840,29840,29840,26435,29840,29840,26436,29840,26437, 29840,26438,29840,26439,26440,26441,26744,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26745,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26746,29840, 29840,29840,29840,29840,29840,26747,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26748,29840,26749,29840,26750,29840,29840,29339,26752,29840, 29840,29840,26753,29840,29840,26754,29840,26755,29840,26756, 29840,26757,26758,26759,26744,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26745,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26746,29840,29840,29840, 29840,29840,29840,26747,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26748,29840, 26749,29340,26750,29840,29840,26751,26752,29840,29840,29840, 26753,27063,29840,26754,29840,26755,29840,26756,29840,26757, 26758,26759, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29343,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,26450,29840,29840,26451,26452,29840,29840,29840, 26453,29840,26768,26454,29840,26455,29840,26456,29840,26457, 26458,26459, 3291,29840,26443,29840,29840,29840,29840,29840, 29840,26444,29840,29840,26445,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26446,29840,29840,29840, 29840,29840,29840,26447,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26448,29840, 26449,29840,29344,29840,29840,26451,26452,29840,29840,29840, 26453,29840,29840,26454,29840,26455,29840,26456,29840,26457, 26458,26459,29126,29126,29126,29126,29126,29126,29126,29126, 29126,29840,29840,29840,29840,29840,29840,29840,29126,29126, 29126,29126,29126,29127,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29126,29126,29126,29126,29126, 29126, 3291,29840,26384,29840,29840,29840,29840,29840,29840, 25551,29840,29840,26385,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26386,29840,29840,29840,29840, 29840,29840,26387,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26388,29840,26389, 29840,26391,29840,29840,26392,26414,29840,29840,29840,26394, 29840,29840,26395,29840,26396,29840,26397,29840,26398,26399, 26400, 3291,29840,26384,29840,29840,29840,29840,29840,29840, 25551,29840,29840,26385,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26386,29840,29840,29840,29840, 29840,29840,26387,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26388,29840,26389, 29840,26391,29840,29840,26392,26414,29840,29840,29840,26394, 29840,29840,26395,29840,29377,29840,26397,29840,26398,26399, 26672,26707,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26708,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29378,29840,29840,29840,29840,29840, 29840,29840,29840,26709,29840,29840,29840,29840,29840,29840, 26710,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26711,29840,26712,29840,26713, 29840,29840,26714,26715,29840,29840,29840,26716,29840,27020, 26717,29840,26718,29840,26719,29840,26720,26721,26722,26707, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26708, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26709,29840,29840,29840,29840,29840,29840,26710,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26711,29840,26712,29840,29379,29840,29840, 26714,26715,29840,29840,29840,26716,29840,29840,26717,29840, 26718,29840,26719,29840,26720,26721,26722,26707,29380,29840, 29840,29840,29840,29840,29840,29840,29840,26708,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26709, 29840,27011,29840,29840,29840,29840,26710,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26711,29840,26712,29840,26713,29840,29840,26714,26715, 29840,29840,29840,26716,29840,29840,26717,29840,26718,29840, 26719,29840,26720,26721,26722, 3291,29840,26425,29840,29840, 29840,29840,29840,29840,26426,29840,29840,26427,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26428, 29840,29840,29840,29840,29840,29840,26429,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26430,29840,26431,29840,26432,29840,29840,26433,26434, 29840,29840,29840,26435,29840,29840,26436,29840,26437,29840, 26438,29840,26439,26440,26441, 3291,29840,26425,29840,29840, 29840,29840,29840,29840,26426,29840,29840,26427,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26428, 29840,29840,29840,29840,29840,29840,26429,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,26430,29840,26431,29840,26432,29840,29840,26433,26434, 29840,29840,29840,26435,29840,29840,26436,29840,29382,29840, 26438,29840,26439,26440,26730,26744,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26745,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29383,29840, 29840,29840,29840,29840,29840,29840,29840,26746,29840,29840, 29840,29840,29840,29840,26747,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,26748, 29840,26749,29840,26750,29840,29840,26751,26752,29840,29840, 29840,26753,29840,27062,26754,29840,26755,29840,26756,29840, 26757,26758,26759,26744,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26745,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26746,29840,29840,29840,29840, 29840,29840,26747,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26748,29840,26749, 29840,29384,29840,29840,26751,26752,29840,29840,29840,26753, 29840,29840,26754,29840,26755,29840,26756,29840,26757,26758, 26759,26744,29385,29840,29840,29840,29840,29840,29840,29840, 29840,26745,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26746,29840,27053,29840,29840,29840,29840, 26747,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26748,29840,26749,29840,26750, 29840,29840,26751,26752,29840,29840,29840,26753,29840,29840, 26754,29840,26755,29840,26756,29840,26757,26758,26759, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26448,29840,26449,29840,26450, 29840,29840,26451,26452,29840,29840,29840,26453,29840,29840, 26454,29840,26455,29840,26456,29840,26457,26458,26459, 3291, 29840,26443,29840,29840,29840,29840,29840,29840,26444,29840, 29840,26445,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,26446,29840,29840,29840,29840,29840,29840, 26447,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,26448,29840,26449,29840,26450, 29840,29840,26451,26452,29840,29840,29840,26453,29840,29840, 26454,29840,29387,29840,26456,29840,26457,26458,26767,29389, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 139, 139, 139, 139,29840, 29840,29840,29840,29840,29840,29840, 139, 139, 139, 139, 139, 140,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840, 139, 139, 139, 139, 139, 139,28586, 28587,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29404,29404,29404,29404,29404,29404,29404,29404,29404, 29840,29404,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,28588,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,28589, 3291,29840, 26384,29840,29840,29840,29840,29840,29840,25551,29840,29840, 26385,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29327,29840,29840,29840,29840,29840,29840, 29840,29840,26386,29840,29840,29840,29840,29840,29840,26387, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26388,29840,26389,29840,26391,29840, 29840,26392,26414,29840,29840,29840,26394,29840,26680,26395, 29840,26396,29840,26397,29840,26398,26399,26400,26707,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26708,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26709,29840,29840,29840,29840,29840,29840,26710,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26711,29840,26712,29840,26713,29840,29840,26714, 26715,29840,29840,29840,26716,29840,29840,26717,29840,26718, 29840,26719,29840,26720,26721,26722,26707,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26708,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26709,29840, 29840,29840,29840,29840,29840,26710,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 26711,29840,26712,29840,26713,29840,29840,26714,26715,29840, 29840,29840,26716,29840,29840,26717,29840,29415,29840,26719, 29840,26720,26721,27019,26707,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26708,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,26709,29840,29840,29840, 29840,29840,29840,26710,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,26711,29840, 26712,29840,26713,29840,29840,26714,26715,29840,29840,29840, 26716,29840,29840,26717,29840,26718,29840,26719,29840,26720, 26721,26722,26707,29840,29840,29840,29840,29840,29840,29840, 29840,29840,26708,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,26709,29840,29840,29840,29840,29840, 29840,26710,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,27582,27022,29840,26712,29840, 26713,29840,29840,26714,26715,29840,29840,29840,26716,29840, 29840,26717,29840,26718,29840,26719,29840,26720,26721,26722, 27023, 3291,29840,26425,29840,29840,29840,29840,29840,29840, 26426,29840,29840,26427,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29335,29840,29840,29840, 29840,29840,29840,29840,29840,26428,29840,29840,29840,29840, 29840,29840,26429,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,26430,29840,26431, 29840,26432,29840,29840,26433,26434,29840,29840,29840,26435, 29840,26737,26436,29840,26437,29840,26438,29840,26439,26440, 26441,28586,28587,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29404,29404,29404,29404,29404,29404,29404, 29404,29404,29840,29404,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,28588,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29433,28589, 28565,29840,29840,29840,28439,28440,29840,29840,29840,29840, 29840,29840,29451,29451,29451,29451,29451,29451,29451,29451, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,28441,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,28686, 139,29840, 139, 139, 139, 139, 139, 139, 150,29840, 150, 150, 150, 150, 150, 150, 164,29840, 164, 164, 164, 164, 164, 164, 246, 246, 246, 246, 246, 246, 246, 246, 253,29840, 253, 253, 253, 253, 253, 253, 258, 258, 258, 258, 258, 258, 258, 258, 260, 260, 260, 260, 260, 260, 260, 260, 265, 265, 265, 265, 265, 265, 265, 265, 274,29840, 274, 274, 274, 274, 274, 274, 283,29840, 283, 283, 283, 283, 283, 283, 291,29840, 291, 291, 291, 291, 291, 291, 295,29840, 295, 295, 295, 295, 295, 295, 151,29840, 151, 151, 151, 151, 151, 151, 338,29840, 338, 338, 338, 338, 338, 338, 168,29840, 168, 168, 168, 168, 168, 168, 176,29840, 176, 176, 176, 176, 176, 176, 246,29840, 246, 246, 246, 246, 246, 246, 253,29840, 253, 253, 253, 253, 253, 253, 258,29840, 258, 258, 258, 258, 258, 258, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 274,29840, 274, 274, 274, 274, 274, 274, 283,29840, 283, 283, 283, 283, 283, 283, 494,29840, 494, 494, 494, 494, 494, 494, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 151,29840, 151, 151, 151, 151, 151, 151, 315,29840, 315, 315, 315, 315, 315, 315, 322,29840, 322, 322, 322, 322, 322, 322, 568,29840, 568, 568, 568, 568, 568, 568, 571,29840, 571, 571, 571, 571, 571, 571, 164,29840, 164, 164, 164, 164, 164, 164, 168,29840, 168, 168, 168, 168, 168, 168, 385,29840, 385, 385, 385, 385, 385, 385, 338,29840, 338, 338, 338, 338, 338, 338, 611,29840, 611, 611, 611, 611, 611, 611, 176,29840, 176, 176, 176, 176, 176, 176, 246,29840, 246, 246, 246, 246, 246, 246, 253,29840, 253, 253, 253, 253, 253, 253, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 274,29840, 274, 274, 274, 274, 274, 274, 283,29840, 283, 283, 283, 283, 283, 283, 494,29840, 494, 494, 494, 494, 494, 494, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 779,29840, 779, 779, 779, 779, 779, 779, 787, 787, 787, 787, 787, 787, 787, 787, 151,29840, 151, 151, 151, 151, 151, 151, 315,29840, 315, 315, 315, 315, 315, 315, 561,29840, 561, 561, 561, 561, 561, 561, 322,29840, 322, 322, 322, 322, 322, 322, 832,29840, 832, 832, 832, 832, 832, 832, 571,29840, 571, 571, 571, 571, 571, 571, 164,29840, 164, 164, 164, 164, 164, 164, 841,29840, 841, 841, 841, 841, 841, 841, 168,29840, 168, 168, 168, 168, 168, 168, 385,29840, 385, 385, 385, 385, 385, 385, 856,29840, 856, 856, 856, 856, 856, 856, 843,29840, 843, 843, 843, 843, 843, 843, 176,29840, 176, 176, 176, 176, 176, 176, 897, 897, 897, 897, 897, 897, 897, 897, 963,29840, 963, 963, 963, 963, 963, 963, 246,29840, 246, 246, 246, 246, 246, 246, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 283,29840, 283, 283, 283, 283, 283, 283, 494,29840, 494, 494, 494, 494, 494, 494, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 787, 787, 787, 787, 787, 787, 787, 787, 150,29840, 150, 150, 150, 150, 150, 150, 776,29840, 776, 776, 776, 776, 776, 776, 779,29840, 779, 779, 779, 779, 779, 779, 783, 783, 783, 783, 783, 783, 783, 783, 784, 784, 784, 784, 784, 784, 784, 151,29840, 151, 151, 151, 151, 151, 151, 315,29840, 315, 315, 315, 315, 315, 315, 561,29840, 561, 561, 561, 561, 561, 561, 321,29840, 321, 321, 321, 321, 321, 321, 322, 29840, 322, 322, 322, 322, 322, 322, 832,29840, 832, 832, 832, 832, 832, 832, 571,29840, 571, 571, 571, 571, 571, 571, 164,29840, 164, 164, 164, 164, 164, 164, 841,29840, 841, 841, 841, 841, 841, 841, 843, 29840, 843, 843, 843, 843, 843, 843, 168,29840, 168, 168, 168, 168, 168, 168, 385,29840, 385, 385, 385, 385, 385, 385, 856,29840, 856, 856, 856, 856, 856, 856, 176,29840, 176, 176, 176, 176, 176, 176, 897, 897, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 1231,29840, 1231, 1231, 1231, 1231, 1231, 1231, 338,29840, 338, 338, 338, 338, 338, 338, 1254,29840, 1254, 1254, 1254, 1254, 1254, 1254, 959, 29840, 959, 959, 959, 959, 959, 959, 1278,29840, 1278, 1278, 1278, 1278, 1278, 1278, 1281,29840, 1281, 1281, 1281, 1281, 1281, 1281, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 283, 29840, 283, 283, 283, 283, 283, 283, 494,29840, 494, 494, 494, 494, 494, 494, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505, 29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 1389,29840, 1389, 1389, 1389, 1389, 1389, 1389, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514, 29840, 514, 514, 514, 514, 514, 514, 150,29840, 150, 150, 150, 150, 150, 150, 776,29840, 776, 776, 776, 776, 776, 776, 779,29840, 779, 779, 779, 779, 779, 779, 783, 783, 783, 783, 783, 783, 783, 783, 784, 784, 784, 784, 784, 784, 784, 784, 787, 787, 787, 787, 787, 787, 787, 787, 151,29840, 151, 151, 151, 151, 151, 151, 315,29840, 315, 315, 315, 315, 315, 315, 561,29840, 561, 561, 561, 561, 561, 561, 322, 29840, 322, 322, 322, 322, 322, 322, 321,29840, 321, 321, 321, 321, 321, 321, 832,29840, 832, 832, 832, 832, 832, 832, 571,29840, 571, 571, 571, 571, 571, 571, 841,29840, 841, 841, 841, 841, 841, 841, 168, 29840, 168, 168, 168, 168, 168, 168, 856,29840, 856, 856, 856, 856, 856, 856, 338,29840, 338, 338, 338, 338, 338, 338, 843,29840, 843, 843, 843, 843, 843, 843, 176,29840, 176, 176, 176, 176, 176, 176, 897, 897, 897, 897, 897, 897, 897, 897, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1577,29840, 1577, 1577, 1577, 1577, 1577, 1577, 1228,29840, 1228, 1228, 1228, 1228, 1228, 1228, 1229,29840, 1229, 1229, 1229, 1229, 1229, 1229, 1231, 29840, 1231, 1231, 1231, 1231, 1231, 1231, 1235,29840, 1235, 1235, 1235, 1235, 1235, 1235, 1603,29840, 1603, 1603, 1603, 1603, 1603, 1603, 338,29840, 338, 338, 338, 338, 338, 338, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 1621, 29840, 1621, 1621, 1621, 1621, 1621, 1621, 1624,29840, 1624, 1624, 1624, 1624, 1624, 1624, 168,29840, 168, 168, 168, 168, 168, 168, 176,29840, 176, 176, 176, 176, 176, 176, 959,29840, 959, 959, 959, 959, 959, 959, 1657, 29840, 1657, 1657, 1657, 1657, 1657, 1657, 1281,29840, 1281, 1281, 1281, 1281, 1281, 1281, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 253,29840, 253, 253, 253, 253, 253, 253, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 274,29840, 274, 274, 274, 274, 274, 274, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734, 29840, 1734, 1734, 1734, 1734, 1734, 1734, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 1389,29840, 1389, 1389, 1389, 1389, 1389, 1389, 510, 29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 1786,29840, 1786, 1786, 1786, 1786, 1786, 1786, 783, 783, 783, 783, 783, 783, 783, 783, 150,29840, 150, 150, 150, 150, 150, 150, 776,29840, 776, 776, 776, 776, 776, 776, 779,29840, 779, 779, 779, 779, 779, 779, 787, 787, 787, 787, 787, 787, 787, 787, 315, 29840, 315, 315, 315, 315, 315, 315, 322,29840, 322, 322, 322, 322, 322, 322, 321,29840, 321, 321, 321, 321, 321, 321, 832,29840, 832, 832, 832, 832, 832, 832, 1873,29840, 1873, 1873, 1873, 1873, 1873, 1873, 841, 29840, 841, 841, 841, 841, 841, 841, 338,29840, 338, 338, 338, 338, 338, 338, 385,29840, 385, 385, 385, 385, 385, 385, 571,29840, 571, 571, 571, 571, 571, 571, 856,29840, 856, 856, 856, 856, 856, 856, 843, 29840, 843, 843, 843, 843, 843, 843, 168,29840, 168, 168, 168, 168, 168, 168, 897, 897, 897, 897, 897, 897, 897, 897, 338,29840, 338, 338, 338, 338, 338, 338, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 1974, 29840, 1974, 1974, 1974, 1974, 1974, 1974, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 1228,29840, 1228, 1228, 1228, 1228, 1228, 1228, 1577,29840, 1577, 1577, 1577, 1577, 1577, 1577, 1229,29840, 1229, 1229, 1229, 1229, 1229, 1229, 1585, 29840, 1585, 1585, 1585, 1585, 1585, 1585, 1997,29840, 1997, 1997, 1997, 1997, 1997, 1997, 1231,29840, 1231, 1231, 1231, 1231, 1231, 1231, 2006,29840, 2006, 2006, 2006, 2006, 2006, 2006, 1235,29840, 1235, 1235, 1235, 1235, 1235, 1235, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 2028,29840, 2028, 2028, 2028, 2028, 2028, 2028, 1600,29840, 1600, 1600, 1600, 1600, 1600, 1600, 1601,29840, 1601, 1601, 1601, 1601, 1601, 1601, 1603, 29840, 1603, 1603, 1603, 1603, 1603, 1603, 1607,29840, 1607, 1607, 1607, 1607, 1607, 1607, 338,29840, 338, 338, 338, 338, 338, 338, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 2056,29840, 2056, 2056, 2056, 2056, 2056, 2056, 1624, 29840, 1624, 1624, 1624, 1624, 1624, 1624, 139,29840, 139, 139, 139, 139, 139, 139, 168,29840, 168, 168, 168, 168, 168, 168, 176,29840, 176, 176, 176, 176, 176, 176, 959,29840, 959, 959, 959, 959, 959, 959, 1657, 29840, 1657, 1657, 1657, 1657, 1657, 1657, 1281,29840, 1281, 1281, 1281, 1281, 1281, 1281, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494, 29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505, 29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 1389,29840, 1389, 1389, 1389, 1389, 1389, 1389, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514, 29840, 514, 514, 514, 514, 514, 514, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 1786,29840, 1786, 1786, 1786, 1786, 1786, 1786, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776, 29840, 776, 776, 776, 776, 776, 776, 779,29840, 779, 779, 779, 779, 779, 779, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 561,29840, 561, 561, 561, 561, 561, 561, 321, 29840, 321, 321, 321, 321, 321, 321, 2346,29840, 2346, 2346, 2346, 2346, 2346, 2346, 2358,29840, 2358, 2358, 2358, 2358, 2358, 2358, 841,29840, 841, 841, 841, 841, 841, 841, 571,29840, 571, 571, 571, 571, 571, 571, 856, 29840, 856, 856, 856, 856, 856, 856, 897, 897, 897, 897, 897, 897, 897, 897, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 2454,29840, 2454, 2454, 2454, 2454, 2454, 2454, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 1228, 29840, 1228, 1228, 1228, 1228, 1228, 1228, 1995,29840, 1995, 1995, 1995, 1995, 1995, 1995, 1229,29840, 1229, 1229, 1229, 1229, 1229, 1229, 1585,29840, 1585, 1585, 1585, 1585, 1585, 1585, 1997,29840, 1997, 1997, 1997, 1997, 1997, 1997, 1999, 29840, 1999, 1999, 1999, 1999, 1999, 1999, 1231,29840, 1231, 1231, 1231, 1231, 1231, 1231, 1235,29840, 1235, 1235, 1235, 1235, 1235, 1235, 139,29840, 139, 139, 139, 139, 139, 139, 571,29840, 571, 571, 571, 571, 571, 571, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 2516, 29840, 2516, 2516, 2516, 2516, 2516, 2516, 2519,29840, 2519, 2519, 2519, 2519, 2519, 2519, 1600,29840, 1600, 1600, 1600, 1600, 1600, 1600, 2028,29840, 2028, 2028, 2028, 2028, 2028, 2028, 1601,29840, 1601, 1601, 1601, 1601, 1601, 1601, 2036, 29840, 2036, 2036, 2036, 2036, 2036, 2036, 2539,29840, 2539, 2539, 2539, 2539, 2539, 2539, 1603,29840, 1603, 1603, 1603, 1603, 1603, 1603, 2548,29840, 2548, 2548, 2548, 2548, 2548, 2548, 1607,29840, 1607, 1607, 1607, 1607, 1607, 1607, 338, 29840, 338, 338, 338, 338, 338, 338, 2561,29840, 2561, 2561, 2561, 2561, 2561, 2561, 175,29840, 175, 175, 175, 175, 175, 175, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 2056,29840, 2056, 2056, 2056, 2056, 2056, 2056, 1624, 29840, 1624, 1624, 1624, 1624, 1624, 1624, 139,29840, 139, 139, 139, 139, 139, 139, 2589,29840, 2589, 2589, 2589, 2589, 2589, 2589, 168,29840, 168, 168, 168, 168, 168, 168, 176,29840, 176, 176, 176, 176, 176, 176, 959, 29840, 959, 959, 959, 959, 959, 959, 1657,29840, 1657, 1657, 1657, 1657, 1657, 1657, 1281,29840, 1281, 1281, 1281, 1281, 1281, 1281, 150,29840, 150, 150, 150, 150, 150, 150, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246, 29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 253,29840, 253, 253, 253, 253, 253, 253, 260,29840, 260, 260, 260, 260, 260, 260, 265, 29840, 265, 265, 265, 265, 265, 265, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 274,29840, 274, 274, 274, 274, 274, 274, 1729, 29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741, 29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 295, 29840, 295, 295, 295, 295, 295, 295, 1389,29840, 1389, 1389, 1389, 1389, 1389, 1389, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 1768, 29840, 1768, 1768, 1768, 1768, 1768, 1768, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 1786,29840, 1786, 1786, 1786, 1786, 1786, 1786, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 150,29840, 150, 150, 150, 150, 150, 150, 321,29840, 321, 321, 321, 321, 321, 321, 2863,29840, 2863, 2863, 2863, 2863, 2863, 2863, 2870, 29840, 2870, 2870, 2870, 2870, 2870, 2870, 2873,29840, 2873, 2873, 2873, 2873, 2873, 2873, 571,29840, 571, 571, 571, 571, 571, 571, 897, 897, 897, 897, 897, 897, 897, 897, 338,29840, 338, 338, 338, 338, 338, 338, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2454,29840, 2454, 2454, 2454, 2454, 2454, 2454, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 1228,29840, 1228, 1228, 1228, 1228, 1228, 1228, 1995, 29840, 1995, 1995, 1995, 1995, 1995, 1995, 1229,29840, 1229, 1229, 1229, 1229, 1229, 1229, 1585,29840, 1585, 1585, 1585, 1585, 1585, 1585, 2477,29840, 2477, 2477, 2477, 2477, 2477, 2477, 1997,29840, 1997, 1997, 1997, 1997, 1997, 1997, 1999, 29840, 1999, 1999, 1999, 1999, 1999, 1999, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 1231,29840, 1231, 1231, 1231, 1231, 1231, 1231, 1235,29840, 1235, 1235, 1235, 1235, 1235, 1235, 139,29840, 139, 139, 139, 139, 139, 139, 571, 29840, 571, 571, 571, 571, 571, 571, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3038, 29840, 3038, 3038, 3038, 3038, 3038, 3038, 2519,29840, 2519, 2519, 2519, 2519, 2519, 2519, 1600,29840, 1600, 1600, 1600, 1600, 1600, 1600, 2537,29840, 2537, 2537, 2537, 2537, 2537, 2537, 1601,29840, 1601, 1601, 1601, 1601, 1601, 1601, 2036, 29840, 2036, 2036, 2036, 2036, 2036, 2036, 2539,29840, 2539, 2539, 2539, 2539, 2539, 2539, 2541,29840, 2541, 2541, 2541, 2541, 2541, 2541, 1603,29840, 1603, 1603, 1603, 1603, 1603, 1603, 1607,29840, 1607, 1607, 1607, 1607, 1607, 1607, 571, 29840, 571, 571, 571, 571, 571, 571, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 3082,29840, 3082, 3082, 3082, 3082, 3082, 3082, 2558,29840, 2558, 2558, 2558, 2558, 2558, 2558, 2559,29840, 2559, 2559, 2559, 2559, 2559, 2559, 2561, 29840, 2561, 2561, 2561, 2561, 2561, 2561, 2565,29840, 2565, 2565, 2565, 2565, 2565, 2565, 338,29840, 338, 338, 338, 338, 338, 338, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 2056,29840, 2056, 2056, 2056, 2056, 2056, 2056, 1624, 29840, 1624, 1624, 1624, 1624, 1624, 1624, 139,29840, 139, 139, 139, 139, 139, 139, 150,29840, 150, 150, 150, 150, 150, 150, 3123,29840, 3123, 3123, 3123, 3123, 3123, 3123, 168,29840, 168, 168, 168, 168, 168, 168, 959, 29840, 959, 959, 959, 959, 959, 959, 1657,29840, 1657, 1657, 1657, 1657, 1657, 1657, 1281,29840, 1281, 1281, 1281, 1281, 1281, 1281, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 1738, 29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 295,29840, 295, 295, 295, 295, 295, 295, 1389,29840, 1389, 1389, 1389, 1389, 1389, 1389, 510,29840, 510, 510, 510, 510, 510, 510, 512, 29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 1786, 29840, 1786, 1786, 1786, 1786, 1786, 1786, 776,29840, 776, 776, 776, 776, 776, 776, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 321, 29840, 321, 321, 321, 321, 321, 321, 3441,29840, 3441, 3441, 3441, 3441, 3441, 3441, 3443,29840, 3443, 3443, 3443, 3443, 3443, 3443, 3451,29840, 3451, 3451, 3451, 3451, 3451, 3451, 3455,29840, 3455, 3455, 3455, 3455, 3455, 3455, 3458, 29840, 3458, 3458, 3458, 3458, 3458, 3458, 3461,29840, 3461, 3461, 3461, 3461, 3461, 3461, 3464,29840, 3464, 3464, 3464, 3464, 3464, 3464, 571,29840, 571, 571, 571, 571, 571, 571, 338,29840, 338, 338, 338, 338, 338, 338, 168, 29840, 168, 168, 168, 168, 168, 168, 897, 897, 897, 897, 897, 897, 897, 897, 568,29840, 568, 568, 568, 568, 568, 568, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2454, 29840, 2454, 2454, 2454, 2454, 2454, 2454, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 1228,29840, 1228, 1228, 1228, 1228, 1228, 1228, 1995,29840, 1995, 1995, 1995, 1995, 1995, 1995, 1229,29840, 1229, 1229, 1229, 1229, 1229, 1229, 1585, 29840, 1585, 1585, 1585, 1585, 1585, 1585, 3594,29840, 3594, 3594, 3594, 3594, 3594, 3594, 2477,29840, 2477, 2477, 2477, 2477, 2477, 2477, 1997,29840, 1997, 1997, 1997, 1997, 1997, 1997, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 1577, 29840, 1577, 1577, 1577, 1577, 1577, 1577, 1999,29840, 1999, 1999, 1999, 1999, 1999, 1999, 1235,29840, 1235, 1235, 1235, 1235, 1235, 1235, 139,29840, 139, 139, 139, 139, 139, 139, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3038,29840, 3038, 3038, 3038, 3038, 3038, 3038, 2519, 29840, 2519, 2519, 2519, 2519, 2519, 2519, 1600,29840, 1600, 1600, 1600, 1600, 1600, 1600, 2537,29840, 2537, 2537, 2537, 2537, 2537, 2537, 1601,29840, 1601, 1601, 1601, 1601, 1601, 1601, 2036,29840, 2036, 2036, 2036, 2036, 2036, 2036, 3061, 29840, 3061, 3061, 3061, 3061, 3061, 3061, 2539,29840, 2539, 2539, 2539, 2539, 2539, 2539, 2541,29840, 2541, 2541, 2541, 2541, 2541, 2541, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 1603,29840, 1603, 1603, 1603, 1603, 1603, 1603, 1607, 29840, 1607, 1607, 1607, 1607, 1607, 1607, 571,29840, 571, 571, 571, 571, 571, 571, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 3678,29840, 3678, 3678, 3678, 3678, 3678, 3678, 3681,29840, 3681, 3681, 3681, 3681, 3681, 3681, 2558, 29840, 2558, 2558, 2558, 2558, 2558, 2558, 3082,29840, 3082, 3082, 3082, 3082, 3082, 3082, 2559,29840, 2559, 2559, 2559, 2559, 2559, 2559, 3090,29840, 3090, 3090, 3090, 3090, 3090, 3090, 3701,29840, 3701, 3701, 3701, 3701, 3701, 3701, 2561, 29840, 2561, 2561, 2561, 2561, 2561, 2561, 3710,29840, 3710, 3710, 3710, 3710, 3710, 3710, 2565,29840, 2565, 2565, 2565, 2565, 2565, 2565, 139,29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 2056, 29840, 2056, 2056, 2056, 2056, 2056, 2056, 1624,29840, 1624, 1624, 1624, 1624, 1624, 1624, 3737,29840, 3737, 3737, 3737, 3737, 3737, 3737, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3123,29840, 3123, 3123, 3123, 3123, 3123, 3123, 168, 29840, 168, 168, 168, 168, 168, 168, 338,29840, 338, 338, 338, 338, 338, 338, 1647,29840, 1647, 1647, 1647, 1647, 1647, 1647, 959,29840, 959, 959, 959, 959, 959, 959, 1281,29840, 1281, 1281, 1281, 1281, 1281, 1281, 3161, 29840, 3161, 3161, 3161, 3161, 3161, 3161, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 253, 29840, 253, 253, 253, 253, 253, 253, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 274,29840, 274, 274, 274, 274, 274, 274, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 1738, 29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 29840, 1043, 1043, 1043, 1043, 1043, 1043, 3887,29840, 3887, 3887, 3887, 3887, 3887, 3887, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 510, 29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 3897,29840, 3897, 3897, 3897, 3897, 3897, 3897, 514,29840, 514, 514, 514, 514, 514, 514, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 1786,29840, 1786, 1786, 1786, 1786, 1786, 1786, 776, 29840, 776, 776, 776, 776, 776, 776, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 150,29840, 150, 150, 150, 150, 150, 150, 321, 29840, 321, 321, 321, 321, 321, 321, 4092,29840, 4092, 4092, 4092, 4092, 4092, 4092, 4095,29840, 4095, 4095, 4095, 4095, 4095, 4095, 4098,29840, 4098, 4098, 4098, 4098, 4098, 4098, 4106,29840, 4106, 4106, 4106, 4106, 4106, 4106, 4111, 29840, 4111, 4111, 4111, 4111, 4111, 4111, 4115,29840, 4115, 4115, 4115, 4115, 4115, 4115, 4118,29840, 4118, 4118, 4118, 4118, 4118, 4118, 4121,29840, 4121, 4121, 4121, 4121, 4121, 4121, 4125,29840, 4125, 4125, 4125, 4125, 4125, 4125, 4128, 29840, 4128, 4128, 4128, 4128, 4128, 4128, 571,29840, 571, 571, 571, 571, 571, 571, 897, 897, 897, 897, 897, 897, 897, 897, 338,29840, 338, 338, 338, 338, 338, 338, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2454,29840, 2454, 2454, 2454, 2454, 2454, 2454, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 1995,29840, 1995, 1995, 1995, 1995, 1995, 1995, 1577,29840, 1577, 1577, 1577, 1577, 1577, 1577, 1585, 29840, 1585, 1585, 1585, 1585, 1585, 1585, 4246,29840, 4246, 4246, 4246, 4246, 4246, 4246, 4258,29840, 4258, 4258, 4258, 4258, 4258, 4258, 2477,29840, 2477, 2477, 2477, 2477, 2477, 2477, 1997,29840, 1997, 1997, 1997, 1997, 1997, 1997, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 1999,29840, 1999, 1999, 1999, 1999, 1999, 1999, 175,29840, 175, 175, 175, 175, 175, 175, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3038,29840, 3038, 3038, 3038, 3038, 3038, 3038, 2519,29840, 2519, 2519, 2519, 2519, 2519, 2519, 1600, 29840, 1600, 1600, 1600, 1600, 1600, 1600, 2537,29840, 2537, 2537, 2537, 2537, 2537, 2537, 1601,29840, 1601, 1601, 1601, 1601, 1601, 1601, 2036,29840, 2036, 2036, 2036, 2036, 2036, 2036, 4310,29840, 4310, 4310, 4310, 4310, 4310, 4310, 3061, 29840, 3061, 3061, 3061, 3061, 3061, 3061, 2539,29840, 2539, 2539, 2539, 2539, 2539, 2539, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 2028,29840, 2028, 2028, 2028, 2028, 2028, 2028, 2541,29840, 2541, 2541, 2541, 2541, 2541, 2541, 1607, 29840, 1607, 1607, 1607, 1607, 1607, 1607, 571,29840, 571, 571, 571, 571, 571, 571, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 4338,29840, 4338, 4338, 4338, 4338, 4338, 4338, 3681,29840, 3681, 3681, 3681, 3681, 3681, 3681, 2558, 29840, 2558, 2558, 2558, 2558, 2558, 2558, 3699,29840, 3699, 3699, 3699, 3699, 3699, 3699, 2559,29840, 2559, 2559, 2559, 2559, 2559, 2559, 3090,29840, 3090, 3090, 3090, 3090, 3090, 3090, 3701,29840, 3701, 3701, 3701, 3701, 3701, 3701, 3703, 29840, 3703, 3703, 3703, 3703, 3703, 3703, 2561,29840, 2561, 2561, 2561, 2561, 2561, 2561, 2565,29840, 2565, 2565, 2565, 2565, 2565, 2565, 139,29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 1624, 29840, 1624, 1624, 1624, 1624, 1624, 1624, 4404,29840, 4404, 4404, 4404, 4404, 4404, 4404, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3742, 3123,29840, 3123, 3123, 3123, 3123, 3123, 3123, 959, 29840, 959, 959, 959, 959, 959, 959, 3161,29840, 3161, 3161, 3161, 3161, 3161, 3161, 3793,29840, 3793, 3793, 3793, 3793, 3793, 3793, 3799,29840, 3799, 3799, 3799, 3799, 3799, 3799, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246, 29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 1705, 29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734, 29840, 1734, 1734, 1734, 1734, 1734, 1734, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041, 29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 4563,29840, 4563, 4563, 4563, 4563, 4563, 4563, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295, 29840, 295, 295, 295, 295, 295, 295, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 4574,29840, 4574, 4574, 4574, 4574, 4574, 4574, 514,29840, 514, 514, 514, 514, 514, 514, 1768, 29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 776, 29840, 776, 776, 776, 776, 776, 776, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 3991,29840,29840, 3991, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 4751,29840, 4751, 4751, 4751, 4751, 4751, 4751, 4755,29840, 4755, 4755, 4755, 4755, 4755, 4755, 4760,29840, 4760, 4760, 4760, 4760, 4760, 4760, 4763, 29840, 4763, 4763, 4763, 4763, 4763, 4763, 4773,29840, 4773, 4773, 4773, 4773, 4773, 4773, 4778,29840, 4778, 4778, 4778, 4778, 4778, 4778, 4783,29840, 4783, 4783, 4783, 4783, 4783, 4783, 4787,29840, 4787, 4787, 4787, 4787, 4787, 4787, 4791, 29840, 4791, 4791, 4791, 4791, 4791, 4791, 4793,29840, 4793, 4793, 4793, 4793, 4793, 4793, 4798,29840, 4798, 4798, 4798, 4798, 4798, 4798, 4802,29840, 4802, 4802, 4802, 4802, 4802, 4802, 4806,29840, 4806, 4806, 4806, 4806, 4806, 4806, 150, 29840, 150, 150, 150, 150, 150, 150, 571,29840, 571, 571, 571, 571, 571, 571, 168,29840, 168, 168, 168, 168, 168, 168, 897, 897, 897, 897, 897, 897, 897, 897, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 1995,29840, 1995, 1995, 1995, 1995, 1995, 1995, 4934,29840, 4934, 4934, 4934, 4934, 4934, 4934, 4941,29840, 4941, 4941, 4941, 4941, 4941, 4941, 4944, 29840, 4944, 4944, 4944, 4944, 4944, 4944, 2477,29840, 2477, 2477, 2477, 2477, 2477, 2477, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 175,29840, 175, 175, 175, 175, 175, 175, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3038,29840, 3038, 3038, 3038, 3038, 3038, 3038, 2519, 29840, 2519, 2519, 2519, 2519, 2519, 2519, 2537,29840, 2537, 2537, 2537, 2537, 2537, 2537, 2028,29840, 2028, 2028, 2028, 2028, 2028, 2028, 2036,29840, 2036, 2036, 2036, 2036, 2036, 2036, 4992,29840, 4992, 4992, 4992, 4992, 4992, 4992, 5004, 29840, 5004, 5004, 5004, 5004, 5004, 5004, 3061,29840, 3061, 3061, 3061, 3061, 3061, 3061, 2539,29840, 2539, 2539, 2539, 2539, 2539, 2539, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 2541,29840, 2541, 2541, 2541, 2541, 2541, 2541, 571, 29840, 571, 571, 571, 571, 571, 571, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 4338,29840, 4338, 4338, 4338, 4338, 4338, 4338, 3681,29840, 3681, 3681, 3681, 3681, 3681, 3681, 2558, 29840, 2558, 2558, 2558, 2558, 2558, 2558, 3699,29840, 3699, 3699, 3699, 3699, 3699, 3699, 2559,29840, 2559, 2559, 2559, 2559, 2559, 2559, 3090,29840, 3090, 3090, 3090, 3090, 3090, 3090, 4361,29840, 4361, 4361, 4361, 4361, 4361, 4361, 3701, 29840, 3701, 3701, 3701, 3701, 3701, 3701, 3703,29840, 3703, 3703, 3703, 3703, 3703, 3703, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 2561,29840, 2561, 2561, 2561, 2561, 2561, 2561, 2565,29840, 2565, 2565, 2565, 2565, 2565, 2565, 139, 29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 4404,29840, 4404, 4404, 4404, 4404, 4404, 4404, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3123,29840, 3123, 3123, 3123, 3123, 3123, 3123, 959, 29840, 959, 959, 959, 959, 959, 959, 3161,29840, 3161, 3161, 3161, 3161, 3161, 3161, 3799,29840, 3799, 3799, 3799, 3799, 3799, 3799, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 253,29840, 253, 253, 253, 253, 253, 253, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 1705, 29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 274,29840, 274, 274, 274, 274, 274, 274, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283, 29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741, 29840, 1741, 1741, 1741, 1741, 1741, 1741, 5225, 5225, 5225, 5225, 5225, 5225, 5225, 5225, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 4563, 29840, 4563, 4563, 4563, 4563, 4563, 4563, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 510,29840, 510, 510, 510, 510, 510, 510, 512, 29840, 512, 512, 512, 512, 512, 512, 4574,29840, 4574, 4574, 4574, 4574, 4574, 4574, 514,29840, 514, 514, 514, 514, 514, 514, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 150,29840, 150, 150, 150, 150, 150, 150, 5426,29840, 5426, 5426, 5426, 5426, 5426, 5426, 5431,29840, 5431, 5431, 5431, 5431, 5431, 5431, 5433, 29840, 5433, 5433, 5433, 5433, 5433, 5433, 5439,29840, 5439, 5439, 5439, 5439, 5439, 5439, 5443,29840, 5443, 5443, 5443, 5443, 5443, 5443, 5446,29840, 5446, 5446, 5446, 5446, 5446, 5446, 5449,29840, 5449, 5449, 5449, 5449, 5449, 5449, 5452, 29840, 5452, 5452, 5452, 5452, 5452, 5452, 5458,29840, 5458, 5458, 5458, 5458, 5458, 5458, 5463,29840, 5463, 5463, 5463, 5463, 5463, 5463, 5468,29840, 5468, 5468, 5468, 5468, 5468, 5468, 5473,29840, 5473, 5473, 5473, 5473, 5473, 5473, 5477, 29840, 5477, 5477, 5477, 5477, 5477, 5477, 5480,29840, 5480, 5480, 5480, 5480, 5480, 5480, 5483,29840, 5483, 5483, 5483, 5483, 5483, 5483, 5489,29840, 5489, 5489, 5489, 5489, 5489, 5489, 5494,29840, 5494, 5494, 5494, 5494, 5494, 5494, 5498, 29840, 5498, 5498, 5498, 5498, 5498, 5498, 5501,29840, 5501, 5501, 5501, 5501, 5501, 5501, 897, 897, 897, 897, 897, 897, 897, 897, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 5612, 29840, 5612, 5612, 5612, 5612, 5612, 5612, 5614,29840, 5614, 5614, 5614, 5614, 5614, 5614, 5622,29840, 5622, 5622, 5622, 5622, 5622, 5622, 5626,29840, 5626, 5626, 5626, 5626, 5626, 5626, 5629,29840, 5629, 5629, 5629, 5629, 5629, 5629, 5632, 29840, 5632, 5632, 5632, 5632, 5632, 5632, 5635,29840, 5635, 5635, 5635, 5635, 5635, 5635, 2477,29840, 2477, 2477, 2477, 2477, 2477, 2477, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 338, 29840, 338, 338, 338, 338, 338, 338, 175,29840, 175, 175, 175, 175, 175, 175, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5647, 5647, 5647,29840, 5647, 5647, 5647, 5647, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 2519,29840, 2519, 2519, 2519, 2519, 2519, 2519, 2537,29840, 2537, 2537, 2537, 2537, 2537, 2537, 5682, 29840, 5682, 5682, 5682, 5682, 5682, 5682, 5689,29840, 5689, 5689, 5689, 5689, 5689, 5689, 5692,29840, 5692, 5692, 5692, 5692, 5692, 5692, 3061,29840, 3061, 3061, 3061, 3061, 3061, 3061, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 5704, 29840, 5704, 5704, 5704, 5704, 5704, 5704, 571,29840, 571, 571, 571, 571, 571, 571, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 4338,29840, 4338, 4338, 4338, 4338, 4338, 4338, 3681, 29840, 3681, 3681, 3681, 3681, 3681, 3681, 2558,29840, 2558, 2558, 2558, 2558, 2558, 2558, 3699,29840, 3699, 3699, 3699, 3699, 3699, 3699, 2559,29840, 2559, 2559, 2559, 2559, 2559, 2559, 3090,29840, 3090, 3090, 3090, 3090, 3090, 3090, 5736, 29840, 5736, 5736, 5736, 5736, 5736, 5736, 4361,29840, 4361, 4361, 4361, 4361, 4361, 4361, 3701,29840, 3701, 3701, 3701, 3701, 3701, 3701, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 3082,29840, 3082, 3082, 3082, 3082, 3082, 3082, 3703, 29840, 3703, 3703, 3703, 3703, 3703, 3703, 2565,29840, 2565, 2565, 2565, 2565, 2565, 2565, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 4404,29840, 4404, 4404, 4404, 4404, 4404, 4404, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 959, 29840, 959, 959, 959, 959, 959, 959, 3161,29840, 3161, 3161, 3161, 3161, 3161, 3161, 3793,29840, 3793, 3793, 3793, 3793, 3793, 3793, 3799,29840, 3799, 3799, 3799, 3799, 3799, 3799, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246, 29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283, 29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741, 29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 4563, 29840, 4563, 4563, 4563, 4563, 4563, 4563, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514, 29840, 514, 514, 514, 514, 514, 514, 4574,29840, 4574, 4574, 4574, 4574, 4574, 4574, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 2222, 29840, 2222, 2222, 2222, 2222, 2222, 2222, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 139,29840, 139, 139, 139, 139, 139, 139, 6127,29840, 6127, 6127, 6127, 6127, 6127, 6127, 6132,29840, 6132, 6132, 6132, 6132, 6132, 6132, 6135,29840, 6135, 6135, 6135, 6135, 6135, 6135, 6138, 29840, 6138, 6138, 6138, 6138, 6138, 6138, 6143,29840, 6143, 6143, 6143, 6143, 6143, 6143, 6148,29840, 6148, 6148, 6148, 6148, 6148, 6148, 6152,29840, 6152, 6152, 6152, 6152, 6152, 6152, 6155,29840, 6155, 6155, 6155, 6155, 6155, 6155, 6158, 29840, 6158, 6158, 6158, 6158, 6158, 6158, 6162,29840, 6162, 6162, 6162, 6162, 6162, 6162, 6165,29840, 6165, 6165, 6165, 6165, 6165, 6165, 6170,29840, 6170, 6170, 6170, 6170, 6170, 6170, 6175,29840, 6175, 6175, 6175, 6175, 6175, 6175, 150, 29840, 150, 150, 150, 150, 150, 150, 571,29840, 571, 571, 571, 571, 571, 571, 168,29840, 168, 168, 168, 168, 168, 168, 897, 897, 897, 897, 897, 897, 897, 897, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 6289,29840, 6289, 6289, 6289, 6289, 6289, 6289, 6292,29840, 6292, 6292, 6292, 6292, 6292, 6292, 6295,29840, 6295, 6295, 6295, 6295, 6295, 6295, 6303,29840, 6303, 6303, 6303, 6303, 6303, 6303, 6308, 29840, 6308, 6308, 6308, 6308, 6308, 6308, 6312,29840, 6312, 6312, 6312, 6312, 6312, 6312, 6315,29840, 6315, 6315, 6315, 6315, 6315, 6315, 6318,29840, 6318, 6318, 6318, 6318, 6318, 6318, 6322,29840, 6322, 6322, 6322, 6322, 6322, 6322, 6325, 29840, 6325, 6325, 6325, 6325, 6325, 6325, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 338,29840, 338, 338, 338, 338, 338, 338, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5647, 5647, 5647, 5647, 5647, 5647, 5647, 5647, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2012, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 6362, 29840, 6362, 6362, 6362, 6362, 6362, 6362, 6364,29840, 6364, 6364, 6364, 6364, 6364, 6364, 6372,29840, 6372, 6372, 6372, 6372, 6372, 6372, 6376,29840, 6376, 6376, 6376, 6376, 6376, 6376, 6379,29840, 6379, 6379, 6379, 6379, 6379, 6379, 6382, 29840, 6382, 6382, 6382, 6382, 6382, 6382, 6385,29840, 6385, 6385, 6385, 6385, 6385, 6385, 3061,29840, 3061, 3061, 3061, 3061, 3061, 3061, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 2519,29840, 2519, 2519, 2519, 2519, 2519, 2519, 5704, 29840, 5704, 5704, 5704, 5704, 5704, 5704, 571,29840, 571, 571, 571, 571, 571, 571, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 4338,29840, 4338, 4338, 4338, 4338, 4338, 4338, 3681, 29840, 3681, 3681, 3681, 3681, 3681, 3681, 3699,29840, 3699, 3699, 3699, 3699, 3699, 3699, 3082,29840, 3082, 3082, 3082, 3082, 3082, 3082, 3090,29840, 3090, 3090, 3090, 3090, 3090, 3090, 6425,29840, 6425, 6425, 6425, 6425, 6425, 6425, 6437, 29840, 6437, 6437, 6437, 6437, 6437, 6437, 4361,29840, 4361, 4361, 4361, 4361, 4361, 4361, 3701,29840, 3701, 3701, 3701, 3701, 3701, 3701, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 3703,29840, 3703, 3703, 3703, 3703, 3703, 3703, 1250, 29840, 1250, 1250, 1250, 1250, 1250, 1250, 4404,29840, 4404, 4404, 4404, 4404, 4404, 4404, 338,29840, 338, 338, 338, 338, 338, 338, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 959,29840, 959, 959, 959, 959, 959, 959, 3161, 29840, 3161, 3161, 3161, 3161, 3161, 3161, 3799,29840, 3799, 3799, 3799, 3799, 3799, 3799, 3793,29840, 3793, 3793, 3793, 3793, 3793, 3793, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 253,29840, 253, 253, 253, 253, 253, 253, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 274,29840, 274, 274, 274, 274, 274, 274, 1729, 29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494, 29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291, 29840, 291, 291, 291, 291, 291, 291, 4563,29840, 4563, 4563, 4563, 4563, 4563, 4563, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 510,29840, 510, 510, 510, 510, 510, 510, 512, 29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 4574,29840, 4574, 4574, 4574, 4574, 4574, 4574, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 3991, 29840,29840, 3991, 783, 783, 783, 783, 783, 783, 783, 783, 150,29840, 150, 150, 150, 150, 150, 150, 139, 29840, 139, 139, 139, 139, 139, 139, 6799,29840, 6799, 6799, 6799, 6799, 6799, 6799, 6804,29840, 6804, 6804, 6804, 6804, 6804, 6804, 6808,29840, 6808, 6808, 6808, 6808, 6808, 6808, 6812,29840, 6812, 6812, 6812, 6812, 6812, 6812, 6815, 29840, 6815, 6815, 6815, 6815, 6815, 6815, 6822,29840, 6822, 6822, 6822, 6822, 6822, 6822, 6827,29840, 6827, 6827, 6827, 6827, 6827, 6827, 6832,29840, 6832, 6832, 6832, 6832, 6832, 6832, 6836,29840, 6836, 6836, 6836, 6836, 6836, 6836, 6840, 29840, 6840, 6840, 6840, 6840, 6840, 6840, 6842,29840, 6842, 6842, 6842, 6842, 6842, 6842, 6847,29840, 6847, 6847, 6847, 6847, 6847, 6847, 6851,29840, 6851, 6851, 6851, 6851, 6851, 6851, 6855,29840, 6855, 6855, 6855, 6855, 6855, 6855, 139, 29840, 139, 139, 139, 139, 139, 139, 6799,29840, 6799, 6799, 6799, 6799, 6799, 6799, 897, 897, 897, 897, 897, 897, 897, 897, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 6962, 29840, 6962, 6962, 6962, 6962, 6962, 6962, 6966,29840, 6966, 6966, 6966, 6966, 6966, 6966, 6971,29840, 6971, 6971, 6971, 6971, 6971, 6971, 6974,29840, 6974, 6974, 6974, 6974, 6974, 6974, 6984,29840, 6984, 6984, 6984, 6984, 6984, 6984, 6989, 29840, 6989, 6989, 6989, 6989, 6989, 6989, 6994,29840, 6994, 6994, 6994, 6994, 6994, 6994, 6998,29840, 6998, 6998, 6998, 6998, 6998, 6998, 7002,29840, 7002, 7002, 7002, 7002, 7002, 7002, 7004,29840, 7004, 7004, 7004, 7004, 7004, 7004, 7009, 29840, 7009, 7009, 7009, 7009, 7009, 7009, 7013,29840, 7013, 7013, 7013, 7013, 7013, 7013, 7017,29840, 7017, 7017, 7017, 7017, 7017, 7017, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 1977,29840, 1977, 1977, 1977, 1977, 1977, 1977, 139, 29840, 139, 139, 139, 139, 139, 139, 571,29840, 571, 571, 571, 571, 571, 571, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 7050,29840, 7050, 7050, 7050, 7050, 7050, 7050, 7053,29840, 7053, 7053, 7053, 7053, 7053, 7053, 7056,29840, 7056, 7056, 7056, 7056, 7056, 7056, 7064,29840, 7064, 7064, 7064, 7064, 7064, 7064, 7069, 29840, 7069, 7069, 7069, 7069, 7069, 7069, 7073,29840, 7073, 7073, 7073, 7073, 7073, 7073, 7076,29840, 7076, 7076, 7076, 7076, 7076, 7076, 7079,29840, 7079, 7079, 7079, 7079, 7079, 7079, 7083,29840, 7083, 7083, 7083, 7083, 7083, 7083, 7086, 29840, 7086, 7086, 7086, 7086, 7086, 7086, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 2519,29840, 2519, 2519, 2519, 2519, 2519, 2519, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 139,29840, 139, 139, 139, 139, 139, 139, 571, 29840, 571, 571, 571, 571, 571, 571, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 3681,29840, 3681, 3681, 3681, 3681, 3681, 3681, 3699,29840, 3699, 3699, 3699, 3699, 3699, 3699, 7132, 29840, 7132, 7132, 7132, 7132, 7132, 7132, 7139,29840, 7139, 7139, 7139, 7139, 7139, 7139, 7142,29840, 7142, 7142, 7142, 7142, 7142, 7142, 4361,29840, 4361, 4361, 4361, 4361, 4361, 4361, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 1250, 29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167, 338,29840, 338, 338, 338, 338, 338, 338, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 151,29840, 151, 151, 151, 151, 151, 151, 959, 29840, 959, 959, 959, 959, 959, 959, 3799,29840, 3799, 3799, 3799, 3799, 3799, 3799, 3793,29840, 3793, 3793, 3793, 3793, 3793, 3793, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705, 29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734, 29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295, 29840, 295, 295, 295, 295, 295, 295, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776, 29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 7475,29840, 7475, 7475, 7475, 7475, 7475, 7475, 7480,29840, 7480, 7480, 7480, 7480, 7480, 7480, 7485,29840, 7485, 7485, 7485, 7485, 7485, 7485, 7490, 29840, 7490, 7490, 7490, 7490, 7490, 7490, 7494,29840, 7494, 7494, 7494, 7494, 7494, 7494, 7497,29840, 7497, 7497, 7497, 7497, 7497, 7497, 7500,29840, 7500, 7500, 7500, 7500, 7500, 7500, 7503,29840, 7503, 7503, 7503, 7503, 7503, 7503, 7506, 29840, 7506, 7506, 7506, 7506, 7506, 7506, 7511,29840, 7511, 7511, 7511, 7511, 7511, 7511, 7516,29840, 7516, 7516, 7516, 7516, 7516, 7516, 7521,29840, 7521, 7521, 7521, 7521, 7521, 7521, 7525,29840, 7525, 7525, 7525, 7525, 7525, 7525, 7528, 29840, 7528, 7528, 7528, 7528, 7528, 7528, 7531,29840, 7531, 7531, 7531, 7531, 7531, 7531, 7537,29840, 7537, 7537, 7537, 7537, 7537, 7537, 7542,29840, 7542, 7542, 7542, 7542, 7542, 7542, 7546,29840, 7546, 7546, 7546, 7546, 7546, 7546, 7549, 29840, 7549, 7549, 7549, 7549, 7549, 7549, 139,29840, 139, 139, 139, 139, 139, 139, 150,29840, 150, 150, 150, 150, 150, 150, 571,29840, 571, 571, 571, 571, 571, 571, 168,29840, 168, 168, 168, 168, 168, 168, 897, 897, 897, 897, 897, 897, 897, 897, 7620,29840, 7620, 7620, 7620, 7620, 7620, 7620, 7638,29840, 7638, 7638, 7638, 7638, 7638, 7638, 7642,29840, 7642, 7642, 7642, 7642, 7642, 7642, 7646,29840, 7646, 7646, 7646, 7646, 7646, 7646, 7623, 29840, 7623, 7623, 7623, 7623, 7623, 7623, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 7661,29840, 7661, 7661, 7661, 7661, 7661, 7661, 7666,29840, 7666, 7666, 7666, 7666, 7666, 7666, 7668, 29840, 7668, 7668, 7668, 7668, 7668, 7668, 7674,29840, 7674, 7674, 7674, 7674, 7674, 7674, 7678,29840, 7678, 7678, 7678, 7678, 7678, 7678, 7681,29840, 7681, 7681, 7681, 7681, 7681, 7681, 7684,29840, 7684, 7684, 7684, 7684, 7684, 7684, 7687, 29840, 7687, 7687, 7687, 7687, 7687, 7687, 7693,29840, 7693, 7693, 7693, 7693, 7693, 7693, 7698,29840, 7698, 7698, 7698, 7698, 7698, 7698, 7703,29840, 7703, 7703, 7703, 7703, 7703, 7703, 7708,29840, 7708, 7708, 7708, 7708, 7708, 7708, 7712, 29840, 7712, 7712, 7712, 7712, 7712, 7712, 7715,29840, 7715, 7715, 7715, 7715, 7715, 7715, 7718,29840, 7718, 7718, 7718, 7718, 7718, 7718, 7724,29840, 7724, 7724, 7724, 7724, 7724, 7724, 7729,29840, 7729, 7729, 7729, 7729, 7729, 7729, 7733, 29840, 7733, 7733, 7733, 7733, 7733, 7733, 7736,29840, 7736, 7736, 7736, 7736, 7736, 7736, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 139,29840, 139, 139, 139, 139, 139, 139, 571,29840, 571, 571, 571, 571, 571, 571, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 7771,29840, 7771, 7771, 7771, 7771, 7771, 7771, 7775, 29840, 7775, 7775, 7775, 7775, 7775, 7775, 7780,29840, 7780, 7780, 7780, 7780, 7780, 7780, 7783,29840, 7783, 7783, 7783, 7783, 7783, 7783, 7793,29840, 7793, 7793, 7793, 7793, 7793, 7793, 7798,29840, 7798, 7798, 7798, 7798, 7798, 7798, 7803, 29840, 7803, 7803, 7803, 7803, 7803, 7803, 7807,29840, 7807, 7807, 7807, 7807, 7807, 7807, 7811,29840, 7811, 7811, 7811, 7811, 7811, 7811, 7813,29840, 7813, 7813, 7813, 7813, 7813, 7813, 7818,29840, 7818, 7818, 7818, 7818, 7818, 7818, 7822, 29840, 7822, 7822, 7822, 7822, 7822, 7822, 7826,29840, 7826, 7826, 7826, 7826, 7826, 7826, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 2519,29840, 2519, 2519, 2519, 2519, 2519, 2519, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 139, 29840, 139, 139, 139, 139, 139, 139, 571,29840, 571, 571, 571, 571, 571, 571, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 7869,29840, 7869, 7869, 7869, 7869, 7869, 7869, 7871, 29840, 7871, 7871, 7871, 7871, 7871, 7871, 7879,29840, 7879, 7879, 7879, 7879, 7879, 7879, 7883,29840, 7883, 7883, 7883, 7883, 7883, 7883, 7886,29840, 7886, 7886, 7886, 7886, 7886, 7886, 7889,29840, 7889, 7889, 7889, 7889, 7889, 7889, 7892, 29840, 7892, 7892, 7892, 7892, 7892, 7892, 4361,29840, 4361, 4361, 4361, 4361, 4361, 4361, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 3681,29840, 3681, 3681, 3681, 3681, 3681, 3681, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167, 29840, 7167, 7167, 7167, 7167, 7167, 7167, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 315,29840, 315, 315, 315, 315, 315, 315, 959,29840, 959, 959, 959, 959, 959, 959, 3161,29840, 3161, 3161, 3161, 3161, 3161, 3161, 3793, 29840, 3793, 3793, 3793, 3793, 3793, 3793, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 253, 29840, 253, 253, 253, 253, 253, 253, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 274,29840, 274, 274, 274, 274, 274, 274, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283, 29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741, 29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505, 29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514, 29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 2222, 29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 150,29840, 150, 150, 150, 150, 150, 150, 7475,29840, 7475, 7475, 7475, 7475, 7475, 7475, 8230,29840, 8230, 8230, 8230, 8230, 8230, 8230, 8235,29840, 8235, 8235, 8235, 8235, 8235, 8235, 8240, 29840, 8240, 8240, 8240, 8240, 8240, 8240, 8245,29840, 8245, 8245, 8245, 8245, 8245, 8245, 8249,29840, 8249, 8249, 8249, 8249, 8249, 8249, 8252,29840, 8252, 8252, 8252, 8252, 8252, 8252, 8255,29840, 8255, 8255, 8255, 8255, 8255, 8255, 8259, 29840, 8259, 8259, 8259, 8259, 8259, 8259, 8262,29840, 8262, 8262, 8262, 8262, 8262, 8262, 8265,29840, 8265, 8265, 8265, 8265, 8265, 8265, 8270,29840, 8270, 8270, 8270, 8270, 8270, 8270, 8283,29840, 8283, 8283, 8283, 8283, 8283, 8283, 150, 29840, 150, 150, 150, 150, 150, 150, 571,29840, 571, 571, 571, 571, 571, 571, 168,29840, 168, 168, 168, 168, 168, 168, 897, 897, 897, 897, 897, 897, 897, 897, 8331,29840, 8331, 8331, 8331, 8331, 8331, 8331, 8350, 29840, 8350, 8350, 8350, 8350, 8350, 8350, 8355,29840, 8355, 8355, 8355, 8355, 8355, 8355, 8359,29840, 8359, 8359, 8359, 8359, 8359, 8359, 8366,29840, 8366, 8366, 8366, 8366, 8366, 8366, 8370,29840, 8370, 8370, 8370, 8370, 8370, 8370, 8372, 29840, 8372, 8372, 8372, 8372, 8372, 8372, 7638,29840, 7638, 7638, 7638, 7638, 7638, 7638, 8396,29840, 8396, 8396, 8396, 8396, 8396, 8396, 8400,29840, 8400, 8400, 8400, 8400, 8400, 8400, 8398,29840, 8398, 8398, 8398, 8398, 8398, 8398, 8408, 29840, 8408, 8408, 8408, 8408, 8408, 8408, 8411,29840, 8411, 8411, 8411, 8411, 8411, 8411, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 8427,29840, 8427, 8427, 8427, 8427, 8427, 8427, 8432, 29840, 8432, 8432, 8432, 8432, 8432, 8432, 8435,29840, 8435, 8435, 8435, 8435, 8435, 8435, 8438,29840, 8438, 8438, 8438, 8438, 8438, 8438, 8443,29840, 8443, 8443, 8443, 8443, 8443, 8443, 8448,29840, 8448, 8448, 8448, 8448, 8448, 8448, 8452, 29840, 8452, 8452, 8452, 8452, 8452, 8452, 8455,29840, 8455, 8455, 8455, 8455, 8455, 8455, 8458,29840, 8458, 8458, 8458, 8458, 8458, 8458, 8462,29840, 8462, 8462, 8462, 8462, 8462, 8462, 8465,29840, 8465, 8465, 8465, 8465, 8465, 8465, 8470, 29840, 8470, 8470, 8470, 8470, 8470, 8470, 8475,29840, 8475, 8475, 8475, 8475, 8475, 8475, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 139,29840, 139, 139, 139, 139, 139, 139, 571,29840, 571, 571, 571, 571, 571, 571, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 8503,29840, 8503, 8503, 8503, 8503, 8503, 8503, 8508, 29840, 8508, 8508, 8508, 8508, 8508, 8508, 8510,29840, 8510, 8510, 8510, 8510, 8510, 8510, 8516,29840, 8516, 8516, 8516, 8516, 8516, 8516, 8520,29840, 8520, 8520, 8520, 8520, 8520, 8520, 8523,29840, 8523, 8523, 8523, 8523, 8523, 8523, 8526, 29840, 8526, 8526, 8526, 8526, 8526, 8526, 8529,29840, 8529, 8529, 8529, 8529, 8529, 8529, 8535,29840, 8535, 8535, 8535, 8535, 8535, 8535, 8540,29840, 8540, 8540, 8540, 8540, 8540, 8540, 8545,29840, 8545, 8545, 8545, 8545, 8545, 8545, 8550, 29840, 8550, 8550, 8550, 8550, 8550, 8550, 8554,29840, 8554, 8554, 8554, 8554, 8554, 8554, 8557,29840, 8557, 8557, 8557, 8557, 8557, 8557, 8560,29840, 8560, 8560, 8560, 8560, 8560, 8560, 8566,29840, 8566, 8566, 8566, 8566, 8566, 8566, 8571, 29840, 8571, 8571, 8571, 8571, 8571, 8571, 8575,29840, 8575, 8575, 8575, 8575, 8575, 8575, 8578,29840, 8578, 8578, 8578, 8578, 8578, 8578, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 139, 29840, 139, 139, 139, 139, 139, 139, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 8620,29840, 8620, 8620, 8620, 8620, 8620, 8620, 8623,29840, 8623, 8623, 8623, 8623, 8623, 8623, 8626, 29840, 8626, 8626, 8626, 8626, 8626, 8626, 8634,29840, 8634, 8634, 8634, 8634, 8634, 8634, 8639,29840, 8639, 8639, 8639, 8639, 8639, 8639, 8643,29840, 8643, 8643, 8643, 8643, 8643, 8643, 8646,29840, 8646, 8646, 8646, 8646, 8646, 8646, 8649, 29840, 8649, 8649, 8649, 8649, 8649, 8649, 8653,29840, 8653, 8653, 8653, 8653, 8653, 8653, 8656,29840, 8656, 8656, 8656, 8656, 8656, 8656, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 3681,29840, 3681, 3681, 3681, 3681, 3681, 3681, 1250, 29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167, 571,29840, 571, 571, 571, 571, 571, 571, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 151,29840, 151, 151, 151, 151, 151, 151, 315, 29840, 315, 315, 315, 315, 315, 315, 959,29840, 959, 959, 959, 959, 959, 959, 3793,29840, 3793, 3793, 3793, 3793, 3793, 3793, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705, 29840, 1705, 1705, 1705, 1705, 1705, 1705, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729, 29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494, 29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291, 29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103, 510,29840, 510, 510, 510, 510, 510, 510, 512, 29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776, 29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 150,29840, 150, 150, 150, 150, 150, 150, 8981,29840, 8981, 8981, 8981, 8981, 8981, 8981, 8986,29840, 8986, 8986, 8986, 8986, 8986, 8986, 8991, 29840, 8991, 8991, 8991, 8991, 8991, 8991, 8996,29840, 8996, 8996, 8996, 8996, 8996, 8996, 9001,29840, 9001, 9001, 9001, 9001, 9001, 9001, 9005,29840, 9005, 9005, 9005, 9005, 9005, 9005, 9009,29840, 9009, 9009, 9009, 9009, 9009, 9009, 9011, 29840, 9011, 9011, 9011, 9011, 9011, 9011, 9016,29840, 9016, 9016, 9016, 9016, 9016, 9016, 9020,29840, 9020, 9020, 9020, 9020, 9020, 9020, 9024,29840, 9024, 9024, 9024, 9024, 9024, 9024, 8283,29840, 8283, 8283, 8283, 8283, 8283, 8283, 9045, 29840, 9045, 9045, 9045, 9045, 9045, 9045, 8331,29840, 8331, 8331, 8331, 8331, 8331, 8331, 9064,29840, 9064, 9064, 9064, 9064, 9064, 9064, 897, 897, 897, 897, 897, 897, 897, 897, 9082,29840, 9082, 9082, 9082, 9082, 9082, 9082, 8365, 29840, 8365, 8365, 8365, 8365, 8365, 8365, 9090,29840, 9090, 9090, 9090, 9090, 9090, 9090, 9092,29840, 9092, 9092, 9092, 9092, 9092, 9092, 9114,29840, 9114, 9114, 9114, 9114, 9114, 9114, 9118,29840, 9118, 9118, 9118, 9118, 9118, 9118, 9116, 29840, 9116, 9116, 9116, 9116, 9116, 9116, 9125,29840, 9125, 9125, 9125, 9125, 9125, 9125, 9128,29840, 9128, 9128, 9128, 9128, 9128, 9128, 9127,29840, 9127, 9127, 9127, 9127, 9127, 9127, 8360,29840, 8360, 8360, 8360, 8360, 8360, 8360, 9138, 29840, 9138, 9138, 9138, 9138, 9138, 9138, 9140,29840, 9140, 9140, 9140, 9140, 9140, 9140, 9143,29840, 9143, 9143, 9143, 9143, 9143, 9143, 9146,29840, 9146, 9146, 9146, 9146, 9146, 9146, 9148,29840, 9148, 9148, 9148, 9148, 9148, 9148, 9181, 29840, 9181, 9181, 9181, 9181, 9181, 9181, 7638,29840, 7638, 7638, 7638, 7638, 7638, 7638, 9185,29840, 9185, 9185, 9185, 9185, 9185, 9185, 9187,29840, 9187, 9187, 9187, 9187, 9187, 9187, 9191,29840, 9191, 9191, 9191, 9191, 9191, 9191, 9195, 29840, 9195, 9195, 9195, 9195, 9195, 9195, 9199,29840, 9199, 9199, 9199, 9199, 9199, 9199, 9193,29840, 9193, 9193, 9193, 9193, 9193, 9193, 9203,29840, 9203, 9203, 9203, 9203, 9203, 9203, 9208,29840, 9208, 9208, 9208, 9208, 9208, 9208, 9214, 29840, 9214, 9214, 9214, 9214, 9214, 9214, 9217,29840, 9217, 9217, 9217, 9217, 9217, 9217, 9127,29840, 9127, 9127, 9127, 9127, 9127, 9127, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 9236, 29840, 9236, 9236, 9236, 9236, 9236, 9236, 9241,29840, 9241, 9241, 9241, 9241, 9241, 9241, 9245,29840, 9245, 9245, 9245, 9245, 9245, 9245, 9249,29840, 9249, 9249, 9249, 9249, 9249, 9249, 9252,29840, 9252, 9252, 9252, 9252, 9252, 9252, 9259, 29840, 9259, 9259, 9259, 9259, 9259, 9259, 9264,29840, 9264, 9264, 9264, 9264, 9264, 9264, 9269,29840, 9269, 9269, 9269, 9269, 9269, 9269, 9273,29840, 9273, 9273, 9273, 9273, 9273, 9273, 9277,29840, 9277, 9277, 9277, 9277, 9277, 9277, 9279, 29840, 9279, 9279, 9279, 9279, 9279, 9279, 9284,29840, 9284, 9284, 9284, 9284, 9284, 9284, 9288,29840, 9288, 9288, 9288, 9288, 9288, 9288, 9292,29840, 9292, 9292, 9292, 9292, 9292, 9292, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 9236, 29840, 9236, 9236, 9236, 9236, 9236, 9236, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 139,29840, 139, 139, 139, 139, 139, 139, 571,29840, 571, 571, 571, 571, 571, 571, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 9318,29840, 9318, 9318, 9318, 9318, 9318, 9318, 9323,29840, 9323, 9323, 9323, 9323, 9323, 9323, 9326, 29840, 9326, 9326, 9326, 9326, 9326, 9326, 9329,29840, 9329, 9329, 9329, 9329, 9329, 9329, 9334,29840, 9334, 9334, 9334, 9334, 9334, 9334, 9339,29840, 9339, 9339, 9339, 9339, 9339, 9339, 9343,29840, 9343, 9343, 9343, 9343, 9343, 9343, 9346, 29840, 9346, 9346, 9346, 9346, 9346, 9346, 9349,29840, 9349, 9349, 9349, 9349, 9349, 9349, 9353,29840, 9353, 9353, 9353, 9353, 9353, 9353, 9356,29840, 9356, 9356, 9356, 9356, 9356, 9356, 9361,29840, 9361, 9361, 9361, 9361, 9361, 9361, 9366, 29840, 9366, 9366, 9366, 9366, 9366, 9366, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 139,29840, 139, 139, 139, 139, 139, 139, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 9407,29840, 9407, 9407, 9407, 9407, 9407, 9407, 9411,29840, 9411, 9411, 9411, 9411, 9411, 9411, 9416,29840, 9416, 9416, 9416, 9416, 9416, 9416, 9419, 29840, 9419, 9419, 9419, 9419, 9419, 9419, 9429,29840, 9429, 9429, 9429, 9429, 9429, 9429, 9434,29840, 9434, 9434, 9434, 9434, 9434, 9434, 9439,29840, 9439, 9439, 9439, 9439, 9439, 9439, 9443,29840, 9443, 9443, 9443, 9443, 9443, 9443, 9447, 29840, 9447, 9447, 9447, 9447, 9447, 9447, 9449,29840, 9449, 9449, 9449, 9449, 9449, 9449, 9454,29840, 9454, 9454, 9454, 9454, 9454, 9454, 9458,29840, 9458, 9458, 9458, 9458, 9458, 9458, 9462,29840, 9462, 9462, 9462, 9462, 9462, 9462, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 3681,29840, 3681, 3681, 3681, 3681, 3681, 3681, 139,29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167, 571, 29840, 571, 571, 571, 571, 571, 571, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 9499,29840, 9499, 9499, 9499, 9499, 9499, 9499, 315,29840, 315, 315, 315, 315, 315, 315, 959,29840, 959, 959, 959, 959, 959, 959, 3793, 29840, 3793, 3793, 3793, 3793, 3793, 3793, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 253, 29840, 253, 253, 253, 253, 253, 253, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 9653, 29840, 9653, 9653, 9653, 9653, 9653, 9653, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 274, 29840, 274, 274, 274, 274, 274, 274, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738, 29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103, 510, 29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703, 1768, 29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 9791,29840, 9791, 9791, 9791, 9791, 9791, 9791, 9796, 29840, 9796, 9796, 9796, 9796, 9796, 9796, 9801,29840, 9801, 9801, 9801, 9801, 9801, 9801, 9806,29840, 9806, 9806, 9806, 9806, 9806, 9806, 9811,29840, 9811, 9811, 9811, 9811, 9811, 9811, 9816,29840, 9816, 9816, 9816, 9816, 9816, 9816, 9820, 29840, 9820, 9820, 9820, 9820, 9820, 9820, 9823,29840, 9823, 9823, 9823, 9823, 9823, 9823, 9826,29840, 9826, 9826, 9826, 9826, 9826, 9826, 9832,29840, 9832, 9832, 9832, 9832, 9832, 9832, 9837,29840, 9837, 9837, 9837, 9837, 9837, 9837, 9841, 29840, 9841, 9841, 9841, 9841, 9841, 9841, 9844,29840, 9844, 9844, 9844, 9844, 9844, 9844, 139,29840, 139, 139, 139, 139, 139, 139, 8283,29840, 8283, 8283, 8283, 8283, 8283, 8283, 9855,29840, 9855, 9855, 9855, 9855, 9855, 9855, 9858, 29840, 9858, 9858, 9858, 9858, 9858, 9858, 9868,29840, 9868, 9868, 9868, 9868, 9868, 9868, 9872,29840, 9872, 9872, 9872, 9872, 9872, 9872, 9870,29840, 9870, 9870, 9870, 9870, 9870, 9870, 571,29840, 571, 571, 571, 571, 571, 571, 9884, 29840, 9884, 9884, 9884, 9884, 9884, 9884, 9886,29840, 9886, 9886, 9886, 9886, 9886, 9886, 9895,29840, 9895, 9895, 9895, 9895, 9895, 9895, 9899,29840, 9899, 9899, 9899, 9899, 9899, 9899, 9897,29840, 9897, 9897, 9897, 9897, 9897, 9897, 168, 29840, 168, 168, 168, 168, 168, 168, 841,29840, 841, 841, 841, 841, 841, 841, 150,29840, 150, 150, 150, 150, 150, 150, 897, 897, 897, 897, 897, 897, 897, 897, 9920,29840, 9920, 9920, 9920, 9920, 9920, 9920, 9084, 29840, 9084, 9084, 9084, 9084, 9084, 9084, 9138,29840, 9138, 9138, 9138, 9138, 9138, 9138, 9927,29840, 9927, 9927, 9927, 9927, 9927, 9927, 9930,29840, 9930, 9930, 9930, 9930, 9930, 9930, 9932,29840, 9932, 9932, 9932, 9932, 9932, 9932, 9966, 29840, 9966, 9966, 9966, 9966, 9966, 9966, 9968,29840, 9968, 9968, 9968, 9968, 9968, 9968, 9972,29840, 9972, 9972, 9972, 9972, 9972, 9972, 9976,29840, 9976, 9976, 9976, 9976, 9976, 9976, 9974,29840, 9974, 9974, 9974, 9974, 9974, 9974, 9981, 29840, 9981, 9981, 9981, 9981, 9981, 9981, 9987,29840, 9987, 9987, 9987, 9987, 9987, 9987, 9989,29840, 9989, 9989, 9989, 9989, 9989, 9989, 9992,29840, 9992, 9992, 9992, 9992, 9992, 9992, 9995,29840, 9995, 9995, 9995, 9995, 9995, 9995, 8360, 29840, 8360, 8360, 8360, 8360, 8360, 8360,10006,29840,10006, 10006,10006,10006,10006,10006,10011,29840,10011,10011,10011, 10011,10011,10011,10016,29840,10016,10016,10016,10016,10016, 10016,10019,29840,10019,10019,10019,10019,10019,10019,10025, 29840,10025,10025,10025,10025,10025,10025,10027,29840,10027, 10027,10027,10027,10027,10027, 9181,29840, 9181, 9181, 9181, 9181, 9181, 9181, 7638,29840, 7638, 7638, 7638, 7638, 7638, 7638,10070,29840,10070,10070,10070,10070,10070,10070,10072, 29840,10072,10072,10072,10072,10072,10072,10078,29840,10078, 10078,10078,10078,10078,10078,10080,29840,10080,10080,10080, 10080,10080,10080,10084,29840,10084,10084,10084,10084,10084, 10084,10088,29840,10088,10088,10088,10088,10088,10088,10086, 29840,10086,10086,10086,10086,10086,10086,10093,29840,10093, 10093,10093,10093,10093,10093,10098,29840,10098,10098,10098, 10098,10098,10098,10102,29840,10102,10102,10102,10102,10102, 10102,10100,29840,10100,10100,10100,10100,10100,10100,10108, 29840,10108,10108,10108,10108,10108,10108,10110,29840,10110, 10110,10110,10110,10110,10110, 139,29840, 139, 139, 139, 139, 139, 139,10117,29840,10117,10117,10117,10117,10117, 10117,10121,29840,10121,10121,10121,10121,10121,10121,10124, 29840,10124,10124,10124,10124,10124,10124,10127,29840,10127, 10127,10127,10127,10127,10127,10129,29840,10129,10129,10129, 10129,10129,10129, 9989,29840, 9989, 9989, 9989, 9989, 9989, 9989,10025,29840,10025,10025,10025,10025,10025,10025, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,10146,29840,10146,10146,10146, 10146,10146,10146,10151,29840,10151,10151,10151,10151,10151, 10151,10156,29840,10156,10156,10156,10156,10156,10156,10161, 29840,10161,10161,10161,10161,10161,10161,10165,29840,10165, 10165,10165,10165,10165,10165,10168,29840,10168,10168,10168, 10168,10168,10168,10171,29840,10171,10171,10171,10171,10171, 10171,10174,29840,10174,10174,10174,10174,10174,10174,10177, 29840,10177,10177,10177,10177,10177,10177,10182,29840,10182, 10182,10182,10182,10182,10182,10187,29840,10187,10187,10187, 10187,10187,10187,10192,29840,10192,10192,10192,10192,10192, 10192,10196,29840,10196,10196,10196,10196,10196,10196,10199, 29840,10199,10199,10199,10199,10199,10199,10202,29840,10202, 10202,10202,10202,10202,10202,10208,29840,10208,10208,10208, 10208,10208,10208,10213,29840,10213,10213,10213,10213,10213, 10213,10217,29840,10217,10217,10217,10217,10217,10217,10220, 29840,10220,10220,10220,10220,10220,10220, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 139,29840, 139, 139, 139, 139, 139, 139, 571,29840, 571, 571, 571, 571, 571, 571, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,10247,29840,10247,10247,10247,10247,10247,10247,10252, 29840,10252,10252,10252,10252,10252,10252,10256,29840,10256, 10256,10256,10256,10256,10256,10260,29840,10260,10260,10260, 10260,10260,10260,10263,29840,10263,10263,10263,10263,10263, 10263,10270,29840,10270,10270,10270,10270,10270,10270,10275, 29840,10275,10275,10275,10275,10275,10275,10280,29840,10280, 10280,10280,10280,10280,10280,10284,29840,10284,10284,10284, 10284,10284,10284,10288,29840,10288,10288,10288,10288,10288, 10288,10290,29840,10290,10290,10290,10290,10290,10290,10295, 29840,10295,10295,10295,10295,10295,10295,10299,29840,10299, 10299,10299,10299,10299,10299,10303,29840,10303,10303,10303, 10303,10303,10303, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,10247,29840,10247,10247,10247,10247,10247,10247, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 139,29840, 139, 139, 139, 139, 139, 139,10315,10315,10315,10315,10315,10315,10315, 10315, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 9385, 9385, 9385, 9385, 9385, 9385, 9385, 9385, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020,10332,29840,10332,10332,10332,10332,10332, 10332,10337,29840,10337,10337,10337,10337,10337,10337,10339, 29840,10339,10339,10339,10339,10339,10339,10345,29840,10345, 10345,10345,10345,10345,10345,10349,29840,10349,10349,10349, 10349,10349,10349,10352,29840,10352,10352,10352,10352,10352, 10352,10355,29840,10355,10355,10355,10355,10355,10355,10358, 29840,10358,10358,10358,10358,10358,10358,10364,29840,10364, 10364,10364,10364,10364,10364,10369,29840,10369,10369,10369, 10369,10369,10369,10374,29840,10374,10374,10374,10374,10374, 10374,10379,29840,10379,10379,10379,10379,10379,10379,10383, 29840,10383,10383,10383,10383,10383,10383,10386,29840,10386, 10386,10386,10386,10386,10386,10389,29840,10389,10389,10389, 10389,10389,10389,10395,29840,10395,10395,10395,10395,10395, 10395,10400,29840,10400,10400,10400,10400,10400,10400,10404, 29840,10404,10404,10404,10404,10404,10404,10407,29840,10407, 10407,10407,10407,10407,10407, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 139,29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167, 29840, 7167, 7167, 7167, 7167, 7167, 7167, 571,29840, 571, 571, 571, 571, 571, 571, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,10443,29840,10443,10443,10443,10443,10443, 10443, 151,29840, 151, 151, 151, 151, 151, 151, 315, 29840, 315, 315, 315, 315, 315, 315, 959,29840, 959, 959, 959, 959, 959, 959, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611,10611,10611, 10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705, 29840, 1705, 1705, 1705, 1705, 1705, 1705, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738, 29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103, 510, 29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703, 1768, 29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291,10694,29840,10694,10694,10694,10694,10694, 10694, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136, 29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727, 10727,10727,10727,10727,10727, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767,10767,10767,10767,10767, 10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776, 29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 150,29840, 150, 150, 150, 150, 150, 150, 9791,29840, 9791, 9791, 9791, 9791, 9791, 9791,10788,29840,10788,10788,10788,10788,10788,10788,10793, 29840,10793,10793,10793,10793,10793,10793,10798,29840,10798, 10798,10798,10798,10798,10798,10805,29840,10805,10805,10805, 10805,10805,10805, 8283,29840, 8283, 8283, 8283, 8283, 8283, 8283,10814,29840,10814,10814,10814,10814,10814,10814,10816, 29840,10816,10816,10816,10816,10816,10816,10833,29840,10833, 10833,10833,10833,10833,10833,10835,29840,10835,10835,10835, 10835,10835,10835,10839,29840,10839,10839,10839,10839,10839, 10839,10843,29840,10843,10843,10843,10843,10843,10843,10841, 29840,10841,10841,10841,10841,10841,10841,10848,29840,10848, 10848,10848,10848,10848,10848, 8365,29840, 8365, 8365, 8365, 8365, 8365, 8365,10855,29840,10855,10855,10855,10855,10855, 10855,10857,29840,10857,10857,10857,10857,10857,10857,10867, 29840,10867,10867,10867,10867,10867,10867,10869,29840,10869, 10869,10869,10869,10869,10869,10873,29840,10873,10873,10873, 10873,10873,10873,10877,29840,10877,10877,10877,10877,10877, 10877,10875,29840,10875,10875,10875,10875,10875,10875,10882, 29840,10882,10882,10882,10882,10882,10882, 150,29840, 150, 150, 150, 150, 150, 150, 897, 897, 897, 897, 897, 897, 897, 897,10899,29840,10899,10899,10899,10899,10899, 10899, 9084,29840, 9084, 9084, 9084, 9084, 9084, 9084,10006, 29840,10006,10006,10006,10006,10006,10006,10907,29840,10907, 10907,10907,10907,10907,10907,10910,29840,10910,10910,10910, 10910,10910,10910,10914,29840,10914,10914,10914,10914,10914, 10914,10916,29840,10916,10916,10916,10916,10916,10916,10956, 29840,10956,10956,10956,10956,10956,10956,10958,29840,10958, 10958,10958,10958,10958,10958,10964,29840,10964,10964,10964, 10964,10964,10964,10966,29840,10966,10966,10966,10966,10966, 10966,10970,29840,10970,10970,10970,10970,10970,10970,10974, 29840,10974,10974,10974,10974,10974,10974,10972,29840,10972, 10972,10972,10972,10972,10972,10980,29840,10980,10980,10980, 10980,10980,10980,10984,29840,10984,10984,10984,10984,10984, 10984,10982,29840,10982,10982,10982,10982,10982,10982,10991, 29840,10991,10991,10991,10991,10991,10991,10993,29840,10993, 10993,10993,10993,10993,10993,10998,29840,10998,10998,10998, 10998,10998,10998,11003,29840,11003,11003,11003,11003,11003, 11003,11006,29840,11006,11006,11006,11006,11006,11006, 139, 29840, 139, 139, 139, 139, 139, 139, 8360,29840, 8360, 8360, 8360, 8360, 8360, 8360,11018,29840,11018,11018,11018, 11018,11018,11018,11020,29840,11020,11020,11020,11020,11020, 11020,11026,29840,11026,11026,11026,11026,11026,11026,11028, 29840,11028,11028,11028,11028,11028,11028,11033,29840,11033, 11033,11033,11033,11033,11033,11037,29840,11037,11037,11037, 11037,11037,11037,11040,29840,11040,11040,11040,11040,11040, 11040,11043,29840,11043,11043,11043,11043,11043,11043,11046, 29840,11046,11046,11046,11046,11046,11046,11049,29840,11049, 11049,11049,11049,11049,11049,11051,29840,11051,11051,11051, 11051,11051,11051, 9181,29840, 9181, 9181, 9181, 9181, 9181, 9181, 7638,29840, 7638, 7638, 7638, 7638, 7638, 7638, 8366, 29840, 8366, 8366, 8366, 8366, 8366, 8366,11116,29840,11116, 11116,11116,11116,11116,11116,11118,29840,11118,11118,11118, 11118,11118,11118,11125,29840,11125,11125,11125,11125,11125, 11125,11127,29840,11127,11127,11127,11127,11127,11127,11133, 29840,11133,11133,11133,11133,11133,11133,11135,29840,11135, 11135,11135,11135,11135,11135,11139,29840,11139,11139,11139, 11139,11139,11139,11144,29840,11144,11144,11144,11144,11144, 11144,11141,29840,11141,11141,11141,11141,11141,11141,11149, 29840,11149,11149,11149,11149,11149,11149,11155,29840,11155, 11155,11155,11155,11155,11155,11157,29840,11157,11157,11157, 11157,11157,11157,11161,29840,11161,11161,11161,11161,11161, 11161,11166,29840,11166,11166,11166,11166,11166,11166,11163, 29840,11163,11163,11163,11163,11163,11163,11172,29840,11172, 11172,11172,11172,11172,11172,11175,29840,11175,11175,11175, 11175,11175,11175,11178,29840,11178,11178,11178,11178,11178, 11178, 139,29840, 139, 139, 139, 139, 139, 139,11183, 29840,11183,11183,11183,11183,11183,11183,11188,29840,11188, 11188,11188,11188,11188,11188,11192,29840,11192,11192,11192, 11192,11192,11192,11195,29840,11195,11195,11195,11195,11195, 11195,11198,29840,11198,11198,11198,11198,11198,11198,11201, 29840,11201,11201,11201,11201,11201,11201,11204,29840,11204, 11204,11204,11204,11204,11204,10993,29840,10993,10993,10993, 10993,10993,10993,11049,29840,11049,11049,11049,11049,11049, 11049, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225,10146,29840,10146, 10146,10146,10146,10146,10146,11221,29840,11221,11221,11221, 11221,11221,11221,11226,29840,11226,11226,11226,11226,11226, 11226,11231,29840,11231,11231,11231,11231,11231,11231,11236, 29840,11236,11236,11236,11236,11236,11236,11240,29840,11240, 11240,11240,11240,11240,11240,11243,29840,11243,11243,11243, 11243,11243,11243,11246,29840,11246,11246,11246,11246,11246, 11246,11250,29840,11250,11250,11250,11250,11250,11250,11253, 29840,11253,11253,11253,11253,11253,11253,11256,29840,11256, 11256,11256,11256,11256,11256,11261,29840,11261,11261,11261, 11261,11261,11261, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 139,29840, 139, 139, 139, 139, 139, 139, 571, 29840, 571, 571, 571, 571, 571, 571, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,11291, 29840,11291,11291,11291,11291,11291,11291,11296,29840,11296, 11296,11296,11296,11296,11296,11301,29840,11301,11301,11301, 11301,11301,11301,11306,29840,11306,11306,11306,11306,11306, 11306,11310,29840,11310,11310,11310,11310,11310,11310,11313, 29840,11313,11313,11313,11313,11313,11313,11316,29840,11316, 11316,11316,11316,11316,11316,11319,29840,11319,11319,11319, 11319,11319,11319,11322,29840,11322,11322,11322,11322,11322, 11322,11327,29840,11327,11327,11327,11327,11327,11327,11332, 29840,11332,11332,11332,11332,11332,11332,11337,29840,11337, 11337,11337,11337,11337,11337,11341,29840,11341,11341,11341, 11341,11341,11341,11344,29840,11344,11344,11344,11344,11344, 11344,11347,29840,11347,11347,11347,11347,11347,11347,11353, 29840,11353,11353,11353,11353,11353,11353,11358,29840,11358, 11358,11358,11358,11358,11358,11362,29840,11362,11362,11362, 11362,11362,11362,11365,29840,11365,11365,11365,11365,11365, 11365, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704,10315,10315,10315,10315,10315, 10315,10315,10315,10316,10316,10316,29840,10316,10316,10316, 10316, 139,29840, 139, 139, 139, 139, 139, 139, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,11394,29840,11394,11394,11394,11394,11394, 11394,11399,29840,11399,11399,11399,11399,11399,11399,11402, 29840,11402,11402,11402,11402,11402,11402,11405,29840,11405, 11405,11405,11405,11405,11405,11410,29840,11410,11410,11410, 11410,11410,11410,11415,29840,11415,11415,11415,11415,11415, 11415,11419,29840,11419,11419,11419,11419,11419,11419,11422, 29840,11422,11422,11422,11422,11422,11422,11425,29840,11425, 11425,11425,11425,11425,11425,11429,29840,11429,11429,11429, 11429,11429,11429,11432,29840,11432,11432,11432,11432,11432, 11432,11437,29840,11437,11437,11437,11437,11437,11437,11442, 29840,11442,11442,11442,11442,11442,11442, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 139,29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167, 571, 29840, 571, 571, 571, 571, 571, 571, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,11484,29840,11484,11484,11484, 11484,11484,11484, 315,29840, 315, 315, 315, 315, 315, 315, 959,29840, 959, 959, 959, 959, 959, 959, 1671, 29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265, 29840, 265, 265, 265, 265, 265, 265,10611,29840,10611, 10611,10611,10611,10611,10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 283, 29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741, 29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505, 29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514, 29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291,10694,29840,10694, 10694,10694,10694,10694,10694, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727,10727,10727,10727,10727,10727, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767, 10767,10767,10767,10767,10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783,11833, 29840,11833,11833,11833,11833,11833,11833,11838,29840,11838, 11838,11838,11838,11838,11838,11846,29840,11846,11846,11846, 11846,11846,11846, 8283,29840, 8283, 8283, 8283, 8283, 8283, 8283,11848,29840,11848,11848,11848,11848,11848,11848,11850, 29840,11850,11850,11850,11850,11850,11850,11853,29840,11853, 11853,11853,11853,11853,11853,11866,29840,11866,11866,11866, 11866,11866,11866,11868,29840,11868,11868,11868,11868,11868, 11868,11874,29840,11874,11874,11874,11874,11874,11874,11876, 29840,11876,11876,11876,11876,11876,11876,11880,29840,11880, 11880,11880,11880,11880,11880,11884,29840,11884,11884,11884, 11884,11884,11884,11882,29840,11882,11882,11882,11882,11882, 11882,11890,29840,11890,11890,11890,11890,11890,11890,11894, 29840,11894,11894,11894,11894,11894,11894,11892,29840,11892, 11892,11892,11892,11892,11892, 139,29840, 139, 139, 139, 139, 139, 139,11902,29840,11902,11902,11902,11902,11902, 11902,11904,29840,11904,11904,11904,11904,11904,11904,11912, 29840,11912,11912,11912,11912,11912,11912,11914,29840,11914, 11914,11914,11914,11914,11914,11920,29840,11920,11920,11920, 11920,11920,11920,11922,29840,11922,11922,11922,11922,11922, 11922,11926,29840,11926,11926,11926,11926,11926,11926,11930, 29840,11930,11930,11930,11930,11930,11930,11928,29840,11928, 11928,11928,11928,11928,11928,11936,29840,11936,11936,11936, 11936,11936,11936,11940,29840,11940,11940,11940,11940,11940, 11940,11938,29840,11938,11938,11938,11938,11938,11938, 841, 29840, 841, 841, 841, 841, 841, 841, 150,29840, 150, 150, 150, 150, 150, 150, 897, 897, 897, 897, 897, 897, 897, 897,11962,29840,11962,11962,11962,11962,11962, 11962, 9084,29840, 9084, 9084, 9084, 9084, 9084, 9084,11018, 29840,11018,11018,11018,11018,11018,11018,11970,29840,11970, 11970,11970,11970,11970,11970,11974,29840,11974,11974,11974, 11974,11974,11974,11977,29840,11977,11977,11977,11977,11977, 11977,11980,29840,11980,11980,11980,11980,11980,11980,11983, 29840,11983,11983,11983,11983,11983,11983,11985,29840,11985, 11985,11985,11985,11985,11985, 8365,29840, 8365, 8365, 8365, 8365, 8365, 8365,12039,29840,12039,12039,12039,12039,12039, 12039,12041,29840,12041,12041,12041,12041,12041,12041,12048, 29840,12048,12048,12048,12048,12048,12048,12050,29840,12050, 12050,12050,12050,12050,12050,12056,29840,12056,12056,12056, 12056,12056,12056,12058,29840,12058,12058,12058,12058,12058, 12058,12062,29840,12062,12062,12062,12062,12062,12062,12067, 29840,12067,12067,12067,12067,12067,12067,12064,29840,12064, 12064,12064,12064,12064,12064,12073,29840,12073,12073,12073, 12073,12073,12073,12075,29840,12075,12075,12075,12075,12075, 12075,12079,29840,12079,12079,12079,12079,12079,12079,12084, 29840,12084,12084,12084,12084,12084,12084,12081,29840,12081, 12081,12081,12081,12081,12081,11983,29840,11983,11983,11983, 11983,11983,11983,12091,29840,12091,12091,12091,12091,12091, 12091,12093,29840,12093,12093,12093,12093,12093,12093,12100, 29840,12100,12100,12100,12100,12100,12100,12102,29840,12102, 12102,12102,12102,12102,12102,12108,29840,12108,12108,12108, 12108,12108,12108,12112,29840,12112,12112,12112,12112,12112, 12112,12115,29840,12115,12115,12115,12115,12115,12115,12118, 29840,12118,12118,12118,12118,12118,12118,12121,29840,12121, 12121,12121,12121,12121,12121, 139,29840, 139, 139, 139, 139, 139, 139, 8360,29840, 8360, 8360, 8360, 8360, 8360, 8360,12126,29840,12126,12126,12126,12126,12126,12126,12129, 29840,12129,12129,12129,12129,12129,12129,12132,29840,12132, 12132,12132,12132,12132,12132,12139,29840,12139,12139,12139, 12139,12139,12139,12142,29840,12142,12142,12142,12142,12142, 12142,12147,29840,12147,12147,12147,12147,12147,12147,12152, 29840,12152,12152,12152,12152,12152,12152,12156,29840,12156, 12156,12156,12156,12156,12156,12159,29840,12159,12159,12159, 12159,12159,12159,12162,29840,12162,12162,12162,12162,12162, 12162,12166,29840,12166,12166,12166,12166,12166,12166,12169, 29840,12169,12169,12169,12169,12169,12169,12172,29840,12172, 12172,12172,12172,12172,12172,12174,29840,12174,12174,12174, 12174,12174,12174, 9181,29840, 9181, 9181, 9181, 9181, 9181, 9181, 9140,29840, 9140, 9140, 9140, 9140, 9140, 9140,12243, 29840,12243,12243,12243,12243,12243,12243,12245,29840,12245, 12245,12245,12245,12245,12245,12253,29840,12253,12253,12253, 12253,12253,12253,12255,29840,12255,12255,12255,12255,12255, 12255,12262,29840,12262,12262,12262,12262,12262,12262,12264, 29840,12264,12264,12264,12264,12264,12264,12270,29840,12270, 12270,12270,12270,12270,12270,12272,29840,12272,12272,12272, 12272,12272,12272,12276,29840,12276,12276,12276,12276,12276, 12276,12280,29840,12280,12280,12280,12280,12280,12280,12279, 29840,12279,12279,12279,12279,12279,12279,12288,29840,12288, 12288,12288,12288,12288,12288,12295,29840,12295,12295,12295, 12295,12295,12295,12297,29840,12297,12297,12297,12297,12297, 12297,12303,29840,12303,12303,12303,12303,12303,12303,12305, 29840,12305,12305,12305,12305,12305,12305,12309,29840,12309, 12309,12309,12309,12309,12309,12313,29840,12313,12313,12313, 12313,12313,12313,12312,29840,12312,12312,12312,12312,12312, 12312,12245,29840,12245,12245,12245,12245,12245,12245,12321, 29840,12321,12321,12321,12321,12321,12321,12325,29840,12325, 12325,12325,12325,12325,12325,12330,29840,12330,12330,12330, 12330,12330,12330,12333,29840,12333,12333,12333,12333,12333, 12333,12340,29840,12340,12340,12340,12340,12340,12340,12345, 29840,12345,12345,12345,12345,12345,12345,12350,29840,12350, 12350,12350,12350,12350,12350,12354,29840,12354,12354,12354, 12354,12354,12354,12358,29840,12358,12358,12358,12358,12358, 12358,12360,29840,12360,12360,12360,12360,12360,12360,12364, 29840,12364,12364,12364,12364,12364,12364,12368,29840,12368, 12368,12368,12368,12368,12368,12372,29840,12372,12372,12372, 12372,12372,12372,12172,29840,12172,12172,12172,12172,12172, 12172, 139,29840, 139, 139, 139, 139, 139, 139, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,12389,29840,12389,12389,12389, 12389,12389,12389,12394,29840,12394,12394,12394,12394,12394, 12394,12399,29840,12399,12399,12399,12399,12399,12399,12404, 29840,12404,12404,12404,12404,12404,12404,12409,29840,12409, 12409,12409,12409,12409,12409,12413,29840,12413,12413,12413, 12413,12413,12413,12417,29840,12417,12417,12417,12417,12417, 12417,12419,29840,12419,12419,12419,12419,12419,12419,12424, 29840,12424,12424,12424,12424,12424,12424,12428,29840,12428, 12428,12428,12428,12428,12428,12432,29840,12432,12432,12432, 12432,12432,12432, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,12437,29840,12437,12437,12437,12437,12437,12437, 139, 29840, 139, 139, 139, 139, 139, 139, 571,29840, 571, 571, 571, 571, 571, 571, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597,11291,29840,11291, 11291,11291,11291,11291,11291,12458,29840,12458,12458,12458, 12458,12458,12458,12463,29840,12463,12463,12463,12463,12463, 12463,12468,29840,12468,12468,12468,12468,12468,12468,12473, 29840,12473,12473,12473,12473,12473,12473,12477,29840,12477, 12477,12477,12477,12477,12477,12480,29840,12480,12480,12480, 12480,12480,12480,12483,29840,12483,12483,12483,12483,12483, 12483,12487,29840,12487,12487,12487,12487,12487,12487,12490, 29840,12490,12490,12490,12490,12490,12490,12493,29840,12493, 12493,12493,12493,12493,12493,12498,29840,12498,12498,12498, 12498,12498,12498, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 139, 29840, 139, 139, 139, 139, 139, 139,10315,10315,10315, 10315,10315,10315,10315,10315, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,12531, 29840,12531,12531,12531,12531,12531,12531,12536,29840,12536, 12536,12536,12536,12536,12536,12540,29840,12540,12540,12540, 12540,12540,12540,12544,29840,12544,12544,12544,12544,12544, 12544,12547,29840,12547,12547,12547,12547,12547,12547,12554, 29840,12554,12554,12554,12554,12554,12554,12559,29840,12559, 12559,12559,12559,12559,12559,12564,29840,12564,12564,12564, 12564,12564,12564,12568,29840,12568,12568,12568,12568,12568, 12568,12572,29840,12572,12572,12572,12572,12572,12572,12574, 29840,12574,12574,12574,12574,12574,12574,12579,29840,12579, 12579,12579,12579,12579,12579,12583,29840,12583,12583,12583, 12583,12583,12583,12587,29840,12587,12587,12587,12587,12587, 12587, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,12531, 29840,12531,12531,12531,12531,12531,12531, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 139,29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167, 571, 29840, 571, 571, 571, 571, 571, 571, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,12624,29840,12624,12624,12624, 12624,12624,12624, 315,29840, 315, 315, 315, 315, 315, 315, 959,29840, 959, 959, 959, 959, 959, 959,12792, 29840,12792,12792,12792,12792,12792,12792, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260, 29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611, 10611,10611,10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 9653, 29840, 9653, 9653, 9653, 9653, 9653, 9653, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729, 29840, 1729, 1729, 1729, 1729, 1729, 1729, 283,29840, 283, 283, 283, 283, 283, 283, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494, 29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291, 29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 295,29840, 295, 295, 295, 295, 295, 295, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843,12843, 510, 29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865, 12865,12865,12865,12865,12865,12865,12865, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3291, 3291, 3291, 3291,29840, 3291, 3291, 3291,12894,12894,12894,12894,12894,12894,12894,12894,12911, 12911,12911,12911,12911,12911,12911,12911,10694,29840,10694, 10694,10694,10694,10694,10694, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727,10727,10727,10727,10727,10727, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767, 10767,10767,10767,10767,10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783,13027, 29840,13027,13027,13027,13027,13027,13027,11838,29840,11838, 11838,11838,11838,11838,11838, 1873,29840, 1873, 1873, 1873, 1873, 1873, 1873,11846,29840,11846,11846,11846,11846,11846, 11846,13041,29840,13041,13041,13041,13041,13041,13041,13043, 29840,13043,13043,13043,13043,13043,13043,11853,29840,11853, 11853,11853,11853,11853,11853,13054,29840,13054,13054,13054, 13054,13054,13054,13056,29840,13056,13056,13056,13056,13056, 13056,13063,29840,13063,13063,13063,13063,13063,13063,13065, 29840,13065,13065,13065,13065,13065,13065,13071,29840,13071, 13071,13071,13071,13071,13071,13073,29840,13073,13073,13073, 13073,13073,13073,13077,29840,13077,13077,13077,13077,13077, 13077,13082,29840,13082,13082,13082,13082,13082,13082,13079, 29840,13079,13079,13079,13079,13079,13079,13088,29840,13088, 13088,13088,13088,13088,13088,13090,29840,13090,13090,13090, 13090,13090,13090,13094,29840,13094,13094,13094,13094,13094, 13094,13099,29840,13099,13099,13099,13099,13099,13099,13096, 29840,13096,13096,13096,13096,13096,13096, 139,29840, 139, 139, 139, 139, 139, 139,13041,29840,13041,13041,13041, 13041,13041,13041,13107,29840,13107,13107,13107,13107,13107, 13107,13109,29840,13109,13109,13109,13109,13109,13109, 8365, 29840, 8365, 8365, 8365, 8365, 8365, 8365,13117,29840,13117, 13117,13117,13117,13117,13117,13119,29840,13119,13119,13119, 13119,13119,13119,13126,29840,13126,13126,13126,13126,13126, 13126,13128,29840,13128,13128,13128,13128,13128,13128,13134, 29840,13134,13134,13134,13134,13134,13134,13136,29840,13136, 13136,13136,13136,13136,13136,13140,29840,13140,13140,13140, 13140,13140,13140,13145,29840,13145,13145,13145,13145,13145, 13145,13142,29840,13142,13142,13142,13142,13142,13142,13151, 29840,13151,13151,13151,13151,13151,13151,13153,29840,13153, 13153,13153,13153,13153,13153,13157,29840,13157,13157,13157, 13157,13157,13157,13162,29840,13162,13162,13162,13162,13162, 13162,13159,29840,13159,13159,13159,13159,13159,13159,13107, 29840,13107,13107,13107,13107,13107,13107, 139,29840, 139, 139, 139, 139, 139, 139, 150,29840, 150, 150, 150, 150, 150, 150, 897, 897, 897, 897, 897, 897, 897, 897,13175,29840,13175,13175,13175,13175,13175,13175,13183, 29840,13183,13183,13183,13183,13183,13183, 9084,29840, 9084, 9084, 9084, 9084, 9084, 9084,12126,29840,12126,12126,12126, 12126,12126,12126,13189,29840,13189,13189,13189,13189,13189, 13189,13194,29840,13194,13194,13194,13194,13194,13194,13198, 29840,13198,13198,13198,13198,13198,13198,13201,29840,13201, 13201,13201,13201,13201,13201,13204,29840,13204,13204,13204, 13204,13204,13204,13207,29840,13207,13207,13207,13207,13207, 13207,13210,29840,13210,13210,13210,13210,13210,13210,13212, 29840,13212,13212,13212,13212,13212,13212, 9138,29840, 9138, 9138, 9138, 9138, 9138, 9138,13268,29840,13268,13268,13268, 13268,13268,13268,13270,29840,13270,13270,13270,13270,13270, 13270,13278,29840,13278,13278,13278,13278,13278,13278,13280, 29840,13280,13280,13280,13280,13280,13280,13287,29840,13287, 13287,13287,13287,13287,13287,13289,29840,13289,13289,13289, 13289,13289,13289,13295,29840,13295,13295,13295,13295,13295, 13295,13297,29840,13297,13297,13297,13297,13297,13297,13301, 29840,13301,13301,13301,13301,13301,13301,13305,29840,13305, 13305,13305,13305,13305,13305,13304,29840,13304,13304,13304, 13304,13304,13304,13314,29840,13314,13314,13314,13314,13314, 13314,13316,29840,13316,13316,13316,13316,13316,13316,13322, 29840,13322,13322,13322,13322,13322,13322,13324,29840,13324, 13324,13324,13324,13324,13324,13328,29840,13328,13328,13328, 13328,13328,13328,13332,29840,13332,13332,13332,13332,13332, 13332,13331,29840,13331,13331,13331,13331,13331,13331,13270, 29840,13270,13270,13270,13270,13270,13270,13210,29840,13210, 13210,13210,13210,13210,13210,13341,29840,13341,13341,13341, 13341,13341,13341,13343,29840,13343,13343,13343,13343,13343, 13343,13351,29840,13351,13351,13351,13351,13351,13351,13354, 29840,13354,13354,13354,13354,13354,13354,13357,29840,13357, 13357,13357,13357,13357,13357,13362,29840,13362,13362,13362, 13362,13362,13362,13367,29840,13367,13367,13367,13367,13367, 13367,13371,29840,13371,13371,13371,13371,13371,13371,13374, 29840,13374,13374,13374,13374,13374,13374,13377,29840,13377, 13377,13377,13377,13377,13377,13381,29840,13381,13381,13381, 13381,13381,13381,13384,29840,13384,13384,13384,13384,13384, 13384, 8360,29840, 8360, 8360, 8360, 8360, 8360, 8360,13387, 29840,13387,13387,13387,13387,13387,13387,13391,29840,13391, 13391,13391,13391,13391,13391,13396,29840,13396,13396,13396, 13396,13396,13396,13399,29840,13399,13399,13399,13399,13399, 13399, 139,29840, 139, 139, 139, 139, 139, 139,13408, 29840,13408,13408,13408,13408,13408,13408,12142,29840,12142, 12142,12142,12142,12142,12142,13415,29840,13415,13415,13415, 13415,13415,13415,13420,29840,13420,13420,13420,13420,13420, 13420,13425,29840,13425,13425,13425,13425,13425,13425,13429, 29840,13429,13429,13429,13429,13429,13429,13433,29840,13433, 13433,13433,13433,13433,13433,13435,29840,13435,13435,13435, 13435,13435,13435,13440,29840,13440,13440,13440,13440,13440, 13440,13444,29840,13444,13444,13444,13444,13444,13444,13448, 29840,13448,13448,13448,13448,13448,13448,13450,29840,13450, 13450,13450,13450,13450,13450,13452,29840,13452,13452,13452, 13452,13452,13452, 8360,29840, 8360, 8360, 8360, 8360, 8360, 8360, 139,29840, 139, 139, 139, 139, 139, 139,12229, 29840,12229,12229,12229,12229,12229,12229,12233,29840,12233, 12233,12233,12233,12233,12233, 9181,29840, 9181, 9181, 9181, 9181, 9181, 9181,10011,29840,10011,10011,10011,10011,10011, 10011,13530,29840,13530,13530,13530,13530,13530,13530,13532, 29840,13532,13532,13532,13532,13532,13532,13540,29840,13540, 13540,13540,13540,13540,13540,13548,29840,13548,13548,13548, 13548,13548,13548,13553,29840,13553,13553,13553,13553,13553, 13553,13555,29840,13555,13555,13555,13555,13555,13555,13561, 29840,13561,13561,13561,13561,13561,13561,13565,29840,13565, 13565,13565,13565,13565,13565,13568,29840,13568,13568,13568, 13568,13568,13568,13571,29840,13571,13571,13571,13571,13571, 13571,13573,29840,13573,13573,13573,13573,13573,13573,13576, 29840,13576,13576,13576,13576,13576,13576,13581,29840,13581, 13581,13581,13581,13581,13581,13586,29840,13586,13586,13586, 13586,13586,13586,13591,29840,13591,13591,13591,13591,13591, 13591,13595,29840,13595,13595,13595,13595,13595,13595,13598, 29840,13598,13598,13598,13598,13598,13598,13601,29840,13601, 13601,13601,13601,13601,13601,13606,29840,13606,13606,13606, 13606,13606,13606,13611,29840,13611,13611,13611,13611,13611, 13611,13615,29840,13615,13615,13615,13615,13615,13615,13618, 29840,13618,13618,13618,13618,13618,13618,13450,29840,13450, 13450,13450,13450,13450,13450, 139,29840, 139, 139, 139, 139, 139, 139, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,13635, 29840,13635,13635,13635,13635,13635,13635,13640,29840,13640, 13640,13640,13640,13640,13640,13645,29840,13645,13645,13645, 13645,13645,13645,13650,29840,13650,13650,13650,13650,13650, 13650,13655,29840,13655,13655,13655,13655,13655,13655,13660, 29840,13660,13660,13660,13660,13660,13660,13664,29840,13664, 13664,13664,13664,13664,13664,13667,29840,13667,13667,13667, 13667,13667,13667,13670,29840,13670,13670,13670,13670,13670, 13670,13676,29840,13676,13676,13676,13676,13676,13676,13681, 29840,13681,13681,13681,13681,13681,13681,13685,29840,13685, 13685,13685,13685,13685,13685,13688,29840,13688,13688,13688, 13688,13688,13688, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,12437, 29840,12437,12437,12437,12437,12437,12437, 139,29840, 139, 139, 139, 139, 139, 139, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,13715, 29840,13715,13715,13715,13715,13715,13715,13720,29840,13720, 13720,13720,13720,13720,13720,13725,29840,13725,13725,13725, 13725,13725,13725,13730,29840,13730,13730,13730,13730,13730, 13730,13735,29840,13735,13735,13735,13735,13735,13735,13739, 29840,13739,13739,13739,13739,13739,13739,13743,29840,13743, 13743,13743,13743,13743,13743,13745,29840,13745,13745,13745, 13745,13745,13745,13750,29840,13750,13750,13750,13750,13750, 13750,13754,29840,13754,13754,13754,13754,13754,13754,13758, 29840,13758,13758,13758,13758,13758,13758, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,13763,29840,13763,13763,13763, 13763,13763,13763, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 139,29840, 139, 139, 139, 139, 139, 139,10315, 10315,10315,10315,10315,10315,10315,10315, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 9384, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,13788,29840,13788,13788,13788,13788,13788,13788,13793, 29840,13793,13793,13793,13793,13793,13793,13798,29840,13798, 13798,13798,13798,13798,13798,13803,29840,13803,13803,13803, 13803,13803,13803,13807,29840,13807,13807,13807,13807,13807, 13807,13810,29840,13810,13810,13810,13810,13810,13810,13813, 29840,13813,13813,13813,13813,13813,13813,13816,29840,13816, 13816,13816,13816,13816,13816,13819,29840,13819,13819,13819, 13819,13819,13819,13824,29840,13824,13824,13824,13824,13824, 13824,13829,29840,13829,13829,13829,13829,13829,13829,13834, 29840,13834,13834,13834,13834,13834,13834,13838,29840,13838, 13838,13838,13838,13838,13838,13841,29840,13841,13841,13841, 13841,13841,13841,13844,29840,13844,13844,13844,13844,13844, 13844,13850,29840,13850,13850,13850,13850,13850,13850,13855, 29840,13855,13855,13855,13855,13855,13855,13859,29840,13859, 13859,13859,13859,13859,13859,13862,29840,13862,13862,13862, 13862,13862,13862, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 139, 29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167, 571,29840, 571, 571, 571, 571, 571, 571, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,13901, 29840,13901,13901,13901,13901,13901,13901, 959,29840, 959, 959, 959, 959, 959, 959,12792,29840,12792,12792,12792, 12792,12792,12792, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611,10611,10611,10611, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017,14091,14091,14091, 14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217, 29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 494,29840, 494, 494, 494, 494, 494, 494, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041, 29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843, 510,29840, 510, 510, 510, 510, 510, 510, 512,29840, 512, 512, 512, 512, 512, 512, 514,29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703, 29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865, 12865,12865,12865,12865,12865, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,14164,14164,14164,14164,14164,14164,14164,14164,12894, 12894,12894,12894,12894,12894,12894,12894,12896,29840,12896, 12896,12896,12896,12896,12896,12911,12911,12911,12911,12911, 12911,12911,12911,12913,29840,12913,12913,12913,12913,12913, 12913,10694,29840,10694,10694,10694,10694,10694,10694,14248, 14248,14248,14248,14248,14248,14248,14248, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727,10727,10727,10727,10727, 10727, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,14315, 14315,14315,14315,14315,14315,14315,14315,14333,14333,14333, 14333,14333,14333,14333,14333,10767,29840,10767,10767,10767, 10767,10767,10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 139,29840, 139, 139, 139, 139, 139, 139,13027,29840,13027,13027,13027,13027,13027, 13027,14378,29840,14378,14378,14378,14378,14378,14378,11838, 29840,11838,11838,11838,11838,11838,11838, 2346,29840, 2346, 2346, 2346, 2346, 2346, 2346,11846,29840,11846,11846,11846, 11846,11846,11846,14387,29840,14387,14387,14387,14387,14387, 14387,14389,29840,14389,14389,14389,14389,14389,14389,11853, 29840,11853,11853,11853,11853,11853,11853,14399,29840,14399, 14399,14399,14399,14399,14399,14401,29840,14401,14401,14401, 14401,14401,14401,14409,29840,14409,14409,14409,14409,14409, 14409,14411,29840,14411,14411,14411,14411,14411,14411,14418, 29840,14418,14418,14418,14418,14418,14418,14420,29840,14420, 14420,14420,14420,14420,14420,14426,29840,14426,14426,14426, 14426,14426,14426,14428,29840,14428,14428,14428,14428,14428, 14428,14432,29840,14432,14432,14432,14432,14432,14432,14436, 29840,14436,14436,14436,14436,14436,14436,14435,29840,14435, 14435,14435,14435,14435,14435,14445,29840,14445,14445,14445, 14445,14445,14445,14447,29840,14447,14447,14447,14447,14447, 14447,14453,29840,14453,14453,14453,14453,14453,14453,14455, 29840,14455,14455,14455,14455,14455,14455,14459,29840,14459, 14459,14459,14459,14459,14459,14463,29840,14463,14463,14463, 14463,14463,14463,14462,29840,14462,14462,14462,14462,14462, 14462,14401,29840,14401,14401,14401,14401,14401,14401, 139, 29840, 139, 139, 139, 139, 139, 139,14387,29840,14387, 14387,14387,14387,14387,14387,14473,29840,14473,14473,14473, 14473,14473,14473,14475,29840,14475,14475,14475,14475,14475, 14475,14483,29840,14483,14483,14483,14483,14483,14483,14485, 29840,14485,14485,14485,14485,14485,14485,14493,29840,14493, 14493,14493,14493,14493,14493,14495,29840,14495,14495,14495, 14495,14495,14495,14502,29840,14502,14502,14502,14502,14502, 14502,14504,29840,14504,14504,14504,14504,14504,14504,14510, 29840,14510,14510,14510,14510,14510,14510,14512,29840,14512, 14512,14512,14512,14512,14512,14516,29840,14516,14516,14516, 14516,14516,14516,14520,29840,14520,14520,14520,14520,14520, 14520,14519,29840,14519,14519,14519,14519,14519,14519,14529, 29840,14529,14529,14529,14529,14529,14529,14531,29840,14531, 14531,14531,14531,14531,14531,14537,29840,14537,14537,14537, 14537,14537,14537,14539,29840,14539,14539,14539,14539,14539, 14539,14543,29840,14543,14543,14543,14543,14543,14543,14547, 29840,14547,14547,14547,14547,14547,14547,14546,29840,14546, 14546,14546,14546,14546,14546,14485,29840,14485,14485,14485, 14485,14485,14485,14473,29840,14473,14473,14473,14473,14473, 14473, 787, 787, 787, 787, 787, 787, 787, 787, 150, 29840, 150, 150, 150, 150, 150, 150, 139,29840, 139, 139, 139, 139, 139, 139, 897, 897, 897, 897, 897, 897, 897, 897,13175,29840,13175,13175,13175,13175,13175, 13175,14569,29840,14569,14569,14569,14569,14569,14569, 9084, 29840, 9084, 9084, 9084, 9084, 9084, 9084,14574,29840,14574, 14574,14574,14574,14574,14574,14579,29840,14579,14579,14579, 14579,14579,14579,14584,29840,14584,14584,14584,14584,14584, 14584,14588,29840,14588,14588,14588,14588,14588,14588,14592, 29840,14592,14592,14592,14592,14592,14592,14594,29840,14594, 14594,14594,14594,14594,14594,14598,29840,14598,14598,14598, 14598,14598,14598,14602,29840,14602,14602,14602,14602,14602, 14602,14604,29840,14604,14604,14604,14604,14604,14604,14606, 29840,14606,14606,14606,14606,14606,14606,10006,29840,10006, 10006,10006,10006,10006,10006,14675,29840,14675,14675,14675, 14675,14675,14675,14677,29840,14677,14677,14677,14677,14677, 14677,14688,29840,14688,14688,14688,14688,14688,14688,14690, 29840,14690,14690,14690,14690,14690,14690,14698,29840,14698, 14698,14698,14698,14698,14698,14702,29840,14702,14702,14702, 14702,14702,14702,14706,29840,14706,14706,14706,14706,14706, 14706,14709,29840,14709,14709,14709,14709,14709,14709,14716, 29840,14716,14716,14716,14716,14716,14716,14721,29840,14721, 14721,14721,14721,14721,14721,14726,29840,14726,14726,14726, 14726,14726,14726,14730,29840,14730,14730,14730,14730,14730, 14730,14734,29840,14734,14734,14734,14734,14734,14734,14736, 29840,14736,14736,14736,14736,14736,14736,14741,29840,14741, 14741,14741,14741,14741,14741,14745,29840,14745,14745,14745, 14745,14745,14745,14749,29840,14749,14749,14749,14749,14749, 14749,14751,29840,14751,14751,14751,14751,14751,14751,14756, 29840,14756,14756,14756,14756,14756,14756,14758,29840,14758, 14758,14758,14758,14758,14758,14764,29840,14764,14764,14764, 14764,14764,14764,14768,29840,14768,14768,14768,14768,14768, 14768,14771,29840,14771,14771,14771,14771,14771,14771,14774, 29840,14774,14774,14774,14774,14774,14774,14777,29840,14777, 14777,14777,14777,14777,14777, 139,29840, 139, 139, 139, 139, 139, 139,14781,29840,14781,14781,14781,14781,14781, 14781,14786,29840,14786,14786,14786,14786,14786,14786,12142, 29840,12142,12142,12142,12142,12142,12142,14790,29840,14790, 14790,14790,14790,14790,14790,14795,29840,14795,14795,14795, 14795,14795,14795,14800,29840,14800,14800,14800,14800,14800, 14800,14805,29840,14805,14805,14805,14805,14805,14805,14809, 29840,14809,14809,14809,14809,14809,14809,14812,29840,14812, 14812,14812,14812,14812,14812,14815,29840,14815,14815,14815, 14815,14815,14815,14821,29840,14821,14821,14821,14821,14821, 14821,14826,29840,14826,14826,14826,14826,14826,14826,14830, 29840,14830,14830,14830,14830,14830,14830,14833,29840,14833, 14833,14833,14833,14833,14833,14836,29840,14836,14836,14836, 14836,14836,14836,14838,29840,14838,14838,14838,14838,14838, 14838, 139,29840, 139, 139, 139, 139, 139, 139,12233, 29840,12233,12233,12233,12233,12233,12233,11026,29840,11026, 11026,11026,11026,11026,11026,14919,29840,14919,14919,14919, 14919,14919,14919,14924,29840,14924,14924,14924,14924,14924, 14924,14927,29840,14927,14927,14927,14927,14927,14927,14930, 29840,14930,14930,14930,14930,14930,14930,14935,29840,14935, 14935,14935,14935,14935,14935,14940,29840,14940,14940,14940, 14940,14940,14940,14944,29840,14944,14944,14944,14944,14944, 14944,14947,29840,14947,14947,14947,14947,14947,14947,14950, 29840,14950,14950,14950,14950,14950,14950,14953,29840,14953, 14953,14953,14953,14953,14953,14956,29840,14956,14956,14956, 14956,14956,14956,14959,29840,14959,14959,14959,14959,14959, 14959,14964,29840,14964,14964,14964,14964,14964,14964,14836, 29840,14836,14836,14836,14836,14836,14836, 139,29840, 139, 139, 139, 139, 139, 139, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,13635,29840,13635,13635,13635,13635,13635,13635,14984, 29840,14984,14984,14984,14984,14984,14984,14989,29840,14989, 14989,14989,14989,14989,14989,14994,29840,14994,14994,14994, 14994,14994,14994,15001,29840,15001,15001,15001,15001,15001, 15001, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,12437, 29840,12437,12437,12437,12437,12437,12437, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,15025,29840,15025,15025,15025,15025,15025,15025,15030, 29840,15030,15030,15030,15030,15030,15030,15035,29840,15035, 15035,15035,15035,15035,15035,15040,29840,15040,15040,15040, 15040,15040,15040,15045,29840,15045,15045,15045,15045,15045, 15045,15050,29840,15050,15050,15050,15050,15050,15050,15054, 29840,15054,15054,15054,15054,15054,15054,15057,29840,15057, 15057,15057,15057,15057,15057,15060,29840,15060,15060,15060, 15060,15060,15060,15066,29840,15066,15066,15066,15066,15066, 15066,15071,29840,15071,15071,15071,15071,15071,15071,15075, 29840,15075,15075,15075,15075,15075,15075,15078,29840,15078, 15078,15078,15078,15078,15078, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,13763,29840,13763,13763,13763,13763,13763,13763, 5704, 29840, 5704, 5704, 5704, 5704, 5704, 5704, 139,29840, 139, 139, 139, 139, 139, 139,10315,10315,10315,10315,10315, 10315,10315,10315,15095,29840,15095,15095,15095,15095,15095, 15095, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555,13788,29840,13788, 13788,13788,13788,13788,13788,15110,29840,15110,15110,15110, 15110,15110,15110,15115,29840,15115,15115,15115,15115,15115, 15115,15120,29840,15120,15120,15120,15120,15120,15120,15125, 29840,15125,15125,15125,15125,15125,15125,15129,29840,15129, 15129,15129,15129,15129,15129,15132,29840,15132,15132,15132, 15132,15132,15132,15135,29840,15135,15135,15135,15135,15135, 15135,15139,29840,15139,15139,15139,15139,15139,15139,15142, 29840,15142,15142,15142,15142,15142,15142,15145,29840,15145, 15145,15145,15145,15145,15145,15150,29840,15150,15150,15150, 15150,15150,15150, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 139,29840, 139, 139, 139, 139, 139, 139, 1250, 29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179,15179,15179, 15179,15179,15179, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,15196,29840,15196,15196,15196,15196,15196,15196, 959, 29840, 959, 959, 959, 959, 959, 959,12792,29840,12792, 12792,12792,12792,12792,12792, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611,10611,10611, 10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705, 29840, 1705, 1705, 1705, 1705, 1705, 1705, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342,15380,15380,15380,15380,15380,15380,15380, 15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017,14091,14091,14091, 14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217, 29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843,12843, 514, 29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865,12865,12865, 12865, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768,14164, 14164,14164,14164,14164,14164,14164,14164,14166,29840,14166, 14166,14166,14166,14166,14166,12894,12894,12894,12894,12894, 12894,12894,12894,12896,29840,12896,12896,12896,12896,12896, 12896,12911,12911,12911,12911,12911,12911,12911,12911,12913, 29840,12913,12913,12913,12913,12913,12913, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10694,29840,10694,10694,10694, 10694,10694,10694,14248,14248,14248,14248,14248,14248,14248, 14248, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136, 29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727, 10727,10727,10727,10727,10727, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,14315,14315,14315,14315,14315,14315,14315, 14315,14317,29840,14317,14317,14317,14317,14317,14317,14333, 14333,14333,14333,14333,14333,14333,14333,14335,29840,14335, 14335,14335,14335,14335,14335,10767,29840,10767,10767,10767, 10767,10767,10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 139,29840, 139, 139, 139, 139, 139, 139,15711,29840,15711,15711,15711,15711,15711, 15711,11838,29840,11838,11838,11838,11838,11838,11838,11846, 29840,11846,11846,11846,11846,11846,11846,15716,29840,15716, 15716,15716,15716,15716,15716,15718,29840,15718,15718,15718, 15718,15718,15718,11853,29840,11853,11853,11853,11853,11853, 11853,15727,29840,15727,15727,15727,15727,15727,15727,15729, 29840,15729,15729,15729,15729,15729,15729,15741,29840,15741, 15741,15741,15741,15741,15741,15743,29840,15743,15743,15743, 15743,15743,15743,15751,29840,15751,15751,15751,15751,15751, 15751,15753,29840,15753,15753,15753,15753,15753,15753, 783, 783, 783, 783, 783, 783, 783, 783, 150,29840, 150, 150, 150, 150, 150, 150, 897, 897, 897, 897, 897, 897, 897, 897,15769,29840,15769,15769,15769,15769,15769, 15769,13175,29840,13175,13175,13175,13175,13175,13175,15778, 29840,15778,15778,15778,15778,15778,15778,15783,29840,15783, 15783,15783,15783,15783,15783,15788,29840,15788,15788,15788, 15788,15788,15788,15793,29840,15793,15793,15793,15793,15793, 15793,15798,29840,15798,15798,15798,15798,15798,15798,15802, 29840,15802,15802,15802,15802,15802,15802,15805,29840,15805, 15805,15805,15805,15805,15805,15808,29840,15808,15808,15808, 15808,15808,15808,15813,29840,15813,15813,15813,15813,15813, 15813,15817,29840,15817,15817,15817,15817,15817,15817,15820, 29840,15820,15820,15820,15820,15820,15820,15823,29840,15823, 15823,15823,15823,15823,15823,15825,29840,15825,15825,15825, 15825,15825,15825, 139,29840, 139, 139, 139, 139, 139, 139,11018,29840,11018,11018,11018,11018,11018,11018,15900, 29840,15900,15900,15900,15900,15900,15900,15902,29840,15902, 15902,15902,15902,15902,15902,15910,29840,15910,15910,15910, 15910,15910,15910,15915,29840,15915,15915,15915,15915,15915, 15915,15920,29840,15920,15920,15920,15920,15920,15920,15924, 29840,15924,15924,15924,15924,15924,15924,15927,29840,15927, 15927,15927,15927,15927,15927,15930,29840,15930,15930,15930, 15930,15930,15930,15933,29840,15933,15933,15933,15933,15933, 15933,15936,29840,15936,15936,15936,15936,15936,15936,15941, 29840,15941,15941,15941,15941,15941,15941,15946,29840,15946, 15946,15946,15946,15946,15946,15951,29840,15951,15951,15951, 15951,15951,15951,15955,29840,15955,15955,15955,15955,15955, 15955,15958,29840,15958,15958,15958,15958,15958,15958,15961, 29840,15961,15961,15961,15961,15961,15961,15967,29840,15967, 15967,15967,15967,15967,15967,15972,29840,15972,15972,15972, 15972,15972,15972,15976,29840,15976,15976,15976,15976,15976, 15976,15979,29840,15979,15979,15979,15979,15979,15979,15982, 29840,15982,15982,15982,15982,15982,15982,15987,29840,15987, 15987,15987,15987,15987,15987,15990,29840,15990,15990,15990, 15990,15990,15990,15993,29840,15993,15993,15993,15993,15993, 15993,15998,29840,15998,15998,15998,15998,15998,15998,16003, 29840,16003,16003,16003,16003,16003,16003,16007,29840,16007, 16007,16007,16007,16007,16007,16010,29840,16010,16010,16010, 16010,16010,16010,16013,29840,16013,16013,16013,16013,16013, 16013,16017,29840,16017,16017,16017,16017,16017,16017,16020, 29840,16020,16020,16020,16020,16020,16020, 139,29840, 139, 139, 139, 139, 139, 139,16024,29840,16024,16024,16024, 16024,16024,16024,16029,29840,16029,16029,16029,16029,16029, 16029,16032,29840,16032,16032,16032,16032,16032,16032,12142, 29840,12142,12142,12142,12142,12142,12142,16036,29840,16036, 16036,16036,16036,16036,16036,16041,29840,16041,16041,16041, 16041,16041,16041,16048,29840,16048,16048,16048,16048,16048, 16048,16050,29840,16050,16050,16050,16050,16050,16050,12229, 29840,12229,12229,12229,12229,12229,12229,12233,29840,12233, 12233,12233,12233,12233,12233,12139,29840,12139,12139,12139, 12139,12139,12139,16133,29840,16133,16133,16133,16133,16133, 16133,16138,29840,16138,16138,16138,16138,16138,16138,16142, 29840,16142,16142,16142,16142,16142,16142,16146,29840,16146, 16146,16146,16146,16146,16146,16149,29840,16149,16149,16149, 16149,16149,16149,16156,29840,16156,16156,16156,16156,16156, 16156,16161,29840,16161,16161,16161,16161,16161,16161,16166, 29840,16166,16166,16166,16166,16166,16166,16170,29840,16170, 16170,16170,16170,16170,16170,16174,29840,16174,16174,16174, 16174,16174,16174,16176,29840,16176,16176,16176,16176,16176, 16176,16180,29840,16180,16180,16180,16180,16180,16180,16184, 29840,16184,16184,16184,16184,16184,16184,16188,29840,16188, 16188,16188,16188,16188,16188, 139,29840, 139, 139, 139, 139, 139, 139,16048,29840,16048,16048,16048,16048,16048, 16048, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225,16203,29840,16203, 16203,16203,16203,16203,16203,16208,29840,16208,16208,16208, 16208,16208,16208, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,12437,29840,12437,12437,12437,12437,12437,12437, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,15025,29840,15025,15025,15025,15025,15025, 15025,16233,29840,16233,16233,16233,16233,16233,16233,16238, 29840,16238,16238,16238,16238,16238,16238,16243,29840,16243, 16243,16243,16243,16243,16243,16250,29840,16250,16250,16250, 16250,16250,16250, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,13763,29840,13763,13763,13763,13763,13763,13763, 5704, 29840, 5704, 5704, 5704, 5704, 5704, 5704,16264,29840,16264, 16264,16264,16264,16264,16264, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,16281,29840,16281,16281,16281,16281,16281,16281,16286, 29840,16286,16286,16286,16286,16286,16286,16291,29840,16291, 16291,16291,16291,16291,16291,16296,29840,16296,16296,16296, 16296,16296,16296,16301,29840,16301,16301,16301,16301,16301, 16301,16305,29840,16305,16305,16305,16305,16305,16305,16309, 29840,16309,16309,16309,16309,16309,16309,16311,29840,16311, 16311,16311,16311,16311,16311,16316,29840,16316,16316,16316, 16316,16316,16316,16320,29840,16320,16320,16320,16320,16320, 16320,16324,29840,16324,16324,16324,16324,16324,16324, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,16329,29840,16329, 16329,16329,16329,16329,16329, 139,29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179, 15179,15179,15179,15179,15179,15179,15179,15180,15180,15180, 15180,15180,29840,15180,15180,16352,16352,16352,16352,16352, 16352,16352,16352, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,16359,29840,16359,16359,16359,16359,16359,16359,16365, 29840,16365,16365,16365,16365,16365,16365, 959,29840, 959, 959, 959, 959, 959, 959,12792,29840,12792,12792,12792, 12792,12792,12792, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 982, 982, 982, 982, 982, 982, 982, 982, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611,10611,10611,10611, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705,16526,29840,16526,16526,16526, 16526,16526,16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342,15380, 15380,15380,15380,15380,15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017,14091,14091,14091,14091,14091,14091,14091, 14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729, 29840, 1729, 1729, 1729, 1729, 1729, 1729, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 8103, 29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843, 12843,12843,12843,12843,12843, 514,29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865, 12865,12865,12865,12865,12865,12865,12865, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768,14164,14164,14164,14164,14164, 14164,14164,14164,12894,12894,12894,12894,12894,12894,12894, 12894,12896,29840,12896,12896,12896,12896,12896,12896,12911, 12911,12911,12911,12911,12911,12911,12911,12913,29840,12913, 12913,12913,12913,12913,12913, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10694,29840,10694,10694,10694,10694,10694, 10694,14248,14248,14248,14248,14248,14248,14248,14248, 2222, 29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727,10727,10727, 10727,10727,10727,14315,14315,14315,14315,14315,14315,14315, 14315,14317,29840,14317,14317,14317,14317,14317,14317,14333, 14333,14333,14333,14333,14333,14333,14333,14335,29840,14335, 14335,14335,14335,14335,14335, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767,10767,10767,10767,10767, 10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776, 29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139,29840, 139, 139, 139, 139, 139, 139, 787, 787, 787, 787, 787, 787, 787, 787,15711,29840,15711,15711,15711,15711,15711,15711,11846, 29840,11846,11846,11846,11846,11846,11846,16868,29840,16868, 16868,16868,16868,16868,16868,16870,29840,16870,16870,16870, 16870,16870,16870,11853,29840,11853,11853,11853,11853,11853, 11853,16880,29840,16880,16880,16880,16880,16880,16880,16882, 29840,16882,16882,16882,16882,16882,16882, 150,29840, 150, 150, 150, 150, 150, 150,16895,29840,16895,16895,16895, 16895,16895,16895,16898,29840,16898,16898,16898,16898,16898, 16898,13175,29840,13175,13175,13175,13175,13175,13175,16902, 29840,16902,16902,16902,16902,16902,16902,15982,29840,15982, 15982,15982,15982,15982,15982,16907,29840,16907,16907,16907, 16907,16907,16907,16913,29840,16913,16913,16913,16913,16913, 16913,16915,29840,16915,16915,16915,16915,16915,16915,12126, 29840,12126,12126,12126,12126,12126,12126,15900,29840,15900, 15900,15900,15900,15900,15900,15902,29840,15902,15902,15902, 15902,15902,15902,16996,29840,16996,16996,16996,16996,16996, 16996,17001,29840,17001,17001,17001,17001,17001,17001,17006, 29840,17006,17006,17006,17006,17006,17006,17011,29840,17011, 17011,17011,17011,17011,17011,17015,29840,17015,17015,17015, 17015,17015,17015,17018,29840,17018,17018,17018,17018,17018, 17018,17021,29840,17021,17021,17021,17021,17021,17021,17025, 29840,17025,17025,17025,17025,17025,17025,17028,29840,17028, 17028,17028,17028,17028,17028,17031,29840,17031,17031,17031, 17031,17031,17031,17036,29840,17036,17036,17036,17036,17036, 17036,17043,29840,17043,17043,17043,17043,17043,17043,17048, 29840,17048,17048,17048,17048,17048,17048,17052,29840,17052, 17052,17052,17052,17052,17052,17056,29840,17056,17056,17056, 17056,17056,17056,17059,29840,17059,17059,17059,17059,17059, 17059,17066,29840,17066,17066,17066,17066,17066,17066,17071, 29840,17071,17071,17071,17071,17071,17071,17076,29840,17076, 17076,17076,17076,17076,17076,17080,29840,17080,17080,17080, 17080,17080,17080,17084,29840,17084,17084,17084,17084,17084, 17084,17086,29840,17086,17086,17086,17086,17086,17086,17091, 29840,17091,17091,17091,17091,17091,17091,17095,29840,17095, 17095,17095,17095,17095,17095,17099,29840,17099,17099,17099, 17099,17099,17099, 139,29840, 139, 139, 139, 139, 139, 139,17102,29840,17102,17102,17102,17102,17102,17102,17107, 29840,17107,17107,17107,17107,17107,17107,17113,29840,17113, 17113,17113,17113,17113,17113,17116,29840,17116,17116,17116, 17116,17116,17116,14786,29840,14786,14786,14786,14786,14786, 14786,16048,29840,16048,16048,16048,16048,16048,16048,16050, 29840,16050,16050,16050,16050,16050,16050,12233,29840,12233, 12233,12233,12233,12233,12233,12229,29840,12229,12229,12229, 12229,12229,12229,13408,29840,13408,13408,13408,13408,13408, 13408,17202,29840,17202,17202,17202,17202,17202,17202,17207, 29840,17207,17207,17207,17207,17207,17207,17212,29840,17212, 17212,17212,17212,17212,17212,17217,29840,17217,17217,17217, 17217,17217,17217,17221,29840,17221,17221,17221,17221,17221, 17221,17224,29840,17224,17224,17224,17224,17224,17224,17227, 29840,17227,17227,17227,17227,17227,17227,17229,29840,17229, 17229,17229,17229,17229,17229,17232,29840,17232,17232,17232, 17232,17232,17232,17237,29840,17237,17237,17237,17237,17237, 17237,17242,29840,17242,17242,17242,17242,17242,17242,17247, 29840,17247,17247,17247,17247,17247,17247,17251,29840,17251, 17251,17251,17251,17251,17251,17254,29840,17254,17254,17254, 17254,17254,17254,17257,29840,17257,17257,17257,17257,17257, 17257,17262,29840,17262,17262,17262,17262,17262,17262,17267, 29840,17267,17267,17267,17267,17267,17267,17271,29840,17271, 17271,17271,17271,17271,17271,17274,29840,17274,17274,17274, 17274,17274,17274, 139,29840, 139, 139, 139, 139, 139, 139, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225,17291,29840,17291, 17291,17291,17291,17291,17291,16208,29840,16208,16208,16208, 16208,16208,16208, 3594,29840, 3594, 3594, 3594, 3594, 3594, 3594, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,17300, 29840,17300,17300,17300,17300,17300,17300,12437,29840,12437, 12437,12437,12437,12437,12437, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,17320, 29840,17320,17320,17320,17320,17320,17320,17325,29840,17325, 17325,17325,17325,17325,17325, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,13763,29840,13763,13763,13763,13763,13763, 13763, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704,16264, 29840,16264,16264,16264,16264,16264,16264,17340,17340,17340, 17340,17340,17340,17340,17340,17341,17341,17341,17341,17341, 17341,17341,17341, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,17356, 29840,17356,17356,17356,17356,17356,17356,17361,29840,17361, 17361,17361,17361,17361,17361,17366,29840,17366,17366,17366, 17366,17366,17366,17371,29840,17371,17371,17371,17371,17371, 17371,17376,29840,17376,17376,17376,17376,17376,17376,17381, 29840,17381,17381,17381,17381,17381,17381,17385,29840,17385, 17385,17385,17385,17385,17385,17388,29840,17388,17388,17388, 17388,17388,17388,17391,29840,17391,17391,17391,17391,17391, 17391,17397,29840,17397,17397,17397,17397,17397,17397,17402, 29840,17402,17402,17402,17402,17402,17402,17406,29840,17406, 17406,17406,17406,17406,17406,17409,29840,17409,17409,17409, 17409,17409,17409, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,16329, 29840,16329,16329,16329,16329,16329,16329, 139,29840, 139, 139, 139, 139, 139, 139, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179,15179,15179,15179,15179,15179,17438, 29840,17438,17438,17438,17438,17438,17438,16352,16352,16352, 16352,16352,16352,16352,16352, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,16359,29840,16359,16359,16359,16359,16359, 16359,17452,29840,17452,17452,17452,17452,17452,17452, 959, 29840, 959, 959, 959, 959, 959, 959,12792,29840,12792, 12792,12792,12792,12792,12792, 1671,29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 260, 29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611, 10611,10611,10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705,16526, 29840,16526,16526,16526,16526,16526,16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342,15380,15380,15380,15380,15380,15380,15380, 15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091, 14091,14091,14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738, 29840, 1738, 1738, 1738, 1738, 1738, 1738, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291, 29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843, 514,29840, 514, 514, 514, 514, 514, 514, 8109, 29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865, 12865,12865,12865, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768,14164,14164,14164,14164,14164,14164,14164,14164,12894, 12894,12894,12894,12894,12894,12894,12894,12896,29840,12896, 12896,12896,12896,12896,12896,12911,12911,12911,12911,12911, 12911,12911,12911,12913,29840,12913,12913,12913,12913,12913, 12913, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10694, 29840,10694,10694,10694,10694,10694,10694,14248,14248,14248, 14248,14248,14248,14248,14248, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727,10727,10727,10727,10727,10727,14315, 14315,14315,14315,14315,14315,14315,14315,14317,29840,14317, 14317,14317,14317,14317,14317,14333,14333,14333,14333,14333, 14333,14333,14333,14335,29840,14335,14335,14335,14335,14335, 14335, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767, 29840,10767,10767,10767,10767,10767,10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139,29840, 139, 139, 139, 139, 139, 139, 787, 787, 787, 787, 787, 787, 787, 787,15711,29840,15711, 15711,15711,15711,15711,15711,11846,29840,11846,11846,11846, 11846,11846,11846,17906,29840,17906,17906,17906,17906,17906, 17906,17908,29840,17908,17908,17908,17908,17908,17908,17917, 29840,17917,17917,17917,17917,17917,17917,17919,29840,17919, 17919,17919,17919,17919,17919,17931,29840,17931,17931,17931, 17931,17931,17931,17935,29840,17935,17935,17935,17935,17935, 17935,17938,29840,17938,17938,17938,17938,17938,17938,13175, 29840,13175,13175,13175,13175,13175,13175,16902,29840,16902, 16902,16902,16902,16902,16902,17043,29840,17043,17043,17043, 17043,17043,17043,16913,29840,16913,16913,16913,16913,16913, 16913,16915,29840,16915,16915,16915,16915,16915,16915,13387, 29840,13387,13387,13387,13387,13387,13387,18020,29840,18020, 18020,18020,18020,18020,18020,18025,29840,18025,18025,18025, 18025,18025,18025,18030,29840,18030,18030,18030,18030,18030, 18030,18035,29840,18035,18035,18035,18035,18035,18035,18040, 29840,18040,18040,18040,18040,18040,18040,18044,29840,18044, 18044,18044,18044,18044,18044,18048,29840,18048,18048,18048, 18048,18048,18048,18050,29840,18050,18050,18050,18050,18050, 18050,18055,29840,18055,18055,18055,18055,18055,18055,18059, 29840,18059,18059,18059,18059,18059,18059,18063,29840,18063, 18063,18063,18063,18063,18063,18065,29840,18065,18065,18065, 18065,18065,18065,18070,29840,18070,18070,18070,18070,18070, 18070,18075,29840,18075,18075,18075,18075,18075,18075,18080, 29840,18080,18080,18080,18080,18080,18080,18084,29840,18084, 18084,18084,18084,18084,18084,18087,29840,18087,18087,18087, 18087,18087,18087,18090,29840,18090,18090,18090,18090,18090, 18090,18093,29840,18093,18093,18093,18093,18093,18093,18096, 29840,18096,18096,18096,18096,18096,18096,18101,29840,18101, 18101,18101,18101,18101,18101,18106,29840,18106,18106,18106, 18106,18106,18106,18111,29840,18111,18111,18111,18111,18111, 18111,18115,29840,18115,18115,18115,18115,18115,18115,18118, 29840,18118,18118,18118,18118,18118,18118,18121,29840,18121, 18121,18121,18121,18121,18121,18127,29840,18127,18127,18127, 18127,18127,18127,18132,29840,18132,18132,18132,18132,18132, 18132,18136,29840,18136,18136,18136,18136,18136,18136,18139, 29840,18139,18139,18139,18139,18139,18139, 139,29840, 139, 139, 139, 139, 139, 139,18143,29840,18143,18143,18143, 18143,18143,18143,18148,29840,18148,18148,18148,18148,18148, 18148,18150,29840,18150,18150,18150,18150,18150,18150,18157, 29840,18157,18157,18157,18157,18157,18157,18161,29840,18161, 18161,18161,18161,18161,18161,18164,29840,18164,18164,18164, 18164,18164,18164,18167,29840,18167,18167,18167,18167,18167, 18167,18170,29840,18170,18170,18170,18170,18170,18170,16029, 29840,16029,16029,16029,16029,16029,16029,12233,29840,12233, 12233,12233,12233,12233,12233,12229,29840,12229,12229,12229, 12229,12229,12229,17202,29840,17202,17202,17202,17202,17202, 17202,18245,29840,18245,18245,18245,18245,18245,18245,18250, 29840,18250,18250,18250,18250,18250,18250,18255,29840,18255, 18255,18255,18255,18255,18255,18260,29840,18260,18260,18260, 18260,18260,18260,18264,29840,18264,18264,18264,18264,18264, 18264,18267,29840,18267,18267,18267,18267,18267,18267,18270, 29840,18270,18270,18270,18270,18270,18270,18273,29840,18273, 18273,18273,18273,18273,18273,18276,29840,18276,18276,18276, 18276,18276,18276,18279,29840,18279,18279,18279,18279,18279, 18279,18284,29840,18284,18284,18284,18284,18284,18284, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,17291,29840,17291,17291,17291, 17291,17291,17291,18307,29840,18307,18307,18307,18307,18307, 18307,16208,29840,16208,16208,16208,16208,16208,16208, 4246, 29840, 4246, 4246, 4246, 4246, 4246, 4246, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,17300,29840,17300,17300,17300, 17300,17300,17300, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597,18331,29840,18331, 18331,18331,18331,18331,18331,17325,29840,17325,17325,17325, 17325,17325,17325, 4310,29840, 4310, 4310, 4310, 4310, 4310, 4310, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,18340, 29840,18340,18340,18340,18340,18340,18340,13763,29840,13763, 13763,13763,13763,13763,13763, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704,16264,29840,16264,16264,16264,16264,16264, 16264,17340,17340,17340,17340,17340,17340,17340,17340,17341, 17341,17341,17341,17341,17341,17341,17341, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,17356,29840,17356,17356,17356,17356,17356, 17356,18364,29840,18364,18364,18364,18364,18364,18364,18369, 29840,18369,18369,18369,18369,18369,18369,18374,29840,18374, 18374,18374,18374,18374,18374,18381,29840,18381,18381,18381, 18381,18381,18381, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,16329,29840,16329,16329,16329,16329,16329,16329, 1250, 29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179,15179,15179, 15179,15179,15179,17438,29840,17438,17438,17438,17438,17438, 17438, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,16352, 16352,16352,16352,16352,16352,16352,16352,16359,29840,16359, 16359,16359,16359,16359,16359,18418,29840,18418,18418,18418, 18418,18418,18418, 959,29840, 959, 959, 959, 959, 959, 959,12792,29840,12792,12792,12792,12792,12792,12792, 1671, 29840, 1671, 1671, 1671, 1671, 1671, 1671, 246,29840, 246, 246, 246, 246, 246, 246, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611,10611,10611,10611, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903, 1705,29840, 1705, 1705, 1705, 1705, 1705, 1705,16526,29840,16526,16526,16526, 16526,16526,16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653,15380,15380,15380,15380,15380,15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091, 14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 1729,29840, 1729, 1729, 1729, 1729, 1729, 1729, 1734,29840, 1734, 1734, 1734, 1734, 1734, 1734, 5217, 29840, 5217, 5217, 5217, 5217, 5217, 5217, 1738,29840, 1738, 1738, 1738, 1738, 1738, 1738, 1741,29840, 1741, 1741, 1741, 1741, 1741, 1741, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 29840, 1043, 1043, 1043, 1043, 1043, 1043, 291,29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843,12843, 514, 29840, 514, 514, 514, 514, 514, 514, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865,12865,12865, 12865, 1768,29840, 1768, 1768, 1768, 1768, 1768, 1768,14164, 14164,14164,14164,14164,14164,14164,14164,12894,12894,12894, 12894,12894,12894,12894,12894,12896,29840,12896,12896,12896, 12896,12896,12896,12911,12911,12911,12911,12911,12911,12911, 12911,12913,29840,12913,12913,12913,12913,12913,12913, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10694,29840,10694, 10694,10694,10694,10694,10694,14248,14248,14248,14248,14248, 14248,14248,14248, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727, 10727,10727,10727,10727,10727,10727,10727,14315,14315,14315, 14315,14315,14315,14315,14315,14317,29840,14317,14317,14317, 14317,14317,14317,14333,14333,14333,14333,14333,14333,14333, 14333,14335,29840,14335,14335,14335,14335,14335,14335, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767, 10767,10767,10767,10767,10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 139,29840, 139, 139, 139, 139, 139, 139,15711,29840,15711,15711,15711, 15711,15711,15711,11846,29840,11846,11846,11846,11846,11846, 11846,17906,29840,17906,17906,17906,17906,17906,17906,17908, 29840,17908,17908,17908,17908,17908,17908,17917,29840,17917, 17917,17917,17917,17917,17917,17919,29840,17919,17919,17919, 17919,17919,17919,18823,29840,18823,18823,18823,18823,18823, 18823,18828,29840,18828,18828,18828,18828,18828,18828,18832, 29840,18832,18832,18832,18832,18832,18832,18835,29840,18835, 18835,18835,18835,18835,18835,18838,29840,18838,18838,18838, 18838,18838,18838,18840,29840,18840,18840,18840,18840,18840, 18840,15769,29840,15769,15769,15769,15769,15769,15769,18914, 29840,18914,18914,18914,18914,18914,18914,18919,29840,18919, 18919,18919,18919,18919,18919,18924,29840,18924,18924,18924, 18924,18924,18924,18929,29840,18929,18929,18929,18929,18929, 18929,18934,29840,18934,18934,18934,18934,18934,18934,18939, 29840,18939,18939,18939,18939,18939,18939,18943,29840,18943, 18943,18943,18943,18943,18943,18946,29840,18946,18946,18946, 18946,18946,18946,18949,29840,18949,18949,18949,18949,18949, 18949,18955,29840,18955,18955,18955,18955,18955,18955,18960, 29840,18960,18960,18960,18960,18960,18960,18964,29840,18964, 18964,18964,18964,18964,18964,18967,29840,18967,18967,18967, 18967,18967,18967,18065,29840,18065,18065,18065,18065,18065, 18065,18970,29840,18970,18970,18970,18970,18970,18970,18975, 29840,18975,18975,18975,18975,18975,18975,18980,29840,18980, 18980,18980,18980,18980,18980,18985,29840,18985,18985,18985, 18985,18985,18985,18989,29840,18989,18989,18989,18989,18989, 18989,18992,29840,18992,18992,18992,18992,18992,18992,18995, 29840,18995,18995,18995,18995,18995,18995,18999,29840,18999, 18999,18999,18999,18999,18999,19002,29840,19002,19002,19002, 19002,19002,19002,19005,29840,19005,19005,19005,19005,19005, 19005,19010,29840,19010,19010,19010,19010,19010,19010, 139, 29840, 139, 139, 139, 139, 139, 139,18143,29840,18143, 18143,18143,18143,18143,18143,19018,29840,19018,19018,19018, 19018,19018,19018,19021,29840,19021,19021,19021,19021,19021, 19021,19024,29840,19024,19024,19024,19024,19024,19024,19031, 29840,19031,19031,19031,19031,19031,19031,19036,29840,19036, 19036,19036,19036,19036,19036,19040,29840,19040,19040,19040, 19040,19040,19040,19043,29840,19043,19043,19043,19043,19043, 19043,19046,29840,19046,19046,19046,19046,19046,19046,19050, 29840,19050,19050,19050,19050,19050,19050,19053,29840,19053, 19053,19053,19053,19053,19053,17107,29840,17107,17107,17107, 17107,17107,17107,12229,29840,12229,12229,12229,12229,12229, 12229,19133,29840,19133,19133,19133,19133,19133,19133,19138, 29840,19138,19138,19138,19138,19138,19138,19143,29840,19143, 19143,19143,19143,19143,19143,19148,29840,19148,19148,19148, 19148,19148,19148,19153,29840,19153,19153,19153,19153,19153, 19153,19157,29840,19157,19157,19157,19157,19157,19157,19161, 29840,19161,19161,19161,19161,19161,19161,19163,29840,19163, 19163,19163,19163,19163,19163,19167,29840,19167,19167,19167, 19167,19167,19167,19171,29840,19171,19171,19171,19171,19171, 19171,19175,29840,19175,19175,19175,19175,19175,19175, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,19190,29840,19190,19190,19190, 19190,19190,19190,16208,29840,16208,16208,16208,16208,16208, 16208, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,17300, 29840,17300,17300,17300,17300,17300,17300,19199,19199,19199, 19199,19199,19199,19199,19199, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 5646, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,18331, 29840,18331,18331,18331,18331,18331,18331,19219,29840,19219, 19219,19219,19219,19219,19219,17325,29840,17325,17325,17325, 17325,17325,17325, 4992,29840, 4992, 4992, 4992, 4992, 4992, 4992, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,18340, 29840,18340,18340,18340,18340,18340,18340, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704,16264,29840,16264,16264,16264, 16264,16264,16264,17340,17340,17340,17340,17340,17340,17340, 17340, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555, 29840, 2555, 2555, 2555, 2555, 2555, 2555,19244,29840,19244, 19244,19244,19244,19244,19244,19249,29840,19249,19249,19249, 19249,19249,19249, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,16329,29840,16329,16329,16329,16329,16329,16329, 1250, 29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179,15179,15179, 15179,15179,15179,17438,29840,17438,17438,17438,17438,17438, 17438, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,16352, 16352,16352,16352,16352,16352,16352,16352,16359,29840,16359, 16359,16359,16359,16359,16359,19290,29840,19290,19290,19290, 19290,19290,19290, 959,29840, 959, 959, 959, 959, 959, 959,12792,29840,12792,12792,12792,12792,12792,12792, 246, 29840, 246, 246, 246, 246, 246, 246, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611,10611,10611, 10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,16526, 29840,16526,16526,16526,16526,16526,16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653,15380,15380,15380,15380,15380, 15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091,14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291, 29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843, 514,29840, 514, 514, 514, 514, 514, 514, 8109, 29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865, 12865,12865,12865,14164,14164,14164,14164,14164,14164,14164, 14164,12894,12894,12894,12894,12894,12894,12894,12894,12896, 29840,12896,12896,12896,12896,12896,12896,12911,12911,12911, 12911,12911,12911,12911,12911,12913,29840,12913,12913,12913, 12913,12913,12913, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10694,29840,10694,10694,10694,10694,10694,10694,14248, 14248,14248,14248,14248,14248,14248,14248, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222,10727,10727,10727,10727,10727,10727,10727, 10727,14315,14315,14315,14315,14315,14315,14315,14315,14317, 29840,14317,14317,14317,14317,14317,14317,14333,14333,14333, 14333,14333,14333,14333,14333,14335,29840,14335,14335,14335, 14335,14335,14335, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767,10767,10767,10767,10767,10767, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 139,29840, 139, 139, 139, 139, 139, 139,19634, 29840,19634,19634,19634,19634,19634,19634,11846,29840,11846, 11846,11846,11846,11846,11846,19644,29840,19644,19644,19644, 19644,19644,19644,19650,29840,19650,19650,19650,19650,19650, 19650,19655,29840,19655,19655,19655,19655,19655,19655,19659, 29840,19659,19659,19659,19659,19659,19659,19662,29840,19662, 19662,19662,19662,19662,19662,19665,29840,19665,19665,19665, 19665,19665,19665,19668,29840,19668,19668,19668,19668,19668, 19668,19671,29840,19671,19671,19671,19671,19671,19671,16895, 29840,16895,16895,16895,16895,16895,16895,18914,29840,18914, 18914,18914,18914,18914,18914,19750,29840,19750,19750,19750, 19750,19750,19750,19755,29840,19755,19755,19755,19755,19755, 19755,19760,29840,19760,19760,19760,19760,19760,19760,19767, 29840,19767,19767,19767,19767,19767,19767,19772,29840,19772, 19772,19772,19772,19772,19772,19777,29840,19777,19777,19777, 19777,19777,19777,19782,29840,19782,19782,19782,19782,19782, 19782,19787,29840,19787,19787,19787,19787,19787,19787,19791, 29840,19791,19791,19791,19791,19791,19791,19795,29840,19795, 19795,19795,19795,19795,19795,19797,29840,19797,19797,19797, 19797,19797,19797,19802,29840,19802,19802,19802,19802,19802, 19802,19806,29840,19806,19806,19806,19806,19806,19806,19810, 29840,19810,19810,19810,19810,19810,19810, 139,29840, 139, 139, 139, 139, 139, 139,19813,29840,19813,19813,19813, 19813,19813,19813,19817,29840,19817,19817,19817,19817,19817, 19817,19822,29840,19822,19822,19822,19822,19822,19822,19825, 29840,19825,19825,19825,19825,19825,19825,19833,29840,19833, 19833,19833,19833,19833,19833,19838,29840,19838,19838,19838, 19838,19838,19838,19843,29840,19843,19843,19843,19843,19843, 19843,19847,29840,19847,19847,19847,19847,19847,19847,19851, 29840,19851,19851,19851,19851,19851,19851,19853,29840,19853, 19853,19853,19853,19853,19853,19858,29840,19858,19858,19858, 19858,19858,19858,19862,29840,19862,19862,19862,19862,19862, 19862,19866,29840,19866,19866,19866,19866,19866,19866,18148, 29840,18148,18148,18148,18148,18148,18148,12229,29840,12229, 12229,12229,12229,12229,12229,19937,29840,19937,19937,19937, 19937,19937,19937,19942,29840,19942,19942,19942,19942,19942, 19942,19947,29840,19947,19947,19947,19947,19947,19947,19952, 29840,19952,19952,19952,19952,19952,19952,19957,29840,19957, 19957,19957,19957,19957,19957,19962,29840,19962,19962,19962, 19962,19962,19962,19966,29840,19966,19966,19966,19966,19966, 19966,19969,29840,19969,19969,19969,19969,19969,19969,19972, 29840,19972,19972,19972,19972,19972,19972,19977,29840,19977, 19977,19977,19977,19977,19977,19982,29840,19982,19982,19982, 19982,19982,19982,19986,29840,19986,19986,19986,19986,19986, 19986,19989,29840,19989,19989,19989,19989,19989,19989, 139, 29840, 139, 139, 139, 139, 139, 139, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,19190,29840,19190,19190,19190,19190,19190, 19190, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,17300, 29840,17300,17300,17300,17300,17300,17300,19199,19199,19199, 19199,19199,19199,19199,19199,19200,19200,19200,19200,19200, 19200,19200,19200, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,20031, 29840,20031,20031,20031,20031,20031,20031,17325,29840,17325, 17325,17325,17325,17325,17325, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,18340,29840,18340,18340,18340,18340,18340, 18340, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704,17340, 17340,17340,17340,17340,17340,17340,17340, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,20058,29840,20058,20058,20058,20058,20058, 20058,19249,29840,19249,19249,19249,19249,19249,19249, 5736, 29840, 5736, 5736, 5736, 5736, 5736, 5736, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,20067,29840,20067,20067,20067, 20067,20067,20067,16329,29840,16329,16329,16329,16329,16329, 16329, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250, 7167, 29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179, 15179,15179,15179,15179,15179,17438,29840,17438,17438,17438, 17438,17438,17438,20088,20088,20088,20088,20088,20088,20088, 20088,16352,16352,16352,16352,16352,16352,16352,16352, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,16359,29840,16359, 16359,16359,16359,16359,16359,20102,29840,20102,20102,20102, 20102,20102,20102, 959,29840, 959, 959, 959, 959, 959, 959,12792,29840,12792,12792,12792,12792,12792,12792, 246, 29840, 246, 246, 246, 246, 246, 246, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611,10611,10611, 10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,16526, 29840,16526,16526,16526,16526,16526,16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653,15380,15380,15380,15380,15380, 15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091,14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043, 291, 29840, 291, 291, 291, 291, 291, 291, 505,29840, 505, 505, 505, 505, 505, 505, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843, 514,29840, 514, 514, 514, 514, 514, 514, 8109, 29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865, 12865,12865,12865,14164,14164,14164,14164,14164,14164,14164, 14164,12894,12894,12894,12894,12894,12894,12894,12894,12896, 29840,12896,12896,12896,12896,12896,12896,12911,12911,12911, 12911,12911,12911,12911,12911,12913,29840,12913,12913,12913, 12913,12913,12913, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10694,29840,10694,10694,10694,10694,10694,10694,20271, 29840,20271,20271,20271,20271,20271,20271,14248,14248,14248, 14248,14248,14248,14248,14248, 2222,29840, 2222, 2222, 2222, 2222, 2222, 2222,20312,29840,20312,20312,20312,20312,20312, 20312, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727, 10727,10727,10727,10727,10727,10727,10727,14315,14315,14315, 14315,14315,14315,14315,14315,14317,29840,14317,14317,14317, 14317,14317,14317,14333,14333,14333,14333,14333,14333,14333, 14333,14335,29840,14335,14335,14335,14335,14335,14335, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767, 10767,10767,10767,10767,10767, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 787, 787, 787, 787, 787, 787, 787, 787, 139, 29840, 139, 139, 139, 139, 139, 139,19634,29840,19634, 19634,19634,19634,19634,19634,11846,29840,11846,11846,11846, 11846,11846,11846,20436,29840,20436,20436,20436,20436,20436, 20436,20441,29840,20441,20441,20441,20441,20441,20441,20446, 29840,20446,20446,20446,20446,20446,20446,20451,29840,20451, 20451,20451,20451,20451,20451,20455,29840,20455,20455,20455, 20455,20455,20455,20459,29840,20459,20459,20459,20459,20459, 20459,20461,29840,20461,20461,20461,20461,20461,20461,20465, 29840,20465,20465,20465,20465,20465,20465,20469,29840,20469, 20469,20469,20469,20469,20469,20473,29840,20473,20473,20473, 20473,20473,20473,17931,29840,17931,17931,17931,17931,17931, 17931,20543,29840,20543,20543,20543,20543,20543,20543,20548, 29840,20548,20548,20548,20548,20548,20548,20553,29840,20553, 20553,20553,20553,20553,20553,20558,29840,20558,20558,20558, 20558,20558,20558,20563,29840,20563,20563,20563,20563,20563, 20563,20568,29840,20568,20568,20568,20568,20568,20568,20573, 29840,20573,20573,20573,20573,20573,20573,20577,29840,20577, 20577,20577,20577,20577,20577,20580,29840,20580,20580,20580, 20580,20580,20580,20583,29840,20583,20583,20583,20583,20583, 20583,20589,29840,20589,20589,20589,20589,20589,20589,20594, 29840,20594,20594,20594,20594,20594,20594,20598,29840,20598, 20598,20598,20598,20598,20598,20601,29840,20601,20601,20601, 20601,20601,20601,20604,29840,20604,20604,20604,20604,20604, 20604,20606,29840,20606,20606,20606,20606,20606,20606,20611, 29840,20611,20611,20611,20611,20611,20611,20613,29840,20613, 20613,20613,20613,20613,20613,20619,29840,20619,20619,20619, 20619,20619,20619,20623,29840,20623,20623,20623,20623,20623, 20623,20626,29840,20626,20626,20626,20626,20626,20626,20629, 29840,20629,20629,20629,20629,20629,20629,20632,29840,20632, 20632,20632,20632,20632,20632, 139,29840, 139, 139, 139, 139, 139, 139,20636,29840,20636,20636,20636,20636,20636, 20636,20641,29840,20641,20641,20641,20641,20641,20641,20646, 29840,20646,20646,20646,20646,20646,20646,20651,29840,20651, 20651,20651,20651,20651,20651,20655,29840,20655,20655,20655, 20655,20655,20655,20658,29840,20658,20658,20658,20658,20658, 20658,20661,29840,20661,20661,20661,20661,20661,20661,20667, 29840,20667,20667,20667,20667,20667,20667,20672,29840,20672, 20672,20672,20672,20672,20672,20676,29840,20676,20676,20676, 20676,20676,20676,20679,29840,20679,20679,20679,20679,20679, 20679,19018,29840,19018,19018,19018,19018,19018,19018,12229, 29840,12229,12229,12229,12229,12229,12229,19937,29840,19937, 19937,19937,19937,19937,19937,20750,29840,20750,20750,20750, 20750,20750,20750,20755,29840,20755,20755,20755,20755,20755, 20755,20760,29840,20760,20760,20760,20760,20760,20760, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,19190,29840,19190,19190,19190, 19190,19190,19190, 3007, 3007, 3007, 3007, 3007, 3007, 3007, 3007,17300,29840,17300,17300,17300,17300,17300,17300,19199, 19199,19199,19199,19199,19199,19199,19199, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,20031,29840,20031,20031,20031,20031,20031, 20031, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,18340, 29840,18340,18340,18340,18340,18340,18340, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704,17340,17340,17340,17340,17340, 17340,17340,17340, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,20058, 29840,20058,20058,20058,20058,20058,20058,20829,29840,20829, 20829,20829,20829,20829,20829,19249,29840,19249,19249,19249, 19249,19249,19249, 6425,29840, 6425, 6425, 6425, 6425, 6425, 6425, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,20067, 29840,20067,20067,20067,20067,20067,20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844,29840,20844,20844,20844, 20844,20844,20844, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179,15179,15179,15179,15179,15179,17438, 29840,17438,17438,17438,17438,17438,17438,20088,20088,20088, 20088,20088,20088,20088,20088,11846,29840,11846,11846,11846, 11846,11846,11846, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857,20857,20857,20857,20857,20857,16359, 29840,16359,16359,16359,16359,16359,16359,20866,29840,20866, 20866,20866,20866,20866,20866, 959,29840, 959, 959, 959, 959, 959, 959,12792,29840,12792,12792,12792,12792,12792, 12792, 246,29840, 246, 246, 246, 246, 246, 246, 260, 29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611, 10611,10611,10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,16526,29840,16526,16526,16526,16526,16526,16526, 9653, 29840, 9653, 9653, 9653, 9653, 9653, 9653,15380,15380,15380, 15380,15380,15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091,14091,14091,14091,14091, 14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 5217, 29840, 5217, 5217, 5217, 5217, 5217, 5217, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926,20926,20926,20926,20928, 29840,20928,20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,20935,29840,20935,20935,20935,20935,20935, 20935, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703, 29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865, 12865,12865,12865,12865,12865,14164,14164,14164,14164,14164, 14164,14164,14164,12894,12894,12894,12894,12894,12894,12894, 12894,12896,29840,12896,12896,12896,12896,12896,12896,12911, 12911,12911,12911,12911,12911,12911,12911,12913,29840,12913, 12913,12913,12913,12913,12913, 3290, 3290, 3290, 3290, 3290, 3290, 3290, 3290,10694,29840,10694,10694,10694,10694,10694, 10694,20271,29840,20271,20271,20271,20271,20271,20271,14248, 14248,14248,14248,14248,14248,14248,14248,20312,29840,20312, 20312,20312,20312,20312,20312, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727,10727,10727,10727,10727, 10727,14315,14315,14315,14315,14315,14315,14315,14315,14317, 29840,14317,14317,14317,14317,14317,14317,14333,14333,14333, 14333,14333,14333,14333,14333,14335,29840,14335,14335,14335, 14335,14335,14335, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767,10767,10767,10767,10767,10767, 776, 29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139,29840, 139, 139, 139, 139, 139, 139,19634,29840,19634,19634,19634,19634,19634, 19634,11846,29840,11846,11846,11846,11846,11846,11846,21155, 29840,21155,21155,21155,21155,21155,21155,21160,29840,21160, 21160,21160,21160,21160,21160,21165,29840,21165,21165,21165, 21165,21165,21165,21170,29840,21170,21170,21170,21170,21170, 21170,21175,29840,21175,21175,21175,21175,21175,21175,21179, 29840,21179,21179,21179,21179,21179,21179,21182,29840,21182, 21182,21182,21182,21182,21182,21185,29840,21185,21185,21185, 21185,21185,21185,21190,29840,21190,21190,21190,21190,21190, 21190,21195,29840,21195,21195,21195,21195,21195,21195,21199, 29840,21199,21199,21199,21199,21199,21199,21202,29840,21202, 21202,21202,21202,21202,21202,18823,29840,18823,18823,18823, 18823,18823,18823,21273,29840,21273,21273,21273,21273,21273, 21273,20548,29840,20548,20548,20548,20548,20548,20548,21278, 29840,21278,21278,21278,21278,21278,21278,21283,29840,21283, 21283,21283,21283,21283,21283,21288,29840,21288,21288,21288, 21288,21288,21288,21295,29840,21295,21295,21295,21295,21295, 21295,21298,29840,21298,21298,21298,21298,21298,21298,21303, 29840,21303,21303,21303,21303,21303,21303,21306,29840,21306, 21306,21306,21306,21306,21306,21309,29840,21309,21309,21309, 21309,21309,21309,21314,29840,21314,21314,21314,21314,21314, 21314,21319,29840,21319,21319,21319,21319,21319,21319,21323, 29840,21323,21323,21323,21323,21323,21323,21326,29840,21326, 21326,21326,21326,21326,21326,21329,29840,21329,21329,21329, 21329,21329,21329,21333,29840,21333,21333,21333,21333,21333, 21333,21336,29840,21336,21336,21336,21336,21336,21336, 139, 29840, 139, 139, 139, 139, 139, 139,21339,29840,21339, 21339,21339,21339,21339,21339,21344,29840,21344,21344,21344, 21344,21344,21344,19813,29840,19813,19813,19813,19813,19813, 19813,21399,29840,21399,21399,21399,21399,21399,21399, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225,19190,29840,19190, 19190,19190,19190,19190,19190,17300,29840,17300,17300,17300, 17300,17300,17300,19199,19199,19199,19199,19199,19199,19199, 19199, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 3635, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597,20031,29840,20031, 20031,20031,20031,20031,20031, 3662, 3662, 3662, 3662, 3662, 3662, 3662, 3662,18340,29840,18340,18340,18340,18340,18340, 18340, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,21457,29840,21457,21457,21457, 21457,21457,21457,19249,29840,19249,19249,19249,19249,19249, 19249, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,20067, 29840,20067,20067,20067,20067,20067,20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844,29840,20844,20844,20844, 20844,20844,20844, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179,15179,15179,15179,15179,15179,17438, 29840,17438,17438,17438,17438,17438,17438,20088,20088,20088, 20088,20088,20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857,20857,20857,20857,20857, 20857,16359,29840,16359,16359,16359,16359,16359,16359,21490, 29840,21490,21490,21490,21490,21490,21490, 959,29840, 959, 959, 959, 959, 959, 959,12792,29840,12792,12792,12792, 12792,12792,12792, 246,29840, 246, 246, 246, 246, 246, 246, 260,29840, 260, 260, 260, 260, 260, 260, 265, 29840, 265, 265, 265, 265, 265, 265,10611,29840,10611, 10611,10611,10611,10611,10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,16526,29840,16526,16526,16526,16526,16526, 16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653,15380, 15380,15380,15380,15380,15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091,14091,14091, 14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926,20926,20926, 20926,20928,29840,20928,20928,20928,20928,20928,20928, 8103, 29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843, 12843,12843,12843,12843,12843,20935,29840,20935,20935,20935, 20935,20935,20935, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865, 12865,12865,12865,12865,12865,12865,12865,14164,14164,14164, 14164,14164,14164,14164,14164,12894,12894,12894,12894,12894, 12894,12894,12894,12896,29840,12896,12896,12896,12896,12896, 12896,12911,12911,12911,12911,12911,12911,12911,12911,12913, 29840,12913,12913,12913,12913,12913,12913,10694,29840,10694, 10694,10694,10694,10694,10694,20271,29840,20271,20271,20271, 20271,20271,20271,14248,14248,14248,14248,14248,14248,14248, 14248,20312,29840,20312,20312,20312,20312,20312,20312, 8136, 29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727, 10727,10727,10727,10727,10727,14315,14315,14315,14315,14315, 14315,14315,14315,14317,29840,14317,14317,14317,14317,14317, 14317,14333,14333,14333,14333,14333,14333,14333,14333,14335, 29840,14335,14335,14335,14335,14335,14335, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767,10767,10767, 10767,10767,10767, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139, 29840, 139, 139, 139, 139, 139, 139,19634,29840,19634, 19634,19634,19634,19634,19634,11846,29840,11846,11846,11846, 11846,11846,11846,21736,29840,21736,21736,21736,21736,21736, 21736,21741,29840,21741,21741,21741,21741,21741,21741,21746, 29840,21746,21746,21746,21746,21746,21746,19644,29840,19644, 19644,19644,19644,19644,19644,21273,29840,21273,21273,21273, 21273,21273,21273,21801,29840,21801,21801,21801,21801,21801, 21801,21295,29840,21295,21295,21295,21295,21295,21295,21808, 29840,21808,21808,21808,21808,21808,21808,21813,29840,21813, 21813,21813,21813,21813,21813,21817,29840,21817,21817,21817, 21817,21817,21817,21821,29840,21821,21821,21821,21821,21821, 21821,21824,29840,21824,21824,21824,21824,21824,21824,21831, 29840,21831,21831,21831,21831,21831,21831,21836,29840,21836, 21836,21836,21836,21836,21836,21841,29840,21841,21841,21841, 21841,21841,21841,21845,29840,21845,21845,21845,21845,21845, 21845,21849,29840,21849,21849,21849,21849,21849,21849,21851, 29840,21851,21851,21851,21851,21851,21851,21856,29840,21856, 21856,21856,21856,21856,21856,21860,29840,21860,21860,21860, 21860,21860,21860,21864,29840,21864,21864,21864,21864,21864, 21864, 139,29840, 139, 139, 139, 139, 139, 139,21897, 29840,21897,21897,21897,21897,21897,21897, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,17300,29840,17300,17300,17300, 17300,17300,17300,21915,21915,21915,21915,21915,21915,21915, 21915,19199,19199,19199,19199,19199,19199,19199,19199, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597,20031,29840,20031, 20031,20031,20031,20031,20031,18340,29840,18340,18340,18340, 18340,18340,18340, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704,21938,21938,21938,21938,21938,21938,21938,21938,21939, 21939,21939,29840,21939,21939,21939,21939, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,21457,29840,21457,21457,21457,21457,21457, 21457, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,20067, 29840,20067,20067,20067,20067,20067,20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844,29840,20844,20844,20844, 20844,20844,20844, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179,15179,15179,15179,15179,15179,17438, 29840,17438,17438,17438,17438,17438,17438,20088,20088,20088, 20088,20088,20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857,20857,20857,20857,20857, 20857,16359,29840,16359,16359,16359,16359,16359,16359,21984, 29840,21984,21984,21984,21984,21984,21984, 959,29840, 959, 959, 959, 959, 959, 959,12792,29840,12792,12792,12792, 12792,12792,12792, 246,29840, 246, 246, 246, 246, 246, 246, 260,29840, 260, 260, 260, 260, 260, 260, 265, 29840, 265, 265, 265, 265, 265, 265,10611,29840,10611, 10611,10611,10611,10611,10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,16526,29840,16526,16526,16526,16526,16526, 16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653,15380, 15380,15380,15380,15380,15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091,14091,14091, 14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926,20926,20926, 20926,20928,29840,20928,20928,20928,20928,20928,20928, 8103, 29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843, 12843,12843,12843,12843,12843,20935,29840,20935,20935,20935, 20935,20935,20935, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865, 12865,12865,12865,12865,12865,12865,12865,14164,14164,14164, 14164,14164,14164,14164,14164,12894,12894,12894,12894,12894, 12894,12894,12894,12896,29840,12896,12896,12896,12896,12896, 12896,12911,12911,12911,12911,12911,12911,12911,12911,12913, 29840,12913,12913,12913,12913,12913,12913,10694,29840,10694, 10694,10694,10694,10694,10694,20271,29840,20271,20271,20271, 20271,20271,20271,22102,22102,22102,22102,22102,22102,22102, 22102,14248,14248,14248,14248,14248,14248,14248,14248,20312, 29840,20312,20312,20312,20312,20312,20312,22155,22155,22155, 22155,22155,22155,22155,22155, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727,10727,10727,10727,10727, 10727,22187,22187,22187,22187,22187,22187,22187,22187,22205, 22205,22205,22205,22205,22205,22205,22205,14315,14315,14315, 14315,14315,14315,14315,14315,14317,29840,14317,14317,14317, 14317,14317,14317,14333,14333,14333,14333,14333,14333,14333, 14333,14335,29840,14335,14335,14335,14335,14335,14335, 3954, 3954, 3954, 3954, 3954, 3954, 3954, 3954,10767,29840,10767, 10767,10767,10767,10767,10767, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139,29840, 139, 139, 139, 139, 139, 139,19634, 29840,19634,19634,19634,19634,19634,19634,11846,29840,11846, 11846,11846,11846,11846,11846,22283,29840,22283,22283,22283, 22283,22283,22283,20436,29840,20436,20436,20436,20436,20436, 20436,22319,29840,22319,22319,22319,22319,22319,22319,22324, 29840,22324,22324,22324,22324,22324,22324,21295,29840,21295, 21295,21295,21295,21295,21295,22327,29840,22327,22327,22327, 22327,22327,22327,22332,29840,22332,22332,22332,22332,22332, 22332,22337,29840,22337,22337,22337,22337,22337,22337,22342, 29840,22342,22342,22342,22342,22342,22342,22346,29840,22346, 22346,22346,22346,22346,22346,22349,29840,22349,22349,22349, 22349,22349,22349,22352,29840,22352,22352,22352,22352,22352, 22352,22355,29840,22355,22355,22355,22355,22355,22355,22358, 29840,22358,22358,22358,22358,22358,22358,22363,29840,22363, 22363,22363,22363,22363,22363,22368,29840,22368,22368,22368, 22368,22368,22368,22373,29840,22373,22373,22373,22373,22373, 22373,22377,29840,22377,22377,22377,22377,22377,22377,22380, 29840,22380,22380,22380,22380,22380,22380,22383,29840,22383, 22383,22383,22383,22383,22383,22389,29840,22389,22389,22389, 22389,22389,22389,22394,29840,22394,22394,22394,22394,22394, 22394,22398,29840,22398,22398,22398,22398,22398,22398,22401, 29840,22401,22401,22401,22401,22401,22401, 139,29840, 139, 139, 139, 139, 139, 139,21897,29840,21897,21897,21897, 21897,21897,21897, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,22418,29840,22418,22418,22418,22418,22418,22418,17300, 29840,17300,17300,17300,17300,17300,17300,21915,21915,21915, 21915,21915,21915,21915,21915,21916,21916,21916,21916,21916, 21916,21916,21916, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,18340,29840,18340,18340,18340,18340,18340,18340, 5704, 29840, 5704, 5704, 5704, 5704, 5704, 5704,21938,21938,21938, 21938,21938,21938,21938,21938,21939,21939,21939,21939,21939, 21939,21939,21939, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 5020, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,21457, 29840,21457,21457,21457,21457,21457,21457, 5047, 5047, 5047, 5047, 5047, 5047, 5047, 5047,20067,29840,20067,20067,20067, 20067,20067,20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844,29840,20844,20844,20844,20844,20844,20844, 7167, 29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179, 15179,15179,15179,15179,15179,17438,29840,17438,17438,17438, 17438,17438,17438,20088,20088,20088,20088,20088,20088,20088, 20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857, 29840,20857,20857,20857,20857,20857,20857,16359,29840,16359, 16359,16359,16359,16359,16359,22482,29840,22482,22482,22482, 22482,22482,22482,22487,29840,22487,22487,22487,22487,22487, 22487, 959,29840, 959, 959, 959, 959, 959, 959,21997, 29840,21997,21997,21997,21997,21997,21997,12792,29840,12792, 12792,12792,12792,12792,12792, 246,29840, 246, 246, 246, 246, 246, 246, 260,29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611, 29840,10611,10611,10611,10611,10611,10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,16526,29840,16526,16526,16526, 16526,16526,16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653,15380,15380,15380,15380,15380,15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091, 14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 5217,29840, 5217, 5217, 5217, 5217, 5217, 5217, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041, 29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926, 20926,20926,20926,20928,29840,20928,20928,20928,20928,20928, 20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843,20935,29840,20935, 20935,20935,20935,20935,20935, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865,12865,12865,12865,14164, 14164,14164,14164,14164,14164,14164,14164,12894,12894,12894, 12894,12894,12894,12894,12894,12896,29840,12896,12896,12896, 12896,12896,12896,12911,12911,12911,12911,12911,12911,12911, 12911,12913,29840,12913,12913,12913,12913,12913,12913,10694, 29840,10694,10694,10694,10694,10694,10694,20271,29840,20271, 20271,20271,20271,20271,20271,22102,22102,22102,22102,22102, 22102,22102,22102,14248,14248,14248,14248,14248,14248,14248, 14248,20312,29840,20312,20312,20312,20312,20312,20312,22155, 22155,22155,22155,22155,22155,22155,22155, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,10727,10727,10727,10727,10727, 10727,10727,10727,22187,22187,22187,22187,22187,22187,22187, 22187,22189,29840,22189,22189,22189,22189,22189,22189,22205, 22205,22205,22205,22205,22205,22205,22205,22207,29840,22207, 22207,22207,22207,22207,22207,14315,14315,14315,14315,14315, 14315,14315,14315,14317,29840,14317,14317,14317,14317,14317, 14317,14333,14333,14333,14333,14333,14333,14333,14333,14335, 29840,14335,14335,14335,14335,14335,14335,10767,29840,10767, 10767,10767,10767,10767,10767, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139,29840, 139, 139, 139, 139, 139, 139,19634, 29840,19634,19634,19634,19634,19634,19634,11846,29840,11846, 11846,11846,11846,11846,11846,22819,29840,22819,22819,22819, 22819,22819,22819,22319,29840,22319,22319,22319,22319,22319, 22319,22829,29840,22829,22829,22829,22829,22829,22829,21295, 29840,21295,21295,21295,21295,21295,21295,22327,29840,22327, 22327,22327,22327,22327,22327,22832,29840,22832,22832,22832, 22832,22832,22832,22837,29840,22837,22837,22837,22837,22837, 22837,22842,29840,22842,22842,22842,22842,22842,22842,22847, 29840,22847,22847,22847,22847,22847,22847,22851,29840,22851, 22851,22851,22851,22851,22851,22854,29840,22854,22854,22854, 22854,22854,22854,22857,29840,22857,22857,22857,22857,22857, 22857,22861,29840,22861,22861,22861,22861,22861,22861,22864, 29840,22864,22864,22864,22864,22864,22864,22867,29840,22867, 22867,22867,22867,22867,22867,22872,29840,22872,22872,22872, 22872,22872,22872, 139,29840, 139, 139, 139, 139, 139, 139,22880,22880,22880,22880,22880,22880,22880,22880, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225,22418,29840,22418, 22418,22418,22418,22418,22418,17300,29840,17300,17300,17300, 17300,17300,17300,21915,21915,21915,21915,21915,21915,21915, 21915, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597,22901,29840,22901, 22901,22901,22901,22901,22901,18340,29840,18340,18340,18340, 18340,18340,18340,21938,21938,21938,21938,21938,21938,21938, 21938, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,21457, 29840,21457,21457,21457,21457,21457,21457,20067,29840,20067, 20067,20067,20067,20067,20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844,29840,20844,20844,20844,20844,20844, 20844, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179, 15179,15179,15179,15179,15179,15179,15179,17438,29840,17438, 17438,17438,17438,17438,17438,20088,20088,20088,20088,20088, 20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857,20857,20857,20857,20857,20857,16359, 29840,16359,16359,16359,16359,16359,16359,22482,29840,22482, 22482,22482,22482,22482,22482,22942,29840,22942,22942,22942, 22942,22942,22942, 959,29840, 959, 959, 959, 959, 959, 959,21997,29840,21997,21997,21997,21997,21997,21997,22500, 29840,22500,22500,22500,22500,22500,22500,22506,29840,22506, 22506,22506,22506,22506,22506,12792,29840,12792,12792,12792, 12792,12792,12792, 246,29840, 246, 246, 246, 246, 246, 246, 260,29840, 260, 260, 260, 260, 260, 260, 265, 29840, 265, 265, 265, 265, 265, 265,10611,29840,10611, 10611,10611,10611,10611,10611, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,16526,29840,16526,16526,16526,16526,16526, 16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653,15380, 15380,15380,15380,15380,15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091,14091,14091, 14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041, 29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926, 20926,20926,20926,20928,29840,20928,20928,20928,20928,20928, 20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843,20935,29840,20935, 20935,20935,20935,20935,20935, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865,12865,12865,12865,12911, 12911,12911,12911,12911,12911,12911,12911,14164,14164,14164, 14164,14164,14164,14164,14164,12896,29840,12896,12896,12896, 12896,12896,12896,12894,12894,12894,12894,12894,12894,12894, 12894,12913,29840,12913,12913,12913,12913,12913,12913,10694, 29840,10694,10694,10694,10694,10694,10694,20271,29840,20271, 20271,20271,20271,20271,20271,22102,22102,22102,22102,22102, 22102,22102,22102,14248,14248,14248,14248,14248,14248,14248, 14248,20312,29840,20312,20312,20312,20312,20312,20312,22155, 22155,22155,22155,22155,22155,22155,22155, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,22187,22187,22187,22187,22187, 22187,22187,22187,22189,29840,22189,22189,22189,22189,22189, 22189,22205,22205,22205,22205,22205,22205,22205,22205,22207, 29840,22207,22207,22207,22207,22207,22207,10727,10727,10727, 10727,10727,10727,10727,10727,14315,14315,14315,14315,14315, 14315,14315,14315,14317,29840,14317,14317,14317,14317,14317, 14317,14333,14333,14333,14333,14333,14333,14333,14333,14335, 29840,14335,14335,14335,14335,14335,14335,10767,29840,10767, 10767,10767,10767,10767,10767, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139,29840, 139, 139, 139, 139, 139, 139,19634, 29840,19634,19634,19634,19634,19634,19634,11846,29840,11846, 11846,11846,11846,11846,11846,22819,29840,22819,22819,22819, 22819,22819,22819,22829,29840,22829,22829,22829,22829,22829, 22829,23265,29840,23265,23265,23265,23265,23265,23265,23270, 29840,23270,23270,23270,23270,23270,23270,23275,29840,23275, 23275,23275,23275,23275,23275,23280,29840,23280,23280,23280, 23280,23280,23280,23285,29840,23285,23285,23285,23285,23285, 23285,23289,29840,23289,23289,23289,23289,23289,23289,23293, 29840,23293,23293,23293,23293,23293,23293,23295,29840,23295, 23295,23295,23295,23295,23295,23300,29840,23300,23300,23300, 23300,23300,23300,23304,29840,23304,23304,23304,23304,23304, 23304,23308,29840,23308,23308,23308,23308,23308,23308,22880, 22880,22880,22880,22880,22880,22880,22880,22881,22881,22881, 22881,22881,22881,22881,22881, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,22418,29840,22418,22418,22418,22418,22418, 22418,17300,29840,17300,17300,17300,17300,17300,17300,21915, 21915,21915,21915,21915,21915,21915,21915,23321,29840,23321, 23321,23321,23321,23321,23321, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,22901,29840,22901,22901,22901,22901,22901, 22901,18340,29840,18340,18340,18340,18340,18340,18340, 5704, 29840, 5704, 5704, 5704, 5704, 5704, 5704,21938,21938,21938, 21938,21938,21938,21938,21938, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,20067,29840,20067,20067,20067,20067,20067, 20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844, 29840,20844,20844,20844,20844,20844,20844, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179,15179,15179,15179,15179, 15179,15179,15179,17438,29840,17438,17438,17438,17438,17438, 17438,20088,20088,20088,20088,20088,20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857, 20857,20857,20857,20857,20857,16359,29840,16359,16359,16359, 16359,16359,16359,22482,29840,22482,22482,22482,22482,22482, 22482,23370,29840,23370,23370,23370,23370,23370,23370, 959, 29840, 959, 959, 959, 959, 959, 959,21997,29840,21997, 21997,21997,21997,21997,21997,22506,29840,22506,22506,22506, 22506,22506,22506,12792,29840,12792,12792,12792,12792,12792, 12792, 246,29840, 246, 246, 246, 246, 246, 246, 260, 29840, 260, 260, 260, 260, 260, 260, 265,29840, 265, 265, 265, 265, 265, 265,10611,29840,10611,10611,10611, 10611,10611,10611,16526,29840,16526,16526,16526,16526,16526, 16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903,15380,15380,15380, 15380,15380,15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845,14091,14091,14091,14091,14091,14091,14091, 14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926,20926,20926, 20926,20928,29840,20928,20928,20928,20928,20928,20928, 8103, 29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843, 12843,12843,12843,12843,12843,20935,29840,20935,20935,20935, 20935,20935,20935, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865, 12865,12865,12865,12865,12865,12865,12865,12913,29840,12913, 12913,12913,12913,12913,12913,12896,29840,12896,12896,12896, 12896,12896,12896,12894,12894,12894,12894,12894,12894,12894, 12894,12911,12911,12911,12911,12911,12911,12911,12911,10694, 29840,10694,10694,10694,10694,10694,10694,20271,29840,20271, 20271,20271,20271,20271,20271,22102,22102,22102,22102,22102, 22102,22102,22102,14248,14248,14248,14248,14248,14248,14248, 14248,14333,14333,14333,14333,14333,14333,14333,14333,20312, 29840,20312,20312,20312,20312,20312,20312,22155,22155,22155, 22155,22155,22155,22155,22155, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,22187,22187,22187,22187,22187,22187,22187, 22187,22189,29840,22189,22189,22189,22189,22189,22189,22205, 22205,22205,22205,22205,22205,22205,22205,22207,29840,22207, 22207,22207,22207,22207,22207,10727,10727,10727,10727,10727, 10727,10727,10727,14317,29840,14317,14317,14317,14317,14317, 14317,14315,14315,14315,14315,14315,14315,14315,14315,14335, 29840,14335,14335,14335,14335,14335,14335,10767,29840,10767, 10767,10767,10767,10767,10767, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139,29840, 139, 139, 139, 139, 139, 139,19634, 29840,19634,19634,19634,19634,19634,19634,11846,29840,11846, 11846,11846,11846,11846,11846,22829,29840,22829,22829,22829, 22829,22829,22829,23676,29840,23676,23676,23676,23676,23676, 23676,23681,29840,23681,23681,23681,23681,23681,23681,23686, 29840,23686,23686,23686,23686,23686,23686,23691,29840,23691, 23691,23691,23691,23691,23691,23696,29840,23696,23696,23696, 23696,23696,23696,23701,29840,23701,23701,23701,23701,23701, 23701,23705,29840,23705,23705,23705,23705,23705,23705,23708, 29840,23708,23708,23708,23708,23708,23708,23711,29840,23711, 23711,23711,23711,23711,23711,23717,29840,23717,23717,23717, 23717,23717,23717,23722,29840,23722,23722,23722,23722,23722, 23722,23726,29840,23726,23726,23726,23726,23726,23726,23729, 29840,23729,23729,23729,23729,23729,23729,23732,29840,23732, 23732,23732,23732,23732,23732, 139,29840, 139, 139, 139, 139, 139, 139,22880,22880,22880,22880,22880,22880,22880, 22880, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,22418, 29840,22418,22418,22418,22418,22418,22418,17300,29840,17300, 17300,17300,17300,17300,17300,21915,21915,21915,21915,21915, 21915,21915,21915,23321,29840,23321,23321,23321,23321,23321, 23321, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,22901, 29840,22901,22901,22901,22901,22901,22901,18340,29840,18340, 18340,18340,18340,18340,18340, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704,21938,21938,21938,21938,21938,21938,21938, 21938, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,23766, 29840,23766,23766,23766,23766,23766,23766,20067,29840,20067, 20067,20067,20067,20067,20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844,29840,20844,20844,20844,20844,20844, 20844, 7167,29840, 7167, 7167, 7167, 7167, 7167, 7167,15179, 15179,15179,15179,15179,15179,15179,15179,17438,29840,17438, 17438,17438,17438,17438,17438,23778,23778,23778,23778,23778, 23778,23778,23778,20088,20088,20088,20088,20088,20088,20088, 20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857, 29840,20857,20857,20857,20857,20857,20857,16359,29840,16359, 16359,16359,16359,16359,16359,22482,29840,22482,22482,22482, 22482,22482,22482,23792,29840,23792,23792,23792,23792,23792, 23792, 959,29840, 959, 959, 959, 959, 959, 959,21997, 29840,21997,21997,21997,21997,21997,21997,22500,29840,22500, 22500,22500,22500,22500,22500,22506,29840,22506,22506,22506, 22506,22506,22506,12792,29840,12792,12792,12792,12792,12792, 12792,23839,29840,23839,23839,23839,23839,23839,23839, 246, 29840, 246, 246, 246, 246, 246, 246,23845,29840,23845, 23845,23845,23845,23845,23845,23849,29840,23849,23849,23849, 23849,23849,23849,10611,29840,10611,10611,10611,10611,10611, 10611,16526,29840,16526,16526,16526,16526,16526,16526, 9653, 29840, 9653, 9653, 9653, 9653, 9653, 9653, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,15380,15380,15380,15380,15380, 15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 265,29840, 265, 265, 265, 265, 265, 265,14091, 14091,14091,14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926, 29840,20926,20926,20926,20926,20926,20926,20928,29840,20928, 20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,20935,29840,20935,20935,20935,20935,20935,20935, 8109, 29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865, 12865,12865,12865,12896,29840,12896,12896,12896,12896,12896, 12896,12894,12894,12894,12894,12894,12894,12894,12894,12913, 29840,12913,12913,12913,12913,12913,12913,12911,12911,12911, 12911,12911,12911,12911,12911,10694,29840,10694,10694,10694, 10694,10694,10694,20271,29840,20271,20271,20271,20271,20271, 20271,22102,22102,22102,22102,22102,22102,22102,22102,14248, 14248,14248,14248,14248,14248,14248,14248,20312,29840,20312, 20312,20312,20312,20312,20312,22155,22155,22155,22155,22155, 22155,22155,22155, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,22187,22187,22187,22187,22187,22187,22187,22187,22189, 29840,22189,22189,22189,22189,22189,22189,22205,22205,22205, 22205,22205,22205,22205,22205,22207,29840,22207,22207,22207, 22207,22207,22207,10727,10727,10727,10727,10727,10727,10727, 10727,14335,29840,14335,14335,14335,14335,14335,14335,14317, 29840,14317,14317,14317,14317,14317,14317,14315,14315,14315, 14315,14315,14315,14315,14315,14333,14333,14333,14333,14333, 14333,14333,14333,10767,29840,10767,10767,10767,10767,10767, 10767, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783, 139,29840, 139, 139, 139, 139, 139, 139,19634,29840,19634,19634,19634, 19634,19634,19634,11846,29840,11846,11846,11846,11846,11846, 11846,22829,29840,22829,22829,22829,22829,22829,22829,23676, 29840,23676,23676,23676,23676,23676,23676,24094,29840,24094, 24094,24094,24094,24094,24094,24099,29840,24099,24099,24099, 24099,24099,24099,24104,29840,24104,24104,24104,24104,24104, 24104,23732,29840,23732,23732,23732,23732,23732,23732,22880, 22880,22880,22880,22880,22880,22880,22880, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,22418,29840,22418,22418,22418, 22418,22418,22418,17300,29840,17300,17300,17300,17300,17300, 17300,23321,29840,23321,23321,23321,23321,23321,23321, 1597, 29840, 1597, 1597, 1597, 1597, 1597, 1597,22901,29840,22901, 22901,22901,22901,22901,22901,18340,29840,18340,18340,18340, 18340,18340,18340, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,23766, 29840,23766,23766,23766,23766,23766,23766,20067,29840,20067, 20067,20067,20067,20067,20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844,29840,20844,20844,20844,20844,20844, 20844,15179,15179,15179,15179,15179,15179,15179,15179,17438, 29840,17438,17438,17438,17438,17438,17438,23778,23778,23778, 23778,23778,23778,23778,23778,19634,29840,19634,19634,19634, 19634,19634,19634,20088,20088,20088,20088,20088,20088,20088, 20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857, 29840,20857,20857,20857,20857,20857,20857,16359,29840,16359, 16359,16359,16359,16359,16359,22482,29840,22482,22482,22482, 22482,22482,22482,24161,29840,24161,24161,24161,24161,24161, 24161, 959,29840, 959, 959, 959, 959, 959, 959,21997, 29840,21997,21997,21997,21997,21997,21997,22506,29840,22506, 22506,22506,22506,22506,22506,22500,29840,22500,22500,22500, 22500,22500,22500,12792,29840,12792,12792,12792,12792,12792, 12792,23839,29840,23839,23839,23839,23839,23839,23839, 246, 29840, 246, 246, 246, 246, 246, 246,23845,29840,23845, 23845,23845,23845,23845,23845,23849,29840,23849,23849,23849, 23849,23849,23849,10611,29840,10611,10611,10611,10611,10611, 10611,16526,29840,16526,16526,16526,16526,16526,16526, 9653, 29840, 9653, 9653, 9653, 9653, 9653, 9653, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,15380,15380,15380,15380,15380, 15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 265,29840, 265, 265, 265, 265, 265, 265,14091, 14091,14091,14091,14091,14091,14091,14091, 8067, 8067, 8067, 8067, 8067, 8067, 8067, 8067,24245,29840,24245,24245,24245, 24245,24245,24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043, 29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926, 20926,20926,20926,20926,20926,20928,29840,20928,20928,20928, 20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843,12843,20935, 29840,20935,20935,20935,20935,20935,20935, 8109,29840, 8109, 8109, 8109, 8109, 8109, 8109, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865,12865,12865, 12865,12896,29840,12896,12896,12896,12896,12896,12896,12894, 12894,12894,12894,12894,12894,12894,12894,12913,29840,12913, 12913,12913,12913,12913,12913,12911,12911,12911,12911,12911, 12911,12911,12911,10694,29840,10694,10694,10694,10694,10694, 10694,20271,29840,20271,20271,20271,20271,20271,20271,22102, 22102,22102,22102,22102,22102,22102,22102,14248,14248,14248, 14248,14248,14248,14248,14248,20312,29840,20312,20312,20312, 20312,20312,20312,22155,22155,22155,22155,22155,22155,22155, 22155, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,22187, 22187,22187,22187,22187,22187,22187,22187,22189,29840,22189, 22189,22189,22189,22189,22189,22205,22205,22205,22205,22205, 22205,22205,22205,22207,29840,22207,22207,22207,22207,22207, 22207,10727,10727,10727,10727,10727,10727,10727,10727,14317, 29840,14317,14317,14317,14317,14317,14317,14315,14315,14315, 14315,14315,14315,14315,14315,14335,29840,14335,14335,14335, 14335,14335,14335,14333,14333,14333,14333,14333,14333,14333, 14333,10767,29840,10767,10767,10767,10767,10767,10767, 776, 29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783,19634,29840,19634,19634,19634, 19634,19634,19634,11846,29840,11846,11846,11846,11846,11846, 11846, 139,29840, 139, 139, 139, 139, 139, 139,24447, 29840,24447,24447,24447,24447,24447,24447,23732,29840,23732, 23732,23732,23732,23732,23732,22880,22880,22880,22880,22880, 22880,22880,22880, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,22418,29840,22418,22418,22418,22418,22418,22418,17300, 29840,17300,17300,17300,17300,17300,17300,23321,29840,23321, 23321,23321,23321,23321,23321, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,22901,29840,22901,22901,22901,22901,22901, 22901,18340,29840,18340,18340,18340,18340,18340,18340, 5704, 29840, 5704, 5704, 5704, 5704, 5704, 5704, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,23766,29840,23766,23766,23766, 23766,23766,23766,20067,29840,20067,20067,20067,20067,20067, 20067, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844, 29840,20844,20844,20844,20844,20844,20844,15179,15179,15179, 15179,15179,15179,15179,15179,17438,29840,17438,17438,17438, 17438,17438,17438,23778,23778,23778,23778,23778,23778,23778, 23778,20088,20088,20088,20088,20088,20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857, 20857,20857,20857,20857,20857,16359,29840,16359,16359,16359, 16359,16359,16359,22482,29840,22482,22482,22482,22482,22482, 22482,24498,29840,24498,24498,24498,24498,24498,24498, 959, 29840, 959, 959, 959, 959, 959, 959,22506,29840,22506, 22506,22506,22506,22506,22506,22500,29840,22500,22500,22500, 22500,22500,22500,12792,29840,12792,12792,12792,12792,12792, 12792,23839,29840,23839,23839,23839,23839,23839,23839, 246, 29840, 246, 246, 246, 246, 246, 246,23845,29840,23845, 23845,23845,23845,23845,23845,23849,29840,23849,23849,23849, 23849,23849,23849,10611,29840,10611,10611,10611,10611,10611, 10611,16526,29840,16526,16526,16526,16526,16526,16526, 9653, 29840, 9653, 9653, 9653, 9653, 9653, 9653, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,15380,15380,15380,15380,15380, 15380,15380,15380, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 8845, 265,29840, 265, 265, 265, 265, 265, 265,14091, 14091,14091,14091,14091,14091,14091,14091,24245,29840,24245, 24245,24245,24245,24245,24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926, 29840,20926,20926,20926,20926,20926,20926,20928,29840,20928, 20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,20935,29840,20935,20935,20935,20935,20935,20935, 9703, 29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865, 12865,12865,12865,12865,12865,12896,29840,12896,12896,12896, 12896,12896,12896,12894,12894,12894,12894,12894,12894,12894, 12894,12913,29840,12913,12913,12913,12913,12913,12913,12911, 12911,12911,12911,12911,12911,12911,12911,10694,29840,10694, 10694,10694,10694,10694,10694,20271,29840,20271,20271,20271, 20271,20271,20271,22102,22102,22102,22102,22102,22102,22102, 22102,14248,14248,14248,14248,14248,14248,14248,14248,20312, 29840,20312,20312,20312,20312,20312,20312,22155,22155,22155, 22155,22155,22155,22155,22155, 8136,29840, 8136, 8136, 8136, 8136, 8136, 8136,22187,22187,22187,22187,22187,22187,22187, 22187,22189,29840,22189,22189,22189,22189,22189,22189,22205, 22205,22205,22205,22205,22205,22205,22205,22207,29840,22207, 22207,22207,22207,22207,22207,10727,10727,10727,10727,10727, 10727,10727,10727,14317,29840,14317,14317,14317,14317,14317, 14317,14315,14315,14315,14315,14315,14315,14315,14315,14335, 29840,14335,14335,14335,14335,14335,14335,14333,14333,14333, 14333,14333,14333,14333,14333,10767,29840,10767,10767,10767, 10767,10767,10767, 776,29840, 776, 776, 776, 776, 776, 776, 783, 783, 783, 783, 783, 783, 783, 783,19634, 29840,19634,19634,19634,19634,19634,19634,11846,29840,11846, 11846,11846,11846,11846,11846, 139,29840, 139, 139, 139, 139, 139, 139,24765,29840,24765,24765,24765,24765,24765, 24765,23732,29840,23732,23732,23732,23732,23732,23732, 1225, 29840, 1225, 1225, 1225, 1225, 1225, 1225,22418,29840,22418, 22418,22418,22418,22418,22418,17300,29840,17300,17300,17300, 17300,17300,17300,23321,29840,23321,23321,23321,23321,23321, 23321, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,22901, 29840,22901,22901,22901,22901,22901,22901,18340,29840,18340, 18340,18340,18340,18340,18340, 5704,29840, 5704, 5704, 5704, 5704, 5704, 5704, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,23766,29840,23766,23766,23766,23766,23766,23766,20067, 29840,20067,20067,20067,20067,20067,20067,24796,29840,24796, 24796,24796,24796,24796,24796, 1250,29840, 1250, 1250, 1250, 1250, 1250, 1250,20844,29840,20844,20844,20844,20844,20844, 20844,15179,15179,15179,15179,15179,15179,15179,15179,17438, 29840,17438,17438,17438,17438,17438,17438,23778,23778,23778, 23778,23778,23778,23778,23778,20088,20088,20088,20088,20088, 20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857,20857,20857,20857,20857,20857,16359, 29840,16359,16359,16359,16359,16359,16359,22482,29840,22482, 22482,22482,22482,22482,22482,24814,29840,24814,24814,24814, 24814,24814,24814,24822,29840,24822,24822,24822,24822,24822, 24822, 959,29840, 959, 959, 959, 959, 959, 959,21997, 29840,21997,21997,21997,21997,21997,21997,22500,29840,22500, 22500,22500,22500,22500,22500,12792,29840,12792,12792,12792, 12792,12792,12792,23839,29840,23839,23839,23839,23839,23839, 23839, 246,29840, 246, 246, 246, 246, 246, 246,23845, 29840,23845,23845,23845,23845,23845,23845,23849,29840,23849, 23849,23849,23849,23849,23849,10611,29840,10611,10611,10611, 10611,10611,10611,16526,29840,16526,16526,16526,16526,16526, 16526, 9653,29840, 9653, 9653, 9653, 9653, 9653, 9653, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903,15380,15380,15380, 15380,15380,15380,15380,15380, 265,29840, 265, 265, 265, 265, 265, 265,14091,14091,14091,14091,14091,14091,14091, 14091,24245,29840,24245,24245,24245,24245,24245,24245, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926,20926,20926, 20926,20928,29840,20928,20928,20928,20928,20928,20928, 8103, 29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843, 12843,12843,12843,12843,12843,20935,29840,20935,20935,20935, 20935,20935,20935, 9703,29840, 9703, 9703, 9703, 9703, 9703, 9703,12865,12865,12865,12865,12865,12865,12865,12865,12896, 29840,12896,12896,12896,12896,12896,12896,12894,12894,12894, 12894,12894,12894,12894,12894,12913,29840,12913,12913,12913, 12913,12913,12913,12911,12911,12911,12911,12911,12911,12911, 12911,10694,29840,10694,10694,10694,10694,10694,10694,20271, 29840,20271,20271,20271,20271,20271,20271,22102,22102,22102, 22102,22102,22102,22102,22102,14248,14248,14248,14248,14248, 14248,14248,14248,20312,29840,20312,20312,20312,20312,20312, 20312,22155,22155,22155,22155,22155,22155,22155,22155,22187, 22187,22187,22187,22187,22187,22187,22187,22189,29840,22189, 22189,22189,22189,22189,22189,22205,22205,22205,22205,22205, 22205,22205,22205,22207,29840,22207,22207,22207,22207,22207, 22207,10727,10727,10727,10727,10727,10727,10727,10727,14317, 29840,14317,14317,14317,14317,14317,14317,14315,14315,14315, 14315,14315,14315,14315,14315,14335,29840,14335,14335,14335, 14335,14335,14335,14333,14333,14333,14333,14333,14333,14333, 14333,10767,29840,10767,10767,10767,10767,10767,10767,25071, 29840,25071,25071,25071,25071,25071,25071,25076,25076,25076, 25076,25076,25076,25076,25076,19634,29840,19634,19634,19634, 19634,19634,19634,11846,29840,11846,11846,11846,11846,11846, 11846, 139,29840, 139, 139, 139, 139, 139, 139,24765, 29840,24765,24765,24765,24765,24765,24765,23732,29840,23732, 23732,23732,23732,23732,23732, 1225,29840, 1225, 1225, 1225, 1225, 1225, 1225,22418,29840,22418,22418,22418,22418,22418, 22418,17300,29840,17300,17300,17300,17300,17300,17300,23321, 29840,23321,23321,23321,23321,23321,23321, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,22901,29840,22901,22901,22901, 22901,22901,22901,18340,29840,18340,18340,18340,18340,18340, 18340, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,23766, 29840,23766,23766,23766,23766,23766,23766,20067,29840,20067, 20067,20067,20067,20067,20067,25105,29840,25105,25105,25105, 25105,25105,25105,24796,29840,24796,24796,24796,24796,24796, 24796,25111,29840,25111,25111,25111,25111,25111,25111,20844, 29840,20844,20844,20844,20844,20844,20844,15179,15179,15179, 15179,15179,15179,15179,15179,17438,29840,17438,17438,17438, 17438,17438,17438,23778,23778,23778,23778,23778,23778,23778, 23778,20088,20088,20088,20088,20088,20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857, 20857,20857,20857,20857,20857,16359,29840,16359,16359,16359, 16359,16359,16359,22482,29840,22482,22482,22482,22482,22482, 22482,25131,29840,25131,25131,25131,25131,25131,25131,24822, 29840,24822,24822,24822,24822,24822,24822,22500,29840,22500, 22500,22500,22500,22500,22500,12792,29840,12792,12792,12792, 12792,12792,12792,23839,29840,23839,23839,23839,23839,23839, 23839, 246,29840, 246, 246, 246, 246, 246, 246,23845, 29840,23845,23845,23845,23845,23845,23845,23849,29840,23849, 23849,23849,23849,23849,23849,10611,29840,10611,10611,10611, 10611,10611,10611,16526,29840,16526,16526,16526,16526,16526, 16526, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,15380, 15380,15380,15380,15380,15380,15380,15380, 265,29840, 265, 265, 265, 265, 265, 265,14091,14091,14091,14091,14091, 14091,14091,14091,24245,29840,24245,24245,24245,24245,24245, 24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041, 29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926, 20926,20926,20926,20928,29840,20928,20928,20928,20928,20928, 20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843,20935,29840,20935, 20935,20935,20935,20935,20935,12865,12865,12865,12865,12865, 12865,12865,12865,12896,29840,12896,12896,12896,12896,12896, 12896,12894,12894,12894,12894,12894,12894,12894,12894,12913, 29840,12913,12913,12913,12913,12913,12913,12911,12911,12911, 12911,12911,12911,12911,12911,20271,29840,20271,20271,20271, 20271,20271,20271,10694,29840,10694,10694,10694,10694,10694, 10694,22102,22102,22102,22102,22102,22102,22102,22102,14248, 14248,14248,14248,14248,14248,14248,14248,20312,29840,20312, 20312,20312,20312,20312,20312,22155,22155,22155,22155,22155, 22155,22155,22155,22187,22187,22187,22187,22187,22187,22187, 22187,22189,29840,22189,22189,22189,22189,22189,22189,22205, 22205,22205,22205,22205,22205,22205,22205,22207,29840,22207, 22207,22207,22207,22207,22207,10727,10727,10727,10727,10727, 10727,10727,10727,14317,29840,14317,14317,14317,14317,14317, 14317,14315,14315,14315,14315,14315,14315,14315,14315,14335, 29840,14335,14335,14335,14335,14335,14335,14333,14333,14333, 14333,14333,14333,14333,14333,10767,29840,10767,10767,10767, 10767,10767,10767,25071,29840,25071,25071,25071,25071,25071, 25071,25076,25076,25076,25076,25076,25076,25076,25076,19634, 29840,19634,19634,19634,19634,19634,19634,11846,29840,11846, 11846,11846,11846,11846,11846, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732,23732,23732, 23732,25382,29840,25382,25382,25382,25382,25382,25382,22418, 29840,22418,22418,22418,22418,22418,22418,17300,29840,17300, 17300,17300,17300,17300,17300,23321,29840,23321,23321,23321, 23321,23321,23321, 1597,29840, 1597, 1597, 1597, 1597, 1597, 1597,22901,29840,22901,22901,22901,22901,22901,22901,18340, 29840,18340,18340,18340,18340,18340,18340, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,23766,29840,23766,23766,23766, 23766,23766,23766,20067,29840,20067,20067,20067,20067,20067, 20067,25105,29840,25105,25105,25105,25105,25105,25105,24796, 29840,24796,24796,24796,24796,24796,24796,25111,29840,25111, 25111,25111,25111,25111,25111,20844,29840,20844,20844,20844, 20844,20844,20844,15179,15179,15179,15179,15179,15179,15179, 15179,17438,29840,17438,17438,17438,17438,17438,17438,23778, 23778,23778,23778,23778,23778,23778,23778,20088,20088,20088, 20088,20088,20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857,20857,20857,20857,20857, 20857,16359,29840,16359,16359,16359,16359,16359,16359,22482, 29840,22482,22482,22482,22482,22482,22482,25427,29840,25427, 25427,25427,25427,25427,25427,24822,29840,24822,24822,24822, 24822,24822,24822,22500,29840,22500,22500,22500,22500,22500, 22500,12792,29840,12792,12792,12792,12792,12792,12792,23839, 29840,23839,23839,23839,23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845, 23845,23845,23845,23849,29840,23849,23849,23849,23849,23849, 23849,16526,29840,16526,16526,16526,16526,16526,16526, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611, 10611,10611,10611,10611,10611,15380,15380,15380,15380,15380, 15380,15380,15380, 265,29840, 265, 265, 265, 265, 265, 265,14091,14091,14091,14091,14091,14091,14091,14091,24245, 29840,24245,24245,24245,24245,24245,24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926,20926,20926,20926,20928, 29840,20928,20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,20935,29840,20935,20935,20935,20935,20935, 20935,12865,12865,12865,12865,12865,12865,12865,12865,12896, 29840,12896,12896,12896,12896,12896,12896,12894,12894,12894, 12894,12894,12894,12894,12894,12913,29840,12913,12913,12913, 12913,12913,12913,12911,12911,12911,12911,12911,12911,12911, 12911,10694,29840,10694,10694,10694,10694,10694,10694,25551, 29840,25551,25551,25551,25551,25551,25551,20271,29840,20271, 20271,20271,20271,20271,20271,22102,22102,22102,22102,22102, 22102,22102,22102,14248,14248,14248,14248,14248,14248,14248, 14248,20312,29840,20312,20312,20312,20312,20312,20312,22155, 22155,22155,22155,22155,22155,22155,22155,22187,22187,22187, 22187,22187,22187,22187,22187,22189,29840,22189,22189,22189, 22189,22189,22189,22205,22205,22205,22205,22205,22205,22205, 22205,22207,29840,22207,22207,22207,22207,22207,22207,10727, 10727,10727,10727,10727,10727,10727,10727,14317,29840,14317, 14317,14317,14317,14317,14317,14315,14315,14315,14315,14315, 14315,14315,14315,14335,29840,14335,14335,14335,14335,14335, 14335,14333,14333,14333,14333,14333,14333,14333,14333,25071, 29840,25071,25071,25071,25071,25071,25071,25076,25076,25076, 25076,25076,25076,25076,25076,23321,29840,23321,23321,23321, 23321,23321,23321,19634,29840,19634,19634,19634,19634,19634, 19634,11846,29840,11846,11846,11846,11846,11846,11846, 139, 29840, 139, 139, 139, 139, 139, 139,23732,29840,23732, 23732,23732,23732,23732,23732,25382,29840,25382,25382,25382, 25382,25382,25382,22418,29840,22418,22418,22418,22418,22418, 22418,17300,29840,17300,17300,17300,17300,17300,17300,25682, 29840,25682,25682,25682,25682,25682,25682,22901,29840,22901, 22901,22901,22901,22901,22901,18340,29840,18340,18340,18340, 18340,18340,18340, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,23766,29840,23766,23766,23766,23766,23766,23766,20067, 29840,20067,20067,20067,20067,20067,20067,25105,29840,25105, 25105,25105,25105,25105,25105,24796,29840,24796,24796,24796, 24796,24796,24796,25111,29840,25111,25111,25111,25111,25111, 25111,20844,29840,20844,20844,20844,20844,20844,20844,15179, 15179,15179,15179,15179,15179,15179,15179,17438,29840,17438, 17438,17438,17438,17438,17438,23778,23778,23778,23778,23778, 23778,23778,23778,20088,20088,20088,20088,20088,20088,20088, 20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857, 29840,20857,20857,20857,20857,20857,20857,16359,29840,16359, 16359,16359,16359,16359,16359,22482,29840,22482,22482,22482, 22482,22482,22482,25718,29840,25718,25718,25718,25718,25718, 25718,24822,29840,24822,24822,24822,24822,24822,24822,12792, 29840,12792,12792,12792,12792,12792,12792,23839,29840,23839, 23839,23839,23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845,23845,23845, 23845,23849,29840,23849,23849,23849,23849,23849,23849,16526, 29840,16526,16526,16526,16526,16526,16526, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611, 10611,10611,10611,15380,15380,15380,15380,15380,15380,15380, 15380, 265,29840, 265, 265, 265, 265, 265, 265,14091, 14091,14091,14091,14091,14091,14091,14091,24245,29840,24245, 24245,24245,24245,24245,24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926, 29840,20926,20926,20926,20926,20926,20926,20928,29840,20928, 20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,20935,29840,20935,20935,20935,20935,20935,20935,12865, 12865,12865,12865,12865,12865,12865,12865,12896,29840,12896, 12896,12896,12896,12896,12896,12894,12894,12894,12894,12894, 12894,12894,12894,12913,29840,12913,12913,12913,12913,12913, 12913,12911,12911,12911,12911,12911,12911,12911,12911,25551, 29840,25551,25551,25551,25551,25551,25551,20271,29840,20271, 20271,20271,20271,20271,20271,22102,22102,22102,22102,22102, 22102,22102,22102,14248,14248,14248,14248,14248,14248,14248, 14248,20312,29840,20312,20312,20312,20312,20312,20312,22155, 22155,22155,22155,22155,22155,22155,22155,22187,22187,22187, 22187,22187,22187,22187,22187,22189,29840,22189,22189,22189, 22189,22189,22189,22205,22205,22205,22205,22205,22205,22205, 22205,22207,29840,22207,22207,22207,22207,22207,22207,14317, 29840,14317,14317,14317,14317,14317,14317,14315,14315,14315, 14315,14315,14315,14315,14315,14335,29840,14335,14335,14335, 14335,14335,14335,14333,14333,14333,14333,14333,14333,14333, 14333,25071,29840,25071,25071,25071,25071,25071,25071,23321, 29840,23321,23321,23321,23321,23321,23321,25076,25076,25076, 25076,25076,25076,25076,25076,19634,29840,19634,19634,19634, 19634,19634,19634, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732,23732,23732,23732,25382, 29840,25382,25382,25382,25382,25382,25382,22418,29840,22418, 22418,22418,22418,22418,22418,17300,29840,17300,17300,17300, 17300,17300,17300,25682,29840,25682,25682,25682,25682,25682, 25682,22901,29840,22901,22901,22901,22901,22901,22901,18340, 29840,18340,18340,18340,18340,18340,18340, 2555,29840, 2555, 2555, 2555, 2555, 2555, 2555,23766,29840,23766,23766,23766, 23766,23766,23766,20067,29840,20067,20067,20067,20067,20067, 20067,25105,29840,25105,25105,25105,25105,25105,25105,24796, 29840,24796,24796,24796,24796,24796,24796,25111,29840,25111, 25111,25111,25111,25111,25111,20844,29840,20844,20844,20844, 20844,20844,20844,15179,15179,15179,15179,15179,15179,15179, 15179,17438,29840,17438,17438,17438,17438,17438,17438,23778, 23778,23778,23778,23778,23778,23778,23778,20088,20088,20088, 20088,20088,20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857,20857,20857,20857,20857, 20857,16359,29840,16359,16359,16359,16359,16359,16359,22482, 29840,22482,22482,22482,22482,22482,22482,26000,29840,26000, 26000,26000,26000,26000,26000,24822,29840,24822,24822,24822, 24822,24822,24822,23839,29840,23839,23839,23839,23839,23839, 23839, 246,29840, 246, 246, 246, 246, 246, 246,23845, 29840,23845,23845,23845,23845,23845,23845,23849,29840,23849, 23849,23849,23849,23849,23849,16526,29840,16526,16526,16526, 16526,16526,16526, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611,10611,10611,10611,15380, 15380,15380,15380,15380,15380,15380,15380, 265,29840, 265, 265, 265, 265, 265, 265,14091,14091,14091,14091,14091, 14091,14091,14091,24245,29840,24245,24245,24245,24245,24245, 24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041, 29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926,29840,20926,20926,20926, 20926,20926,20926,20928,29840,20928,20928,20928,20928,20928, 20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843,20935,29840,20935, 20935,20935,20935,20935,20935,26108,29840,26108,26108,26108, 26108,26108,26108,12896,29840,12896,12896,12896,12896,12896, 12896,12913,29840,12913,12913,12913,12913,12913,12913,25551, 29840,25551,25551,25551,25551,25551,25551,20271,29840,20271, 20271,20271,20271,20271,20271,22102,22102,22102,22102,22102, 22102,22102,22102,14248,14248,14248,14248,14248,14248,14248, 14248,20312,29840,20312,20312,20312,20312,20312,20312,22155, 22155,22155,22155,22155,22155,22155,22155,22187,22187,22187, 22187,22187,22187,22187,22187,22189,29840,22189,22189,22189, 22189,22189,22189,22205,22205,22205,22205,22205,22205,22205, 22205,22207,29840,22207,22207,22207,22207,22207,22207,14317, 29840,14317,14317,14317,14317,14317,14317,14315,14315,14315, 14315,14315,14315,14315,14315,14335,29840,14335,14335,14335, 14335,14335,14335,14333,14333,14333,14333,14333,14333,14333, 14333,25071,29840,25071,25071,25071,25071,25071,25071,23321, 29840,23321,23321,23321,23321,23321,23321,25076,25076,25076, 25076,25076,25076,25076,25076,19634,29840,19634,19634,19634, 19634,19634,19634, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732,23732,23732,23732,25382, 29840,25382,25382,25382,25382,25382,25382,22418,29840,22418, 22418,22418,22418,22418,22418,17300,29840,17300,17300,17300, 17300,17300,17300,25682,29840,25682,25682,25682,25682,25682, 25682,22901,29840,22901,22901,22901,22901,22901,22901,18340, 29840,18340,18340,18340,18340,18340,18340,26232,29840,26232, 26232,26232,26232,26232,26232,23766,29840,23766,23766,23766, 23766,23766,23766,20067,29840,20067,20067,20067,20067,20067, 20067,25105,29840,25105,25105,25105,25105,25105,25105,25111, 29840,25111,25111,25111,25111,25111,25111,20844,29840,20844, 20844,20844,20844,20844,20844,15179,15179,15179,15179,15179, 15179,15179,15179,17438,29840,17438,17438,17438,17438,17438, 17438,23778,23778,23778,23778,23778,23778,23778,23778,20088, 20088,20088,20088,20088,20088,20088,20088, 3741, 3741, 3741, 3741, 3741, 3741, 3741, 3741,20857,29840,20857,20857,20857, 20857,20857,20857,16359,29840,16359,16359,16359,16359,16359, 16359,22482,29840,22482,22482,22482,22482,22482,22482,26256, 29840,26256,26256,26256,26256,26256,26256,24822,29840,24822, 24822,24822,24822,24822,24822,23839,29840,23839,23839,23839, 23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845,23845,23845,23845,23849, 29840,23849,23849,23849,23849,23849,23849,16526,29840,16526, 16526,16526,16526,16526,16526, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611,10611,10611, 10611,15380,15380,15380,15380,15380,15380,15380,15380, 265, 29840, 265, 265, 265, 265, 265, 265,24245,29840,24245, 24245,24245,24245,24245,24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926, 29840,20926,20926,20926,20926,20926,20926,20928,29840,20928, 20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,20935,29840,20935,20935,20935,20935,20935,20935,26108, 29840,26108,26108,26108,26108,26108,26108,26368,29840,26368, 26368,26368,26368,26368,26368,25551,29840,25551,25551,25551, 25551,25551,25551,26383,26383,26383,26383,26383,26383,26383, 26383,20271,29840,20271,20271,20271,20271,20271,20271,22102, 22102,22102,22102,22102,22102,22102,22102,22205,22205,22205, 22205,22205,22205,22205,22205,14248,14248,14248,14248,14248, 14248,14248,14248,20312,29840,20312,20312,20312,20312,20312, 20312,22155,22155,22155,22155,22155,22155,22155,22155,26424, 26424,26424,26424,26424,26424,26424,26424,26442,26442,26442, 26442,26442,26442,26442,26442,22189,29840,22189,22189,22189, 22189,22189,22189,22187,22187,22187,22187,22187,22187,22187, 22187,22207,29840,22207,22207,22207,22207,22207,22207,14317, 29840,14317,14317,14317,14317,14317,14317,14315,14315,14315, 14315,14315,14315,14315,14315,14335,29840,14335,14335,14335, 14335,14335,14335,14333,14333,14333,14333,14333,14333,14333, 14333,25071,29840,25071,25071,25071,25071,25071,25071,26494, 29840,26494,26494,26494,26494,26494,26494,23321,29840,23321, 23321,23321,23321,23321,23321,25076,25076,25076,25076,25076, 25076,25076,25076,19634,29840,19634,19634,19634,19634,19634, 19634, 139,29840, 139, 139, 139, 139, 139, 139,23732, 29840,23732,23732,23732,23732,23732,23732,25382,29840,25382, 25382,25382,25382,25382,25382,22418,29840,22418,22418,22418, 22418,22418,22418,17300,29840,17300,17300,17300,17300,17300, 17300,25682,29840,25682,25682,25682,25682,25682,25682,22901, 29840,22901,22901,22901,22901,22901,22901,18340,29840,18340, 18340,18340,18340,18340,18340,26232,29840,26232,26232,26232, 26232,26232,26232,23766,29840,23766,23766,23766,23766,23766, 23766,20067,29840,20067,20067,20067,20067,20067,20067,25105, 29840,25105,25105,25105,25105,25105,25105,25111,29840,25111, 25111,25111,25111,25111,25111,20844,29840,20844,20844,20844, 20844,20844,20844,17438,29840,17438,17438,17438,17438,17438, 17438,23778,23778,23778,23778,23778,23778,23778,23778,20088, 20088,20088,20088,20088,20088,20088,20088,26536,26536,26536, 26536,26536,26536,26536,26536,20857,29840,20857,20857,20857, 20857,20857,20857,16359,29840,16359,16359,16359,16359,16359, 16359,22482,29840,22482,22482,22482,22482,22482,22482,26544, 29840,26544,26544,26544,26544,26544,26544,26548,29840,26548, 26548,26548,26548,26548,26548,24822,29840,24822,24822,24822, 24822,24822,24822,23839,29840,23839,23839,23839,23839,23839, 23839, 246,29840, 246, 246, 246, 246, 246, 246,23845, 29840,23845,23845,23845,23845,23845,23845,23849,29840,23849, 23849,23849,23849,23849,23849,16526,29840,16526,16526,16526, 16526,16526,16526, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611,10611,10611,10611, 265, 29840, 265, 265, 265, 265, 265, 265,24245,29840,24245, 24245,24245,24245,24245,24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,20926, 29840,20926,20926,20926,20926,20926,20926,20928,29840,20928, 20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,20935,29840,20935,20935,20935,20935,20935,20935,26108, 29840,26108,26108,26108,26108,26108,26108,26368,29840,26368, 26368,26368,26368,26368,26368,25551,29840,25551,25551,25551, 25551,25551,25551,26383,26383,26383,26383,26383,26383,26383, 26383,20271,29840,20271,20271,20271,20271,20271,20271,22102, 22102,22102,22102,22102,22102,22102,22102,20312,29840,20312, 20312,20312,20312,20312,20312,22155,22155,22155,22155,22155, 22155,22155,22155,26424,26424,26424,26424,26424,26424,26424, 26424,26426,29840,26426,26426,26426,26426,26426,26426,26442, 26442,26442,26442,26442,26442,26442,26442,26444,29840,26444, 26444,26444,26444,26444,26444,22207,29840,22207,22207,22207, 22207,22207,22207,22189,29840,22189,22189,22189,22189,22189, 22189,22187,22187,22187,22187,22187,22187,22187,22187,22205, 22205,22205,22205,22205,22205,22205,22205,14317,29840,14317, 14317,14317,14317,14317,14317,14335,29840,14335,14335,14335, 14335,14335,14335,25071,29840,25071,25071,25071,25071,25071, 25071,26494,29840,26494,26494,26494,26494,26494,26494,23321, 29840,23321,23321,23321,23321,23321,23321,25076,25076,25076, 25076,25076,25076,25076,25076,19634,29840,19634,19634,19634, 19634,19634,19634, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732,23732,23732,23732,25382, 29840,25382,25382,25382,25382,25382,25382,22418,29840,22418, 22418,22418,22418,22418,22418,17300,29840,17300,17300,17300, 17300,17300,17300,25682,29840,25682,25682,25682,25682,25682, 25682,22901,29840,22901,22901,22901,22901,22901,22901,18340, 29840,18340,18340,18340,18340,18340,18340,26232,29840,26232, 26232,26232,26232,26232,26232,23766,29840,23766,23766,23766, 23766,23766,23766,20067,29840,20067,20067,20067,20067,20067, 20067,25105,29840,25105,25105,25105,25105,25105,25105,25111, 29840,25111,25111,25111,25111,25111,25111,20844,29840,20844, 20844,20844,20844,20844,20844,17438,29840,17438,17438,17438, 17438,17438,17438,23778,23778,23778,23778,23778,23778,23778, 23778,20088,20088,20088,20088,20088,20088,20088,20088,26536, 26536,26536,26536,26536,26536,26536,26536,20857,29840,20857, 20857,20857,20857,20857,20857,16359,29840,16359,16359,16359, 16359,16359,16359,22482,29840,22482,22482,22482,22482,22482, 22482,26544,29840,26544,26544,26544,26544,26544,26544,26858, 29840,26858,26858,26858,26858,26858,26858,24822,29840,24822, 24822,24822,24822,24822,24822,23839,29840,23839,23839,23839, 23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845,23845,23845,23845,23849, 29840,23849,23849,23849,23849,23849,23849, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611, 10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245,24245,24245,24245, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,26948,29840,26948,26948,26948,26948,26948, 26948,20926,29840,20926,20926,20926,20926,20926,20926,20928, 29840,20928,20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,20935,29840,20935,20935,20935,20935,20935, 20935,26108,29840,26108,26108,26108,26108,26108,26108,26368, 29840,26368,26368,26368,26368,26368,26368,25551,29840,25551, 25551,25551,25551,25551,25551,26383,26383,26383,26383,26383, 26383,26383,26383,20271,29840,20271,20271,20271,20271,20271, 20271,22102,22102,22102,22102,22102,22102,22102,22102,20312, 29840,20312,20312,20312,20312,20312,20312,26424,26424,26424, 26424,26424,26424,26424,26424,26426,29840,26426,26426,26426, 26426,26426,26426,26442,26442,26442,26442,26442,26442,26442, 26442,26444,29840,26444,26444,26444,26444,26444,26444,22155, 22155,22155,22155,22155,22155,22155,22155,22189,29840,22189, 22189,22189,22189,22189,22189,22187,22187,22187,22187,22187, 22187,22187,22187,22207,29840,22207,22207,22207,22207,22207, 22207,22205,22205,22205,22205,22205,22205,22205,22205,25071, 29840,25071,25071,25071,25071,25071,25071,26494,29840,26494, 26494,26494,26494,26494,26494,23321,29840,23321,23321,23321, 23321,23321,23321,25076,25076,25076,25076,25076,25076,25076, 25076,19634,29840,19634,19634,19634,19634,19634,19634, 139, 29840, 139, 139, 139, 139, 139, 139,23732,29840,23732, 23732,23732,23732,23732,23732,25382,29840,25382,25382,25382, 25382,25382,25382,22418,29840,22418,22418,22418,22418,22418, 22418,25682,29840,25682,25682,25682,25682,25682,25682,22901, 29840,22901,22901,22901,22901,22901,22901,18340,29840,18340, 18340,18340,18340,18340,18340,26232,29840,26232,26232,26232, 26232,26232,26232,23766,29840,23766,23766,23766,23766,23766, 23766,20067,29840,20067,20067,20067,20067,20067,20067,25105, 29840,25105,25105,25105,25105,25105,25105,25111,29840,25111, 25111,25111,25111,25111,25111,20844,29840,20844,20844,20844, 20844,20844,20844,23778,23778,23778,23778,23778,23778,23778, 23778,20088,20088,20088,20088,20088,20088,20088,20088,26536, 26536,26536,26536,26536,26536,26536,26536,20857,29840,20857, 20857,20857,20857,20857,20857,16359,29840,16359,16359,16359, 16359,16359,16359,22482,29840,22482,22482,22482,22482,22482, 22482,26544,29840,26544,26544,26544,26544,26544,26544,27169, 29840,27169,27169,27169,27169,27169,27169,24822,29840,24822, 24822,24822,24822,24822,24822,23839,29840,23839,23839,23839, 23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845,23845,23845,23845,23849, 29840,23849,23849,23849,23849,23849,23849, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611, 10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245,24245,24245,24245, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,26948,29840,26948,26948,26948,26948,26948, 26948,20926,29840,20926,20926,20926,20926,20926,20926,20928, 29840,20928,20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,20935,29840,20935,20935,20935,20935,20935, 20935,26108,29840,26108,26108,26108,26108,26108,26108,26368, 29840,26368,26368,26368,26368,26368,26368,25551,29840,25551, 25551,25551,25551,25551,25551,26383,26383,26383,26383,26383, 26383,26383,26383,20271,29840,20271,20271,20271,20271,20271, 20271,22102,22102,22102,22102,22102,22102,22102,22102,20312, 29840,20312,20312,20312,20312,20312,20312,26424,26424,26424, 26424,26424,26424,26424,26424,26426,29840,26426,26426,26426, 26426,26426,26426,26442,26442,26442,26442,26442,26442,26442, 26442,26444,29840,26444,26444,26444,26444,26444,26444,22155, 22155,22155,22155,22155,22155,22155,22155,22189,29840,22189, 22189,22189,22189,22189,22189,22187,22187,22187,22187,22187, 22187,22187,22187,22207,29840,22207,22207,22207,22207,22207, 22207,22205,22205,22205,22205,22205,22205,22205,22205,25071, 29840,25071,25071,25071,25071,25071,25071,26494,29840,26494, 26494,26494,26494,26494,26494,23321,29840,23321,23321,23321, 23321,23321,23321,25076,25076,25076,25076,25076,25076,25076, 25076,19634,29840,19634,19634,19634,19634,19634,19634, 139, 29840, 139, 139, 139, 139, 139, 139,23732,29840,23732, 23732,23732,23732,23732,23732,25382,29840,25382,25382,25382, 25382,25382,25382,22418,29840,22418,22418,22418,22418,22418, 22418,25682,29840,25682,25682,25682,25682,25682,25682,22901, 29840,22901,22901,22901,22901,22901,22901,26232,29840,26232, 26232,26232,26232,26232,26232,23766,29840,23766,23766,23766, 23766,23766,23766,20067,29840,20067,20067,20067,20067,20067, 20067,25105,29840,25105,25105,25105,25105,25105,25105,25111, 29840,25111,25111,25111,25111,25111,25111,20844,29840,20844, 20844,20844,20844,20844,20844,23778,23778,23778,23778,23778, 23778,23778,23778,20088,20088,20088,20088,20088,20088,20088, 20088,26536,26536,26536,26536,26536,26536,26536,26536,20857, 29840,20857,20857,20857,20857,20857,20857,16359,29840,16359, 16359,16359,16359,16359,16359,22482,29840,22482,22482,22482, 22482,22482,22482,26544,29840,26544,26544,26544,26544,26544, 26544,27455,29840,27455,27455,27455,27455,27455,27455,24822, 29840,24822,24822,24822,24822,24822,24822,23839,29840,23839, 23839,23839,23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845,23845,23845, 23845,23849,29840,23849,23849,23849,23849,23849,23849,27500, 29840,27500,27500,27500,27500,27500,27500, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611, 10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245,24245,24245,24245, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,26948,29840,26948,26948,26948,26948,26948, 26948,20926,29840,20926,20926,20926,20926,20926,20926,20928, 29840,20928,20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,20935,29840,20935,20935,20935,20935,20935, 20935,26108,29840,26108,26108,26108,26108,26108,26108,26368, 29840,26368,26368,26368,26368,26368,26368,25551,29840,25551, 25551,25551,25551,25551,25551,26383,26383,26383,26383,26383, 26383,26383,26383,20271,29840,20271,20271,20271,20271,20271, 20271,22102,22102,22102,22102,22102,22102,22102,22102,20312, 29840,20312,20312,20312,20312,20312,20312,26424,26424,26424, 26424,26424,26424,26424,26424,26426,29840,26426,26426,26426, 26426,26426,26426,26442,26442,26442,26442,26442,26442,26442, 26442,26444,29840,26444,26444,26444,26444,26444,26444,22155, 22155,22155,22155,22155,22155,22155,22155,22189,29840,22189, 22189,22189,22189,22189,22189,22187,22187,22187,22187,22187, 22187,22187,22187,22207,29840,22207,22207,22207,22207,22207, 22207,22205,22205,22205,22205,22205,22205,22205,22205,25071, 29840,25071,25071,25071,25071,25071,25071,26494,29840,26494, 26494,26494,26494,26494,26494,23321,29840,23321,23321,23321, 23321,23321,23321,25076,25076,25076,25076,25076,25076,25076, 25076,19634,29840,19634,19634,19634,19634,19634,19634, 139, 29840, 139, 139, 139, 139, 139, 139,23732,29840,23732, 23732,23732,23732,23732,23732,25382,29840,25382,25382,25382, 25382,25382,25382,22418,29840,22418,22418,22418,22418,22418, 22418,25682,29840,25682,25682,25682,25682,25682,25682,22901, 29840,22901,22901,22901,22901,22901,22901,26232,29840,26232, 26232,26232,26232,26232,26232,23766,29840,23766,23766,23766, 23766,23766,23766,20067,29840,20067,20067,20067,20067,20067, 20067,25105,29840,25105,25105,25105,25105,25105,25105,25111, 29840,25111,25111,25111,25111,25111,25111,20844,29840,20844, 20844,20844,20844,20844,20844,23778,23778,23778,23778,23778, 23778,23778,23778,20088,20088,20088,20088,20088,20088,20088, 20088,26536,26536,26536,26536,26536,26536,26536,26536,20857, 29840,20857,20857,20857,20857,20857,20857,16359,29840,16359, 16359,16359,16359,16359,16359,22482,29840,22482,22482,22482, 22482,22482,22482,26544,29840,26544,26544,26544,26544,26544, 26544,27713,29840,27713,27713,27713,27713,27713,27713,24822, 29840,24822,24822,24822,24822,24822,24822,23839,29840,23839, 23839,23839,23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845,23845,23845, 23845,23849,29840,23849,23849,23849,23849,23849,23849,27500, 29840,27500,27500,27500,27500,27500,27500, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611, 10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245,24245,24245,24245, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695, 1041,29840, 1041, 1041, 1041, 1041, 1041, 1041, 1043,29840, 1043, 1043, 1043, 1043, 1043, 1043,26948,29840,26948,26948,26948,26948,26948, 26948,20926,29840,20926,20926,20926,20926,20926,20926,20928, 29840,20928,20928,20928,20928,20928,20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,20935,29840,20935,20935,20935,20935,20935, 20935,26108,29840,26108,26108,26108,26108,26108,26108,26368, 29840,26368,26368,26368,26368,26368,26368,25551,29840,25551, 25551,25551,25551,25551,25551,26383,26383,26383,26383,26383, 26383,26383,26383,20271,29840,20271,20271,20271,20271,20271, 20271,22102,22102,22102,22102,22102,22102,22102,22102,20312, 29840,20312,20312,20312,20312,20312,20312,26424,26424,26424, 26424,26424,26424,26424,26424,26426,29840,26426,26426,26426, 26426,26426,26426,26442,26442,26442,26442,26442,26442,26442, 26442,26444,29840,26444,26444,26444,26444,26444,26444,22155, 22155,22155,22155,22155,22155,22155,22155,22189,29840,22189, 22189,22189,22189,22189,22189,22187,22187,22187,22187,22187, 22187,22187,22187,22207,29840,22207,22207,22207,22207,22207, 22207,22205,22205,22205,22205,22205,22205,22205,22205,25071, 29840,25071,25071,25071,25071,25071,25071,26494,29840,26494, 26494,26494,26494,26494,26494,23321,29840,23321,23321,23321, 23321,23321,23321,25076,25076,25076,25076,25076,25076,25076, 25076, 139,29840, 139, 139, 139, 139, 139, 139,23732, 29840,23732,23732,23732,23732,23732,23732,25382,29840,25382, 25382,25382,25382,25382,25382,22418,29840,22418,22418,22418, 22418,22418,22418,25682,29840,25682,25682,25682,25682,25682, 25682,22901,29840,22901,22901,22901,22901,22901,22901,26232, 29840,26232,26232,26232,26232,26232,26232,23766,29840,23766, 23766,23766,23766,23766,23766,25105,29840,25105,25105,25105, 25105,25105,25105,25111,29840,25111,25111,25111,25111,25111, 25111,20844,29840,20844,20844,20844,20844,20844,20844,23778, 23778,23778,23778,23778,23778,23778,23778,26536,26536,26536, 26536,26536,26536,26536,26536,20857,29840,20857,20857,20857, 20857,20857,20857,27914,29840,27914,27914,27914,27914,27914, 27914,22482,29840,22482,22482,22482,22482,22482,22482,26544, 29840,26544,26544,26544,26544,26544,26544,27920,29840,27920, 27920,27920,27920,27920,27920,27926,29840,27926,27926,27926, 27926,27926,27926,24822,29840,24822,24822,24822,24822,24822, 24822,23839,29840,23839,23839,23839,23839,23839,23839, 246, 29840, 246, 246, 246, 246, 246, 246,23845,29840,23845, 23845,23845,23845,23845,23845,23849,29840,23849,23849,23849, 23849,23849,23849,27500,29840,27500,27500,27500,27500,27500, 27500, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611, 29840,10611,10611,10611,10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245, 24245,24245,24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695,27944,29840,27944,27944,27944,27944,27944,27944,27948, 29840,27948,27948,27948,27948,27948,27948,26948,29840,26948, 26948,26948,26948,26948,26948,20926,29840,20926,20926,20926, 20926,20926,20926,20928,29840,20928,20928,20928,20928,20928, 20928, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843,20935,29840,20935, 20935,20935,20935,20935,20935,26108,29840,26108,26108,26108, 26108,26108,26108,26368,29840,26368,26368,26368,26368,26368, 26368,25551,29840,25551,25551,25551,25551,25551,25551,26383, 26383,26383,26383,26383,26383,26383,26383,20271,29840,20271, 20271,20271,20271,20271,20271,22102,22102,22102,22102,22102, 22102,22102,22102,20312,29840,20312,20312,20312,20312,20312, 20312,26424,26424,26424,26424,26424,26424,26424,26424,26426, 29840,26426,26426,26426,26426,26426,26426,26442,26442,26442, 26442,26442,26442,26442,26442,26444,29840,26444,26444,26444, 26444,26444,26444,22155,22155,22155,22155,22155,22155,22155, 22155,22189,29840,22189,22189,22189,22189,22189,22189,22187, 22187,22187,22187,22187,22187,22187,22187,22207,29840,22207, 22207,22207,22207,22207,22207,22205,22205,22205,22205,22205, 22205,22205,22205,25071,29840,25071,25071,25071,25071,25071, 25071,26494,29840,26494,26494,26494,26494,26494,26494,23321, 29840,23321,23321,23321,23321,23321,23321,25076,25076,25076, 25076,25076,25076,25076,25076, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732,23732,23732, 23732,25382,29840,25382,25382,25382,25382,25382,25382,22418, 29840,22418,22418,22418,22418,22418,22418,25682,29840,25682, 25682,25682,25682,25682,25682,22901,29840,22901,22901,22901, 22901,22901,22901,26232,29840,26232,26232,26232,26232,26232, 26232,23766,29840,23766,23766,23766,23766,23766,23766,25105, 29840,25105,25105,25105,25105,25105,25105,25111,29840,25111, 25111,25111,25111,25111,25111,23778,23778,23778,23778,23778, 23778,23778,23778,26536,26536,26536,26536,26536,26536,26536, 26536,27914,29840,27914,27914,27914,27914,27914,27914,22482, 29840,22482,22482,22482,22482,22482,22482,26544,29840,26544, 26544,26544,26544,26544,26544,28115,29840,28115,28115,28115, 28115,28115,28115,27926,29840,27926,27926,27926,27926,27926, 27926,24822,29840,24822,24822,24822,24822,24822,24822,23839, 29840,23839,23839,23839,23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845, 23845,23845,23845,23849,29840,23849,23849,23849,23849,23849, 23849,27500,29840,27500,27500,27500,27500,27500,27500, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611, 10611,10611,10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245,24245,24245, 24245, 2695,29840, 2695, 2695, 2695, 2695, 2695, 2695,27944, 29840,27944,27944,27944,27944,27944,27944,27948,29840,27948, 27948,27948,27948,27948,27948,26948,29840,26948,26948,26948, 26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843,12843,26108, 29840,26108,26108,26108,26108,26108,26108,26368,29840,26368, 26368,26368,26368,26368,26368,25551,29840,25551,25551,25551, 25551,25551,25551,26383,26383,26383,26383,26383,26383,26383, 26383,22102,22102,22102,22102,22102,22102,22102,22102,26424, 26424,26424,26424,26424,26424,26424,26424,26426,29840,26426, 26426,26426,26426,26426,26426,26442,26442,26442,26442,26442, 26442,26442,26442,26444,29840,26444,26444,26444,26444,26444, 26444,22155,22155,22155,22155,22155,22155,22155,22155,22189, 29840,22189,22189,22189,22189,22189,22189,22187,22187,22187, 22187,22187,22187,22187,22187,22207,29840,22207,22207,22207, 22207,22207,22207,22205,22205,22205,22205,22205,22205,22205, 22205,25071,29840,25071,25071,25071,25071,25071,25071,26494, 29840,26494,26494,26494,26494,26494,26494,23321,29840,23321, 23321,23321,23321,23321,23321,25076,25076,25076,25076,25076, 25076,25076,25076, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732,23732,23732,23732,25382, 29840,25382,25382,25382,25382,25382,25382,22418,29840,22418, 22418,22418,22418,22418,22418,25682,29840,25682,25682,25682, 25682,25682,25682,22901,29840,22901,22901,22901,22901,22901, 22901,26232,29840,26232,26232,26232,26232,26232,26232,23766, 29840,23766,23766,23766,23766,23766,23766,25105,29840,25105, 25105,25105,25105,25105,25105,25111,29840,25111,25111,25111, 25111,25111,25111,23778,23778,23778,23778,23778,23778,23778, 23778,26536,26536,26536,26536,26536,26536,26536,26536,27914, 29840,27914,27914,27914,27914,27914,27914,22482,29840,22482, 22482,22482,22482,22482,22482,26544,29840,26544,26544,26544, 26544,26544,26544,28296,29840,28296,28296,28296,28296,28296, 28296,27926,29840,27926,27926,27926,27926,27926,27926,24822, 29840,24822,24822,24822,24822,24822,24822,23839,29840,23839, 23839,23839,23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845,23845,23845, 23845,23849,29840,23849,23849,23849,23849,23849,23849,27500, 29840,27500,27500,27500,27500,27500,27500, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611, 10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245,24245,24245,24245, 2695, 29840, 2695, 2695, 2695, 2695, 2695, 2695,27944,29840,27944, 27944,27944,27944,27944,27944,27948,29840,27948,27948,27948, 27948,27948,27948,26948,29840,26948,26948,26948,26948,26948, 26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843,26108,29840,26108, 26108,26108,26108,26108,26108,26368,29840,26368,26368,26368, 26368,26368,26368,25551,29840,25551,25551,25551,25551,25551, 25551,26383,26383,26383,26383,26383,26383,26383,26383,22102, 22102,22102,22102,22102,22102,22102,22102,26424,26424,26424, 26424,26424,26424,26424,26424,26426,29840,26426,26426,26426, 26426,26426,26426,26442,26442,26442,26442,26442,26442,26442, 26442,26444,29840,26444,26444,26444,26444,26444,26444,22155, 22155,22155,22155,22155,22155,22155,22155,22189,29840,22189, 22189,22189,22189,22189,22189,22187,22187,22187,22187,22187, 22187,22187,22187,22207,29840,22207,22207,22207,22207,22207, 22207,22205,22205,22205,22205,22205,22205,22205,22205,25071, 29840,25071,25071,25071,25071,25071,25071,26494,29840,26494, 26494,26494,26494,26494,26494,23321,29840,23321,23321,23321, 23321,23321,23321,25076,25076,25076,25076,25076,25076,25076, 25076, 139,29840, 139, 139, 139, 139, 139, 139,23732, 29840,23732,23732,23732,23732,23732,23732,25382,29840,25382, 25382,25382,25382,25382,25382,22418,29840,22418,22418,22418, 22418,22418,22418,25682,29840,25682,25682,25682,25682,25682, 25682,22901,29840,22901,22901,22901,22901,22901,22901,26232, 29840,26232,26232,26232,26232,26232,26232,23766,29840,23766, 23766,23766,23766,23766,23766,25105,29840,25105,25105,25105, 25105,25105,25105,25111,29840,25111,25111,25111,25111,25111, 25111,23778,23778,23778,23778,23778,23778,23778,23778,26536, 26536,26536,26536,26536,26536,26536,26536,27914,29840,27914, 27914,27914,27914,27914,27914,28437,29840,28437,28437,28437, 28437,28437,28437,22482,29840,22482,22482,22482,22482,22482, 22482,26544,29840,26544,26544,26544,26544,26544,26544,28444, 29840,28444,28444,28444,28444,28444,28444,27926,29840,27926, 27926,27926,27926,27926,27926,24822,29840,24822,24822,24822, 24822,24822,24822,23839,29840,23839,23839,23839,23839,23839, 23839, 246,29840, 246, 246, 246, 246, 246, 246,23845, 29840,23845,23845,23845,23845,23845,23845,23849,29840,23849, 23849,23849,23849,23849,23849,27500,29840,27500,27500,27500, 27500,27500,27500, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611,10611,10611,10611, 265, 29840, 265, 265, 265, 265, 265, 265,24245,29840,24245, 24245,24245,24245,24245,24245,28465,29840,28465,28465,28465, 28465,28465,28465,27944,29840,27944,27944,27944,27944,27944, 27944,27948,29840,27948,27948,27948,27948,27948,27948,26948, 29840,26948,26948,26948,26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,26108,29840,26108,26108,26108,26108,26108, 26108,26368,29840,26368,26368,26368,26368,26368,26368,25551, 29840,25551,25551,25551,25551,25551,25551,26383,26383,26383, 26383,26383,26383,26383,26383,22102,22102,22102,22102,22102, 22102,22102,22102,26424,26424,26424,26424,26424,26424,26424, 26424,26426,29840,26426,26426,26426,26426,26426,26426,26442, 26442,26442,26442,26442,26442,26442,26442,26444,29840,26444, 26444,26444,26444,26444,26444,22155,22155,22155,22155,22155, 22155,22155,22155,22189,29840,22189,22189,22189,22189,22189, 22189,22187,22187,22187,22187,22187,22187,22187,22187,22207, 29840,22207,22207,22207,22207,22207,22207,22205,22205,22205, 22205,22205,22205,22205,22205,25071,29840,25071,25071,25071, 25071,25071,25071,26494,29840,26494,26494,26494,26494,26494, 26494,23321,29840,23321,23321,23321,23321,23321,23321,25076, 25076,25076,25076,25076,25076,25076,25076, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732, 23732,23732,23732,25382,29840,25382,25382,25382,25382,25382, 25382,25682,29840,25682,25682,25682,25682,25682,25682,22901, 29840,22901,22901,22901,22901,22901,22901,26232,29840,26232, 26232,26232,26232,26232,26232,23766,29840,23766,23766,23766, 23766,23766,23766,25105,29840,25105,25105,25105,25105,25105, 25105,25111,29840,25111,25111,25111,25111,25111,25111,23778, 23778,23778,23778,23778,23778,23778,23778,26536,26536,26536, 26536,26536,26536,26536,26536,27914,29840,27914,27914,27914, 27914,27914,27914,28437,29840,28437,28437,28437,28437,28437, 28437,26544,29840,26544,26544,26544,26544,26544,26544,28571, 29840,28571,28571,28571,28571,28571,28571,27926,29840,27926, 27926,27926,27926,27926,27926,24822,29840,24822,24822,24822, 24822,24822,24822,23839,29840,23839,23839,23839,23839,23839, 23839, 246,29840, 246, 246, 246, 246, 246, 246,23845, 29840,23845,23845,23845,23845,23845,23845,23849,29840,23849, 23849,23849,23849,23849,23849,28585,29840,28585,28585,28585, 28585,28585,28585,27500,29840,27500,27500,27500,27500,27500, 27500, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611, 29840,10611,10611,10611,10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245, 24245,24245,24245,28465,29840,28465,28465,28465,28465,28465, 28465,27944,29840,27944,27944,27944,27944,27944,27944,27948, 29840,27948,27948,27948,27948,27948,27948,26948,29840,26948, 26948,26948,26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,26108,29840,26108,26108,26108,26108,26108,26108,26368, 29840,26368,26368,26368,26368,26368,26368,25551,29840,25551, 25551,25551,25551,25551,25551,26383,26383,26383,26383,26383, 26383,26383,26383,26424,26424,26424,26424,26424,26424,26424, 26424,26426,29840,26426,26426,26426,26426,26426,26426,26442, 26442,26442,26442,26442,26442,26442,26442,26444,29840,26444, 26444,26444,26444,26444,26444,22189,29840,22189,22189,22189, 22189,22189,22189,22207,29840,22207,22207,22207,22207,22207, 22207,25071,29840,25071,25071,25071,25071,25071,25071,26494, 29840,26494,26494,26494,26494,26494,26494,23321,29840,23321, 23321,23321,23321,23321,23321,25076,25076,25076,25076,25076, 25076,25076,25076, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732,23732,23732,23732,25382, 29840,25382,25382,25382,25382,25382,25382,25682,29840,25682, 25682,25682,25682,25682,25682,26232,29840,26232,26232,26232, 26232,26232,26232,23766,29840,23766,23766,23766,23766,23766, 23766,25105,29840,25105,25105,25105,25105,25105,25105,25111, 29840,25111,25111,25111,25111,25111,25111,23778,23778,23778, 23778,23778,23778,23778,23778,26536,26536,26536,26536,26536, 26536,26536,26536,27914,29840,27914,27914,27914,27914,27914, 27914,28437,29840,28437,28437,28437,28437,28437,28437,26544, 29840,26544,26544,26544,26544,26544,26544,28691,29840,28691, 28691,28691,28691,28691,28691,27926,29840,27926,27926,27926, 27926,27926,27926,24822,29840,24822,24822,24822,24822,24822, 24822,23839,29840,23839,23839,23839,23839,23839,23839, 246, 29840, 246, 246, 246, 246, 246, 246,23845,29840,23845, 23845,23845,23845,23845,23845,23849,29840,23849,23849,23849, 23849,23849,23849,28585,29840,28585,28585,28585,28585,28585, 28585,27500,29840,27500,27500,27500,27500,27500,27500, 5903, 29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611, 10611,10611,10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245,24245,24245, 24245,28465,29840,28465,28465,28465,28465,28465,28465,27944, 29840,27944,27944,27944,27944,27944,27944,27948,29840,27948, 27948,27948,27948,27948,27948,26948,29840,26948,26948,26948, 26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843,12843,26108, 29840,26108,26108,26108,26108,26108,26108,26368,29840,26368, 26368,26368,26368,26368,26368,25551,29840,25551,25551,25551, 25551,25551,25551,26383,26383,26383,26383,26383,26383,26383, 26383,26424,26424,26424,26424,26424,26424,26424,26424,26426, 29840,26426,26426,26426,26426,26426,26426,26442,26442,26442, 26442,26442,26442,26442,26442,26444,29840,26444,26444,26444, 26444,26444,26444,25071,29840,25071,25071,25071,25071,25071, 25071,23321,29840,23321,23321,23321,23321,23321,23321,25076, 25076,25076,25076,25076,25076,25076,25076, 139,29840, 139, 139, 139, 139, 139, 139,23732,29840,23732,23732,23732, 23732,23732,23732,25382,29840,25382,25382,25382,25382,25382, 25382,25682,29840,25682,25682,25682,25682,25682,25682,26232, 29840,26232,26232,26232,26232,26232,26232,23766,29840,23766, 23766,23766,23766,23766,23766,25105,29840,25105,25105,25105, 25105,25105,25105,25111,29840,25111,25111,25111,25111,25111, 25111,23778,23778,23778,23778,23778,23778,23778,23778,26536, 26536,26536,26536,26536,26536,26536,26536,27914,29840,27914, 27914,27914,27914,27914,27914,28437,29840,28437,28437,28437, 28437,28437,28437,26544,29840,26544,26544,26544,26544,26544, 26544,28798,29840,28798,28798,28798,28798,28798,28798,27926, 29840,27926,27926,27926,27926,27926,27926,24822,29840,24822, 24822,24822,24822,24822,24822,23839,29840,23839,23839,23839, 23839,23839,23839, 246,29840, 246, 246, 246, 246, 246, 246,23845,29840,23845,23845,23845,23845,23845,23845,23849, 29840,23849,23849,23849,23849,23849,23849,28585,29840,28585, 28585,28585,28585,28585,28585,27500,29840,27500,27500,27500, 27500,27500,27500, 5903,29840, 5903, 5903, 5903, 5903, 5903, 5903,10611,29840,10611,10611,10611,10611,10611,10611, 265, 29840, 265, 265, 265, 265, 265, 265,24245,29840,24245, 24245,24245,24245,24245,24245,28465,29840,28465,28465,28465, 28465,28465,28465,27944,29840,27944,27944,27944,27944,27944, 27944,27948,29840,27948,27948,27948,27948,27948,27948,26948, 29840,26948,26948,26948,26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,26108,29840,26108,26108,26108,26108,26108, 26108,26368,29840,26368,26368,26368,26368,26368,26368,25551, 29840,25551,25551,25551,25551,25551,25551,26383,26383,26383, 26383,26383,26383,26383,26383,26442,26442,26442,26442,26442, 26442,26442,26442,26426,29840,26426,26426,26426,26426,26426, 26426,26424,26424,26424,26424,26424,26424,26424,26424,26444, 29840,26444,26444,26444,26444,26444,26444,25071,29840,25071, 25071,25071,25071,25071,25071,23321,29840,23321,23321,23321, 23321,23321,23321,25076,25076,25076,25076,25076,25076,25076, 25076, 139,29840, 139, 139, 139, 139, 139, 139,25382, 29840,25382,25382,25382,25382,25382,25382,25682,29840,25682, 25682,25682,25682,25682,25682,26232,29840,26232,26232,26232, 26232,26232,26232,25105,29840,25105,25105,25105,25105,25105, 25105,25111,29840,25111,25111,25111,25111,25111,25111,26536, 26536,26536,26536,26536,26536,26536,26536,27914,29840,27914, 27914,27914,27914,27914,27914,28437,29840,28437,28437,28437, 28437,28437,28437,26544,29840,26544,26544,26544,26544,26544, 26544,28891,29840,28891,28891,28891,28891,28891,28891,27926, 29840,27926,27926,27926,27926,27926,27926,24822,29840,24822, 24822,24822,24822,24822,24822, 246,29840, 246, 246, 246, 246, 246, 246,28585,29840,28585,28585,28585,28585,28585, 28585,27500,29840,27500,27500,27500,27500,27500,27500,10611, 29840,10611,10611,10611,10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,24245,29840,24245,24245,24245, 24245,24245,24245,28465,29840,28465,28465,28465,28465,28465, 28465,27944,29840,27944,27944,27944,27944,27944,27944,27948, 29840,27948,27948,27948,27948,27948,27948,26948,29840,26948, 26948,26948,26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,26108,29840,26108,26108,26108,26108,26108,26108,26368, 29840,26368,26368,26368,26368,26368,26368,25551,29840,25551, 25551,25551,25551,25551,25551,26383,26383,26383,26383,26383, 26383,26383,26383,26444,29840,26444,26444,26444,26444,26444, 26444,26426,29840,26426,26426,26426,26426,26426,26426,26424, 26424,26424,26424,26424,26424,26424,26424,26442,26442,26442, 26442,26442,26442,26442,26442,25071,29840,25071,25071,25071, 25071,25071,25071,23321,29840,23321,23321,23321,23321,23321, 23321,25076,25076,25076,25076,25076,25076,25076,25076, 139, 29840, 139, 139, 139, 139, 139, 139,25382,29840,25382, 25382,25382,25382,25382,25382,25682,29840,25682,25682,25682, 25682,25682,25682,26232,29840,26232,26232,26232,26232,26232, 26232,25105,29840,25105,25105,25105,25105,25105,25105,25111, 29840,25111,25111,25111,25111,25111,25111,26536,26536,26536, 26536,26536,26536,26536,26536,27914,29840,27914,27914,27914, 27914,27914,27914,28437,29840,28437,28437,28437,28437,28437, 28437,26544,29840,26544,26544,26544,26544,26544,26544,28977, 29840,28977,28977,28977,28977,28977,28977,27926,29840,27926, 27926,27926,27926,27926,27926,24822,29840,24822,24822,24822, 24822,24822,24822, 246,29840, 246, 246, 246, 246, 246, 246,28585,29840,28585,28585,28585,28585,28585,28585,27500, 29840,27500,27500,27500,27500,27500,27500,10611,29840,10611, 10611,10611,10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,28465,29840,28465,28465,28465,28465,28465, 28465,27944,29840,27944,27944,27944,27944,27944,27944,27948, 29840,27948,27948,27948,27948,27948,27948,26948,29840,26948, 26948,26948,26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,26108,29840,26108,26108,26108,26108,26108,26108,26368, 29840,26368,26368,26368,26368,26368,26368,25551,29840,25551, 25551,25551,25551,25551,25551,26383,26383,26383,26383,26383, 26383,26383,26383,26426,29840,26426,26426,26426,26426,26426, 26426,26424,26424,26424,26424,26424,26424,26424,26424,26444, 29840,26444,26444,26444,26444,26444,26444,26442,26442,26442, 26442,26442,26442,26442,26442,25071,29840,25071,25071,25071, 25071,25071,25071,23321,29840,23321,23321,23321,23321,23321, 23321,25076,25076,25076,25076,25076,25076,25076,25076, 139, 29840, 139, 139, 139, 139, 139, 139,25382,29840,25382, 25382,25382,25382,25382,25382,25682,29840,25682,25682,25682, 25682,25682,25682,26232,29840,26232,26232,26232,26232,26232, 26232,25105,29840,25105,25105,25105,25105,25105,25105,25111, 29840,25111,25111,25111,25111,25111,25111,26536,26536,26536, 26536,26536,26536,26536,26536,27914,29840,27914,27914,27914, 27914,27914,27914,28437,29840,28437,28437,28437,28437,28437, 28437,26544,29840,26544,26544,26544,26544,26544,26544,29057, 29840,29057,29057,29057,29057,29057,29057,27926,29840,27926, 27926,27926,27926,27926,27926,24822,29840,24822,24822,24822, 24822,24822,24822, 246,29840, 246, 246, 246, 246, 246, 246,28585,29840,28585,28585,28585,28585,28585,28585,27500, 29840,27500,27500,27500,27500,27500,27500,10611,29840,10611, 10611,10611,10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,28465,29840,28465,28465,28465,28465,28465, 28465,27944,29840,27944,27944,27944,27944,27944,27944,27948, 29840,27948,27948,27948,27948,27948,27948,26948,29840,26948, 26948,26948,26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843, 12843,26108,29840,26108,26108,26108,26108,26108,26108,26368, 29840,26368,26368,26368,26368,26368,26368,25551,29840,25551, 25551,25551,25551,25551,25551,26383,26383,26383,26383,26383, 26383,26383,26383,26426,29840,26426,26426,26426,26426,26426, 26426,26424,26424,26424,26424,26424,26424,26424,26424,26444, 29840,26444,26444,26444,26444,26444,26444,26442,26442,26442, 26442,26442,26442,26442,26442,25071,29840,25071,25071,25071, 25071,25071,25071,23321,29840,23321,23321,23321,23321,23321, 23321,25076,25076,25076,25076,25076,25076,25076,25076, 139, 29840, 139, 139, 139, 139, 139, 139,25382,29840,25382, 25382,25382,25382,25382,25382,25682,29840,25682,25682,25682, 25682,25682,25682,26232,29840,26232,26232,26232,26232,26232, 26232,25105,29840,25105,25105,25105,25105,25105,25105,25111, 29840,25111,25111,25111,25111,25111,25111,26536,26536,26536, 26536,26536,26536,26536,26536,27914,29840,27914,27914,27914, 27914,27914,27914,28437,29840,28437,28437,28437,28437,28437, 28437,26544,29840,26544,26544,26544,26544,26544,26544,29126, 29840,29126,29126,29126,29126,29126,29126,27926,29840,27926, 27926,27926,27926,27926,27926, 246,29840, 246, 246, 246, 246, 246, 246,28585,29840,28585,28585,28585,28585,28585, 28585,27500,29840,27500,27500,27500,27500,27500,27500,10611, 29840,10611,10611,10611,10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,28465,29840,28465,28465,28465, 28465,28465,28465,27944,29840,27944,27944,27944,27944,27944, 27944,27948,29840,27948,27948,27948,27948,27948,27948,26948, 29840,26948,26948,26948,26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,26108,29840,26108,26108,26108,26108,26108, 26108,26368,29840,26368,26368,26368,26368,26368,26368,25551, 29840,25551,25551,25551,25551,25551,25551,26383,26383,26383, 26383,26383,26383,26383,26383,26426,29840,26426,26426,26426, 26426,26426,26426,26424,26424,26424,26424,26424,26424,26424, 26424,26444,29840,26444,26444,26444,26444,26444,26444,26442, 26442,26442,26442,26442,26442,26442,26442,23321,29840,23321, 23321,23321,23321,23321,23321, 139,29840, 139, 139, 139, 139, 139, 139,25382,29840,25382,25382,25382,25382,25382, 25382,25682,29840,25682,25682,25682,25682,25682,25682,26232, 29840,26232,26232,26232,26232,26232,26232,26536,26536,26536, 26536,26536,26536,26536,26536,27914,29840,27914,27914,27914, 27914,27914,27914,28437,29840,28437,28437,28437,28437,28437, 28437,26544,29840,26544,26544,26544,26544,26544,26544,27926, 29840,27926,27926,27926,27926,27926,27926, 246,29840, 246, 246, 246, 246, 246, 246,28585,29840,28585,28585,28585, 28585,28585,28585,27500,29840,27500,27500,27500,27500,27500, 27500,10611,29840,10611,10611,10611,10611,10611,10611, 265, 29840, 265, 265, 265, 265, 265, 265,28465,29840,28465, 28465,28465,28465,28465,28465,27944,29840,27944,27944,27944, 27944,27944,27944,27948,29840,27948,27948,27948,27948,27948, 27948,26948,29840,26948,26948,26948,26948,26948,26948, 8103, 29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843, 12843,12843,12843,12843,12843,26108,29840,26108,26108,26108, 26108,26108,26108,26368,29840,26368,26368,26368,26368,26368, 26368,25551,29840,25551,25551,25551,25551,25551,25551,26383, 26383,26383,26383,26383,26383,26383,26383,26426,29840,26426, 26426,26426,26426,26426,26426,26424,26424,26424,26424,26424, 26424,26424,26424,26444,29840,26444,26444,26444,26444,26444, 26444,26442,26442,26442,26442,26442,26442,26442,26442,23321, 29840,23321,23321,23321,23321,23321,23321, 139,29840, 139, 139, 139, 139, 139, 139,25682,29840,25682,25682,25682, 25682,25682,25682,26232,29840,26232,26232,26232,26232,26232, 26232,26536,26536,26536,26536,26536,26536,26536,26536,27914, 29840,27914,27914,27914,27914,27914,27914,28437,29840,28437, 28437,28437,28437,28437,28437,26544,29840,26544,26544,26544, 26544,26544,26544,27926,29840,27926,27926,27926,27926,27926, 27926, 246,29840, 246, 246, 246, 246, 246, 246,28585, 29840,28585,28585,28585,28585,28585,28585,27500,29840,27500, 27500,27500,27500,27500,27500,10611,29840,10611,10611,10611, 10611,10611,10611, 265,29840, 265, 265, 265, 265, 265, 265,28465,29840,28465,28465,28465,28465,28465,28465,27944, 29840,27944,27944,27944,27944,27944,27944,27948,29840,27948, 27948,27948,27948,27948,27948,26948,29840,26948,26948,26948, 26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843,12843,12843,12843,26108, 29840,26108,26108,26108,26108,26108,26108,26368,29840,26368, 26368,26368,26368,26368,26368,25551,29840,25551,25551,25551, 25551,25551,25551,26383,26383,26383,26383,26383,26383,26383, 26383,26426,29840,26426,26426,26426,26426,26426,26426,26424, 26424,26424,26424,26424,26424,26424,26424,26444,29840,26444, 26444,26444,26444,26444,26444,26442,26442,26442,26442,26442, 26442,26442,26442,23321,29840,23321,23321,23321,23321,23321, 23321, 139,29840, 139, 139, 139, 139, 139, 139,26232, 29840,26232,26232,26232,26232,26232,26232,26536,26536,26536, 26536,26536,26536,26536,26536,27914,29840,27914,27914,27914, 27914,27914,27914,28437,29840,28437,28437,28437,28437,28437, 28437,26544,29840,26544,26544,26544,26544,26544,26544,27926, 29840,27926,27926,27926,27926,27926,27926, 246,29840, 246, 246, 246, 246, 246, 246,28585,29840,28585,28585,28585, 28585,28585,28585,27500,29840,27500,27500,27500,27500,27500, 27500, 265,29840, 265, 265, 265, 265, 265, 265,28465, 29840,28465,28465,28465,28465,28465,28465,27944,29840,27944, 27944,27944,27944,27944,27944,27948,29840,27948,27948,27948, 27948,27948,27948,26948,29840,26948,26948,26948,26948,26948, 26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843,26108,29840,26108, 26108,26108,26108,26108,26108,26368,29840,26368,26368,26368, 26368,26368,26368,26383,26383,26383,26383,26383,26383,26383, 26383,26426,29840,26426,26426,26426,26426,26426,26426,26424, 26424,26424,26424,26424,26424,26424,26424,26444,29840,26444, 26444,26444,26444,26444,26444,26442,26442,26442,26442,26442, 26442,26442,26442,23321,29840,23321,23321,23321,23321,23321, 23321, 139,29840, 139, 139, 139, 139, 139, 139,26232, 29840,26232,26232,26232,26232,26232,26232,26536,26536,26536, 26536,26536,26536,26536,26536,27914,29840,27914,27914,27914, 27914,27914,27914,28437,29840,28437,28437,28437,28437,28437, 28437,26544,29840,26544,26544,26544,26544,26544,26544,27926, 29840,27926,27926,27926,27926,27926,27926, 246,29840, 246, 246, 246, 246, 246, 246,28585,29840,28585,28585,28585, 28585,28585,28585,27500,29840,27500,27500,27500,27500,27500, 27500, 265,29840, 265, 265, 265, 265, 265, 265,28465, 29840,28465,28465,28465,28465,28465,28465,27944,29840,27944, 27944,27944,27944,27944,27944,27948,29840,27948,27948,27948, 27948,27948,27948,26948,29840,26948,26948,26948,26948,26948, 26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843, 29840,12843,12843,12843,12843,12843,12843,26368,29840,26368, 26368,26368,26368,26368,26368,26383,26383,26383,26383,26383, 26383,26383,26383,26426,29840,26426,26426,26426,26426,26426, 26426,26424,26424,26424,26424,26424,26424,26424,26424,26444, 29840,26444,26444,26444,26444,26444,26444,26442,26442,26442, 26442,26442,26442,26442,26442,23321,29840,23321,23321,23321, 23321,23321,23321,26536,26536,26536,26536,26536,26536,26536, 26536,27914,29840,27914,27914,27914,27914,27914,27914,28437, 29840,28437,28437,28437,28437,28437,28437,26544,29840,26544, 26544,26544,26544,26544,26544,27926,29840,27926,27926,27926, 27926,27926,27926, 246,29840, 246, 246, 246, 246, 246, 246,28585,29840,28585,28585,28585,28585,28585,28585,27500, 29840,27500,27500,27500,27500,27500,27500, 265,29840, 265, 265, 265, 265, 265, 265,28465,29840,28465,28465,28465, 28465,28465,28465,27944,29840,27944,27944,27944,27944,27944, 27944,27948,29840,27948,27948,27948,27948,27948,27948,26948, 29840,26948,26948,26948,26948,26948,26948, 8103,29840, 8103, 8103, 8103, 8103, 8103, 8103,12843,29840,12843,12843,12843, 12843,12843,12843,26383,26383,26383,26383,26383,26383,26383, 26383,26426,29840,26426,26426,26426,26426,26426,26426,26424, 26424,26424,26424,26424,26424,26424,26424, 59,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840 } ; static const flex_int32_t yy_chk[530762] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 7, 8, 9, 10, 9, 10, 11, 12, 57, 58, 61, 61, 65, 61, 62, 62, 63, 62, 103, 103, 7, 8, 64, 64, 64, 64, 11, 12, 288, 57, 58, 288, 78, 78, 63, 80, 65, 78, 78, 80, 80, 95, 288, 125, 126, 61, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 91, 64, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 95, 93, 125, 126, 157, 91, 93, 64, 66, 66, 157, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 67, 67, 121, 67, 67, 67, 67, 67, 127, 280, 67, 67, 67, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 127, 81, 67, 67, 67, 67, 67, 67, 85, 120, 81, 121, 127, 67, 81, 415, 415, 74, 74, 74, 74, 74, 74, 74, 74, 81, 280, 134, 85, 81, 81, 67, 67, 67, 67, 68, 68, 74, 68, 68, 68, 68, 68, 68, 68, 68, 68, 120, 68, 68, 79, 134, 140, 131, 92, 77, 99, 140, 99, 68, 68, 68, 68, 68, 68, 68, 77, 99, 79, 137, 77, 68, 79, 92, 77, 77, 161, 113, 113, 79, 113, 212, 161, 79, 79, 131, 171, 137, 212, 68, 68, 68, 68, 69, 69, 171, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 73, 73, 5543, 73, 73, 73, 73, 73, 283, 417, 73, 73, 73, 417, 86, 132, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 86, 98, 96, 98, 96, 73, 97, 100, 97, 100, 86, 132, 98, 96, 208, 283, 208, 97, 100, 244, 245, 147, 106, 73, 73, 73, 73, 75, 75, 75, 75, 75, 75, 75, 75, 75, 106, 142, 142, 101, 142, 101, 106, 75, 75, 75, 75, 75, 75, 96, 101, 97, 147, 130, 145, 244, 245, 98, 408, 145, 5544, 144, 111, 111, 111, 111, 402, 96, 130, 100, 75, 75, 75, 75, 75, 75, 76, 122, 118, 144, 130, 145, 122, 148, 101, 76, 118, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 111, 177, 179, 158, 148, 158, 307, 119, 224, 307, 177, 179, 122, 118, 158, 199, 387, 287, 111, 119, 119, 119, 119, 119, 119, 119, 119, 119, 224, 287, 199, 402, 408, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 123, 222, 387, 246, 494, 123, 82, 82, 82, 82, 82, 82, 114, 114, 114, 114, 494, 124, 226, 222, 123, 246, 124, 135, 135, 135, 135, 135, 117, 117, 117, 117, 123, 82, 82, 82, 82, 82, 82, 248, 141, 141, 281, 141, 159, 227, 159, 114, 82, 124, 226, 237, 82, 82, 94, 159, 401, 248, 135, 293, 237, 251, 159, 117, 293, 114, 94, 94, 94, 94, 94, 94, 94, 94, 94, 141, 135, 227, 281, 251, 391, 117, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 117, 413, 94, 391, 94, 94, 94, 94, 94, 94, 102, 401, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 225, 237, 310, 413, 133, 225, 102, 102, 102, 102, 102, 102, 110, 110, 110, 110, 133, 133, 133, 133, 133, 133, 133, 133, 133, 225, 149, 257, 115, 115, 115, 115, 310, 102, 102, 102, 102, 102, 102, 1263, 136, 136, 136, 136, 136, 257, 292, 110, 138, 138, 138, 138, 138, 138, 138, 138, 138, 259, 259, 149, 259, 262, 1263, 115, 257, 110, 143, 143, 143, 143, 143, 143, 143, 143, 143, 136, 143, 149, 292, 262, 396, 115, 110, 407, 110, 112, 112, 143, 112, 112, 112, 112, 112, 136, 284, 112, 112, 112, 115, 284, 115, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 150, 229, 235, 286, 296, 112, 265, 167, 343, 296, 229, 235, 150, 150, 150, 150, 150, 150, 150, 150, 150, 284, 407, 112, 112, 112, 112, 116, 116, 396, 116, 116, 116, 116, 116, 2226, 286, 116, 116, 116, 167, 265, 343, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 167, 457, 267, 270, 457, 116, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 229, 389, 394, 235, 267, 2226, 167, 116, 116, 116, 116, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 267, 270, 270, 116, 151, 151, 294, 151, 151, 151, 151, 151, 151, 151, 151, 151, 271, 151, 151, 190, 190, 190, 190, 190, 190, 190, 190, 190, 151, 151, 151, 151, 151, 151, 151, 410, 389, 394, 294, 438, 151, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 271, 271, 410, 649, 318, 649, 438, 151, 151, 151, 151, 152, 152, 318, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 156, 228, 231, 247, 247, 300, 247, 648, 399, 487, 228, 231, 156, 156, 156, 156, 156, 156, 156, 156, 156, 160, 501, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 162, 648, 487, 501, 300, 247, 160, 160, 160, 160, 160, 160, 162, 162, 162, 162, 162, 162, 162, 162, 162, 261, 261, 247, 261, 311, 398, 162, 337, 399, 228, 231, 234, 160, 160, 160, 160, 160, 160, 163, 163, 234, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 272, 403, 261, 311, 301, 398, 337, 241, 238, 163, 163, 163, 163, 163, 163, 163, 241, 238, 272, 404, 178, 163, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 234, 263, 403, 272, 242, 301, 263, 163, 163, 163, 163, 164, 164, 242, 164, 164, 164, 164, 164, 164, 164, 164, 164, 301, 164, 164, 431, 418, 263, 397, 241, 431, 404, 418, 324, 164, 164, 164, 164, 164, 164, 164, 238, 324, 499, 5550, 180, 164, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 242, 302, 499, 302, 302, 302, 397, 164, 164, 164, 164, 165, 165, 302, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 168, 168, 755, 168, 168, 168, 168, 168, 168, 168, 168, 168, 290, 168, 168, 428, 459, 290, 400, 428, 327, 423, 327, 290, 168, 168, 168, 168, 168, 168, 168, 327, 423, 565, 459, 181, 168, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 755, 303, 565, 303, 303, 303, 400, 168, 168, 168, 168, 169, 169, 303, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 170, 230, 503, 369, 429, 527, 406, 285, 429, 170, 230, 170, 170, 170, 170, 170, 170, 170, 170, 170, 411, 411, 430, 527, 369, 355, 503, 170, 170, 170, 170, 170, 170, 182, 355, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 285, 390, 230, 406, 285, 185, 369, 405, 411, 170, 170, 170, 170, 170, 170, 172, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 455, 426, 5552, 430, 236, 455, 172, 172, 172, 172, 172, 172, 183, 236, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 420, 405, 504, 508, 184, 504, 508, 420, 390, 172, 172, 172, 172, 172, 172, 173, 184, 184, 184, 184, 184, 184, 184, 184, 184, 426, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 236, 184, 187, 187, 187, 187, 187, 187, 187, 187, 187, 232, 203, 240, 946, 187, 236, 518, 518, 184, 232, 946, 240, 187, 203, 203, 203, 203, 203, 203, 203, 203, 203, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 249, 458, 493, 519, 519, 249, 175, 175, 175, 175, 175, 175, 233, 239, 232, 243, 240, 331, 432, 360, 297, 233, 239, 249, 243, 375, 331, 249, 360, 297, 375, 458, 493, 175, 175, 175, 175, 175, 175, 176, 176, 331, 176, 176, 176, 176, 176, 176, 176, 176, 176, 268, 176, 176, 279, 279, 268, 279, 375, 432, 5553, 320, 427, 176, 176, 176, 176, 176, 176, 176, 320, 362, 377, 427, 233, 176, 375, 320, 268, 509, 362, 377, 239, 1035, 239, 252, 243, 362, 373, 279, 509, 268, 297, 176, 176, 176, 186, 252, 252, 252, 252, 252, 252, 252, 252, 252, 463, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 436, 252, 1035, 436, 373, 419, 186, 186, 186, 186, 186, 186, 278, 419, 279, 433, 373, 373, 436, 252, 358, 463, 373, 278, 278, 278, 278, 278, 278, 278, 278, 278, 461, 186, 186, 186, 186, 186, 186, 188, 188, 188, 188, 188, 188, 188, 188, 188, 358, 656, 256, 5571, 461, 358, 433, 188, 188, 188, 188, 188, 188, 256, 256, 256, 256, 256, 256, 256, 256, 256, 416, 358, 531, 421, 520, 520, 656, 256, 531, 416, 278, 421, 188, 188, 188, 188, 188, 188, 223, 330, 330, 330, 330, 330, 330, 330, 330, 330, 277, 577, 223, 223, 223, 223, 223, 223, 223, 223, 223, 277, 277, 277, 277, 277, 277, 277, 277, 277, 282, 282, 422, 223, 495, 563, 416, 277, 563, 495, 422, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 495, 577, 223, 425, 223, 223, 223, 223, 223, 223, 250, 250, 425, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 253, 253, 486, 253, 253, 253, 253, 253, 507, 599, 253, 253, 253, 507, 304, 304, 304, 304, 304, 304, 304, 304, 304, 599, 304, 253, 253, 253, 253, 253, 253, 266, 266, 443, 266, 304, 253, 486, 651, 309, 309, 309, 309, 309, 309, 309, 309, 309, 434, 309, 489, 443, 2235, 434, 253, 253, 253, 253, 254, 254, 309, 254, 254, 254, 254, 254, 266, 651, 254, 254, 254, 434, 443, 254, 254, 254, 254, 254, 254, 254, 254, 254, 489, 254, 254, 254, 254, 254, 254, 442, 289, 446, 511, 437, 254, 441, 2235, 511, 506, 440, 441, 266, 289, 289, 289, 289, 289, 289, 289, 289, 506, 437, 254, 254, 254, 254, 255, 440, 441, 440, 441, 442, 289, 437, 446, 474, 488, 255, 255, 255, 255, 255, 255, 255, 255, 255, 449, 305, 305, 442, 927, 449, 446, 255, 255, 255, 255, 255, 255, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 451, 474, 488, 464, 653, 474, 306, 306, 464, 451, 449, 255, 255, 255, 255, 255, 255, 264, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 449, 264, 264, 264, 264, 264, 264, 264, 264, 264, 927, 513, 522, 522, 653, 464, 513, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 466, 467, 264, 466, 264, 264, 264, 264, 264, 264, 269, 312, 312, 312, 312, 312, 312, 312, 312, 312, 5572, 312, 269, 269, 269, 269, 269, 269, 269, 269, 269, 467, 312, 574, 491, 466, 467, 491, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 574, 482, 269, 497, 269, 269, 269, 269, 269, 269, 482, 491, 497, 523, 523, 524, 524, 269, 273, 308, 308, 308, 308, 308, 308, 308, 308, 308, 672, 308, 273, 273, 273, 273, 273, 273, 273, 273, 273, 323, 308, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 273, 325, 514, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 564, 496, 586, 586, 586, 273, 496, 654, 498, 326, 308, 326, 326, 326, 326, 326, 326, 498, 496, 564, 326, 514, 273, 274, 274, 335, 274, 274, 274, 274, 274, 462, 672, 274, 274, 274, 462, 335, 335, 335, 335, 335, 335, 335, 335, 335, 644, 654, 274, 274, 274, 274, 274, 274, 570, 468, 462, 621, 447, 274, 335, 348, 348, 348, 348, 348, 348, 348, 348, 348, 621, 556, 570, 468, 675, 589, 644, 274, 274, 274, 274, 349, 349, 349, 349, 349, 349, 349, 349, 349, 468, 447, 556, 534, 274, 275, 275, 477, 275, 275, 275, 275, 275, 447, 447, 275, 275, 275, 470, 447, 275, 275, 275, 275, 275, 275, 275, 275, 275, 556, 275, 275, 275, 275, 275, 275, 534, 641, 470, 589, 477, 275, 367, 367, 367, 367, 367, 367, 367, 367, 367, 622, 675, 470, 622, 502, 830, 641, 477, 275, 275, 275, 275, 368, 502, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 477, 275, 276, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 276, 276, 276, 276, 276, 276, 276, 276, 276, 623, 666, 666, 673, 830, 673, 623, 276, 276, 276, 276, 276, 276, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 385, 638, 385, 385, 385, 385, 385, 385, 385, 385, 385, 276, 276, 276, 276, 276, 276, 313, 313, 638, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 314, 314, 646, 314, 314, 314, 314, 314, 314, 314, 314, 314, 379, 314, 314, 492, 5586, 660, 652, 661, 686, 379, 646, 652, 314, 314, 314, 314, 314, 314, 314, 314, 374, 379, 573, 660, 314, 661, 686, 567, 925, 492, 573, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 492, 314, 314, 314, 314, 315, 315, 379, 315, 315, 315, 315, 315, 315, 315, 315, 315, 567, 315, 315, 381, 381, 381, 381, 381, 381, 381, 381, 521, 315, 315, 315, 315, 315, 315, 315, 667, 521, 688, 667, 381, 315, 521, 664, 380, 380, 380, 380, 380, 380, 380, 380, 380, 664, 925, 668, 688, 380, 668, 315, 315, 315, 315, 316, 316, 380, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 317, 317, 5587, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 319, 453, 650, 472, 473, 655, 657, 662, 749, 749, 453, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 516, 453, 590, 378, 452, 669, 319, 319, 319, 319, 319, 319, 378, 452, 472, 473, 650, 525, 662, 378, 452, 547, 655, 657, 378, 452, 525, 516, 453, 590, 547, 525, 516, 319, 319, 319, 319, 319, 319, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 472, 473, 378, 452, 550, 553, 321, 321, 321, 321, 321, 321, 670, 550, 553, 670, 669, 681, 922, 590, 409, 409, 409, 409, 409, 409, 409, 409, 409, 553, 409, 640, 5647, 321, 321, 321, 321, 321, 321, 322, 322, 409, 322, 322, 322, 322, 322, 322, 322, 322, 322, 471, 322, 322, 680, 480, 471, 640, 681, 676, 480, 483, 484, 322, 322, 322, 322, 322, 322, 322, 483, 484, 558, 624, 922, 322, 471, 483, 555, 677, 555, 558, 483, 484, 647, 677, 680, 629, 480, 555, 736, 471, 647, 322, 322, 322, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 480, 624, 629, 483, 484, 328, 328, 328, 328, 328, 328, 328, 671, 676, 708, 671, 736, 480, 748, 624, 456, 456, 456, 456, 456, 456, 456, 456, 456, 629, 456, 748, 708, 328, 328, 328, 328, 328, 328, 336, 336, 456, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 542, 542, 542, 542, 542, 542, 542, 542, 542, 336, 336, 336, 336, 336, 336, 336, 679, 683, 5728, 745, 691, 336, 679, 683, 465, 465, 465, 465, 465, 465, 465, 465, 465, 691, 465, 683, 735, 745, 691, 336, 336, 336, 336, 338, 338, 465, 338, 338, 338, 338, 338, 338, 338, 338, 338, 739, 338, 338, 543, 543, 543, 543, 543, 543, 543, 543, 543, 338, 338, 338, 338, 338, 338, 338, 692, 735, 921, 692, 919, 338, 465, 475, 475, 475, 475, 475, 475, 475, 475, 475, 705, 475, 692, 739, 739, 5886, 705, 338, 338, 338, 339, 339, 475, 339, 339, 339, 339, 339, 339, 339, 339, 339, 737, 339, 339, 587, 587, 587, 587, 587, 587, 587, 587, 587, 339, 339, 339, 339, 339, 339, 339, 339, 490, 490, 751, 693, 339, 475, 921, 737, 751, 693, 919, 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, 693, 339, 339, 339, 340, 340, 5887, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 342, 342, 684, 342, 342, 342, 342, 342, 342, 342, 342, 342, 560, 342, 342, 834, 689, 752, 717, 5888, 684, 560, 752, 834, 342, 342, 342, 342, 342, 342, 342, 528, 528, 560, 689, 684, 342, 753, 756, 342, 753, 756, 689, 528, 528, 528, 528, 528, 528, 528, 528, 528, 528, 717, 342, 342, 342, 342, 344, 344, 560, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 345, 345, 706, 345, 345, 345, 345, 345, 345, 345, 345, 345, 515, 345, 345, 709, 709, 765, 757, 776, 515, 757, 765, 548, 345, 345, 345, 345, 345, 345, 345, 345, 548, 552, 601, 706, 345, 603, 604, 548, 694, 606, 552, 601, 515, 713, 603, 604, 709, 552, 606, 609, 776, 603, 345, 345, 345, 345, 346, 346, 609, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 1751, 694, 609, 828, 791, 713, 515, 713, 740, 346, 346, 346, 346, 346, 346, 346, 530, 530, 626, 694, 770, 346, 791, 828, 1751, 770, 742, 626, 530, 530, 530, 530, 530, 530, 530, 530, 530, 530, 742, 346, 346, 346, 346, 347, 347, 740, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 801, 801, 801, 1045, 561, 347, 561, 561, 561, 561, 561, 561, 561, 561, 561, 754, 763, 895, 895, 1045, 696, 754, 763, 347, 347, 347, 347, 350, 350, 696, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 352, 352, 747, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 615, 615, 615, 615, 615, 615, 615, 615, 615, 352, 352, 352, 352, 352, 352, 352, 372, 726, 762, 747, 792, 352, 928, 762, 718, 764, 726, 372, 372, 372, 372, 372, 372, 372, 372, 372, 630, 954, 764, 352, 352, 352, 352, 762, 954, 630, 792, 5920, 372, 616, 616, 616, 616, 616, 616, 616, 616, 616, 718, 718, 630, 352, 353, 353, 928, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 354, 354, 5921, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 356, 617, 617, 617, 617, 617, 617, 617, 617, 617, 500, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, 618, 500, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 951, 741, 566, 5922, 741, 951, 359, 359, 359, 359, 359, 359, 445, 741, 566, 566, 566, 566, 566, 566, 566, 566, 566, 445, 445, 445, 445, 445, 445, 445, 445, 445, 619, 359, 359, 359, 359, 359, 359, 361, 566, 619, 715, 712, 445, 894, 840, 836, 619, 712, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 715, 767, 445, 628, 766, 836, 361, 361, 361, 361, 361, 361, 628, 639, 767, 894, 766, 715, 712, 628, 719, 687, 687, 840, 639, 639, 639, 639, 639, 639, 639, 639, 639, 361, 361, 361, 361, 361, 361, 363, 363, 699, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 687, 719, 750, 1241, 890, 900, 769, 719, 699, 363, 363, 363, 363, 363, 363, 363, 559, 607, 687, 769, 698, 363, 890, 900, 722, 559, 607, 722, 639, 698, 759, 761, 559, 607, 750, 699, 698, 559, 607, 363, 363, 363, 363, 365, 365, 478, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 929, 722, 1241, 935, 759, 761, 559, 607, 761, 365, 365, 365, 365, 365, 365, 365, 608, 768, 728, 771, 478, 365, 772, 768, 723, 608, 782, 728, 716, 716, 723, 771, 478, 478, 728, 772, 700, 608, 478, 365, 365, 365, 365, 366, 366, 700, 366, 366, 366, 366, 366, 366, 366, 366, 366, 478, 366, 366, 782, 723, 700, 716, 929, 758, 608, 935, 855, 366, 366, 366, 366, 366, 366, 366, 366, 588, 809, 855, 829, 366, 931, 1046, 6040, 1046, 588, 809, 588, 588, 588, 588, 588, 588, 588, 588, 588, 758, 716, 366, 366, 366, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 588, 729, 924, 631, 632, 701, 376, 376, 376, 376, 376, 376, 631, 632, 701, 721, 829, 865, 812, 631, 758, 701, 729, 814, 631, 632, 701, 812, 721, 724, 865, 931, 814, 376, 376, 376, 376, 376, 376, 382, 382, 382, 382, 382, 382, 382, 382, 382, 824, 729, 721, 631, 632, 701, 896, 382, 382, 382, 382, 382, 382, 476, 734, 724, 924, 947, 896, 6055, 937, 824, 924, 947, 476, 476, 476, 476, 476, 476, 476, 476, 476, 724, 382, 382, 382, 382, 382, 382, 386, 885, 760, 912, 912, 476, 960, 734, 824, 885, 724, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 1612, 933, 912, 960, 734, 821, 386, 386, 386, 386, 386, 386, 643, 760, 821, 1612, 738, 937, 948, 476, 734, 734, 738, 643, 643, 643, 643, 643, 643, 643, 643, 643, 933, 386, 386, 386, 386, 386, 386, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 760, 943, 1043, 730, 867, 738, 414, 414, 414, 414, 414, 414, 730, 867, 1043, 943, 948, 1050, 526, 526, 526, 526, 526, 526, 526, 526, 526, 730, 526, 1050, 643, 870, 874, 414, 414, 414, 414, 414, 414, 526, 870, 414, 435, 435, 435, 435, 435, 435, 435, 435, 435, 879, 435, 874, 533, 533, 533, 533, 533, 533, 533, 533, 533, 435, 533, 876, 958, 817, 902, 825, 873, 958, 879, 526, 876, 533, 817, 902, 825, 873, 874, 435, 535, 535, 535, 535, 535, 535, 535, 535, 535, 817, 535, 825, 873, 905, 811, 1275, 777, 879, 435, 439, 1275, 535, 905, 811, 962, 969, 949, 533, 999, 633, 811, 439, 439, 439, 439, 439, 439, 439, 439, 439, 633, 633, 633, 633, 633, 633, 633, 633, 633, 777, 702, 926, 439, 1865, 999, 535, 962, 969, 952, 702, 778, 633, 783, 783, 952, 785, 785, 777, 957, 957, 439, 702, 439, 949, 439, 439, 439, 439, 439, 439, 444, 444, 444, 444, 444, 444, 444, 444, 444, 1865, 444, 645, 926, 778, 950, 950, 783, 1224, 702, 785, 897, 444, 645, 645, 645, 645, 645, 645, 645, 645, 645, 778, 1257, 926, 783, 968, 957, 785, 970, 444, 659, 659, 659, 659, 659, 659, 659, 659, 659, 645, 659, 1034, 1257, 1048, 897, 975, 970, 968, 444, 448, 448, 659, 448, 448, 448, 448, 448, 1048, 950, 448, 448, 448, 897, 975, 448, 448, 448, 448, 448, 448, 448, 448, 448, 880, 448, 448, 448, 448, 448, 448, 1224, 1034, 880, 976, 1047, 448, 953, 1047, 707, 707, 707, 707, 707, 707, 707, 707, 707, 880, 707, 953, 6057, 976, 953, 448, 448, 448, 448, 450, 450, 707, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 450, 454, 454, 1051, 454, 454, 454, 454, 454, 1051, 1261, 454, 454, 454, 658, 658, 658, 658, 658, 658, 658, 658, 658, 920, 658, 966, 454, 454, 454, 454, 454, 454, 786, 786, 899, 658, 997, 454, 1834, 1059, 454, 704, 704, 704, 704, 704, 704, 704, 704, 704, 1059, 704, 966, 1834, 997, 454, 454, 454, 454, 460, 1261, 732, 704, 899, 966, 972, 786, 6058, 899, 658, 732, 460, 460, 460, 460, 460, 460, 460, 460, 460, 986, 979, 732, 972, 786, 920, 899, 1054, 1062, 986, 1062, 972, 460, 1054, 920, 1002, 704, 793, 793, 979, 714, 714, 714, 714, 714, 714, 714, 714, 714, 732, 714, 979, 460, 1002, 460, 460, 460, 460, 460, 460, 469, 714, 788, 788, 788, 788, 788, 788, 788, 788, 788, 793, 469, 469, 469, 469, 469, 469, 469, 469, 469, 819, 823, 731, 1270, 868, 872, 1081, 977, 793, 819, 823, 731, 469, 868, 872, 714, 819, 823, 731, 908, 868, 872, 989, 731, 815, 977, 980, 980, 908, 977, 971, 989, 469, 815, 469, 469, 469, 469, 469, 469, 815, 1060, 1060, 908, 980, 815, 1270, 469, 479, 479, 731, 479, 479, 479, 479, 479, 998, 1081, 479, 479, 479, 6060, 971, 479, 479, 479, 479, 479, 479, 479, 479, 479, 815, 479, 479, 479, 479, 479, 479, 746, 971, 1055, 1049, 1014, 479, 1064, 1064, 1055, 998, 1003, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, 878, 903, 479, 479, 479, 479, 909, 1003, 1149, 878, 903, 746, 1149, 1014, 1049, 909, 878, 903, 1014, 479, 481, 481, 909, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 481, 485, 485, 1011, 485, 485, 485, 485, 485, 1087, 2350, 485, 485, 485, 774, 774, 774, 774, 774, 774, 774, 774, 774, 1037, 774, 1011, 485, 485, 485, 485, 485, 485, 978, 978, 1087, 774, 1052, 485, 1011, 2350, 485, 802, 802, 802, 802, 802, 802, 802, 802, 802, 816, 987, 981, 1669, 1268, 485, 485, 485, 485, 816, 987, 1037, 831, 831, 981, 1057, 978, 987, 1052, 1037, 981, 816, 485, 517, 831, 831, 831, 831, 831, 831, 831, 831, 831, 831, 978, 517, 517, 517, 517, 517, 517, 517, 517, 517, 1066, 1669, 1066, 1057, 816, 1268, 1328, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 2511, 1328, 517, 993, 517, 517, 517, 517, 517, 517, 529, 529, 993, 529, 529, 529, 529, 529, 1006, 993, 529, 529, 529, 1058, 803, 982, 803, 803, 803, 803, 803, 803, 803, 803, 803, 529, 529, 529, 529, 529, 529, 803, 826, 1022, 1006, 2511, 529, 983, 1015, 1015, 803, 826, 1022, 1006, 1005, 1058, 1061, 1193, 826, 982, 1157, 1058, 1157, 826, 529, 529, 529, 529, 532, 532, 532, 532, 532, 532, 532, 532, 983, 982, 532, 532, 532, 983, 984, 1015, 532, 532, 1005, 1292, 1061, 1063, 826, 1193, 992, 532, 532, 532, 532, 532, 532, 983, 984, 992, 1063, 1222, 532, 1067, 1222, 835, 835, 835, 835, 835, 835, 835, 835, 835, 992, 6062, 1067, 984, 1292, 1005, 532, 532, 532, 532, 536, 536, 835, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 536, 538, 538, 1004, 538, 538, 538, 538, 538, 538, 538, 538, 538, 827, 538, 538, 1267, 1009, 1010, 1065, 6063, 1004, 827, 1025, 1033, 538, 538, 538, 538, 538, 538, 538, 1025, 1033, 827, 1009, 1010, 538, 1004, 1012, 538, 850, 850, 850, 850, 850, 850, 850, 850, 850, 1267, 1065, 1009, 1010, 1611, 538, 538, 538, 538, 539, 539, 827, 539, 539, 539, 539, 539, 539, 539, 539, 539, 1012, 539, 539, 851, 851, 851, 851, 851, 851, 851, 851, 851, 539, 539, 539, 539, 539, 539, 539, 539, 881, 1259, 1023, 1029, 539, 1038, 6064, 1013, 1013, 881, 1019, 1023, 1029, 1259, 1038, 1012, 881, 1611, 1023, 1029, 1291, 881, 539, 539, 539, 539, 540, 540, 1019, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1013, 1129, 1136, 1071, 1019, 1036, 1194, 881, 1028, 540, 540, 540, 540, 540, 540, 540, 1291, 1028, 1013, 1194, 887, 540, 887, 887, 887, 887, 887, 887, 887, 887, 887, 1071, 1028, 1129, 1136, 1013, 1071, 1036, 887, 540, 540, 540, 540, 541, 541, 1137, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 541, 1571, 1036, 1571, 1137, 888, 541, 888, 888, 888, 888, 888, 888, 888, 888, 888, 1078, 1144, 1144, 1144, 6067, 1098, 1078, 888, 541, 541, 541, 541, 544, 544, 1098, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 544, 546, 546, 6069, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 546, 549, 882, 1290, 1262, 3759, 1105, 1220, 1545, 1545, 1016, 882, 549, 549, 549, 549, 549, 549, 549, 549, 549, 549, 1016, 882, 3759, 1110, 906, 1105, 549, 549, 549, 549, 549, 549, 889, 906, 889, 889, 889, 889, 889, 889, 906, 1262, 1101, 1016, 1110, 906, 1274, 1290, 882, 1041, 889, 1101, 1105, 549, 549, 549, 549, 549, 549, 551, 551, 551, 551, 551, 551, 551, 551, 551, 551, 1041, 1220, 1110, 906, 1104, 551, 551, 551, 551, 551, 551, 551, 1041, 1104, 1199, 852, 1397, 852, 852, 852, 852, 852, 852, 852, 852, 852, 1274, 1668, 1104, 1397, 1208, 1668, 1199, 551, 551, 551, 551, 551, 551, 554, 554, 852, 554, 554, 554, 554, 554, 554, 554, 554, 554, 1208, 554, 554, 893, 893, 893, 893, 893, 893, 893, 893, 893, 554, 554, 554, 554, 554, 554, 554, 554, 907, 918, 1107, 1195, 554, 1238, 1070, 1208, 2348, 907, 1369, 1107, 918, 918, 918, 918, 918, 918, 918, 918, 918, 907, 554, 554, 554, 557, 557, 557, 557, 557, 557, 557, 557, 557, 557, 1195, 1369, 1238, 910, 1070, 911, 557, 557, 557, 557, 557, 557, 910, 907, 911, 1039, 1073, 2348, 1044, 910, 1116, 1039, 1070, 1119, 910, 1044, 911, 1039, 918, 1116, 1044, 1245, 1119, 557, 557, 557, 557, 557, 557, 562, 562, 562, 562, 562, 562, 562, 562, 562, 562, 1073, 1277, 910, 1099, 911, 1111, 562, 562, 562, 562, 562, 562, 1099, 1245, 1111, 6070, 1284, 562, 1073, 1099, 941, 941, 941, 941, 941, 941, 941, 941, 941, 1111, 941, 1223, 1277, 562, 562, 562, 562, 562, 562, 568, 568, 941, 568, 568, 568, 568, 568, 568, 568, 568, 568, 1284, 568, 568, 956, 956, 956, 956, 956, 956, 956, 956, 1237, 568, 568, 568, 568, 568, 568, 568, 990, 991, 1040, 1163, 1247, 568, 1166, 1040, 1017, 990, 991, 1168, 1163, 1040, 1250, 1166, 990, 1546, 1546, 1040, 1168, 990, 991, 568, 568, 568, 569, 569, 1223, 569, 569, 569, 569, 569, 569, 569, 569, 569, 1174, 569, 569, 956, 1017, 1042, 956, 1074, 1250, 1174, 990, 991, 569, 569, 569, 569, 569, 569, 569, 569, 994, 1237, 1017, 2083, 569, 1042, 1020, 1079, 1079, 994, 1083, 1083, 1042, 1247, 1608, 1074, 994, 1042, 1177, 1017, 1074, 994, 569, 569, 569, 571, 571, 1177, 571, 571, 571, 571, 571, 571, 571, 571, 571, 1205, 571, 571, 1020, 1079, 1074, 2083, 1083, 1225, 1205, 1287, 994, 571, 571, 571, 571, 571, 571, 571, 995, 1026, 1020, 1079, 1122, 571, 1083, 1225, 1126, 995, 1026, 1287, 1056, 1122, 1431, 1431, 1431, 1026, 1608, 1020, 1020, 995, 1026, 571, 571, 571, 572, 572, 1122, 572, 572, 572, 572, 572, 572, 572, 572, 572, 1236, 572, 572, 1126, 1226, 1234, 1056, 1253, 1236, 1126, 995, 1026, 572, 572, 572, 572, 572, 572, 572, 572, 1056, 1126, 1226, 1234, 572, 1380, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1655, 1001, 1380, 1655, 1253, 1380, 1056, 572, 572, 572, 575, 575, 1001, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 575, 576, 576, 6073, 576, 576, 576, 576, 576, 576, 576, 576, 576, 1027, 576, 576, 1189, 1189, 1189, 1189, 1189, 1189, 1027, 1400, 1103, 576, 576, 576, 576, 576, 576, 576, 1030, 1103, 1027, 1109, 1400, 576, 1117, 1300, 1103, 1030, 1018, 576, 1109, 1080, 1080, 1117, 1030, 1289, 2729, 1109, 1370, 1030, 1117, 576, 576, 576, 576, 578, 578, 1027, 578, 578, 578, 578, 578, 578, 578, 578, 578, 1018, 578, 578, 1080, 1280, 1018, 1349, 1285, 1080, 1030, 1289, 1283, 578, 578, 578, 578, 578, 578, 578, 1283, 1370, 1478, 1280, 1018, 578, 1285, 1080, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 2729, 1082, 1300, 1478, 1018, 1349, 578, 578, 578, 578, 579, 579, 1082, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 579, 581, 581, 1251, 581, 581, 581, 581, 581, 581, 581, 581, 581, 1031, 581, 581, 1346, 1594, 1295, 1594, 1305, 1384, 1031, 1123, 1295, 581, 581, 581, 581, 581, 581, 581, 1123, 1384, 1031, 1251, 1295, 581, 1305, 1123, 581, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1346, 1346, 6075, 1251, 1305, 581, 581, 581, 581, 582, 582, 1031, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 583, 583, 1307, 583, 583, 583, 583, 583, 583, 583, 583, 583, 583, 583, 583, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 583, 583, 583, 583, 583, 583, 583, 583, 1327, 1574, 1307, 1306, 583, 6076, 1327, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1306, 1008, 1872, 1574, 1307, 1306, 583, 583, 583, 583, 584, 584, 1008, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 584, 1112, 1113, 1165, 1172, 1872, 584, 1008, 1383, 1316, 1112, 1113, 1165, 1172, 1084, 1084, 1383, 1112, 1316, 1165, 1172, 1171, 1112, 1113, 584, 584, 584, 584, 591, 591, 1171, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 1084, 1296, 1171, 1347, 1597, 1084, 1112, 1113, 1175, 591, 591, 591, 591, 591, 591, 591, 1347, 1175, 4593, 1296, 1288, 591, 1597, 1084, 1175, 1288, 1296, 1084, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 4593, 1347, 591, 591, 591, 591, 592, 592, 1288, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 592, 594, 594, 6082, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 594, 596, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 913, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 913, 913, 913, 913, 913, 913, 913, 913, 913, 940, 940, 940, 940, 940, 940, 940, 940, 940, 1323, 940, 1385, 913, 6084, 1358, 1539, 1323, 1385, 1302, 1302, 1198, 940, 1248, 1358, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 596, 600, 1121, 1340, 1302, 1381, 1198, 940, 1539, 1198, 1613, 1121, 600, 600, 600, 600, 600, 600, 600, 600, 600, 600, 1302, 1121, 1198, 1120, 1124, 1125, 600, 600, 600, 600, 600, 600, 1120, 1124, 1125, 1381, 1340, 1248, 1219, 1120, 1124, 1613, 1340, 1248, 1120, 1124, 1125, 1246, 1121, 1219, 1219, 1219, 1408, 600, 600, 600, 600, 600, 600, 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, 1301, 1219, 1120, 1124, 1125, 1181, 602, 602, 602, 602, 602, 602, 917, 1269, 1181, 1365, 1408, 1750, 1301, 1246, 1750, 1181, 1365, 917, 917, 917, 917, 917, 917, 917, 917, 917, 1207, 602, 602, 602, 602, 602, 602, 605, 1180, 1207, 1301, 1246, 917, 1341, 1408, 1635, 1207, 1180, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 1634, 1634, 1642, 1318, 1180, 1341, 605, 605, 605, 605, 605, 605, 1318, 1308, 1310, 1635, 2357, 1341, 1269, 1318, 1146, 1269, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1308, 1310, 605, 605, 605, 605, 605, 605, 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, 1146, 1308, 1310, 1341, 1375, 1209, 610, 610, 610, 610, 610, 610, 1386, 2357, 1209, 1642, 1375, 610, 1386, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1209, 1374, 1375, 1372, 610, 610, 610, 610, 610, 610, 611, 611, 1131, 611, 611, 611, 611, 611, 611, 611, 611, 611, 1377, 611, 611, 1388, 1485, 1766, 1372, 1598, 1766, 1388, 1485, 1374, 611, 611, 611, 611, 611, 611, 611, 1372, 1377, 1396, 1485, 1374, 611, 1598, 1303, 1303, 1309, 1396, 1405, 1095, 1377, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 611, 611, 611, 612, 612, 1319, 612, 612, 612, 612, 612, 612, 612, 612, 612, 1095, 612, 612, 1303, 1334, 1309, 1405, 1569, 1309, 1405, 1334, 1319, 612, 612, 612, 612, 612, 612, 612, 612, 1361, 1303, 1351, 1309, 612, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1382, 1487, 1544, 1319, 1334, 1351, 1361, 612, 612, 612, 613, 613, 1132, 613, 613, 613, 613, 613, 613, 613, 613, 613, 1351, 613, 613, 1481, 1606, 1487, 1544, 1387, 1391, 4423, 1382, 1361, 613, 613, 613, 613, 613, 613, 613, 1147, 1170, 1637, 1606, 1569, 613, 1481, 1637, 613, 1147, 1170, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1387, 1391, 1170, 613, 613, 613, 614, 614, 1325, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, 4423, 1566, 1566, 1566, 1566, 1566, 1753, 1753, 1170, 614, 614, 614, 614, 614, 614, 614, 1150, 1150, 1371, 1626, 1325, 614, 1566, 1392, 1371, 1395, 1325, 1626, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1325, 614, 614, 614, 614, 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, 1158, 1158, 1392, 1371, 1395, 1470, 625, 625, 625, 625, 625, 625, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1399, 1416, 1672, 1756, 1470, 1638, 6085, 1672, 1516, 1756, 1416, 625, 625, 625, 625, 625, 625, 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, 1159, 1159, 1516, 1649, 1470, 1399, 627, 627, 627, 627, 627, 627, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1440, 1649, 1638, 1638, 1335, 1731, 3812, 1516, 1378, 1440, 1379, 627, 627, 627, 627, 627, 627, 634, 634, 634, 634, 634, 634, 634, 634, 634, 1413, 1413, 1378, 1335, 1379, 3812, 1320, 634, 634, 634, 634, 634, 634, 1335, 1378, 1320, 1379, 1378, 1731, 1767, 1767, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1320, 1785, 1785, 1413, 634, 634, 634, 634, 634, 634, 637, 637, 1133, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 637, 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, 3032, 1645, 1799, 1799, 3032, 1443, 663, 663, 663, 663, 663, 663, 1342, 1342, 1443, 1445, 1451, 1454, 1348, 1179, 1183, 1211, 1322, 1169, 1445, 1451, 1454, 1411, 1179, 1183, 1211, 1322, 1169, 663, 663, 663, 663, 663, 663, 1169, 1179, 1183, 1211, 1322, 1169, 1615, 1342, 663, 674, 674, 1348, 674, 674, 674, 674, 674, 674, 674, 674, 674, 1411, 674, 674, 1645, 1342, 1661, 4428, 1179, 1183, 1211, 1322, 1169, 674, 674, 674, 674, 674, 674, 674, 1393, 1411, 1342, 4428, 1661, 674, 1348, 1425, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1178, 1000, 1182, 1521, 1210, 1362, 674, 674, 674, 1178, 1360, 1182, 1000, 1210, 1362, 1393, 1178, 1615, 1182, 1360, 1210, 1178, 1425, 1182, 1521, 1210, 1360, 1393, 2051, 1362, 674, 678, 678, 1376, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, 1000, 2077, 1178, 1486, 1182, 1521, 1210, 1376, 1467, 678, 678, 678, 678, 678, 678, 678, 1665, 1467, 2077, 1376, 2051, 678, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1486, 1068, 1376, 1665, 1448, 1509, 1486, 1072, 678, 678, 678, 678, 1068, 1448, 1509, 1304, 1304, 1409, 1595, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1448, 1072, 678, 682, 682, 682, 682, 682, 682, 682, 682, 682, 1072, 682, 1190, 1190, 1304, 1761, 1068, 6091, 2104, 1304, 1409, 1761, 682, 1595, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1191, 1191, 1512, 1304, 1409, 1507, 682, 1564, 1576, 1343, 1343, 1512, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 682, 685, 685, 685, 685, 685, 685, 685, 685, 685, 1394, 685, 1200, 1200, 1457, 1507, 2333, 1564, 1576, 1941, 2104, 1343, 685, 1457, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1201, 1201, 1576, 1617, 1457, 1343, 685, 1627, 1394, 1620, 1620, 1412, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1343, 2333, 1941, 685, 690, 690, 690, 690, 690, 690, 690, 690, 690, 1617, 690, 1213, 1213, 1412, 1572, 1620, 1627, 1394, 1412, 1572, 1698, 690, 1394, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1264, 1264, 1518, 1617, 1572, 1412, 690, 1698, 1886, 1886, 1886, 1518, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 690, 695, 695, 6093, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 695, 697, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 2070, 697, 697, 697, 697, 697, 697, 697, 697, 697, 697, 1609, 1214, 1265, 1265, 1530, 1533, 697, 697, 697, 697, 697, 697, 1644, 1530, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1758, 2070, 1533, 1609, 1350, 1402, 1402, 1677, 1632, 697, 697, 697, 697, 697, 697, 703, 703, 703, 703, 703, 703, 703, 703, 703, 1758, 1677, 1652, 1402, 1321, 1533, 1609, 703, 703, 703, 703, 703, 703, 1321, 1350, 1402, 1632, 1350, 703, 1549, 1321, 1552, 1652, 6094, 1677, 1321, 1618, 1633, 1549, 1652, 1552, 1644, 1350, 1402, 703, 703, 703, 703, 703, 703, 711, 711, 711, 711, 711, 711, 711, 711, 711, 1350, 711, 1218, 1321, 1618, 1345, 1345, 1344, 1344, 1618, 1633, 1670, 711, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1685, 1258, 1688, 1218, 1643, 1344, 2136, 2136, 1345, 1685, 1344, 1688, 1258, 1670, 1643, 711, 711, 720, 720, 720, 720, 720, 720, 720, 720, 720, 1345, 720, 1344, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 720, 1276, 1471, 1762, 1515, 1345, 1345, 1344, 1258, 1762, 1808, 1471, 1276, 1515, 1681, 1681, 2799, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1471, 1331, 1515, 2192, 2192, 2799, 1808, 1681, 720, 720, 725, 725, 1331, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, 727, 1352, 1659, 1352, 1697, 1748, 1666, 1666, 5591, 1748, 1659, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 1748, 5591, 1675, 1363, 1364, 1680, 727, 727, 727, 727, 727, 727, 1363, 1364, 1352, 1697, 1418, 1418, 1666, 1363, 1675, 1696, 1675, 1680, 1363, 1364, 1713, 1713, 1367, 1547, 1696, 1680, 1352, 727, 727, 727, 727, 727, 727, 733, 733, 733, 733, 733, 733, 733, 733, 733, 1897, 1352, 1418, 1363, 1364, 1418, 1897, 733, 733, 733, 733, 733, 733, 1367, 1713, 1547, 2195, 2195, 733, 1367, 1418, 1547, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1367, 1419, 1547, 733, 733, 733, 733, 733, 733, 773, 773, 773, 773, 773, 773, 773, 773, 1367, 1522, 773, 773, 773, 1700, 1673, 1442, 773, 773, 1522, 1732, 1630, 2509, 1700, 1673, 1442, 773, 773, 773, 773, 773, 773, 1442, 1673, 1522, 1682, 1682, 773, 1422, 1422, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1700, 1338, 5100, 1732, 1630, 1682, 773, 773, 773, 773, 775, 775, 1338, 775, 775, 775, 775, 775, 5100, 2509, 775, 775, 775, 1422, 1630, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 1422, 1718, 1721, 1730, 1739, 775, 1338, 1580, 1730, 1739, 1718, 1721, 1422, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 2010, 775, 775, 775, 775, 779, 779, 1404, 779, 779, 779, 779, 779, 1861, 1866, 779, 779, 779, 1580, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1896, 1404, 779, 779, 779, 779, 779, 779, 1580, 1702, 1866, 1861, 1404, 779, 1433, 6104, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 2072, 1752, 1896, 2010, 1702, 2072, 779, 779, 779, 779, 780, 780, 1407, 780, 780, 780, 780, 780, 1433, 1702, 780, 780, 780, 1704, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1752, 1407, 780, 780, 780, 780, 780, 780, 780, 2079, 1976, 1755, 1407, 780, 1704, 1797, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1704, 1417, 1863, 1976, 2079, 6105, 780, 780, 780, 780, 781, 781, 1417, 781, 781, 781, 781, 781, 1755, 1763, 781, 781, 781, 1797, 1863, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 1435, 1435, 1793, 1863, 1970, 781, 2239, 1970, 2239, 1763, 1763, 1734, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1970, 781, 781, 781, 781, 787, 787, 787, 787, 787, 787, 787, 787, 1793, 1734, 787, 787, 787, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1734, 1421, 1449, 787, 787, 787, 787, 787, 787, 1436, 1436, 1449, 1421, 1833, 787, 2263, 2263, 2263, 1449, 1793, 1833, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 2568, 787, 787, 787, 787, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 794, 794, 2568, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 794, 795, 795, 1790, 795, 795, 795, 795, 795, 795, 795, 795, 795, 1754, 795, 795, 1864, 2107, 2171, 6184, 2107, 2171, 1754, 1452, 1458, 795, 795, 795, 795, 795, 795, 795, 1452, 1458, 1843, 1434, 1790, 795, 1864, 1452, 1458, 1843, 1790, 795, 1434, 1701, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 795, 795, 795, 795, 796, 796, 1434, 796, 796, 796, 796, 796, 796, 796, 796, 796, 1447, 796, 796, 2231, 1712, 1898, 1701, 1939, 1647, 1447, 1469, 1898, 796, 796, 796, 796, 796, 796, 796, 1469, 1480, 1447, 1510, 1480, 796, 1480, 1469, 796, 1647, 1480, 1712, 1510, 1480, 1480, 1480, 1939, 2231, 1480, 1510, 1712, 1647, 1701, 796, 796, 796, 796, 797, 797, 1447, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, 798, 798, 1628, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 798, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 798, 798, 798, 798, 798, 798, 798, 798, 2178, 1981, 1628, 2178, 798, 1875, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1875, 6185, 1969, 1981, 1628, 1875, 798, 798, 798, 798, 799, 799, 1482, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, 1446, 1455, 1514, 1520, 1532, 799, 1757, 1714, 1714, 1446, 1455, 1514, 1520, 1532, 1589, 1757, 1446, 1455, 1514, 1520, 1532, 1446, 1455, 799, 799, 799, 799, 804, 804, 1969, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, 1589, 1714, 1648, 2813, 2022, 1589, 1446, 1455, 6188, 804, 804, 804, 804, 804, 804, 804, 1456, 1459, 2813, 1550, 1556, 804, 1648, 1589, 1967, 1456, 1459, 1497, 1550, 1556, 1640, 2022, 1497, 1459, 1648, 1550, 1556, 1456, 1459, 804, 804, 804, 804, 805, 805, 1980, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, 1640, 1967, 1497, 1796, 1796, 1640, 1456, 1459, 1497, 805, 805, 805, 805, 805, 805, 805, 1648, 1983, 6190, 1640, 1497, 805, 1980, 1640, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1623, 1330, 1983, 1796, 1983, 1674, 805, 805, 805, 805, 808, 808, 1330, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 808, 808, 808, 808, 808, 808, 808, 808, 808, 808, 1623, 1973, 2606, 1460, 1472, 1674, 808, 808, 808, 808, 808, 808, 1460, 1472, 1330, 2606, 1740, 1815, 1623, 1965, 1472, 1818, 1740, 1674, 1460, 1472, 1815, 1623, 1740, 1651, 1818, 1965, 1973, 808, 808, 808, 808, 808, 808, 810, 810, 810, 810, 810, 810, 810, 810, 810, 810, 1651, 1973, 1460, 1472, 1473, 1496, 810, 810, 810, 810, 810, 810, 1651, 1473, 1749, 6192, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1473, 1749, 1679, 1679, 6193, 1745, 2106, 1749, 810, 810, 810, 810, 810, 810, 813, 813, 813, 813, 813, 813, 813, 813, 813, 813, 1764, 1745, 1741, 1473, 1745, 813, 813, 813, 813, 813, 813, 813, 1679, 1745, 1741, 1679, 2068, 1860, 2106, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1741, 1679, 1867, 1764, 813, 813, 813, 813, 813, 813, 818, 818, 1483, 818, 818, 818, 818, 818, 818, 818, 818, 818, 1870, 818, 818, 1860, 2068, 6194, 1867, 2025, 1860, 1822, 1523, 1524, 818, 818, 818, 818, 818, 818, 818, 1523, 1524, 1979, 1870, 1764, 818, 2025, 1523, 818, 2078, 1979, 1822, 1523, 1524, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 818, 818, 818, 820, 820, 820, 820, 820, 820, 820, 820, 820, 820, 1525, 1525, 1822, 1523, 1524, 2078, 820, 820, 820, 820, 820, 820, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1824, 1735, 1736, 2047, 2595, 1683, 1735, 2073, 2012, 1824, 2012, 820, 820, 820, 820, 820, 820, 822, 822, 822, 822, 822, 822, 822, 822, 822, 822, 1736, 1736, 2073, 2047, 1735, 1534, 822, 822, 822, 822, 822, 822, 1683, 1736, 1534, 2012, 2074, 1735, 1683, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1534, 1683, 2595, 6198, 822, 822, 822, 822, 822, 822, 832, 832, 1484, 832, 832, 832, 832, 832, 832, 832, 832, 832, 2074, 832, 832, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 832, 832, 832, 832, 832, 832, 832, 1526, 1526, 1899, 1737, 2081, 832, 2172, 2353, 1899, 1899, 1765, 1631, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 2081, 832, 832, 832, 833, 833, 1737, 833, 833, 833, 833, 833, 833, 833, 833, 833, 1631, 833, 833, 1737, 1765, 1631, 2016, 1737, 2016, 2353, 1765, 2172, 833, 833, 833, 833, 833, 833, 833, 833, 1535, 1686, 1692, 1555, 833, 1631, 1733, 1788, 1788, 1535, 1686, 1692, 1555, 1791, 1791, 1733, 1535, 1686, 1692, 1765, 2016, 1535, 833, 833, 833, 837, 837, 1555, 837, 837, 837, 837, 837, 837, 837, 837, 837, 1984, 837, 837, 2327, 1788, 1984, 1877, 1733, 6199, 1747, 1791, 1535, 837, 837, 837, 837, 837, 837, 837, 1538, 1538, 1877, 1788, 1984, 837, 1984, 1877, 2327, 1791, 1747, 837, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1747, 837, 837, 837, 838, 838, 1747, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 838, 839, 839, 1827, 839, 839, 839, 839, 839, 839, 839, 839, 839, 1536, 839, 839, 2065, 2065, 2082, 2440, 2440, 2440, 1536, 1553, 1827, 839, 839, 839, 839, 839, 839, 839, 1553, 1554, 1536, 1940, 1719, 839, 1836, 1553, 1710, 1710, 1554, 1795, 1553, 1719, 1940, 1836, 1862, 2065, 2082, 1827, 1719, 1862, 1554, 839, 839, 839, 839, 841, 841, 1536, 841, 841, 841, 841, 841, 841, 841, 841, 841, 1553, 841, 841, 1710, 1889, 1795, 1710, 6201, 1862, 2377, 1554, 2228, 841, 841, 841, 841, 841, 841, 841, 1557, 1558, 1710, 1889, 1795, 841, 1846, 2053, 1716, 1557, 1558, 1889, 1803, 1803, 1803, 1846, 1557, 2377, 2228, 1710, 1691, 1557, 1558, 841, 841, 841, 841, 842, 842, 1691, 842, 842, 842, 842, 842, 842, 842, 842, 842, 2053, 842, 842, 1716, 2084, 1691, 1942, 1803, 1942, 1557, 1558, 1849, 842, 842, 842, 842, 842, 842, 842, 842, 1849, 1716, 2084, 1880, 842, 1803, 2188, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1880, 1716, 1716, 2053, 1942, 1880, 842, 842, 842, 842, 843, 843, 1560, 843, 843, 843, 843, 843, 843, 843, 843, 843, 1942, 843, 843, 2188, 1742, 1743, 2054, 2091, 2067, 1742, 1743, 1724, 843, 843, 843, 843, 843, 843, 843, 2067, 1724, 1742, 1743, 6205, 843, 2091, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1724, 1742, 1743, 2054, 2714, 2714, 2054, 843, 843, 843, 844, 844, 1565, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 847, 847, 1878, 847, 847, 847, 847, 847, 847, 847, 847, 847, 1690, 847, 847, 2023, 2252, 1878, 1966, 2252, 2023, 1690, 1878, 2089, 847, 847, 847, 847, 847, 847, 847, 1689, 1693, 1690, 1725, 2089, 847, 1902, 2023, 2046, 1689, 1693, 847, 1725, 1805, 1805, 1902, 1689, 1693, 2625, 1725, 1966, 1689, 1693, 847, 847, 847, 847, 848, 848, 1690, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 848, 2189, 2046, 1879, 1879, 2004, 1805, 1689, 1693, 1879, 848, 848, 848, 848, 848, 848, 848, 1966, 6206, 2004, 2101, 2625, 848, 2004, 1805, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 2715, 2715, 2046, 2189, 2101, 1805, 848, 848, 848, 848, 849, 849, 1660, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 849, 2087, 2090, 2102, 2087, 2458, 849, 2191, 2090, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 2191, 1664, 6211, 2102, 2087, 2458, 849, 849, 849, 849, 853, 853, 1664, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 854, 854, 1705, 854, 854, 854, 854, 854, 854, 854, 854, 854, 1694, 854, 854, 1943, 2652, 1839, 2229, 2652, 1706, 1694, 1705, 1816, 854, 854, 854, 854, 854, 854, 854, 6215, 1816, 1694, 1705, 1943, 854, 2137, 1839, 1816, 1706, 1943, 1951, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1706, 1420, 854, 854, 854, 1876, 1890, 2137, 1694, 2229, 2190, 1951, 1420, 1839, 854, 856, 856, 1705, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 2238, 2066, 2190, 1890, 2092, 1706, 1876, 1890, 1951, 856, 856, 856, 856, 856, 856, 856, 1420, 1876, 1890, 2009, 2238, 856, 1876, 1890, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 2066, 1573, 2236, 2092, 2009, 2020, 856, 856, 856, 856, 857, 857, 1573, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 2009, 6216, 2066, 2236, 2337, 1573, 1744, 2020, 1820, 857, 857, 857, 857, 857, 857, 857, 857, 1820, 1744, 1900, 1826, 857, 1838, 1905, 1820, 1900, 1907, 2020, 1744, 1826, 2337, 1838, 1905, 1744, 1900, 1907, 1826, 2058, 1838, 857, 857, 857, 857, 858, 858, 2058, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 861, 861, 6222, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 862, 1913, 2103, 2566, 2976, 2566, 2976, 2103, 2138, 1619, 1913, 862, 862, 862, 862, 862, 862, 862, 862, 862, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 2103, 1619, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 2138, 1619, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 2174, 2174, 2334, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 2174, 2334, 2462, 1722, 1723, 1726, 866, 866, 866, 866, 866, 866, 1722, 1723, 1726, 2139, 2139, 1567, 1916, 1722, 2462, 1726, 1924, 1927, 1722, 1723, 1726, 1916, 1567, 1567, 1567, 1924, 1927, 866, 866, 866, 866, 866, 866, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 1567, 2139, 1722, 1723, 1726, 1948, 869, 869, 869, 869, 869, 869, 1708, 2031, 1948, 2253, 2233, 2759, 1567, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1985, 1656, 2759, 2027, 1708, 869, 869, 869, 869, 869, 869, 871, 1656, 2086, 2130, 2233, 1708, 1707, 2031, 2253, 2233, 2130, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 1985, 2086, 2126, 2027, 2031, 1707, 871, 871, 871, 871, 871, 871, 1707, 2086, 1656, 1847, 1853, 1707, 1985, 1708, 1708, 2027, 2021, 2126, 1847, 1853, 2326, 1711, 1711, 1711, 2052, 1847, 1853, 871, 871, 871, 871, 871, 871, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 2021, 2126, 3491, 1707, 1821, 2326, 875, 875, 875, 875, 875, 875, 1711, 1821, 2021, 2707, 2052, 3491, 2707, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1821, 1699, 1711, 2114, 1904, 875, 875, 875, 875, 875, 875, 877, 1699, 1904, 2196, 2109, 1746, 2108, 2108, 1711, 1904, 2052, 877, 877, 877, 877, 877, 877, 877, 877, 877, 2114, 1746, 2109, 2332, 2108, 1746, 2109, 877, 877, 877, 877, 877, 877, 2064, 2014, 1699, 2014, 1746, 2114, 2196, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 2110, 1709, 1746, 2352, 1911, 877, 877, 877, 877, 877, 877, 883, 1709, 1911, 2573, 2711, 2064, 2332, 2711, 2014, 1911, 1715, 883, 883, 883, 883, 883, 883, 883, 883, 883, 2352, 2110, 2111, 2064, 1727, 1828, 2014, 883, 883, 883, 883, 883, 883, 1727, 1828, 2573, 1709, 1914, 2123, 2110, 2111, 1801, 1801, 2000, 1715, 1727, 1914, 2123, 2000, 1828, 1715, 2111, 2343, 1914, 883, 883, 883, 883, 883, 883, 884, 884, 1715, 884, 884, 884, 884, 884, 884, 884, 884, 884, 1727, 884, 884, 1801, 2000, 2230, 2343, 1715, 6226, 1801, 2345, 2158, 884, 884, 884, 884, 884, 884, 884, 884, 2158, 1801, 2000, 2115, 884, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 2115, 1802, 2345, 1944, 1840, 2230, 1956, 2115, 884, 884, 884, 886, 886, 1840, 886, 886, 886, 886, 886, 886, 886, 886, 886, 1944, 886, 886, 1956, 2165, 1840, 1944, 2464, 2386, 1956, 1920, 2165, 886, 886, 886, 886, 886, 886, 886, 1920, 1830, 1813, 2198, 1802, 886, 2464, 1920, 2150, 2386, 1830, 886, 2198, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1830, 886, 886, 886, 891, 891, 1813, 891, 891, 891, 891, 891, 891, 891, 891, 891, 2140, 891, 891, 891, 891, 2150, 2141, 1945, 2144, 2150, 1829, 1830, 891, 891, 891, 891, 891, 891, 891, 1829, 1841, 1925, 2140, 1931, 891, 2234, 1829, 1945, 2144, 1841, 1925, 1829, 1931, 1945, 1945, 2140, 1841, 1925, 2141, 1931, 2144, 1841, 891, 891, 891, 891, 892, 892, 892, 892, 892, 892, 892, 892, 892, 2719, 2719, 2161, 1829, 2234, 1842, 1850, 892, 892, 892, 892, 892, 892, 1841, 1842, 1850, 1869, 6227, 2141, 1869, 2144, 1869, 1850, 2161, 2203, 1869, 1842, 1850, 1869, 1869, 1869, 2311, 2203, 1869, 892, 892, 892, 892, 892, 892, 901, 901, 901, 901, 901, 901, 901, 901, 901, 901, 2161, 2181, 2311, 1842, 1850, 1851, 901, 901, 901, 901, 901, 901, 2325, 2181, 1851, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 2225, 1851, 2227, 2181, 2311, 1937, 2260, 2225, 901, 901, 901, 901, 901, 901, 904, 904, 904, 904, 904, 904, 904, 904, 904, 904, 2183, 2227, 2325, 1852, 1851, 1854, 904, 904, 904, 904, 904, 904, 1852, 1950, 1854, 2117, 2329, 2117, 2200, 2179, 2183, 1854, 1950, 2361, 2260, 1986, 1854, 1852, 2179, 1950, 1986, 2179, 2183, 904, 904, 904, 904, 904, 904, 914, 914, 914, 914, 914, 914, 914, 914, 914, 1986, 2117, 2200, 2329, 1986, 1854, 1910, 914, 914, 914, 914, 914, 914, 2200, 2186, 1910, 3300, 2361, 3300, 2117, 2186, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1910, 3318, 2186, 3318, 914, 914, 914, 914, 914, 914, 923, 923, 1859, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 923, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 923, 923, 923, 923, 923, 923, 923, 1855, 1908, 2303, 2125, 2199, 923, 2270, 2273, 2303, 1855, 1908, 2060, 2125, 2199, 2148, 2270, 2273, 1908, 2201, 2125, 1919, 1855, 1908, 923, 923, 923, 923, 934, 934, 1919, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 934, 2148, 2060, 1919, 1955, 2518, 6233, 1855, 1908, 2201, 934, 934, 934, 934, 934, 934, 934, 1909, 1917, 2304, 2060, 2424, 934, 2518, 1955, 2304, 1909, 1917, 934, 2060, 1955, 1955, 2215, 2201, 1917, 2382, 2148, 1930, 1909, 1917, 934, 934, 934, 934, 936, 936, 1930, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 2215, 2424, 1930, 2382, 2328, 3503, 1909, 1917, 2116, 936, 936, 936, 936, 936, 936, 936, 1789, 1946, 2215, 2142, 3503, 936, 2335, 2040, 2215, 2185, 2116, 2328, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1946, 1789, 936, 936, 936, 936, 1946, 2149, 2185, 2335, 2116, 2142, 1789, 2394, 2040, 1946, 2218, 2142, 2149, 2040, 2185, 936, 938, 938, 2349, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 938, 2040, 1639, 2316, 2394, 2489, 2149, 2218, 2869, 2316, 938, 938, 938, 938, 938, 938, 938, 1918, 1921, 2869, 2160, 2349, 938, 1952, 2127, 2218, 1918, 1921, 1922, 2160, 1639, 2489, 1952, 2127, 1921, 1639, 2160, 1922, 1918, 1921, 938, 938, 938, 938, 939, 1639, 1929, 1952, 2127, 1922, 2176, 2244, 2244, 1639, 2237, 1929, 939, 939, 939, 939, 939, 939, 939, 939, 939, 1918, 1921, 1929, 6237, 1639, 1928, 1932, 1933, 2275, 2162, 2176, 1922, 939, 2237, 1928, 1932, 1933, 2275, 2162, 2244, 2176, 1928, 1932, 2176, 2237, 2177, 1928, 1932, 1933, 1929, 2340, 2330, 939, 2162, 939, 939, 939, 939, 939, 939, 944, 944, 944, 944, 944, 944, 944, 944, 944, 2202, 2177, 2177, 2340, 1928, 1932, 1933, 944, 944, 944, 944, 944, 944, 2085, 2177, 2330, 2182, 2330, 2342, 1868, 1868, 1868, 1868, 1868, 1868, 1868, 1868, 1868, 2182, 2341, 2113, 2113, 2202, 2085, 944, 944, 944, 944, 944, 944, 1868, 2202, 2342, 2182, 2217, 2085, 2182, 944, 955, 955, 6238, 955, 955, 955, 955, 955, 955, 955, 955, 955, 1954, 955, 955, 2085, 2113, 2341, 2356, 2232, 2187, 1954, 2113, 2217, 955, 955, 955, 955, 955, 955, 955, 1794, 2175, 1954, 2113, 2175, 955, 2085, 2217, 2232, 2187, 2217, 2387, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 2187, 1794, 955, 955, 955, 2175, 2281, 2284, 1954, 2351, 2387, 2232, 1794, 2354, 2356, 2281, 2284, 2351, 2175, 955, 961, 961, 2245, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 961, 961, 961, 961, 961, 961, 961, 2354, 2399, 2354, 6254, 2245, 961, 2246, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 2650, 2650, 2650, 6256, 2399, 2245, 961, 961, 961, 961, 963, 963, 1871, 963, 963, 963, 963, 963, 963, 963, 963, 963, 2246, 963, 963, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 963, 963, 963, 963, 963, 963, 963, 1953, 2128, 2272, 2279, 2278, 963, 2292, 2246, 2569, 1953, 2128, 2272, 2279, 2278, 3120, 2292, 1953, 2128, 2272, 2279, 2368, 1953, 2128, 963, 963, 963, 964, 964, 2278, 964, 964, 964, 964, 964, 964, 964, 964, 964, 2295, 964, 964, 2143, 2368, 2146, 2146, 2249, 2569, 2295, 1953, 2128, 964, 964, 964, 964, 964, 964, 964, 964, 6257, 2400, 3120, 2143, 964, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 2851, 2143, 2363, 2503, 2143, 2146, 2249, 2400, 964, 964, 964, 2146, 964, 965, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 2146, 2249, 965, 965, 965, 965, 965, 965, 965, 965, 965, 2250, 1961, 2143, 2363, 2503, 2851, 2146, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 2592, 2256, 965, 2250, 965, 965, 965, 965, 965, 965, 973, 973, 973, 973, 973, 973, 973, 973, 973, 2214, 973, 2250, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 973, 1800, 2256, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1800, 1804, 2592, 2214, 2306, 6266, 973, 2305, 2256, 2315, 2306, 2129, 1804, 2305, 2305, 2315, 2315, 2214, 2214, 2306, 2129, 2214, 973, 974, 974, 974, 974, 974, 974, 974, 974, 974, 2129, 974, 1800, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 974, 1972, 1804, 2423, 2180, 2287, 2586, 2180, 2059, 2408, 2423, 2442, 1972, 2401, 2287, 2129, 2180, 6267, 974, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2059, 2626, 2287, 1972, 2180, 2586, 2401, 2626, 2442, 2408, 974, 985, 985, 2059, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 988, 988, 988, 988, 988, 988, 988, 988, 988, 988, 2681, 2681, 2681, 2492, 2422, 2510, 988, 988, 988, 988, 988, 988, 2133, 2133, 2133, 2133, 2133, 2133, 2133, 2133, 2133, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 2024, 2492, 2024, 2282, 988, 988, 988, 988, 988, 988, 996, 2298, 2282, 2024, 2413, 2422, 2510, 4257, 2523, 2282, 2298, 996, 996, 996, 996, 996, 996, 996, 996, 996, 996, 2024, 2622, 2468, 2413, 2298, 2523, 996, 996, 996, 996, 996, 996, 2134, 2134, 2134, 2134, 2134, 2134, 2134, 2134, 2134, 2135, 2135, 2135, 2135, 2135, 2135, 2135, 2135, 2135, 2468, 2622, 4257, 996, 996, 996, 996, 996, 996, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 2468, 1007, 2063, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 2096, 1007, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2593, 2063, 2096, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2168, 2063, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2169, 2593, 3302, 1007, 1007, 1021, 1021, 3302, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1021, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 2338, 2601, 2733, 2308, 2312, 2338, 1024, 1024, 1024, 1024, 1024, 1024, 2308, 2312, 2512, 3334, 3334, 2512, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2094, 2312, 2447, 2601, 2338, 2512, 1024, 1024, 1024, 1024, 1024, 1024, 1032, 2094, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 2170, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 2465, 2733, 2447, 2370, 2373, 2379, 1032, 1032, 1032, 1032, 1032, 1032, 2370, 2373, 2379, 2842, 2842, 2842, 2465, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2095, 2339, 2465, 2653, 6337, 1032, 1032, 1032, 1032, 1032, 1032, 1053, 1053, 2095, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 2339, 1053, 1053, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2173, 2456, 1053, 1053, 1053, 1053, 1053, 1053, 1053, 2456, 2339, 2553, 2653, 2173, 1053, 2147, 2147, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 2100, 3328, 2100, 3328, 2448, 2355, 2553, 1053, 1053, 1053, 1053, 1069, 1069, 2100, 1069, 1069, 1069, 1069, 1069, 2241, 2241, 1069, 1069, 1069, 2147, 2448, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 2147, 2164, 2242, 2242, 2288, 1069, 2216, 2355, 2554, 2612, 2164, 2241, 2293, 2288, 2355, 3519, 2147, 2147, 2184, 2555, 2288, 2293, 2164, 1069, 1069, 1069, 1069, 1075, 2293, 2241, 3519, 2612, 2184, 2216, 2546, 2554, 2242, 2555, 2184, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 2546, 2164, 2184, 2216, 2546, 2216, 2242, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 2243, 2243, 1075, 2163, 1075, 1075, 1075, 1075, 1075, 1075, 1076, 1076, 2163, 1076, 1076, 1076, 1076, 1076, 6580, 2163, 1076, 1076, 1076, 2596, 2163, 2254, 2254, 2254, 2508, 2243, 2508, 2221, 2376, 2383, 2243, 1076, 1076, 1076, 1076, 1076, 1076, 2376, 2383, 2596, 2299, 2391, 1076, 2152, 2151, 1076, 2151, 2163, 2243, 2299, 2391, 2502, 2376, 2383, 2221, 2254, 2299, 2221, 2508, 2502, 1076, 1076, 1076, 1076, 1077, 1077, 2221, 1077, 1077, 1077, 1077, 1077, 2221, 2254, 1077, 1077, 1077, 2152, 2151, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 1077, 2152, 2151, 6582, 2556, 2152, 1077, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2591, 2220, 2152, 2151, 2224, 2331, 2556, 2591, 1077, 1077, 1077, 1077, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 2220, 2336, 1085, 1085, 1085, 2389, 2224, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 3337, 1085, 1085, 1085, 1085, 1085, 1085, 2224, 2331, 2389, 2224, 2220, 1085, 3337, 2251, 2331, 2257, 2257, 2220, 2395, 2483, 2219, 2336, 2220, 2389, 2476, 2604, 2336, 2395, 2220, 1085, 1085, 1085, 1085, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 2310, 2395, 1086, 1086, 1086, 2251, 2219, 2219, 2257, 2310, 2704, 2251, 2483, 2604, 2485, 2476, 2310, 1086, 1086, 1086, 1086, 1086, 1086, 2251, 2219, 2388, 2257, 2485, 1086, 2219, 2483, 1086, 2485, 2476, 2257, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2704, 2388, 1086, 1086, 1086, 1086, 1088, 1088, 2388, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1089, 1089, 2564, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 2277, 1089, 1089, 2521, 2493, 2403, 2493, 2684, 2564, 2277, 2276, 2521, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 2276, 2285, 2277, 6583, 2371, 1089, 2403, 2276, 2259, 2259, 2285, 2585, 2276, 2371, 2493, 2522, 3098, 2285, 2684, 2493, 2371, 2403, 2285, 1089, 1089, 1089, 1089, 1090, 1090, 2277, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 2276, 1090, 1090, 2259, 2585, 2607, 2398, 2402, 3098, 2259, 2285, 2522, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 2286, 2289, 2259, 2375, 2381, 1090, 2599, 2398, 2402, 2286, 2289, 1090, 2375, 2381, 2398, 2402, 2730, 2289, 2607, 2375, 2381, 2286, 2289, 1090, 1090, 1090, 1090, 1091, 1091, 2527, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 2496, 2599, 2496, 2496, 2691, 2691, 2286, 2289, 2405, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 2691, 2405, 2412, 2527, 3126, 1091, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 6605, 3126, 2730, 2496, 2705, 2730, 2527, 2412, 1091, 1091, 1091, 1091, 1092, 1092, 2412, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 2609, 2525, 4016, 2705, 3306, 1092, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 3306, 2683, 4016, 2609, 2525, 2427, 2525, 2683, 1092, 1092, 1092, 1092, 1096, 1096, 2427, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1097, 1097, 2290, 2446, 2446, 2446, 2446, 2446, 2446, 2886, 2655, 2290, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 2572, 2290, 2446, 2296, 2297, 2300, 1097, 1097, 1097, 1097, 1097, 1097, 2296, 2297, 2300, 2452, 2452, 2886, 2430, 2296, 2637, 2300, 2640, 2655, 2296, 2297, 2300, 2430, 2290, 2637, 2655, 2640, 2572, 1097, 1097, 1097, 1097, 1097, 1097, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 2452, 2572, 2296, 2297, 2300, 2301, 1100, 1100, 1100, 1100, 1100, 1100, 2393, 2407, 2301, 2428, 2434, 2506, 2452, 2506, 2798, 2393, 2407, 6607, 2428, 2434, 2301, 2798, 2393, 2407, 2582, 2428, 2434, 1100, 1100, 1100, 1100, 1100, 1100, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 2499, 2598, 2506, 2313, 2301, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 2313, 2582, 2451, 2690, 2463, 2463, 2499, 2313, 2451, 2690, 2506, 3270, 2313, 2598, 3270, 2499, 6608, 2664, 2662, 2582, 2451, 1102, 1102, 1102, 1102, 1102, 1102, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 2463, 2515, 2313, 2314, 2384, 2385, 1106, 1106, 1106, 1106, 1106, 1106, 2314, 2384, 2385, 2664, 2662, 2706, 2463, 2664, 2384, 2662, 2668, 2778, 2314, 2384, 2385, 2425, 2504, 6714, 2504, 2668, 2515, 1106, 1106, 1106, 1106, 1106, 1106, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 2735, 2706, 2515, 2314, 2384, 2385, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 2425, 2504, 2627, 2778, 2858, 2627, 2425, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 6715, 2425, 2504, 2627, 1108, 1108, 1108, 1108, 1108, 1108, 1114, 1114, 2323, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 2526, 1114, 1114, 2616, 2703, 2526, 2735, 2735, 2858, 2616, 2396, 2397, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 2396, 2397, 2616, 2663, 2526, 1114, 2526, 2396, 2852, 2703, 2663, 1114, 2396, 2397, 2415, 2415, 2415, 2415, 2415, 2415, 2415, 2415, 2415, 1114, 1114, 1114, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 2852, 6722, 2663, 2396, 2397, 2409, 1115, 1115, 1115, 1115, 1115, 1115, 2629, 2860, 2409, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2787, 2792, 2528, 2635, 2712, 2409, 2629, 2528, 2629, 1115, 1115, 1115, 1115, 1115, 1115, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 2528, 2860, 2787, 2792, 2528, 2433, 1118, 1118, 1118, 1118, 1118, 1118, 2635, 2712, 2433, 2934, 2934, 2934, 2635, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2433, 2635, 2859, 6724, 1118, 1118, 1118, 1118, 1118, 1118, 1127, 1127, 2324, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 2744, 2570, 2859, 2944, 2571, 1127, 2744, 2597, 2744, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2099, 2410, 2099, 2411, 2944, 2431, 1127, 1127, 1127, 1127, 2410, 2633, 2411, 2099, 2431, 2542, 2570, 2410, 2633, 2571, 2542, 2431, 2410, 2630, 2411, 2571, 2431, 2686, 2597, 2633, 2686, 1127, 1128, 1128, 2945, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 2099, 2542, 2410, 6726, 2411, 2570, 2431, 2632, 2630, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 2248, 2597, 2686, 2542, 2854, 1128, 2847, 2945, 2853, 2632, 2630, 2623, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2671, 2248, 1128, 1128, 1128, 1128, 2854, 2847, 2623, 2671, 2632, 2853, 2248, 1128, 1130, 1130, 2623, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 3144, 1130, 1130, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 2745, 2420, 2745, 2654, 2887, 1130, 2654, 3144, 2745, 4221, 2887, 1130, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2881, 1130, 1130, 1130, 1134, 1134, 2656, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 2654, 1134, 1134, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 2701, 2656, 2983, 2881, 2701, 1134, 2656, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2344, 2701, 4221, 3274, 3275, 2983, 3274, 3275, 1134, 1134, 1134, 1135, 1135, 2344, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1138, 1138, 2716, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 2432, 1138, 1138, 2755, 2850, 2850, 2718, 5564, 3103, 2432, 2638, 2755, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 2638, 5564, 2432, 2716, 2993, 1138, 2850, 2638, 1138, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2718, 2718, 3103, 2993, 1138, 1138, 1138, 1138, 1139, 1139, 2432, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1140, 1140, 6727, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 2436, 1140, 1140, 2771, 6728, 3127, 2855, 2695, 2697, 2436, 2644, 2771, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 2644, 2611, 2436, 2669, 2611, 1140, 2611, 2644, 2695, 2697, 2611, 2888, 2669, 2611, 2611, 2611, 3127, 2888, 2611, 2669, 2695, 2697, 2855, 1140, 1140, 1140, 1140, 1141, 1141, 2436, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1142, 1142, 6732, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1148, 1148, 5711, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 2584, 1148, 1148, 5711, 3329, 2628, 2507, 3329, 2507, 2600, 2600, 2600, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 2808, 2747, 2862, 2600, 2628, 1148, 2435, 2808, 2584, 2747, 2643, 2642, 2747, 2584, 2849, 2435, 2507, 2600, 2600, 2643, 2642, 2507, 2435, 1148, 1148, 1148, 2583, 2435, 2628, 2726, 2804, 2600, 2642, 3128, 2643, 2584, 2849, 2862, 1148, 1151, 1151, 2507, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 2435, 2861, 3128, 2804, 2583, 2642, 2698, 2675, 2674, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 2675, 2674, 2702, 2740, 2751, 1151, 2583, 2675, 1151, 2861, 2698, 2740, 2751, 2751, 2702, 2583, 2674, 2698, 2726, 6733, 2702, 2740, 2698, 1151, 1151, 1151, 1151, 1152, 1152, 2726, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1153, 1153, 6735, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1154, 2457, 2457, 2457, 2457, 2457, 2457, 2457, 2457, 2457, 2634, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 2575, 2818, 2457, 3141, 3139, 2880, 3786, 3786, 2634, 3141, 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2575, 2457, 2780, 2748, 2880, 2812, 2748, 3139, 2880, 2818, 2634, 2780, 2812, 2575, 2748, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1160, 1160, 2602, 2602, 2602, 2602, 2602, 2602, 2602, 2602, 2602, 3207, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 2763, 2602, 2631, 2631, 2631, 2659, 1160, 1161, 1161, 2613, 2613, 2613, 2613, 2613, 2613, 2613, 2613, 2613, 2613, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 2692, 3207, 2613, 2867, 2763, 3018, 2692, 2631, 2659, 2602, 2763, 2867, 2692, 2743, 1161, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 2631, 2868, 2692, 2641, 2645, 2646, 1162, 1162, 1162, 1162, 1162, 1162, 2641, 2645, 2646, 2743, 3018, 3118, 2659, 2641, 2645, 2743, 2872, 2783, 2641, 2645, 2646, 2879, 2868, 2743, 2872, 2728, 2783, 1162, 1162, 1162, 1162, 1162, 1162, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 3118, 6739, 2641, 2645, 2646, 2879, 1164, 1164, 1164, 1164, 1164, 1164, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2651, 2461, 2461, 2461, 2461, 2461, 2461, 2461, 2461, 2461, 3118, 2461, 2728, 1164, 1164, 1164, 1164, 1164, 1164, 1167, 2665, 2728, 2461, 2657, 2994, 2658, 3009, 3133, 2688, 2694, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 2461, 2694, 2994, 2657, 3009, 2658, 1167, 1167, 1167, 1167, 1167, 1167, 2727, 2688, 2665, 2657, 2694, 2658, 2688, 2754, 2665, 2657, 2694, 3133, 6740, 3134, 2688, 2754, 2754, 2660, 2660, 2660, 2665, 1167, 1167, 1167, 1167, 1167, 1167, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 2665, 2657, 2658, 2658, 2672, 3016, 1173, 1173, 1173, 1173, 1173, 1173, 2727, 2672, 2660, 3134, 2753, 2741, 3140, 2741, 2672, 3321, 2727, 2727, 2753, 2672, 2689, 2741, 2741, 2742, 2753, 3321, 2660, 1173, 1173, 1173, 1173, 1173, 1173, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 2660, 3140, 2689, 2672, 2895, 2742, 1176, 1176, 1176, 1176, 1176, 1176, 2822, 2742, 3016, 2689, 2689, 3166, 3016, 2822, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 3166, 2514, 2895, 2731, 1176, 1176, 1176, 1176, 1176, 1176, 1184, 1184, 2514, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 3024, 3017, 2699, 2717, 6745, 2514, 3015, 2673, 3024, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 2673, 2676, 2699, 3017, 2789, 1184, 2699, 2801, 2661, 2661, 2676, 1184, 2673, 2789, 3015, 2731, 2801, 2676, 2699, 2717, 2731, 2731, 2676, 1184, 1184, 1184, 1184, 1185, 1185, 2770, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 2673, 1185, 1185, 2661, 2734, 2603, 2603, 2603, 2603, 2717, 2676, 3149, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 2603, 2677, 2661, 3042, 2770, 1185, 2661, 2603, 2773, 2758, 2677, 1185, 2758, 2770, 2603, 2603, 3149, 6749, 2758, 2661, 2758, 3042, 2677, 1185, 1185, 1185, 1186, 1186, 2603, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2734, 1186, 1186, 2773, 2856, 2734, 2734, 2734, 2898, 2906, 2815, 2677, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 2815, 3011, 2773, 3011, 3046, 1186, 2614, 2614, 2614, 2614, 2614, 2614, 2614, 2614, 2614, 2614, 2898, 2906, 2856, 3011, 2856, 3543, 3046, 1186, 1186, 1186, 1187, 1187, 2614, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 2682, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 2970, 2970, 6750, 3543, 3048, 1187, 3345, 2615, 2615, 2615, 2615, 2615, 2615, 2615, 2615, 2615, 2615, 3147, 3345, 2737, 2857, 2970, 3048, 1187, 1187, 1187, 1187, 1188, 1188, 2615, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 3147, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 2576, 2857, 2979, 2765, 3264, 1188, 2757, 2737, 2857, 3245, 2576, 2576, 2576, 2576, 2576, 2576, 2576, 2576, 2576, 2576, 2737, 2781, 2737, 1188, 1188, 1188, 1188, 1202, 1202, 2687, 2781, 2737, 2576, 2696, 2979, 2687, 2765, 2781, 3264, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 3245, 6756, 2666, 2979, 2696, 2687, 1202, 1203, 1203, 2757, 2757, 2736, 2765, 3150, 2916, 2757, 2696, 2757, 2687, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 2749, 2696, 2889, 2749, 2829, 2749, 2700, 2666, 2889, 2889, 3150, 2749, 2916, 2829, 1203, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 2666, 2700, 2941, 2736, 3052, 2736, 1204, 1204, 1204, 1204, 1204, 1204, 2746, 2700, 2736, 2832, 2736, 2666, 2746, 2700, 2897, 2736, 2941, 2666, 2832, 2897, 2746, 2700, 2941, 2762, 2762, 2746, 3052, 1204, 1204, 1204, 1204, 1204, 1204, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 3618, 2756, 3052, 3619, 2897, 3618, 2756, 1206, 1206, 1206, 1206, 1206, 1206, 2577, 2756, 2762, 2905, 2915, 2762, 2927, 2943, 2905, 2915, 2756, 2577, 2577, 2577, 2577, 2577, 2577, 2577, 2577, 2577, 2762, 1206, 1206, 1206, 1206, 1206, 1206, 1212, 1212, 3619, 3033, 3148, 2577, 2927, 2943, 2905, 2915, 3033, 2750, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 2926, 3030, 3030, 3030, 2955, 2926, 1212, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 2750, 5794, 3148, 3324, 2892, 3031, 2750, 1215, 1215, 1215, 1215, 1215, 1215, 2892, 2750, 2955, 2926, 5794, 2750, 3030, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2619, 2984, 2619, 2685, 3031, 3159, 1215, 1215, 1215, 1215, 1215, 1215, 1221, 2619, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 2685, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 1221, 2995, 2984, 3324, 2685, 2785, 2902, 3159, 1221, 1221, 1221, 1221, 1221, 1221, 2785, 2902, 2619, 3160, 3753, 2995, 2984, 2785, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 2620, 3173, 2620, 3320, 2995, 1221, 1221, 1221, 1221, 1221, 1221, 1227, 1227, 2620, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 3034, 3173, 2752, 3153, 3160, 3753, 3320, 3034, 2752, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 2752, 2890, 2912, 2693, 2923, 1227, 2791, 2890, 2693, 3153, 2752, 2912, 2786, 2923, 2693, 2791, 2890, 2774, 2774, 6760, 2693, 2786, 2791, 1227, 1227, 1227, 1227, 1228, 1228, 2581, 1228, 1228, 1228, 1228, 1228, 2693, 2786, 1228, 1228, 1228, 2581, 2581, 2581, 2581, 2581, 2581, 2581, 2581, 2581, 2794, 2581, 2774, 1228, 1228, 1228, 1228, 1228, 1228, 2794, 2803, 3157, 2581, 2952, 1228, 3040, 2794, 2772, 2772, 2803, 2774, 2794, 2952, 3040, 2777, 2777, 2803, 2774, 3244, 2793, 6761, 3157, 1228, 1228, 1228, 1228, 1229, 1229, 2793, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 2794, 1229, 1229, 2772, 3244, 2793, 3272, 2947, 3079, 2772, 2777, 2805, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 2777, 2805, 2772, 2817, 2830, 1229, 2836, 3079, 2947, 2777, 3125, 3035, 2817, 2830, 2947, 2836, 2805, 3035, 3125, 2817, 2830, 3272, 2836, 1229, 1229, 1229, 1229, 1230, 1230, 3035, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1231, 1231, 3210, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 2948, 3047, 3047, 4131, 2960, 3025, 3174, 2819, 2795, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 2819, 2795, 3195, 2894, 2948, 1231, 3210, 3025, 2960, 3195, 2948, 2835, 2894, 2795, 2960, 2819, 3025, 4131, 3047, 2894, 2835, 3352, 3174, 1231, 1231, 1231, 1231, 1232, 1232, 2761, 1232, 1232, 1232, 1232, 1232, 2835, 3047, 1232, 1232, 1232, 2795, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 2761, 3352, 2761, 1232, 1232, 1232, 1232, 1232, 1232, 2806, 2807, 2903, 2913, 2761, 1232, 3155, 3263, 3188, 2806, 2807, 2903, 2913, 6767, 3060, 3155, 2806, 3188, 2903, 2913, 2899, 2806, 2807, 1232, 1232, 1232, 1232, 1233, 1233, 2899, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 3206, 3263, 2899, 2949, 3060, 2959, 2806, 2807, 3206, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 2820, 2924, 2954, 3265, 1233, 3060, 2949, 3007, 2959, 2820, 2924, 2954, 2949, 2949, 2959, 2959, 2820, 2924, 2954, 2907, 3177, 2820, 1233, 1233, 1233, 1233, 1235, 1235, 2907, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 3177, 1235, 1235, 3007, 3180, 2907, 3265, 3279, 3075, 2965, 2820, 6771, 1235, 1235, 1235, 1235, 1235, 1235, 1235, 2821, 2965, 3007, 3180, 3143, 1235, 4374, 2965, 3279, 2821, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2917, 3075, 2821, 3715, 1235, 1235, 1235, 1240, 1240, 2917, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 3143, 3019, 2917, 3019, 3075, 3143, 3191, 2821, 2928, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 3574, 2928, 3069, 3715, 4374, 1240, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 3069, 2928, 3191, 3574, 3019, 3069, 3440, 3019, 1240, 1240, 1240, 1240, 1242, 1242, 3243, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 2827, 2827, 2827, 2827, 2827, 2827, 2827, 2827, 2827, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 2833, 2834, 3190, 3243, 3440, 1242, 3168, 4952, 3168, 2833, 2834, 3190, 3076, 2980, 2980, 3100, 2833, 3168, 3190, 3099, 2956, 2833, 2834, 1242, 1242, 1242, 1242, 1244, 1244, 2956, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 3049, 3076, 2956, 4952, 3100, 2980, 2833, 2834, 3099, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 2837, 2838, 3049, 3081, 3232, 1244, 2910, 2980, 2920, 2837, 2838, 3232, 3076, 3100, 3049, 2910, 2837, 2920, 3102, 3099, 3132, 2837, 2838, 1244, 1244, 1244, 1244, 2910, 3228, 2920, 2981, 2981, 1244, 1252, 1252, 3081, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 2837, 2838, 3102, 3132, 3467, 3081, 2910, 3228, 2920, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 2981, 3400, 3400, 3400, 3101, 1252, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 2840, 3632, 6772, 2981, 3467, 3102, 2840, 3101, 1252, 1252, 1252, 1252, 1254, 1254, 3132, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 3101, 1254, 1254, 2843, 2843, 2843, 2843, 2843, 2843, 2843, 2843, 2843, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 3267, 2846, 3201, 3225, 2846, 1254, 2846, 3322, 3267, 3135, 2846, 3201, 3225, 2846, 2846, 2846, 3632, 3322, 2846, 3542, 6779, 3135, 3201, 1254, 1254, 1254, 1255, 1255, 3108, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 3108, 1255, 1255, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 2866, 3135, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 3330, 3542, 3108, 2866, 1255, 3330, 3330, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 2848, 3217, 3251, 3684, 3145, 3361, 1255, 1255, 1255, 3145, 1255, 1256, 1256, 2848, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 2935, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 3361, 6781, 3251, 3145, 3217, 3217, 3684, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 3131, 3067, 1256, 2940, 1256, 1256, 1256, 1256, 1256, 1256, 1260, 2931, 3268, 3249, 3077, 2940, 2940, 2940, 3146, 3077, 2931, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 2768, 3131, 2931, 1260, 3268, 3067, 2940, 3077, 3249, 3249, 3146, 6782, 2768, 2768, 2768, 2768, 2768, 2768, 2768, 2768, 2768, 3249, 2768, 3067, 2940, 3402, 3131, 3036, 3036, 2931, 3146, 3402, 6861, 2768, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1266, 1266, 3036, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 3762, 1266, 1266, 2950, 3181, 3029, 3364, 3029, 3036, 3254, 2909, 2919, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 2909, 2919, 3254, 3181, 2950, 1266, 2930, 2909, 2919, 3327, 2950, 3085, 2909, 2919, 3364, 2930, 3762, 3254, 3327, 2950, 3029, 3181, 2930, 1266, 1266, 1266, 1266, 2930, 2942, 2942, 2942, 2942, 2942, 2942, 2942, 2942, 2942, 6862, 3029, 2909, 2919, 1266, 1271, 1271, 3085, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 2930, 1271, 1271, 3208, 3277, 2946, 3750, 3179, 3085, 3137, 3209, 3208, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 3136, 3136, 3137, 3136, 3566, 1271, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 2962, 3179, 3566, 3277, 6489, 3208, 2946, 3750, 3358, 1271, 1271, 1271, 3209, 3136, 3136, 2946, 3137, 3358, 3209, 3179, 6489, 1271, 1272, 1272, 2946, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1273, 1273, 3216, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 2958, 1273, 1273, 3271, 3608, 3176, 3979, 3979, 3216, 2958, 2957, 3271, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 2957, 3194, 2958, 3608, 3176, 1273, 3216, 2957, 3431, 3105, 3194, 3008, 2957, 2963, 2963, 2963, 2963, 2963, 2963, 2963, 2963, 2963, 3194, 1273, 1273, 1273, 1273, 3176, 3714, 2958, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2964, 2957, 3008, 3105, 3430, 3301, 3431, 3008, 1273, 1278, 1278, 3194, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 3105, 1278, 1278, 3175, 3008, 3430, 3714, 3252, 3301, 3105, 3252, 3175, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 3252, 3928, 3175, 3928, 2966, 1278, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 3253, 3215, 3372, 3192, 3382, 2966, 4594, 1278, 1278, 1278, 1279, 1279, 3192, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 3247, 1279, 1279, 4594, 3278, 3192, 3215, 3372, 3247, 3382, 3253, 3229, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 3229, 3427, 3253, 2967, 1279, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 2967, 3229, 3278, 3253, 3247, 3278, 2967, 3215, 1279, 1279, 1279, 1281, 1281, 3427, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 3438, 1281, 1281, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 3198, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 3557, 3557, 3557, 3438, 2968, 1281, 2968, 2968, 2968, 2968, 2968, 2968, 2968, 2968, 2968, 2968, 3403, 3439, 3439, 3319, 3313, 2968, 3403, 1281, 1281, 1281, 1282, 1282, 3313, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 3439, 1282, 1282, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 3199, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 2982, 2982, 3094, 3838, 1282, 2974, 2974, 2974, 2974, 2974, 2974, 2974, 2974, 2974, 3319, 3601, 6868, 3122, 3122, 3319, 3319, 3182, 1282, 1282, 1282, 1286, 2974, 3107, 3601, 2982, 3094, 3754, 3838, 3601, 2982, 3094, 3325, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 3122, 3325, 3255, 3262, 3393, 3122, 2982, 3094, 3107, 3182, 3227, 3107, 1286, 3107, 3255, 3262, 3754, 3107, 3182, 3227, 3107, 3107, 3107, 3122, 3262, 3107, 3227, 3182, 3255, 3255, 6869, 3393, 1286, 3773, 1286, 1286, 1286, 1286, 1286, 1286, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 3112, 3152, 3773, 3964, 3152, 3964, 3152, 3368, 1294, 1297, 3152, 3238, 2986, 3152, 3152, 3152, 3368, 3256, 3152, 3258, 3238, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 2986, 3238, 3112, 3314, 3169, 3314, 3169, 3256, 3112, 3258, 3415, 3314, 1297, 3435, 3435, 3169, 3415, 3315, 3315, 3256, 3112, 3258, 3169, 3315, 3258, 3315, 3315, 3920, 6871, 3112, 1297, 3920, 1297, 3435, 1297, 1297, 1297, 1297, 1297, 1297, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 3169, 1298, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 1298, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3142, 3333, 3360, 2987, 3610, 3326, 3333, 3333, 3333, 1298, 3378, 3360, 3219, 3142, 3231, 3326, 3326, 3490, 3360, 3378, 6872, 2987, 3610, 3231, 3490, 1298, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 3231, 1299, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 3219, 1299, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3167, 2988, 3167, 3404, 3335, 3231, 3335, 3219, 1299, 3404, 3404, 3167, 3041, 3219, 3414, 3335, 3389, 3335, 3363, 2988, 3414, 3414, 3335, 3363, 3219, 3389, 3342, 1299, 1311, 1311, 3041, 1311, 1311, 1311, 1311, 1311, 3432, 3167, 1311, 1311, 1311, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 2992, 3363, 2992, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 3342, 3432, 6878, 2992, 3248, 1311, 3178, 3178, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3371, 3045, 6879, 3342, 2992, 3371, 1311, 1311, 1311, 1311, 1312, 1312, 3045, 1312, 1312, 1312, 1312, 1312, 3273, 3248, 1312, 1312, 1312, 3178, 3273, 3341, 3341, 3344, 3428, 3178, 3045, 3672, 3371, 3428, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 3178, 3273, 3766, 3248, 3472, 1312, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3248, 3341, 3428, 3344, 3344, 3633, 3672, 1312, 1312, 1312, 1312, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 3472, 6884, 3633, 3410, 3766, 3890, 1315, 1315, 1315, 1315, 1315, 1315, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3410, 3078, 3369, 1315, 1315, 1315, 1315, 1315, 1315, 1317, 3365, 3369, 3078, 3638, 3437, 3437, 3437, 3890, 3369, 3365, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 3078, 3638, 6885, 3886, 3365, 3437, 1317, 1317, 1317, 1317, 1317, 1317, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3165, 3886, 1317, 1317, 1317, 1317, 1317, 1317, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1329, 3235, 3235, 3235, 3235, 3235, 3235, 3235, 3235, 3235, 3781, 3109, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 3109, 4222, 3781, 1329, 3236, 3236, 3236, 3236, 3236, 3236, 3236, 3236, 3236, 3109, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 3237, 1329, 3717, 1329, 1329, 1329, 1329, 1329, 1329, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 3420, 3407, 3717, 6890, 3250, 4222, 3446, 3381, 3392, 3110, 3407, 3420, 3381, 3392, 3446, 3213, 3213, 1333, 1336, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3250, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 3381, 3392, 3110, 3250, 3474, 3433, 3373, 3498, 3111, 3259, 3213, 3250, 1336, 3474, 3498, 3373, 3213, 3450, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3111, 3213, 3259, 3373, 3433, 1336, 3383, 1336, 1336, 1336, 1336, 1336, 1336, 3111, 3259, 3383, 6891, 3450, 3213, 3739, 1336, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 3383, 1337, 3116, 3151, 3151, 3151, 3151, 3151, 3151, 3151, 3151, 3151, 1337, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3739, 3116, 3151, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3401, 3116, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3448, 1337, 1337, 1353, 1353, 3751, 1353, 1353, 1353, 1353, 1353, 3448, 3154, 1353, 1353, 1353, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3193, 3158, 1353, 1353, 1353, 1353, 1353, 1353, 1353, 3193, 3453, 3202, 3158, 3751, 1353, 3479, 3193, 3487, 3453, 6896, 3202, 3193, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 1353, 1353, 1353, 1353, 3454, 3457, 3261, 3214, 3214, 3615, 3479, 3429, 3487, 3457, 3158, 3454, 3193, 1353, 1354, 1354, 3211, 1354, 1354, 1354, 1354, 1354, 3261, 3502, 1354, 1354, 1354, 3716, 3510, 3429, 3502, 3615, 3218, 3648, 3261, 3510, 3211, 3214, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 3203, 3351, 3351, 3211, 3429, 1354, 3648, 3497, 3716, 3203, 3214, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3218, 3518, 1354, 1354, 1354, 1354, 3214, 3394, 3518, 3218, 3755, 6897, 3214, 3497, 3351, 3351, 3394, 3211, 3218, 1354, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 1357, 6913, 3394, 3351, 3204, 3755, 3218, 1357, 1357, 1357, 1357, 1357, 1357, 3204, 3246, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 3246, 1357, 1357, 1357, 1357, 1357, 1357, 1359, 3526, 3260, 3600, 3600, 3257, 3246, 3426, 3526, 3600, 3782, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 1359, 3257, 3260, 3336, 3230, 3257, 3411, 1359, 1359, 1359, 1359, 1359, 1359, 3230, 3260, 3411, 3336, 3257, 3336, 3769, 3230, 3340, 3340, 3260, 3426, 3230, 3782, 3336, 3478, 3426, 3411, 3257, 3509, 3478, 1359, 1359, 1359, 1359, 1359, 1359, 1389, 1389, 3769, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 3230, 1389, 1389, 3340, 3562, 3562, 3562, 3509, 3478, 3340, 6491, 3596, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 3239, 3376, 3340, 3596, 6491, 1389, 3562, 3577, 3596, 3239, 3376, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3239, 3525, 3376, 1389, 1389, 1389, 1389, 1390, 1390, 3577, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 3212, 1390, 1390, 3349, 3349, 3349, 3486, 4028, 3577, 3525, 3376, 3486, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 3212, 4477, 4028, 3323, 1390, 3379, 3480, 3535, 3535, 3535, 3535, 3323, 3212, 3587, 3379, 3480, 3323, 3349, 3486, 3386, 3390, 3379, 1390, 1390, 1390, 1390, 1398, 3323, 3386, 3390, 3480, 3587, 4477, 3550, 3212, 3349, 3390, 3240, 3768, 3587, 3386, 3537, 3537, 3537, 3537, 3649, 3240, 3212, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 3240, 1398, 3241, 3550, 3496, 3768, 3649, 3508, 1398, 3496, 3386, 3241, 3508, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 3241, 1398, 3546, 1398, 3405, 1398, 3813, 3683, 1398, 1398, 3405, 3546, 3813, 1398, 3496, 3683, 1398, 3508, 1398, 3405, 1398, 3756, 1398, 1398, 1398, 1401, 1401, 3770, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 3417, 3417, 3417, 3417, 3417, 3417, 3417, 3417, 3417, 3776, 3756, 3375, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 3385, 3375, 3409, 3475, 6914, 1401, 3770, 3763, 3375, 3385, 3524, 3409, 3475, 3375, 3776, 3524, 3385, 3549, 3409, 3475, 3396, 3385, 3549, 1401, 1401, 1401, 1401, 1403, 1403, 3396, 1403, 1403, 1403, 1403, 1403, 3763, 3396, 1403, 1403, 1403, 3375, 3396, 3524, 3539, 3539, 3539, 3539, 3539, 3385, 3549, 3673, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 3397, 3544, 3547, 3767, 3662, 1403, 3539, 3413, 3551, 3397, 3396, 3547, 3664, 3412, 3867, 3680, 3413, 3551, 3547, 3673, 3867, 3397, 3412, 1403, 1403, 1403, 1403, 1406, 3413, 3412, 3664, 3767, 3551, 3680, 3412, 3544, 3544, 3598, 3662, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 3397, 1406, 3892, 3774, 3598, 3544, 3757, 3413, 3662, 3598, 3892, 3757, 1406, 3412, 3418, 3418, 3418, 3418, 3418, 3418, 3418, 3418, 3418, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3419, 3421, 3757, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3421, 3774, 3775, 1406, 1410, 3434, 3434, 3434, 3434, 3434, 3434, 3434, 3434, 3434, 3884, 4075, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 3422, 3434, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 3422, 1410, 3423, 3775, 3423, 3423, 3423, 3423, 3423, 3423, 3423, 3423, 3423, 3423, 3772, 6923, 3811, 3884, 4075, 3650, 3597, 1410, 3796, 1410, 1410, 1410, 1410, 1410, 1410, 1414, 1414, 3796, 1414, 1414, 1414, 1414, 1414, 3650, 3811, 1414, 1414, 1414, 3436, 3436, 3436, 3436, 3436, 3436, 3436, 3436, 3436, 3597, 3650, 3772, 1414, 1414, 1414, 1414, 1414, 1414, 3772, 3895, 3597, 3436, 3570, 1414, 4078, 3597, 3612, 3895, 3570, 1414, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3513, 3599, 3570, 1414, 1414, 1414, 1414, 1415, 1415, 4078, 1415, 1415, 1415, 1415, 1415, 3771, 3599, 1415, 1415, 1415, 3612, 3599, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 3612, 3837, 3623, 3449, 3623, 1415, 3622, 4476, 3622, 3725, 3771, 4476, 3771, 3837, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 3449, 1415, 1415, 1415, 1415, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 3449, 3623, 1423, 1423, 1423, 3622, 3725, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 4076, 1423, 1423, 1423, 1423, 1423, 1423, 3622, 3620, 3666, 3620, 3666, 1423, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3463, 3741, 3629, 3606, 3629, 3725, 3666, 4076, 3463, 1423, 1423, 1423, 1423, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 3620, 3778, 1424, 1424, 1424, 3581, 3620, 3674, 3685, 3606, 3674, 3581, 3463, 3606, 3741, 3629, 4044, 1424, 1424, 1424, 1424, 1424, 1424, 3581, 3606, 3674, 3685, 3778, 1424, 3606, 3885, 4044, 3741, 3629, 1424, 3514, 3514, 3514, 3514, 3514, 3514, 3514, 3514, 3514, 4285, 4285, 1424, 1424, 1424, 1424, 1426, 1426, 3885, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1427, 1427, 3634, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 3846, 1427, 1427, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 3515, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 3787, 3708, 3630, 3634, 6924, 1427, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3529, 3708, 3846, 6939, 3787, 3708, 3630, 3634, 3787, 1427, 1427, 1427, 1427, 1428, 1428, 3630, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1429, 1429, 7028, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1437, 1437, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3530, 3810, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 3810, 4636, 3758, 7196, 3758, 4636, 1437, 1438, 1438, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3447, 3663, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 3758, 3447, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3531, 3677, 3870, 3826, 1438, 1439, 1439, 3554, 3663, 3874, 3899, 3447, 3777, 3663, 3870, 3874, 3554, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 3639, 3554, 3783, 3826, 3663, 3677, 1439, 1439, 1439, 1439, 1439, 1439, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3540, 3689, 3777, 3677, 3899, 3870, 3783, 3777, 3554, 3572, 3572, 3687, 3639, 1439, 1439, 1439, 1439, 1439, 1439, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 3687, 3639, 3687, 3553, 3689, 3713, 1441, 1441, 1441, 1441, 1441, 1441, 3553, 3889, 3572, 7197, 3713, 3572, 3721, 3553, 3724, 3801, 3689, 3713, 3553, 3889, 3690, 3833, 3833, 3833, 3801, 3690, 3572, 1441, 1441, 1441, 1441, 1441, 1441, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 3690, 3721, 3553, 3724, 3690, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 3558, 3558, 3558, 3558, 3558, 3558, 3558, 3558, 3558, 3727, 3730, 3917, 3966, 3724, 3688, 3721, 3917, 3966, 3780, 3688, 3730, 1444, 1444, 1444, 1444, 1444, 1444, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 3688, 3559, 3688, 3780, 3727, 3730, 1450, 1450, 1450, 1450, 1450, 1450, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 3559, 3722, 3780, 3784, 3789, 3760, 3872, 3588, 3609, 3727, 3760, 3749, 1450, 1450, 1450, 1450, 1450, 1450, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 3722, 3784, 3789, 3872, 3760, 3722, 1453, 1453, 1453, 1453, 1453, 1453, 3588, 7289, 3609, 3749, 3872, 3609, 3588, 3718, 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3538, 3752, 3588, 3722, 3609, 1453, 1453, 1453, 1453, 1453, 1453, 1461, 1461, 3538, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 3718, 1461, 1461, 3809, 3635, 3635, 3718, 3817, 3720, 3761, 3752, 3822, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 3560, 3822, 3809, 5306, 4271, 1461, 3817, 4271, 3718, 3560, 3761, 3560, 3560, 3560, 3560, 3560, 3560, 3761, 3732, 3635, 3560, 3720, 3761, 1461, 1461, 1461, 1462, 1462, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3561, 3635, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 3726, 3561, 3732, 3790, 3856, 1462, 1463, 1463, 3636, 3636, 3720, 3732, 3723, 3788, 5306, 3720, 3893, 3926, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 3893, 3790, 3926, 3856, 3726, 1463, 1464, 1464, 3637, 3637, 3704, 3743, 3734, 3926, 3636, 3704, 3723, 3788, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 3726, 3804, 3798, 3804, 3636, 1464, 1464, 1465, 1465, 3637, 3723, 3798, 3804, 3815, 3637, 3704, 3734, 3743, 3798, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 3808, 3723, 3815, 3637, 3704, 1465, 3743, 3734, 7290, 3808, 3818, 4290, 4837, 3815, 1465, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 3779, 3567, 4837, 3818, 4290, 3779, 1466, 1466, 1466, 1466, 1466, 1466, 3567, 3567, 3567, 3567, 3567, 3567, 3567, 3567, 3567, 3852, 3818, 3999, 3868, 3818, 3808, 3869, 3744, 3894, 3852, 3779, 3999, 1466, 1466, 1466, 1466, 1466, 1466, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 3736, 3868, 3894, 3839, 3869, 3568, 1468, 1468, 1468, 1468, 1468, 1468, 7315, 3744, 3882, 3839, 3568, 3568, 3568, 3568, 3568, 3568, 3568, 3568, 3568, 7316, 3882, 3744, 4079, 3882, 3719, 3744, 3736, 1468, 1468, 1468, 1468, 1468, 1468, 1474, 1474, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3719, 3839, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 3902, 3719, 4079, 3997, 3736, 1474, 1474, 1475, 1475, 3568, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 3785, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 3997, 4084, 3785, 3902, 3847, 1475, 1476, 1476, 3840, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 3794, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 3840, 4084, 3847, 4373, 4373, 1476, 3840, 3847, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3571, 3922, 3571, 3745, 3896, 3913, 3814, 1476, 1476, 1476, 1476, 3922, 3896, 3571, 3848, 1476, 1477, 1477, 3814, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 3571, 3745, 3863, 3863, 3863, 3814, 3745, 3807, 3913, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 3807, 3819, 3848, 3927, 3576, 1477, 3848, 3576, 3745, 3576, 3927, 3970, 3745, 3576, 7410, 3807, 3576, 3576, 3576, 3819, 3827, 3576, 3970, 1477, 1477, 1477, 1477, 3576, 3800, 3827, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3800, 3819, 1477, 1479, 1479, 3827, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 3914, 1479, 1479, 3825, 3855, 3820, 3915, 7411, 3825, 3855, 3980, 3875, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 3875, 3980, 4193, 3914, 3875, 1479, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3578, 3825, 3855, 4004, 3915, 3820, 3820, 4193, 1479, 1479, 1479, 1488, 1488, 3578, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 3820, 1488, 1488, 3925, 3925, 3925, 3881, 4004, 3578, 3878, 4268, 3823, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 3823, 3853, 1488, 3878, 1488, 3932, 3881, 3823, 1488, 3878, 3853, 1488, 1488, 1488, 3932, 3932, 1488, 3853, 3881, 3881, 4268, 3878, 1488, 1488, 1488, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3579, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 3834, 1488, 1489, 1489, 3579, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 3830, 1489, 1489, 3873, 4015, 3956, 3912, 3883, 3579, 3830, 3912, 4015, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 3883, 3883, 3830, 3956, 7420, 1489, 3956, 3912, 7421, 3873, 3802, 1489, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3802, 3873, 1489, 1489, 1489, 1489, 1490, 1490, 3830, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1491, 1491, 3986, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 3841, 4070, 4070, 4070, 3908, 3901, 4103, 3857, 3908, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 3857, 3829, 4103, 3923, 3986, 1491, 3991, 3986, 3923, 3611, 3829, 1491, 3841, 3923, 3611, 3857, 3908, 3829, 3916, 3841, 3841, 3901, 3829, 1491, 1491, 1491, 1491, 1492, 1492, 3901, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 3611, 3937, 4190, 3916, 3987, 3937, 3611, 3829, 3877, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 3916, 3991, 3611, 4409, 3877, 1492, 4409, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3764, 3877, 3937, 3877, 3987, 4082, 4190, 1492, 1492, 1492, 1492, 1493, 1493, 3764, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 3933, 4173, 4173, 4173, 3933, 1493, 4082, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3580, 3936, 3965, 4083, 3934, 3936, 3933, 1493, 1493, 1493, 1493, 1498, 1498, 3580, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 3871, 1498, 1498, 3965, 4023, 3934, 3871, 3919, 3580, 3934, 3936, 4023, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 3905, 3919, 4083, 4012, 3905, 1498, 3871, 3919, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 3585, 4580, 3585, 3871, 3905, 4248, 4580, 1498, 1498, 1498, 3931, 4077, 3905, 3585, 4012, 1498, 1499, 1499, 3843, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 3905, 1499, 1499, 3585, 3946, 3982, 3982, 4077, 4252, 3946, 3843, 3946, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 4088, 4088, 4248, 3843, 7423, 1499, 3641, 3641, 3641, 3641, 3641, 3641, 3641, 3641, 3641, 3641, 3931, 4252, 3924, 3982, 4088, 3931, 3931, 1499, 1499, 1499, 1500, 1500, 3641, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 3843, 1500, 1500, 4022, 3947, 4003, 3843, 3924, 3641, 3947, 4003, 3947, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 3924, 3981, 1500, 3981, 1500, 3924, 4264, 3981, 1500, 3876, 4022, 1500, 1500, 1500, 3938, 3876, 1500, 4003, 3938, 4478, 4478, 3876, 1500, 1500, 1500, 3642, 3642, 3642, 3642, 3642, 3642, 3642, 3642, 3642, 3642, 3939, 3876, 4136, 4085, 3939, 3938, 4264, 3816, 3816, 1500, 1501, 1501, 3642, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 4027, 3939, 4085, 3985, 3985, 3642, 4188, 4027, 3939, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 3816, 3977, 4188, 4136, 4324, 1501, 3977, 3930, 3977, 3816, 3803, 1501, 3803, 3803, 3803, 3803, 3803, 3803, 3816, 3930, 3985, 3803, 4324, 1501, 1501, 1501, 1501, 1502, 1502, 3930, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1503, 1503, 7424, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1504, 3643, 3643, 3643, 3643, 3643, 3643, 3643, 3643, 3643, 7430, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 3728, 3948, 3643, 4035, 4666, 4666, 3948, 3948, 3948, 4087, 4035, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3728, 3643, 3836, 4256, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3836, 3728, 4087, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 4011, 4256, 4191, 3859, 3860, 4011, 1508, 1508, 1508, 1508, 1508, 1508, 3859, 3860, 4191, 3951, 3978, 3978, 7431, 3859, 3951, 3978, 3951, 3978, 3859, 3860, 4034, 4050, 3849, 3842, 4194, 3951, 4011, 1508, 1508, 1508, 1508, 1508, 1508, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 3842, 4194, 3859, 3860, 4034, 4050, 1511, 1511, 1511, 1511, 1511, 1511, 3842, 3849, 3849, 5002, 4063, 4444, 3842, 4104, 3647, 3647, 3647, 3647, 3647, 3647, 3647, 3647, 3647, 7436, 3647, 3849, 3984, 1511, 1511, 1511, 1511, 1511, 1511, 1513, 4059, 3647, 3879, 4063, 3880, 3729, 4104, 3842, 3849, 4059, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 3647, 4444, 4110, 3879, 5002, 3880, 3984, 1513, 1513, 1513, 1513, 1513, 1513, 3729, 4091, 3879, 3729, 3880, 3729, 4080, 3880, 3879, 3729, 4091, 4094, 3729, 3729, 3729, 3984, 4110, 3729, 3880, 4094, 4204, 1513, 1513, 1513, 1513, 1513, 1513, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 3945, 3907, 4080, 4204, 4080, 7437, 1517, 1517, 1517, 1517, 1517, 1517, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 3864, 4101, 4407, 4148, 4043, 3907, 3935, 4214, 3850, 3907, 3935, 4043, 4101, 1517, 1517, 1517, 1517, 1517, 1517, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 3907, 3935, 4148, 4214, 4407, 3907, 3935, 1519, 1519, 1519, 1519, 1519, 1519, 3945, 3850, 4051, 4021, 4249, 3945, 4155, 3945, 4021, 4051, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3676, 3850, 3676, 1519, 1519, 1519, 1519, 1519, 1519, 1527, 1527, 4005, 3850, 3676, 4231, 4155, 7404, 4021, 3850, 4249, 4005, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 3676, 4231, 7404, 3900, 4005, 4231, 1527, 1528, 1528, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 3765, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 3950, 4109, 3765, 3950, 3844, 3844, 3900, 4196, 3950, 3906, 3950, 4272, 4109, 3906, 1528, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 4033, 4333, 4196, 4162, 3906, 4033, 1529, 1529, 1529, 1529, 1529, 1529, 3906, 3844, 3949, 3972, 3900, 4196, 4272, 3972, 3949, 4097, 3844, 3900, 3972, 3949, 3972, 3949, 3906, 4097, 4162, 3844, 4033, 1529, 1529, 1529, 1529, 1529, 1529, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 3844, 4049, 4184, 4184, 4184, 4333, 4049, 1531, 1531, 1531, 1531, 1531, 1531, 3731, 3953, 3994, 3994, 3910, 3953, 3953, 4170, 3953, 4425, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 3731, 4049, 1531, 1531, 1531, 1531, 1531, 1531, 1537, 1537, 3910, 4994, 4425, 3731, 3910, 4170, 4253, 3994, 3845, 3845, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 3910, 4376, 4090, 4090, 4090, 3994, 1537, 1540, 1540, 3994, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 3910, 1540, 1540, 3845, 4090, 4232, 4994, 4253, 4375, 4114, 4376, 4108, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 4108, 4114, 3845, 4261, 4232, 1540, 4419, 3866, 3845, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3866, 3940, 3845, 4113, 3973, 4232, 1540, 1540, 1540, 1541, 1541, 4113, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 4117, 3940, 5166, 5166, 4261, 3940, 4375, 4419, 4117, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 4448, 3976, 3976, 4448, 4250, 1541, 3918, 3976, 3974, 3976, 4181, 3973, 3940, 4124, 3918, 3974, 3973, 3940, 3973, 3918, 3974, 4124, 3974, 1541, 1541, 1541, 1541, 1542, 1542, 4062, 3918, 4147, 3974, 4250, 4062, 4202, 4147, 4181, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 4154, 4195, 4062, 4202, 4147, 4154, 1548, 1548, 1548, 1548, 1548, 1548, 3944, 4000, 3944, 4081, 3975, 5212, 5212, 3944, 3975, 4195, 4000, 3944, 3944, 3975, 3944, 3975, 4195, 4000, 3944, 4326, 4154, 1548, 1548, 1548, 1548, 1548, 1548, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 4326, 4219, 4210, 4440, 4420, 4081, 1551, 1551, 1551, 1551, 1551, 1551, 4081, 4210, 3983, 3983, 3983, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 3988, 4440, 3988, 3996, 3996, 4420, 4389, 4219, 1551, 1551, 1551, 1551, 1551, 1551, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 3983, 4161, 4219, 4430, 4064, 4450, 4161, 1559, 1559, 1559, 1559, 1559, 1559, 4064, 3996, 4389, 4446, 3996, 3983, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4038, 4064, 4433, 4450, 4430, 3996, 4161, 1559, 1559, 1559, 1559, 1559, 1559, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 4169, 4180, 4433, 4389, 4446, 4169, 4180, 1561, 1561, 1561, 1561, 1561, 1561, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4039, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4040, 4445, 4169, 4180, 1561, 1561, 1561, 1561, 1561, 1561, 1568, 1568, 4381, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 4054, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 4342, 4445, 4203, 4381, 4437, 1568, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4055, 4201, 4377, 4422, 4342, 4127, 4201, 4067, 4203, 1568, 1568, 1568, 1568, 4127, 4227, 4203, 4067, 4381, 1568, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 4067, 4437, 4439, 4438, 4227, 4201, 4377, 1570, 1570, 1570, 1570, 1570, 1570, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4056, 4192, 4227, 4225, 4225, 4439, 4067, 4227, 7442, 4422, 4438, 4629, 4377, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1575, 1575, 4629, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 4192, 4229, 4225, 4192, 4228, 4237, 4229, 4060, 4225, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 4060, 4066, 4192, 4223, 4225, 1575, 4228, 4060, 4229, 4325, 4066, 4237, 4223, 4441, 4228, 4587, 4229, 4066, 4567, 4560, 4587, 4223, 4066, 1575, 1575, 1575, 1575, 1577, 1577, 4237, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 4251, 1577, 1577, 4240, 4325, 4316, 4316, 4325, 4251, 4441, 4066, 4316, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 4560, 4567, 4240, 4325, 4240, 1577, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 4071, 7443, 4449, 4218, 4218, 4218, 4218, 4218, 4218, 1577, 1577, 1577, 1578, 1578, 4396, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 4218, 1578, 1578, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 4174, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 4449, 4233, 4396, 4346, 1578, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4072, 4813, 4273, 4451, 4273, 4233, 4072, 4346, 1578, 1578, 1578, 4233, 1578, 1579, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4086, 4312, 4396, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 4312, 4086, 4273, 4590, 4451, 4312, 4813, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 4400, 1579, 4461, 1579, 1579, 1579, 1579, 1579, 1579, 1581, 1581, 4461, 1581, 1581, 1581, 1581, 1581, 4590, 4254, 1581, 1581, 1581, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4089, 4435, 4400, 4400, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 4317, 4314, 4089, 4073, 1581, 4073, 4073, 4073, 4073, 4073, 4073, 4340, 4435, 4317, 4073, 4254, 4314, 4254, 4317, 4340, 4073, 4314, 1581, 1581, 1581, 1581, 1582, 1582, 4255, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 4185, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 4348, 5222, 5222, 4234, 4559, 1582, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4189, 4255, 4559, 4661, 4348, 4559, 4661, 4234, 4255, 1582, 1582, 1582, 1582, 1583, 1583, 4234, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1584, 1584, 4380, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 7448, 1584, 1584, 4206, 4206, 4206, 4206, 4206, 4206, 4206, 4206, 4206, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 4286, 4644, 4380, 4644, 1584, 4738, 4286, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4102, 4738, 4392, 4286, 4498, 4242, 4293, 1584, 1584, 1584, 1584, 1585, 1585, 4102, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 4242, 1585, 1585, 4380, 4388, 4293, 4383, 4242, 4498, 4638, 4102, 4392, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 4638, 4315, 4266, 7449, 4293, 1585, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4123, 4244, 4315, 4388, 4392, 4383, 4266, 4315, 4123, 1585, 1585, 1585, 1585, 1586, 1586, 4266, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 4383, 4244, 4297, 4402, 4532, 4123, 4424, 4244, 4297, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 4388, 4479, 4276, 4244, 4297, 1586, 4207, 4207, 4207, 4207, 4207, 4207, 4207, 4207, 4207, 4532, 4641, 4641, 4641, 4402, 4276, 4479, 4424, 1586, 1586, 1586, 1586, 1587, 1587, 4276, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1590, 1590, 4328, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 4208, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 4721, 4470, 4284, 4328, 4597, 1590, 4721, 4211, 1590, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 4211, 7457, 4284, 4328, 4470, 1590, 1590, 1590, 1590, 1591, 1591, 4284, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 4335, 4387, 4597, 4382, 4397, 4569, 4335, 4470, 4447, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 4230, 4569, 4335, 4303, 4212, 1591, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4212, 4447, 4387, 4230, 4382, 4397, 4303, 4230, 1591, 1591, 1591, 1591, 1592, 1592, 4303, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 4334, 1592, 1592, 4230, 4382, 4397, 4395, 4334, 4426, 4334, 4480, 4464, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 4464, 4387, 4999, 4213, 1592, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4213, 4313, 4480, 4352, 4395, 7458, 4426, 4599, 1592, 1592, 1592, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 4395, 4599, 4999, 4336, 4336, 4352, 4313, 4369, 4349, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 4105, 4313, 4278, 4398, 4369, 1596, 4313, 4352, 4278, 4369, 4349, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4105, 4278, 4336, 4349, 1596, 1596, 1596, 1596, 1596, 4360, 4278, 4390, 4613, 4105, 4429, 5007, 4398, 4613, 4956, 4390, 4336, 1596, 4265, 1596, 1599, 1599, 4386, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 4288, 4288, 4360, 4398, 4390, 4347, 4347, 4429, 4406, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 4406, 4265, 5007, 4386, 4360, 1599, 4956, 4265, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4226, 4322, 4288, 4265, 5087, 4288, 4347, 1599, 1599, 1599, 1599, 1600, 1600, 4226, 1600, 1600, 1600, 1600, 1600, 4511, 4288, 1600, 1600, 1600, 4347, 4467, 4386, 4850, 4322, 4367, 4394, 4226, 4322, 4386, 4467, 4472, 1600, 1600, 1600, 1600, 1600, 1600, 4850, 4322, 4472, 4511, 5087, 1600, 4322, 4467, 4235, 4235, 4235, 4235, 4235, 4235, 4235, 4235, 4235, 4393, 4401, 4562, 4394, 4367, 4546, 1600, 1600, 1600, 1600, 1601, 1601, 4235, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 4367, 1601, 1601, 4394, 4442, 4393, 4562, 4546, 4235, 4627, 4393, 4401, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 4436, 4436, 4499, 4421, 4394, 1601, 4421, 4482, 4421, 4499, 4401, 4421, 4627, 4462, 4401, 7506, 4482, 4393, 4442, 4401, 4442, 4436, 4462, 1601, 1601, 1601, 1601, 1602, 1602, 4462, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1603, 1603, 4391, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 4415, 4403, 4486, 4481, 4510, 4469, 7511, 4469, 4544, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 4469, 4544, 4443, 4391, 4486, 1603, 5080, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4238, 4403, 4415, 4481, 4510, 4415, 4486, 1603, 1603, 1603, 1603, 1604, 1604, 4238, 1604, 1604, 1604, 1604, 1604, 4466, 4415, 1604, 1604, 1604, 4391, 4443, 4519, 4403, 4466, 4391, 5080, 4238, 4443, 4487, 4550, 4466, 1604, 1604, 1604, 1604, 1604, 1604, 4533, 4550, 4968, 4487, 4968, 1604, 4967, 4533, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4287, 4418, 4287, 4519, 4519, 4487, 4418, 1604, 1604, 1604, 1604, 1605, 1605, 4287, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 4967, 4497, 4418, 4485, 4485, 4287, 4497, 4572, 4552, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 4552, 4903, 4572, 4552, 1605, 4418, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4294, 4497, 4545, 4552, 4903, 4485, 4485, 1605, 1605, 1605, 1605, 1607, 1607, 4294, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 4485, 1607, 1607, 4561, 5014, 4531, 4903, 4547, 4294, 4384, 4531, 4545, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 4708, 4708, 4708, 5014, 4427, 1607, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4295, 4427, 4483, 4531, 4561, 4547, 4577, 4384, 1607, 1607, 1607, 1610, 1610, 4295, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 7521, 4410, 4414, 4427, 7525, 4295, 4573, 4577, 4483, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 4384, 4547, 4573, 4565, 4236, 1610, 4548, 4236, 4571, 4236, 4483, 4565, 4596, 4236, 4410, 4548, 4236, 4236, 4236, 4410, 4414, 4236, 4484, 1610, 1610, 1610, 1610, 4236, 4304, 4327, 4520, 4548, 4385, 4414, 4327, 4605, 4603, 4410, 4414, 4683, 4484, 4596, 4520, 4571, 4548, 1610, 1616, 1616, 4484, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 4304, 4327, 4605, 4385, 4603, 4683, 4304, 4327, 4506, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 4520, 4506, 4304, 4327, 4292, 1616, 4576, 4292, 4566, 4292, 4570, 4600, 4506, 4292, 4576, 4626, 4292, 4292, 4292, 4657, 4385, 4292, 4385, 1616, 1616, 1616, 1616, 4292, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 4301, 7528, 4301, 4626, 4566, 4657, 4570, 4600, 4488, 4671, 1616, 1621, 1621, 4301, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 4540, 1621, 1621, 5096, 4631, 4588, 4578, 4588, 4301, 4540, 4588, 4551, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 4488, 4540, 4671, 4488, 4551, 1621, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4296, 4551, 4631, 4488, 4578, 4601, 5096, 4744, 1621, 1621, 1621, 1622, 1622, 4296, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 4616, 1622, 1622, 4555, 4609, 4601, 4744, 4595, 4296, 4512, 4601, 4609, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 4919, 4578, 7537, 4555, 1622, 4514, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4341, 4555, 4690, 4595, 4919, 5000, 4616, 4512, 1622, 1622, 1622, 1624, 1624, 4341, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 4514, 1624, 1624, 4628, 4919, 4554, 4690, 4616, 4341, 4595, 4628, 4628, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 4512, 5000, 4554, 5000, 4864, 1624, 4554, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4345, 4514, 4345, 4554, 4864, 4649, 4632, 4649, 1624, 1624, 1624, 1625, 1625, 4345, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 4474, 1625, 1625, 4549, 4745, 4745, 4649, 4618, 4345, 4474, 4632, 4618, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 4378, 4474, 4659, 4632, 1625, 4745, 4697, 4618, 4549, 4549, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 4378, 5652, 4549, 1625, 1625, 1625, 1629, 1629, 4521, 4474, 4633, 4513, 4618, 4378, 4697, 4633, 4659, 4379, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4379, 4513, 4432, 1629, 5652, 4432, 4521, 4432, 5106, 4521, 4513, 4432, 4722, 4379, 4432, 4432, 4432, 4416, 4722, 4432, 5106, 4399, 4659, 1629, 4521, 1629, 1629, 1629, 1629, 1629, 1629, 1636, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4399, 4521, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 4416, 4579, 4399, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4413, 4589, 4413, 4558, 4611, 5186, 7542, 4416, 5186, 4630, 4579, 4589, 4611, 4413, 4643, 4558, 4589, 4611, 4630, 4416, 4630, 4643, 4579, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1641, 1641, 4558, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 5010, 1641, 1641, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 4457, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 4556, 5082, 4705, 4602, 4716, 1641, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 4434, 5010, 4635, 5241, 4730, 4556, 5241, 4602, 1641, 1641, 1641, 1641, 4602, 4434, 4705, 4635, 4716, 4556, 1641, 1646, 1646, 4635, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 4730, 1646, 1646, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 4458, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 4906, 4906, 4556, 5082, 7546, 1646, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4459, 4682, 4689, 4696, 4906, 5089, 4682, 4689, 4696, 1646, 1646, 1646, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4502, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4503, 4719, 4719, 4719, 4682, 4689, 4696, 1646, 1650, 1650, 5089, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1653, 1653, 4598, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 4604, 1653, 1653, 5162, 7549, 4654, 4893, 4893, 4893, 4598, 4473, 4654, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 4473, 4598, 4647, 4749, 4604, 1653, 4770, 4473, 4516, 4604, 4654, 4604, 4473, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 4504, 5162, 1653, 1653, 1653, 1653, 4749, 4516, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4536, 4770, 4473, 4516, 4915, 1653, 1657, 1657, 4557, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4647, 1657, 1657, 4619, 4915, 4647, 4647, 7556, 4772, 4516, 4557, 4619, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 4507, 4516, 4915, 4557, 4732, 1657, 4557, 5638, 4619, 4507, 4732, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4507, 4772, 5097, 1657, 1657, 1657, 1658, 1658, 4882, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 5638, 1658, 1658, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 4537, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 4508, 4723, 4882, 4913, 1658, 4704, 5097, 4723, 4723, 4508, 4704, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4508, 4913, 1658, 1658, 1658, 1662, 1662, 4913, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 4704, 1662, 1662, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 4538, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 4650, 4509, 4833, 4624, 4921, 1662, 5815, 4517, 4517, 4833, 4509, 1662, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4509, 4750, 1662, 1662, 1662, 1663, 1663, 4921, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 4515, 1663, 1663, 4517, 4517, 5015, 4650, 5815, 4921, 4607, 4624, 4750, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 4522, 4515, 4517, 4518, 4518, 1663, 4607, 4612, 4620, 5117, 4624, 4650, 4612, 4515, 4724, 4624, 4620, 4612, 5015, 4517, 4724, 4607, 4515, 1663, 1663, 1663, 4639, 4753, 4553, 4724, 4607, 4639, 4620, 5117, 4522, 4753, 4639, 4518, 1663, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 4515, 1676, 4731, 4608, 4522, 4959, 5057, 4518, 4731, 4731, 4608, 4959, 1676, 4648, 4553, 4608, 4522, 4608, 4518, 4622, 4541, 4522, 4648, 4648, 4518, 7557, 4553, 4622, 4995, 4541, 1676, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4541, 4553, 4617, 4622, 4911, 4920, 1676, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 4617, 1678, 4542, 7562, 4769, 4995, 4911, 4920, 5057, 5058, 4617, 4542, 1678, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4542, 4543, 7568, 4777, 4920, 4911, 4986, 5023, 1678, 4769, 4543, 4754, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4543, 4754, 5058, 4986, 5023, 4986, 1678, 1684, 1684, 4777, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 5003, 4642, 4925, 4782, 4610, 4759, 1687, 1687, 1687, 1687, 1687, 1687, 4610, 4606, 4642, 4758, 4759, 4610, 4651, 4634, 4925, 4651, 4610, 4758, 4925, 4642, 4651, 4634, 4610, 4606, 4782, 4606, 4634, 1687, 1687, 1687, 1687, 1687, 1687, 1695, 4606, 4762, 4651, 4634, 4925, 4640, 5003, 4606, 5092, 4762, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 4715, 4646, 4652, 4653, 4621, 4715, 1695, 1695, 1695, 1695, 1695, 1695, 4640, 4646, 4652, 4656, 4653, 4836, 5092, 5831, 4775, 4658, 4658, 4646, 4836, 4640, 4652, 4653, 4775, 4660, 4640, 5831, 4715, 1695, 1695, 1695, 1695, 1695, 1695, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 4621, 1703, 4996, 4621, 4655, 4776, 4808, 4658, 4621, 4781, 4655, 4656, 1703, 4658, 4660, 4786, 4776, 4655, 4656, 4780, 4781, 4785, 4660, 4656, 4621, 4658, 4786, 4780, 4655, 4785, 7572, 4996, 5033, 4808, 4797, 4656, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 4709, 4797, 1703, 1703, 1717, 1717, 5033, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 4729, 4825, 4998, 4801, 4881, 4729, 1720, 1720, 1720, 1720, 1720, 1720, 4668, 4668, 4801, 4907, 4890, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4662, 4914, 4662, 4825, 4771, 4998, 4881, 4729, 1720, 1720, 1720, 1720, 1720, 1720, 1728, 4771, 4771, 4771, 4890, 4914, 5034, 4668, 4907, 5700, 4914, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 4939, 4771, 4950, 5034, 4668, 4907, 1728, 1728, 1728, 1728, 1728, 1728, 4662, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4664, 4789, 4664, 4795, 5086, 5700, 4939, 4668, 4950, 4789, 5086, 4795, 1728, 1728, 1728, 1728, 1728, 1728, 1759, 1759, 5018, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 4800, 1759, 1759, 4804, 4824, 4889, 4670, 4670, 4800, 4824, 4889, 4804, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 7576, 5049, 5051, 5018, 5051, 1759, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4720, 4842, 5163, 4824, 4889, 5049, 5051, 4670, 4842, 1759, 1759, 1759, 1759, 1760, 1760, 4670, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 4670, 1760, 1760, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 4734, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 4849, 5120, 5120, 5163, 5301, 1760, 5301, 4849, 1760, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 4735, 7580, 5245, 4918, 5120, 5245, 1760, 1760, 1760, 1760, 1768, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4736, 4739, 4918, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4739, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 4845, 5071, 1768, 4960, 5116, 4960, 4918, 4912, 4740, 1768, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4740, 4855, 7377, 4863, 4869, 1768, 4912, 1768, 4855, 1768, 4863, 4869, 1768, 1768, 5071, 4938, 4912, 1768, 4960, 5709, 1768, 5116, 1768, 4938, 1768, 4916, 1768, 1768, 1768, 1769, 4741, 5088, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4741, 4742, 4916, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4742, 4940, 5709, 5078, 5071, 4916, 4943, 4916, 1769, 4923, 1769, 4926, 4940, 5088, 4943, 1769, 7377, 5164, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4746, 4923, 4931, 4926, 1769, 5078, 1769, 4926, 1769, 4923, 4997, 1769, 1769, 4746, 4883, 5164, 1769, 5001, 4997, 1769, 4931, 1769, 5064, 1769, 4931, 1769, 1769, 1769, 1770, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4747, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4748, 4927, 4883, 6335, 4747, 6335, 4961, 5254, 5064, 1770, 4883, 4924, 4961, 4748, 1770, 5001, 4924, 4928, 5179, 4927, 4883, 1770, 5001, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4796, 4954, 4961, 4924, 4928, 1770, 4927, 1770, 4796, 1770, 4928, 4924, 1770, 1770, 5179, 5094, 5064, 1770, 5254, 4954, 1770, 7600, 1770, 4954, 1770, 5094, 1770, 1770, 1770, 1771, 4908, 4908, 4908, 4796, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4846, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4847, 4858, 4858, 4858, 4858, 4858, 4858, 4858, 4858, 4858, 1771, 4929, 4974, 4908, 5239, 4980, 5073, 1771, 4859, 4859, 4859, 4859, 4859, 4859, 4859, 4859, 4859, 4988, 4977, 4929, 4974, 4908, 1771, 4980, 1771, 5125, 1771, 4929, 4974, 1771, 1771, 4980, 5239, 5125, 1771, 4988, 4977, 1771, 5073, 1771, 4977, 1771, 4988, 1771, 1771, 1771, 1771, 1772, 4860, 4860, 4860, 4860, 4860, 4860, 4860, 4860, 4860, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4872, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 4873, 5073, 4975, 5091, 4978, 1772, 5076, 4975, 7601, 5205, 5012, 5072, 1772, 4874, 4874, 4874, 4874, 4874, 4874, 4874, 4874, 4874, 4978, 4969, 5165, 4975, 5091, 1772, 5012, 1772, 1772, 1772, 4969, 4975, 1772, 1772, 5205, 5012, 5076, 1772, 4978, 4969, 1772, 5072, 1772, 5066, 1772, 5165, 1772, 1772, 1772, 1773, 4877, 4877, 4877, 4877, 4877, 4877, 4879, 4879, 4879, 4879, 4879, 4879, 4880, 4880, 4880, 4880, 4880, 4880, 4880, 4880, 4880, 4877, 5298, 5242, 5060, 5066, 5062, 4879, 5076, 7607, 4979, 1773, 5072, 5298, 5060, 5364, 5062, 5101, 1773, 4894, 4894, 4894, 4894, 4894, 4894, 4894, 4894, 4894, 4979, 5066, 5364, 4976, 5242, 1773, 4979, 1773, 5060, 1773, 5062, 1773, 1773, 1773, 4932, 5101, 4933, 1773, 5112, 4895, 1773, 4976, 1773, 4917, 1773, 4976, 1773, 1773, 1773, 1774, 4895, 4895, 4895, 4895, 4895, 4895, 4895, 4895, 4895, 4895, 4896, 4917, 5124, 5124, 5112, 4976, 4932, 4922, 4933, 4896, 5074, 4896, 4896, 4896, 4896, 4896, 4896, 5214, 5074, 4983, 4896, 1774, 4917, 5124, 4932, 4922, 4933, 7608, 1774, 4917, 5035, 4897, 4897, 4897, 4897, 4897, 4897, 4897, 4897, 4897, 5778, 4983, 5074, 1774, 4922, 1774, 5778, 1774, 5035, 4922, 1774, 1774, 4897, 5020, 5020, 1774, 5090, 5214, 1774, 4983, 1774, 5237, 1774, 5035, 1774, 1774, 1774, 1775, 4901, 4901, 4901, 4901, 4901, 4901, 4901, 4901, 4901, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 4904, 5237, 5020, 5090, 4901, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 4905, 1775, 5019, 5246, 5115, 4990, 4973, 5020, 1775, 5063, 4909, 4909, 4909, 4909, 4909, 4909, 4909, 4909, 4909, 4909, 5063, 5063, 7619, 1775, 4973, 1775, 5115, 1775, 5246, 5093, 1775, 1775, 4909, 4990, 5019, 1775, 4904, 1775, 1775, 4990, 1775, 5063, 1775, 4973, 1775, 1775, 1775, 1776, 4973, 5024, 4909, 4990, 5019, 4905, 4910, 4910, 4910, 4910, 4910, 4910, 4910, 4910, 4910, 4910, 5093, 5075, 5118, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4930, 4910, 5017, 5949, 1776, 5065, 5024, 5095, 4953, 7693, 4953, 1776, 4964, 4930, 4964, 5949, 5095, 5118, 5123, 4910, 5017, 5107, 5075, 5107, 5024, 5075, 1776, 5011, 1776, 5017, 1776, 4930, 5107, 1776, 1776, 4971, 4971, 5065, 1776, 1776, 5123, 1776, 4953, 1776, 5017, 1776, 4964, 1776, 1776, 1776, 1777, 5047, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4937, 4953, 5011, 5134, 5134, 5134, 5065, 4964, 5011, 7698, 4971, 5304, 5113, 4937, 5077, 5305, 4971, 5113, 5068, 5303, 5011, 5304, 5126, 1777, 5099, 5305, 5047, 5067, 4971, 5099, 1777, 4937, 5260, 4972, 4972, 4972, 4972, 4972, 4972, 4972, 4972, 4972, 5263, 5113, 5047, 1777, 5077, 1777, 5303, 1777, 5068, 5099, 1777, 1777, 4972, 5021, 5021, 1777, 5069, 5067, 1777, 5111, 1777, 5126, 1777, 7708, 1777, 1777, 1777, 1777, 1778, 5077, 4972, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 4981, 5067, 4982, 5260, 5068, 4982, 5263, 4982, 5021, 5069, 5160, 4982, 5128, 4981, 4982, 4982, 4982, 5111, 7150, 4982, 5236, 1778, 5111, 5022, 5022, 4982, 5021, 5114, 1778, 5127, 5160, 4981, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 4984, 5069, 1778, 5069, 1778, 5236, 1778, 5308, 5114, 1778, 1778, 5022, 5128, 4984, 1778, 7150, 5022, 1778, 5308, 1778, 5127, 1778, 5329, 1778, 1778, 1778, 1779, 5048, 5114, 5084, 5311, 4984, 5059, 5311, 5022, 5026, 5026, 5026, 5026, 5026, 5026, 5026, 5026, 5026, 5026, 5027, 5027, 5027, 5027, 5027, 5027, 5027, 5027, 5027, 5027, 5329, 5048, 5026, 1779, 5059, 5335, 5048, 5059, 5084, 5059, 1779, 5244, 5027, 5059, 5084, 5161, 5059, 5059, 5059, 5141, 5026, 5059, 5144, 5335, 5048, 1779, 5084, 1779, 5141, 1779, 5027, 5144, 1779, 1779, 5085, 5161, 5146, 1779, 5070, 1779, 1779, 5083, 1779, 5244, 1779, 5146, 1779, 1779, 1779, 1780, 5028, 5028, 5028, 5028, 5028, 5028, 5028, 5028, 5028, 5032, 5032, 5032, 5032, 5032, 5032, 5032, 5032, 5032, 5085, 5032, 5070, 5028, 5098, 5149, 5108, 5083, 5108, 5083, 5143, 5098, 5032, 1780, 5149, 5156, 5098, 5108, 5085, 5143, 1780, 5028, 5153, 5425, 5108, 5083, 5143, 5817, 5217, 5149, 5032, 5153, 5187, 5085, 5189, 1780, 5156, 1780, 5098, 1780, 5157, 5070, 1780, 1780, 5098, 5425, 5151, 1780, 5070, 5157, 1780, 5817, 1780, 5217, 1780, 5151, 1780, 1780, 1780, 1780, 1781, 5061, 5151, 5156, 5157, 5178, 5217, 5187, 1781, 5189, 5178, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5061, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 5103, 5340, 1781, 5061, 5122, 5122, 5122, 5178, 5234, 1781, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5104, 5234, 5155, 5316, 5316, 1781, 5122, 1781, 5247, 1781, 5310, 5155, 1781, 1781, 5182, 5182, 5182, 1781, 5155, 5310, 1781, 6436, 1781, 5340, 1781, 5234, 1781, 1781, 1781, 1782, 5105, 5105, 5105, 5105, 5105, 5105, 5105, 5105, 5105, 5105, 5247, 5119, 5119, 5119, 5119, 5119, 5119, 5119, 5119, 5119, 5121, 5121, 5121, 5121, 5121, 5121, 5121, 5121, 5121, 5195, 5148, 1782, 5119, 5167, 5168, 5825, 5167, 6436, 1782, 5148, 5131, 5121, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5131, 5148, 5168, 1782, 5167, 1782, 5195, 1782, 5159, 5825, 1782, 1782, 5169, 5169, 5195, 1782, 5131, 5159, 1782, 5168, 1782, 5352, 1782, 5170, 1782, 1782, 1782, 1783, 5148, 5159, 5171, 5131, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5135, 5170, 5147, 5198, 5158, 5172, 5169, 5238, 5352, 5169, 5170, 5147, 5204, 5158, 5248, 5953, 5159, 5204, 5147, 1783, 5158, 5953, 5171, 5147, 5169, 5158, 1783, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5183, 5190, 5198, 5196, 5172, 5171, 1783, 5238, 1783, 5204, 1783, 5248, 5172, 1783, 1783, 5147, 5188, 5158, 1783, 5188, 5198, 1783, 5172, 1783, 5428, 1783, 5253, 1783, 1783, 1783, 1784, 5191, 5428, 5190, 6857, 5196, 6857, 5198, 5377, 5185, 1784, 5185, 5185, 5185, 5185, 5185, 5185, 5185, 5185, 5185, 5223, 5191, 5360, 5377, 5188, 5208, 5208, 5208, 5253, 5360, 5312, 5192, 1784, 5191, 5191, 5312, 5312, 5455, 5190, 1784, 5196, 5209, 5209, 5209, 5209, 5209, 5209, 5209, 5209, 5209, 5391, 5192, 5223, 5409, 1784, 5455, 1784, 5197, 1784, 5193, 5193, 1784, 1784, 5192, 5223, 5391, 1784, 5218, 5191, 1784, 5567, 1784, 5218, 1784, 5563, 1784, 1784, 1784, 1786, 1786, 5409, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 5567, 5197, 5192, 5193, 7712, 5716, 5193, 5218, 5192, 5197, 5224, 5224, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 5197, 5218, 5193, 5224, 5716, 1786, 5563, 5194, 5194, 5213, 5213, 5213, 5213, 5213, 5213, 5213, 5213, 5197, 5224, 5193, 5412, 5412, 5412, 1786, 1786, 1786, 1786, 1787, 1787, 5213, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 5220, 5211, 5194, 5211, 5211, 5211, 5211, 5211, 5211, 5211, 5211, 5211, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 5194, 5230, 5252, 5363, 1787, 5220, 5215, 5990, 5243, 5215, 5363, 5219, 5194, 5369, 5243, 5220, 5225, 5194, 5220, 5990, 5369, 5230, 1787, 1787, 1787, 1787, 1792, 5216, 5216, 5221, 5243, 5232, 5822, 5230, 5252, 5227, 5219, 5219, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 5215, 1792, 5219, 5225, 5232, 5216, 7715, 5221, 5429, 5228, 5229, 5235, 1792, 5252, 5376, 5225, 5232, 5227, 5216, 5429, 5221, 5376, 5227, 5235, 5221, 5265, 5292, 7724, 5822, 5249, 5225, 5235, 5264, 5249, 5227, 5265, 5292, 5292, 5228, 5266, 5232, 5267, 5270, 5228, 5229, 5602, 1792, 1798, 1798, 5227, 1798, 1798, 1798, 1798, 1798, 5228, 5229, 1798, 1798, 1798, 5233, 5249, 5382, 5602, 5264, 5302, 5229, 5289, 5602, 5382, 5228, 5229, 1798, 1798, 1798, 1798, 1798, 1798, 7729, 5264, 5233, 5251, 5265, 1798, 5264, 5251, 5266, 5265, 5267, 5270, 5270, 5266, 5233, 5267, 5270, 5266, 5249, 5267, 5268, 5272, 5233, 1798, 1798, 1798, 1798, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 5251, 5289, 1806, 1806, 1806, 5302, 1806, 5573, 5315, 5291, 5302, 5302, 5289, 5315, 5315, 5315, 5271, 1806, 1806, 1806, 1806, 1806, 1806, 5290, 5390, 5291, 5290, 5573, 1806, 7733, 5268, 5390, 5268, 5272, 5290, 5251, 5291, 5268, 5272, 5430, 5251, 5272, 5273, 5276, 5818, 5438, 1806, 1806, 1806, 1806, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 5396, 5293, 1807, 1807, 1807, 5271, 5231, 5396, 5430, 5818, 5271, 5293, 5293, 5296, 5438, 5750, 5437, 1807, 1807, 1807, 1807, 1807, 1807, 5296, 5296, 5271, 5231, 5437, 1807, 5323, 6269, 5273, 5276, 5750, 5323, 5274, 5273, 5276, 5231, 5274, 5323, 5277, 5278, 5279, 5231, 5282, 1807, 1807, 1807, 1807, 1809, 1809, 5231, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 5436, 5351, 5675, 5327, 6269, 5442, 5351, 5297, 5436, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 5442, 5274, 5297, 5297, 5675, 1809, 5274, 5277, 5278, 5279, 5277, 5282, 5277, 5278, 5279, 5280, 5282, 5351, 5277, 5278, 5327, 5441, 5675, 1809, 1809, 1809, 1809, 1810, 1810, 5441, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 5294, 5294, 5445, 5327, 5280, 1810, 5460, 5461, 5280, 5280, 5445, 5309, 5294, 5280, 5460, 7736, 5280, 5294, 5461, 5793, 5294, 5309, 5309, 1810, 1810, 1810, 1810, 1814, 1814, 5793, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 5408, 5462, 5295, 5318, 7745, 5408, 1817, 1817, 1817, 1817, 1817, 1817, 5295, 5295, 5313, 5320, 5318, 5295, 5318, 5313, 5322, 5588, 5322, 5320, 5313, 5320, 5320, 5318, 5462, 5418, 5418, 5322, 5408, 1817, 1817, 1817, 1817, 1817, 1817, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 5418, 5317, 5740, 5317, 5588, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 5317, 5319, 5317, 5324, 5319, 5740, 5804, 5317, 5326, 5326, 5740, 5465, 5319, 5324, 5324, 5804, 5328, 5275, 5319, 5465, 7747, 1819, 1819, 1819, 1819, 1819, 1819, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 5328, 5420, 5420, 5420, 5466, 5326, 1823, 1823, 1823, 1823, 1823, 1823, 5328, 5470, 5326, 5466, 5808, 5471, 5475, 5476, 5486, 5470, 5420, 5326, 5275, 5808, 5475, 5275, 5471, 8048, 5476, 5486, 5275, 1823, 1823, 1823, 1823, 1823, 1823, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 5275, 5457, 5457, 5457, 5457, 5457, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5332, 5457, 5332, 5467, 5482, 5472, 5488, 5336, 5336, 5339, 5339, 5752, 5482, 1825, 1825, 1825, 1825, 1825, 1825, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 5752, 5467, 5339, 5472, 5488, 5485, 1831, 1831, 1831, 1831, 1831, 1831, 5336, 5485, 5339, 5790, 6196, 5492, 5332, 5333, 5333, 5333, 5333, 5333, 5333, 5333, 5333, 5333, 5492, 5333, 5336, 6196, 5339, 1831, 1831, 1831, 1831, 1831, 1831, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 5479, 5497, 5790, 5479, 5336, 5491, 1835, 1835, 1835, 1835, 1835, 1835, 5497, 5491, 5337, 5337, 5372, 5372, 5372, 5372, 5372, 5372, 5372, 5372, 5372, 5493, 8049, 5337, 5337, 5337, 5479, 5654, 5654, 1835, 1835, 1835, 1835, 1835, 1835, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 5337, 5654, 5508, 5500, 5493, 5496, 5500, 1837, 1837, 1837, 1837, 1837, 1837, 5496, 5538, 5538, 5538, 6203, 5337, 5373, 5373, 5373, 5373, 5373, 5373, 5373, 5373, 5373, 5508, 5547, 5547, 5547, 6203, 5500, 1837, 1837, 1837, 1837, 1837, 1837, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 5556, 5556, 5556, 6435, 5589, 5621, 1845, 1845, 1845, 1845, 1845, 1845, 5374, 5374, 5374, 5374, 5374, 5374, 5374, 5374, 5374, 5385, 5385, 5385, 5385, 5385, 5385, 5385, 5385, 5385, 5589, 5611, 5621, 1845, 1845, 1845, 1845, 1845, 1845, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 5611, 8073, 6435, 5687, 5611, 5642, 1848, 1848, 1848, 1848, 1848, 1848, 5386, 5386, 5386, 5386, 5386, 5386, 5386, 5386, 5386, 5387, 5387, 5387, 5387, 5387, 5387, 5387, 5387, 5387, 5687, 5642, 5607, 1848, 1848, 1848, 1848, 1848, 1848, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 5566, 5600, 5607, 5574, 5580, 5503, 5511, 1856, 1856, 1856, 1856, 1856, 1856, 5503, 5511, 5524, 5643, 5619, 5321, 5600, 5566, 5321, 5524, 5574, 5580, 5607, 5321, 5566, 5619, 5600, 5574, 5580, 5321, 5710, 1856, 1856, 1856, 1856, 1856, 1856, 1857, 1857, 5321, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 5399, 5399, 5399, 5399, 5399, 5399, 5399, 5399, 5399, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 5592, 8074, 5710, 5592, 5601, 1857, 5325, 5325, 5325, 5325, 5325, 5325, 5325, 5325, 5325, 5988, 5643, 5643, 5592, 6427, 5988, 5625, 5601, 1857, 1857, 1857, 1857, 5325, 5601, 1857, 1858, 1858, 5625, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 5400, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 5674, 5741, 6427, 8135, 5688, 1858, 5401, 5401, 5401, 5401, 5401, 5401, 5401, 5401, 5401, 5688, 5741, 5760, 5674, 7154, 7154, 5741, 5674, 1858, 1858, 1858, 1858, 5413, 5413, 5413, 5413, 5413, 5413, 5413, 5413, 5413, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 5539, 1858, 1873, 1873, 5645, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 5760, 1873, 1873, 5548, 5548, 5548, 5548, 5548, 5548, 5548, 5548, 5548, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 5660, 5874, 5645, 5645, 5874, 1873, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 5414, 5742, 5742, 5660, 5780, 5599, 5414, 5742, 1873, 1873, 1873, 1874, 1874, 5660, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 5599, 1874, 1874, 5557, 5557, 5557, 5557, 5557, 5557, 5557, 5557, 5557, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 5595, 5608, 5599, 5780, 5415, 1874, 5415, 5415, 5415, 5415, 5415, 5415, 5617, 5933, 8182, 5415, 5933, 5833, 5624, 5608, 5617, 5415, 5595, 1874, 1874, 1874, 5624, 8190, 5606, 5419, 5419, 5419, 5419, 5419, 5419, 5419, 5419, 5419, 5608, 5833, 5595, 5597, 1874, 5598, 5598, 5565, 5606, 1874, 1881, 1881, 5419, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 5628, 1881, 1881, 5597, 5598, 5593, 5593, 5565, 5628, 5791, 5609, 5606, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 5565, 5568, 5597, 5598, 5603, 1881, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 5421, 5609, 5610, 1881, 5565, 5661, 5593, 5568, 5603, 1881, 1881, 1881, 5593, 5421, 5568, 7378, 5791, 1881, 5686, 5609, 5610, 5834, 5568, 5661, 5593, 5603, 5686, 5824, 8196, 5661, 5834, 1881, 1882, 1882, 5655, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 5610, 1882, 1882, 5576, 5576, 5576, 5576, 5576, 5576, 5576, 5576, 5576, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 5671, 5824, 5800, 5655, 5738, 1882, 5577, 5577, 5577, 5577, 5577, 5577, 5577, 5577, 5577, 5738, 5422, 1882, 5671, 7378, 5738, 5655, 5800, 1882, 1882, 1882, 5671, 5422, 5422, 5422, 5422, 5422, 5422, 5422, 5422, 5422, 5578, 5578, 5578, 5578, 5578, 5578, 5578, 5578, 5578, 1882, 1883, 1883, 5422, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 6250, 1883, 1883, 5422, 5604, 5663, 5795, 5646, 5640, 5646, 6130, 5691, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 5691, 8200, 6130, 5604, 5663, 1883, 6250, 5640, 5423, 5423, 5423, 5423, 5423, 5423, 5423, 5423, 5423, 5795, 5604, 5640, 5604, 5663, 5646, 1883, 1883, 1883, 1883, 1884, 1884, 5423, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1888, 1888, 5832, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 5639, 1888, 1888, 5650, 5667, 5650, 5704, 5648, 5698, 5648, 6141, 5842, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 5832, 5842, 6141, 5667, 8204, 1888, 5424, 5424, 5424, 5424, 5424, 5424, 5424, 5424, 5424, 5639, 5698, 5648, 5650, 5704, 5777, 5639, 5648, 1888, 1888, 1888, 5667, 5424, 5662, 5659, 1888, 1891, 1891, 5639, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 5662, 5659, 5664, 6213, 5787, 5662, 5777, 5873, 5845, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 5679, 5845, 6213, 8208, 5664, 1891, 5659, 8213, 5456, 5456, 5456, 5456, 5456, 5456, 5456, 5456, 5456, 5873, 5679, 5664, 5787, 5664, 5679, 1891, 1891, 1891, 1891, 1892, 1892, 5456, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1893, 5559, 5559, 5559, 5559, 5559, 5559, 5559, 5559, 5559, 5775, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 5705, 5581, 5559, 5561, 5561, 5561, 5561, 5561, 5561, 5561, 5561, 5561, 5581, 5581, 5581, 5581, 5581, 5581, 5581, 5581, 5581, 5581, 5775, 5883, 5561, 8214, 5889, 5705, 5581, 5786, 5775, 5883, 5705, 5889, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 5672, 5786, 5792, 5649, 5816, 5672, 1901, 1901, 1901, 1901, 1901, 1901, 5451, 5451, 5451, 5451, 5451, 5451, 5451, 5451, 5451, 5649, 5680, 5672, 5789, 5649, 5669, 6399, 5451, 5792, 5649, 5672, 5816, 1901, 1901, 1901, 1901, 1901, 1901, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 5666, 5669, 5605, 5665, 5451, 5680, 1903, 1903, 1903, 1903, 1903, 1903, 5656, 5656, 5656, 5761, 5789, 6399, 5666, 5669, 5605, 5665, 5719, 5680, 5487, 5487, 5487, 5487, 5487, 5487, 5487, 5487, 5487, 1903, 1903, 1903, 1903, 1903, 1903, 1906, 5487, 5605, 5665, 5666, 5719, 5668, 5656, 5761, 5605, 5665, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 5788, 5582, 5719, 5668, 5656, 5487, 1906, 1906, 1906, 1906, 1906, 1906, 5582, 5582, 5582, 5582, 5582, 5582, 5582, 5582, 5582, 5582, 5668, 5895, 5761, 5797, 8265, 5797, 5582, 5761, 5895, 5673, 5788, 1906, 1906, 1906, 1906, 1906, 1906, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 5673, 5583, 5827, 5797, 5673, 5676, 1912, 1912, 1912, 1912, 1912, 1912, 5583, 5583, 5583, 5583, 5583, 5583, 5583, 5583, 5583, 5583, 5681, 5676, 5673, 5956, 5827, 5941, 5583, 5676, 5941, 5702, 5796, 1912, 1912, 1912, 1912, 1912, 1912, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 5702, 5950, 5956, 5677, 5702, 5681, 1915, 1915, 1915, 1915, 1915, 1915, 5634, 5634, 5634, 5634, 5634, 5634, 5634, 5634, 5634, 5677, 5765, 5681, 5796, 5950, 5819, 6120, 5634, 5677, 5707, 5670, 5739, 1915, 1915, 1915, 1915, 1915, 1915, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 5670, 5849, 6120, 5729, 5634, 5765, 1923, 1923, 1923, 1923, 1923, 1923, 5819, 5743, 5739, 5707, 8281, 5751, 5701, 5670, 5701, 5729, 5849, 5707, 5670, 5739, 5743, 5765, 5872, 5729, 5739, 5743, 5823, 1923, 1923, 1923, 1923, 1923, 1923, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 5849, 5872, 5751, 5701, 5759, 5751, 1926, 1926, 1926, 1926, 1926, 1926, 5685, 5685, 5685, 5685, 5685, 5685, 5685, 5685, 5751, 5701, 5759, 5798, 5823, 5798, 5900, 5714, 5714, 6470, 5759, 5754, 5685, 1926, 1926, 1926, 1926, 1926, 1926, 1934, 1934, 1934, 1934, 1934, 1934, 1934, 1934, 1934, 5712, 8282, 5685, 5811, 5798, 5811, 5712, 1934, 1934, 1934, 1934, 1934, 1934, 5714, 5811, 5754, 5714, 6470, 5712, 5900, 5596, 5596, 5596, 5596, 5596, 5596, 5596, 5596, 5596, 5596, 5762, 5714, 5748, 5754, 1934, 1934, 1934, 1934, 1934, 1934, 1935, 1935, 5596, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 5757, 1935, 1935, 5723, 6038, 5757, 5799, 5748, 5596, 5723, 5762, 5748, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 5757, 5851, 5723, 5748, 5806, 1935, 1935, 5860, 5748, 5863, 5851, 8295, 5843, 5806, 5917, 6038, 5860, 5762, 5863, 5799, 5806, 5843, 5917, 1935, 1935, 1935, 1936, 1936, 5843, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1947, 1947, 1947, 1947, 1947, 1947, 1947, 1947, 1947, 1947, 5766, 8313, 5828, 5828, 5813, 5923, 1947, 1947, 1947, 1947, 1947, 1947, 5923, 5813, 8323, 5730, 5959, 5929, 5767, 5768, 5773, 5801, 5828, 5821, 5929, 5959, 5952, 5783, 5813, 5783, 5773, 5776, 5766, 1947, 1947, 1947, 1947, 1947, 1947, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 5730, 5764, 5767, 5768, 5773, 5801, 5730, 1949, 1949, 1949, 1949, 1949, 1949, 5783, 5821, 5776, 5948, 6100, 5730, 5952, 5766, 5821, 6052, 6100, 5957, 5763, 5767, 5957, 5948, 5768, 6052, 5783, 5899, 5764, 1949, 1949, 1949, 1949, 1949, 1949, 1957, 5770, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 5763, 5770, 5770, 5764, 5776, 5763, 1957, 1957, 1957, 1957, 1957, 1957, 5948, 5899, 6121, 5753, 5784, 5772, 5784, 5785, 5753, 5770, 5960, 5764, 5961, 5960, 6121, 5961, 5772, 5772, 5772, 5763, 5820, 1957, 1957, 1957, 1957, 1957, 1957, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 1962, 5753, 5772, 5784, 5879, 5976, 5785, 5753, 1962, 1962, 1962, 1962, 1962, 1962, 6079, 6079, 6079, 5879, 5820, 5753, 5820, 5784, 5879, 5810, 5785, 5810, 5810, 5810, 5810, 5810, 5810, 5584, 5785, 5875, 5810, 1962, 1962, 1962, 1962, 1962, 1962, 1968, 5584, 5584, 5584, 5584, 5584, 5584, 5584, 5584, 5584, 5875, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 8324, 5976, 5584, 6146, 6485, 5875, 5976, 1968, 1968, 1968, 1968, 1968, 1968, 6485, 6146, 5584, 5807, 5774, 5807, 5807, 5807, 5807, 5807, 5807, 5807, 5807, 5807, 5807, 5774, 5774, 5966, 5830, 5830, 5830, 1968, 1968, 1968, 1968, 1968, 1968, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 5774, 1971, 5594, 5830, 5847, 5594, 5942, 5594, 5848, 5942, 5912, 5594, 1971, 5847, 5594, 5594, 5594, 5848, 5853, 5594, 5847, 5942, 5966, 5912, 8329, 5594, 5718, 5853, 5861, 5718, 1971, 5718, 5848, 6168, 5853, 5718, 6168, 5861, 5718, 5718, 5718, 5876, 5975, 5718, 5861, 5912, 1971, 1974, 1974, 5718, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 5876, 1974, 1974, 5838, 5838, 5838, 5838, 5838, 5838, 5838, 5838, 5838, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 5878, 5854, 6224, 5983, 5876, 1974, 5975, 5618, 5618, 5618, 5618, 5618, 5618, 5618, 5618, 5618, 5983, 6224, 5878, 6397, 8330, 5983, 5854, 1974, 1974, 1974, 1975, 1975, 5618, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 5902, 1975, 1975, 5878, 5901, 6235, 5935, 5955, 5618, 6005, 5618, 5854, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 6235, 6397, 5911, 6041, 1975, 5657, 5657, 5657, 5657, 5657, 5657, 5657, 5657, 5657, 5657, 5902, 5902, 5901, 5935, 5901, 5955, 5902, 1975, 1975, 1975, 1977, 1977, 5657, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 5911, 1977, 1977, 6279, 6005, 5951, 5911, 5958, 5657, 5964, 6044, 5855, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 6041, 5855, 6279, 5985, 6730, 1977, 5658, 5658, 5658, 5658, 5658, 5658, 5658, 5658, 5658, 5658, 5855, 5903, 5951, 6730, 6279, 5958, 5964, 1977, 1977, 1977, 1978, 1978, 5658, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 5857, 1978, 1978, 6017, 5987, 5987, 6044, 6036, 5658, 5857, 5987, 5903, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 5620, 5857, 5985, 5964, 1978, 6472, 8362, 5985, 6088, 6088, 6088, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 5620, 6036, 5936, 1978, 1978, 1978, 1982, 5903, 5866, 5857, 6472, 6017, 6017, 5620, 6049, 5905, 6017, 5866, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 5867, 5980, 6388, 6036, 5620, 5866, 5980, 6065, 5936, 5867, 5865, 5980, 1982, 5936, 6065, 5905, 5867, 6049, 6126, 5865, 5905, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 5678, 1982, 5865, 1982, 6388, 1982, 1982, 1982, 1982, 1982, 1982, 1987, 1987, 5678, 1987, 1987, 1987, 1987, 1987, 6126, 5981, 1987, 1987, 1987, 6342, 5981, 5905, 6342, 6428, 5865, 5981, 5678, 5984, 6097, 6097, 6097, 1987, 1987, 1987, 1987, 1987, 1987, 6342, 5984, 6260, 6260, 6260, 1987, 5984, 5809, 1987, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 5809, 6428, 6440, 6432, 6117, 1987, 1987, 1987, 1987, 1989, 1989, 6117, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 5940, 1989, 1989, 5839, 5839, 5839, 5839, 5839, 5839, 5839, 5839, 5839, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 6122, 6122, 6122, 6432, 6440, 1989, 5940, 5940, 5826, 5826, 5826, 5826, 5826, 5826, 5826, 5826, 5826, 7225, 8367, 5940, 7225, 6122, 6117, 1989, 1989, 1989, 1989, 1990, 1990, 5826, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1992, 1992, 6004, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 6449, 1992, 1992, 5840, 5840, 5840, 5840, 5840, 5840, 5840, 5840, 5840, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 6099, 7900, 6004, 6737, 7900, 1992, 6099, 6099, 1992, 5891, 5891, 5891, 5891, 5891, 5891, 5891, 5891, 5891, 6737, 6004, 6449, 6129, 6004, 1992, 1992, 1992, 1992, 1993, 1993, 6129, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1994, 1994, 6028, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 6396, 1994, 1994, 5892, 5892, 5892, 5892, 5892, 5892, 5892, 5892, 5892, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 6028, 6028, 6942, 7899, 1994, 7899, 6396, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 5713, 6123, 5713, 6028, 5939, 6131, 6028, 1994, 1994, 1994, 1994, 1995, 1995, 5713, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 5937, 1995, 1995, 5937, 6037, 6037, 5939, 6186, 5713, 6131, 6123, 5939, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 5939, 6106, 6942, 7690, 6123, 1995, 5937, 6106, 5829, 5829, 5829, 5829, 5829, 5829, 5829, 5829, 5829, 6699, 6037, 5937, 6186, 7690, 6699, 1995, 1995, 1995, 1995, 1996, 1996, 5829, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1997, 1997, 6033, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 5893, 5893, 5893, 5893, 5893, 5893, 5893, 5893, 5893, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 8490, 8535, 6033, 8540, 8127, 1997, 6151, 5720, 5720, 5720, 5720, 5720, 5720, 5720, 5720, 5720, 5720, 6151, 6142, 6033, 6033, 6147, 6033, 1997, 1997, 1997, 1997, 1998, 1998, 5720, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 5977, 6443, 5947, 6142, 5977, 5720, 6147, 6169, 6010, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 6487, 8550, 6169, 8127, 1998, 5947, 5721, 5721, 5721, 5721, 5721, 5721, 5721, 5721, 5721, 5721, 5977, 5947, 6174, 6443, 6906, 5977, 1998, 1998, 1998, 1998, 1999, 1999, 5721, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 6010, 1999, 1999, 6487, 6010, 6010, 6328, 6174, 5721, 6010, 6173, 6010, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 6906, 6419, 6173, 6747, 6248, 1999, 5896, 5896, 5896, 5896, 5896, 5896, 5896, 5896, 5896, 5896, 6248, 6328, 6747, 6419, 6134, 6419, 5896, 1999, 1999, 1999, 2001, 2001, 6134, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2005, 2005, 6332, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 6034, 6262, 6262, 6262, 6262, 6262, 6262, 5856, 6034, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 5856, 5864, 8145, 6332, 6482, 2005, 5989, 5856, 5877, 5877, 5864, 2005, 5856, 5989, 6101, 6034, 5982, 5864, 5989, 6301, 6101, 6101, 5864, 2005, 2005, 2005, 2005, 2006, 2006, 6101, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 5856, 2006, 2006, 5877, 6482, 6330, 8145, 6301, 6298, 6306, 5864, 5877, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 6298, 6306, 5877, 5982, 6330, 2006, 5722, 5722, 5722, 5722, 5722, 5722, 5722, 5722, 5722, 5722, 5982, 6307, 6336, 6330, 6175, 5982, 5982, 2006, 2006, 2006, 2008, 2008, 5722, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 5962, 2008, 2008, 6107, 6175, 6251, 6307, 6336, 5722, 6107, 6107, 6251, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 5868, 5869, 7932, 6175, 6137, 2008, 5904, 5914, 2008, 5868, 5869, 5906, 6137, 5962, 6008, 6450, 5868, 6371, 7932, 5962, 6145, 5868, 5869, 2008, 2008, 2008, 2011, 2011, 6145, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 5904, 2011, 2011, 5914, 6340, 5906, 6371, 6450, 6008, 6311, 5868, 5869, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 6113, 6311, 5914, 6150, 6008, 2011, 6113, 6113, 5904, 6008, 6000, 6150, 5914, 2011, 6264, 6431, 5904, 6340, 6520, 5914, 5914, 5906, 5906, 2011, 2011, 2011, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 6000, 6278, 6431, 5880, 6520, 6264, 6000, 6758, 6154, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 6154, 6000, 6264, 6278, 6000, 2015, 6758, 6278, 6479, 5880, 5910, 5910, 5925, 5925, 5925, 5925, 5925, 5925, 5925, 5925, 5925, 5880, 6570, 2015, 2015, 2015, 2015, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 5880, 2017, 2017, 6195, 6479, 5910, 6570, 6447, 5943, 6300, 6195, 5943, 2017, 2017, 2017, 2017, 2017, 2017, 2017, 6447, 5943, 6300, 8554, 5910, 2017, 5897, 5897, 5897, 5897, 5897, 5897, 5897, 5897, 5897, 5897, 5943, 6263, 6263, 6263, 6300, 5910, 5897, 2017, 2017, 2017, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 6263, 2018, 2018, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 5926, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 2018, 6525, 6525, 6525, 6527, 2018, 5898, 5898, 5898, 5898, 5898, 5898, 5898, 5898, 5898, 5898, 6527, 8557, 6161, 6586, 6586, 6586, 5898, 2018, 2018, 2018, 6161, 2018, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2019, 2026, 2026, 6589, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 5927, 5927, 5927, 5927, 5927, 5927, 5927, 5927, 5927, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 6202, 6589, 7187, 6181, 6769, 2026, 8566, 6202, 5727, 5727, 5727, 5727, 5727, 5727, 5727, 5727, 5727, 6007, 5727, 6769, 6181, 7187, 6178, 2026, 2026, 2026, 2026, 2028, 2028, 5727, 2028, 2028, 2028, 2028, 2028, 2028, 2028, 2028, 2028, 5907, 2028, 2028, 5938, 6181, 6178, 5938, 6401, 5727, 6007, 6013, 6178, 2028, 2028, 2028, 2028, 2028, 2028, 2028, 6007, 5907, 6356, 6164, 6178, 2028, 6172, 6007, 6212, 5938, 6007, 6164, 5965, 5907, 6172, 6212, 5907, 6401, 8571, 7217, 6356, 6223, 5938, 2028, 2028, 2028, 2029, 2029, 6223, 2029, 2029, 2029, 2029, 2029, 2029, 2029, 2029, 2029, 6013, 2029, 2029, 5965, 6018, 6013, 5965, 6356, 5945, 6013, 5907, 6528, 2029, 2029, 2029, 2029, 2029, 2029, 2029, 2029, 5706, 6291, 6001, 6528, 2029, 6429, 7217, 6360, 5945, 6291, 6001, 5706, 5706, 5706, 5706, 5706, 5706, 5706, 5706, 5706, 5945, 5965, 2029, 2029, 2029, 6360, 2029, 2030, 6234, 5945, 6272, 6018, 5706, 6001, 6429, 6234, 6018, 6633, 6272, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 6272, 6360, 6001, 6018, 8575, 6001, 8578, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 2030, 6633, 2030, 6014, 2030, 2030, 2030, 2030, 2030, 2030, 2032, 2032, 5769, 2032, 2032, 2032, 2032, 2032, 5909, 5909, 2032, 2032, 2032, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 5769, 8692, 6280, 6294, 2032, 2032, 2032, 2032, 2032, 2032, 2032, 6294, 5986, 5769, 6369, 2032, 8692, 5986, 7384, 6014, 6280, 5909, 5986, 6305, 6014, 6369, 6280, 5986, 6014, 5909, 6177, 6305, 6286, 2032, 2032, 2032, 2032, 2033, 2033, 5909, 2033, 2033, 2033, 2033, 2033, 2033, 2033, 2033, 2033, 2033, 2033, 2033, 6177, 6393, 6286, 6177, 5909, 6478, 6375, 6617, 6310, 2033, 2033, 2033, 2033, 2033, 2033, 2033, 6310, 6375, 6177, 6275, 6286, 2033, 5930, 5930, 5930, 5930, 5930, 5930, 5930, 5930, 5930, 5930, 7384, 6393, 6478, 6617, 6393, 6275, 5930, 2033, 2033, 2033, 2033, 2034, 2034, 6275, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2034, 2035, 2035, 5944, 2035, 2035, 2035, 2035, 2035, 2035, 2035, 2035, 2035, 5908, 2035, 2035, 6276, 6488, 6281, 6648, 5991, 6276, 5946, 5944, 6400, 2035, 2035, 2035, 2035, 2035, 2035, 2035, 2035, 5908, 8696, 5944, 6281, 2035, 5944, 6276, 6287, 6287, 5946, 6314, 6281, 5908, 6488, 6276, 6648, 5944, 6400, 6314, 6345, 6433, 5946, 2035, 2035, 2035, 2035, 2036, 2036, 6287, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 5991, 2036, 2036, 6345, 5908, 5991, 5991, 6451, 6287, 5908, 6519, 5991, 2036, 2036, 2036, 2036, 2036, 2036, 2036, 5946, 6433, 6345, 6433, 6530, 2036, 5931, 5931, 5931, 5931, 5931, 5931, 5931, 5931, 5931, 5931, 6530, 6519, 8900, 6530, 6451, 6321, 5931, 2036, 2036, 2036, 2036, 2037, 2037, 6321, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 6080, 6080, 6080, 6080, 6080, 6080, 6080, 6080, 6080, 2037, 2037, 2037, 2037, 2037, 2037, 2037, 6910, 6451, 6611, 6611, 6611, 2037, 5932, 5932, 5932, 5932, 5932, 5932, 5932, 5932, 5932, 5932, 6785, 6785, 6785, 8960, 6910, 6324, 5932, 2037, 2037, 2037, 2037, 2038, 2038, 6324, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2041, 2041, 6481, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 6089, 2041, 2041, 2041, 2041, 2041, 2041, 2041, 6361, 6687, 6687, 8967, 8968, 2041, 6687, 6481, 2041, 5972, 5972, 5972, 5972, 5972, 5972, 5972, 5972, 5972, 6361, 6788, 6615, 6020, 6361, 2041, 2041, 2041, 2041, 2042, 2042, 6006, 2042, 2042, 2042, 2042, 2042, 2042, 2042, 2042, 2042, 2042, 2042, 2042, 5969, 5969, 5969, 5969, 5969, 5969, 5969, 5969, 5969, 2042, 2042, 2042, 2042, 2042, 2042, 2042, 6788, 6367, 6006, 6484, 6012, 2042, 6615, 6006, 5969, 6367, 6020, 5972, 6006, 6009, 6012, 6020, 9030, 6019, 5972, 6006, 6474, 6023, 6006, 2042, 2042, 2042, 2042, 2043, 2043, 6474, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 6484, 2043, 2043, 5973, 5973, 5973, 5973, 5973, 5973, 5973, 5973, 5973, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 2043, 6374, 6009, 6012, 5978, 2043, 6019, 6009, 6012, 6374, 6023, 6019, 5978, 6015, 6019, 6023, 6474, 5978, 6009, 6881, 6881, 6881, 5978, 2043, 2043, 2043, 2044, 2044, 5978, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 5973, 5973, 6288, 6021, 6025, 6026, 6029, 6021, 6349, 2044, 2044, 2044, 2044, 2044, 2044, 2044, 5771, 6015, 6729, 6015, 6288, 2044, 9031, 6492, 6015, 6729, 6349, 5771, 5771, 5771, 5771, 5771, 5771, 5771, 5771, 5771, 5979, 6378, 6430, 2044, 2044, 2044, 2044, 6288, 5979, 6378, 6430, 6349, 5771, 5979, 6021, 6025, 6026, 6029, 5979, 6021, 6025, 6026, 6029, 6492, 5979, 6486, 6025, 2044, 2045, 2045, 6179, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 6179, 2045, 2045, 5996, 5996, 5996, 5996, 5996, 5996, 5996, 5996, 5996, 2045, 2045, 2045, 2045, 2045, 2045, 2045, 6480, 8824, 9080, 6179, 8824, 2045, 6347, 6252, 2045, 6252, 5992, 5992, 5992, 5992, 5992, 5992, 5992, 5992, 5992, 6486, 6483, 6179, 6480, 2045, 2045, 2045, 2048, 2048, 6347, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 6252, 5996, 6353, 6483, 6350, 6347, 6392, 6701, 6498, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 5992, 6498, 6252, 6701, 6353, 2048, 6350, 5974, 5974, 5974, 5974, 5974, 5974, 5974, 5974, 5974, 6350, 6863, 6022, 6024, 6713, 6353, 6392, 2048, 2048, 2048, 2048, 2050, 2050, 6390, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 5913, 6358, 6471, 6863, 6713, 6390, 6632, 6392, 5974, 2050, 2050, 2050, 2050, 2050, 2050, 2050, 5974, 6390, 6518, 6358, 6022, 2050, 5913, 6022, 6024, 6283, 6283, 6024, 6022, 6024, 6471, 6176, 5974, 6354, 5913, 6024, 6471, 6501, 6358, 2050, 2050, 2050, 2050, 2055, 6022, 6283, 6501, 6632, 6176, 6352, 6518, 6354, 5913, 6176, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 6283, 2055, 5934, 6354, 6352, 6354, 5913, 9081, 6176, 6352, 6035, 6035, 2055, 5934, 5934, 5934, 5934, 5934, 5934, 5934, 5934, 5934, 5995, 9086, 5995, 5995, 5995, 5995, 5995, 5995, 5995, 5995, 5995, 6639, 5934, 5994, 5994, 5994, 5994, 5994, 5994, 5994, 5994, 5994, 6035, 6035, 2055, 2056, 2056, 6031, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 6508, 2056, 2056, 6035, 6351, 6045, 6045, 6639, 6407, 6508, 6590, 5995, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 6357, 9158, 6031, 6351, 6529, 2056, 5994, 6407, 6031, 6351, 6458, 6529, 6027, 5994, 6011, 6407, 6529, 6634, 6357, 6031, 6045, 6590, 6031, 2056, 2056, 2056, 2057, 2057, 6274, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 6045, 2057, 2057, 6357, 6458, 6048, 6048, 6048, 6274, 6634, 6686, 6045, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 6011, 6027, 6011, 6011, 2057, 6027, 6027, 6274, 6011, 6572, 6027, 6011, 6274, 6027, 6030, 6032, 6359, 6572, 6011, 6048, 6348, 6348, 2057, 2057, 2057, 2061, 2061, 6458, 2061, 2061, 2061, 2061, 2061, 2061, 2061, 2061, 2061, 6048, 2061, 2061, 6359, 6348, 6277, 6686, 9305, 6030, 6032, 6637, 6686, 2061, 2061, 2061, 2061, 2061, 2061, 2061, 6030, 6032, 6359, 6348, 6277, 2061, 6030, 6032, 6277, 6030, 6032, 2061, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6042, 6637, 6042, 2061, 2061, 2061, 2062, 2062, 6277, 2062, 2062, 2062, 2062, 2062, 2062, 2062, 2062, 2062, 6512, 2062, 2062, 6098, 6098, 6098, 6098, 6098, 6098, 6098, 6098, 6098, 2062, 2062, 2062, 2062, 2062, 2062, 2062, 6532, 6513, 6513, 6512, 6641, 2062, 6591, 6640, 6795, 6532, 6042, 6043, 6043, 6043, 6043, 6043, 6043, 6043, 6043, 6043, 6795, 6043, 6513, 2062, 2062, 2062, 6109, 6109, 6109, 6109, 6109, 6109, 6109, 6109, 6109, 6641, 6591, 6640, 2062, 2069, 2069, 6591, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2069, 2071, 2071, 6434, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 6461, 6459, 6642, 6047, 6047, 9385, 7023, 6803, 6461, 2071, 2071, 2071, 2071, 2071, 2071, 2071, 6047, 6047, 6047, 6047, 6047, 2071, 6110, 6110, 6110, 6110, 6110, 6110, 6110, 6110, 6110, 6434, 6461, 6459, 6803, 6642, 7023, 6047, 6434, 2071, 2071, 2071, 2071, 2075, 2075, 6452, 2075, 2075, 2075, 2075, 2075, 2075, 2075, 2075, 2075, 6047, 2075, 2075, 6111, 6111, 6111, 6111, 6111, 6111, 6111, 6111, 6111, 2075, 2075, 2075, 2075, 2075, 2075, 2075, 6459, 6413, 6460, 6452, 6517, 2075, 6114, 6114, 6114, 6114, 6114, 6114, 6114, 6114, 6114, 6114, 6887, 6887, 6887, 6413, 6402, 6114, 6114, 2075, 2075, 2075, 2075, 6413, 6517, 6402, 6940, 6452, 6635, 9468, 6460, 2075, 2076, 2076, 6402, 2076, 2076, 2076, 2076, 2076, 2076, 2076, 2076, 2076, 2076, 2076, 2076, 6208, 6208, 6208, 6208, 6208, 6208, 6208, 6208, 6208, 2076, 2076, 2076, 2076, 2076, 2076, 2076, 6355, 6635, 6411, 6940, 6460, 2076, 6115, 6115, 6115, 6115, 6115, 6115, 6115, 6115, 6115, 6115, 6571, 9502, 6355, 6410, 6411, 6115, 6115, 2076, 2076, 2076, 2076, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6116, 6410, 6411, 6355, 6571, 6410, 6116, 6116, 6638, 2076, 6355, 2076, 2080, 2080, 6592, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 9577, 2080, 2080, 6209, 6209, 6209, 6209, 6209, 6209, 6209, 6209, 6209, 2080, 2080, 2080, 2080, 2080, 2080, 2080, 6638, 6592, 6893, 6893, 6893, 2080, 6592, 6119, 6119, 6119, 6119, 6119, 6119, 6119, 6119, 6119, 7098, 6245, 6245, 6245, 6245, 6245, 6245, 2080, 2080, 2080, 2088, 2088, 6119, 2088, 2088, 2088, 2088, 2088, 2088, 2088, 2088, 2088, 6245, 2088, 2088, 6210, 6210, 6210, 6210, 6210, 6210, 6210, 6210, 6210, 2088, 2088, 2088, 2088, 2088, 2088, 2088, 7098, 6467, 6445, 9585, 6412, 2088, 6124, 6124, 6124, 6124, 6124, 6124, 6124, 6124, 6124, 6899, 6899, 6899, 7363, 9595, 6445, 6467, 6412, 2088, 2088, 2088, 2088, 6124, 6412, 6445, 2088, 2093, 2093, 6467, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 6416, 2093, 2093, 6218, 6218, 6218, 6218, 6218, 6218, 6218, 6218, 6218, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 6535, 6537, 7347, 6416, 9606, 2093, 6454, 7347, 7363, 6535, 6537, 2093, 6219, 6219, 6219, 6219, 6219, 6219, 6219, 6219, 6219, 6416, 6601, 2093, 2093, 2093, 2097, 2097, 6601, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 6454, 2097, 2097, 6220, 6220, 6220, 6220, 6220, 6220, 6220, 6220, 6220, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 6601, 6406, 8697, 6421, 6454, 2097, 6160, 6160, 6160, 6160, 6160, 6160, 6160, 6160, 6160, 6273, 6273, 8697, 9771, 6406, 6506, 6421, 6160, 2097, 2097, 2097, 2098, 2098, 6421, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 6406, 2098, 2098, 6506, 6409, 6406, 6285, 6285, 6285, 6160, 6543, 6273, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 6543, 6273, 6125, 6409, 6600, 2098, 6720, 6409, 6285, 6453, 6273, 6506, 6643, 6125, 6125, 6125, 6125, 6125, 6125, 6125, 6125, 6125, 6577, 2098, 2098, 2098, 6285, 6409, 6577, 6600, 6720, 2098, 2105, 2105, 6125, 2105, 2105, 2105, 2105, 2105, 6577, 6453, 2105, 2105, 2105, 6643, 6629, 6125, 6229, 6229, 6229, 6229, 6229, 6229, 6229, 6229, 6229, 2105, 2105, 2105, 2105, 2105, 2105, 8532, 6600, 6453, 6629, 6464, 2105, 6230, 6230, 6230, 6230, 6230, 6230, 6230, 6230, 6230, 6629, 6464, 6464, 8532, 9776, 7177, 7846, 7027, 2105, 2105, 2105, 2105, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 2112, 6464, 2112, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 6231, 6466, 2112, 6240, 6240, 6240, 6240, 6240, 6240, 6240, 6240, 6240, 6466, 6466, 6466, 7027, 7177, 7846, 8131, 6907, 2112, 6241, 6241, 6241, 6241, 6241, 6241, 6241, 6241, 6241, 6499, 6907, 8949, 6466, 6343, 6343, 2112, 2118, 2118, 6499, 2118, 2118, 2118, 2118, 2118, 6576, 6499, 2118, 2118, 2118, 6242, 6242, 6242, 6242, 6242, 6242, 6242, 6242, 6242, 6554, 6504, 2118, 2118, 2118, 2118, 2118, 2118, 2118, 6343, 6504, 6576, 6554, 6646, 2118, 6343, 6614, 6246, 6246, 6246, 6246, 6246, 6246, 6562, 6614, 6504, 6246, 6343, 8131, 6576, 6554, 8949, 2118, 2118, 2118, 2118, 2119, 2119, 6246, 2119, 2119, 2119, 2119, 2119, 6562, 6646, 2119, 2119, 2119, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6249, 6546, 6540, 2119, 2119, 2119, 2119, 2119, 2119, 2119, 6546, 6540, 7102, 7040, 6562, 2119, 6261, 6261, 6261, 6261, 6261, 6261, 6261, 6261, 6261, 6490, 6540, 7192, 7192, 7192, 6490, 7040, 9801, 2119, 2119, 2119, 2119, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 6708, 6505, 7040, 6505, 7102, 6490, 2122, 2122, 2122, 2122, 2122, 2122, 6505, 6270, 6270, 6270, 6270, 6270, 6270, 6270, 6270, 6270, 6271, 6271, 6271, 6271, 6271, 6271, 6271, 6271, 6271, 6329, 6708, 2122, 2122, 2122, 2122, 2122, 2122, 2124, 6282, 6282, 6282, 6282, 6282, 6282, 6282, 6282, 6282, 6455, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 6270, 6282, 6618, 6549, 6559, 6329, 2124, 2124, 2124, 2124, 2124, 2124, 6549, 6559, 6329, 6736, 6338, 6623, 6338, 6282, 6463, 6455, 6736, 6329, 6271, 6623, 7166, 6549, 6463, 6389, 6404, 6404, 6618, 2124, 2124, 2124, 2124, 2124, 2124, 2132, 6618, 2132, 2132, 2132, 2132, 2132, 2132, 2132, 2132, 2132, 6338, 6456, 6463, 6338, 7166, 6802, 6455, 2132, 2132, 2132, 2132, 2132, 2132, 6389, 6404, 6578, 6802, 6578, 9806, 6389, 6404, 6495, 6495, 6495, 6495, 6495, 6495, 6495, 6495, 6495, 6444, 6389, 6404, 6456, 2132, 2132, 2132, 2132, 2132, 2132, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 6578, 2145, 6284, 6284, 6284, 6284, 6284, 6284, 6284, 6284, 6284, 6408, 2145, 6746, 7099, 6444, 6408, 6456, 6578, 6456, 6746, 6444, 6423, 6284, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6299, 6444, 6408, 6457, 6757, 6821, 6468, 8953, 7099, 6284, 6408, 6757, 6622, 6299, 2145, 2145, 2153, 2153, 6423, 2153, 2153, 2153, 2153, 2153, 6423, 6563, 2153, 2153, 2153, 6826, 6831, 6299, 6821, 6299, 6563, 6457, 6423, 6622, 6468, 6503, 2153, 2153, 2153, 2153, 2153, 2153, 2153, 6302, 6503, 6563, 6622, 6622, 2153, 7089, 6593, 6503, 6826, 6831, 6302, 6302, 6302, 6302, 6302, 6302, 6302, 6302, 6302, 6468, 6534, 6541, 2153, 2153, 2153, 2153, 6457, 6768, 8953, 6534, 6541, 6302, 6656, 6457, 6768, 7089, 6534, 6541, 6593, 2153, 2154, 2154, 6656, 2154, 2154, 2154, 2154, 2154, 6712, 6302, 2154, 2154, 2154, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6346, 6544, 2154, 2154, 2154, 2154, 2154, 2154, 2154, 9816, 6544, 6593, 6593, 6346, 2154, 7157, 6712, 6544, 6931, 6712, 6320, 6320, 6320, 6320, 6320, 6320, 6320, 6320, 6320, 6798, 6931, 6346, 2154, 2154, 2154, 2154, 6320, 7157, 6621, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6368, 6475, 2154, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 2157, 6368, 6320, 6798, 6621, 6621, 6550, 2157, 2157, 2157, 2157, 2157, 2157, 6370, 7026, 6550, 6595, 6621, 7167, 6368, 6980, 6368, 6550, 6475, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6370, 6469, 2157, 2157, 2157, 2157, 2157, 2157, 2159, 6475, 7167, 6698, 6698, 6370, 7026, 6980, 6595, 6698, 6475, 2159, 2159, 2159, 2159, 2159, 2159, 2159, 2159, 2159, 2159, 6644, 9820, 6370, 6909, 6469, 7185, 2159, 2159, 2159, 2159, 2159, 2159, 6384, 6384, 6384, 6384, 6384, 6384, 6384, 6384, 6384, 6477, 6595, 6909, 7103, 7185, 6469, 6988, 6384, 6476, 6909, 6469, 6644, 2159, 2159, 2159, 2159, 2159, 2159, 2167, 6555, 2167, 2167, 2167, 2167, 2167, 2167, 2167, 2167, 2167, 7103, 6631, 6555, 6384, 6988, 6477, 6561, 2167, 2167, 2167, 2167, 2167, 2167, 6476, 6694, 6561, 7175, 6700, 6644, 6476, 6555, 6631, 6561, 6477, 6700, 8860, 9823, 6694, 8860, 6700, 6477, 6476, 6694, 6631, 2167, 2167, 2167, 2167, 2167, 2167, 2193, 2193, 7175, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2193, 2194, 9832, 6695, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 6647, 6695, 7401, 7156, 9837, 6684, 6695, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2194, 2197, 2197, 6647, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 7156, 2197, 2197, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 6496, 2197, 2197, 2197, 2197, 2197, 2197, 2197, 6801, 6684, 6394, 7101, 6647, 2197, 6684, 9841, 6801, 7401, 8125, 2197, 6394, 6394, 6394, 6394, 6394, 6394, 6394, 6394, 6394, 6394, 6806, 2197, 2197, 2197, 2197, 2204, 6344, 6510, 6806, 6344, 6688, 6344, 6394, 7101, 6688, 6344, 6510, 6509, 6344, 6344, 6344, 6539, 6415, 6344, 6619, 6415, 6509, 6415, 6510, 6344, 6539, 6415, 6619, 6509, 6415, 6415, 6415, 2204, 6509, 6415, 6556, 7096, 6539, 6688, 2204, 6415, 6624, 6556, 6688, 6619, 2204, 7096, 6556, 6807, 6573, 6510, 8125, 8125, 6624, 2204, 6810, 2204, 6619, 2204, 6807, 6509, 2204, 2204, 6810, 6539, 6556, 2204, 6573, 7096, 2204, 6395, 2204, 6636, 2204, 6624, 2204, 2204, 2204, 2205, 6573, 6395, 6395, 6395, 6395, 6395, 6395, 6395, 6395, 6395, 6395, 6405, 6405, 6405, 6405, 6405, 6405, 6405, 6405, 6405, 6814, 6636, 6574, 6395, 6567, 6824, 6811, 6636, 6814, 7226, 6548, 2205, 6405, 6824, 2205, 7342, 6567, 6811, 2205, 6548, 6574, 6414, 6414, 6414, 6414, 6414, 6414, 6414, 6414, 6414, 6405, 6548, 6574, 2205, 6567, 2205, 6696, 2205, 6552, 6630, 2205, 2205, 6414, 7342, 7226, 2205, 9844, 6552, 2205, 7155, 2205, 6630, 2205, 6594, 2205, 2205, 2205, 2206, 6548, 6552, 6414, 6417, 6417, 6417, 6417, 6417, 6417, 6417, 6417, 6417, 6417, 6514, 6514, 6514, 6514, 6514, 6514, 6514, 6514, 6514, 6825, 7155, 6557, 6417, 2206, 6594, 6552, 6625, 6594, 2206, 6630, 6825, 6514, 6696, 6557, 6625, 2206, 6557, 6696, 6625, 9851, 6417, 6526, 6526, 6526, 6526, 6526, 6526, 6526, 6526, 6526, 2206, 6557, 2206, 6625, 2206, 6829, 6691, 2206, 2206, 6594, 6834, 6691, 2206, 6829, 6462, 2206, 6691, 2206, 6834, 2206, 7365, 2206, 2206, 2206, 2207, 6462, 6462, 6462, 6462, 6462, 6462, 6462, 6462, 6462, 6797, 7176, 6465, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6515, 6462, 6465, 6465, 6465, 6465, 6465, 6465, 6465, 6465, 6465, 2207, 6566, 6515, 6830, 6599, 6599, 6835, 2207, 6566, 7181, 6797, 6538, 6465, 6566, 6830, 7176, 7365, 6835, 9852, 6547, 6538, 7181, 2207, 6797, 2207, 6838, 2207, 6538, 6547, 2207, 2207, 6566, 6538, 6838, 2207, 6547, 6711, 2207, 6599, 2207, 6547, 2207, 6945, 2207, 2207, 2207, 2208, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6516, 6599, 6844, 6952, 6538, 6945, 6551, 6565, 7974, 6849, 6844, 6599, 6547, 6516, 6711, 6551, 6565, 6849, 6599, 6599, 6522, 6952, 6551, 2208, 7297, 9918, 6945, 6551, 6565, 6522, 2208, 6522, 6522, 6522, 6522, 6522, 6522, 6522, 6522, 6522, 6711, 7974, 6564, 6575, 6575, 2208, 6952, 2208, 7297, 2208, 6620, 6564, 2208, 2208, 6551, 6565, 6620, 2208, 6564, 6602, 2208, 6602, 2208, 6564, 2208, 6575, 2208, 2208, 2208, 2209, 6522, 7164, 6596, 6953, 6597, 6620, 6846, 6575, 6587, 6587, 6587, 6587, 6587, 6587, 6587, 6587, 6587, 6846, 6620, 6627, 6564, 6953, 6596, 6602, 6597, 6575, 6850, 6626, 6598, 6598, 6603, 2209, 6603, 7164, 6596, 6692, 6597, 6850, 2209, 6627, 6692, 6602, 6596, 6965, 6953, 6692, 6628, 6626, 6693, 7323, 6598, 6627, 6627, 2209, 6965, 2209, 8039, 2209, 6602, 6626, 2209, 2209, 6598, 6645, 6603, 2209, 6628, 6645, 2209, 6596, 2209, 6597, 2209, 6853, 2209, 2209, 2209, 2210, 6628, 7323, 6598, 6853, 6603, 6612, 6612, 6612, 6612, 6612, 6612, 6612, 6612, 6612, 6970, 6693, 6626, 6645, 6866, 6598, 8039, 6603, 6697, 6645, 7296, 6970, 6866, 6697, 6693, 6987, 6616, 2210, 6697, 6693, 6693, 6719, 6719, 6697, 2210, 6628, 6987, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 6616, 7296, 6964, 6645, 2210, 9919, 2210, 6933, 2210, 6933, 6964, 2210, 2210, 6616, 6969, 7199, 2210, 6719, 6933, 2210, 6719, 2210, 6969, 2210, 7199, 2210, 2210, 2210, 2211, 6658, 6658, 6658, 6658, 6658, 6658, 6658, 6658, 6658, 6719, 6659, 6659, 6659, 6659, 6659, 6659, 6659, 6659, 6659, 9942, 6662, 6662, 6662, 6662, 6662, 6662, 6662, 6662, 6662, 7409, 6658, 2211, 6787, 6787, 6787, 6787, 6787, 6787, 2211, 6660, 6660, 6660, 6660, 6660, 6660, 6660, 6660, 6660, 6992, 6685, 6792, 6792, 6792, 2211, 7202, 2211, 2211, 2211, 6997, 6992, 2211, 2211, 6685, 7202, 7409, 2211, 6659, 6685, 2211, 6997, 2211, 6792, 2211, 6685, 2211, 2211, 2211, 2212, 6662, 6993, 6661, 6661, 6661, 6661, 6661, 6661, 6661, 6661, 6661, 6796, 6796, 6796, 6710, 6710, 7008, 6660, 6663, 6663, 6663, 6663, 6663, 6663, 6663, 6663, 6663, 7008, 6993, 7340, 7178, 2212, 6796, 6794, 6794, 6794, 6794, 6794, 2212, 6664, 6664, 6664, 6664, 6664, 6664, 6664, 6664, 6664, 6710, 6947, 7179, 6710, 7012, 2212, 6794, 2212, 2212, 2212, 6661, 6943, 2212, 2212, 7178, 7012, 6663, 2212, 6710, 6947, 2212, 7340, 2212, 6943, 2212, 6947, 2212, 2212, 2212, 2213, 6665, 6665, 6665, 6665, 6665, 6665, 6665, 6665, 6665, 6946, 6664, 6943, 6948, 7179, 7227, 6666, 6666, 6666, 6666, 6666, 6666, 6666, 6666, 6666, 6664, 6973, 2213, 6946, 6718, 6718, 6948, 2213, 6911, 6973, 7345, 6948, 7227, 6946, 2213, 6955, 6667, 6667, 6667, 6667, 6667, 6667, 6667, 6667, 6667, 10114, 6718, 6949, 6911, 2213, 6665, 2213, 6665, 2213, 6666, 6911, 2213, 2213, 6718, 6955, 7345, 2213, 6666, 6911, 2213, 6949, 2213, 2213, 2213, 7059, 2213, 2213, 2213, 2222, 7218, 7218, 6718, 6955, 6666, 7348, 7059, 6702, 6949, 2222, 6667, 6668, 6668, 6668, 6668, 6668, 6668, 6668, 6668, 6668, 7218, 7650, 6669, 6669, 6669, 6669, 6669, 6669, 6669, 6669, 6669, 2222, 6717, 6717,10177, 7348, 7104, 7104, 2222, 6676, 6676, 6676, 6676, 6676, 6676, 6676, 6676, 6676, 6986,10182, 7650, 6991, 6908, 2222, 7104, 2222, 6986, 2222, 6702, 6991, 2222, 2222, 6668, 6702, 6702, 2222, 6717, 6951, 2222, 6702, 2222, 6934, 2222, 6934, 2222, 2222, 2222, 2223, 6669, 7184, 6944, 6944, 6934, 6908, 6717, 6951, 6908, 2223, 7277, 6934, 7039, 7184, 6717, 6676, 7067, 6677, 6677, 6677, 6677, 6677, 6677, 6677, 6677, 6677, 6908, 7067, 6951,10192, 7039, 2223, 7277, 2223, 7039, 6951, 6944, 6944, 2223, 6678, 6678, 6678, 6678, 6678, 6678, 6678, 6678, 6678, 6921, 6921, 6921, 6921, 6921, 2223, 6944, 2223, 6996, 2223, 7000, 7006, 2223, 2223, 7369, 6678, 6996, 2223, 7000, 7006, 2223, 6921, 2223, 7019, 2223, 6677, 2223, 2223, 2223, 2240, 2240, 6981, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 6709, 6709, 6709, 6709, 6709, 6709, 6709, 6709, 6709, 7019, 7062, 7011, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 7011, 7369, 6709, 6981, 7849, 2240, 7369, 7849, 2240, 6681, 6681, 6681, 6681, 6681, 6681, 6681, 6681, 6681, 7062, 6950, 6954, 6981, 7849, 2240, 2240, 2240, 2240, 2247, 6682, 6682, 6682, 6682, 6682, 6682, 6682, 6682, 6682, 6950, 6954, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 6689, 2247, 6690, 6957, 6950, 6961, 6950, 7204, 6689, 6954, 6690, 7015, 2247, 6689, 7021, 6690, 7204, 7033, 6689, 7015, 6690, 6681, 7072, 6961, 6689, 7033, 6690, 6957, 6681, 6983, 7020, 7341, 7021, 7072, 6961, 7033,10196, 6682, 6682, 6858, 6858, 6858, 6858, 6858, 6858, 6957, 2247, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 7341, 7021, 2258, 2258, 2258, 6858, 6983, 2258, 2258, 7020, 7020, 7068, 7137, 7148, 7061, 7052, 7343, 2258, 2258, 2258, 2258, 2258, 2258, 7052, 6983, 7032, 7061, 7020, 2258, 6742, 6742, 6742, 6742, 6742, 6742, 6742, 6742, 6742, 7068, 7137, 7148, 9757, 7343, 7032, 7061, 9757, 2258, 2258, 2258, 2258, 2261, 2261, 7032, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2265, 2265, 7022, 2265, 2265, 2265, 2265, 2265, 7380, 7047, 2265, 2265, 2265, 6703, 6703, 6703, 6703, 6703, 6703, 6703, 6703, 6703,10199, 7186, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 7047, 7113, 7091, 7022, 7186, 2265, 7138, 6683, 6683, 6683, 6683, 6683, 6683, 6683, 6683, 6683, 7380, 7138, 7047, 7113, 7091, 7022, 7188, 2265, 2265, 2265, 2265, 2266, 2266, 6703, 2266, 2266, 2266, 2266, 2266, 7091, 7113, 2266, 2266, 2266, 6707, 6707, 6707, 6707, 6707, 6707, 6707, 6707, 6707, 7188, 6683, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 6683, 8867, 7183,10208, 8867, 2266, 6705, 6705, 6705, 6705, 6705, 6705, 6705, 6705, 6705, 7180, 6683, 6904, 6904, 6904, 6904, 6904, 6904, 2266, 2266, 2266, 2266, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 7037, 6904, 7036, 6707, 7042, 7037, 2269, 2269, 2269, 2269, 2269, 2269, 6958, 6958, 7180, 8146, 7055, 7210, 6705, 7183, 7036, 7183, 7042, 7037, 7055, 6705, 7210, 7031, 7036, 7031, 7042, 7037, 6958, 2269, 2269, 2269, 2269, 2269, 2269, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 8146, 6958, 7031, 9724, 9724, 7233, 2271, 2271, 2271, 2271, 2271, 2271, 7031, 6706, 7233, 6706, 6706, 6706, 6706, 6706, 6706, 6706, 6706, 6706, 6743, 6743, 6743, 6743, 6743, 6743, 6743, 6743, 6743, 2271, 2271, 2271, 2271, 2271, 2271, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 7382, 7220, 7220, 7220,10213, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 6706, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 6716, 7220, 6716, 6744, 6744, 6744, 6744, 6744, 6744, 6744, 6744, 6744, 2274, 2274, 2274, 2274, 2274, 2274, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 7105,10217, 7278, 7322, 7382, 7066, 2280, 2280, 2280, 2280, 2280, 2280, 7035, 7066, 7278, 7322, 7307, 7330, 7382, 6716, 6752, 6752, 6752, 6752, 6752, 6752, 6752, 6752, 6752, 7330, 7035, 7213, 7105, 2280, 2280, 2280, 2280, 2280, 2280, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 7035, 7105, 7307, 7213, 7307, 7035, 2283, 2283, 2283, 2283, 2283, 2283, 6753, 6753, 6753, 6753, 6753, 6753, 6753, 6753, 6753, 6754, 6754, 6754, 6754, 6754, 6754, 6754, 6754, 6754, 7213, 7112,10220, 2283, 2283, 2283, 2283, 2283, 2283, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 7112, 7433, 7433, 7433, 7346, 7112, 2291, 2291, 2291, 2291, 2291, 2291, 6763, 6763, 6763, 6763, 6763, 6763, 6763, 6763, 6763, 6764, 6764, 6764, 6764, 6764, 6764, 6764, 6764, 6764, 7346, 7124, 7129, 2291, 2291, 2291, 2291, 2291, 2291, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 7124, 7129,10233, 7479, 7124, 7129, 2294, 2294, 2294, 2294, 2294, 2294, 6765, 6765, 6765, 6765, 6765, 6765, 6765, 6765, 6765, 6774, 6774, 6774, 6774, 6774, 6774, 6774, 6774, 6774, 7479, 7240, 7152, 2294, 2294, 2294, 2294, 2294, 2294, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 7130, 7152, 8165, 7240,10316, 7152, 2302, 2302, 2302, 2302, 2302, 2302, 6775, 6775, 6775, 6775, 6775, 6775, 6775, 6775, 6775, 6776, 6776, 6776, 6776, 6776, 6776, 6776, 6776, 6776, 7240, 7415, 7130, 2302, 2302, 2302, 2302, 2302, 2302, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 7131, 7130, 9736, 9736, 7415, 8165, 2307, 2307, 2307, 2307, 2307, 2307, 6786, 6786, 6786, 6786, 6786, 6786, 6786, 6786, 6786, 6874, 6874, 6874, 6874, 6874, 6874, 6874, 6874, 6874, 7041, 7093, 7131, 2307, 2307, 2307, 2307, 2307, 2307, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 7041, 7110, 7131, 7478, 7337, 7071, 7041, 2309, 2309, 2309, 2309, 2309, 2309, 7071, 7478, 7093, 7337, 8945, 7308, 7110, 6790, 6790, 6790, 6790, 6790, 6790, 6790, 6790, 6790, 7110, 7308, 6960, 6960, 6960, 2309, 2309, 2309, 2309, 2309, 2309, 2317, 6790, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 6960, 7308, 7093, 7337, 7075, 7082, 2317, 2317, 2317, 2317, 2317, 2317, 7075, 7082, 7439, 7439, 7439, 7614, 6960, 7483, 6791, 6791, 6791, 6791, 6791, 6791, 6791, 6791, 6791, 7614, 7483, 7344, 8945, 2317, 2317, 2317, 2317, 2317, 2317, 2321, 2321, 6791, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 6875, 6875, 6875, 6875, 6875, 6875, 6875, 6875, 6875, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 7044, 7044, 7344, 7049, 7114, 2321, 6793, 6793, 6793, 6793, 6793, 6793, 6793, 6793, 6793, 7445, 7445, 7445,10321,10364, 7044, 7049, 7114, 2321, 2321, 2321, 2321, 6793, 6876, 6876, 6876, 6876, 6876, 6876, 6876, 6876, 6876, 7114, 7044, 7114, 7596, 2321, 2322, 2322, 7049, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 6882, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 7048, 7048, 7029, 7596, 7029, 2322, 6888, 6888, 6888, 6888, 6888, 6888, 6888, 6888, 6888, 7106, 7106, 7106, 10369,10379, 7109, 7048, 7038, 2322, 2322, 2322, 2322, 6845, 6845, 6845, 6845, 6845, 6845, 6845, 6845, 6845, 7029, 7085, 7109, 7048, 7038, 7328, 7029, 6845, 7038, 7085, 2322, 2346, 2346, 7106, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 7109, 2346, 2346, 7094, 7116, 7038, 7339, 7328, 7106, 6845, 7349, 7136, 2346, 2346, 2346, 2346, 2346, 2346, 2346, 7136, 7328,10383, 7116, 7488, 2346, 6894, 6894, 6894, 6894, 6894, 6894, 6894, 6894, 6894, 7488, 7094,10230, 7902, 7339, 7117, 7349, 7094, 2346, 2346, 2346, 2347, 2347, 7116, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 7117, 2347, 2347, 6900, 6900, 6900, 6900, 6900, 6900, 6900, 6900, 6900, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 2347, 7118, 7902, 10230, 7117, 2347, 8167, 6902, 6902, 6902, 6902, 6902, 6902, 6902, 6902, 6902, 7451, 7451, 7451, 7118, 7566, 7566, 7566, 2347, 2347, 2347, 2358, 2358, 6902, 2358, 2358, 2358, 2358, 2358, 2358, 2358, 2358, 2358, 7118, 2358, 2358, 6905, 6905, 6905, 6905, 6905, 6905, 6905, 6905, 6905, 2358, 2358, 2358, 2358, 2358, 2358, 2358,10386, 8167, 7125, 7283, 7111, 2358, 6916, 6916, 6916, 6916, 6916, 6916, 6916, 6916, 6916, 7283, 7603, 7603, 7603, 7922, 7125, 7283, 7111, 2358, 2358, 2358, 2359, 2359, 7111, 2359, 2359, 2359, 2359, 2359, 2359, 2359, 2359, 2359, 7125, 2359, 2359, 6917, 6917, 6917, 6917, 6917, 6917, 6917, 6917, 6917, 2359, 2359, 2359, 2359, 2359, 2359, 2359, 2359, 7120,10395, 7922, 7119, 2359, 6918, 6918, 6918, 6918, 6918, 6918, 6918, 6918, 6918, 7651, 7165,10400, 7353, 7120, 7046, 7046, 7046, 2359, 2359, 2359, 2360, 2360, 7119, 2360, 2360, 2360, 2360, 2360, 2360, 2360, 2360, 2360, 7120, 2360, 2360, 7046, 7245, 7120, 7353, 7651, 7119, 7352, 7165, 7236, 2360, 2360, 2360, 2360, 2360, 2360, 2360, 7121, 7236, 7046, 7126, 7408, 2360, 7245, 2360, 6920, 6920, 6920, 6920, 6920, 6920, 6920, 6920, 6920, 7165, 7121, 6982, 7141, 7126, 7352, 2360, 2360, 2360, 7121, 7126, 7141, 6920, 6982, 6982, 6982, 7245, 2360, 2362, 2362, 7408, 2362, 2362, 2362, 2362, 2362, 2362, 2362, 2362, 2362, 8140, 2362, 2362, 7163, 6982, 7352, 7405, 8140, 7249, 7158, 7474, 7163, 2362, 2362, 2362, 2362, 2362, 2362, 2362, 7158, 7249, 7127, 6982, 7408, 2362, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 6928, 7163, 7474, 7405, 7249, 7127,10404, 7158, 2362, 2362, 2362, 2364, 2364, 7127, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2364, 2365, 6929, 6929, 6929, 6929, 6929, 6929, 6929, 6929, 6929, 6929, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 6930, 6930, 6930, 6930, 6930, 6930, 6930, 6930, 6930, 6930, 7182, 7193, 7193, 7193, 7193, 7193, 7193, 7193, 7193, 7193, 7242, 7254, 7264,10407, 7267,10530, 7921, 10533, 7182, 7242, 7254, 7264, 7182, 7267, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2365, 2369, 2369, 2369, 2369, 2369, 2369, 2369, 2369, 2369, 2369, 7122, 7921, 7383, 7279, 7257, 7122, 2369, 2369, 2369, 2369, 2369, 2369, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7007, 7279, 7168, 7122, 7287, 7257, 7383, 7168, 7007, 7279, 7169, 7122, 7287, 2369, 2369, 2369, 2369, 2369, 2369, 2372, 2372, 2372, 2372, 2372, 2372, 2372, 2372, 2372, 2372, 7930, 7115, 7168, 7257, 7007, 7169, 2372, 2372, 2372, 2372, 2372, 2372, 7930, 7383, 7169,10534, 7843,10543, 7383, 7115, 6956, 6956, 6956, 6956, 6956, 6956, 6956, 6956, 6956, 7034, 7034, 7090, 7250, 2372, 2372, 2372, 2372, 2372, 2372, 2374, 7115, 6956, 7123, 7454, 7250, 7843, 7095, 7115, 7484, 7454, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 2374, 6956, 7123, 7895, 7250, 7034, 7123, 7090, 2374, 2374, 2374, 2374, 2374, 2374, 7034, 7095, 7090, 7484, 7095, 7159, 7095, 7171, 7172, 7034, 7095, 7090, 7123, 7095, 7095, 7095, 7159, 7159, 7095, 8141, 7895, 2374, 2374, 2374, 2374, 2374, 2374, 2378, 2378, 2378, 2378, 2378, 2378, 2378, 2378, 2378, 2378, 7159, 7471, 7471, 7471, 7489, 7172, 2378, 2378, 2378, 2378, 2378, 2378, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 7081, 7313, 7471, 7172, 7171, 7510, 8141, 7172, 7081, 7313, 7280, 7489, 7171, 2378, 2378, 2378, 2378, 2378, 2378, 2380, 2380, 2380, 2380, 2380, 2380, 2380, 2380, 2380, 7280, 7585, 7585, 7585, 7510, 7081, 7280, 2380, 2380, 2380, 2380, 2380, 2380, 7135, 7135, 7135, 7135, 7135, 7135, 7135, 7135, 7151, 7585, 7151, 8320, 7368, 7325, 7371, 7173, 7174, 7299, 7174, 7282, 7135, 2380, 2380, 2380, 2380, 2380, 2380, 2390, 2390, 2390, 2390, 2390, 2390, 2390, 2390, 2390, 2390, 7282, 7135, 7325, 8320, 7299, 7151, 2390, 2390, 2390, 2390, 2390, 2390, 7173, 7174, 7325, 7299, 7201, 7350, 7402, 7282, 7368, 7173, 7368, 7151, 7371, 7201, 7402, 7368, 7362, 7371, 7173, 7174, 7201, 2390, 2390, 2390, 2390, 2390, 2390, 2392, 2392, 2392, 2392, 2392, 2392, 2392, 2392, 2392, 7929, 7350, 8054, 7362, 7205, 7206, 7207, 2392, 2392, 2392, 2392, 2392, 2392, 7205, 7206, 7207, 7281, 7281, 7281,10544, 7205, 7251, 7929, 7418, 8054, 7205, 7206, 7362, 7251, 7350, 7207, 7418, 7362, 7251, 2392, 2392, 2392, 2392, 2392, 2392, 2404, 2404, 2404, 2404, 2404, 2404, 2404, 2404, 2404, 2404, 7281, 7251, 7205, 7206, 7208, 7212, 2404, 2404, 2404, 2404, 2404, 2404, 9497, 7208, 7212, 7746, 7552, 9497, 7281, 7262, 7208, 7212, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 7230, 7262, 7407, 2404, 2404, 2404, 2404, 2404, 2404, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 7552, 7262, 8095, 7746, 7214, 7215, 7216, 2406, 2406, 2406, 2406, 2406, 2406, 7214, 7215, 7216, 7234, 7407,10555, 8944, 7248, 7215, 7493, 7477, 8095, 7234, 7215, 7216, 7214, 7248, 7298, 7477, 7234, 7493, 2406, 2406, 2406, 2406, 2406, 2406, 2414, 7248, 2414, 2414, 2414, 2414, 2414, 2414, 2414, 2414, 2414, 2414, 7407, 7215, 7216, 7238, 7298, 7239, 2414, 2414, 2414, 2414, 2414, 2414, 7238, 7298, 7239, 7751, 7248,10556, 7901, 7238, 6959, 6959, 6959, 6959, 6959, 6959, 6959, 6959, 6959, 7239, 7515, 7659, 8944, 2414, 2414, 2414, 2414, 2414, 2414, 2418, 2418, 6959, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 7751, 2418, 2418, 7901, 7659, 7334, 7515, 7338, 6959, 7331, 7244, 7338, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 7244, 7338, 7331, 7659, 7338, 2418, 7334, 7244, 2418, 7231, 7231, 7231, 7231, 7231, 7231, 7231, 7231, 7231, 7334, 7628, 7331, 7334,10571, 2418, 2418, 2418, 2419, 2419, 7628, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2426, 2426, 2426, 2426, 2426, 2426, 2426, 2426, 2426, 2426,10572, 7520, 7252, 7246, 7247, 7742, 2426, 2426, 2426, 2426, 2426, 2426, 7246, 7247, 7252, 7256, 7453, 7252, 7482, 7370, 7247, 7487, 7453, 7453, 7256, 7247, 7482, 7246, 7520, 7487, 7742, 7256, 7252, 2426, 2426, 2426, 2426, 2426, 2426, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 2429, 7300,10589, 7536, 7247, 7258, 7259, 2429, 2429, 2429, 2429, 2429, 2429, 7492, 7258, 7259, 7265, 10690, 7370, 7261, 7597, 7492, 7259, 7370, 7541, 7265, 7261, 7259, 7370, 7258, 7536, 7261, 7265, 7300, 2429, 2429, 2429, 2429, 2429, 2429, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 7261, 7833, 7541, 7597, 7260, 7259, 7268, 2437, 2437, 2437, 2437, 2437, 2437, 7260, 7271, 7268, 7496,10728, 10730, 7300, 7361, 7509, 7268, 7271, 7496, 7260, 7300, 7268, 7361, 7361, 7271, 7303, 7509, 7833, 2437, 2437, 2437, 2437, 2437, 2437, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 7665, 7303, 7260, 7269, 7268, 7270, 2439, 2439, 2439, 2439, 2439, 2439, 7269, 7303, 7270, 7292, 7292, 7292, 7292, 7292, 7292, 7292, 7292, 7292, 7269, 7673, 7361, 7665, 7924, 7270,10731, 7361,10732, 2439, 2439, 2439, 2439, 2439, 2439, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 2443, 7303, 8354, 7527, 7269, 7673, 7527, 7924, 2443, 2443, 2443, 2443, 2443, 2443, 7324, 7324, 7324, 7324, 7324, 7324, 7324, 7324, 7043, 7043, 7043, 7043, 7043, 7043, 7043, 7043, 7043, 8354, 7327, 7527, 7324, 2443, 2443, 2443, 2443, 2443, 2443, 2449, 2449, 7043, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 7305, 7305, 7305, 7848,10733, 7043, 7912, 7514, 7327, 2449, 2449, 2449, 2449, 2449, 2449, 2449, 7284, 7335, 7514, 7911,10734, 2449, 8096, 8151, 7045, 7045, 7045, 7045, 7045, 7045, 7045, 7045, 7045, 7327, 7305, 7848, 7912, 7335, 7366, 2449, 2449, 2449, 2449, 2450, 7273, 7045, 7327, 7284, 8096, 7335, 7284, 7911, 7305, 7273, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 7045, 7697, 7273, 7702, 8151, 7284, 7305, 2450, 2450, 2450, 2450, 2450, 2450, 7293, 7293, 7293, 7293, 7293, 7293, 7293, 7293, 7293, 7366, 7911, 7508, 7335, 7366, 7366, 7697, 7273, 7702, 7366, 7508,10735, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2450, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 2453, 7519, 2453, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7060, 7519, 2453, 7219, 7219, 7219, 7219, 7219, 7219, 7219, 7219, 7219, 7455, 7060, 7513, 7518,10736, 7523, 7455, 7455, 2453, 7524, 7513, 7518, 7219, 7523, 7530, 7455, 7464, 7844, 7633, 7060, 7524, 7060, 7530, 7464, 2453, 2454, 2454, 7633, 2454, 2454, 2454, 2454, 2454, 2454, 2454, 2454, 2454, 8097, 2454, 2454, 7294, 7294, 7294, 7294, 7294, 7294, 7294, 7294, 7294, 2454, 2454, 2454, 2454, 2454, 2454, 2454, 7844, 7741, 7464, 8097, 7741, 2454, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7107, 7707, 7469, 7469, 7469, 7469, 7469, 7741, 2454, 2454, 2454, 2455, 2455, 7107, 2455, 2455, 2455, 2455, 2455, 2455, 2455, 2455, 2455, 7469, 2455, 2455, 7403, 7748, 7707, 7748,10323, 7107, 7534, 7540, 7403, 2455, 2455, 2455, 2455, 2455, 2455, 2455, 2455, 7534, 7540, 7740, 7763, 2455, 7108, 7108, 7108, 7108, 7108, 7108, 7108, 7108, 7108, 7108,10323, 7372, 7723, 7748, 7762, 7740, 7763, 2455, 2455, 2455, 2459, 2459, 7108, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 7762, 2459, 2459, 7763, 7740, 7333, 7403, 7723, 7108, 7301, 7367, 7403, 2459, 2459, 2459, 2459, 2459, 2459, 2459, 7272, 7761, 7533, 7545, 7762, 2459, 7333, 7372, 7326, 7272, 7533, 2459, 7372,10740, 7545, 7309, 7272, 7372, 7333, 7761, 7326, 7272, 7301, 2459, 2459, 2459, 2460, 2460, 7301, 2460, 2460, 2460, 2460, 2460, 2460, 2460, 2460, 2460, 7367, 2460, 2460, 7329, 7333, 7367, 7761, 7326, 7309, 7367, 7272, 7309, 2460, 2460, 2460, 2460, 2460, 2460, 2460, 7301, 7326, 7063, 7539, 7302, 2460,10741, 8177, 7652, 7329, 7309, 7539, 7920, 7063, 7063, 7063, 7063, 7063, 7063, 7063, 7063, 7063, 7329, 2460, 2460, 2460, 7652, 7309, 8177, 7544, 7329, 7652, 7548, 7551, 7063, 7548, 7302, 7544, 2460, 2466, 2466, 7551, 2466, 2466, 2466, 2466, 2466, 7920, 7968, 2466, 2466, 2466, 7063, 7128, 7128, 7128, 7128, 7128, 7128, 7128, 7128, 7128, 7548, 7302, 2466, 2466, 2466, 2466, 2466, 2466, 7302, 7302, 7968,10742, 7128, 2466,10744,10760, 7306, 7306, 7306, 2466, 7318, 7318, 7318, 7318, 7318, 7318, 7318, 7318, 7318, 7561, 7128, 2466, 2466, 2466, 2466, 2467, 2467, 7561, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 7654, 2467, 2467, 7306, 7473, 7473, 7473, 7473, 7473, 7615, 8101, 7615, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 2467, 7615, 7306, 7654, 9909, 2467, 7473, 7664, 7221, 7221, 7221, 7221, 7221, 7221, 7221, 7221, 7221, 8101, 7664, 7306,10761, 7654, 9909, 2467, 2467, 2467, 2467, 2469, 2469, 7221, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2469, 2472, 2472, 7923, 2472, 2472, 2472, 2472, 2472, 2472, 2472, 2472, 2472, 7975, 2472, 2472, 7319, 7319, 7319, 7319, 7319, 7319, 7319, 7319, 7319, 2472, 2472, 2472, 2472, 2472, 2472, 2472, 7564, 7570, 7574,10752,10752, 2472, 7923,10762, 7564, 7570, 7574, 2472, 7320, 7320, 7320, 7320, 7320, 7320, 7320, 7320, 7320, 7578, 7975, 2472, 2472, 2472, 2472, 2473, 2473, 7578, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2473, 2475, 2475, 7336, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 7582, 2475, 2475, 7979, 7979, 7979, 7336,10767, 7582, 7332, 7336, 7640, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 7336, 7640, 7332, 7336, 7636, 2475, 7636,10772, 2475, 7310, 7663, 7310, 7373, 7589, 7332, 7636, 7640, 7336, 7663, 7589, 7589, 7589, 7589, 2475, 2475, 2475, 2475, 2477, 2477, 7332, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 7671, 7310, 7925, 7589, 8103, 7616, 7728, 7616, 7671, 2477, 2477, 2477, 2477, 2477, 2477, 2477, 7616, 7373, 8154, 7310, 7589, 2477, 7373, 7616, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 7223, 7728, 7373, 8103, 7310, 7925, 8154, 2477, 2477, 2477, 2477, 2478, 2478, 7223, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2480, 2480, 7160, 2480, 2480, 2480, 2480, 2480, 7764, 7766, 2480, 2480, 2480, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 7160, 7630, 7976, 7672, 2480, 2480, 2480, 2480, 2480, 2480, 7630, 7764, 7766, 7160, 7672, 2480, 7677, 7630, 7224, 7224, 7224, 7224, 7224, 7224, 7224, 7224, 7224, 7677, 8079, 7764, 7766, 8155, 7976, 2480, 2480, 2480, 2480, 2481, 2481, 7224, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 7426, 7426, 7426, 7426, 7426, 7426, 7426, 7426, 7426, 2481, 2481, 2481, 2481, 2481, 2481, 2481, 7360, 8079, 7789, 8155,10737, 2481,10737, 7351, 2481, 7412, 7412, 7360, 7360, 7360, 7360, 7360, 7360, 7360, 7360, 7360,10773, 7655, 7655, 2481, 2481, 2481, 2481, 2482, 2482, 7789, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 7351, 2482, 2482, 7655, 7412, 8051, 8051, 8051, 7714, 7696, 8098, 7714, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 2482, 7696, 7655, 7412, 7701, 2482, 7706, 7635, 7351, 7635, 7635, 7635, 7635, 7635, 7635, 7701, 7351, 7706, 7635, 7714, 7412, 8098,10793, 2482, 2482, 2482, 2484, 2484,10810, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2484, 2486, 2486, 8053, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 7427, 7427, 7427, 7427, 7427, 7427, 7427, 7427, 7427, 2486, 2486, 2486, 2486, 2486, 2486, 2486, 8076, 8076, 8076, 7660, 7754, 2486, 8053, 8319, 7406, 7406, 7414, 7414, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7428, 7660, 7754, 2486, 2486, 2486, 2486, 2487, 2487, 7660, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 7304, 2487, 2487, 7406, 7754, 7414,10811, 8319, 7711, 7838, 8100, 7406, 2487, 2487, 2487, 2487, 2487, 2487, 2487, 7711, 7304, 7406, 7676, 7414, 2487, 7680, 7695, 2487, 7700, 7705, 7676, 7598, 7304, 7680, 7695, 8106, 7700, 7705, 7414, 7710, 8100, 7838, 2487, 2487, 2487, 2488, 2488, 7710, 2488, 2488, 2488, 2488, 2488, 2488, 2488, 2488, 2488, 7847, 2488, 2488, 7304, 8106, 7756, 7838,10812, 7598, 7847, 7304, 7304, 2488, 2488, 2488, 2488, 2488, 2488, 2488, 7717, 7720, 7097, 7735, 7756, 2488, 7735, 7598, 7717, 7720, 7756, 2488, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7097, 7598, 2488, 2488, 2488, 2490, 7470, 7470, 7470, 7470, 7470, 7470, 7735, 7097, 7721, 7470, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 7721,10819, 7470,10824, 7797, 7802, 7828, 2490, 2490, 2490, 2490, 2490, 2490, 7434, 7434, 7434, 7434, 7434, 7434, 7434, 7434, 7434, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7440, 7797, 7802, 7828, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2490, 2491, 2491, 7926, 2491, 2491, 2491, 2491, 2491, 2491, 2491, 2491, 2491, 7878, 2491, 2491, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 7446, 2491, 2491, 2491, 2491, 2491, 2491, 2491, 7161, 7726, 7933, 7926,10862, 2491, 7927,10897, 7878, 7726, 7727, 7161, 7161, 7161, 7161, 7161, 7161, 7161, 7161, 7161, 7732, 7727, 7731, 2491, 2491, 2491, 2495, 7738, 2495, 7773, 7731, 7732, 7161, 7927, 7933, 7738, 7969, 7773, 8055, 2495, 2495, 2495, 2495, 2495, 2495, 2495, 2495, 2495, 7969, 2495, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7452, 7739, 2495, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 8055, 2497, 2497, 7460, 7460, 7460, 7460, 7460, 7460, 7460, 7460, 7460, 2497, 2497, 2497, 2497, 2497, 2497, 2497, 7868, 7739,10898, 7758, 7739, 2497, 7461, 7461, 7461, 7461, 7461, 7461, 7461, 7461, 7461, 8194, 8194, 8194, 7868, 7739, 8494, 7758, 7868, 2497, 2497, 2497, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 7758, 2498, 2498, 7462, 7462, 7462, 7462, 7462, 7462, 7462, 7462, 7462, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 2498, 7863, 8494, 7760, 7774, 2498, 7502, 7502, 7502, 7502, 7502, 7502, 7502, 7502, 7502, 7774,11013,11113, 8181, 7863, 7755, 7760, 7502, 2498, 2498, 2498, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 7755, 2500, 2500, 7750, 7760, 7750, 7863, 7981, 7752, 7502, 7755, 7760, 2500, 2500, 2500, 2500, 2500, 2500, 2500, 7981, 7752, 8181, 7830, 7779, 2500, 7535, 7535, 7535, 7535, 7535, 7535, 7535, 7535, 7535, 7779, 8161, 8040, 7750, 7752, 7757, 7830, 7535, 2500, 2500, 2500, 2501, 2501, 2501, 2501, 2501, 2501, 2501, 2501, 2501, 2501, 2501, 2501, 7757, 2501, 2501, 7767, 7767, 7757, 7946, 7830, 7867, 7535, 7750, 8040, 2501, 2501, 2501, 2501, 2501, 2501, 2501, 2501, 7162, 7778, 7759, 7767, 2501, 8161, 7867, 7946,11256, 7778, 8161, 7162, 7162, 7162, 7162, 7162, 7162, 7162, 7162, 7162, 7759, 7767, 2501, 2501, 2501, 2505, 2505, 2505, 7653, 7653, 7867, 7832, 7162, 7913, 7946, 7759, 7913, 7759, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 2505, 7466, 7466, 7466, 7466, 7466, 7466, 7466, 7466, 7466, 7782, 7913, 7795, 2505, 9156,11322, 7653, 7832, 7782, 7653, 7795, 9156, 7466, 7567, 7567, 7567, 7567, 7567, 7567, 7567, 7567, 7567, 7770, 2505, 7653, 2505, 2505, 2505, 2505, 2505, 2505, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 7770, 2513, 7796, 7832, 7222, 7605, 7605, 7605, 7605, 7605, 7605, 7770, 2513, 7796, 7605, 7222, 7222, 7222, 7222, 7222, 7222, 7222, 7222, 7222, 7800, 7805, 7605, 7809, 8176, 8176, 2513,11327, 7800, 7805, 8176, 7809, 7222, 7595, 7595, 7595, 7595, 7595, 7595, 7595, 7595, 7595, 2513, 2516, 2516, 7222, 2516, 2516, 2516, 2516, 2516, 2516, 2516, 2516, 2516, 7852, 2516, 2516, 7604, 7604, 7604, 7604, 7604, 7604, 7604, 7604, 7604, 2516, 2516, 2516, 2516, 2516, 2516, 2516, 8042, 11337,11341, 7852, 7982, 2516, 7801, 7468, 7468, 7468, 7468, 7468, 7468, 7468, 7468, 7468, 7982, 7801, 8042, 8186, 7856, 7852, 8042, 2516, 2516, 2516, 2517, 2517, 7468, 2517, 2517, 2517, 2517, 2517, 2517, 2517, 2517, 2517, 7856, 2517, 2517, 7626, 7626, 7626, 7626, 7626, 7626, 7626, 7626, 7626, 2517, 2517, 2517, 2517, 2517, 2517, 2517, 2517, 7864, 7856, 8186, 11344, 2517, 7806, 7472, 7472, 7472, 7472, 7472, 7472, 7472, 7472, 7472, 7910, 7806, 8693, 7864, 7769, 7769, 7769, 2517, 2517, 2517, 2519, 2519, 7472, 2519, 2519, 2519, 2519, 2519, 2519, 2519, 2519, 2519, 7815, 2519, 2519, 7769, 7864, 7753, 7753, 7910, 7815, 7817, 7910, 7820, 2519, 2519, 2519, 2519, 2519, 2519, 2519, 7820, 7817, 7769, 8693, 7865, 2519, 7821, 7553, 7553, 7553, 7553, 7553, 7553, 7553, 7553, 7553,11353, 7821, 7910,11358, 7753, 7753, 7865, 2519, 2519, 2519, 2520, 2520, 7553, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 7753, 2520, 2520, 7865, 7970, 7970, 7970, 7692, 7692, 7692, 7692, 7692, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 7413, 7413, 7824, 7790, 2520, 7970, 8659,11362, 7692, 7854, 7824, 7874, 7829, 7413, 7413, 7413, 7413, 7413, 7413, 7874, 7881,11365, 2520, 2520, 2520, 2524, 7692, 7792, 7881, 7831, 7845, 7854, 7859, 7858, 7413, 7790, 8659, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 7829, 7829, 7845, 7854, 7859, 7858, 7413, 7790, 7876, 7859, 7467, 7858, 2524, 7792, 7845, 7831, 7835, 7837, 7829, 7876, 8147, 7467, 7467, 7467, 7467, 7467, 7467, 7467, 7467, 7467, 2524, 7792, 2524, 7831, 2524, 2524, 2524, 2524, 2524, 2524, 2529, 2529, 7467, 2529, 2529, 2529, 2529, 2529, 7835, 7837, 2529, 2529, 2529, 8147, 8970, 7467, 7586, 7586, 7586, 7586, 7586, 7586, 7586, 7586, 7586, 2529, 2529, 2529, 2529, 2529, 2529, 7837, 7857, 11377, 7835, 8970, 2529, 7586, 7839, 2529, 7611, 7611, 7611, 7611, 7611, 7611, 7611, 7611, 7611, 7611, 7857, 7837, 7855, 7855, 2529, 2529, 2529, 2529, 2531, 2531, 7857, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 7839, 2531, 2531, 7855, 7860, 7861, 8099, 7897, 7882, 7928,11382,11489, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 7882, 7928, 7855, 7860, 7861, 2531, 7897,11575, 7594, 7594, 7594, 7594, 7594, 7594, 7594, 7594, 7594, 7839, 7897, 7861, 7860, 7861, 8099, 2531, 2531, 2531, 2531, 2532, 2532, 7594, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2534, 2534, 7841, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 7885, 2534, 2534, 8041,10739, 8064,11577, 7903, 7885,10739,11578, 7984, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 7903, 7903, 8041, 7841, 7984, 2534,11582, 7984, 2534, 7612, 7612, 7612, 7612, 7612, 7612, 7612, 7612, 7612, 7612, 8041, 7903, 8064, 8064, 2534, 2534, 2534, 2534, 2535, 2535, 7841, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2536, 2536, 8078, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 7939, 2536, 2536, 8102, 8086, 7840,11584,11585, 7836, 7939, 8233, 7942, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 7942, 8233, 8078, 7862, 2536, 7613, 7613, 7613, 7613, 7613, 7613, 7613, 7613, 7613, 7613, 7836, 8086, 7840, 8102, 7945, 7836, 7862, 2536, 2536, 2536, 2536, 2537, 2537, 7945, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 8081, 2537, 2537, 7840, 7862, 7945, 8150, 8687, 7836, 7905, 7948, 7862, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 7948, 7905, 7905, 7905, 7632, 2537, 7632, 7632, 7632, 7632, 7632, 7632, 7632, 7632, 7632, 7632, 8081, 8687,11589, 8081, 7956, 8150, 7905, 2537, 2537, 2537, 2537, 2538, 2538, 7956, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2539, 2539,11591, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539,11592, 9752, 8157, 9752, 9752, 8157, 7834, 8087, 7952, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 7951, 7952, 8157, 8087, 7634, 2539, 7634, 7634, 7634, 7634, 7634, 7634, 7634, 7634, 7634, 7634, 7952, 8087, 7866, 7914, 7959, 7951, 7834, 2539, 2539, 2539, 2539, 2540, 2540, 7959, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 7866, 7914,11597, 7918, 8109,11599, 7951, 7914, 8107, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 7834, 7866,11600, 8312, 2540, 7834, 8093, 7656, 7656, 7656, 7656, 7656, 7656, 7656, 7656, 7656, 8229, 8107, 8093, 8109, 7918, 7918, 2540, 2540, 2540, 2540, 2541, 2541, 7656, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 7918, 2541, 2541, 8229, 8044, 8312, 8093, 8489, 7656, 8019, 7962, 7986, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 7962, 7986, 8019, 8044,11608, 2541, 7936, 7936, 7936, 7936, 7936, 7936, 7936, 7936, 7936, 7962, 8216, 8216, 8216, 7989, 8019, 8044, 8489, 2541, 2541, 2541, 2543, 2543, 7989, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2547, 2547, 7971, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 8300, 8300, 8300, 8300,11610, 7791,11611,10441, 8143, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 7791, 7791, 7791, 7971, 7940, 2547, 7944, 7983, 7850, 7850, 7896, 2547, 7917, 7940, 7983, 7944, 7971, 8020, 8143, 7983, 7940, 7791, 7944, 2547, 2547, 2547, 2547, 2548, 2548, 8020, 2548, 2548, 2548, 2548, 2548, 2548, 2548, 2548, 2548, 7791, 2548, 2548, 7850, 8115, 7896, 8114, 7917, 8020, 7850, 7991, 7896, 2548, 2548, 2548, 2548, 2548, 2548, 2548, 7991,10441, 7850,11624, 7896, 2548, 7917, 7657, 7657, 7657, 7657, 7657, 7657, 7657, 7657, 7657, 8152, 8144, 7917, 8114, 8115, 8600,11625, 2548, 2548, 2548, 2550, 2550, 7657, 2550, 2550, 2550, 2550, 2550, 2550, 2550, 2550, 2550, 7997, 2550, 2550, 8144, 8152, 7919, 8124, 8114, 7657, 7997, 7950, 8000, 2550, 2550, 2550, 2550, 2550, 2550, 2550, 7950, 8000, 11640, 8685, 8600, 2550, 8138, 7950, 2550, 7937, 7937, 7937, 7937, 7937, 7937, 7937, 7937, 7937, 8234, 7994, 7919, 8084, 8124, 2550, 2550, 2550, 2551, 2551, 7994, 2551, 2551, 2551, 2551, 2551, 2551, 2551, 2551, 2551, 7919, 2551, 2551, 8138, 7919, 7994, 8685, 8234, 8084, 8084, 7957, 7963, 2551, 2551, 2551, 2551, 2551, 2551, 2551, 7957, 7963, 8084, 8468, 8665, 2551, 8468, 7957, 7963, 7658, 7658, 7658, 7658, 7658, 7658, 7658, 7658, 7658, 7953, 7954, 7960, 8468, 7988, 2551, 2551, 2551, 7995, 7953, 7954, 7960, 7658, 7988, 8032, 8108, 7953, 7995, 7960, 8027, 7988, 7953, 7954, 7960, 7995, 8665, 8032, 2551, 2552, 2552, 7658, 2552, 2552, 2552, 2552, 2552, 2552, 2552, 2552, 2552, 8027, 2552, 2552, 8158, 8032,11648,11691, 8108, 7953, 7954, 7960, 8158, 2552, 2552, 2552, 2552, 2552, 2552, 2552, 7961, 7964, 8094, 7998, 8003, 2552, 8008, 8011, 8027, 7961, 7964, 2552, 7998, 8003, 8094, 8008, 8011, 7964, 8108, 7998, 8142, 7961, 7964, 2552, 2552, 2552, 2557, 2557, 8003, 2557, 2557, 2557, 2557, 2557, 2557, 2557, 2557, 2557, 2557, 2557, 2557, 8179,11694, 8142,11803, 8022, 8082, 8094, 7961, 7964, 2557, 2557, 2557, 2557, 2557, 2557, 2557, 8022, 11815, 8276, 8022, 8238, 2557, 7686, 7686, 7686, 7686, 7686, 7686, 7686, 7686, 7686, 8238, 8088, 8179, 8022, 8276, 8004, 8082, 7686, 2557, 2557, 2557, 2557, 2558, 2558, 8004, 2558, 2558, 2558, 2558, 2558, 8009, 8004, 2558, 2558, 2558, 8014, 8024, 8276, 8056, 8009, 8599, 8082, 7686, 8088, 8014, 8024, 8009, 2558, 2558, 2558, 2558, 2558, 2558, 8179, 8082, 8088, 11829, 9986, 2558, 8014, 8056, 7691, 7691, 7691, 7691, 7691, 7691, 7691, 7691, 7691, 8088, 8485, 8105, 8056, 8085, 8599, 2558, 2558, 2558, 2558, 2559, 2559, 7691, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 7965, 2559, 2559, 9986, 8302, 8485, 8105, 8085, 7691, 7965, 8028, 8105, 2559, 2559, 2559, 2559, 2559, 2559, 2559, 8028, 8085, 7965,11844, 8220, 2559, 7980, 7980, 7980, 7980, 7980, 7980, 7980, 7980, 7980, 8028, 8220, 8302, 8315, 8315, 8315, 8315,11845, 2559, 2559, 2559, 2559, 2560, 2560, 7965, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2560, 2561, 2561, 8045, 2561, 2561, 2561, 2561, 2561, 2561, 2561, 2561, 2561, 2561, 2561, 2561, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 8034, 2561, 2561, 2561, 2561, 2561, 2561, 2561,11856,11811, 8691, 8045, 11811, 2561, 7722, 7722, 7722, 7722, 7722, 7722, 7722, 7722, 7722, 8239, 8180, 8104, 8111, 8139, 8015, 8045, 7722, 2561, 2561, 2561, 2561, 2562, 2562, 8015, 2562, 2562, 2562, 2562, 2562, 8026, 8015, 2562, 2562, 2562, 8083, 8139, 8239, 8691, 8026, 8111, 8083, 7722, 8104, 8180, 8111, 8026, 2562, 2562, 2562, 2562, 2562, 2562, 8139, 8698, 8481, 8139, 8104, 2562, 8223, 8083, 7765, 7765, 7765, 7765, 7765, 7765, 7765, 7765, 7765, 8244, 8223, 8481, 8083, 8180,11857, 2562, 2562, 2562, 2562, 2563, 2563, 7765, 2563, 2563, 2563, 2563, 2563, 2563, 2563, 2563, 2563, 2563, 2563, 2563, 8481, 8698, 8244, 8043, 8043, 7765, 8112, 8120, 8120, 2563, 2563, 2563, 2563, 2563, 2563, 2563, 2563, 8120, 8702, 8702, 8702, 2563, 8243, 8597, 7768, 7768, 7768, 7768, 7768, 7768, 7768, 7768, 7768, 8243, 8043, 8218, 8218, 8043, 8112, 2563, 2563, 2563, 2563, 2565, 2565, 7768, 2565, 2565, 2565, 2565, 2565, 2565, 2565, 2565, 2565, 8043, 2565, 2565, 8091, 8597,11960, 8317, 8149, 7768, 8218, 8132, 8132, 2565, 2565, 2565, 2565, 2565, 2565, 2565, 8112, 8132,10416, 8835, 8091, 2565, 7816, 7816, 7816, 7816, 7816, 7816, 7816, 7816, 7816, 8149, 8091, 8057, 8269, 8317, 8149, 8148, 7816, 2565, 2565, 2565, 2567, 2567, 8090, 2567, 2567, 2567, 2567, 2567, 2567, 2567, 2567, 2567, 2567, 2567, 2567, 8148, 8091, 8129, 8835, 8269,10416, 7816, 8090, 8057, 2567, 2567, 2567, 2567, 2567, 2567, 2567, 7993, 7842, 8189, 8090,11961, 2567,10701, 8823, 8148, 7993, 8189, 8090, 7842, 7842, 7842, 7842, 7842, 7842, 7842, 7842, 7842, 7993, 8113, 2567, 2567, 2567, 2567, 8057, 8270, 8163, 2567, 2574, 2574, 7842, 2574, 2574, 2574, 2574, 2574, 2574, 2574, 2574, 2574, 8192, 2574, 2574, 8129, 8823, 7993,10701, 8270, 8192, 8278, 8129, 8113, 2574, 2574, 2574, 2574, 2574, 2574, 2574, 7992, 8001, 8278,12188, 8130, 2574, 8270, 8046, 8021, 7992, 8001, 2574, 8058, 8130, 8163, 8021, 7992, 8001, 8415, 8163, 8021, 7992, 8001, 2574, 2574, 2574, 2578, 2578, 8113, 2578, 2578, 2578, 2578, 2578, 2578, 2578, 2578, 2578, 8021, 2578, 2578, 8046, 8426, 8677, 8058, 8415, 8248, 8268, 7992, 8001, 2578, 2578, 2578, 2578, 2578, 2578, 2578, 8248, 8268, 8046, 8426, 8130, 2578, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 7853, 8431, 8046, 8442, 8164, 8426, 8677, 8058, 2578, 2578, 2578, 2579, 2579, 7853, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 8002, 2579, 2579, 8955, 8164, 8431, 8092, 8442, 7853, 8002, 8121, 8121, 2579, 2579, 2579, 2579, 2579, 2579, 2579, 8121, 8447, 8002, 7851, 8955, 2579, 7851, 8092, 7851, 8164, 8198, 8290, 7851, 8290, 8164, 7851, 7851, 7851, 8198, 8092, 7851, 8006, 8290, 2579, 2579, 2579, 7851, 12193, 8447, 8002, 8006, 2579, 2580, 7875, 7875, 7875, 7875, 7875, 7875, 7875, 7875, 7875, 8006, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 2580, 8092, 2580, 7875, 7891, 7891, 7891, 7891, 7891, 7891, 7891, 7891, 7891, 2580, 7904, 8686, 8202, 8474, 8006, 8822, 7891, 7875,12243, 7875, 8202, 7904, 7904, 7904, 7904, 7904, 7904, 7904, 7904, 7904, 8035, 8035, 8035, 8035, 8035, 8035, 8035, 8035, 8035, 8822, 8474, 7891, 7904, 2580, 2587, 2587, 8686, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2587, 2588, 2588, 7877, 2588, 2588, 2588, 2588, 2588, 8507,12245, 2588, 2588, 2588, 7877, 7877, 7877, 7877, 7877, 7877, 7877, 7877, 7877, 8394, 8206, 8210, 2588, 2588, 2588, 2588, 2588, 2588, 8206, 8210, 8394, 7877, 8507, 2588, 8430, 8059, 7967, 7967, 7967, 7967, 7967, 7967, 7967, 7967, 7967, 8430, 8819, 8819, 8819, 7877, 9504, 2588, 2588, 2588, 2588, 2589, 2589, 7967, 2589, 2589, 2589, 2589, 2589, 2589, 2589, 2589, 2589, 8059, 2589, 2589, 8036, 8036, 8036, 8036, 8036, 8036, 8036, 8036, 8036, 2589, 2589, 2589, 2589, 2589, 2589, 2589, 8221, 8221, 8221, 8059, 9504, 2589, 8065, 7972, 7972, 7972, 7972, 7972, 7972, 7972, 7972, 7972, 8059, 8690, 8836, 8168, 8690, 8221, 8690, 2589, 2589, 2589, 2590, 2590, 7972, 2590, 2590, 2590, 2590, 2590, 2590, 2590, 2590, 2590, 8065, 2590, 2590, 8052, 8052, 8052, 8052, 8052, 8052, 8052, 8052, 8052, 2590, 2590, 2590, 2590, 2590, 2590, 2590, 2590, 8005, 8836, 8232,12253, 2590,12255, 8237, 8441, 8168, 8005, 8232, 8070, 8168, 8168, 8237, 8065, 8005, 8168, 8441, 8862, 8475, 8005, 2590, 2590, 2590, 2594, 2594, 8060, 2594, 2594, 2594, 2594, 2594, 2594, 2594, 2594, 2594, 8013, 2594, 2594, 8171, 8862, 8475, 8070, 8222, 8061, 8013, 8060, 8005, 2594, 2594, 2594, 2594, 2594, 2594, 2594, 7906, 9157, 8013, 8060, 8475, 2594, 8169, 8947, 9157, 8061, 8126, 7906, 7906, 7906, 7906, 7906, 7906, 7906, 7906, 7906, 8222, 8061, 8070, 2594, 2594, 2594, 2594, 8031, 8338, 8013, 8753, 8171, 7906, 8222, 8031, 8242, 8171, 8338, 8060, 8031, 2594, 2605, 2605, 8242, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 8169, 2605, 2605, 8061, 8031, 8169, 8754, 8753, 8602, 8169, 8417, 8126, 2605, 2605, 2605, 2605, 2605, 2605, 2605, 8126, 8417,12270, 8947, 8947, 2605, 8077, 8077, 8077, 8077, 8077, 8077, 8077, 8077, 8077, 8172, 8126, 8754, 8063, 8063, 8063, 8170, 8602, 2605, 2605, 2605, 2605, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2608, 2610, 2610, 8063, 2610, 2610, 2610, 2610, 2610, 2610, 2610, 2610, 2610, 8172, 2610, 2610,12272, 8170, 8172, 8170,12276, 8063, 8704, 8172, 8170, 2610, 2610, 2610, 2610, 2610, 2610, 2610, 8012, 8016, 8704, 8247, 8128, 2610, 8063, 8251, 8066, 8012, 8016, 8247, 8258, 8128, 8128, 8251, 8012, 8016, 8515, 8343, 8258, 8012, 8016, 2610, 2610, 2610, 2617, 2617, 8343, 2617, 2617, 2617, 2617, 2617, 2617, 2617, 2617, 2617, 8017, 2617, 2617, 8153, 8066, 8666, 8539, 8515, 8446, 8017, 8012, 8016, 2617, 2617, 2617, 2617, 2617, 2617, 2617, 8446, 8340, 8017, 8066, 8128, 2617, 8029, 8030, 8153, 8128, 8340, 8173, 8666, 8174, 8539, 8029, 8030, 8340, 8066, 8153, 8066, 7907, 8029, 2617, 2617, 2617,12279, 8029, 8030, 8017, 2617, 2618, 7907, 7907, 7907, 7907, 7907, 7907, 7907, 7907, 7907, 8451, 12280, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 2618, 8451, 7907, 8029, 8030, 8861, 8473, 8173, 8261, 8174, 8267, 7908, 8173, 2618, 8174, 7907, 8261, 8473, 8267, 8174, 8506, 8514, 7908, 7908, 7908, 7908, 7908, 7908, 7908, 7908, 7908, 8506, 8514, 2618, 8861, 2618, 2618, 2618, 2618, 2618, 2618, 2624, 2624, 7908, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2624, 2636, 2636,12282, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2636, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 2639, 8225, 8225, 8225, 8225, 8225, 8225, 2639, 2639, 2639, 2639, 2639, 2639, 7909, 8067, 8363, 8067, 8110,12295, 8544, 8549,12297, 8225, 8363, 7909, 7909, 7909, 7909, 7909, 7909, 7909, 7909, 7909, 8378, 2639, 2639, 2639, 2639, 2639, 2639, 2647, 8071, 8378, 8071, 8878, 7909, 8544, 8549, 8067, 8110, 8519, 2647, 2647, 2647, 2647, 2647, 2647, 2647, 2647, 2647, 2647, 8519, 8291, 8308, 8291, 8308, 8067, 2647, 2647, 2647, 2647, 2647, 2647, 8291, 8308, 8071, 8175, 8346, 8160, 8346, 8291, 8062, 8062, 8067, 8110, 8878, 8160, 8160, 8346, 8876, 8183, 8183, 8496, 8071, 2647, 2647, 2647, 2647, 2647, 2647, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 2648, 8089, 8071, 8071, 8062, 8348, 8496, 8062, 2648, 2648, 2648, 2648, 2648, 2648, 8348, 8175, 8183, 8386, 8381, 8386, 8175, 8089, 8395, 8876, 8496, 8062, 8160, 8381, 8386, 8348, 8395, 8160, 8175, 8089, 8183, 2648, 2648, 2648, 2648, 2648, 2648, 2649, 8062, 2649, 2649, 2649, 2649, 2649, 2649, 2649, 2649, 2649, 2649, 8663,12303, 8582, 8309, 8183, 8309, 2649, 2649, 2649, 2649, 2649, 2649, 8123, 8389, 8309,12305, 8089, 9154, 9154, 9154, 8582, 8309, 8389, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 8123, 8663, 2649, 2649, 2649, 2649, 2649, 2649, 2667, 2667, 8582, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2667, 2670, 2670, 2670, 2670, 2670, 2670, 2670, 2670, 2670, 2670, 8227, 8227, 8227, 8227, 8227, 9631, 2670, 2670, 2670, 2670, 2670, 2670, 8195, 8195, 8195, 8195, 8195, 8195, 8195, 8195, 8195, 8227, 8399, 8410, 8429, 8881, 8185, 8185, 9631, 7973, 8399, 8410, 8429, 2670, 2670, 2670, 2670, 2670, 2670, 2678, 7973, 7973, 7973, 7973, 7973, 7973, 7973, 7973, 7973, 8881, 2678, 2678, 2678, 2678, 2678, 2678, 2678, 2678, 2678, 2678, 8185, 7973, 8387, 8379, 8538, 8434, 2678, 2678, 2678, 2678, 2678, 2678, 8379, 8434, 7973, 8538, 8383, 8598, 8185, 8379, 8068, 8437, 8068, 8387, 8565, 8383, 8598, 8178, 8178, 8437, 8185, 8271, 8383, 2678, 2678, 2678, 2678, 2678, 2678, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 2679, 8271, 8178, 8387, 8565, 8688, 8271, 8068, 2679, 2679, 2679, 2679, 2679, 2679, 8178, 8217, 8217, 8217, 8217, 8217, 8217, 8217, 8217, 8217, 8271, 8068,11719, 9300, 8570, 8880, 8688, 8272, 8178, 8689, 8068, 2679, 2679, 2679, 2679, 2679, 2679, 2680, 8068, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 2680, 8272, 8469, 8570, 8272, 8445, 8384, 2680, 2680, 2680, 2680, 2680, 2680, 8445, 8469, 8384, 8689, 9300, 8880, 8272, 8543, 8224, 8224, 8224, 8224, 8224, 8224, 8224, 8224, 8224, 8384, 8543, 8469, 11719, 2680, 2680, 2680, 2680, 2680, 2680, 2708, 2708, 8224, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2708, 2710, 8228, 8228, 8228, 8228, 8228, 8228,12309, 2710, 8548, 8228, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 8548,10768, 8228,12312,12313, 8632,10768, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2710, 2713, 2713, 8632, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 8273, 2713, 2713, 8069, 8162, 8069, 8297, 8297, 8297, 8297, 8297, 8883, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 8162, 8390, 8274, 8273, 8321, 2713, 8450, 8454, 8297, 8273, 8390, 8461, 8274, 8069, 8450, 8454,12315, 8390, 8069, 8461, 8664, 8273, 8390, 2713, 2713, 2713, 2713, 2720, 8080, 12444, 8664, 8162, 8162, 8883, 8274,12493, 8069, 8162, 8321, 8080, 8080, 8080, 8080, 8080, 8080, 8080, 8080, 8080, 8162, 8390, 8464, 8162, 8274, 8069, 8472, 8505, 8321, 8477, 8464, 2720, 8080, 8877, 8472, 8505, 8491, 8493, 2720, 8493, 8321, 8483, 8491, 8709, 2720, 8327, 8327, 8327, 8327, 8327, 8327, 8477, 8709, 2720, 8477, 2720, 8513, 2720, 8877, 8483, 2720, 2720, 8553, 8491, 8513, 2720, 8327, 8483, 2720, 8477, 2720, 8493, 2720, 8553, 2720, 2720, 2720, 2721, 8226, 8226, 8226, 8226, 8226, 8226, 8226, 8226, 8226, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 8257, 8391, 8479,12514, 8226, 8518, 8705, 8522, 8257, 8755, 8391, 8493, 8479, 8518, 2721, 8522, 8583, 8484, 8705, 8583, 2721, 2721, 8391, 8661, 8277, 8277, 8277, 8277, 8277, 8277, 8277, 8277, 8277, 8257, 8479, 8484, 2721, 8583, 2721, 8537, 2721, 8661, 8755, 2721, 2721, 8277, 8542, 8537, 2721, 8391, 8484, 2721, 8479, 2721, 8542, 2721, 8661, 2721, 2721, 2721, 2722, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8287, 8288, 8288, 8288, 8288, 8288, 8288, 8288, 8288, 8288, 8288, 8289, 8289, 8289, 8289, 8289, 8289, 8289, 8289, 8289, 8289, 9076, 2722, 8547, 8502, 8488, 8601, 8486, 8601, 2722, 8488, 8547, 8294, 8294, 8294, 8294, 8294, 8294, 8294, 8294, 8294, 8488, 8502, 9076, 2722, 8486, 2722, 2722, 2722, 8486, 8502, 2722, 2722, 8294, 8495, 8495, 2722, 8486,12519, 2722, 8601, 2722, 8638, 2722, 8864, 2722, 2722, 2722, 2723, 8296, 8296, 8296, 8296, 8296, 8296, 8296, 8296, 8296, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8305, 8495, 8638, 8296, 8495, 8345, 8294, 8345, 8345, 8345, 8345, 8345, 8345, 2723, 8556, 8864, 8345, 8556, 8864, 8495, 2723, 8306, 8306, 8306, 8306, 8306, 8306, 8306, 8306, 8306, 8306, 8611, 8552, 8559, 8750, 2723, 8707, 2723, 2723, 2723, 8552, 8559, 2723, 2723, 8556, 8562, 8750, 2723, 8707, 8611, 2723, 8707, 2723, 8562, 2723, 8611, 2723, 2723, 2723, 2724, 8307, 8307, 8307, 8307, 8307, 8307, 8307, 8307, 8307, 8307, 8318, 8318, 8318, 8318, 8318, 8318, 8318, 8318, 8318, 8326, 8326, 8326, 8326, 8326, 8326, 8326, 8326, 8326, 8563, 8418, 8418, 2724, 9689,12646, 8577, 8886,12654, 8577, 2724, 8563, 8326, 8336, 8336, 8336, 8336, 8336, 8336, 8336, 8336, 8336, 8568, 8569,11715, 2724, 9689, 2724, 8501, 2724, 8568, 8573, 2724, 2724, 8569, 8418, 8577, 2724, 8886, 8573, 2724, 8886, 2724, 8418, 2724, 8574, 2724, 2724, 2724, 2724, 2725, 8581, 8501, 8418, 8584, 8587, 8574, 8342, 2725, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8342, 8344, 8501, 8344, 8344, 8344, 8344, 8344, 8344, 8344, 8344, 8344, 8344, 11715, 2725, 8980,12664, 8581, 8584, 8587, 8581, 2725, 8358, 8358, 8358, 8358, 8358, 8358, 8358, 8358, 8419, 8419, 8590, 8580, 8589, 8581, 2725, 8622, 2725, 8980, 2725, 8580, 8358, 2725, 2725, 8622, 8625, 8587, 2725, 2725, 8419, 2725, 8584, 2725, 8625, 2725, 8586, 2725, 2725, 2725, 2732, 8588, 2732, 8594, 8590, 8595, 8589,12675, 8419, 2732, 8374, 8374, 8374, 8374, 8374, 8374, 8374, 8374, 8374, 8375, 8375, 8375, 8375, 8375, 8375, 8375, 8375, 8375, 8586, 8589, 8421, 8421, 8421, 8588, 2732, 8594, 8606, 8595, 8764, 8590, 8631, 2732, 8376, 8376, 8376, 8376, 8376, 8376, 8376, 8376, 8376, 8421, 8631, 8636, 8606, 8629, 2732, 8588, 2732, 2732, 2732, 8636, 8606, 2732, 2732, 8764, 8629, 8586, 2732, 8421, 8631, 2732, 8482, 2732, 8595, 2732, 8594, 2732, 2732, 2732, 2738, 8420, 8420, 8420, 8420, 8420, 8420, 8420, 8420, 8420, 2738, 8892, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 8422, 8422,10319, 8420, 8596, 8476, 8478, 8482, 8641, 8497, 8497, 8608, 8596, 2738, 8422, 8482, 8641, 8769,12717, 8593, 2738, 8420, 8476, 8591, 8892, 8482, 2738, 8476, 8478, 8608, 8497, 8712, 8422, 8608, 8478, 2738, 8596, 2738, 8637, 2738, 8712,10319, 2738, 2738, 8769, 8476, 8478, 2738, 8497, 8637, 2738, 8593, 2738, 8608, 2738, 8591, 2738, 2738, 2738, 2739, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 8424, 2739, 8585, 8425, 8425, 8425, 8425, 8425, 8425, 8425, 8425, 8425, 9387, 8424, 8642, 8534, 8534, 8534, 8534, 8534, 8591, 8603, 8591, 2739, 8425, 8642, 8593, 8607,12720, 8603, 2739, 8424, 8607, 8645, 8585, 8652, 8534, 8612, 8655, 8603, 8585, 8645, 8425, 8652, 8781, 2739, 8655, 2739, 9387, 2739, 8607, 2739, 2739, 2739, 8534, 8612, 8714, 2739, 8607, 2739, 2739, 8585, 2739, 8612, 2739, 8714, 2739, 2739, 2739, 2760, 2760, 8781, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 8984, 8498, 8498, 8498, 8498, 8498, 8498, 8498, 8498, 8498, 8619, 8984, 2760, 2760, 2760, 2760, 2760, 2760, 2760, 8604, 8604, 8660, 8498, 8605, 2760, 8959, 8679, 8617, 8619, 8964, 2760, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 8460, 8498, 8605, 2760, 2760, 2760, 2760, 2764, 8460, 8609, 8617, 8679, 8619, 8679, 8604,12721, 8660, 8706, 8959,12724, 8964, 8605, 8833, 8604, 8706, 8660, 8605, 8609, 8617, 8706, 8833, 8609, 8604, 8460, 8660, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2764, 2766, 8499, 8499, 8499, 8499, 8499, 8499, 8499, 8499, 8499, 8989, 8795, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 2766, 8989, 8499, 8500, 8500, 8500, 8500, 8500, 8500, 8500, 8500, 8500, 8610, 2766, 8614, 8614, 8977, 8668, 8795, 8676, 8499, 8678, 8717, 8720, 8500, 8668,10361, 8678, 8977, 8738, 8610, 8717, 8720, 2766, 8614, 2766, 2766, 2766, 2766, 2766, 2766, 2767, 8500,12725,10361, 8678, 8717,10598, 8610, 8668, 8738, 8676, 8614, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 2767, 8592, 2767, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 8528, 8723, 2767, 8669, 8985, 8738, 8618, 8618, 8528,10598, 8723, 8533, 8533, 8533, 8533, 8533, 8533, 8533, 8533, 8533, 8676, 8735, 8592, 8669,12733, 8757, 12734, 8618, 8825, 8894, 8735, 8985, 8533, 8528, 8757, 8669, 2767, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 8618, 8825, 2775, 2775, 2775, 8533, 8879, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 2775, 8592, 2775, 2775, 2775, 2775, 2775, 2775, 8592, 8825, 8894, 8671, 8672, 2775, 8564, 8564, 8564, 8564, 8564, 8564, 8564, 8564, 8564, 8672, 8672, 8672, 8879, 8616, 8616, 8616, 8564, 2775, 2775, 2775, 2775, 2776, 2776, 2776, 2776, 2776, 2776, 2776, 2776, 8671, 8672, 2776, 2776, 2776, 8616, 8850, 2776, 2776, 2776, 8884, 8884, 8564, 8671, 8773, 8726, 8739, 2776, 2776, 2776, 2776, 2776, 2776, 8616, 8726, 8739, 8773, 8994, 2776, 8703, 8703, 8703, 8703, 8703, 8703, 8703, 8703, 8703, 8994, 8726, 8739, 8850, 8884, 8760, 8773, 8850, 2776, 2776, 2776, 2776, 2779, 2779, 8760, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2779, 2782, 2782, 2782, 2782, 2782, 2782, 2782, 2782, 2782, 2782, 8675, 8747, 8747, 8747,12742,10320, 2782, 2782, 2782, 2782, 2782, 2782, 8651, 8651, 8651, 8651, 8651, 8651, 8651, 8651, 8651,12743, 8747, 9383, 8990,12755, 9049,10320, 8651, 8751, 8751, 8751, 8675, 2782, 2782, 2782, 2782, 2782, 2782, 2784, 2784, 2784, 2784, 2784, 2784, 2784, 2784, 2784, 2784, 9383, 8751, 8990, 8711, 8651, 2784, 2784, 2784, 2784, 2784, 2784, 2784, 8711, 8858, 8730, 8718, 8675, 8670, 9049, 8711, 8730, 8858, 8752, 8766, 8718, 8995, 8730, 8683, 8670, 8670, 8670, 8718, 8766, 2784, 2784, 2784, 2784, 2784, 2784, 2788, 2788, 2788, 2788, 2788, 2788, 2788, 2788, 2788, 2788, 8670, 9380, 12756, 8995, 8715, 8752, 2788, 2788, 2788, 2788, 2788, 2788, 8683, 8715, 8682, 8683, 8731, 8732, 8752, 8774, 8715, 9491, 8731, 8732, 8732, 8715, 9380, 8670, 8731, 8732, 8683, 8774, 8828, 2788, 2788, 2788, 2788, 2788, 2788, 2790, 2790, 2790, 2790, 2790, 2790, 2790, 2790, 2790, 8682, 8774, 8828, 9491, 8715, 8716, 2790, 2790, 2790, 2790, 2790, 2790, 2790, 8721, 8716, 8727, 8737, 8882, 8682, 8933, 9646, 8778, 8721, 8828, 8727, 8737, 8716, 8933, 8684, 8721, 8778, 8727, 8737, 8682, 2790, 2790, 2790, 2790, 2790, 2790, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 2796, 9646,12769, 8882, 8716, 8724, 8725, 2796, 2796, 2796, 2796, 2796, 2796, 8684, 8724, 8725, 8743, 8733, 8742, 9775, 9211, 8724, 8743, 8733, 8742, 8742, 8724, 8725, 8743, 8733, 8742, 8684, 8733, 8826, 2796, 2796, 2796, 2796, 2796, 2796, 2800, 2800, 2800, 2800, 2800, 2800, 2800, 2800, 2800, 2800, 9775, 8826, 9211, 8724, 8725, 8684, 2800, 2800, 2800, 2800, 2800, 2800, 8792, 8806, 8809, 8887, 8758,12770, 8983,12779, 8885, 8792, 8806, 8809, 8826, 8758, 8983, 8749, 8749, 8749, 8749, 8749, 8758, 2800, 2800, 2800, 2800, 2800, 2800, 2802, 2802, 2802, 2802, 2802, 2802, 2802, 2802, 2802, 8749, 8829, 8887, 8885, 8728, 8729, 8740, 2802, 2802, 2802, 2802, 2802, 2802, 8728, 8729, 8740, 8885, 9501, 8999, 8829, 8728, 8775, 8740,12781, 9501, 8728, 8729, 8740, 8775, 8999, 8829, 8888, 8838, 8775, 2802, 2802, 2802, 2802, 2802, 2802, 2814, 2814, 2814, 2814, 2814, 2814, 2814, 2814, 2814, 2814, 8906, 8775, 8728, 8729, 8740, 8741, 2814, 2814, 2814, 2814, 2814, 2814, 8762, 8768, 8741, 8780, 8888, 8838, 8785, 8906, 8786, 8762, 8768, 8838, 8780, 8785, 8741, 8946, 8762, 8768, 8785, 8780, 8786, 2814, 2814, 2814, 2814, 2814, 2814, 2816, 2816, 2816, 2816, 2816, 2816, 2816, 2816, 2816, 8785, 8776, 8786, 9686, 8906, 8741, 8763, 2816, 2816, 2816, 2816, 2816, 2816, 8776, 8946, 8763, 8776, 8874, 8830, 12782, 8745, 8745, 8745, 8745, 8745, 8745, 8745, 8745, 8745, 8874, 8763, 8776, 8837, 9686, 2816, 2816, 2816, 2816, 2816, 2816, 2824, 8745, 2824, 2824, 2824, 2824, 2824, 2824, 2824, 2824, 2824, 2824, 8830, 8874, 9000, 8770, 8771, 8772, 2824, 2824, 2824, 2824, 2824, 2824, 8770, 8771, 8772, 8837, 8837, 9004, 8830, 8787, 8771, 8837, 9050,12792,12841, 8771, 8772, 8770, 9004, 9000, 8830, 8787, 8890, 2824, 2824, 2824, 2824, 2824, 2824, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 2828, 8787, 8788, 9050, 8771, 8772, 8782, 2828, 2828, 2828, 2828, 2828, 2828, 8794, 8788, 8782, 8890, 8903, 8921, 8890, 9940, 8789, 8794,12847, 8921, 9075, 8921, 9940, 8789, 8794, 8782, 8903, 8788, 8789, 2828, 2828, 2828, 2828, 2828, 2828, 2831, 2831, 2831, 2831, 2831, 2831, 2831, 2831, 2831, 2831, 8903, 8789, 8790, 8783, 8784, 8951, 2831, 2831, 2831, 2831, 2831, 2831, 8783, 8784, 8790, 8868, 9075, 8790, 8800, 8783, 8922,12848, 8922, 8988, 8783, 8784,10436, 8868, 8922, 8870, 8800, 8988, 8790, 2831, 2831, 2831, 2831, 2831, 2831, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 2839, 8800, 8870, 8868, 8783, 8784, 8796, 8797, 2839, 2839, 2839, 2839, 2839, 2839, 8870, 8796, 8797, 8807, 8951, 8993, 9015,10436, 8799, 8797, 9124, 8951, 8807, 8993, 8797, 8799, 8796, 9015, 8891, 8807, 8799, 2839, 2839, 2839, 2839, 2839, 2839, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 2841, 9124, 8799, 8870, 8813, 8797, 8812, 2841, 2841, 2841, 2841, 2841, 2841, 8813, 8891, 8812, 9611, 9611, 9611, 9032, 8813, 8613, 8613, 8613, 8613, 8613, 8613, 8613, 8613, 8613, 8812, 9032, 9184, 9068, 2841, 2841, 2841, 2841, 2841, 2841, 2844, 2844, 8613, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 8871, 8891, 8851, 8869, 9184, 8613, 8869, 9068, 8925, 2844, 2844, 2844, 2844, 2844, 2844, 2844, 8925, 9498, 8869, 8925, 8871, 2844, 8615, 8615, 8615, 8615, 8615, 8615, 8615, 8615, 8615, 8851, 8871, 8869, 9107, 8904, 9177, 8851,12866, 2844, 2844, 2844, 2844, 8615, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8630, 8865, 8904, 9107, 8865, 9177, 9498, 8907, 8904, 8615, 2844, 2845, 2845, 8630, 2845, 2845, 2845, 2845, 2845, 2845, 2845, 2845, 2845, 2845, 2845, 2845, 8907, 9225, 9226, 8865, 9107, 8630, 9177, 8630, 9564, 2845, 2845, 2845, 2845, 2845, 2845, 2845, 8865, 8972, 8972, 8972, 9564, 2845, 9019, 8839, 8746, 8746, 8746, 8746, 8746, 8746, 8746, 8746, 8746, 9019, 9226, 8907, 9225,12867, 8972, 2845, 2845, 2845, 2845, 2863, 2863, 8746, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 8839, 2863, 2863, 8802, 8802, 8802, 8802, 8802, 8802, 8802, 8802, 8802, 2863, 2863, 2863, 2863, 2863, 2863, 2863, 8974, 8974, 8974, 8974, 8974, 2863, 8839, 8748, 8748, 8748, 8748, 8748, 8748, 8748, 8748, 8748, 8839, 8839, 9562, 9240,12868, 8974,12869, 2863, 2863, 2863, 2864, 2864, 8748, 2864, 2864, 2864, 2864, 2864, 2864, 2864, 2864, 2864, 8866, 2864, 2864,12870, 9562, 8956, 8956, 8956, 9240, 8866, 8798, 8810, 2864, 2864, 2864, 2864, 2864, 2864, 2864, 8798, 8810, 8875, 8958, 8926, 2864, 8866, 8926, 8810, 8845, 8845, 8845, 8798, 8810, 8875, 8926, 8633, 2864, 8910, 8866, 8956,12871,10710, 2864, 2864, 2864, 8841, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 8633, 8958, 8910, 8956, 8798, 8810, 9790,10710, 8845, 8875, 2864, 2865, 2865, 8633, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 8841, 2865, 2865, 8845, 8958, 9299, 8910, 9790, 8633, 9258, 9112, 8910, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 2865, 8845, 9112,12872, 9136, 2865, 8803, 8803, 8803, 8803, 8803, 8803, 8803, 8803, 8803, 9136, 8841, 9258, 9294,12873, 9294, 9299, 8841, 2865, 2865, 2865, 2870, 2870, 8889, 2870, 2870, 2870, 2870, 2870, 2870, 2870, 2870, 2870, 9294, 2870, 2870, 8804, 8804, 8804, 8804, 8804, 8804, 8804, 8804, 8804, 2870, 2870, 2870, 2870, 2870, 2870, 2870, 8811, 8814, 9170, 8889, 8918, 2870, 8918, 9190, 8998, 8811, 8814, 8827, 8827, 9170, 8918, 8918, 8998, 8814, 9190, 9229, 9263, 8811, 8814, 2870, 2870, 2870, 2871, 2871, 8893, 2871, 2871, 2871, 2871, 2871, 2871, 2871, 2871, 2871, 8889, 2871, 2871, 9359,12877, 9229, 9359, 8827,12878, 9263, 8811, 8814, 2871, 2871, 2871, 2871, 2871, 2871, 2871, 2871, 8815, 9359, 8893, 9229, 2871, 8827, 8844, 8844, 8852, 8815, 8820, 8820, 8820, 8820, 8820, 8820, 8820, 8820, 8820, 9003, 8827, 8815, 2871, 2871, 2871, 2873, 2873, 9003, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 8893, 2873, 2873, 8844, 8957, 8852, 9301, 9304, 9565, 8940, 8940, 8815, 2873, 2873, 2873, 2873, 2873, 2873, 2873, 8940, 9565, 8844,11209, 8852, 2873, 8840, 8817, 8817, 8817, 8817, 8817, 8817, 8817, 8817, 8817, 8852, 8844, 8957, 8844, 9304, 8852, 9301, 2873, 2873, 2873, 2874, 2874, 8817, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 8840, 2874, 2874, 8917, 9643, 8872, 8840,11209, 8919, 9213, 8957, 8917, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 2874, 9213, 8917, 9643, 8923, 2874, 8872, 9643, 8840, 8846, 8846, 8846, 8923, 8908, 8919, 8853, 8840, 8853, 8872, 8908, 9007, 8923, 8919, 2874, 2874, 2874, 2875, 2875, 9007, 2875, 2875, 2875, 2875, 2875, 2875, 2875, 2875, 2875, 8908, 2875, 2875,10699, 8872, 8846, 9231, 9231, 9231,12879, 9239, 8853, 2875, 2875, 2875, 2875, 2875, 2875, 2875, 8667, 9013, 9239, 9638, 8846, 2875, 2875,10699, 9231, 9013, 8853, 8667, 8667, 8667, 8667, 8667, 8667, 8667, 8667, 8667, 9036, 8846, 8929, 2875, 2875, 2875, 9231, 8853, 8853, 9036, 8929, 8929, 8667, 2875, 2876, 2876, 9638, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 8842, 2876, 2876, 8873, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 2876, 8924, 8842, 9671, 8932, 8873, 2876, 8924, 8847, 8847, 8847, 8842, 8932, 8932, 8842, 8924, 9268, 8873, 8927,12881, 8924, 8927, 10440, 8927, 2876, 2876, 2876, 2877, 2877, 8927, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 8843, 2877, 2877, 8847, 9268, 9671, 8920, 9307, 8873, 9307, 8842, 8931, 2877, 2877, 2877, 2877, 2877, 2877, 2877, 8931, 8843, 8847,10440, 9018, 2877, 8931, 9244, 8849, 8849, 8849, 8847, 9018, 8843, 8920, 8848, 8848, 8848, 9244, 8847, 8920, 9366, 9307, 2877, 2877, 2877, 2878, 2878, 8920, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 9022, 2878, 2878,12946, 8849, 9366, 8848,10854, 9022, 9372, 8843, 8848, 2878, 2878, 2878, 2878, 2878, 2878, 2878, 8673, 9087, 9322, 8849, 9366, 2878, 2878, 9372, 9307, 9087, 8848, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 8673, 8849, 8849, 9055, 2878, 2878, 2878,10854, 8848, 9113, 9322, 9372, 9055, 8673, 2878, 2882, 2882, 9113, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2882, 2883, 9098, 9308, 9297, 9376, 9382, 9333,10648,10520, 8863, 9098, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 8863, 8936, 10520, 8901, 8936, 9333, 9308, 9297, 9376, 9382, 8936, 8948, 8936, 8863, 8901, 8901, 8901, 8901, 8901, 8901, 8901, 8901, 8901,10648, 8935, 9297, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2883, 2891, 2891, 2891, 2891, 2891, 2891, 2891, 2891, 2891, 2891,12948, 12948, 9393, 8905, 8948, 8952, 2891, 2891, 2891, 2891, 2891, 2891, 8948, 8905, 8952, 8935, 8935, 8950, 9913, 9248, 9393, 8935, 8905, 8935, 9117, 9393, 8950, 8950, 8948, 8854, 9248, 8854, 9117, 2891, 2891, 2891, 2891, 2891, 2891, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 2893, 8905, 9338, 8954, 8954, 9913, 8905, 2893, 2893, 2893, 2893, 2893, 2893, 8954, 8952, 8854, 9037, 9041, 8854, 9041, 9041, 9041, 9041, 9041, 9041, 9037, 8950, 9636, 9041, 9338, 8674, 8950, 9037, 8854, 2893, 2893, 2893, 2893, 2893, 2893, 2896, 8674, 8674, 8674, 8674, 8674, 8674, 8674, 8674, 8674, 8854, 2896, 2896, 2896, 2896, 2896, 2896, 2896, 2896, 2896, 2896, 8934, 8674, 9636, 9056,12996, 8934, 2896, 2896, 2896, 2896, 2896, 2896, 9056, 8934, 8674, 9042, 9101, 9042,12938, 9056, 9378, 9061, 8934, 9061, 9365, 9101, 9042, 8962, 8962, 8855, 9378, 8855, 9061, 2896, 2896, 2896, 2896, 2896, 2896, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 2901, 8962, 9230, 9365, 9378, 8942, 8943, 2901, 2901, 2901, 2901, 2901, 2901, 8962, 9230, 8855, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 8942, 9493, 9735, 9735, 9735,12938,13006, 8962, 9230, 8855, 2901, 2901, 2901, 2901, 2901, 2901, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 2904, 8855, 9493, 9392, 9106, 9043, 9106, 2904, 2904, 2904, 2904, 2904, 2904, 8943, 9043, 9106, 9131, 8961, 8961, 8963, 8963, 9392, 8943, 9109, 9131, 8909, 9495, 9392, 9425, 9043, 8943, 8909, 9109, 8943, 2904, 2904, 2904, 2904, 2904, 2904, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 2911, 8909, 8961, 9495, 8963, 9062, 9425, 2911, 2911, 2911, 2911, 2911, 2911, 9684, 9062, 9099, 9780, 9137, 9142, 9149, 8961, 9077, 8963, 9433, 9099, 9137, 9142, 9149, 8909, 9062, 8963, 9099, 8961, 8909, 2911, 2911, 2911, 2911, 2911, 2911, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 9433, 9496, 9780,10804, 9684, 9077, 2914, 2914, 2914, 2914, 2914, 2914, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 9014, 8928, 9171, 9077, 9188, 9878, 10804, 9496, 9014, 9296, 9171, 9077, 9188, 2914, 2914, 2914, 2914, 2914, 2914, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 2921, 8928,13025, 9878, 9296, 9161, 9014, 8928, 2921, 2921, 2921, 2921, 2921, 2921, 9161, 8928, 9296,13037, 9039, 8928, 9039, 9039, 9039, 9039, 9039, 9039, 9039, 9039, 9039, 9039, 9384, 9469, 9384, 9426, 9296, 2921, 2921, 2921, 2921, 2921, 2921, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 2922, 8975, 8975, 8975, 8975, 8975, 8975, 2922, 2922, 2922, 2922, 2922, 2922, 9469, 9384, 9426, 9746,13038, 9746, 9746, 9746, 9040, 8975, 9040, 9040, 9040, 9040, 9040, 9040, 9040, 9040, 9040, 9040, 9426, 2922, 2922, 2922, 2922, 2922, 2922, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 2925, 8979, 8979, 8979, 8979, 8979, 8979, 2925, 2925, 2925, 2925, 2925, 2925, 9310, 9310, 9747, 9747, 9747, 9470,12992, 12992, 9058, 8979, 9058, 9058, 9058, 9058, 9058, 9058, 9058, 9058, 9058, 9058, 9310, 2925, 2925, 2925, 2925, 2925, 2925, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 2932, 8930, 9470, 9310, 9438, 9104, 9912, 8930, 2932, 2932, 2932, 2932, 2932, 2932, 9104, 8930, 9060, 9103, 9060, 9060, 9060, 9060, 9060, 9060, 9194, 8930, 9103, 9060, 9464, 9104, 9912, 9438, 9194, 9103, 9207, 2932, 2932, 2932, 2932, 2932, 2932, 2933, 9207, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 2933, 9471, 9702, 9464, 9163, 9164, 9166, 2933, 2933, 2933, 2933, 2933, 2933, 9163, 9164, 9166, 9750, 9750, 9750, 9262, 9163, 8973, 8973, 8973, 8973, 8973, 8973, 8973, 8973, 8973, 9262,10698, 9702, 9471, 2933, 2933, 2933, 2933, 2933, 2933, 2936, 2936, 8973, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 2936,10608, 2936, 2936, 9317, 9027, 9027, 9027, 9027, 9027, 9027, 9169, 9174, 2936, 2936, 2936, 2936, 2936, 2936, 2936, 9169, 9174, 9317, 9235,10698, 2936, 9027, 8976, 8976, 8976, 8976, 8976, 8976, 2936, 9212, 9169, 8976,10608, 9690, 9317, 9561, 9235, 9212, 2936, 2936, 2936, 2937, 2937, 8976, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 9235, 9483, 9561, 9267, 9172, 9272, 2937, 2937, 2937, 2937, 2937, 2937, 2937, 9172, 9267, 9690, 9272,13181, 2937, 9283, 9172, 8978, 8978, 8978, 8978, 8978, 8978, 8978, 8978, 8978, 9283, 9695,11381, 9483, 9390, 10649, 2937, 2937, 2937, 2937, 2938, 2938, 8978, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 2938, 9390, 2938, 2938, 9094, 9094, 9094, 9094, 9094, 9094, 9094, 9094, 9094, 2938, 2938, 2938, 2938, 2938, 2938, 2938,10649, 9695, 9390,11381, 9059, 2938, 9059, 9059, 9059, 9059, 9059, 9059, 9059, 9059, 9059, 9059,12943,12621, 2938,12943,13182, 9216,12621, 2938, 2938, 2938, 2938, 2939, 2939, 9216, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 9238, 2939, 2939, 2939, 2939, 2939, 9227, 9227, 9238, 9287, 9176, 9321, 2939, 2939, 2939, 2939, 2939, 2939, 2939, 9176, 9287, 9243, 9321, 9375, 2939, 9072, 9176, 9072, 9227, 9243, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9072, 9517, 9227, 9375, 2939, 2939, 2939, 2939, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 2951, 9375,12874, 9227,12874, 9517, 9572, 2951, 2951, 2951, 2951, 2951, 2951, 9072, 9095, 9095, 9095, 9095, 9095, 9095, 9095, 9095, 9095, 9096, 9096, 9096, 9096, 9096, 9096, 9096, 9096, 9096, 9517, 9572, 2951, 2951, 2951, 2951, 2951, 2951, 2953, 2953, 2953, 2953, 2953, 2953, 2953, 2953, 2953, 9391, 9428,13242,13254, 9110, 9111, 9332, 2953, 2953, 2953, 2953, 2953, 2953, 9110, 9111, 9159, 9247, 9332, 9391, 9251, 9110, 9261, 9159, 9266, 9247, 9110, 9111, 9251, 9391, 9261, 9159, 9266, 9397, 9428, 2953, 2953, 2953, 2953, 2953, 2953, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 2961, 9397, 9428, 9110, 9111, 9563,10707, 2961, 2961, 2961, 2961, 2961, 2961, 9155, 9155, 9155, 9155, 9155, 9155, 9155, 9155, 9155, 9271, 9232, 9275, 9281, 9397, 9400, 9402,10787, 9271, 9563, 9275, 9281, 2961, 2961, 2961, 2961, 2961, 2961, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969,10707, 9400, 9402, 9337, 9286, 9232, 2969, 2969, 2969, 2969, 2969, 2969, 9286, 9151, 9337,10787,12793, 9669, 9232, 9400, 9402,12793, 9151, 9232, 9151, 9151, 9151, 9151, 9151, 9151, 9151, 9151, 9151, 2969, 2969, 2969, 2969, 2969, 2969, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 9151, 9298, 9669, 9360, 9178, 9342, 9290, 2971, 2971, 2971, 2971, 2971, 2971, 9178, 9290, 9360, 9342,13268, 9303, 9298, 9510, 9078, 9078, 9078, 9078, 9078, 9078, 9303, 9178, 9510, 9078, 9298, 9575, 9360, 2971, 2971, 2971, 2971, 2971, 2971, 2975, 2975, 9078, 2975, 2975, 2975, 2975, 2975, 2975, 2975, 2975, 2975, 9168, 2975, 2975, 9320, 9522, 9309, 9309, 9575,10798, 9168,10000, 9320, 2975, 2975, 2975, 2975, 2975, 2975, 2975, 9026, 9325, 9168, 10000,13270, 2975, 9522,10798,13278, 9325, 9364, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9026, 9309, 9364, 9328, 2975, 2975, 2975, 9389, 9389, 9309, 9168, 9328, 9410, 9026, 9522, 9312, 9312, 9312, 9368, 9309, 2975, 2977, 2977, 9410, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 9312,10435, 9481,13280, 9368, 9389, 9389, 9368, 9415, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 9051, 9167, 9312, 9415,13295, 2977, 9368, 9389,13297,10435, 9167, 9051, 9051, 9051, 9051, 9051, 9051, 9167, 9481, 9379, 9051, 9336, 9167, 2977, 2977, 2977, 2977, 2978, 9341, 9336, 9379, 9379, 9051, 9696, 9377, 9386, 9341, 9386, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 9374, 9481, 9167, 9406, 9379, 9345, 9352, 2978, 2978, 2978, 2978, 2978, 2978, 9345, 9352, 9355, 9363, 9386, 9374, 9377, 9432, 9406, 9386, 9355, 9363, 9409, 9374, 9696, 9377,13301,13304, 9432, 9406, 9409, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2985, 2985, 9394, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 9492, 2985, 2985, 9414, 9494, 9373,13305,12932, 9394,12932, 9437, 9414, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 9179, 9180, 9437, 9442, 9418, 2985, 9394, 9431, 9465, 9179, 9180, 2985, 9418, 9492, 9442, 9431, 9179, 9494, 9637, 9369, 9373, 9179, 9180, 2985, 2985, 2985, 2989, 2989, 9373, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 9373, 2989, 2989, 9369, 9465, 9465, 9637, 9388,13307, 9369, 9179, 9180, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 9388, 9398, 9369, 9465, 9453, 2989, 9201, 9201, 9201, 9201, 9201, 9201, 9201, 9201, 9201, 9453, 9484, 9583, 9388, 9398, 9436, 9367, 9201, 2989, 2989, 2989, 2990, 2990, 9436, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 9367, 2990, 2990, 9395, 9398, 9367, 9583,13314,10453, 9201, 9484, 9441, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 9441, 10453, 9395,10228, 9367, 2990, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9228, 9484, 9526, 9395, 9445, 9395, 9370, 9451, 9526, 2990, 2990, 2990, 9445, 9228, 9526, 9451, 9370, 2990, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 13316, 2991, 9457,10228, 9228, 9295, 9295, 9295, 9295, 9295, 9295, 9370, 2991, 9457, 9466, 9593, 9233, 9233, 9233, 9233, 9233, 9233, 9233, 9233, 9233, 9456, 9295, 9460, 9794, 9370, 2991, 9513, 9466, 9456, 9503, 9460, 9381, 9233, 9381, 9794, 9513, 9503, 9593,10448, 9295, 9381, 2991, 2996, 2996, 9503, 2996, 2996, 2996, 2996, 2996, 9233, 9466, 2996, 2996, 2996, 9311, 9311, 9311, 9311, 9311, 9311, 9311, 9311, 9311,10448, 9381, 9516, 2996, 2996, 2996, 2996, 2996, 2996, 9396,11642, 9516, 9311, 9799, 2996, 9282, 9282, 9282, 9282, 9282, 9282, 9282, 9282, 9282, 9799, 9479, 9516, 9396,11642, 9519, 9311, 9282, 2996, 2996, 2996, 2996, 2997, 2997, 9519, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 9396, 2997, 2997, 9399, 9485, 9477, 9604, 9396, 9282, 9479, 9403, 9403, 2997, 2997, 2997, 2997, 2997, 2997, 2997, 9567, 9511, 9399, 9479, 10454, 2997, 9477, 9527, 2997, 9485, 9511, 9403, 9567, 9527, 9604, 9567,10454, 9511, 9477, 9527, 9485, 9399,13322, 2997, 2997, 2997, 2997, 2998, 2998, 9403, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2998, 2999, 2999, 9467, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 9621, 2999, 2999,11635, 9556, 9556, 9556, 9556, 9556, 9405, 9405, 9405, 2999, 2999, 2999, 2999, 2999, 2999, 2999, 9531, 9541,10305, 9467,10305, 2999, 9556,11635, 9621, 9531, 9541, 9405, 9507, 9507, 9507, 9507, 9507, 9507, 9507, 9507, 9507, 9467,10305, 2999, 2999, 2999, 2999, 3000, 3000, 9405, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000, 3001, 3001,11828, 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, 3001, 9482, 3001, 3001, 9793, 9574, 9558, 9558, 9558, 9427, 9574,11828, 9793, 3001, 3001, 3001, 3001, 3001, 3001, 3001, 9427, 9427, 9427, 9515, 9539, 3001, 9521, 9558, 9488, 9544, 9539, 3001, 9515, 9482, 9675, 9521, 9539, 9574, 9544, 9515, 9523, 9427, 9521, 3001, 3001, 3001, 3001, 3002, 3002, 9523, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 9427, 3002, 3002, 9488, 9482, 9523,13324, 9490, 9675,13328,13331, 9533, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 9533, 9488, 3002, 9528, 3002, 9569, 9474, 9533, 3002, 9528, 9528, 3002, 3002, 3002, 9569, 9528, 3002, 9474, 9474, 9474, 9534, 9490, 3002, 3002, 3002, 9488, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 9313, 9582, 9941, 9795, 9474, 9490, 9582, 9534,13332, 9941, 3002, 3003, 3003, 9313, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 9645, 9670, 9490, 9685, 9795, 9313, 9480, 9582, 9534, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 9480, 9480, 9480, 9804, 3003, 9508, 9508, 9508, 9508, 9508, 9508, 9508, 9508, 9508, 9804, 9645, 9670,13334, 9685, 9579,13530, 9480, 3003, 3003, 3003, 3003, 3004, 3004, 9579, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3005, 3005,10438, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 9589, 3005, 3005,10232, 9560, 9560, 9560, 9560, 9560, 9589,10232, 9535, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 9535, 9547, 3005,10438, 3005, 9560, 9476, 9687, 3005, 9592, 9547, 3005, 3005, 3005, 9592, 9535, 3005, 9476, 9476, 9476, 9476, 9476, 3005, 3005, 3005, 9547, 9315, 9315, 9315, 9315, 9315, 9315, 9315, 9315, 9315, 9603, 9800, 9768, 9476, 9687, 9603, 9592, 9489, 9768, 3005, 3006, 3006, 9315, 3006, 3006, 3006, 3006, 3006, 3006, 3006, 3006, 3006, 3006, 3006, 3006, 9648, 9688, 9768, 9800, 9642, 9315, 9613, 9603, 9614, 3006, 3006, 3006, 3006, 3006, 3006, 3006, 9489, 9529, 9613, 9538, 9614, 3006, 9642, 9529, 9489, 9538, 9538, 3006, 9600, 9529, 9648, 9538, 9529, 9688, 9489, 9648, 9613, 9600, 9614, 3006, 3006, 3006, 3006, 3010, 3010, 9642, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3010, 3012, 3012,13532, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 3012,13576,12942, 9691,12942, 13581, 9478, 9767, 9674, 9674, 3012, 3012, 3012, 3012, 3012, 3012, 3012, 9478, 9478, 9478, 9542, 9548, 3012, 9618, 9697, 9663, 9767, 9566, 3012, 9542, 9548, 9639, 9618, 9674, 9566, 9691, 9542, 9548, 9478, 9566, 3012, 3012, 3012, 3012, 3013, 3013, 9674, 3013, 3013, 3013, 3013, 3013, 3013, 3013, 3013, 3013, 9697, 3013, 3013, 9640, 9663, 9767, 9693, 9639,10700, 9478, 9663,13591, 3013, 3013, 3013, 3013, 3013, 3013, 3013, 9524, 9525, 9640, 9571, 9576, 3013, 9639, 9744, 9744, 9524, 9525, 3013, 9571, 9576, 9640,10700, 9524, 9744, 9693, 9571, 9693, 9524, 9525, 3013, 3013, 3013, 3014, 3014, 9576, 3014, 3014, 3014, 3014, 3014, 3014, 3014, 3014, 3014, 9537, 3014, 3014,13595, 9664, 9938, 9938, 9938, 9616, 9537, 9524, 9525, 3014, 3014, 3014, 3014, 3014, 3014, 3014, 9647, 9616, 9537, 13598, 9616, 3014, 9738, 9664, 9805, 9316, 9316, 9316, 9316, 9316, 9316, 9316, 9316, 9316, 9580, 9616, 9664, 9676, 9590, 3014, 3014, 3014, 3021, 9580, 3021, 9537, 9316, 9590, 9647, 9676, 9580, 9805, 9738, 9738, 9590, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 3021, 9316, 3021, 9351, 9351, 9351, 9351, 9351, 9351, 9351, 9351, 9351, 9810, 3021, 9815, 9676, 9831,13606,13611, 9351, 9647, 9401, 9401, 9401, 9401, 9401, 9401, 9401, 9401, 9401, 9452, 9452, 9452, 9452, 9452, 9452, 9452, 9452, 9452, 9810,10442, 9815, 9401, 9831, 9351, 9764, 9452, 3021, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 9401, 3022, 3022, 9742, 9764, 9836, 13615, 9761,13618,10442, 9764, 9452, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 9536, 9545, 9601, 9620,10887, 3022, 9798, 9761, 9615, 9536, 9545, 9601, 9620, 9836, 9798, 9615, 9536, 9545, 9601, 9620, 9615, 9536, 9545, 3022, 3022, 3022, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 9615, 3023, 3023, 9761,10887, 9742, 9742, 9742, 9853, 9626, 9536, 9545, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 3023, 9546, 9626,10229,12377, 3023, 9672, 9641, 9641, 9644, 9546, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 9612, 9626, 9853, 9546, 3023, 3023, 3023, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 9672, 3026, 3026, 9641, 9701, 9644,10229, 9762,10439,12377, 9682, 9546, 3026, 3026, 3026, 3026, 3026, 3026, 3026, 9549, 9550, 9641, 9682, 9644, 3026,13645, 9762, 9625, 9549, 9550, 3026, 9644, 10439, 9641, 9625, 9549, 9701,10240, 9672, 9625, 9549, 9550, 3026, 3026, 3026, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 9625, 3027, 3027, 9762,10240, 9773, 9682, 9677, 9694,10134, 9549, 9550, 3027, 3027, 3027, 3027, 3027, 3027, 3027, 9677, 9701,13650,10240,13660, 3027, 9404, 9404, 9404, 9404, 9404, 9404, 9404, 9404, 9404, 9677, 9649, 9472,10512, 9773, 9694, 9677,10134, 3027, 3027, 3027, 9694, 9404, 9472, 9472, 9472, 9472, 9472, 9472, 9472, 9472, 9472, 9584, 3027, 3028, 9692, 3028, 9594, 9773,10412, 9404, 9584,10412, 9649, 9472,10512, 9594, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 3028, 9584, 3028,10512, 9803,10412, 9594, 9908, 9908, 9908, 9908, 9692, 9803, 3028, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 9649, 3037, 9473, 9553, 9553, 9553, 9553, 9553, 9553, 9553, 9553, 9553, 3037, 9473, 9473, 9473, 9473, 9473, 9473, 9473, 9473, 9473, 9586, 9860, 9553, 9683,12929, 9692, 9808,12929, 3037, 9586, 9860, 9699, 9473, 9605, 9808, 9683, 9586, 9879, 9622, 9905,12929, 9586, 9605,11491, 3037, 3038, 3038, 9622, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 9605, 3038, 3038, 9679, 9683, 9622, 9699, 9879, 9739, 9905, 9740, 9586, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 9739, 9739, 9740, 9740, 9679, 3038,11491, 9555, 9555, 9555, 9555, 9555, 9555, 9555, 9555, 9555, 9679, 9737,10451,10451,10451,13664, 9699, 3038, 3038, 3038, 3039, 3039, 9555, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 9673, 3039, 3039, 9628, 9628, 9628, 9628, 9628, 9628, 9628, 9628, 9628, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039,10511,10511,10511, 9809, 3039, 9673, 9557, 9557, 9557, 9557, 9557, 9557, 9737, 9673, 9809, 9557,11822, 9737, 9673, 9737, 9737,10511, 3039, 3039, 3039, 3043, 3043, 9557, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 9698, 3043, 3043, 9629, 9629, 9629, 9629, 9629, 9629, 9629, 9629, 9629, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 9587, 9596,11822, 9745,13667, 3043,10892, 9814, 9813, 9587, 9596, 3043, 9700, 9698, 9745, 9745, 9813, 9596, 9814, 9698,10521, 9587, 9596, 3043, 3043, 3043, 3044, 3044, 9760, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 9597, 3044, 3044, 9766, 9760, 9961, 9700,10521,10892, 9597, 9587, 9596, 3044, 3044, 3044, 3044, 3044, 3044, 3044, 9475, 9678, 9597, 9766, 9760, 3044,13676, 9961,10594,10594,10594, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9475, 9818, 9678, 9700, 3044, 3044, 3044, 9608, 9700, 9818, 9597,10599, 9722, 9475, 9678, 9961, 9608, 9766, 9819, 3044, 3050, 3050, 9554, 3050, 3050, 3050, 3050, 3050, 9608, 9819, 3050, 3050, 3050, 9554, 9554, 9554, 9554, 9554, 9554, 9554, 9554, 9554, 9607,10599, 9965, 3050, 3050, 3050, 3050, 3050, 3050, 9607, 9623, 9678, 9554, 9608, 3050,13681, 9607,10318, 9755, 9623, 3050, 9607, 9722, 9755, 9822, 9554, 9623, 9822, 9722, 9965,10004, 9623, 3050, 3050, 3050, 3050, 3051, 3051, 9722, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 9607, 3051, 3051, 9825,10318, 9723, 9822,10607, 9755,10004, 9623, 9825, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 9723,11061,11061,11061, 3051, 9829, 9835, 9559, 9559, 9559, 9559, 9559, 9559, 9559, 9559, 9559, 9829, 9835,10607, 9723,13685,13688, 3051, 3051, 3051, 3051, 3053, 3053, 9559, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3053, 3056, 3056,10311, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 3056, 9624, 3056, 3056, 9748, 11275,13770,10414,10510, 9748, 9624, 9748, 9748, 3056, 3056, 3056, 3056, 3056, 3056, 3056,10510, 9751, 9624,10311,10311, 3056, 9751,11275, 9751, 9751, 9840, 3056, 9630, 9630, 9630, 9630, 9630, 9630, 9630, 9630, 9630, 9840,10414, 3056, 3056, 3056, 3056, 3057, 3057, 9624, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3057, 3059, 3059, 9680, 3059, 3059, 3059, 3059, 3059, 3059, 3059, 3059, 3059, 9650, 3059, 3059, 9681, 9783, 9783, 9783, 9783, 9783, 9866, 9680, 9828, 3059, 3059, 3059, 3059, 3059, 3059, 3059, 9828, 9866,10513, 9680, 9681, 3059, 9783, 9834, 3059, 9660, 9660, 9660, 9774, 9650, 10513, 9834, 9681, 9843,10634,10053, 9843, 9839, 9650, 3059, 3059, 3059, 3059, 3061, 3061, 9839, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 9681, 9660, 9680, 9774,10053, 9843, 9650, 9893, 9846, 3061, 3061, 3061, 3061, 3061, 3061, 3061, 9846,10634, 9893, 9660,13244, 3061, 9632, 9925, 9632, 9632, 9632, 9632, 9632, 9632, 9632, 9632, 9632,13775, 9925,13244, 9660, 9660, 9774, 3061, 3061, 3061, 3061, 3062, 3062, 9632, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3062, 3064, 3064,10415, 3064, 3064, 3064, 3064, 3064,10697,10633, 3064, 3064, 3064, 9652, 9633,10697, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 9633, 3064, 3064, 3064, 3064, 3064, 3064,13819,10415, 9652,10633, 9861, 3064, 9633, 9867, 9658, 9658, 9667, 9651, 9667, 9861, 9652, 9867, 9743,10651,10077,10116, 9861, 9871,10853, 3064, 3064, 3064, 3064, 3065, 3065, 9871, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 9658, 9651, 9667, 10077,10116, 9652,10651, 9652, 9667, 3065, 3065, 3065, 3065, 3065, 3065, 3065,10853, 9758, 9658, 9743, 9667, 3065, 9758, 9758, 3065, 9651, 9661, 9661, 9661, 9758, 9658,10150,10155, 9743, 9743, 9658, 9651, 9667, 9743, 3065, 3065, 3065, 3065, 3066, 3066, 9765, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 9765, 3066, 3066,10150,10155, 9661,10703,10600, 9661, 9765, 9954, 9862, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 9862, 9954,13824, 9661, 3066, 9726, 9726, 9726, 9726, 9726, 9726, 9726, 9726, 9726, 9726, 9862, 9765,10600, 9888,10703, 9661, 9765, 3066, 3066, 3066, 3068, 3068, 9888, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3070, 3070, 9770, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 9894,13527,10437,13834,13527, 9753, 9770, 9753, 9894, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 9753,10246,10652, 9753, 9753, 3070, 9634, 9753, 9634, 9634, 9634, 9634, 9634, 9634, 9634, 9634, 9634, 9770,10160, 10246,10181,10437, 9770, 3070, 3070, 3070, 3070, 3071, 3071, 9634, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 9653, 3071, 3071,10246,10652,10519,10160, 9754,10181, 9654, 10186, 9741, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 9741, 9653, 9754, 9754, 9971, 3071, 9741, 9741, 3071, 9665, 9654, 9945, 9754, 9653,10191, 9971, 9741, 9865,10186, 9865, 9945, 10519, 9654, 3071, 3071, 3071, 3072, 3072, 9865, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 9655, 3072, 3072, 10191,10800, 9665,13838,10800,13841, 9656, 9653, 9654, 3072, 3072, 3072, 3072, 3072, 3072, 3072, 9654, 9655,13850,10800, 9665, 3072, 9898, 9662, 9662, 9662, 9656, 3072, 9665, 9655, 9898, 9772, 9772, 9656,10207, 9890,10212, 9665, 9656, 3072, 3072, 3072, 3073, 3073, 9890, 3073, 3073, 3073, 3073, 3073, 3073, 3073, 3073, 3073, 9657, 3073, 3073, 9662,11453, 9890, 11477,10207, 9772,10212, 9655, 9772, 3073, 3073, 3073, 3073, 3073, 3073, 3073, 9656, 9657, 9662,10251, 9922, 3073, 9889, 11453, 9933, 9892, 9772, 9892, 9922, 9657, 9943, 9889, 9933, 9777, 9777, 9662, 9892, 9943, 9889, 3073, 3073, 3073, 9955, 11477,10665, 9943,10251, 3073, 3074, 3074, 9955, 3074, 3074, 3074, 3074, 3074, 3074, 3074, 3074, 3074, 9948, 3074, 3074, 13855, 9657, 9657,13859, 9777,10665, 9948, 9950, 9958, 3074, 3074, 3074, 3074, 3074, 3074, 3074, 9950, 9958, 9969, 9975, 3074, 3074, 9777, 9668, 9914, 9668, 9969, 9975, 9777, 9727, 9727, 9727, 9727, 9727, 9727, 9727, 9727, 9727, 9769, 3074, 3074, 3074, 3080, 3080, 9769, 3080, 3080, 3080, 3080, 3080, 3080, 3080, 3080, 3080, 3080, 3080, 3080, 9668, 9914,11555, 11555,11555,13862, 9769, 9947, 9953, 3080, 3080, 3080, 3080, 3080, 3080, 3080, 9947, 9953, 9668, 9914, 9998, 3080, 9985, 9947,10627,10632, 9666, 9668, 9666, 9727, 9985, 9998, 9953, 9769, 9668, 9668, 9914, 9990, 9769, 3080, 3080, 3080, 3080, 3082, 3082, 9990, 3082, 3082, 3082, 3082, 3082, 3082, 3082, 3082, 3082,10632, 3082, 3082,11675,10627, 9666, 9787, 9787, 9787, 9787, 9787, 9787, 3082, 3082, 3082, 3082, 3082, 3082, 3082,10822, 9994,10001,13916, 9666, 3082,10425,10822, 9787, 9994,10001, 9728, 9728, 9728, 9728, 9728, 9728, 9728, 9728, 9728, 9728, 9666,11675, 3082, 3082, 3082, 3083, 3083, 9666, 3083, 3083, 3083, 3083, 3083, 3083, 3083, 3083, 3083,10425, 3083, 3083, 9729, 9729, 9729, 9729, 9729, 9729, 9729, 9729, 9729, 3083, 3083, 3083, 3083, 3083, 3083, 3083, 3083, 9728, 9778, 9778,10647, 3083, 9728,10425, 9788, 9788, 9788, 9788, 9788, 9788,10411, 9778, 9778, 9778, 9778, 9778, 9778, 9956, 9960, 3083, 3083, 3083, 9962, 3083, 3084, 9788, 9956, 9960, 10411,10647, 9729, 9962, 9778, 9956, 9960, 9729, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084,13919, 9962,13920, 10198,10411, 9778,10198, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084,10005, 3084, 10198, 3084, 3084, 3084, 3084, 3084, 3084, 3086, 3086,10005, 3086, 3086, 3086, 3086, 3086, 9779, 9779, 3086, 3086, 3086, 9782, 9782, 9782, 9782, 9782, 9782, 9782, 9782, 9782,10015, 13929,10030, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 9952, 10015, 9782,10030, 3086,11605,11605,11605,10779, 9952, 9779, 9864, 9864, 9864, 9864, 9864, 9864, 9864, 9864, 9864,10779, 9952, 3086, 3086, 3086, 3086, 3087, 3087, 9779, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 3087, 10010,10322,10145,10322, 9779,10054,10075, 9952,10010, 3087, 3087, 3087, 3087, 3087, 3087, 3087,10054,10075,11865,13406, 10145, 3087,10014,10018, 9784, 9784, 9784, 9784, 9784, 9784, 10014,10018,10145, 9784,13930,10322,11865,13406,10322, 3087, 3087, 3087, 3087, 3088, 3088, 9784, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3088, 3089, 3089,10223, 3089, 3089, 3089, 3089, 3089, 3089, 3089, 3089, 3089,11478, 3089, 3089,10028, 9881, 9881, 9881, 9881, 9881, 9881,10083,10028, 3089, 3089, 3089, 3089, 3089, 3089, 3089, 3089,11435,10083, 10223,11435, 3089, 9881,10107, 9785, 9785, 9785, 9785, 9785, 9785, 9785, 9785, 9785,13941,10107,11435,11900,10223,11478, 3089, 3089, 3089, 3089, 3090, 3090, 9785, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090,10325, 3090, 3090,10031, 9916, 9916, 9916, 9916, 9916, 9916,10037,10031, 3090, 3090, 3090, 3090, 3090, 3090, 3090,10037,11721,10729,10325,11900, 3090, 9916,10115, 9786, 9786, 9786, 9786, 9786, 9786, 9786, 9786, 9786,11480,10115,10729,13942,10325,10729, 3090, 3090, 3090, 3090, 3091, 3091, 9786, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 3091, 9939, 9939, 9939, 9939, 9939, 9939, 9939, 9939, 9939, 3091, 3091, 3091, 3091, 3091, 3091, 3091,11480,11721,11721,10120,13957, 3091,10038, 10040, 9789, 9789, 9789, 9789, 9789, 9789,10120,10038,10040, 9789,11616,11616,11616,13958,10038, 3091, 3091, 3091, 3091, 3092, 3092, 9789, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3095, 3095,10044, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 3095,10009,10009, 10009,10009,10009,10009,10009,10009,10044, 3095, 3095, 3095, 3095, 3095, 3095, 3095, 9951, 9963,10042,10046,10009, 3095, 10056,11846, 3095, 9951, 9963,10042,10046,10638,10226,10056, 9951, 9963,10042,10044,10043, 9951, 9963, 3095, 3095, 3095, 3095, 3096, 3096,10043, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096, 3096,10226,10638,10043,13975, 11846,14000, 9951, 9963,10050, 3096, 3096, 3096, 3096, 3096, 3096, 3096,10049,10050,10226,11479,10149, 3096, 9830, 9830, 9830, 9830, 9830, 9830, 9830, 9830, 9830,10149,10050,10269, 10274,10279,10059,10049, 9830, 3096, 3096, 3096, 3096, 3097, 3097,10059, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097,11479, 3097, 3097,14002,14003,10269,10274,10279, 9830, 10049,10142,10062, 3097, 3097, 3097, 3097, 3097, 3097, 3097, 3097,10062,14005,10142,10154, 3097, 9848, 9848, 9848, 9848, 9848, 9848, 9848, 9848, 9848,10154,10062,10219,10653,10336, 10219,10142,10708, 3097, 3097, 3097, 3104, 9848, 9880, 9880, 9880, 9880, 9880, 9880, 9880, 9880, 9880,10033,10033,10033, 10033,10033,10033,10033,10033,10033,10336,10219,10708, 9880, 10653,14007,11821, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3104, 3106, 3106,10144, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106, 3106,11821, 3106, 3106,10034,10034,10034,10034,10034,10034,10034,10034,10034, 3106, 3106, 3106, 3106, 3106, 3106, 3106,11468,14008,14012, 10144,13528, 3106,10159, 9915, 9915, 9915, 9915, 9915, 9915, 9915, 9915, 9915,10144,10159,10330,10604,13528,10144,11468, 3106, 3106, 3106, 3113, 3113, 9915, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 9964, 3113, 3113,10823,10330, 10604,10136,10136,10136, 9964,10823,10048, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 9935,10048, 9964,10330,10604, 3113, 10654,10777,10048, 9935,10241, 9935, 9935, 9935, 9935, 9935, 9935, 9935, 9935, 9935,10073,10136,10241, 3113, 3113, 3113, 10076,10164,10073, 9964, 3113, 3114, 3114,10081,10076, 9935, 10609,10654,10164,10136,10241,10081,10777, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999,10087,10096,10097, 3114,10702, 10225,10609,10225,10087,10096,10097,10180, 9999,10035,10035, 10035,10035,10035,10035,10035,10035,10035,10180, 3114,10057, 3114, 3114, 3114, 3114, 3114, 3114, 3115, 9999,10057,10139, 10139,10139,10429,10702,10225,10057,10609, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115,10101, 3115,10063,11566, 10139,10113,10225,12612,10101,10185,10429,10063, 3115,10113, 10051,10052,10060,10061,10063,10065,10185,10119,10139,10051, 10052,10060,10061,10429,10065,10119,10051,10123,10060,10148, 10153,10051,10052,10060,10061,10123,10065,10148,10153,12612, 11566,12840, 3115, 3119, 3119,10601, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119, 3119,10051,10052, 10060,10061,10135,10065,10143,10143,10143, 3119, 3119, 3119, 3119, 3119, 3119, 3119,10158,10163,10601,12840,10167, 3119, 10179,10184,10158,10163,10135,10143,10167,10189,10179,10184, 14014,12876,10135,14015,10601,10189,12876, 3119, 3119, 3119, 3119, 3121, 3121,10143, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3123, 3123,13898, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123, 3123,10190, 3123, 3123,10719, 13898,10310,14018,10893,10719,10195,10719,10190, 3123, 3123, 3123, 3123, 3123, 3123, 3123,10064,10195,10194,10201,10204, 3123,10205,10210,10211,10064,10194,10201,10204,10893,10215, 10210,10064,10205,10310,10211,10222,10064,10215, 3123, 3123, 3123, 3124, 3124,10222, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124,10216, 3124, 3124,10237,10236,10237,10236, 10310,10344,10250,10064,10216, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124,10250,10227,11953,10255, 3124,10095,10095, 10095,10095,10095,10095,10095,10095,10095,10255,10344,10368, 10237,10236,10227,10237,10095, 3124, 3124, 3124, 3129, 3129, 10227, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 10249, 3129, 3129,10236,14020,11953,10368,10426,10249,10095, 10237,10254, 3129, 3129, 3129, 3129, 3129, 3129, 3129,10254, 11995,11995,11995,14021, 3129,10259,10273,10137,10137,10137, 10137,10137,10137,10137,10137,10137,10259,10273,10373,10426, 10378,10394, 3129, 3129, 3129, 3129, 3130, 3130,10137, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130,10238,10238,10426,10243,10373,10137,10378,10394,13012, 3130, 3130, 3130, 3130, 3130, 3130, 3130,10141,10141,10141, 10141,10141, 3130,10238,10399,11210,10138,10138,10138,10138, 10138,10138,10138,10138,10138,10238,10243,10258,10141,10278, 3130, 3130, 3130, 3130,10262,10258,13012,10138,10308,10243, 10278,10399,10262,10238,10243,10428,10141,10242,10242,10242, 11210,10428, 3130, 3156, 3156,10138, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156,10272, 3156, 3156,10242,10428, 10308,10658,10385,10272,10283,10385,10277, 3156, 3156, 3156, 3156, 3156, 3156, 3156,10277,10283,10242,10605,10308, 3156, 10294,10140,10140,10140,10140,10140,10140,10140,10140,10140, 10427,10294,10385,10658,10626,10605,14027, 3156, 3156, 3156, 3161, 3161,10140, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161,10605, 3161, 3161,10282,10659,10427,10626,10309, 10140,10326,10326,10282, 3161, 3161, 3161, 3161, 3161, 3161, 3161,10286,10292,10297,10298,10301, 3161,10309,10334,10286, 10292,10297,10326,10301,10342,10298,10334,14029,10659,10309, 14030,14036,10342,10626, 3161, 3161, 3161, 3161, 3162, 3162, 10326, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3170,10312, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170, 3170,10528,10312,10312,12680,12680,12680, 3170, 3170, 3170, 3170, 3170, 3170,10173,10173,10173,10173,10173, 10173,10173,10173,10173,10312,10315,10317,10315,10317,10661, 10528,10173,10331,10335,10315,10317, 3170, 3170, 3170, 3170, 3170, 3170, 3183, 3183,10335, 3183, 3183, 3183, 3183, 3183, 10331,10491, 3183, 3183, 3183,10317,10173,10491,10331,10315, 10317,10661,10314,10491,11274,10343, 3183, 3183, 3183, 3183, 3183, 3183, 3183,10314,10314,10314,10343,10348, 3183,10206, 10206,10206,10206,10206,10206,10206,10206,10206,10348,10643, 14038,10367,14039,11274,10314,10206, 3183, 3183, 3183, 3183, 3184, 3184,10367, 3184, 3184, 3184, 3184, 3184,14049,10643, 3184, 3184, 3184,10306,10306,10306,10306,10306,10306,10307, 10206,10643,10372,10347, 3184, 3184, 3184, 3184, 3184, 3184, 3184,10347,10351,10372,10306,10366, 3184,10371,10377,10458, 10351,10307,10376,10366,10738,10371,10324,10324,10458,10377, 10376,10602,10306,10307, 3184, 3184, 3184, 3184, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187,10738,10602, 10456,10307,14050,10381, 3187, 3187, 3187, 3187, 3187, 3187, 10324,10381,10456,10324,10664,10456,12901,10602,10382,10224, 10224,10224,10224,10224,10224,10224,10224,10224,10324,10382, 10388, 3187, 3187, 3187, 3187, 3187, 3187, 3189,10388,10391, 10224,10363,10363,10363,10363,10363,10664,10391, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189,10224,12901, 11568,14142,10363,14150, 3189, 3189, 3189, 3189, 3189, 3189, 10293,10293,10293,10293,10293,10293,10293,10293,10293,10392, 10363,10397,10406,10536,11568,10406,10293,10398,10499,10397, 10392, 3189, 3189, 3189, 3189, 3189, 3189, 3197,10398, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197, 3197,10546,10499, 10536,10293,10406,12910,10558, 3197, 3197, 3197, 3197, 3197, 3197,10357,10357,10357,10357,10357,10357,10357,10357,10357, 10402,10409,10445,12910,10574,10546,10499,10357,10402,10409, 10445,10558, 3197, 3197, 3197, 3197, 3197, 3197, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205,10413,10403, 10447,10574,10357,10413, 3205, 3205, 3205, 3205, 3205, 3205, 10403,10447,10706,14196,10413,10537,10410,10743,10239,10239, 10239,10239,10239,10239,10239,10239,10239,10537,10743,10587, 14229, 3205, 3205, 3205, 3205, 3205, 3205, 3220, 3220,10239, 3220, 3220, 3220, 3220, 3220,10537,10706, 3220, 3220, 3220, 10410,10461,10860,10410,10433,10434,10587,10239,10422,10860, 10461, 3220, 3220, 3220, 3220, 3220, 3220, 3220,10410,10422, 10422,10422,12619, 3220,10650,10792,10433,14249,10244,10244, 10244,10244,10244,10244,10244,10244,10244,10460,10433,10434, 10422, 3220, 3220, 3220, 3220,10463,10460,10432,10861,10244, 12619,10650,10792,10460,10463,10861,10433,10434, 3220, 3221, 3221,10313, 3221, 3221, 3221, 3221, 3221,10244,10434, 3221, 3221, 3221,10313,10313,10313,10313,10313,10313,10313,10313, 10313,10432,10467, 3221, 3221, 3221, 3221, 3221, 3221, 3221, 10807,10467,10469,10313,11693, 3221,10656,10656,10467,10432, 10791,10469,10327,10327,10327,10327,10327,10327,10327,10327, 10327,10791,10455, 3221, 3221, 3221, 3221,10472,10466,10455, 10432,10790,10807,10327,10455,11693,10472,10466,10656,10790, 3221, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224, 3224,10327,10466,14063,10680,14251,14063, 3224, 3224, 3224, 3224, 3224, 3224,10452,10452,10452,10452,10452,10452,10452, 10452,10452,10328,10328,10328,10328,10328,10328,10328,10328, 10328,10680,10480,10420, 3224, 3224, 3224, 3224, 3224, 3224, 3226,10480,12927,10328,10420,10420,10420,10420,10420,10680, 10610, 3226, 3226, 3226, 3226, 3226, 3226, 3226, 3226, 3226, 3226,10328,12927,10637,11379,10420,10637, 3226, 3226, 3226, 3226, 3226, 3226,10393,10393,10393,10393,10393,10393,10393, 10393,10393,10483,10496,10523,10610,10610,11641,10637,10393, 11379,10483,10496,10523, 3226, 3226, 3226, 3226, 3226, 3226, 3234,10637, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234, 3234,10797,14252,11641,10393,10464,10465,10470, 3234, 3234, 3234, 3234, 3234, 3234,10464,10465,10470,10720,10796,10424, 10527,10464,10720,10470,10720,10527,10464,10465,10797,10796, 10424,10424,10424,10424,10424, 3234, 3234, 3234, 3234, 3234, 3234, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242, 3242,10424,10527,10464,10465,10583,10475, 3242, 3242, 3242, 3242, 3242, 3242,10704,10583,10475,12787,12787,12787,10782, 11454,10329,10329,10329,10329,10329,10329,10329,10329,10329, 10475,10782,10832,10704, 3242, 3242, 3242, 3242, 3242, 3242, 3266, 3266,10329, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266, 3266,11454,10535,10704,10545,10832, 10329,10535,10476,10545, 3266, 3266, 3266, 3266, 3266, 3266, 3266,10476,10657,10657,14253,10678, 3266,10538,10476,10362, 10362,10362,10362,10362,10362,10362,10362,10362,10535,10538, 10545,10548,10481,10492, 3266, 3266, 3266, 3266, 3269,10492, 10362,10481,10678,10548,10657,10492, 3269,10538,10481, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269,10362,11847, 10678,10548,10678,14254,11847, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3269, 3276, 3276, 10611, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276, 3276,11847,10515,10515,10515,10515,10515,10515, 12898,10487, 3276, 3276, 3276, 3276, 3276, 3276, 3276,10417, 10487,10557,10611,10801, 3276,10515,10557,10487,10826,10801, 10417,10417,10417,10417,10417,10417,10417,10417,10417,10826, 10494,10801, 3276, 3276, 3276, 3276,10494,10486,14255,10474, 10418,10417,10494,10557,12898,10494,10486,10611,10474, 3276, 3280,10418,10418,10418,10418,10418,10418,10418,10418,10418, 10474,10486,10419,10506,10506,10506,10506,10506,10506,10506, 10506,10506,10418,10419,10419,10419,10419,10419,10419,10419, 10419,10419, 3280,10540,10493,10418,11639,10474,10646, 3280, 10493,10493, 3280,10473,10419,10540,10493,10795,10540,14141, 10646,10477,10473,14141, 3280,10795, 3280,10663, 3280,10473, 10477, 3280, 3280,10540,10473,10478, 3280,10477,10421, 3280, 11639, 3280,10477, 3280,10478, 3280, 3280, 3280, 3281,10421, 10421,10421,10421,10421,10421,10646,10478,10573,10421,10663, 10423,10473,10573,10770,10517,10517,10517,10517,10517,10477, 10421,10423,10423,10423,10423,10423,10423,10423,10423,10423, 3281,10498,10484,10478,10485,10517,10489, 3281,10504,10573, 10498,10484,10423,10485,10504,10489,10770,10498,10484,10488, 10504,10663, 3281,10484, 3281,10485, 3281,10489,10488, 3281, 3281,11208,11273,10500, 3281,10488,10549, 3281,10770, 3281, 10488, 3281,10500, 3281, 3281, 3281, 3282,10501,10549,10502, 10484,10612,10485,10503,10489,10524,10501,10500,10502,10503, 10503,11208,11273,10501,10524,10503,10549,10488,10501,10586, 10502,10524,10529,10636,10586,10588,12907,14256, 3282,10866, 10771,10529,10705,10612,10588, 3282,10507,10507,10507,10507, 10507,10507,10507,10507,10507,10501,10529,10502,10636,10588, 3282,10586, 3282,10636, 3282,10838,10866, 3282, 3282,10705, 10612,10636, 3282,10771,10705, 3282,10838, 3282,10612, 3282, 12907, 3282, 3282, 3282, 3283,10508,10508,10508,10508,10508, 10508,10508,10508,10508,10514,10514,10514,10514,10514,10514, 10514,10514,10514,10516,10516,10516,10516,10516,10516,10516, 10516,10516,10721,10539,10771,10514, 3283,10721,10721,10721, 10539,10550,10560, 3283,10516,10539,10518,10518,10518,10518, 10518,10518,10584,10550,10560,10518,14257,10547, 3283,12375, 3283,10584, 3283,10539,10547, 3283, 3283,10518,10584,10547, 3283,10550,10560, 3283,10552, 3283,10551, 3283,10559, 3283, 3283, 3283, 3284,10551,12375,10559,10552,10547,10551,10552, 10559,10562,10562,10562,10562,10562,10562,10562,10562,10562, 10802,10565,10639,10566,10552,10567,10551,10576,10559,11384, 10635,10750,10567,10565, 3284,10566,10750,10567,10750,10576, 10613, 3284,10563,10563,10563,10563,10563,10563,10563,10563, 10563,10565,10802,10566,10639,10567, 3284,10576, 3284,11384, 3284,10635,10606, 3284, 3284,10614,10639,10613, 3284, 3284, 10802, 3284,10613, 3284,10645, 3284,10709, 3284, 3284, 3284, 3285,10564,10564,10564,10564,10564,10564,10564,10564,10564, 10568,10575,10590,14261,10645,10591,10606,10614,10575,10635, 10709,10590,10568,10575,10591,10568,10645,10613,10590,11649, 10723,10709, 3285,10590,10606,10723,10591,10723,10723, 3285, 10568,10575,10578,10578,10578,10578,10578,10578,10578,10578, 10578,10606,10614,10614, 3285, 3285, 3285,10864, 3285,10722, 10590, 3285, 3285,10591,11649,10722, 3285,14262,10864, 3285, 10722, 3285,10722, 3285,10662, 3285, 3285, 3285, 3286,10579, 10579,10579,10579,10579,10579,10579,10579,10579,10580,10580, 10580,10580,10580,10580,10580,10580,10580,10595,10595,10595, 10595,10595,10595,10595,10595,10595,10662,10799,10820,10926, 3286,10616,10799,13002,10603,10603,10820, 3286,10926,13002, 10596,10596,10596,10596,10596,10596,10596,10596,10596,10827, 10799,10662, 3286,11277, 3286,10615, 3286,10827,10617, 3286, 3286,10596,10628,10616, 3286,10751,10751, 3286,10603, 3286, 10751, 3286,10751, 3286, 3286, 3286, 3287,10597,10617,10597, 10597,10597,10597,10597,10597,11277,10603,10615,10615,10905, 10617,10618,10616,10655,10603,10929,10628,10620,10616,10724, 10597,10619,10724,10753,10929,10621,10621,10724, 3287,10724, 10629,10618,10629,10942,10628, 3287,10905,10620,10753,10836, 10617,10619,10615,10618,10655,10617,10753,10836,14263,10620, 3287,10628, 3287,10619, 3287,10644,10619, 3287, 3287,10621, 10942,10641, 3287,14265,10629, 3287,10630, 3287,10630, 3287, 10655, 3287, 3287, 3287, 3288,10644, 3288,10621,10618,10618, 11063,10641,10629, 3288,10620,10621,10640,10644,10619,10623, 10623,10623,11063,10641,10621,10842,10852,10660,10640,10629, 10630,10679,10825,10842,10852,10625,10625,10625, 3288,10825, 10624,10624,10624,10640,11064, 3288,10640,10825,10630,10641, 10872,10963,10644,10623,11109,10631,11064,10631,10679,10660, 3288,10872, 3288,10683, 3288,10630,11109, 3288, 3288,10625, 10677,10623, 3288,10679,10624, 3288,10679, 3288,10963, 3288, 10624, 3288, 3288, 3288, 3289,10642,10660,10625,10623,10631, 10683,10676,10624,10683,10660,10623,10625,10677,10681,12594, 11650,10642,10683,10625,10625,10642,12594,10631,10683,10624, 10682,10631,10696,10863,10642,10677, 3289,10642,10676,10858, 10863,10677,10865, 3289,10631,10681,10681,10858,10863,10682, 10865,10642,10676,10676,10696,11650,10676,11651, 3289,10870, 3289,11376, 3289,10681,10876, 3289, 3289,10870,10681, 3289, 3289,10696,10876, 3289,10696, 3289,10682, 3289,10902, 3289, 3289, 3289, 3290,10682, 3290,10688,10718,10746,10682,10902, 11012, 3290,11651,11376,10682,10691,10688,10688,10688,10688, 10688,10688,10688,10688,10688,11380,10691,10691,10691,10691, 10691,10691,10691,10691,10691,10726, 3290,11012,11267,10726, 10726,11066,10726, 3290,10692,10692,10692,10692,10692,10692, 10692,10692,10692,11066,10746,11267,11066,11380, 3290,10746, 3290,10746, 3290,10749,10749, 3290, 3290,10718,10886,10749, 3290,10749,10718, 3290,10718, 3290,10886, 3290,11267, 3290, 3290, 3290, 3308,10919,10693,10693,10693,10693,10693,10693, 10693,10693,10693,10717,10919,10717,13024,10745,10755,14361, 10717,10745,10692,10747,10717,10717,10745,10717,10745,10748, 10747,10717,10894,10748, 3308,10747,13024,10747,10748,10927, 10748, 3308,10935,10783,10783,10783,10783,10747,10927,10901, 10755,10935,10756,10774,10774,10927, 3308,10901, 3308, 3308, 3308,10693,10693, 3308, 3308,10755,10894,10756, 3308,10783, 11567, 3308,10756, 3308,14383, 3308,10755, 3308, 3308, 3308, 3309,10769,10769,10909,10894,10917,10783,10774,10756,10783, 13340,10909,11220,10917, 3309,10758,10758,10758,10758,10758, 10758,10758,10758,10758,10945,10774,10920,10894,10932,10774, 11220,11567, 3309,10945,10920,10769,11220,10932,10943, 3309, 10759,10759,10759,10759,10759,10759,10759,10759,10759,10943, 10939,10931,10932,10769, 3309,13340, 3309,10959, 3309,10939, 10931, 3309, 3309,10948,10758,10959, 3309,10931,10769, 3309, 11373, 3309,10948, 3309,10939, 3309, 3309, 3309, 3310,10763, 10763,10763,10763,10763,10763,10763,10763,10763,10763,10759, 10933,10764,10764,10764,10764,10764,10764,10764,10764,10764, 10937,10961,11373,12918,10951,11373,11017,10776,10776,10937, 3310,10933,10961,10951,10938,11455,10937, 3310,10765,10765, 10765,10765,10765,10765,10765,10765,10765,10765,10951,10962, 10778,11032, 3310,11017, 3310,10938, 3310,10962,10933, 3310, 3310,10776,10967,10941, 3310,11455,12918, 3310,10764, 3310, 10967, 3310,10941, 3310, 3310, 3310, 3310, 3311,11032,10776, 10895,13993,10938,10778,10941,10765,10895,10895,10895,10895, 10765,11056,10766,10766,10766,10766,10766,10766,10766,10766, 10766,10778,10776,10781,10781,10781,10781,10781,10781, 3311, 10946,10941,10895,10778,10969,11672, 3311,13993,11056,10946, 10778,11692,10973,10778,10781,10969,10946,11068,10940,10895, 10973, 3311,10979, 3311, 3311, 3311,11068,10940, 3311, 3311, 10979,11672,10766, 3311,10940,14384, 3311,10766, 3311,10940, 3311,11692, 3311, 3311, 3311, 3312,10780,10780,10780,10780, 10780,10780,10780,10780,10780,10784,10784,10784,10784,10784, 10784,10784,10784,10784,10949,10952,10940,10780,10989,11696, 10983,10996,12513,10949,10952,10994,10784, 3312,10983,10989, 10949,10952,10996,10994, 3312,10949,11002,10785,10785,10785, 10785,10785,10785,10785,10785,10785,10997,11002,11481, 3312, 11696, 3312,12513, 3312,10997, 3312, 3312, 3312,10785,11001, 10950, 3312,10949, 3312, 3312,14399, 3312,11001, 3312,10950, 3312, 3312, 3312, 3316,10786,10786,10786,10786,10786,10786, 11481,10950,11563, 3316,11688,10803,10803,10803,10803,10803, 10803,10803,10803,10803,11563,10786,10829,10829,10829,10829, 10829,10829,10829,10829,10829, 3316,10803,11005,10950,11014, 11025,11023, 3316,11688,11030,11005,11089,11031, 3316,11023, 11014,11025,11030,14401,10803,11035,10803, 3316,11031, 3316, 11036, 3316,11039,11035, 3316, 3316,11054,11052,14409, 3316, 11039,11036, 3316,11089, 3316,11052, 3316,11054, 3316, 3316, 3316, 3317,10830,10830,10830,10830,10830,10830,10830,10830, 10830, 3317,10831,10831,10831,10831,10831,10831,10831,10831, 10831,10889,10889,10889,10889,10889,10889,10889,10889,10889, 11055,10889,11476, 3317,12972,11098,11673,14411,11055,12972, 3317,11057,10889,10922,10922,10922,10922,10922,10922,10922, 10922,10922,11057,11065,11476, 3317,11098, 3317,11673, 3317, 11065,11119, 3317, 3317,10953,11065,10954, 3317, 3317,11119, 3317,11121, 3317,10953, 3317,10954, 3317, 3317, 3317, 3331, 10953, 3331,11121,11098,11123,10953,11952,10954, 3331,11132, 11182, 3331,10923,10923,10923,10923,10923,10923,10923,10923, 10923,10924,10924,10924,10924,10924,10924,10924,10924,10924, 11071,11123,10953, 3331,10954,11952,11132,11182,11569,11071, 3331,11062,11062,11062,11062,11062,11062,11062,11062,11062, 11569,11073,11070,14058,11187, 3331,11079, 3331, 3331, 3331, 11073,11070, 3331, 3331,11082,11079,11095, 3331,11070,11698, 3331,14058, 3331,11082, 3331,11095, 3331, 3331, 3331, 3338, 3338,11187, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 3338,11024,11024,11024,11024,11024,11024,11024,11024,11024, 11698,11077,11080, 3338, 3338, 3338, 3338, 3338, 3338, 3338, 11077,11080,11024,11122,11225, 3338,11230,11077,11080,11235, 11769,11122,11045,11045,11045,11045,11045,11045,11045,11045, 11045,11086,11024, 3338, 3338, 3338, 3338, 3339,11045,11075, 11086,11225,11260,11230,11769,11295,11235,11086,11075, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339, 3339,11074, 3339, 11075,11090,11076,11045,11083,14426,11085,11074,11084,11260, 3339,11076,11295,11083,11074,11085,11091,11084,12240,11074, 11083,11090,11087,11097,11124,11083,11076,11075,11088,11084, 11085,11087,11097,11090,11093,11124,11091,11088,11087,11097, 11110,11452,11110,11087, 3339, 3343,11074,12240,11091,11088, 11452,11110,11083,11092,11093,11102,11084, 3343, 3343, 3343, 3343, 3343, 3343, 3343, 3343, 3343,11093, 3343,11099,11093, 11087,11103,11100,11092,11101,11102,11088,11099, 3343,11130, 11092,11100,11102,11101,11820,11092,11128,11102,11100,11131, 11130,11103,11099,11100,11128,11101,11111,11131,11111,11138, 11136,11142,11702,11103,11689,11153,11154,11111,11136,11142, 11138,11148, 3343, 3348,11111,11151,11153,11154,11820,11148, 11100,14428,11101,11151,11160, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348,11702,11160,14149,11300,14149,11689, 11305, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348, 3348,11300,11261, 3348,11305, 3348, 3348, 3348, 3348, 3348, 3348, 3350, 3350, 3350, 3350, 3350, 3350, 3350, 3350,11326,12915, 3350, 3350, 3350,11261, 3350,11106, 11106,11106,11106,11106,11106,11106,11106,11106,11106, 3350, 3350, 3350, 3350, 3350, 3350,11261,11272,11451,14432,11326, 3350,11107,11107,11107,11107,11107,11107,11107,11107,11107, 11107,11716,12924,12376,11272,11451,11158,12915, 3350, 3350, 3350, 3350, 3353, 3353,11158, 3353, 3353, 3353, 3353, 3353, 11451,11272, 3353, 3353, 3353,11108,11108,11108,11108,11108, 11108,11108,11108,11108,11108,11164, 3353, 3353, 3353, 3353, 3353, 3353, 3353,11164,12376,14352,12924,11181, 3353,11152, 11152,11152,11152,11152,11152,11152,11152,11152,11181,14258, 11716,14258,14352,11716,11170,11152, 3353, 3353, 3353, 3353, 3354, 3354,11170, 3354, 3354, 3354, 3354, 3354,11174,11177, 3354, 3354, 3354,11185,11331,11190,11174,11177,11211,11211, 11152,11185,11186,11190, 3354, 3354, 3354, 3354, 3354, 3354, 3354,11191,11194,11186,14435,11200, 3354,11203,11223,11224, 11194,11331,11191,11200,11469,11203,11223,12516,14436,11211, 11224,11393,11211,11469, 3354, 3354, 3354, 3354, 3357, 3357, 3357, 3357, 3357, 3357, 3357, 3357, 3357, 3357,11469,11393, 11211,11229,11228,11233, 3357, 3357, 3357, 3357, 3357, 3357, 11228,11233,11229,11234,11238,11242,11393,11249,12516,11699, 14273,14273,11238,11242,11234,11249,11215,11215,11215,11215, 11215, 3357, 3357, 3357, 3357, 3357, 3357, 3359, 3359, 3359, 3359, 3359, 3359, 3359, 3359, 3359, 3359,11215,11239,11470, 11699,11259,11252, 3359, 3359, 3359, 3359, 3359, 3359,11239, 11252,11258,11259,11293,11298,11215,11289,11269,11265,11258, 11470,11293,11298,11470,14438,11217,11217,11217,11265,11269, 3359, 3359, 3359, 3359, 3359, 3359, 3362, 3362, 3362, 3362, 3362, 3362, 3362, 3362, 3362, 3362,11217,11269,11289,11294, 11265, 3362, 3362, 3362, 3362, 3362, 3362, 3362,11299,11303, 11294,11289,11304,11308,11217,11270,11289,11303,11265,11299, 14445,11308,12521,11304,11219,11219,11219,11219,11219, 3362, 3362, 3362, 3362, 3362, 3362, 3367, 3367, 3367, 3367, 3367, 3367, 3367, 3367, 3367, 3367,11219,11270,11309,11325,11270, 11674, 3367, 3367, 3367, 3367, 3367, 3367,12521,11309,11325, 11312,11324,11329,11219,11281,11281,11281,11270,11312,11324, 11329,14447,11674,14453,11558,11558,11558,11262, 3367, 3367, 3367, 3367, 3367, 3367, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370, 3370,11262,11558,11768,11336,11281,11262, 3370, 3370, 3370, 3370, 3370, 3370,11248,11248,11248,11248, 11248,11248,11248,11248,11248,11343,11281,11262,11343,11768, 11768,11263,11248,11280,11336,11280,11290, 3370, 3370, 3370, 3370, 3370, 3370, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377, 3377,11263,11290,11343,11263,11248,11330, 3377, 3377, 3377, 3377, 3377, 3377,11334,11290,11280,11335,11330, 11339,11263,11346,11334,11340,14455,14459,11371,11339,11335, 11346,12518,11284,11284,11284,11340, 3377, 3377, 3377, 3377, 3377, 3377, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380, 3380,11280,11284,11350,11371,11349,11356, 3380, 3380, 3380, 3380, 3380, 3380,11349,11350,11355,11360,11356,12935, 11367,11284,12518,11371,11355,11360,11352,11357,11367,12935, 11286,11286,11286,11286,11286, 3380, 3380, 3380, 3380, 3380, 3380, 3387, 3387, 3387, 3387, 3387, 3387, 3387, 3387, 3387, 3387,11286,11287,11352,11357,11361,11397, 3387, 3387, 3387, 3387, 3387, 3387,11493,11287,11396,11361,11397,11496,11286, 11368,11364,11493,11396,11364,11401,11398,11496,14462,11288, 11288,11288,11287,11401, 3387, 3387, 3387, 3387, 3387, 3387, 3388, 3388, 3388, 3388, 3388, 3388, 3388, 3388, 3388, 3388, 11288,11364,11368,11398,11372,11408, 3388, 3388, 3388, 3388, 3388, 3388,11386,11386,11570,11404,11408,11375,11288,11370, 11368,11370,11372,11404,11409,11375,11570,11414,14463,12597, 11372,14465,11386, 3388, 3388, 3388, 3388, 3388, 3388, 3391, 3391, 3391, 3391, 3391, 3391, 3391, 3391, 3391, 3391,11375, 11386,11409,11690,11370,11414, 3391, 3391, 3391, 3391, 3391, 3391,11318,11318,11318,11318,11318,11318,11318,11318,11318, 12597,11370,11441,12616,11690,11264,11383,11318,11383,11388, 11388,11388, 3391, 3391, 3391, 3391, 3391, 3391, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398, 3398,11264,14284,11441, 11388,11413,11318,11264, 3398, 3398, 3398, 3398, 3398, 3398, 11383,13700,11413,11412,12616,11264,11383,11819,11388,11385, 11385,11412,11351,11351,11351,11351,11351,11351,11351,11351, 11351, 3398, 3398, 3398, 3398, 3398, 3398, 3399,11351, 3399, 3399, 3399, 3399, 3399, 3399, 3399, 3399, 3399, 3399,11819, 14284,13700,11705,11385,11417, 3399, 3399, 3399, 3399, 3399, 3399,11385,11417,11351,11378,11418,11378,11421,11449,11428, 11431,11385,11439,11378,11705,11421,11418,11428,11431,11279, 11439,11279, 3399, 3399, 3399, 3399, 3399, 3399, 3406, 3406, 3406, 3406, 3406, 3406, 3406, 3406, 3406, 3406,11378,11436, 11450,11378,11449,11440, 3406, 3406, 3406, 3406, 3406, 3406, 11449,11436,12897,11279,11440,11486,11487,11467,11450,12897, 11449,11483,14483,11486,11490,14485,11450,11487,11442,11436, 11443, 3406, 3406, 3406, 3406, 3406, 3406, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408, 3408,11279,11443,11483,11467, 11442,11490,11443, 3408, 3408, 3408, 3408, 3408, 3408,11427, 11427,11427,11427,11427,11427,11427,11427,11427,11442,11446, 11443,11467,11678,14493,11444,11427,12854,11456,11458,11446, 3408, 3408, 3408, 3408, 3408, 3408, 3416, 3416, 3416, 3416, 3416, 3416, 3416, 3416, 3416, 3416,11444,11456,11678,11444, 11427,11446, 3416, 3416, 3416, 3416, 3416, 3416,11448,11456, 11458,11474,11502,11474,11444,11457,11740,12854,11740,11446, 14495,11502,11500,11458,11740,11448,11457,11457,11457, 3416, 3416, 3416, 3416, 3416, 3416, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424, 3424,11474,11572,11457,11448,11500, 11514, 3424, 3424, 3424, 3424, 3424, 3424,12914,11572,11514, 13105,11572,14510,11474,12914,11212,11212,11212,11212,11212, 11212,11212,11212,11212,11457,11505,11517,11445, 3424, 3424, 3424, 3424, 3424, 3424, 3425, 3425,11212, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425, 3425,11445, 14367,13105,11505,11517,11212,11445,11528,11542, 3425, 3425, 3425, 3425, 3425, 3425, 3425,11528,11542,11445,14367,14512, 3425,14516,11459,11214,11214,11214,11214,11214,11214,11214, 11214,11214,11687,11459,11459,11459,11531,11772, 3425, 3425, 3425, 3425, 3441, 3441,11214, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441, 3441,11459, 3441, 3441,11643,11687,11460, 11580,11772,11214,11531,11499,11545, 3441, 3441, 3441, 3441, 3441, 3441, 3441,11499,11545,11643,13889,14519, 3441,11460, 11216,11216,11216,11216,11216,11216,11958,11580,11499,11216, 11587,11460,11643,11472,11594,13769, 3441, 3441, 3441, 3442, 3442,11216, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442,11472, 3442, 3442,12589,13889,12589,11587,11958,11216, 11472,11594,11506, 3442, 3442, 3442, 3442, 3442, 3442, 3442, 3442,11506,13769,13701,12589, 3442,11462,11218,11218,11218, 11218,11218,11218,11218,11218,11218,11506,11462,11462,11462, 11462,11462,11462, 3442, 3442, 3442, 3443, 3443,11218, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443, 3443,11462, 3443, 3443,13462,13462,13462,13701,11686,11218,11830,11997,11518, 3443, 3443, 3443, 3443, 3443, 3443, 3443,11686,11518,11830, 11997,11645, 3443,11464,11268,11268,11268,11268,11268,11268, 11268,11268,11268,11518,11464,11464,11464,11464,11464,11645, 3443, 3443, 3443, 3444, 3444,11268, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444,11464, 3444, 3444,11686,14520, 14332,11645,14522,11268,11466,11836,11532, 3444, 3444, 3444, 3444, 3444, 3444, 3444, 3444,11532,11836,13772,13894, 3444, 14332,11282,11282,11282,11282,11282,11282,11282,11282,11282, 11532,11560,11560,11560,11560,11560,11466, 3444, 3444, 3444, 3445, 3445,11282, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445, 3445,11560, 3445, 3445,11473,12791,13894,11602,11613, 11282,13772,12608,11494, 3445, 3445, 3445, 3445, 3445, 3445, 3445,11466,11494,11548,11498,11504, 3445,14529,12791,11494, 11475,11509,11548,11498,11504,11602,11613,11509, 3445,11473, 11498,11504,12608,11509, 3445, 3445, 3445,11548,11283,11283, 11283,11283,11283,11283,11283,11283,11283,11473,11561,11561, 11561,11561,11561,11561,11475,11473, 3445, 3451, 3451,11283, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451, 3451,11561, 3451, 3451,11475,11826,11826,11826,11998,11283,11858,11861, 11475, 3451, 3451, 3451, 3451, 3451, 3451, 3451,11998,11858, 11861,14531,12623, 3451,11826,11285,11285,11285,11285,11285, 11285,11285,11285,11285,12623,11565,11565,11565,11565,11565, 11565, 3451, 3451, 3451, 3452, 3452,11285, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452,11565, 3452, 3452,12388, 11579,11586,11593,11832,11285,11579,11586,11593, 3452, 3452, 3452, 3452, 3452, 3452, 3452, 3452,14537,12388,11666,14366, 3452,12388,11369,11369,11369,11369,11369,11369,11369,11369, 11369,11601,11579,11586,11593,14194,11601,11832, 3452, 3452, 3452, 3455, 3455,11369, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455, 3455,11666, 3455, 3455,14366,11612,11666,11700, 11618,11369,11612,11601,11619, 3455, 3455, 3455, 3455, 3455, 3455, 3455,11618,12973,14194,14539,11619, 3455,12973,11387, 11387,11387,11387,11387,11387,11387,11387,11387,11627,11612, 11618,11700,11646,14543,11619, 3455, 3455, 3455, 3456, 3456, 11387, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 11646, 3456, 3456,11700,11626,11627,11695,11646,11387,11626, 11621,11629, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 3456, 14546,14227,11621,11629, 3456,11621,11389,11389,11389,11389, 11389,11389,11389,11389,11389,11679,11626,11695,11676,12498, 11621,11629, 3456, 3456, 3456, 3458, 3458,11389, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458, 3458,11667, 3458, 3458, 14227,12498,11647,11676,11676,11389,11679,12843,11680, 3458, 3458, 3458, 3458, 3458, 3458, 3458,11676,11695,11679,12498, 11680, 3458,11667,11391,11391,11391,11391,11391,11391,11391, 11391,11391,11667,11667,11680,11680,11647,11837,12843, 3458, 3458, 3458, 3459, 3459,11391, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459,11647, 3459, 3459,11735,11697,11681, 11703,11714,11391,11775,11837,11735, 3459, 3459, 3459, 3459, 3459, 3459, 3459, 3459,11774,11735,14547,11647, 3459,11681, 11392,11392,11392,11392,11392,11392,11392,11392,11392,11697, 11775,11681,11703,11774,11780,11697, 3459, 3459, 3459, 3460, 3460,11392, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 3460,11714, 3460, 3460,11775,11681,11703,11774,11780,11392, 11714,11507,11508, 3460, 3460, 3460, 3460, 3460, 3460, 3460, 11507,11508,11510,11511,12504, 3460,11760,11507,11510,11511, 11511,11516,11507,11508,11510,11511,11522,11520,11374, 3460, 11516,12504,11522, 3460, 3460, 3460,11520,11516,11522,11374, 11374,11374,11374,11374,11374,11374,11374,11374,11520,11507, 11508,14064,14549,11786,12504,11778,11760, 3460, 3461, 3461, 11374, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 3461, 11739, 3461, 3461,11677,11778,11520,11739,11786,11739,11778, 11760,11677, 3461, 3461, 3461, 3461, 3461, 3461, 3461,11512, 11521,11530,14064,11523, 3461,11512,11521,11521,11677,11523, 11530,11512,11521,11781,11512,11523,11781,11530,13980,13980, 13980,11677, 3461, 3461, 3461, 3462, 3462,11654, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462,11781, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462, 3462,11519,11524,14567,11654, 14568, 3462,11536,11524,11525,11519,11571,11653,11536,11524, 11525,11525,11519,11571,11536,12441,11525,11519,11571, 3462, 3462, 3462, 3464, 3464,11662, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464, 3464,11654, 3464, 3464,11750,14675,11653, 11684,12441,11653,12617,11519,11750, 3464, 3464, 3464, 3464, 3464, 3464, 3464,11526,11533,11535,11662,11543, 3464,11526, 11684,11535,11535,11533,11655,11526,11543,11535,11526,12617, 11533,11807,11684,11543,11653,11533, 3464, 3464, 3464, 3465, 3465,13994, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465,11662, 3465, 3465,11807,11807,11655,14677,11712,11655, 14790,11871,11533, 3465, 3465, 3465, 3465, 3465, 3465, 3465, 3465,11534,11871,11684,11791, 3465,11652,13994,11644,11644, 11534,11538,11538,11538,11538,11538,11538,11538,11538,11538, 11763,11655,11534, 3465, 3465, 3465, 3466, 3466,11763, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466, 3466,11652, 3466, 3466,12443,11644,14098,11763,11685,14795,11712,11791,11534, 3466, 3466, 3466, 3466, 3466, 3466, 3466,11685,11712,12443, 11644,11779, 3466,11539,11539,11539,11539,11539,11539,11539, 11539,11539,11791,11652,11652,11461, 3466,11644,11779,11685, 3466, 3466, 3466,12443,14098,11779,11461,11461,11461,11461, 11461,11461,11461,11461,11461,11540,11540,11540,11540,11540, 11540,11540,11540,11540, 3466, 3468, 3468,11461, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3468, 3469,12944, 14024,14024,14024,11731,12944,12944,14805,11463,11731, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469,11463,11463, 11463,11463,11463,11463,11463,11463,11463,11549,11562,11562, 11562,11562,11562,11562,11742,11731,11549,11562,11777,11463, 11731,12002,11742,11549,14809,11742,11777,11731,14812,11562, 12002,11717, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3469, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473, 3473,12593,11860,11873, 11546,11547,11550, 3473, 3473, 3473, 3473, 3473, 3473,11546, 11547,11550,14559,12442,11717,12593,11546,11620,11550,11717, 11717,11546,11547,11550,11620,11860,11873,12593,11713,11620, 3473, 3473, 3473, 3473, 3473, 3473, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476, 3476,12442,11620,11546,11547, 11550,14559, 3476, 3476, 3476, 3476, 3476, 3476,11465,11556, 11556,11556,11556,11556,11556,11556,11556,11556,11764,11465, 11465,11465,11465,11465,11465,12632,11764,11713,11465, 3476, 3476, 3476, 3476, 3476, 3476, 3477,11551,11713,11713,11762, 11465,14350,11764,11762,12794,11551, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477, 3477,11656,11551,11784,11762, 12632,14350, 3477, 3477, 3477, 3477, 3477, 3477,11606,11606, 11606,11606,11606,11606,11606,11606,11606,11746,11784,12794, 11909,11795,11784,11762,11551,11746,11746,11795,11656, 3477, 3477, 3477, 3477, 3477, 3477, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482, 3482,11795,11743,11909,11879,11743, 11793, 3482, 3482, 3482, 3482, 3482, 3482,11743,11656,11879, 14821,12629,11793,11656,11553,11553,11553,11553,11553,11553, 11553,11553,11553,12629,11793,11814,11814,12517, 3482, 3482, 3482, 3482, 3482, 3482, 3483,11553,11559,11559,11559,11559, 11559,11559,11559,11559,11559, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483, 3483,11704,11704,12517,11559,11814,11723, 14826, 3483, 3483, 3483, 3483, 3483, 3483,11617,11617,11617, 11617,11617,11617,11617,11617,11617,11631,11631,11631,11631, 11631,11631,11631,11631,11631,12524,11704,11659, 3483, 3483, 3483, 3483, 3483, 3483, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488, 3488,12610,11723,11736,11659,11736,12524, 3488, 3488, 3488, 3488, 3488, 3488,11736,11736,11723,11659, 11723,11704,11770,11628,11749,11659,12610,12524,12610,11723, 11628,11770,11749,11749,11790,11628,11790, 3488, 3488, 3488, 3488, 3488, 3488, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492, 3492,11628,11659,11770,11919,11966,11790, 3492, 3492, 3492, 3492, 3492, 3492,11632,11632,11632,11632,11632, 11632,11632,11632,11632,11633,11633,11633,11633,11633,11633, 11633,11633,11633,11919,11966,11701, 3492, 3492, 3492, 3492, 3492, 3492, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493, 3493,11658,11682,11787,11787,11899,11748,11835, 3493, 3493, 3493, 3493, 3493, 3493,11748,11835,11899,11701,11720,11732, 11748,11658,11682,11701,11732,14830,11787,11787,12620,12715, 11661,11661,12595,11658,11682, 3493, 3493, 3493, 3493, 3493, 3493, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504, 3504,11732,11701,12715,12620,11840,11732, 3504, 3504, 3504, 3504, 3504, 3504,11840,11661,11851,12595,11682,11658,11744, 12596,11720,11744,11851,11744,11658,11720,11720,11720,11737, 11744,11813,11661,12024, 3504, 3504, 3504, 3504, 3504, 3504, 3505, 3505, 3505, 3505, 3505, 3505, 3505, 3505, 3505,11661, 14833,14913,12596,12024,11737,11766, 3505, 3505, 3505, 3505, 3505, 3505,11737,11766,11813,12024,11752,11907,11722,11564, 11564,11564,11564,11564,11564,11564,11564,11564,11907,11766, 11956,11956,11956, 3505, 3505, 3505, 3505, 3505, 3505, 3512, 11564, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512, 3512,11956,14033,14033,14033,11813,11910, 3512, 3512, 3512, 3512, 3512, 3512,11859,11722,11869,11722,11910,11752,11752, 12713,11859,11917,11869,11752,11722,11752,11722,11783,11663, 11663,11663,11722,11917, 3512, 3512, 3512, 3512, 3512, 3512, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 3520, 11990,12934,12713,11727,11776,11783, 3520, 3520, 3520, 3520, 3520, 3520,11776,11663,11727,11727,11727,11727,11727,11727, 11727,11727,11727,11783,11872,12023,12046,11990,11776,11783, 12934,11663,11872, 3520, 3520, 3520, 3520, 3520, 3520, 3521, 3521, 3521, 3521, 3521, 3521, 3521, 3521, 3521,11663,11761, 11773,11785,12023,12046,11773, 3521, 3521, 3521, 3521, 3521, 3521,11753,11741,11761,11753,11773,11785,12800,11741,11877, 11753,14472,11753,11761,11773,11785,11741,11877,11664,11664, 11664,11741, 3521, 3521, 3521, 3521, 3521, 3521, 3528, 3528, 3528, 3528, 3528, 3528, 3528, 3528, 3528, 3528,11751,12800, 11794,12032,11883,11751, 3528, 3528, 3528, 3528, 3528, 3528, 11883,11751,11664,11794,11812,11812,14472,11889,11893,14914, 11751,11905,12032,12055,11794,11889,11893,11816,11816,11905, 11664, 3528, 3528, 3528, 3528, 3528, 3528, 3532, 3532, 3532, 3532, 3532, 3532, 3532, 3532, 3532, 3532,11664,11812,12032, 12055,11908,11915, 3532, 3532, 3532, 3532, 3532, 3532,11908, 11915,11816,14042,14042,14042,11636,11812,11636,11636,11636, 11636,11636,11636,11636,11636,11636,11738,12098,11812,11816, 3532, 3532, 3532, 3532, 3532, 3532, 3533, 3533,11636, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533, 3533,11918, 3533, 3533,12838,11816,11738,12098,12520,11918,12520,11925,11738, 3533, 3533, 3533, 3533, 3533, 3533, 3533,11738,11923,11925, 11929,11747, 3533,11935,11939,11945,11923,11747,11929,11964, 11972,11935,11939,12838,11765,11747,11945,11964,11972,12520, 3533, 3533, 3533, 3534, 3534,11747, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534,12107, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534, 3534,11965,11976,11808,14780,11765, 3534, 14780,11765,12107,11976,12633,11965,11765,11808,11808,11808, 11808,11808,11808,11808,11808,11808,12633, 3534, 3534, 3534, 3536, 3536,11765, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3536, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545, 3545,14959,11789,14989,11973,11789,11767, 3545, 3545, 3545, 3545, 3545, 3545,11767,11789,11973,11986,11988, 11767,11989,11991,11817,11817,11817,11986,12042,11789,11989, 11988,11668,11767,11991,13010,12042, 3545, 3545, 3545, 3545, 3545, 3545, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548, 3548,12592,12609,12609,12700,13010,11817, 3548, 3548, 3548, 3548, 3548, 3548,12000,11668,11804,11804,11804,11804, 11804,11804,11804,11804,11804,11817,12000,12609,12700,12000, 11818,11818,11818,11668,12592, 3548, 3548, 3548, 3548, 3548, 3548, 3555, 3555, 3555, 3555, 3555, 3555, 3555, 3555, 3555, 11668,11668,12592,12124,12005,12044,11668, 3555, 3555, 3555, 3555, 3555, 3555,12005,11818,15035,12044,11804,11805,11805, 11805,11805,11805,11805,11805,11805,11805,12138,12899,11671, 12124,11671,11818,12025, 3555, 3555, 3555, 3555, 3555, 3555, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 3556, 12618,12899,12379,12025,12138,11806, 3556, 3556, 3556, 3556, 3556, 3556,11806,11671,12379,12025,11954,11806,11954,11805, 11809,11809,11809,11809,11809,11809,11809,11809,11809,11806, 12618,11671,12379, 3556, 3556, 3556, 3556, 3556, 3556, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563, 3563,11671,15040, 11954,12382,12007,12013,11671, 3563, 3563, 3563, 3563, 3563, 3563,12007,12013,12382,14103,15050,15054,11637,11954,11637, 11637,11637,11637,11637,11637,11637,11637,11637,11809,12146, 12151,12382, 3563, 3563, 3563, 3563, 3563, 3563, 3569, 3569, 11637, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569, 3569,12509,12822,14103,12146,12151,11745,12179, 12016,12029, 3569, 3569, 3569, 3569, 3569, 3569, 3569,12016, 12029,12509,12853,11638, 3569,11638,11638,11638,11638,11638, 11638,11638,11638,11638,11796,11745,12179,12457,12509,12822, 11796,11745, 3569, 3569, 3569, 3569,11638,11796, 3569,11745, 11999,12045,12051,11745,12853,12457,15057,11999,11796,12045, 12051,12457,11999, 3569, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3573, 3575, 3575, 12823, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 3575, 12916, 3575, 3575,13243,14146,14146,14146,15066,12047,11657, 13243,12010, 3575, 3575, 3575, 3575, 3575, 3575, 3575,12047, 12010,12004,12011,12916, 3575,12823,11665,11665,11665,11657, 12004,12011,12054,11771,11669,12010,11669,12004,12011,11771, 12054,11657, 3575, 3575, 3575, 3582, 3582,11771, 3582, 3582, 3582, 3582, 3582, 3582, 3582, 3582, 3582,11771, 3582, 3582, 11665,14138,15071,12827,11683,15075,14138,11657,11669, 3582, 3582, 3582, 3582, 3582, 3582, 3582,11657,11660,11665,12059, 12065, 3582,11665,12053,11683,12181,11669,12059,12065,11831, 11831,11831,11831,11669,12053,11665,11683,11660,12827, 3582, 3582, 3582,12190,11669,11669,11782, 3582, 3583,11782,11660, 11683,12190,12181,11782,12836,11831,12714,12061,11683, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583, 3583,12061,11782, 11792,12072,11831,11792,11788,11831,11660,11797,11792,12014, 3583,12020,12072,11660,11660,11670,12714,11670,12014,12836, 12020,12071,13897,12076,11792,12014,15078,12020, 3583,12071, 3583,12076, 3583, 3583, 3583, 3583, 3583, 3583, 3584, 3584, 3584, 3584, 3584, 3584, 3584, 3584, 3584,13897, 3584,11670, 11788,11797,12082,12078,12630,11670,12019,11788,11797, 3584, 12082,12630,11788,11797,12078,12019,12630,11670,11823,11823, 11823,11823,11823,11823,11788,11797,11670, 3584,12088,12094, 12019,12096,12033,13253,11670,12824,12088,12094,12097,11823, 13253,12033,12096, 3584, 3589, 3589,12097, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589, 3589,12033, 3589, 3589,12824, 11825,11825,11825,11825,11825,11825,12031,12099, 3589, 3589, 3589, 3589, 3589, 3589, 3589,12031,11992,14148,12099,14994, 3589,11825,12031,15093,14148,11992, 3589,11992,11992,11992, 11992,11992,11992,11992,11992,11992,12105,14994, 3589, 3589, 3589, 3589, 3590, 3590,12105, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3590, 3591, 3591,12903, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 3591, 11864,13011,11864,11864,11864,11864,11864,11864,12106, 3591, 3591, 3591, 3591, 3591, 3591, 3591,12110,12114,11864,12106, 12903, 3591,13013,13011,12110,12114,12111, 3591,11996,11996, 11996,11996,11996,11996,11996,11996,11996,12111,15098, 3591, 3591, 3591, 3591, 3592, 3592,13013, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3592, 3593, 3593,12027, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3593, 3593,12009, 3593, 3593,12037,15145,12902,12906,12919,12634,12009,12027,12128, 3593, 3593, 3593, 3593, 3593, 3593, 3593,12128,12634,12009, 12027,12037, 3593,12027,11810,11810,11810,11810,11810,11810, 11810,11810,11810,12037,12250,12252,12260,12902,12906,12919, 3593, 3593, 3593, 3593, 3594, 3594,12009, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594, 3594,12131, 3594, 3594,12141, 15162,12250,12252,12260,12131,12135,12145,12141, 3594, 3594, 3594, 3594, 3594, 3594, 3594,12018,12135,12145,12144,12439, 3594,11810,11810,12923,12018,11862,12144,11862,11862,11862, 11862,11862,11862,11862,11862,11862,12018,12439, 3594, 3594, 3594, 3595, 3595,11862, 3595, 3595, 3595, 3595, 3595, 3595, 3595, 3595, 3595,12149, 3595, 3595,12137,12923,12920,13026, 12439,12149,12828,12018,12022, 3595, 3595, 3595, 3595, 3595, 3595, 3595,13172,12022,12828,12150,12137, 3595,11824,11824, 11824,11824,11824,11824,12154,12022,12150,11824,12137,12035, 12269,12920,12154,13026,13172, 3595, 3595, 3595,12035,11824, 12155,11827,11827,11827,11827,11827,11827,11827,11827,11827, 12035,12155,12022,14111, 3595,12837,13624,12269,12194, 3595, 3602, 3602,11827, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602, 3602,12158, 3602, 3602,12165,15202,12035,13624,12194, 12158,12837,12177,12165, 3602, 3602, 3602, 3602, 3602, 3602, 3602,12026,12036,12177,14111,11863, 3602,11863,11863,11863, 11863,11863,11863,11863,11863,11863,12194,12795, 3602,12180, 12248,12026,12036,11863, 3602, 3602, 3602,11948,12026,12036, 12180,12248, 3602,12026,12036,12839,12168,12175,11948,11948, 11948,11948,11948,11948,12168,12175, 3602, 3603, 3603,12795, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603, 3603,11948, 3603, 3603,12178,12530,15210,12839,15212,12795,12251,12196, 12178, 3603, 3603, 3603, 3603, 3603, 3603, 3603,12196,12251, 13697,12530,12258, 3603,11949,11949,11949,11949,11949,11949, 11949,11949,11949,12258,11949, 3603,12199,12008,12017,12021, 12192, 3603, 3603, 3603,12530,11949,12008,12017,12021,12192, 13697,12261,12208,12008,12017,12021,12192,12199,12008,12017, 12021,12208,12261, 3603, 3604, 3604,13699, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604, 3604,11949, 14188,12203,12204,12631,12199,12008,12017,12021, 3604, 3604, 3604, 3604, 3604, 3604, 3604,12631,13699,14916,12631,15213, 3604,12203,12204, 3604,12184,12184,12184,12184,12184,12184, 12184,12184,12184,12203,12204,12218,14188,14916, 3604, 3604, 3604, 3604, 3605, 3605,12218, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3605, 3607, 3607,12606, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 3607, 12185,12185,12185,12185,12185,12185,12185,12185,12185, 3607, 3607, 3607, 3607, 3607, 3607, 3607,15217,12211,12798,12606, 15219, 3607,12267,12275,11957,11957,11957,11957,11957,11957, 11957,11957,11957,12267,12275,12293,12798,13907,12211, 3607, 3607, 3607, 3607, 3613, 3613,11957, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613, 3613,12246, 3613, 3613,12798,13907, 12606,12216,12293,12246,12205,12211,12198, 3613, 3613, 3613, 3613, 3613, 3613, 3613,12034,12198,12210,12221,12200, 3613, 12231,12216,12198,12034,12205,12210,12221,12200, 3613,12231, 12034,12205,12210,12216,12875,12034,12205, 3613, 3613, 3613, 3614, 3614,12200, 3614, 3614, 3614, 3614, 3614, 3614, 3614, 3614, 3614,12249, 3614, 3614,12206,12278,13698,12875,12278, 12249,12237,12034,12237, 3614, 3614, 3614, 3614, 3614, 3614, 3614,15220,12237,15224,15226,12206, 3614,12120,12120,12120, 12120,12120,12120,12120,12120,12120,12278,12206,12294,12302, 12206,12256,13698,12120, 3614, 3614, 3614, 3616, 3616,12256, 3616, 3616, 3616, 3616, 3616, 3616, 3616, 3616, 3616, 3616, 3616, 3616,12259,12806,12285,12294,12302,12285,12120,12212, 12259, 3616, 3616, 3616, 3616, 3616, 3616, 3616,12212,12215, 15227,15232,14320, 3616,12136,12136,12136,12136,12136,12136, 12136,12136,12136,12212,12285,12806,12287,12311,12845,12215, 12311, 3616, 3616, 3616, 3616,12136,12215,12287, 3616, 3617, 3617,12215, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 3617,12845,12136,14320,12311,15234,12845, 12806,12219,12225, 3617, 3617, 3617, 3617, 3617, 3617, 3617, 12219,12225,12265,12268,15235, 3617,12318,12219,12225,12318, 12265,12268,12164,12164,12164,12164,12164,12164,12164,12164, 12164,12232,12291, 3617, 3617, 3617, 3617,12273,12164,12638, 12232,12283,12339,12291,12344,12273,12318,12232,12638,12283, 3617, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624, 3624,12164, 3624, 3624,12286,14996,12349,12339, 14996,12344,12393,12300,12286, 3624, 3624, 3624, 3624, 3624, 3624, 3624,12201,12202,12300,14996,12290, 3624,12298,12301, 12308,12201,12202, 3624,12290,12349,12298,12301,12201,12393, 12398,12308,12403,12201,12202, 3624, 3624, 3624, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 3625, 12306, 3625, 3625,14616,14616,14616,13884,12398,12306,12403, 12201,12202, 3625, 3625, 3625, 3625, 3625, 3625, 3625,12213, 12214,12320,12316,12319, 3625,12323,12324,12329,12213,12214, 12316,12319,12320,12323,12408,12213,12440,12324,12329,13884, 12213,12214, 3625, 3625, 3625, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626, 3626,12223, 3626, 3626, 15243,12408,15245,12440,15246,12462,12223,12213,12214, 3626, 3626, 3626, 3626, 3626, 3626, 3626,12328,12343,12223,12348, 12224, 3626,12222,12506,12328,12227,12353,12238,12343,12224, 12348,12222,12462,12226,12227,12506,12238,12353,12222, 3626, 3626, 3626,12226,12222,12224,12223,12227, 3626, 3627,12226, 3627,12238,12332,12506,12226,12971,15259,12380,12380,12380, 12332, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 3627, 12222, 3627,12342,12227,12971,13005,12347,13005,12380,12971, 12342,12226, 3627,12234,12347,12234,12234,12234,12234,12234, 12234,12234,12234,12234,12234,12235,12380,12235,12235,12235, 12235,12235,12235,12235,12235,12235,12235,12236,13005,12236, 12236,12236,12236,12236,12236,12352, 3627, 3628,12236, 3628, 12356,12362,12900,12352,14321,12904,12921,15009,12356,12362, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628, 3628,12363, 3628,12366,12381,12367,12467,12904,12921,14321,12900,12366, 12363, 3628, 3640, 3640,12367, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640, 3640,12370, 3640, 3640,12391,15009,12904, 12921,12467,12370,12392,12381,12391, 3640, 3640, 3640, 3640, 3640, 3640, 3640,14070,12392,12396,12397,12381, 3640,12402, 12378,12378,12381,12396, 3640,12401,12406,12397,12472,12497, 12402,12535,12648,12401,12406,14070, 3640, 3640, 3640, 3644, 3644,12648, 3644, 3644, 3644, 3644, 3644, 3644, 3644, 3644, 3644,12407, 3644, 3644,12378,12472,12497,12607,12535,12412, 12423,12525,12407, 3644, 3644, 3644, 3644, 3644, 3644, 3644, 12412,12423,12378,12525,12427, 3644,12292,12292,12292,12292, 12292,12292,12292,12292,12292,12427,12553,12378,12558,12607, 12411,12525,12292, 3644, 3644, 3644, 3645, 3645,12411, 3645, 3645, 3645, 3645, 3645, 3645, 3645, 3645, 3645,12415, 3645, 3645,12421,13407,12553,13173,12558,12415,12292,12461,12421, 3645, 3645, 3645, 3645, 3645, 3645, 3645,15260,15280,12461, 12607,12466, 3645,12383,12383,12383,12383,12383,12383,12383, 12383,12383,12466,13173,13407,12426,15283,12430,12460,12465, 3645, 3645, 3645,12426,12383,12430,12460,12465, 3645, 3646, 3646, 3646, 3646, 3646, 3646, 3646, 3646, 3646,12851, 3646, 12471,12476,12383,12384,12384,12384,12384,12384,12384,12445, 3646,12471,12476,12936,12385,12385,12385,12385,12385,12385, 12385,12385,12385,12936,12384,12470,15287,12445, 3646,15289, 12851,12445,12446,12470,12446,12385,12445,12386,12386,12386, 12386,12386,12384,12496, 3646, 3651, 3651,13696, 3651, 3651, 3651, 3651, 3651,12385,12496, 3651, 3651, 3651,12386,12387, 12387,12387,12387,12387,12387,12851,12446,12534,12387,12475, 3651, 3651, 3651, 3651, 3651, 3651,12386,12475,12534,13696, 12387, 3651,12479,12539,12435,12435,12435,12435,12435,12435, 12479,12448,12448,12563,12539,15291,12446,13696,12387, 3651, 3651, 3651, 3651, 3652, 3652,12435, 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3652, 3652,12510, 3652, 3652,12486,13777, 12563,12816,12448,12435,12543,12448,12486, 3652, 3652, 3652, 3652, 3652, 3652, 3652,15279,12543,12489,12495,12533, 3652, 12538,12542, 3652,12448,12489,12495,12533,12510,12538,12542, 12816,13777,12557,15292,15279,12510,12816, 3652, 3652, 3652, 3652, 3653, 3653,12557, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3653, 3654, 3654,15193, 3654, 3654, 3654, 3654, 3654, 3654, 3654, 3654, 3654,12500, 3654, 3654,15193, 13870,12628,12844,12844,12641,12454,12454,12454, 3654, 3654, 3654, 3654, 3654, 3654, 3654,12546,12556,12561,12500,12562, 3654,12500,12567,12546,12556,12561,12454,12566,12628,12570, 12562,12641,13870,12567,12844,12566,12500,12570, 3654, 3654, 3654, 3654, 3655, 3655,12454, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3655, 3656, 3656,14143, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656, 3656,14143, 3656, 3656, 12576,15297,12603,12447,15298,12447,12578,12582,12576, 3656, 3656, 3656, 3656, 3656, 3656, 3656,12581,12578,12582,12627, 12585, 3656,12603,12626,12581,12887,12436, 3656,12585,12640, 12627,12626,12507,12887,12603,12644,12501,12447,12640, 3656, 3656, 3656, 3656, 3657, 3657,12640, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657,14134, 3657, 3657,12501,14134, 12436,15304,12644,12507,12501,12652,12507, 3657, 3657, 3657, 3657, 3657, 3657, 3657, 3657,14134,12501, 3657,12436, 3657, 12447,12658,12635, 3657,12507,12880, 3657, 3657, 3657,12635, 12658, 3657,12652,12436,12635,12499,12880, 3657, 3657, 3657, 12422,12422,12422,12422,12422,12422,12422,12422,12422,12613, 12527,12613,12499,12645,15305,14329,12422,12499,12591, 3657, 3658, 3658,12645, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658,12499,12662,12645,12908,13893, 12591,12422,12527,12613, 3658, 3658, 3658, 3658, 3658, 3658, 3658, 3658,12591,12636,12917,12527, 3658,12649,12669,14329, 12527,12613,12687,12662,12908,12636,12649,12669,12636,13893, 12591,12687,15314,12649, 3658, 3658, 3658, 3658, 3659, 3659, 12917, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3659, 3660, 3660,13872, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660,12925, 3660, 3660,12522,12522,12797,12452, 12452,12452,12452,12452,12673, 3660, 3660, 3660, 3660, 3660, 3660, 3660, 3660,15315,13872, 3660,12797, 3660,12522,12925, 12452, 3660,12690,12727, 3660, 3660, 3660,12797,12434, 3660, 12522,12673,14909,14909,14909, 3660, 3660, 3660,12452,12434, 12434,12434,12434,12434,12434,12434,12434,12434,12522,12690, 12727,13622,12456,12456,12456,12456,12456, 3660, 3661, 3661, 12434, 3661, 3661, 3661, 3661, 3661, 3661, 3661, 3661, 3661, 3661, 3661, 3661,12456,12643,12651,12784,13622,12434,12643, 12651,12653, 3661, 3661, 3661, 3661, 3661, 3661, 3661,13029, 12653,12456,12659,12670, 3661,15325,14135,13029,12682,13464, 3661,12659,12670,12784,12682,12653,12643,12651,12659,12670, 12682,13464, 3661, 3661, 3661, 3661, 3665, 3665,14135, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3665, 3667, 3667,14114, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 3667,12661,12672,12976,12726,14113,12661, 12672,12976,12726, 3667, 3667, 3667, 3667, 3667, 3667, 3667, 12526,12526,12526,12683,14114, 3667,12695,12976,15326,12683, 12502, 3667,12695,12614,12849,12683,12661,12672,12695,12726, 12502,12526,14113, 3667, 3667, 3667, 3667, 3668, 3668,15336, 3668, 3668, 3668, 3668, 3668, 3668, 3668, 3668, 3668,12526, 3668, 3668,12502,12783,12614,13031,12849,12614,12783,12663, 12674, 3668, 3668, 3668, 3668, 3668, 3668, 3668,12663,12674, 12502,12689,12515, 3668,12515,12614,15337,12598,13882, 3668, 12689,12515,13031,12663,12674,12783,12849,12689,12598,12598, 12598, 3668, 3668, 3668, 3669, 3669,15344, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669, 3669,12515, 3669, 3669,12598, 13882,12799,12515,12799,12600,12801,15346,13050, 3669, 3669, 3669, 3669, 3669, 3669, 3669,12600,12600,12600,12600,12600, 3669,12834,12449,12449,12449,12449,12449,12449,12449,12449, 12449,12842,13052,12834,13050,12799,12600,12801, 3669, 3669, 3669, 3670, 3670,12449, 3670, 3670, 3670, 3670, 3670, 3670, 3670, 3670, 3670,12799, 3670, 3670,12888,15347,12888,13052, 15554,12449,12842,12817,12888, 3670, 3670, 3670, 3670, 3670, 3670, 3670,12801,12801,12999,12834,13895, 3670,12601,12999, 12451,12451,12451,12451,12451,12451,12451,12451,12451,12601, 12601,12601,12601,12601,12601, 3670, 3670, 3670,12817,12684, 13895,12451,12694,12817,12842,12684,12684,13044,12694,12694, 12601,12684,12999,15562,12694,13044, 3670, 3671, 3671,12451, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3671, 3671,12802, 3671, 3671,12681,12681,12681,12681,12681,12681,12681,12681, 12681, 3671, 3671, 3671, 3671, 3671, 3671, 3671,12889,12889, 12893, 3671,12893, 3671,12889,14260,12889,12889,14338,12893, 14260,12802,12455,12455,12455,12455,12455,12455,12455,12455, 12455, 3671, 3671, 3671, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675, 3675,12455, 3675,12453,12453,12453,12453,12453, 12453,12691,12728,12615,12453, 3675,12802,13871,15694,15704, 12691,12455,14338,12802,12728,12655,12453,12590,12590,12590, 12590,12590,12590, 3675,12655,12691,12941,14347,12957,14555, 12736,12655,12728,13871,12453,12941,12655,12615,12590, 3675, 3678, 3678,12736, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678, 3678,12947, 3678, 3678,12615,12590,12947,12947,12947, 12736,12933,12939,12655, 3678, 3678, 3678, 3678, 3678, 3678, 3678,14347,12615,12939,14555,12957, 3678,12485,12485,12485, 12485,12485,12485,12485,12485,12485,12957,12737,12706,12706, 12706,12706,12706,12485, 3678, 3678, 3678, 3679, 3679,12737, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679,12706, 3679, 3679,12832,15561,12933,15561,15727,12737,12485,12933, 12933, 3679, 3679, 3679, 3679, 3679, 3679, 3679, 3679,15240, 15240,15240,12832, 3679,12605,12505,12505,12505,12505,12505, 12505,12505,12505,12505,12832,12605,12605,12605,12605,12605, 12605, 3679, 3679, 3679, 3681, 3681,12505, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681, 3681,12605, 3681, 3681,12852, 13022,13022,13022,12730,12505,12745,14099,12750, 3681, 3681, 3681, 3681, 3681, 3681, 3681,12730,12832,12745,12730,12750, 3681,13022,12523,12523,12523,12523,12523,12523,12523,12523, 12523,12852,12905,12730,14099,12745,13540,12750, 3681, 3681, 3681, 3682, 3682,12523, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682,12656, 3682, 3682,15729,15751,13540,12905, 12852,12523,12656,12758,12905, 3682, 3682, 3682, 3682, 3682, 3682, 3682, 3682,12511,12656,12758,13540, 3682,12710,12710, 12710,12710,12710,12710,12511,12511,12511,12511,12511,12511, 12511,12511,12511,12758,12685, 3682, 3682, 3682, 3686,12710, 12685,12656,12846,12850,12909,12511,12685,13061,12512,12685, 3686, 3686, 3686, 3686, 3686, 3686, 3686, 3686, 3686,12512, 12512,12512,12512,12512,12512,12512,12512,12512,12909,12803, 12949, 3686,12949,12846,13061,12850,12940,15753,12729,12909, 12512,12949,12846,12949,12850,12729,12940,12940,12949, 3686, 12729, 3686,15775, 3686, 3686, 3686, 3686, 3686, 3686, 3691, 3691,12803, 3691, 3691, 3691, 3691, 3691,12803,12729, 3691, 3691, 3691,12528,12528,12528,12528,12528,12528,12528,12528, 12528,12665,12826,12959, 3691, 3691, 3691, 3691, 3691, 3691, 12665,12666,12965,12528,12826, 3691,12803,12665, 3691,12959, 12666,13001,12665,12965,12965,13623,13001,13001,12922,15788, 12959,12528,12666, 3691, 3691, 3691, 3691, 3693, 3693,12826, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693, 3693,12665, 3693, 3693,12826,13896,13623,12922,12739,12752,12764,12666, 12922, 3693, 3693, 3693, 3693, 3693, 3693, 3693,12739,12752, 12764,12739,12752, 3693,12697,12697,12697,12697,12697,12697, 12697,12697,12697,13896,15164,12969,12739,12752,12764,15164, 12969, 3693, 3693, 3693, 3693, 3694, 3694,12969, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3694, 3696, 3696, 14062, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 3696, 12677, 3696, 3696,13047,14189,14112,14115,12766,12772,12677, 13774,13047, 3696, 3696, 3696, 3696, 3696, 3696, 3696,12766, 12772,12677,12766,15798, 3696,14062,14189, 3696,12698,12698, 12698,12698,12698,12698,12698,12698,12698,12766,12772,13774, 14112,14115, 3696, 3696, 3696, 3696, 3697, 3697,12677, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3697, 3698, 3698,12830, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 3698,12693, 3698, 3698,12831,13888,13004,12796,12796,13992, 12693,12830,13225, 3698, 3698, 3698, 3698, 3698, 3698, 3698, 3698,13225,12693,12830,12831, 3698,12577,12577,12577,12577, 12577,12577,12577,12577,12577,13070,12831,13888,13114,13004, 13992,12796,12577, 3698, 3698, 3698, 3698, 3699, 3699,12693, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699, 3699,12796, 3699, 3699,13070,13900,12830,13114,12831,12577,12960,13004, 12961, 3699, 3699, 3699, 3699, 3699, 3699, 3699,12960,12960, 12961,12961,12796, 3699,12699,12699,12699,12699,12699,12699, 12699,12699,12699,14240,15777,13900,12958,15777,14240,12958, 14240, 3699, 3699, 3699, 3699, 3700, 3700,12958, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3700, 3701, 3701, 12833, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701, 3701,12926,12711,12711,12711,12711,12711,12711, 12833,15802, 3701, 3701, 3701, 3701, 3701, 3701, 3701,12676, 12692,12964,12833,12966, 3701,12711,15805,12926,12676,12692, 14116,12964,12964,13873,12966,12676,12692,12987,12926,12987, 12676,12692, 3701, 3701, 3701, 3701, 3702, 3702,12987, 3702, 3702, 3702, 3702, 3702, 3702, 3702, 3702, 3702, 3702, 3702, 3702,14116,13873,14100,12835,14122,13465,12676,12692,12989, 3702, 3702, 3702, 3702, 3702, 3702, 3702, 3702,13465,12989, 12989,15288, 3702,12701,12835,12701,12701,12701,12701,12701, 12701,12701,12701,12701,14116,14100,12835,14122,14122,15288, 3702, 3702, 3702, 3702, 3703, 3703,12701, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703, 3703,12825, 3703, 3703,12747, 12747,12747,12747,12747,12747,12747,12747,12747, 3703, 3703, 3703, 3703, 3703, 3703, 3703,13019,13019,13019,13019,13019, 3703,12825,12705,12705,12705,12705,12705,12705,12705,12705, 12705,12825,15428,15808,12825,15813,13019,15428, 3703, 3703, 3703, 3705, 3705,12705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3705, 3709, 3709,14325, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709,12748, 12748,12748,12748,12748,12748,12748,12748,12748, 3709, 3709, 3709, 3709, 3709, 3709, 3709,12962,12962,12978,12963,14325, 3709,15817,12978,13030,12735,13984, 3709,12962,12963,12963, 12978,12735,12962,12963,13030,12962,12735,13984, 3709, 3709, 3709, 3709, 3710, 3710,14089, 3710, 3710, 3710, 3710, 3710, 3710, 3710, 3710, 3710,12735, 3710, 3710,12749,12749,12749, 12749,12749,12749,12749,12749,12749, 3710, 3710, 3710, 3710, 3710, 3710, 3710,14089,15251,15251,15251,12990, 3710,14089, 12707,12707,12707,12707,12707,12707,12990,12990,12790,12707, 12790,12790,12790,12790,12790,12790, 3710, 3710, 3710, 3712, 3712,12707, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,12790, 3712, 3712,12760,12760,12760,12760,12760,12760, 12760,12760,12760, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 13178,13178,13178,13178,13178, 3712,15820,13046, 3712,12761, 12761,12761,12761,12761,12761,12761,12761,12761,13046,15899, 13057,13178,15936, 3712, 3712, 3712, 3733, 3733,13057, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733, 3733,13039, 3733, 3733,12762,12762,12762,12762,12762,12762,12762,12762,12762, 3733, 3733, 3733, 3733, 3733, 3733, 3733,12599,12981,13007, 13007,13116, 3733,12981,13039,14222,15012,12981,12599,12599, 12599,12599,12599,12599,12599,12599,12599,13039,12738,12744, 3733, 3733, 3733, 3735,13060,12738,12744,14222,13116,12599, 12738,12744,13060,13007, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735, 3735,12804, 3735,12602,12805,15012,12738,12744, 14195,13007,13124,13133,13066, 3735,12602,12602,12602,12602, 12602,12602,13066,13007,12702,12602,12702,12702,12702,12702, 12702,12702,12702,12702,12702,12804,12751,12602,12805,13124, 13133,13187,13040,12751,14195,13040,12805,12702,12751, 3735, 3737, 3737,12807, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737, 3737,12804, 3737, 3737,14221,12751,14123,13187,12804, 12804,13051,12807,12805, 3737, 3737, 3737, 3737, 3737, 3737, 3737,13040,13051,14250,12807,12967, 3737,13059,12708,12708, 12708,12708,12708,12708,12708,12708,12708,12967,13059,14123, 14250,14221,12967,14250, 3737, 3737, 3737, 3738, 3738,12708, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738,12807, 3738, 3738,12774,12774,12774,12774,12774,12774,12774,12774, 12774, 3738, 3738, 3738, 3738, 3738, 3738, 3738, 3738,15277, 15277,15277,13467, 3738,13062,12709,12709,12709,12709,12709, 12709,12709,12709,12709,13467,13062,15941,13467,15951,15955, 15277, 3738, 3738, 3738, 3740, 3740,12709, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3740, 3746,12703,14259, 12703,12703,12703,12703,12703,12703,12703,12703,12703, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746,14124,15958, 15967,12703,15972,14259,13193, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746, 3746,14124,13068, 3746,13193, 3746, 3746, 3746, 3746, 3746, 3746, 3748, 3748, 13068, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 3748, 14377, 3748, 3748,12775,12775,12775,12775,12775,12775,12775, 12775,12775, 3748, 3748, 3748, 3748, 3748, 3748, 3748,13069, 13074,15439,14377,13885, 3748,15976,13885,13069,13074,13076, 3748,12776,12776,12776,12776,12776,12776,12776,12776,12776, 13076,15439, 3748, 3748, 3748, 3791, 3791,13885, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3791, 3792, 3792, 14185, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 14339, 3792, 3792,12788,12788,12788,12788,12788,12788,12788, 12788,12788, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 3792, 15979,14185,12984,14339, 3792,12984,13080,12712,12712,12712, 12712,12712,12712,12984,13080,13217,12712,13219,13275,12984, 15194,16036, 3792, 3792, 3792, 3792, 3793, 3793,12712, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793, 3793,12968, 3793, 3793,14971,13217,12968,13219,13275,14120,13087,12968,12985, 3793, 3793, 3793, 3793, 3793, 3793, 3793,12985,13087,12985, 12985,15194, 3793,13093,13112,12789,12789,12789,12789,12789, 12789,12789,12789,12789,13093,13112,14971,14120,14120,16071, 3793, 3793, 3793, 3793, 3795, 3795,12789, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3795, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797, 3797,12950,15553,16079, 14314,12937,15553, 3797, 3797, 3797, 3797, 3797, 3797,12937, 12950,12977,12950,12975,12937,13115,12977,13122,12975,12979, 12970,12950,12977,12975,12979,12937,13115,13125,13122,12979, 3797, 3797, 3797, 3797, 3797, 3797, 3799, 3799,13125, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799, 3799,12808, 3799, 3799,14314,14314,16089,13016,13016,13016,13016,13016,13016, 3799, 3799, 3799, 3799, 3799, 3799, 3799,12974,12808,12970, 12604,13086, 3799,12970,12970,13016,13277,13285,12970,13086, 12808,12604,12604,12604,12604,12604,12604,12604,12604,12604, 3799, 3799, 3799, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805, 3805,12604,13277,13285,16100,13131,13294,13139, 3805, 3805, 3805, 3805, 3805, 3805,12808,12974,13131,12980,13139, 13091,12974,12980,12980,12812,12812,12974,12980,13091,12980, 14218,13313, 3805,13150,13294,13321, 3805, 3805, 3805, 3805, 3805, 3805, 3806, 3806,13150, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806, 3806,12988, 3806, 3806,12812,13313,12988, 14322,14218,13321,13156,13987,12988, 3806, 3806, 3806, 3806, 3806, 3806, 3806,13097,13156,12812,13987,12982, 3806,12982, 12982,13097,12997,15354,12812,12982,14322,12997,12982,15354, 13995, 3806,12812,12997,12997,12982, 3806, 3806, 3806, 3806, 3821, 3821,13995, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824, 3824,16023,13348,16023,14323,14341,12829, 3824, 3824, 3824, 3824, 3824, 3824,12757,12765,12771,13103,13186, 12829,14471,12757,12765,12771,13228,13103,12757,12765,12771, 13186,13348,13003,13003,13228,12829, 3824, 3824, 3824, 3824, 3824, 3824, 3831,12829,13110,12757,12765,12771,12809,14323, 14341,14471,13110, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831, 3831,12810,13350,15010,13003,13113,12809, 3831, 3831, 3831, 3831, 3831, 3831,13113,13000,13120,13123,13129, 12809,13000,13000,12810,13003,13120,13123,13129,13000,13361, 15010,13350,13003,12811,12811,12810, 3831, 3831, 3831, 3831, 3831, 3831, 3832,13192, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832, 3832,13192,12809,13361,12810,13132,14560, 3832, 3832, 3832, 3832, 3832, 3832,13132,12811,13137,13143, 12810,13149,13009,13009,13154,13009,13137,13143,13160,13149, 16238,14560,13154,13232,16261,12811,13160, 3832, 3832, 3832, 3832, 3832, 3832, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835, 3835,12811,12811,13232,13197,13009,13166,12811, 3835, 3835, 3835, 3835, 3835, 3835,13166,13197,13185,13191,13196, 12983,13200,13206,12983,13009,13185,13191,13196,12983,13200, 13206,13232,15350,15350,15350,12983, 3835, 3835, 3835, 3835, 3835, 3835, 3851, 3851,12983, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3851, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854, 3854,13021,13021,13021,13021,13021, 13021, 3854, 3854, 3854, 3854, 3854, 3854,13213,12813,12813, 12813,12986,13215,13231,12986,13213,13021,13366,13216,12986, 15000,13174,13231,13215,13174,12986,13216,13218, 3854, 3854, 3854, 3854, 3854, 3854, 3861,12986,13237,13231,13218,15558, 15558,15558,12813,15000,13366, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861, 3861,13174,14330,13237,13273,13226, 12813, 3861, 3861, 3861, 3861, 3861, 3861,12813,13226,13273, 13234,13238,13246,13174,13256,13226,14228,12813,12813,13234, 13238,13246,14330,13256,13237,12815,12815,12815, 3861, 3861, 3861, 3861, 3861, 3861, 3862,13238, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 3862, 3862,13405,13414,13249,13240, 14228,13419, 3862, 3862, 3862, 3862, 3862, 3862,13240,12815, 13221,13221,13221,13221,13221,13221,13221,13221,13221,13249, 13240,15008,15361,13405,13414,15094,14192,12815,13419, 3862, 3862, 3862, 3862, 3862, 3862, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865, 3865,12815,15008,13249,13240,13230,13259, 12815, 3865, 3865, 3865, 3865, 3865, 3865,13230,13259,14192, 14192,15094,15397,15361,13230,12814,12814,12814,13222,13222, 13222,13222,13222,13222,13222,13222,13222,13250, 3865, 3865, 3865, 3865, 3865, 3865, 3887, 3887,13250, 3887, 3887, 3887, 3887, 3887, 3887, 3887, 3887, 3887,13271, 3887, 3887,12814, 13424,13250,15397,13303,13271,12814,13303,13262, 3887, 3887, 3887, 3887, 3887, 3887, 3887,16268,13262,12814,16334,13236, 3887,13274,12818,12819,12818,12819,12814,13424,13236,13274, 12820,13262,12820,13303,12814,13236,12998,14340, 3887, 3887, 3887, 3888, 3888,13546, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888,13281, 3888, 3888,12818,12819,13457,13459, 13546,13281,16219,14340,12820, 3888, 3888, 3888, 3888, 3888, 3888, 3888, 3888,12820,12818,12819,13537, 3888,13248,13276, 13284,12998,12820,13546,12998,13457,13459,13248,13284,12998, 13276,12818,12819,13283,13248, 3888, 3888, 3888, 3891,12820, 12998,16219,15433,13537,13283,16351, 3891,13286,13292, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891,13286,13292, 13310,15433,16375,13310,15188, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3891, 3897, 3897, 13310, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 3897, 15188, 3897, 3897,13223,13223,13223,13223,13223,13223,13223, 13223,13223, 3897, 3897, 3897, 3897, 3897, 3897, 3897,13290, 13239,13257,13263,13300, 3897,13293,12821,13290,12821,13239, 13257,13263,13298,13293,13300,13539,13239,13257,13263,13308, 13298,13239, 3897, 3897, 3897, 3898, 3898,13308, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898,13311, 3898, 3898, 12821,14298,13539,16378,16379,13311,13312,13997,13239, 3898, 3898, 3898, 3898, 3898, 3898, 3898, 3898,13312,12821,13997, 16382, 3898,13997,13319,12821,13014,13014,13014,13014,13014, 13014,13014,13014,13014,13319,12821,13317,13320,13327, 3898, 3898, 3898, 3903,13325,13317,13320,13014,13330,14298,13327, 13330,13325, 3903,14298,13015,13015,13015,13015,13015,13015, 13015,13015,13015,13017,13017,13017,13017,13017,13017,13017, 13017,13017,13335,15453, 3903,13015,16383,13330,15453,13337, 13335, 3903,13337,14010,13017,13018,13018,13018,13018,13018, 13018,13018,13018,13018,13338,14010, 3903,13344, 3903,13339, 3903,13346,13338, 3903, 3903,13344,13018,13469, 3903,13337, 13339, 3903,13346, 3903,14343, 3903,13469, 3903, 3903, 3903, 3904,13023,13023,13023,13023,13023,13023,13023,13023,13023, 13177,13177,13177,13177,13177,13177,13177,13177,13177,13251, 13252,13472,13023,13552,15190,13347,13349,14343,13251,13252, 13472,13177, 3904,13347, 3904,13251,13260,13349, 3904, 3904, 13251,13252,13261,15691,13264,13260,15190,13353,13360,15691, 13552,13261,13260,13264, 3904,13353, 3904,13260, 3904,13360, 13264, 3904, 3904,13261,13356,13264, 3904,13251,13252, 3904, 13265, 3904,13356, 3904,13364, 3904, 3904, 3904, 3909,13265, 3909,13369,13364,13365,13260,13370,14155, 3909,13390,13369, 13261,13265,13264,13373,13365,13380,13370,13383,13389,13390, 13394,13373,13395,13380,13466,13383,13389,13398,13394,13410, 14155,13466, 3909,13395,14155,13398,13466,13410,13265, 3909, 13411,13379,13379,13379,13379,13379,13379,13379,13379,13379, 16391,13411,13417,13418, 3909,13422, 3909,13379, 3909,13423, 13417, 3909, 3909,13422,13418,14319, 3909,13510,13428, 3909, 13423, 3909,14319, 3909,13439, 3909, 3909, 3909, 3911,13428, 3911,13427,13379,13431,13437,13439,14687, 3911,13510,13427, 13560,13431,13437,13443,13438,13438,13438,13438,13438,13438, 13438,13438,13438,13442,13443,13446,13453,13455,13456,13458, 13438,13442, 3911,13446,13453,13510,13456,13560,13455, 3911, 13458,13463,13463,13463,13463,13463,13463,13463,13463,13463, 13474,13480,14687,13535, 3911,13438, 3911,13538, 3911,13474, 13480, 3911, 3911,13471,13535,13475, 3911, 3911,13538, 3911, 13580, 3911,13471, 3911,13475, 3911, 3911, 3911, 3941,13471, 13476,13475,13477,13478,13481,13483,13475,13484, 3941,13476, 14071,13477,13478,13481,13483,13485,13484,13580,13486,13478, 13481,13476,13487,13484,13485,13491,13477,13486,13484,16392, 3941,13487,14071,13475,13491,13533,13485, 3941,13487,13536, 3941,13488,13486,13533,13489,14071,15483,13536,13476,13494, 13488,14136, 3941,13489, 3941,13484, 3941,13488,13494, 3941, 3941,13492,13488,13485, 3941,13489,15483, 3941,13551, 3941, 13492, 3941,13495, 3941, 3941, 3941, 3942,13492,13496,13551, 13502,13495,13497,14136,13634,13498, 3942,13496,13495,13488, 13503,13497,13489,13495,13498,13499,13500,13776,13507,13496, 13502,13498,13634,13776,13499,13500,13497,13507, 3942,13504, 13503,13499,13502,13550,13513, 3942,13499,13500,13521,13776, 13495,13550,13503,13513,13509,13634,13496,13521,13505,13504, 3942,13558, 3942,13509, 3942,13513,13504, 3942, 3942,13558, 13509,13504, 3942,13499,13500, 3942,13511, 3942,13505, 3942, 13512, 3942, 3942, 3942, 3943,13511,13514,13515,13522,13512, 13505,15434,13513,13505, 3943,13585,13512,13522,13559,13542, 13511,13512,13523,13525,13522,13525,13514,13515,13909,13559, 15434,13523,13563,13514,13525,13544, 3943,13909,13514,13515, 13563,13542,13585, 3943,13542,13544,13523,13541,13512,13517, 13517,13517,13517,13517,13517,13517,13517,13517, 3943,13542, 3943,13590, 3943,13564,13541, 3943, 3943,13544,13567,13541, 3943,13714, 3943, 3943,13564, 3943,13567, 3943,13578, 3943, 3943, 3943, 3952,14337, 3952,13544,13578,13541,13590,13714, 14337, 3952,13543,13714, 3952,13518,13518,13518,13518,13518, 13518,13518,13518,13518,13519,13519,13519,13519,13519,13519, 13519,13519,13519,13579,13543,13584, 3952,13583,13547,13588, 13543,13593,13589, 3952,13579,13583,13584,13588,13594,13593, 15690,15690,13543,13589,15690,13547,13600,14360, 3952,13594, 3952,13603, 3952,13604,13600, 3952, 3952,14917,13597,13603, 3952,13597,13605, 3952,13604, 3952,13609, 3952,13547, 3952, 3952, 3952, 3954,13610, 3954,13608,13614,13609,13613,13617, 14360, 3954,13617,13608, 3954,13620,13613,13614,13597,13605, 13626,13626,13626,13620,13628,13628,13628,13628,13628,13637, 13610,13638,14917,13643,13631,15421, 3954,13637,14109,13617, 13639,13626,13638, 3954,13643,13628,13631,13644,15099,13642, 14109,13629,13629,13629,13629,13629,13629,13642, 3954,13626, 3954,13647, 3954,13628,13631, 3954, 3954,13639,13652,13647, 3954,15421,13629, 3954,13644, 3954,13652, 3954,15099, 3954, 3954, 3954, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 13629,14109, 3995, 3995, 3995,13648,13649, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995, 3995,13648, 3995, 3995, 3995, 3995, 3995, 3995,13653,13657,13654,13658,13662, 3995,13663, 13669,13672,13657,13649,13653,13662,13678,13658,13669,13672, 13663,15896,15896,15896,13678,16400, 3995, 3995, 3995, 3995, 3998, 3998,13654, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 3998, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001, 4001,13659,13666,13673,13675,13666,13680, 4001, 4001, 4001, 4001, 4001, 4001,13679,13673,13683,13625,13625, 13684,13690,14152,13969,13687,13683,13679,13687,16401,13690, 13659,13684,13969,13675,13666,13680, 4001, 4001, 4001, 4001, 4001, 4001, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002, 4002,13625,13694,13687,13718,13717, 4002, 4002, 4002, 4002, 4002, 4002, 4002,13717,13694,13718,13702,13723,13702, 13625,13703,13705,13703,13707,14152,13719,13724,15437,13723, 14152,14152,13625,13694,13705, 4002, 4002, 4002, 4002, 4002, 4002, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007, 4007,13702,13705,13719,13724,13703,13707, 4007, 4007, 4007, 4007, 4007, 4007,13722,13727,13732,13693,16413,15437,13707, 16414,13722,13727,13732,13707,13729,13702,13703,13633,13633, 13633,13633,13633,13633, 4007, 4007, 4007, 4007, 4007, 4007, 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008, 4008,13633, 13693,13708,13729,13728,13733, 4008, 4008, 4008, 4008, 4008, 4008, 4008,13737,13708,13728,13733,13738,13633,13693,16427, 13737,13741,13734,13792,13747,13797,13802,13738,14348,13741, 13693,13708,13747, 4008, 4008, 4008, 4008, 4008, 4008, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013, 4013,13734, 13792,13886,13797,13802,14348, 4013, 4013, 4013, 4013, 4013, 4013,13674,13674,13674,13674,13674,13674,13674,13674,13674, 13749,13823,16428,13828,13833,13886,13886,13674,13706,13706, 13706,13749, 4013, 4013, 4013, 4013, 4013, 4013, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017, 4017,13823,13706, 13828,13833,13674,13752, 4017, 4017, 4017, 4017, 4017, 4017, 13753,13752,13704,13704,13756,13790,13771,13706,13771,16437, 14157,13753,13756,13790,14157,13771,13712,13712,13712,13712, 13712, 4017, 4017, 4017, 4017, 4017, 4017, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018, 4018,13704,13712,13784,14972, 13771,13791,14157, 4018, 4018, 4018, 4018, 4018, 4018,13765, 13784,13796,13791,13795,13704,13712,13786,13778,13778,13778, 13849,13795,13796,16439,16440,14972,13766,13765,13784,13704, 4018, 4018, 4018, 4018, 4018, 4018, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029, 4029,13766,13849,13786,13801, 13765,13778, 4029, 4029, 4029, 4029, 4029, 4029,13766,13800, 13801,13786,13805,13809,13821,13840,13786,13800,13840,13778, 13805,13809,13821,13710,13710,13710,13710,13710,13710, 4029, 4029, 4029, 4029, 4029, 4029, 4030, 4030, 4030, 4030, 4030, 4030, 4030, 4030, 4030,13710,13840,13806,13822,15519,13827, 13832, 4030, 4030, 4030, 4030, 4030, 4030,13806,13822,13826, 13827,13832,13710,16460,16362,14225,16362,13826,15519,13748, 13748,13748,13748,13748,13748,13748,13748,13748, 4030, 4030, 4030, 4030, 4030, 4030, 4037,13748, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037, 4037,13854,13787,14225,14225, 13831,13836, 4037, 4037, 4037, 4037, 4037, 4037,13831,13836, 13748,13837,13843,13846,14324,13787,13861,13847,16467,13861, 13843,13846,13837,13854,13781,13781,13781,13787,13847, 4037, 4037, 4037, 4037, 4037, 4037, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045, 4045,13781,13861,13853,14324,13852, 13858, 4045, 4045, 4045, 4045, 4045, 4045,13852,13853,13857, 13864,13858,13865,13781,13867,13890,13867,13857,13864,13868, 16468,13890,13761,13761,13761,13761,13761,13761, 4045, 4045, 4045, 4045, 4045, 4045, 4046, 4046, 4046, 4046, 4046, 4046, 4046, 4046, 4046,13761,13865,13869,13899,13868,13867,13890, 4046, 4046, 4046, 4046, 4046, 4046,16263,16470,13904,14264, 14301,13761,13865,13869,13899,13868,13867,13890,13899,13904, 14264,13869,13783,13783,13783,13783,13783, 4046, 4046, 4046, 4046, 4046, 4046, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053, 4053,13783,14369,16263,14140,13903,13905, 4053, 4053, 4053, 4053, 4053, 4053,13903,14369,14301,13910,14140, 14328,13783,14301,13913,13921,14140,13914,13910,13913,13921, 13922,13785,13785,13785,13910,13905, 4053, 4053, 4053, 4053, 4053, 4053, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057, 4057,13785,13914,14328,13913,13921,13922, 4057, 4057, 4057, 4057, 4057, 4057,16471,16477,13923,13924,14390,13875, 13785,13883,13923,13924,14357,13932,14390,13944,13923,13924, 13875,13875,13875,13875,13875, 4057, 4057, 4057, 4057, 4057, 4057, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058, 4058,13875,13932,13883,13944,13960,14357, 4058, 4058, 4058, 4058, 4058, 4058,13815,13815,13815,13815,13815,13815,13815, 13815,13815,16478,14393,13973,16483,14159,15011,13892,13815, 14159,14393,13960,13883, 4058, 4058, 4058, 4058, 4058, 4058, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 4061, 13931,13973,14159,15011,13815,13931, 4061, 4061, 4061, 4061, 4061, 4061,13892,13925,13762,13934,13926,13933,14371,13925, 13925,13934,13926,13933,13933,13925,15270,13934,13926,13933, 13892,13926,13931, 4061, 4061, 4061, 4061, 4061, 4061, 4068, 4068, 4068, 4068, 4068, 4068, 4068, 4068, 4068,13762,15270, 14371,15477,13915,13892,15176, 4068, 4068, 4068, 4068, 4068, 4068,13915,13935,13936,15191,13937,13762,13946,13935,13936, 15477,13937,13937,13946,13935,13936,13915,13937,14088,13946, 15176,13762, 4068, 4068, 4068, 4068, 4068, 4068, 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4069, 4069,13943,15191, 14088,14186,14219,13943, 4069, 4069, 4069, 4069, 4069, 4069, 13938,13945,13996,14088,13951,13952,13938,13945,13945,13996, 13951,13952,13938,13945,13996,13938,13951,13952,14186,14219, 13943, 4069, 4069, 4069, 4069, 4069, 4069, 4074, 4074,16484, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4074, 4092, 4092,15087, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092, 4092,15478, 4092, 4092,13948,13948,13948,13948,13948, 13948,13948,13948,13948, 4092, 4092, 4092, 4092, 4092, 4092, 4092,15478,16489,15481,15087,14618, 4092,13879,13627,13627, 13627,13627,13627,13627,13627,13627,13627,14618,13879,13879, 13879,13879,13879,13879, 4092, 4092, 4092, 4093, 4093,13627, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093,13879, 4093, 4093,14068,15481,14130,16333,16490,13627,14130,14147, 14392, 4093, 4093, 4093, 4093, 4093, 4093, 4093, 4093,16333, 14068,14392,14147, 4093,13880,13630,13630,13630,13630,13630, 13630,14068,14130,14147,13630,13880,13880,13880,13880,13880, 13880, 4093, 4093, 4093, 4095, 4095,13630, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095,13880, 4095, 4095,14065, 13959,13972,14117,14117,13630,13959,13972,13974, 4095, 4095, 4095, 4095, 4095, 4095, 4095,16495,13974,14065,16364,15517, 4095,14065,13632,13632,13632,13632,13632,13632,13632,13632, 13632,13974,13959,13972,14117,14067,14190,14101, 4095, 4095, 4095, 4096, 4096,13632, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,14067, 4096, 4096,14105,14067,14190,15517, 16364,13632,14101,14190,14153, 4096, 4096, 4096, 4096, 4096, 4096, 4096, 4096,14153,14153,14101,14105, 4096,14101,13692, 13692,13692,13692,13692,13692,13692,13692,13692,14105,13986, 13986,13986,13986,13986,13986, 4096, 4096, 4096, 4098, 4098, 13692, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 4098, 13986, 4098, 4098,14121,16105,16105,16105,14619,13692,14395, 14044,14052, 4098, 4098, 4098, 4098, 4098, 4098, 4098,14619, 14395,16496,14044,14052, 4098,14072,13709,13709,13709,13709, 13709,13709,13709,13709,13709,14121,13988,13988,13988,13988, 14044,14052, 4098, 4098, 4098, 4099, 4099,13709, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099,14072, 4099, 4099, 16504,15513,13988,16505,16626,13709,14404,14407,14121, 4099, 4099, 4099, 4099, 4099, 4099, 4099, 4099,14404,14407,13988, 15513, 4099,13988,13711,13711,13711,13711,13711,13711,13711, 13711,13711,14072,13991,13991,13991,13991,13991,13991, 4099, 4099, 4099, 4100, 4100,13711, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100, 4100,13991, 4100, 4100,14402,13891,16706, 16713,14046,13711,16626,14414,14402, 4100, 4100, 4100, 4100, 4100, 4100, 4100,14046,14073,14414,14046,14288, 4100,13977, 4100,13713,13713,13713,13713,13713,13713,13953,13977,13954, 13713,14046,13891,13953,13953,13954, 4100, 4100, 4100,13953, 13977,13954,13713,14394,13954,15616,14073, 4100, 4106, 4106, 13891, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 4106, 13713, 4106, 4106,14106,14288,13891,14119,13977,14118,14288, 14394,14184, 4106, 4106, 4106, 4106, 4106, 4106, 4106,14184, 14288,14073,14187,14106, 4106,14074,13779,13779,13779,13779, 13779,13779,13779,13779,13779,14106,15616,14119,14184,14118, 14119,14187, 4106, 4106, 4106, 4107, 4107,13779, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107,14074, 4107, 4107, 14187,14106,14066,14066,14066,13779,14083,14398,14406, 4107, 4107, 4107, 4107, 4107, 4107, 4107, 4107,15550,14118,14074, 16793, 4107,15550,13780,13780,13780,13780,13780,13780,13780, 13780,13780,14074,14083,14398,14406,14066,14408,14083, 4107, 4107, 4107, 4111, 4111,13780, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111, 4111,14066, 4111, 4111,14342,14110,14158, 14083,14102,13780,14158,14408,14417, 4111, 4111, 4111, 4111, 4111, 4111, 4111,14083,16835,14197,14417,14110, 4111,14094, 13782,13782,13782,13782,13782,13782,13782,13782,13782,14110, 16848,14342,14158,14102,14137,14197, 4111, 4111, 4111, 4112, 4112,13782, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112,14094, 4112, 4112,15161,14241,14346,14197,14102,13782, 14241,14137,14241, 4112, 4112, 4112, 4112, 4112, 4112, 4112, 4112,14102,15161,15284,14137, 4112,13848,13848,13848,13848, 13848,13848,13848,13848,13848,14416,14094,14327,14145,15161, 14346,16864,13848, 4112, 4112, 4112, 4115, 4115,14107, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115, 4115,15284, 4115, 4115,14368,14416,14069,14327,14145,14069,13848,14107,14327, 4115, 4115, 4115, 4115, 4115, 4115, 4115,14154,14145,16879, 14107,14154, 4115,14145,13866,13866,13866,13866,13866,13866, 13866,13866,13866,14345,16662,14368,14318,14069,14161,14154, 4115, 4115, 4115, 4116, 4116,13866, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116,14069, 4116, 4116,14318,14973, 14345,14107,14161,13866,14425,14345,14161, 4116, 4116, 4116, 4116, 4116, 4116, 4116, 4116,14318,15514,16890,14318, 4116, 13949,13949,13949,13949,13949,13949,13949,13949,13949,14161, 13962,14425,14973,16662,14161,15514,13962, 4116, 4116, 4116, 4118, 4118,13962, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118, 4118,14444, 4118, 4118,13950,13950,13950,13950,13950, 13950,13950,13950,13950, 4118, 4118, 4118, 4118, 4118, 4118, 4118,13961,14164,14165,14164,14165, 4118,13961,13961,14444, 15625,14164,14165,13961,13964,13964,13964,13964,13964,13964, 13964,13964,13964,14386, 4118, 4118, 4118, 4119, 4119,14386, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119,14165, 4119, 4119,13965,13965,13965,13965,13965,13965,13965,13965, 13965, 4119, 4119, 4119, 4119, 4119, 4119, 4119, 4119,16705, 14685,15625,14386, 4119,13966,13966,13966,13966,13966,13966, 13966,13966,13966,14242,16700,15740,16700,14685,14242,14242, 14242, 4119, 4119, 4119, 4120, 4120,14283, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120,13983, 14685,13983,13983,13983,13983,13983,13983,13970, 4120, 4120, 4120, 4120, 4120, 4120, 4120, 4120,13970,14283,16705,16936, 4120,15740,13983,13970,13981,13981,13981,13981,13981,13981, 13981,13981,13981,14151,14283,15620,15624,14283, 4120, 4120, 4120, 4120, 4120, 4121, 4121,14151, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121, 4121,14151, 4121, 4121,14025,14025, 14025,14025,14025,14025,14025,14025,14025, 4121, 4121, 4121, 4121, 4121, 4121, 4121,13976,14009,15620,15624,14139, 4121, 16944,14423,14009,13976,14082,14304,14139,14009,14191,14156, 13976,14139,14423,14156,14198,13976,14191, 4121, 4121, 4121, 4122, 4122,14139, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122,14156, 4122, 4122,14191,14082,14156,15408,15617, 14359,14198,13976,15204, 4122, 4122, 4122, 4122, 4122, 4122, 4122, 4122,14304,14191,14082,15204, 4122,14304,13982,13982, 13982,13982,13982,13982,13982,13982,13982,14198,15408,15617, 14220,14082,14198,14359, 4122, 4122, 4122, 4125, 4125,13982, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125, 4125,14220, 4125, 4125,14034,14034,14034,14034,14034,14034,14034,14034, 14034, 4125, 4125, 4125, 4125, 4125, 4125, 4125,14220,14359, 15626,15663,14621, 4125,14431,13985,13985,13985,13985,13985, 13985,13985,13985,13985,14621,14431,14230,14621,16785,15626, 15663, 4125, 4125, 4125, 4126, 4126,13985, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126,14230, 4126, 4126,14043, 14043,14043,14043,14043,14043,14043,14043,14043, 4126, 4126, 4126, 4126, 4126, 4126, 4126, 4126,15590,15590,14230,15205, 4126,15590,13989,13989,13989,13989,13989,13989,13989,13989, 13989,15205,14375,14375,14375,14375,14375,16785, 4126, 4126, 4126, 4128, 4128,13989, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128, 4128,14375, 4128, 4128,14054,14054,14054,14054, 14054,14054,14054,14054,14054, 4128, 4128, 4128, 4128, 4128, 4128, 4128,15195,15703,16445,16445,16445, 4128,14443,13990, 13990,13990,13990,13990,13990,13990,13990,13990,14964,14443, 16954,15621,15658,15703,15195, 4128, 4128, 4128, 4129, 4129, 13990, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 14964, 4129, 4129,14055,14055,14055,14055,14055,14055,14055, 14055,14055, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 4129, 14964,15621,15658,14450, 4129,14056,14056,14056,14056,14056, 14056,14056,14056,14056,14450,14160,14129,15657,16965,14160, 14223,15661, 4129, 4129, 4129, 4130, 4130,14193, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 14129,14160,14223,14199,14129,14104,14193,14223,14160, 4130, 4130, 4130, 4130, 4130, 4130, 4130, 4130,14104,15657,14144, 14243, 4130,15661,14129,14144,14199,14243,14405,14129,14144, 14193,14243,14104,14243,14199,14405,16480,16480,16480, 4130, 4130, 4130, 4130, 4130, 4132, 4132,14104, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4132, 4133,14294,14217, 15013,14355,15013,15763,14452,14232,13767,14217, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133,13767,13767,13767, 13767,13767,13767,13767,13767,13767,14217,14232,14238,14412, 14238,14452,15207,14355,15013,14238,14232,14412,13767,14238, 14238,14355,14238,14294,15207,14294,14238,15207,14239,15763, 14294, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4133, 4137, 4137,13760, 4137, 4137, 4137, 4137, 4137,14385,15396, 4137, 4137, 4137,13760, 13760,13760,13760,13760,13760,13760,13760,13760,15555,14415, 4137, 4137, 4137, 4137, 4137, 4137, 4137,14415,15555,14239, 13760,15396, 4137,14045,14239,14623,14239,14385,14421,14244, 14045,15710,14244,14385,14623,14045,14421,14244,13760,14244, 4137, 4137, 4137, 4137, 4138, 4138,13768, 4138, 4138, 4138, 4138, 4138,14132,14045, 4138, 4138, 4138,13768,13768,13768, 13768,13768,13768,13768,13768,13768,15710,14424, 4138, 4138, 4138, 4138, 4138, 4138, 4138,14424,17031,14132,13768,14247, 4138,14132,14051,14247,14247,14271,14247,14267,14429,14051, 14271,13768,14271,14331,14051,14075,14429,14132, 4138, 4138, 4138, 4138, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141, 4141,14051,17131,14307,14075,14132,14331, 4141, 4141, 4141, 4141, 4141, 4141,14245,14439,14266,14075,14331,14245, 14266,14245,14458,14439,14267,14266,14224,14266,14480,14267, 14245,14267,14076,14458,14224, 4141, 4141, 4141, 4141, 4141, 4141, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142, 4142,14307,14075,14224,14226,14480,14307, 4142, 4142, 4142, 4142, 4142, 4142,13874,14076,14272,14272,17134,15654,14482, 14272,14224,14272,14226,13874,13874,13874,13874,13874,13874, 13874,13874,13874,14442, 4142, 4142, 4142, 4142, 4142, 4142, 4144,14442,14076,14108,14108,13874,14482,14226,15654,14076, 14076, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144, 4144,14077,14434,14108,15543,14434,14268, 4144, 4144, 4144, 4144, 4144, 4144,14268,14470,14108,14270,14270,14268,14448, 14268,14077,14270,14441,14270,14470,14441,14448,15543,14108, 14268,14326,14434,14077, 4144, 4144, 4144, 4144, 4144, 4144, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 4149, 14080,14326,14296,14441,14478,14451, 4149, 4149, 4149, 4149, 4149, 4149,14269,14451,14289,14478,14269,14481,14077,14077, 14080,14269,15699,14269,14077,14326,14490,14349,14481,14081, 14081,14081,14080, 4149, 4149, 4149, 4149, 4149, 4149, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151, 4151,14296, 14296,14349,15699,14490,14296, 4151, 4151, 4151, 4151, 4151, 4151,14289,14349,14081,14291,14289,14289,14080,14280,14286, 14289,14287,14289,14080,14291,14492,14280,15203,14085,14085, 14085,14081, 4151, 4151, 4151, 4151, 4151, 4151, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156, 4156,14081,14280, 14286,15698,14492,14287, 4156, 4156, 4156, 4156, 4156, 4156, 14286,15203,14085,14292,14456,14293,14280,14286,14287,14280, 14286,14291,14456,14287,15178,15698,14291,14086,14086,14086, 14085, 4156, 4156, 4156, 4156, 4156, 4156, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158, 4158,14085,15178,15178, 14500,14466,14488, 4158, 4158, 4158, 4158, 4158, 4158,14466, 14292,14086,14293,14488,14290,14292,14297,14293,14299,14292, 14086,14293,14299,14509,15353,14362,14362,14500,14344,14086, 4158, 4158, 4158, 4158, 4158, 4158, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163, 4163,14086,17135,14344,15353, 14509,14491, 4163, 4163, 4163, 4163, 4163, 4163,14290,14362, 14290,14290,14491,14297,14302,14299,14290,14306,14297,14290, 14299,14297,14344,14363,14363,14090,14290,14362,14090, 4163, 4163, 4163, 4163, 4163, 4163, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164, 4164,14362,17144,14306,14306,15596, 14469, 4164, 4164, 4164, 4164, 4164, 4164,14363,14469,14090, 14303,14302,15596,14312,14302,14306,14302,15596,14306,14528, 14312,14312,14302,14312,14091,14363,14091,14090, 4164, 4164, 4164, 4164, 4164, 4164, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166, 4166,14090,14461,14528,14626,14461,14498, 4166, 4166, 4166, 4166, 4166, 4166,14626,14303,14091,14305, 14498,14476,14303,14501,14087,14087,14087,14231,14303,14476, 17145,14365,14365,15544,14501,14461,14091, 4166, 4166, 4166, 4166, 4166, 4166, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171, 4171,14078,14091,14231,15544,14507,14515,14087, 4171, 4171, 4171, 4171, 4171, 4171,14365,14305,14507,14515,14479, 14305,14305,14078,14486,14308,14305,14087,14479,14305,15436, 14231,14486,14087,14365,14078,14231, 4171, 4171, 4171, 4171, 4171, 4171, 4172,14087, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172, 4172,14468,14308,14527,14468,15436,14078, 4172, 4172, 4172, 4172, 4172, 4172,14308,14527,14489,14078, 14078,14496,14308,14310,14311,14308,14489,14518,14499,14496, 14518,16715,16715,14095,14468,14095,14499, 4172, 4172, 4172, 4172, 4172, 4172, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175, 4175,14536,14310,14311,15653,14518,14505, 4175, 4175, 4175, 4175, 4175, 4175,14310,14505,14095,14508,14513, 14628,14310,14311,14311,14310,14311,14508,14513,14353,14628, 14536,14096,14336,14096,15183,14095, 4175, 4175, 4175, 4175, 4175, 4175, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177, 4177,14095,14095,14336,17156,14523,15653, 4177, 4177, 4177, 4177, 4177, 4177,14523,14096,14096,15183,14354,14356, 14526,14336,14634,14525,14336,14353,14525,14573,14526,14353, 14353,14634,14279,14096,14353, 4177, 4177, 4177, 4177, 4177, 4177, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 4182, 14096,14356,14545,14525,14573,14545,14356, 4182, 4182, 4182, 4182, 4182, 4182,14279,14534,14354,14532,14542,14535,14279, 14354,14540,14356,15443,14532,14534,14535,14354,14542,14540, 14279,14285,14545,14279, 4182, 4182, 4182, 4182, 4182, 4182, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 4183, 14552,16213,15443,14552,17157,14550, 4183, 4183, 4183, 4183, 4183, 4183,14285,14550,14554,14553,14571,14285,14576,16213, 14572,17172,14285,14553,14571,14554,14576,14556,14556,14285, 14552,14572,14285, 4183, 4183, 4183, 4183, 4183, 4183, 4186, 4186,14998, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186,14577, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 14079,14556,14577, 4186, 4186, 4186, 4186, 4186, 4186, 4186, 14581,15601,15429,14998,15429, 4186,15601,15429,14581,14556, 14079,14558,14558,14558,14558,14558,14558,14558,14558,14558, 14578,14998,14079, 4186, 4186, 4186, 4187, 4187,14079, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187,14583, 4187, 4187, 4187, 4187, 4187, 4187, 4187, 4187,14578,14582,14079, 4187, 4187, 4187, 4187, 4187, 4187, 4187,14079,14586,14582, 17173,14561, 4187,14625,14587,14583,14586,14597,14370,14370, 14370,14370,14625,16125,14300,14587,16795,16795,14597,14625, 4187, 4187, 4187, 4187, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197, 4197,14370,14561,16125,15441,14590,14596, 4197, 4197, 4197, 4197, 4197, 4197,14590,14596,14600,14607, 15281,14370,14609,14561,14370,15488,14600,14607,14300,14611, 15441,14300,15281,14609,14309,15441,14300, 4197, 4197, 4197, 4197, 4197, 4197, 4198, 4198, 4198, 4198, 4198, 4198, 4198, 4198, 4198,14300,14613,15488,14664,14611,14612,14610, 4198, 4198, 4198, 4198, 4198, 4198,14309,14610,14620,14612,14637, 17190,14309,14645,15163,14620,14648,14664,14682,14637,14620, 14613,14645,14309,16564,14648,14309, 4198, 4198, 4198, 4198, 4198, 4198, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205, 4205,14684,14664,14682,15163,16216,16564, 4205, 4205, 4205, 4205, 4205, 4205,14617,14617,14617,14617,14617,14617, 14617,14617,14617,14661,14695,14678,14681,15410,16216,14684, 14358,14358,14661,14678,14681, 4205, 4205, 4205, 4205, 4205, 4205, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209, 4209,14695,16735,15410,14629,14680,14630, 4209, 4209, 4209, 4209, 4209, 4209,14629,14358,14630,14680,14632,14683,14847, 14629,16710,14691,14697,16710,14629,14632,14630,14847,14683, 14691,14656,14358,14632, 4209, 4209, 4209, 4209, 4209, 4209, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215, 4215,14358, 14697,14656,14629,14635,14630,14631, 4215, 4215, 4215, 4215, 4215, 4215,14635,14656,14631,14686,15533,16827,16735,14635, 14059,14059,14059,14059,14059,14059,14059,14059,14059,14631, 14715,14720,14686, 4215, 4215, 4215, 4215, 4215, 4215, 4220, 4220,14059, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 4220,14850, 4220, 4220,14725,14686,15533,14715,14720,14059, 14850,14641,14646, 4220, 4220, 4220, 4220, 4220, 4220, 4220, 14641,14646,14693,13877,14694, 4220,16827,14641,14646,16622, 15533,14725,14694,14693,13877,13877,13877,13877,13877,13877, 13877,13877,13877, 4220, 4220, 4220, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224, 4224,13877, 4224,13876,14060,14060, 14060,14060,14060,14060,14060,14060,14060, 4224,13876,13876, 13876,13876,13876,13876,14638,14640,14127,13876,14652,14060, 14127,14696,14663,14638,14640, 4224,16622,14652,15021,13876, 14638,14663,14696,15411,14652,14638,14127,14060,14663,14640, 15021, 4224, 4239, 4239,14127, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239, 4239,14657, 4239, 4239,14700,15021,15411, 14127,15359,14638,17232,14701,14700, 4239, 4239, 4239, 4239, 4239, 4239, 4239,14704,14657,14701,13878,14708, 4239,15359, 15662,14704,16779,15359,16779,14708,14657,13878,13878,13878, 13878,13878,13878,13878,13878,13878, 4239, 4239, 4239, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241, 4241,13878, 4241, 13881,14061,14061,14061,14061,14061,14061,14061,14061,14061, 4241,13881,13881,13881,13881,13881,13881,14639,17237,14128, 13881,15662,14061,14128,14705,14718,14639,14092, 4241,14092, 14719,15407,13881,14718,14723,14705,15003,14755,14639,14128, 14061,14719,14723,15407, 4241, 4243, 4243,14128, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243, 4243,14643, 4243, 4243, 14658,14092,14659,14128,14755,14639,14643,14651,15003, 4243, 4243, 4243, 4243, 4243, 4243, 4243,14651,14728,14643,14092, 14658, 4243,14659,16703,14724,14728,15003,14658,14092,17247, 14732,14651,14658,16703,14659,14724,14092,14659,14732, 4243, 4243, 4243, 4243, 4245, 4245,14643, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4245, 4246, 4246,15005, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246, 4246,14729, 4246, 4246,14669,17251,14668,16486,16486,16486,14740,14665,14729, 4246, 4246, 4246, 4246, 4246, 4246, 4246,14665,14740,15776, 15005,14669, 4246,14668,15776,14097,14093,14097,14093,14738, 14668,14743,14665,14669,14744,14668,14763,14738,15005,14743, 4246, 4246, 4246, 4247, 4247,14744, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247,14093, 4247, 4247,14747,14097, 14093,15165,14785,14763,14754,14762,14747, 4247, 4247, 4247, 4247, 4247, 4247, 4247, 4247,14754,14762,14097,14093, 4247, 14767,14372,14372,14372,14372,14372,14372,14856,14097,14785, 14372,14767,14794,15165,14097,14093,14856, 4247, 4247, 4247, 4258, 4258,14372, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258, 4258,14753, 4258, 4258,14761,15618,14983,15184,14794, 14753,14784,14372,14761, 4258, 4258, 4258, 4258, 4258, 4258, 4258,17254,14784,16459,16215,14983, 4258,14793,14373,14373, 14373,14373,14373,14373,14373,14373,14373,14983,14793,15618, 15184,15024,16215,16459, 4258, 4258, 4258, 4259, 4259,14373, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259,15024, 4259, 4259,14671,14671,14671,14671,14671,14671,14671,14671, 14671, 4259, 4259, 4259, 4259, 4259, 4259, 4259, 4259,15701, 15701,15701,15024, 4259,14798,14374,14374,14374,14374,14374, 14374,14374,14374,14374,14799,14798,14804,14820,15150,14825, 15701, 4259, 4259, 4259, 4260, 4260,14374, 4260, 4260, 4260, 4260, 4260, 4260, 4260, 4260, 4260,14650, 4260, 4260,14766, 15150,14799,17262,14804,14820,14650,14825,14766, 4260, 4260, 4260, 4260, 4260, 4260, 4260,14565,14843,14650,15150,16734, 4260,14803, 4260,17267,14654,14642,14565,14565,14565,14565, 14565,14565,14803,14654,14642,14565,15007,14808, 4260, 4260, 4260,14642,14845,14843,14650,14654,14642,14565,14808, 4260, 4262, 4262,15189, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262, 4262,14995,16789,15007,16789,14845, 14995,15192,14654,14642, 4262, 4262, 4262, 4262, 4262, 4262, 4262,14770,14783,14792,15189,15007, 4262,16734,14995,14770, 14783,14792, 4262,14672,14672,14672,14672,14672,14672,14672, 14672,14672,14797,15192, 4262, 4262, 4262, 4262, 4263, 4263, 14797, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4263, 4267, 4267,16704, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267, 4267,16704, 4267, 4267,14673,14673,14673,14673, 14673,14673,14673,14673,14673, 4267, 4267, 4267, 4267, 4267, 4267, 4267,14649,14653,14818,14802,14807, 4267, 4267,15387, 14824,14649,14653,14802,14807,14818,14854,14811,14649,14653, 14811,14824,14814,14649,14653, 4267, 4267, 4267, 4269, 4269, 14814, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269, 4269,14854,15387,17271,14832,14811,15387,14832, 14649,14653, 4269, 4269, 4269, 4269, 4269, 4269, 4269,14666, 14667,14829,14817,14823, 4269,14828,14835,14841,14666,14667, 14817,14823,14829,14828,14835,14666,14832,14844,14841,14859, 14666,14667, 4269, 4269, 4269, 4269, 4270, 4270,14844, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270, 4270,14839,15442,14871,17274,16243,14859,14666,14667,14839, 4270, 4270, 4270, 4270, 4270, 4270, 4270,14842,13887,14868, 14853,15442, 4270,16243,15619,14842,15442,15656,14868,14853, 14871,13887,13887,13887,13887,13887,13887,13887,13887,13887, 4270, 4270, 4270, 4270,14853,14848,14852,14858,14860,14870, 4270, 4275,13887, 4275,14848,14852,14858,14860,14870,14882, 14884,14848,14852,14858,14896,14870,14899,14922,14882,14884, 13887,14921,14860,14896,15619,14899,14884,15656,14922,14921, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4275, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277, 4277,14926, 4277, 4277,14863,16492, 16492,16492,15086,14926,14885,14872,14923, 4277, 4277, 4277, 4277, 4277, 4277, 4277,14872,16190,16554,16269,14863, 4277, 14739,14739,14739,14739,14739,14739,14739,14739,14739,14872, 14863,14885,14934,14923,15086,14939,14739, 4277, 4277, 4277, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279, 4279,15086, 4279, 4279,16554,16190,16269,17341,14934, 14864,14739,14939,14897, 4279, 4279, 4279, 4279, 4279, 4279, 4279,16853,14897,14865,14929,15355, 4279,14866,14876,14897, 14864,14963,14929,14776,14776,14776,14776,14776,14776,14776, 14776,14776,14864,14865, 4279, 4279, 4279,14866,14876,14776, 14865, 4279, 4280, 4280, 4280,14865,15449,15355,14963,14866, 14876,16853,14866,15449,14933, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280, 4280,14776,14933,14819,14819,14819,14819, 14819,14819,14819,14819,14819,14937, 4280,14942,14903,14938, 14943,14946,14819,14937,14862,14942,14886,14903,14874,14946, 14938,14943,16249,14862,14903,14886, 4280,14874, 4280, 4280, 4280, 4280, 4280, 4280, 4281,14862, 4281,14819,14952,14874, 14886,14877,17344,14875,14878,16249,14952, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281, 4281,14861, 4281,14873,16751, 14879,14877,14862,14875,14878,14861,14874,14873, 4281,14889, 14875,15445,14861,14877,14873,14875,14878,14861,14880,14873, 14879,15285,14955,14961,14902,15092,14888,14879,14901,14889, 14955,14961,14879,14902,15092,14888,14889,14901,14880,15445, 14962,14889, 4281, 4282,14861, 4282,14873,14888,14902,14901, 14880,14962,14969,14880,17366,15285, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282, 4282,14968, 4282,16751,17371,14969, 15490,14966,14988,14967,14888,14968,14901, 4282, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 4283, 14890, 4283, 4283,14966,14969,14967,14966,14968,15490,14988, 14887,14967, 4283, 4283, 4283, 4283, 4283, 4283, 4283,14887, 14890,14986,14991,14966, 4283,14967,14887,14968,14993,14986, 14991,14887,14890,14892,14892,14892,14892,14892,14892,14892, 14892,14892, 4283, 4283, 4283,14893,14893,14893,14893,14893, 14893,14893,14893,14893,15366,14993,16837,16837,14887, 4283, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4289, 4291, 4291,15366, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291, 4291,15029, 4291, 4291,14894, 14894,14894,14894,14894,14894,14894,14894,14894, 4291, 4291, 4291, 4291, 4291, 4291, 4291,14900,14904,14987,14992,15027, 4291,15366,15028,15029,14900,14904,15032,15027,14987,14992, 15034,14900,14904,15028,15032,15037,14900,14904, 4291, 4291, 4291, 4298, 4298,15037, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298, 4298,14905, 4298, 4298,16790,15034,15156,16790, 15655,15039,14905,14900,14904, 4298, 4298, 4298, 4298, 4298, 4298, 4298,14965,15044,14905,15156,15033, 4298,14907,14907, 14907,14907,14907,14907,14907,14907,14907,15033,15039,14965, 14974,14974,15004,15655,14965, 4298, 4298, 4298,15156,14907, 15044,14905, 4298, 4299,14910,14910,14910,14910,14910,14910, 14910,14910,14910,15737,14965, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299, 4299,14974,14997,15004,15038,15049,15042, 15737,14997,15047,17287,15043,15048, 4299,15042,15038,15014, 15047,15014,14974,14997,15004,15043,15048,17381,15567,15052, 14974,17287,15004,15737, 4299,15049, 4299,15052, 4299, 4299, 4299, 4299, 4299, 4299, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300, 4300,15014, 4300,14975,14975,14975,14975,14975, 14975,14975,14975,14975,15053, 4300,15059,15056,15015,15015, 15056,17385,15567,15063,15059,15053,14975,14976,14976,14976, 14976,14976,15062, 4300,15063,15065,15014,15068,15070,15077, 15062,15114,15077,15589,14975,15068,15567,15056,14976, 4300, 4305, 4305,15015, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305, 4305,15065, 4305, 4305,15070,14976,15088,15114,15077, 15015,15166,15069,15073, 4305, 4305, 4305, 4305, 4305, 4305, 4305,15073,15015,15069,15074,15080, 4305,15088,15097,15113, 15112,15166, 4305,15080,15117,15074,15589,15097,15112,15088, 15113,15589,15117,15166, 4305, 4305, 4305, 4305, 4306, 4306, 17388, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4306, 4307, 4307,15090, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307, 4307,15109,15119,15124,16821, 15084,16821,15118,15524,15149, 4307, 4307, 4307, 4307, 4307, 4307, 4307,15084,15118,15109,15090,15123, 4307,15122,17397, 15109,15127,15128, 4307,15119,15124,15122,15123,15090,15127, 15084,15149,15524,15128,15560, 4307, 4307, 4307, 4307, 4308, 4308,15560, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4308, 4309, 4309,15169, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309, 4309,15131, 4309, 4309,15138,17402,15174, 15174,15395,15131,16583,15169,15138, 4309, 4309, 4309, 4309, 4309, 4309, 4309,15016,15016,15016,15169,17406, 4309,15141, 15147,14977,14977,14977,14977,14977,14977,15141,15147,15200, 14977,15174,15215,15395,15016,15153, 4309, 4309, 4309, 4309, 4310, 4310,14977, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310, 4310,15016, 4310, 4310,16583,15200,15153,15174,15215, 14977,15089,15689,15153, 4310, 4310, 4310, 4310, 4310, 4310, 4310,15689,15089,15089,15089,15153, 4310,15091,14978,14978, 14978,14978,14978,14978,14978,14978,14978,15214,15091,15091, 15091,15222,15214,15089, 4310, 4310, 4310, 4311, 4311,14978, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311, 4311,15091, 4311, 4311,15100,15100,17409,16658,15159,14978,15222,15214, 15089, 4311, 4311, 4311, 4311, 4311, 4311, 4311,15018,15018, 15018,15018,15018, 4311,14979,14979,14979,14979,14979,14979, 14979,14979,14979,15100,15229,15148,15100,15159,15767,15018, 15159, 4311, 4311, 4311,15199,14979,15148,14980,14980,14980, 14980,14980,14980,15083,15100,15199,15175,15018,15159,15487, 4311,15229,16658,14979,15767, 4311, 4318, 4318,14980, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318, 4318,15487, 4318, 4318,15198,15360,15487,17464,15237,14980,15083,15175,15198, 4318, 4318, 4318, 4318, 4318, 4318, 4318,15104,15104,15104, 15104,15104, 4318,15158,15248,15083,14981,14981,14981,14981, 14981,14981,15237,15253, 4318,15158,15360,15083,15104,15253, 4318, 4318, 4318,15206,15175,15253,15186,14981, 4318,15546, 15206,15248,15262,15158,15360,15206,15104,15106,15106,15106, 15546,15389, 4318, 4319, 4319,14981, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319, 4319,15152, 4319, 4319,15106,15262, 15186,15019,15019,15019,15019,15019,15019, 4319, 4319, 4319, 4319, 4319, 4319, 4319,15388,15389,15106,15152,15186, 4319, 15152,15177,15019,14982,14982,14982,14982,14982,14982,15177, 15186, 4319,14982,15389,15834,15152,15388, 4319, 4319, 4319, 15019,17466,15187,15834,14982,15177,15221,15228,17467,15388, 15389,15221,15228,15435,15108,15108,15108,15108,15108, 4319, 4320, 4320,14982, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320, 4320,15108,15187,15236,15221,15228, 15151,15438,15236,15435, 4320, 4320, 4320, 4320, 4320, 4320, 4320,15603,15254,15108,15187,15430, 4320,15151,15254, 4320, 15438,15255,15151,15603,15254,15430,15187,15255,15255,15236, 15430,15438,15435,15255, 4320, 4320, 4320, 4320, 4321, 4321, 15151, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4321, 4323, 4323,15400, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323, 4323,15241,15241,15241,15241, 15241,15241,15241,15241,15241, 4323, 4323, 4323, 4323, 4323, 4323, 4323,16635,15356,16635,15400,15358, 4323,17308,16635, 14999,14999,14999,14999,14999,14999,14999,14999,14999,15399, 15409,15356,15399,15628,15358, 4323, 4323, 4323, 4323, 4329, 4329,14999, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 4329,15247, 4329, 4329,15356,15358,15247,15399,17308,14999, 15628,14999,15409, 4329, 4329, 4329, 4329, 4329, 4329, 4329, 15399,16358,16363,15406,16518, 4329,15168,15020,15020,15020, 15020,15020,15020,15247, 4329,15406,15020,15168,15168,15168, 15168,15168,15168, 4329, 4329, 4329, 4330, 4330,15020, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330, 4330,15168, 4330, 4330,15405,16358,16363,15406,16518,15020,15721,15547,15724, 4330, 4330, 4330, 4330, 4330, 4330, 4330,15547,15721,15547, 15724,15405, 4330,15173,15017,15017,15017,15017,15017,15017, 15017,15017,15017,15405,15173,15173,15173,15173,15173,15173, 4330, 4330, 4330, 4331, 4331,15017, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331, 4331,15173, 4331, 4331,15412,15261, 16462,15418,15293,15017,15261,15295,15300, 4331, 4331, 4331, 4331, 4331, 4331, 4331,15293,16844,16844,15295,15300, 4331, 15295,15022,15022,15022,15022,15022,15022,15022,15022,15022, 15412,15261,15293,15418,16462,15295,15300, 4331, 4331, 4331, 4332, 4332,15022, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332, 4332,15367, 4332, 4332,15566,16346,15566,15534,15418, 15022,15310,15321,15332, 4332, 4332, 4332, 4332, 4332, 4332, 4332,15263,15534,15310,15321,15332, 4332,15263,15263,15566, 17469,16346,15534,15263,15367,15023,15023,15023,15023,15023, 15023,15310,15321,15332, 4332, 4332, 4332, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337, 4337,15023, 4337,15379,15064, 15064,15064,15064,15064,15064,15064,15064,15064, 4337,15367, 16498,16498,16498,15563,15023,15064,15082,15082,15082,15082, 15082,15082,15082,15082,15082,15563, 4337,15264,15154,15294, 15379,15401,15440,15264,15485,15563,15294,15082,15154,15264, 15064,15294, 4337, 4338, 4338,15413, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338, 4338,15082, 4338, 4338,16832,15294, 15154,16832,16058,15401,15440,15379,15485, 4338, 4338, 4338, 4338, 4338, 4338, 4338,16058,15401,15413,17305,15154, 4338, 15362,15101,15101,15101,15101,15101,15101,15101,15101,15101, 15401,15274,15274,15274,15274,15274,15274, 4338, 4338, 4338, 4339, 4339,15101, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339,15274, 4339, 4339,15362,15415,15413,15587,17305, 15101,15362,16059,15565, 4339, 4339, 4339, 4339, 4339, 4339, 4339, 4339,15565,15565,16059,16731, 4339,17471,15103,15103, 15103,15103,15103,15103,15103,15103,15103,15415,15276,15276, 15276,15276,15276,15276, 4339, 4339, 4339, 4343, 4343,15103, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343, 4343,15276, 4343, 4343,15480,15415,16731,15587,15404,15103,15732,15302, 15587, 4343, 4343, 4343, 4343, 4343, 4343, 4343,16831,15732, 16831,15302,17472, 4343,15302,15256,15404,15170,15365, 4343, 15521,15256,15480,15170,15170,15170,15170,15256,15404,15302, 15256, 4343, 4343, 4343, 4344, 4344,15414, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344, 4344,16191, 4344, 4344,15170, 15365,15480,15521,15282,15282,15282,15282,15404, 4344, 4344, 4344, 4344, 4344, 4344, 4344,15419,15170,15414,15312,15170, 4344,17476,15323,15105,15105,15105,15105,15105,15105,15282, 15312,16191,15105,15312,15323,15365,17478,15323, 4344, 4344, 4344,15365,15357,15357,15105,15357,15282,15419,15312,15282, 15419,15665,15323, 4344, 4350, 4350,15414, 4350, 4350, 4350, 4350, 4350,15105,15444, 4350, 4350, 4350,15107,15107,15107, 15107,15107,15107,15107,15107,15107,15357,15334,15665, 4350, 4350, 4350, 4350, 4350, 4350,17479,15444,15645,15107,15334, 4350,15444,15334,15444,15357,15645, 4350,15252,15252,15252, 15252,15252,15252,15252,15252,15252,15107,15334, 4350, 4350, 4350, 4350, 4351, 4351,15548, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351,16990, 4351, 4351,15266,15266,15266, 15266,15266,15266,15266,15266,15266, 4351, 4351, 4351, 4351, 4351, 4351, 4351, 4351,15526,15552,15548,16990, 4351,15267, 15267,15267,15267,15267,15267,15267,15267,15267,15552,15600, 15600,16970,16970,16970,15552,15600, 4351, 4351, 4351, 4351, 4353, 4353,15526, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4353, 4356, 4356,15416, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356, 4356,15486, 4356, 4356,15268,15268, 15268,15268,15268,15268,15268,15268,15268, 4356, 4356, 4356, 4356, 4356, 4356, 4356,17482,15837,15416,17484,15486, 4356, 17485,17491,15416,15486,15837, 4356,15307,15307,15307,15307, 15307,15307,15307,15307,15307,15682,17493, 4356, 4356, 4356, 4356, 4357, 4357,15682, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4357, 4359, 4359,15739, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359, 4359,16567, 4359, 4359,15308, 15308,15308,15308,15308,15308,15308,15308,15308, 4359, 4359, 4359, 4359, 4359, 4359, 4359,16623,15739,17494,15598,17500, 4359,16567,16061, 4359,15309,15309,15309,15309,15309,15309, 15309,15309,15309,15638,16061,16628,15638,16061, 4359, 4359, 4359, 4359, 4361, 4361,15638, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361, 4361,15317,15317,15317, 15317,15317,15317,15317,15317,15317, 4361, 4361, 4361, 4361, 4361, 4361, 4361,16245,16623,15598,16245,16623, 4361,15271, 15598,15271,15271,15271,15271,15271,15271,15271,15271,15271, 16638,16245,17502,16628,16628,16638, 4361, 4361, 4361, 4361, 4362, 4362,15271, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4362, 4364, 4364,17503, 4364, 4364, 4364, 4364, 4364,15723,17513, 4364, 4364, 4364,15157,15157,15157,15157, 15157,15157,15157,15157,15157,15484,15725,15545, 4364, 4364, 4364, 4364, 4364, 4364,15545,15545,15734,15157,15723, 4364, 15137,15137,15137,15137,15137,15137,15137,15137,15137,15417, 15520,15471,15484,15725,15484,15157,15137, 4364, 4364, 4364, 4364, 4365, 4365,15734, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365, 4365,15446,15520,15471,15520, 15417,15137,15708,15417,16859, 4365, 4365, 4365, 4365, 4365, 4365, 4365,15446,15471,15446,15448,15471, 4365,15451,15610, 4365,15301,15448,15446,16859,16728,15451,15448,15301,15448, 15446,15451,15564,15301,15708, 4365, 4365, 4365, 4365, 4366, 4366,16192, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366,15301, 4366, 4366,15318,15318,15318,15318,15318,15318, 15318,15318,15318, 4366, 4366, 4366, 4366, 4366, 4366, 4366, 4366,16192,15597,15610,17514, 4366,15735,15275,15275,15275, 15275,15275,15275,15597,15610,15564,15275,15735,15597,17562, 15564,15564,16728, 4366, 4366, 4366, 4368, 4368,15275, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4368, 4370, 4370,15693, 4370, 4370, 4370, 4370, 4370, 4370, 4370, 4370, 4370, 4370, 4370, 4370,15319,15319,15319,15319,15319,15319, 15319,15319,15319, 4370, 4370, 4370, 4370, 4370, 4370, 4370, 16457,16457,16457,16664,15693, 4370,15272,15746,15272,15272, 15272,15272,15272,15272,15272,15272,15272,17563,15746,17278, 17569,16457,16350, 4370, 4370, 4370, 4370, 4371, 4371,15272, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371, 4371,15693, 4371, 4371,15328,15328,15328,15328,15328,15328,15328,15328, 15328, 4371, 4371, 4371, 4371, 4371, 4371, 4371,16350,17603, 17278,16664,16664, 4371,15363,15749, 4371,15329,15329,15329, 15329,15329,15329,15329,15329,15329,15749,15456,17303,15456, 15611, 4371, 4371, 4371, 4372, 4372,15456, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372, 4372,15363, 4372, 4372,15330, 15330,15330,15330,15330,15330,15330,15330,15330, 4372, 4372, 4372, 4372, 4372, 4372, 4372,17608,17683,15452,17684,17303, 4372,15363,15452,15311,15456,15637, 4372,15452,15611,15713, 15311,15363,15363,15637,15611,15311,15637,15713, 4372, 4372, 4372, 4404, 4404,15375, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404, 4404,15311, 4404, 4404,15339,15339,15339,15339, 15339,15339,15339,15339,15339, 4404, 4404, 4404, 4404, 4404, 4404, 4404,16280,17330,17686,15375,16370, 4404,15756,15278, 15278,15278,15278,15278,15278,15278,15278,15278,16370,15756, 16280,17330,16624,15375,16280, 4404, 4404, 4404, 4405, 4405, 15278, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 15375, 4405, 4405,15340,15340,15340,15340,15340,15340,15340, 15340,15340, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 4405, 17332,17536,16372,15559, 4405,15341,15341,15341,15341,15341, 15341,15341,15341,15341,16372,16624,15559,16372,17332,17536, 16624,16624, 4405, 4405, 4405, 4408, 4408,15559, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4408, 4417, 4417, 16217, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 4417, 15482, 4417, 4417,15351,15351,15351,15351,15351,15351,15351, 15351,15351, 4417, 4417, 4417, 4417, 4417, 4417, 4417,15482, 16217,17679,15556,15450, 4417,17679,15759,15556,15594,15595, 15482,15450,15556,15594,15595,16640,15450,15759,15594,15595, 16640,15450, 4417, 4417, 4417, 4431, 4431,15450, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4431, 4452, 4452, 17687, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4452, 4454, 4454,15447, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454, 4454,15368, 4454, 4454,15489,15516,16513,15447, 15398,15738,15715,15843,15622, 4454, 4454, 4454, 4454, 4454, 4454, 4454,15843,15368,15447,17688,17690, 4454,15738,15489, 4454,15322,15377,15447,15489,15368,15489,15516,15322,16513, 15627,15622,15398,15322,15715, 4454, 4454, 4454, 4454, 4456, 4456,15738, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 4456,15322, 4456, 4456,15377,15622,15516,15398,15518,15768, 15368,15627,15855, 4456, 4456, 4456, 4456, 4456, 4456, 4456, 15398,15855,15627,15715,15377, 4456,15273,15518,15273,15273, 15273,15273,15273,15273,15273,15273,15273,16643,15518,15377, 17691,15768,16643, 4456, 4456, 4456, 4456, 4460, 4460,15273, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4460, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 4463, 15369,15522,15523,15569,15470,15602, 4463, 4463, 4463, 4463, 4463, 4463,15602,16729,15635,15569,15635,15602,15333,15869, 15369,15523,15635,15549,15522,15333,15523,15569,15869,15522, 15333,15470,15369, 4463, 4463, 4463, 4463, 4463, 4463, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465, 4465,15333,15470, 15549,15470,15736,15536,15719, 4465, 4465, 4465, 4465, 4465, 4465,15536,15719,15549,15781,15541,17692,15369,15364,15352, 15352,15352,15352,15352,15352,15781,15472,15536, 4465,15736, 16729,17718, 4465, 4465, 4465, 4465, 4465, 4465, 4468, 4468, 15352, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 15364, 4468, 4468,15472,15372,15372,15364,15372,15352,15374, 15541,16463, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 4468, 15631,15472,15631,16463, 4468,15643,16218,15364,17719,15541, 15631,15631,15469,15643,15541,15364,15623,15370,15372,15643, 15508,15374, 4468, 4468, 4468, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471, 4471,15378,15372,15370,16218,15469, 15537, 4471, 4471, 4471, 4471, 4471, 4471,15508,15537,15370, 15623,15374,15672,15372,15672,15623,15374,15469,15370,15468, 15672,15473,15378,15469,15537,15508,17277,15378, 4471, 4471, 4471, 4471, 4471, 4471, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475, 4475,15370,15525,15468,15378,15473,15473, 4475, 4475, 4475, 4475, 4475, 4475,17277, 4475,15786,15634, 15468,15468,15378,15791,15468,15634,15473,15634,15525,15786, 16356,15473,15535,15525,15791,15525,15535, 4475, 4475, 4475, 4475, 4475, 4475, 4489, 4489,15167, 4489, 4489, 4489, 4489, 4489,16341,15535, 4489, 4489, 4489,15167,15167,15167,15167, 15167,15167,15167,15167,15167,16356,15630, 4489, 4489, 4489, 4489, 4489, 4489, 4489,15630,15179,15535,15167,15420, 4489, 16636,16636,16646,16341,15630,16636,17721,16646,15179,15179, 15179,15179,15179,15179,15179,15179,15179, 4489, 4489, 4489, 4489, 4490, 4490,15171, 4490, 4490, 4490, 4490, 4490,15179, 15420, 4490, 4490, 4490,15171,15171,15171,15171,15171,15171, 15171,15171,15171,15570,15539, 4490, 4490, 4490, 4490, 4490, 4490, 4490,15539,15641,16565,15171,15570, 4490,15722,16332, 17307,15641,15641,15506,15504,15420,15722,15570,15539,15380, 15380,15380,15420,17722,17723, 4490, 4490, 4490, 4490, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493, 4493,16565, 15506,15504,16332,16202,17307, 4493, 4493, 4493, 4493, 4493, 4493,15172,15390,15380,15390,15504,15504,16566,15506,15504, 15506,16202,15172,15172,15172,15172,15172,15172,15172,15172, 15172,15380, 4493, 4493, 4493, 4493, 4493, 4493, 4494,16202, 15591,16566,15403,15172,15591,15475,15390,15479,15380, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494, 4494,15371, 17725,17726,15403,15479,15390, 4494, 4494, 4494, 4494, 4494, 4494,15479,15475,15591,15403,15475,16577,17727,15591,15371, 15644,15390,15390,15492,15475,15505,15507,15479,15644,15644, 15475,15371, 4494, 4494, 4494, 4494, 4494, 4494, 4501,15492, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501, 4501,15403, 16344,16577,15505,15507,15492,15371, 4501, 4501, 4501, 4501, 4501, 4501,15639,15492,17815,15639,15371,15639,15507,15796, 15505,15507,15509,15639,15511,15557,15505,15381,15381,15381, 15796,15664,16344, 4501, 4501, 4501, 4501, 4501, 4501, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505, 4505,15509, 15509,15511,15557,15659,15511, 4505, 4505, 4505, 4505, 4505, 4505,15381,15664,15511,15801,15557,15599,15509,17807,15511, 15557,15599,15509,15664,16345,15801,15599,15402,15632,15381, 15659,15599, 4505, 4505, 4505, 4505, 4505, 4505, 4523, 4523, 16232, 4523, 4523, 4523, 4523, 4523,15381,15402, 4523, 4523, 4523,15571,15568,15632,15659,15568,16345,15571,16232,15402, 15568,15632, 4523, 4523, 4523, 4523, 4523, 4523, 4523,15181, 16232,15647,15669,15402, 4523,15571,15568,17807,15383,15383, 15383,15402,15181,15181,15181,15181,15181,15181,15181,15181, 15181,16345, 4523, 4523, 4523, 4523,15730,15669,15181,15384, 15384,15384,15515,15181,15730,15669,15705,15383,15705, 4523, 4524, 4524,15383, 4524, 4524, 4524, 4524, 4524,15515,15671, 4524, 4524, 4524,15647,15647,15671,15515,15671,17534,15647, 15383,15647,15705,15384, 4524, 4524, 4524, 4524, 4524, 4524, 4524,15182,15515,15382,15382,15382, 4524,15383,17857,15705, 17534,15384,15811,15748,15182,15182,15182,15182,15182,15182, 15182,15182,15182,15811, 4524, 4524, 4524, 4524,15384,15384, 15678,15385,15385,15385,15714,15182,15528,15382,15678,15678, 15748, 4524, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527, 4527,15528,17451,17812,15382,15714,17812, 4527, 4527, 4527, 4527, 4527, 4527,15382,15385,15385,15528,15572,15551, 16220,15733,15382,15714,15572,16373,15528,15551,15474,15733, 15510,15572,15551,15385,15573, 4527, 4527, 4527, 4527, 4527, 4527, 4528,15572,15551,17451,15660,16220,15474,15491,15510, 15385,16373, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528, 4528,15750,17740,15491,17437,15491,16782, 4528, 4528, 4528, 4528, 4528, 4528,15474,15491,15510,16782,15573,15660, 16359,15474,15491,15510,15660,15573,15474,15758,15510,15750, 15573,15760,15474,17437,15510, 4528, 4528, 4528, 4528, 4528, 4528, 4535,15573, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535, 4535,16359,16247,15758,17740,15782,15787,15760, 4535, 4535, 4535, 4535, 4535, 4535,15579,15579,15579,15579,15579, 15579,15579,15579,15579,15580,15580,15580,15580,15580,15580, 15580,15580,15580,15782,15787,16247, 4535, 4535, 4535, 4535, 4535, 4535, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539, 4539,15588,16247,16923,15792,15674,15797, 4539, 4539, 4539, 4539, 4539, 4539,15674,15588,16923,15674,15648,15579, 15588,15648,15386,15386,15386,15667,15588,15648,16553,15648, 15580,15633,15792,15667,15797, 4539, 4539, 4539, 4539, 4539, 4539, 4563, 4563,15667, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563, 4563,15681, 4563, 4563,15386,17890,15633,16553, 15804,15681,15681,15804,15633, 4563, 4563, 4563, 4563, 4563, 4563, 4563,15633,15668,15386,15668,17801, 4563,17801,15391, 15392,15391,15392,15668,15668,15386,15642,15394,15812,15394, 15804,15386,15642,15538,16893, 4563, 4563, 4563, 4564, 4564, 15642, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 15642, 4564, 4564,15391,15392,15812,15391,15640,16893,15761, 15830,15394, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 4564, 15675,15391,15392,15675, 4564,15744,15761,15538,15747,15394, 15538,15675,17319,15744,15640,15538,15747,15830,15391,15392, 15640,15394, 4564, 4564, 4564, 4568,15394,15754,15640,15761, 17319,15538,15640, 4568,15816,15754, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568,15816,16674,15819,17319,17952, 15819,16674, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4568, 4574, 4574,15819, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 4574, 4574,15688, 4574, 4574, 15527,17955,15688,15688,15832,15841,15828,16702,15688, 4574, 4574, 4574, 4574, 4574, 4574, 4574,15527,15828,15527,15676, 15592, 4574,15676,15393,15676,15393,15685,15527,15592,15685, 15676,15832,15841,15592,15527,15685,16702,15685,15592, 4574, 4574, 4574, 4575, 4575,15592, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575,15757, 4575, 4575,15393,16461,17956, 15393,15670,15757,15831,15846,17304, 4575, 4575, 4575, 4575, 4575, 4575, 4575, 4575,15831,15393,15684,15858, 4575,15581, 15581,15581,15581,15581,15581,15581,15581,15581,15670,17304, 16461,15846,15393,15780,15670,15905, 4575, 4575, 4575, 4581, 15785,15780,15670,15581,15858,15872,15905,15604,15785,17965, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581, 4581,15584, 15584,15584,15584,15584,15584,15584,15584,15584,15684,15684, 17966, 4581,15872,15762,15684,16256,15684,16465, 4581,15585, 15585,15585,15585,15585,15585,15585,15585,15585,15636,16465, 15762,15790,16465, 4581,15636, 4581,15907, 4581,15604,15790, 4581, 4581,15636,15604,15604, 4581,16256,15636, 4581,15604, 4581,15883, 4581,15762, 4581, 4581, 4581, 4582,17714,15584, 15883,17977,17714,15907,16256,16659,15584,15605,15605,15605, 15605,15605,15605,15605,15605,15605,15585,17446,15586,15586, 15586,15586,15586,15586,15586,15586,15586,15673,15835, 4582, 15646,15795,15593,15673,15680,15646, 4582,15835, 4582,15795, 15593,15673,15680,15646,15835,15593,15673,17446,15680,15800, 15593, 4582,15646, 4582,15605, 4582,15593,15800, 4582, 4582, 15909,15586,15886, 4582,16659,17978, 4582,16659, 4582,15586, 4582,15886, 4582, 4582, 4582, 4583,15607,15607,15607,15607, 15607,15607,15607,15607,15607,15586,15608,15909,15608,15608, 15608,15608,15608,15608,15608,15608,15608,15609,15609,15609, 15609,15609,15609,15609,15609,15609,15679, 4583,17901,15807, 15908,15810,15679,15683, 4583,16063,15677,15807,15683,15810, 15679,15908,15692,15692,16063,15607,15683,16511,17901, 4583, 15679, 4583,15607, 4583,15608,15683, 4583, 4583,15839,15695, 15695, 4583, 4583,15677, 4583,17993, 4583,15839, 4583,15677, 4583, 4583, 4583, 4584,15839,15609,15692,15677,16894,16511, 15913,15677,15696,15696,15696,15696,15696,15696,15696,15696, 15696,15913,15696,15695,15692,15700,15700,15700,15700,15700, 15700,15815,15822,15696,16894, 4584,15826,15829,15918,15815, 15822,15695, 4584,15850,15826,15829,15700,15692,15903,15918, 15707,15707,15707,15707,15707,15707,15903, 4584,15695, 4584, 15906, 4584,16676,15850, 4584, 4584,15923,16676,15906, 4584, 4584,15707, 4584,15914, 4584,15850, 4584,15923, 4584, 4584, 4584, 4585,15702,15702,15702,15702,15702,15702,15702,15702, 15702,15706,15706,15706,15706,15706,15706,15706,15706,15706, 15914,15851,15845,15702,15863,15709,15709,15709,15709,15709, 15709,15845,15706, 4585,15709,15912,15840,15919,15845,16252, 4585,15851,16852,15912,15863,15840,15709,15774,15774,15774, 15774,15774,15774,15851,17994, 4585,15863, 4585,17773, 4585, 15840,15917, 4585, 4585,15919,15922,15709, 4585,15774,15917, 4585,16252, 4585,15922, 4585,16852, 4585, 4585, 4585, 4586, 15764,15764,15764,15764,15764,15764,15764,15764,15764,16252, 15764,15773,15773,15773,15773,15773,15773,15773,15773,15773, 15847,15764,15852,17773,15857,15848,15859,15853,15926,15847, 15849, 4586,15773,15857,15848,15859,15926,15938, 4586,15849, 15857,15848,15852,15861,15847,15938,15848,15853,15943,15852, 15859,15849,15861, 4586,15852, 4586,15943, 4586,15939,15853, 4586, 4586,15853,15862,15861, 4586, 4586,15864, 4586,15939, 4586, 4586, 4586,15848, 4586, 4586, 4586, 4591,15849, 4591, 15860,15944,15865,15862,15867,15866, 4591,15864,15876,15860, 15862,15861,15944,18011,15871,15862,15860,15873,15940,15864, 17605,15860,15865,15871,15867,15866,15873,15877,15876,15945, 15871, 4591,15866,15874,15865,15876,15867,15866, 4591,15867, 15876,15873,15874,15875, 4591,15940,16244,15877,15860,15874, 17605,16244,15875, 4591,15874, 4591,15945, 4591,15889,15877, 4591, 4591,15884,15950,15875, 4591,17338,15889, 4591,16244, 4591,15884, 4591,15949, 4591, 4591, 4591, 4592,15884, 4592, 15948,15874,15889,15966,15949,15971, 4592,15986,15948,17338, 15950,15875,15879,15879,15879,15879,15879,15879,15879,15879, 15879,15880,15880,15880,15880,15880,15880,15880,15880,15880, 15966, 4592,15971,15957,15986,18096,15957, 4592, 4592,15881, 15881,15881,15881,15881,15881,15881,15881,15881,15953,16679, 15887,15954,18101, 4592,16679, 4592,15953, 4592,15888,15887, 4592, 4592,15954,15957,15890, 4592,15887,15888, 4592,15891, 4592,15887, 4592,15890, 4592, 4592, 4592, 4614,15891,15888, 15890,15960,15892,15964,15963,15891,15970, 4614,15969,15960, 15891,15892,15963,15974,15964,18111,15969,15970,15887,15975, 15981,15974,15978,15892,15984,15978,15888,15985,15981, 4614, 15975,17418,15984,16558,15997,16002, 4614,15891,15985,15894, 15894,15894,15894,15894,15894,15894,15894,15894,15989,15992, 15892, 4614,15978, 4614,15996, 4614,15989,15992, 4614, 4614, 15894,15997,16002, 4614,16558,15996, 4614,17418, 4614,17811, 4614,17811, 4614, 4614, 4614, 4615,15897,15897,15897,15897, 15897,15897,15897,15897,15897, 4615,15932,15932,15932,15932, 15932,15932,15932,15932,15932,16000,16005,16001,16006,16027, 16039,16028,15932,16000,16005,16009,16355, 4615,16001,16006, 16027,16039,17419,16009, 4615,16040,15965,15965,15965,15965, 15965,15965,15965,15965,15965,17419,16016,15932,16028, 4615, 16019, 4615,15965, 4615,16016,16026, 4615, 4615,16019,16031, 16355, 4615,16040,16026, 4615,16047, 4615,16031, 4615,16053, 4615, 4615, 4615, 4615, 4623,16047, 4623,15965,16355,17522, 16053,18115,16047, 4623,16355,17522, 4623,16015,16015,16015, 16015,16015,16015,16015,16015,16015,16038,16055,16051,16041, 16042,16043,16056,16015,16038,16047,16051,16070, 4623,16041, 16042,16043,16054,16056,16136, 4623,16070,16042,16073,16057, 16054,16041,16042,16043,16055,16136,16043,16073,16015,17568, 4623,16070, 4623,16044, 4623,17568,18118, 4623, 4623,16041, 16042,16043, 4623,16044,16066, 4623,16057, 4623,16045, 4623, 16060, 4623, 4623, 4623, 4625,16044, 4625,16060,16045,16068, 16065,16044,16060, 4625,16068,16069, 4625,16076,16045,16065, 16074,16066,16076,16044,16077,16083,16065,16087,16078,16074, 16045,16084,18127,16863,16083,16135,16074,16078, 4625,16331, 16084,16068,16069,16135,16081, 4625,16088,16084,16045,16076, 16080,16077,16078,16081,16087,16088,18132,16331,16863,16080, 4625,16512, 4625,16141, 4625,16081,16080, 4625, 4625,16094, 16088,16080, 4625, 4625,16141, 4625,18136, 4625,16094, 4625, 16331, 4625, 4625, 4625, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669,16081,16512, 4669, 4669, 4669,17279,16080, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669, 4669,16090, 4669, 4669, 4669, 4669, 4669, 4669,16781,16091,16090,16086,16095, 4669,16145,17279,16086,16090,16091,16097,16099,16095,16090, 16098,16097,16145,16115,16137,16095,16099,16091, 4669, 4669, 4669, 4669, 4672, 4672,16781, 4672, 4672, 4672, 4672, 4672, 16086,16099, 4672, 4672, 4672,16107,16090,16098,16097,16108, 16115,16137,16155,16109,16091,16101, 4672, 4672, 4672, 4672, 4672, 4672, 4672,16102,16101,16107,16112,18139, 4672,16108, 16212,16101,16102,16109,16140,16112,16101,16107,16110,16155, 16109,16108,16140,16114,16102,16109, 4672, 4672, 4672, 4672, 4673, 4673,16114, 4673, 4673, 4673, 4673, 4673,16110,16114, 4673, 4673, 4673,16101,16212,16120,16267,16878,16267,16555, 16110,16102,16116,16110, 4673, 4673, 4673, 4673, 4673, 4673, 4673,16116,16212,17817,17817,16120, 4673,16106,16106,16106, 16106,16106,16106,16106,16106,16106,16116,16120,16682,16212, 16267,16555,16878,16682, 4673, 4673, 4673, 4673, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676, 4676,16119,16160, 16823,16117,16118,16159, 4676, 4676, 4676, 4676, 4676, 4676, 16117,16118,16144,16148,16159,17101,16158,16117,16119,16163, 16144,16148,16117,16118,16158,16119,16160,16163,18180,16823, 16119, 4676, 4676, 4676, 4676, 4676, 4676, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677, 4677,17101,17342,16117, 16118,16165,16207, 4677, 4677, 4677, 4677, 4677, 4677,16122, 16122,16122,16122,16122,16122,16122,16122,16122,16123,16123, 16123,16123,16123,16123,16123,16123,16123,17342,16165,16207, 4677, 4677, 4677, 4677, 4677, 4677, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679, 4679,16237,16242,16285,17535, 18182, 4679, 4679, 4679, 4679, 4679, 4679, 4679,16124,16124, 16124,16124,16124,16124,16124,16124,16124,16164,16168,16172, 16290,17535,16295,16237,16242,16285,16168,16172,16164, 4679, 4679, 4679, 4679, 4679, 4679, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684, 4684,17614,16169,16290,16179,16295, 16178, 4684, 4684, 4684, 4684, 4684, 4684,16169,16178,16179, 16182,16183,16186,16205,16194,16197,17619,17614,16182,18183, 16186,16205,16183,17785,16193,16193,16194,16197, 4684, 4684, 4684, 4684, 4684, 4684, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686, 4686,16194,16197,16206,17619,16210,16236, 4686, 4686, 4686, 4686, 4686, 4686,16210,16206,16193,16235, 16236,16222,16241,16222,16223,16223,16240,16235,16198,16198, 16198,16198,18187,16241,16240,17785,16193, 4686, 4686, 4686, 4686, 4686, 4686, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691, 4691,16193,16198,16222,16284,16266,16223, 4691, 4691, 4691, 4691, 4691, 4691,16266,16289,16284,16294,16253, 16283,16198,16198,16254,16198,16221,16223,16289,16283,16294, 16348,17195,17195,17195,16223,16222, 4691, 4691, 4691, 4691, 4691, 4691, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693, 4693,16221,16253,16348,16254,16288,16293, 4693, 4693, 4693, 4693, 4693, 4693,16288,16293,16299,16221,16298,16348, 16303,16253,16273,16254,16257,16300,16298,16299,16303,16253, 16225,16225,16225,16225,16225, 4693, 4693, 4693, 4693, 4693, 4693, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698, 4698,16225,16300,16257,16273,16304,16257, 4698, 4698, 4698, 4698, 4698, 4698,16307,16246,16313,16304,16273,16258,16225, 16246,16307,16273,16313,17843,16357,17843,16369,18189,16258, 16258,16258,16246,16257, 4698, 4698, 4698, 4698, 4698, 4698, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 4699, 16258,16315,16357,16319,16369,16318, 4699, 4699, 4699, 4699, 4699, 4699,16315,16318,16319,16322,16367,16260,16709,17693, 16340,16360,18190,16322,16367,16360,17693,16709,16260,16260, 16260,16260,16260, 4699, 4699, 4699, 4699, 4699, 4699, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701, 4701,16260, 16271,16274,16340,16360,16368, 4701, 4701, 4701, 4701, 4701, 4701,16347,16271,16274,16371,16368,17488,17488,17488,16384, 18194,16371,16340,16347,16384,16385,16371,16272,16272,16272, 16271,16274, 4701, 4701, 4701, 4701, 4701, 4701, 4706, 4706, 4706, 4706, 4706, 4706, 4706, 4706, 4706,16347,16272,16442, 16500,16384,16385,16752, 4706, 4706, 4706, 4706, 4706, 4706, 16514,16752,16500,17895,16621,16126,16272,16126,16126,16126, 16126,16126,16126,16126,16126,16126,16442,16568,16514,16342, 16500, 4706, 4706, 4706, 4706, 4706, 4706, 4707,16126, 4707, 4707, 4707, 4707, 4707, 4707, 4707, 4707, 4707, 4707,16342, 17853,16514,17853,17895,16568, 4707, 4707, 4707, 4707, 4707, 4707,16342,16386,16387,16621,16354,17859,17859,16386,16387, 16387,16441,17616,16621,16386,16387,16441,16278,16278,16278, 16278,16278, 4707, 4707, 4707, 4707, 4707, 4707, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710, 4710,16278,16354, 16783,17616,16696,16441, 4710, 4710, 4710, 4710, 4710, 4710, 16783,16563,16393,16696,16696,16338,16278,16354,16393,16393, 16572,16572,18196,16563,16393,16354,16338,16338,16338,16519, 16517, 4710, 4710, 4710, 4710, 4710, 4710, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 4712, 4712,16338,16517,16563, 18197,16924,16572, 4712, 4712, 4712, 4712, 4712, 4712,16394, 16395,16396,16517,16924,16519,16394,16395,16396,16396,16361, 16519,16394,16395,16396,16196,16196,16196,16196,16196,16196, 4712, 4712, 4712, 4712, 4712, 4712, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717, 4717,16196,16361,16502,17887,17887, 16697,16361, 4717, 4717, 4717, 4717, 4717, 4717,16402,16502, 16403,16697,16502,16196,16402,16402,16403,16343,16875,16788, 16402,16877,16403,16343,16343,16343,16343,16502,16788, 4717, 4717, 4717, 4717, 4717, 4717, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718, 4718,16875,16571,16592,16877,16343, 16516, 4718, 4718, 4718, 4718, 4718, 4718,16314,16314,16314, 16314,16314,16314,16314,16314,16314,16343,16639,16516,16343, 16887,17774,16639,16314,17618,16639,16516,16571, 4718, 4718, 4718, 4718, 4718, 4718, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725, 4725,16592,16592,17618,16887,16314,16592, 4725, 4725, 4725, 4725, 4725, 4725,16405,16405,16405,16405, 16405,16405,16405,16405,16405,16657,17774,16571,17497,17497, 17497,16201,16201,16201,16201,16201,16201, 4725, 4725, 4725, 4725, 4725, 4725, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726, 4726,16201,16451,16451,16451,16451,16451,16451, 4726, 4726, 4726, 4726, 4726, 4726,16388,16397,16408,17445,18202, 16201,16388,16397,16408,16451,16657,16570,16388,16397,16408, 16388,16397,18204,18205,16657,17286, 4726, 4726, 4726, 4726, 4726, 4726, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733, 4733,17201,17286,17445,17286,16620,16570, 4733, 4733, 4733, 4733, 4733, 4733,16406,16406,16406,16406,16406,16406, 16406,16406,16406,16407,16407,16407,16407,16407,16407,16407, 16407,16407,16547,16570,17201, 4733, 4733, 4733, 4733, 4733, 4733, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737, 4737,17306,18213,16889,16690,16620,16464, 4737, 4737, 4737, 4737, 4737, 4737,16464,16547,16620,16620,16547,16464,16127, 16690,16127,16127,16127,16127,16127,16127,16127,16127,16127, 16889,16690,18215,17306, 4737, 4737, 4737, 4737, 4737, 4737, 4743, 4743,16127, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4743, 4751, 4751,16576, 4751, 4751, 4751, 4751, 4751, 4751, 4751, 4751, 4751,18216, 4751, 4751,16418,16418, 16418,16418,16418,16418,16418,16418,16418, 4751, 4751, 4751, 4751, 4751, 4751, 4751,16656,17854,18229,16576,17854, 4751, 16335,16195,16195,16195,16195,16195,16195,16195,16195,16195, 17337,16335,16335,16335,16335,16335,16335, 4751, 4751, 4751, 4752, 4752,16195, 4752, 4752, 4752, 4752, 4752, 4752, 4752, 4752, 4752,16335, 4752, 4752,16562,18230,16576,16631,18279, 16195,16707,17337,16656, 4752, 4752, 4752, 4752, 4752, 4752, 4752, 4752,16707,16656,16656,16562, 4752,16337,16199,16199, 16199,16199,16199,16199,16199,16199,16199,16562,16337,16337, 16337,16337,16337,16337, 4752, 4752, 4752, 4755, 4755,16199, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755, 4755,16337, 4755, 4755,16574,16562,16637,16631,16619,16199,16520,16637, 16631, 4755, 4755, 4755, 4755, 4755, 4755, 4755,16454,16454, 16454,16454,16454, 4755,16637,16200,16200,16200,16200,16200, 16200,16200,16200,16200,16574,16559,17506,17506,17506,16454, 16520, 4755, 4755, 4755, 4756, 4756,16200, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756, 4756,16328, 4756, 4756,16574, 17849,18352,16515,16515,16200,16619,16559,16906, 4756, 4756, 4756, 4756, 4756, 4756, 4756,16520,16619,16522,16559,16128, 4756,16128,16128,16128,16128,16128,16128,16128,16128,16128, 16328,16593, 4756,16559,16906,16410,16515,17539, 4756, 4756, 4756,16410,16128,16270,16270,16409,16501,16410,16328,16522, 16410,16409,16409,16501,16515,17539,18315,16409,16501,17849, 4756, 4757, 4757,16328, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757,16522, 4757, 4757,16501,16270,16593,16847, 16847,16655,16523,16593,16522, 4757, 4757, 4757, 4757, 4757, 4757, 4757, 4757,18369,17928,16270,18315, 4757,16593,16224, 16224,16224,16224,16224,16224,16224,16224,16224,16672,16672, 16270,16523,16847,16672,16523, 4757, 4757, 4757, 4760, 4760, 16224, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 4760, 16526, 4760, 4760,17928,16667,17543,17543,17543,16224,18424, 16655,16523, 4760, 4760, 4760, 4760, 4760, 4760, 4760,16523, 16526,16655,16689,18411, 4760,16689,16226,16226,16226,16226, 16226,16226,16526,16689,16448,16226,16448,16448,16448,16448, 16448,16448, 4760, 4760, 4760, 4761, 4761,16226, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761,16448, 4761, 4761, 16560,16667,18411,18427,17545,16226,16667,16526,16691, 4761, 4761, 4761, 4761, 4761, 4761, 4761, 4761,16641,16691,16691, 16560, 4761,17545,16227,16227,16227,16227,16227,16227,16227, 16227,16227,16560,16456,16456,16456,16456,16456,16456, 4761, 4761, 4761, 4763, 4763,16227, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763, 4763,16456, 4763, 4763,18429,17290,16561, 16641,17803,16227,16824,16595,16641, 4763, 4763, 4763, 4763, 4763, 4763, 4763,16824,16560,16866,17290,18431, 4763,16561, 16228,16228,16228,16228,16228,16228,16228,16228,16228,16711, 17803,16561,17450,17290,16711,16711, 4763, 4763, 4763, 4764, 4764,16228, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764,16595, 4764, 4764,16866,16671,16595,16671,17450,16228, 16524,16866,16671, 4764, 4764, 4764, 4764, 4764, 4764, 4764, 4764,16688,16561,18432,18437, 4764,16521,16229,16229,16229, 16229,16229,16229,16419,16419,16419,16419,16419,16419,16419, 16419,16419,16524, 4764, 4764, 4764, 4765, 4765,16229, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765, 4765,16521, 4765, 4765,17565,17565,17565,16546,16573,16229,16521,16688,16524, 4765, 4765, 4765, 4765, 4765, 4765, 4765,16524,18438,16688, 16911,16535, 4765, 4765,16230,16230,16230,16230,16230,16230, 16546,16415,18444,16521,16537,16786,16573,16415,16415,16546, 4765, 4765, 4765,16415,16573,16230,16786,16911,16588,18416, 4765, 4766, 4766,16535, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766,16230, 4766, 4766,16537, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766, 4766,18445,18416,16537,16828,16535, 4766,16535,16231, 16231,16231,16231,16231,16231,16588,16828,16791,16231,16575, 16588,16537,16791,16791,16588, 4766, 4766, 4766, 4767, 4767, 16231, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 4767, 16632, 4767, 4767,18454,16627,16632,18455,17345,16231,16632, 16556,16575, 4767, 4767, 4767, 4767, 4767, 4767, 4767,16575, 18465,17042,17549,18466, 4767,16660,16248,16248,16248,16248, 16248,16248,16248,16248,16248,16538,16538,16677,17042,17345, 17549,16556, 4767, 4767, 4767, 4768, 4768,16248, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768, 4768,16627, 4768, 4768, 16590,17042,16627,16627,16627,16248,16556,16248,16538, 4768, 4768, 4768, 4768, 4768, 4768, 4768,16259,16830,16660,16556, 16677, 4768, 4768,16660,16660,16677,16830,16259,16259,16259, 16259,16259,16259,16259,16259,16259,16764,16633,16764, 4768, 4768, 4768,16633,16538,16764,16590,16633,16590,16259, 4768, 4773, 4773,16590, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773, 4773,17615, 4773, 4773,16420,16420,16420,16420,16420, 16420,16420,16420,16420, 4773, 4773, 4773, 4773, 4773, 4773, 4773,18476,16673,17300,18477,16926, 4773,16673,16275,16275, 16275,16275,16275,16275,16275,16275,16275,16926,17615,16920, 16926,17300,16673,17894, 4773, 4773, 4773, 4774, 4774,16275, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774,16587, 4774, 4774,17300,16858,16858,16858,16920,16275,16539,16587, 16692, 4774, 4774, 4774, 4774, 4774, 4774, 4774, 4774,17894, 16692,16692,18317, 4774,16858,16276,16276,16276,16276,16276, 16276,16432,16432,16432,16432,16432,16432,16432,16432,16432, 16539, 4774, 4774, 4774, 4778, 4778,16276, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4778, 4778,16587, 4778, 4778,18317, 17309,16587,17309,18484,16276,16922,16694,16539, 4778, 4778, 4778, 4778, 4778, 4778, 4778,16539,16694,16694,18486,18487, 4778,16694,16277,16277,16277,16277,16277,16277,16277,16277, 16277,16833,16922,16663,17309,16931,16833,16833, 4778, 4778, 4778, 4779, 4779,16277, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779,16528, 4779, 4779,16569,18497,17553,17309, 18530,16277,16931,16589,16695, 4779, 4779, 4779, 4779, 4779, 4779, 4779, 4779,16528,16695,16695,17553, 4779,16569,16279, 16279,16279,16279,16279,16279,16528,16663,16569,16279,16934, 16942,16663,16663,16663,18496, 4779, 4779, 4779, 4783, 4783, 16279, 4783, 4783, 4783, 4783, 4783, 4783, 4783, 4783, 4783, 16589, 4783, 4783,18610,18496,16589,16934,16942,16279,16589, 16528,16708, 4783, 4783, 4783, 4783, 4783, 4783, 4783,17647, 17647,16708,16708,17355, 4783,17647,16327,16327,16327,16327, 16327,16327,16433,16433,16433,16433,16433,16433,16433,16433, 16433,17355, 4783, 4783, 4783, 4784, 4784,16327, 4784, 4784, 4784, 4784, 4784, 4784, 4784, 4784, 4784,16634, 4784, 4784, 16763,17431,16634,18642,17355,16327,16763,16634,16763, 4784, 4784, 4784, 4784, 4784, 4784, 4784, 4784,16416,16422,16423, 18515, 4784,16424,16416,16422,16423,16423,16770,16424,16416, 16422,16423,16430,17431,16424,16770,16770,16424,16430, 4784, 4784, 4784, 4787, 4787,16430, 4787, 4787, 4787, 4787, 4787, 4787, 4787, 4787, 4787,18515, 4787, 4787,16434,16434,16434, 16434,16434,16434,16434,16434,16434, 4787, 4787, 4787, 4787, 4787, 4787, 4787,16429,18738,18707,16714,17557, 4787,16429, 16429,16714,16714,16714,16598,16429,16446,16446,16446,16446, 16446,16446,16446,16446,16446,17557, 4787, 4787, 4787, 4788, 4788,16825, 4788, 4788, 4788, 4788, 4788, 4788, 4788, 4788, 4788,16825, 4788, 4788,16473,16473,16473,16473,16473,16473, 16473,16473,16473, 4788, 4788, 4788, 4788, 4788, 4788, 4788, 4788,16598,18614,18707,17459, 4788,16598,16447,16447,16447, 16447,16447,16447,16447,16447,16447,17459,16856,16856,16856, 16856,16856,18614, 4788, 4788, 4788, 4790, 4790,16447, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790, 4790,16856, 4790, 4790,16474,16474,16474,16474,16474,16474,16474,16474,16474, 4790, 4790, 4790, 4790, 4790, 4790, 4790,17532,17532,17532, 17532,17532, 4790,16475,16475,16475,16475,16475,16475,16475, 16475,16475,16326, 4790,17648,18016,18016,18016,17532,17648, 4790, 4790, 4790,16326,16326,16326,16326,16326,16326,16326, 16326,16326,16481,16481,16481,16481,16481,16481,16481,16481, 16481, 4790, 4791, 4791,16326, 4791, 4791, 4791, 4791, 4791, 4791, 4791, 4791, 4791,16644, 4791, 4791,16644,17340,16644, 17340,18291,16326,16723,16873,16644, 4791, 4791, 4791, 4791, 4791, 4791, 4791,16723,16723,16873,18305,18739, 4791,16787, 16449,16449,16449,16449,16449,16449,16449,16449,16449,16787, 16787,18291,17340,16701,18305,17787, 4791, 4791, 4791, 4792, 4792,16449, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792,18314, 4792, 4792,16487,16487,16487,16487,16487,16487, 16487,16487,16487, 4792, 4792, 4792, 4792, 4792, 4792, 4792, 4792,17538,18327,18314,17538, 4792,16733,16450,16450,16450, 16450,16450,16450,16450,16450,16450,16701,17787,18744,17538, 18327,16701,16701, 4792, 4792, 4792, 4793, 4793,16450, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793, 4793,17036, 4793, 4793,16493,16493,16493,16493,16493,16493,16493,16493,16493, 4793, 4793, 4793, 4793, 4793, 4793, 4793,18374,17541,16733, 17036,17541, 4793,16876,16452,16452,16452,16452,16452,16452, 16452,16452,16452,16733,16876,18374,17541,16780,17036,18745, 4793, 4793, 4793, 4794, 4794,16452, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794,18553, 4794, 4794,16499,16499, 16499,16499,16499,16499,16499,16499,16499, 4794, 4794, 4794, 4794, 4794, 4794, 4794, 4794,17547,18350,18553,17547, 4794, 16885,16453,16453,16453,16453,16453,16453,16453,16453,16453, 16780,16885,18503,17547,16822,16780,16780, 4794, 4794, 4794, 4798, 4798,16453, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798, 4798,18350, 4798, 4798,16507,16507,16507,16507,16507, 16507,16507,16507,16507, 4798, 4798, 4798, 4798, 4798, 4798, 4798,17551,17555,18503,17551,17555, 4798,16888,16458,16458, 16458,16458,16458,16458,16458,16458,16458,16822,16888,17551, 17555,17302,16822,16822, 4798, 4798, 4798, 4799, 4799,16458, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799,17302, 4799, 4799,16508,16508,16508,16508,16508,16508,16508,16508, 16508, 4799, 4799, 4799, 4799, 4799, 4799, 4799, 4799,18389, 17302,18389,16905, 4799,16509,16509,16509,16509,16509,16509, 16509,16509,16509,16905,16860,16645,16860,17571,16952,18240, 16645, 4799, 4799, 4799, 4802, 4802,16645, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802, 4802,16557, 4802, 4802,16675, 16860,17571,18240,16717,16675,16952,16845,16675, 4802, 4802, 4802, 4802, 4802, 4802, 4802,16845,16717,16860,16717,17571, 4802,16557,16533,16533,16542,16542,16542,16717,16611,16557, 16611,16594,16586,16963,16557,16774,18380,16611, 4802, 4802, 4802, 4803, 4803,16774, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803,16529, 4803, 4803,16533,18747,16542,18380, 16963,16542,16525,16525,16586, 4803, 4803, 4803, 4803, 4803, 4803, 4803, 4803,16529,16533,16611,16542, 4803,16594,16586, 16529,17417,16525,16594,16586,16529,16594,17621,16980,16601, 16604,16533,16816,16542,16525, 4803, 4803, 4803, 4805, 4805, 16816, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 4805, 16596, 4805, 4805,17417,16596,16980,18736,18736,17621,16721, 16529,16721, 4805, 4805, 4805, 4805, 4805, 4805, 4805,16525, 16721,17417,16766,16910, 4805,16336,16601,16604,16527,16530, 16766,16601,16604,16766,16910, 4805,16336,16336,16336,16336, 16336,16336, 4805, 4805, 4805,16336,16668,16596,16527,16530, 17621,16668,16596,17000,16806,16668,16806,16336,16599,16600, 16527,16530,16806, 4805, 4806, 4806,16531, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806, 4806,16669, 4806, 4806,17689, 17000,16669,16761,18748,17689,16669,16531,16527, 4806, 4806, 4806, 4806, 4806, 4806, 4806,16527,16530,16530,16531,16531, 4806,16871,16541,16541,16541,16599,16600,16761,16599,16871, 16599,16600,16597,17005,16602,16761,16599,16600, 4806, 4806, 4806, 4807, 4807,18506, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807,16531, 4807, 4807,16541,16794,18749,18313, 17005,18506,16794,16794,16794, 4807, 4807, 4807, 4807, 4807, 4807, 4807, 4807,16670,16541,16925,16597, 4807,16670,16597, 16772,16602,16925,16670,16597,16602,16602,16925,16772,18313, 16602,16541,16541,16602,16772, 4807, 4807, 4807, 4809, 4809, 16597, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4809, 4810,17724,16805,18693,17010,18751,17724,18693,16805, 16339,16805, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810,16339,16339,16339,16339,16339,16339,16339,16339,16339, 16642,16647,17010,16642,16680,16647,16647,16680,16642,16680, 16647,16681,16339,16647,16836,16680,16681,18403,17775,16836, 16836,16836,16681,17775,16642, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4810, 4814, 4814,18403, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4814, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816, 4816,16862,16862,16862,16862,16862,16862, 4816, 4816, 4816, 4816, 4816, 4816,16693,16693,16683,16712,16630, 16629,16683,16683,16712,16862,16753,16683,16693,16712,16683, 16349,18752,16693,16753,18551,16693, 4816, 4816, 4816, 4816, 4816, 4816, 4817,16349,16349,16349,16349,16349,16349,16349, 16349,16349,18388, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817, 4817,16532,16349,16630,16629,16349,16629, 4817, 4817, 4817, 4817, 4817, 4817,18551,16722,16629,16630,16629, 16630,16722,17432,16532,16629,16753,16730,16722,18388,16630, 16753,16543,16543,16543,16730,16532, 4817, 4817, 4817, 4817, 4817, 4817, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820, 4820,17828,17828,17432,16918,18753,17828, 4820, 4820, 4820, 4820, 4820, 4820,16532,16543,16918,16719,16665,16666, 16532,16678,16773,16767,16678,16719,16767,16719,16719,16678, 16773,16773,16730,16543,16767, 4820, 4820, 4820, 4820, 4820, 4820, 4821,16544,16544,16544,16678,17284,17284,17284,18779, 16543,16829, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821, 4821,16829,16829,16921,16665,16666,16665,17284, 4821, 4821, 4821, 4821, 4821, 4821,16921,16665,16544,16665,16666,16544, 16666,16768,16665,17830,16768,17284,16768,17035,17830,16666, 17573,16549,16768,16549,16544, 4821, 4821, 4821, 4821, 4821, 4821, 4826, 4826, 4826, 4826, 4826, 4826, 4826, 4826, 4826, 4826,16544,16718,18780,17035,16718,17573, 4826, 4826, 4826, 4826, 4826, 4826,16718,16755,16549,16760,16755,16760,16718, 16874,16549,18785,17438,16755,16755,16760,16760,16874,16551, 16552,16551,16552,16549, 4826, 4826, 4826, 4826, 4826, 4826, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 4829, 16549,17047,17065,18786,16759,17438, 4829, 4829, 4829, 4829, 4829, 4829,16759,16551,16552,16777,16809,16776,16777,16809, 16792,16551,16759,18555,16777,16792,16777,16809,17047,17065, 16792,16551,16552, 4829, 4829, 4829, 4829, 4829, 4829, 4830, 4830, 4830, 4830, 4830, 4830, 4830, 4830, 4830,16551,16552, 16716,18704,16716,18555,16784, 4830, 4830, 4830, 4830, 4830, 4830,16716,16784,16716,16883,16808,16886,16784,16716,16776, 16776,16812,16883,16808,16886,16776,16808,16776,16784,16812, 16812,18788, 4830, 4830, 4830, 4830, 4830, 4830, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838, 4838,16775,18210, 18210,18210,16797,16775, 4838, 4838, 4838, 4838, 4838, 4838, 16765,16775,16796,16814,16796,16797,16765,16797,18704,16928, 16775,16814,17070,16796,16765,16796,16797,16814,16928,16765, 16796, 4838, 4838, 4838, 4838, 4838, 4838, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839, 4839,16754,17075,17106,17070, 16802,16801,16802, 4839, 4839, 4839, 4839, 4839, 4839,16801, 16802,16802,16810,16720,16897,16810,16720,16810,16892,16801, 16815,16720,16897,16810,17075,17106,17435,16720,16815,16815, 4839, 4839, 4839, 4839, 4839, 4839, 4844,16720, 4844, 4844, 4844, 4844, 4844, 4844, 4844, 4844, 4844, 4844,18777,18777, 17435,16892,17435,16754, 4844, 4844, 4844, 4844, 4844, 4844, 16834,16807,16818,16754,18504,16834,17444,16807,16819,16892, 16834,16819,16867,16892,16754,16807,16803,16819,16867,16819, 16807, 4844, 4844, 4844, 4844, 4844, 4844, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851, 4851,16817,17444,18504, 17129,16803,16817, 4851, 4851, 4851, 4851, 4851, 4851,16803, 16817,16867,16999,16904,16818,16818,16843,17004,16762,16817, 16818,16904,16818,16999,17301,16843,16843,17129,17004,17301, 4851, 4851, 4851, 4851, 4851, 4851, 4852, 4852, 4852, 4852, 4852, 4852, 4852, 4852, 4852,16762,18789,17301,18790,18792, 16826,16762, 4852, 4852, 4852, 4852, 4852, 4852,16826,16762, 16838,16909,16838,16826,16846,16846,16846,16933,17301,16909, 17137,16838,16933,16838,16826,16849,16849,16849,16838, 4852, 4852, 4852, 4852, 4852, 4852, 4857, 4857, 4857, 4857, 4857, 4857, 4857, 4857, 4857, 4857,16839,17845,17137,16846,16933, 17009, 4857, 4857, 4857, 4857, 4857, 4857,16912,16839,16849, 16839,17009,16916,16919,16938,17728,16846,16912,16998,16839, 16916,16919,17728,16938,16912,17845,16998,16849, 4857, 4857, 4857, 4857, 4857, 4857, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861, 4861,18221,18221,18221,16912,16930,16935, 4861, 4861, 4861, 4861, 4861, 4861,16939,16930,16935,16948, 16949,16941,16951,17003,16930,16939,16941,16951,16948,16949, 17832,17003,16939,16935,18545,17832,16949, 4861, 4861, 4861, 4861, 4861, 4861, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865, 4865,16941,16951,18793,16943,16945,16946, 4865, 4865, 4865, 4865, 4865, 4865,16943,16945,16946,16959,18545, 16962,17014,16977,16945,16769,16962,17124,16959,16945,16946, 16943,16977,17014,18646,16972,17124, 4865, 4865, 4865, 4865, 4865, 4865, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866, 4866,16769,16962,18646,16972,16945,16946,16769, 4866, 4866, 4866, 4866, 4866, 4866,16960,16769,16972,16979,17125,16769, 17008,17013,17184,16960,17017,17147,16979,17125,17008,17013, 16960,17184,17017,16979,17125, 4866, 4866, 4866, 4866, 4866, 4866, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871, 4871,18618,17147,18794,16953,16955,16956, 4871, 4871, 4871, 4871, 4871, 4871,16953,16955,16956,17024,17027,17034,18618, 17447,16955,17046,17810,17024,17027,16955,16956,16953,17034, 16973,16975,17810,17046, 4871, 4871, 4871, 4871, 4871, 4871, 4875, 4875, 4875, 4875, 4875, 4875, 4875, 4875, 4875, 4875, 16973,16975,17447,16955,16956,16964, 4875, 4875, 4875, 4875, 4875, 4875,16973,16975,16964,17804,16975,16771,17033,17045, 17050,17051,17054,16771,17447,17804,17033,17045,17050,16964, 17054,16771,17051, 4875, 4875, 4875, 4875, 4875, 4875, 4876, 4876,16771, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4876, 4878, 4878,18805, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4878, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 4884, 4884,16974,18850,18852,16966,16967, 16981, 4884, 4884, 4884, 4884, 4884, 4884,16966,16967,16981, 17055,17835,17069,17448,16966,16974,17835,17058,17068,16966, 16967,17055,16974,17069,16981,17058,17068,16974, 4884, 4884, 4884, 4884, 4884, 4884, 4886, 4886, 4886, 4886, 4886, 4886, 4886, 4886, 4886, 4886,17128,17448,16966,16967,17448,17128, 4886, 4886, 4886, 4886, 4886, 4886,16971,16971,16971,16971, 16971,16971,16971,16971,16971,16804,16987,16987,16987,16987, 16987,16987,16987,16987,16987,16985,17128, 4886, 4886, 4886, 4886, 4886, 4886, 4891, 4891, 4891, 4891, 4891, 4891, 4891, 4891, 4891,16804,16984,18853,16985,16982,17159,16804, 4891, 4891, 4891, 4891, 4891, 4891,16982,16804,16985,17073,17640, 17078,17074,16982,16984,17640,17082,17073,16982,17078,17640, 16984,17038,17074,17082,17159,16984, 4891, 4891, 4891, 4891, 4891, 4891, 4892, 4892, 4892, 4892, 4892, 4892, 4892, 4892, 4892, 4892,17333,17038,16982,16983,17038,17079, 4892, 4892, 4892, 4892, 4892, 4892,16983,17474,17088,17090,17079,17040, 17094,17038,17093,16811,17088,17097,16983,17474,17090,17040, 17093,17094,18857,17097,17333, 4892, 4892, 4892, 4892, 4892, 4892, 4898, 4898, 4898, 4898, 4898, 4898, 4898, 4898, 4898, 16811,17040,18859,16983,17105,17104,16811, 4898, 4898, 4898, 4898, 4898, 4898,17104,16811,17105,18860,17333,16811,17040, 18412,16545,16545,16545,16988,16988,16988,16988,16988,16988, 16988,16988,16988,17852, 4898, 4898, 4898, 4898, 4898, 4898, 4934, 4934,17852, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934, 4934,17111, 4934, 4934,16545,18412,16813,18705,17175, 17111,17112,17188,16813, 4934, 4934, 4934, 4934, 4934, 4934, 4934,16813,17112,16545,17115,17130, 4934,18552,16548,17204, 16548,16813,17115,17136,17130,16545,17175,17204,17136,17188, 16545,17039,17037,18705, 4934, 4934, 4934, 4935, 4935,17130, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935, 4935,17037, 4935, 4935,16548,17039,17037,17136,17299,17205,18552,17039, 17189, 4935, 4935, 4935, 4935, 4935, 4935, 4935,17205,17189, 16548,17039,17037, 4935,17461,16854,16854,16854,16854,16854, 16854,16854,16854,16854,17189, 4935,17461,16548,18864,17461, 17299, 4935, 4935, 4935,16548,16550,16854,16550,16989,16989, 16989,16989,16989,16989,16989,16989,16989,17838,17299,18866, 17206,18867,17838, 4935, 4936, 4936,17138, 4936, 4936, 4936, 4936, 4936, 4936, 4936, 4936, 4936,17139, 4936, 4936,16550, 17146,17299,17211,17140,17148,17146,17138,17206, 4936, 4936, 4936, 4936, 4936, 4936, 4936, 4936,17139,16550,17138,17209, 4936,18694,17694,17140,17148,17526,16550,17209,17139,17211, 17140,17148,17146,16550,16550,17140,17148,17526, 4936, 4936, 4936, 4941, 4941,17449, 4941, 4941, 4941, 4941, 4941, 4941, 4941, 4941, 4941,17210, 4941, 4941,17110,17110,17110,17110, 17110,17110,17110,17110,17210, 4941, 4941, 4941, 4941, 4941, 4941, 4941,18694,17694,18872,17449,17110, 4941,17694,16855, 16855,16855,16855,16855,16855,16855,16855,16855,17158,17174, 17216,18874,17596,17158,17174, 4941, 4941, 4941, 4942, 4942, 16855, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 17214, 4942, 4942,17141,17187,17149,17596,17216,17214,17187, 17158,17174, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 4942, 18490,18490,18490,17141, 4942,17149,16861,16861,16861,16861, 16861,16861,16861,16861,16861,17141,17187,17149,17141,18510, 17236,17596, 4942, 4942, 4942, 4944, 4944,16861, 4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944, 4944,17215, 4944, 4944, 17150,18330,17458,17434,17241,17220,17235,17236,17215, 4944, 4944, 4944, 4944, 4944, 4944, 4944,17220,17235,18510,18330, 17150, 4944,17023,17023,17023,17023,17023,17023,17023,17023, 17023,17241,17150,17246,17458,17434,18330,18875,17023, 4944, 4944, 4944, 4945, 4945,17151, 4945, 4945, 4945, 4945, 4945, 4945, 4945, 4945, 4945,17219, 4945, 4945,17153,17253,17434, 17246,17253,17219,17023,17151,17805, 4945, 4945, 4945, 4945, 4945, 4945, 4945, 4945,18883,17805,17151,17153, 4945,17089, 17089,17089,17089,17089,17089,17089,17089,17089,17253,17153, 18737,17261,17153,18816,18885,17089, 4945, 4945, 4945, 4946, 4946,17161, 4946, 4946, 4946, 4946, 4946, 4946, 4946, 4946, 4946,17537, 4946, 4946,18737,18816,17537,17166,17261,17167, 17089,17161,17185, 4946, 4946, 4946, 4946, 4946, 4946, 4946, 17266,17185,17295,17161,17537, 4946, 4946,17166,17185,17167, 16850,16850,16850,16850,16850,16850,16850,16850,16850,17166, 16850,17167,17223, 4946, 4946, 4946,18428,17266,17234,17295, 17223,16850,18428, 4946, 4947, 4947,17234, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947,17152, 4947, 4947,17160, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947, 4947,16850,17152,17239,17240,17160, 4947,18711,17886,17152,18703,17239,17160,17685,17152,17240, 17198,17160,17198,17198,17198,17198,17198,17198, 4947, 4947, 4947, 4948, 4948,17528, 4948, 4948, 4948, 4948, 4948, 4948, 4948, 4948, 4948,17198, 4948, 4948,17163,17163,17163,17163, 17163,17163,17163,17163,17163, 4948, 4948, 4948, 4948, 4948, 4948, 4948,17685,17886,17886,17528,17245, 4948,17164,17164, 17164,17164,17164,17164,17164,17164,17164,17245,17813,18703, 18711,17685,17244,17813,17813, 4948, 4948, 4948, 4949, 4949, 17244, 4949, 4949, 4949, 4949, 4949, 4949, 4949, 4949, 4949, 18886, 4949, 4949,17165,17165,17165,17165,17165,17165,17165, 17165,17165, 4949, 4949, 4949, 4949, 4949, 4949, 4949,17249, 17256,18318,18417,17559, 4949, 4949,17559,17249,17256,16891, 16891,16891,16891,16891,16891,16891,16891,16891,17250,16891, 17259,17559, 4949, 4949, 4949,17324,17360,18318,17259,17250, 16891,18417, 4949, 4951, 4951,17177, 4951, 4951, 4951, 4951, 4951, 4951, 4951, 4951, 4951, 4951, 4951, 4951,17264,17604, 18512,17169,17324,17360,17260,17177,17264, 4951, 4951, 4951, 4951, 4951, 4951, 4951,16891,17260,18899,17177,18512, 4951, 16991,17169,16991,16991,16991,16991,16991,16991,16991,16991, 16991,17604,17273,17169,18512,17273,17169, 4951, 4951, 4951, 4951, 4955, 4955,16991, 4955, 4955, 4955, 4955, 4955, 4955, 4955, 4955, 4955,17265, 4955, 4955,17168,18900,17176,18924, 17620,17270,17273,17288,17265, 4955, 4955, 4955, 4955, 4955, 4955, 4955,17270,17269,17276,17288,17168, 4955,17176,17293, 4955,17269,17276,17168,17322,17176,17327,17293,17168,17294, 17176,17620,17322,17288,17327, 4955, 4955, 4955, 4957, 4957, 17294, 4957, 4957, 4957, 4957, 4957, 4957, 4957, 4957, 4957, 4957, 4957, 4957,17179,17179,17179,17179,17179,17179,17179, 17179,17179, 4957, 4957, 4957, 4957, 4957, 4957, 4957,18619, 17343,17620,17343,16992, 4957,16992,16992,16992,16992,16992, 16992,16992,16992,16992,18619,18695,17323,18740,17720,17359, 17358,18740, 4957, 4957, 4957, 4957,16992,17323,17358,17343, 17359, 4957, 4958, 4958,17343, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958, 4958,17180,17180,17180, 17180,17180,17180,17180,17180,17180, 4958, 4958, 4958, 4958, 4958, 4958, 4958,17720,18929,18650,18695,17364, 4958,17181, 17181,17181,17181,17181,17181,17181,17181,17181,17364,17365, 17370,17375,17720,18650,18939,17729, 4958, 4958, 4958, 4958, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963, 4963,17192, 4963, 4963,17363,17365,17370,17375,17311, 17314,17192,17352,17363, 4963, 4963, 4963, 4963, 4963, 4963, 4963,17311,17314,17192,17352,16993, 4963,16993,16993,16993, 16993,16993,16993,16993,16993,16993,17729,18943,17872,17311, 17314,17729,17352,17872, 4963, 4963, 4963, 4965,16993, 4965, 17192,17196,17196,17196,17196,17196,17196,17196,17196,17196, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965, 4965,17623, 4965,17197,17197,17197,17197,17197,17197,17197,17197,17197, 17191, 4965,17368,17369,17374,17373,17379,17380,17623,17191, 17368,18946,17197,17373,17369,17374,17191,17379,17280,17280, 17623,17191,17378,17383,17945,17289,17289,17289,17289,17387, 17378,17383,17387,17945,17380, 4965, 4966, 4966, 4966, 4966, 4966, 4966, 4966, 4966, 4966, 4966, 4966, 4966,17191, 4966, 4966,17289,17280,17874,17396,17401,17384,17627,17874,17387, 4966, 4966, 4966, 4966, 4966, 4966, 4966,17384,17289,17289, 17280,17289, 4966,17281,17281,17281,17281,17281,17281,17390, 17393,17396,17401,17433,17394,17400,18955,17390,17393,17627, 4966, 4966, 4966,17280,17281,17394,17400,17310,17310,17346, 17346,17399,17282,17282,17282,17282,17282,17282,18960,17399, 17433,17282,17281, 4966, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970, 4970,17282, 4970,17283,17283,17283,17283,17283, 17283,17310,17404,17346,17456, 4970,17405,18964,17329,18910, 17404,17282,17315,17315,17315,17315,17283,17405,17411,17310, 17454,17346,17408, 4970,17455,17408,17411,17430,17454,17795, 17439,17456,18910,17346,17283,17455,17310,17574,17315, 4970, 4985, 4985,17329, 4985, 4985, 4985, 4985, 4985, 4985, 4985, 4985, 4985,17408, 4985, 4985,17315,17315,17439,17315,17430, 17329,17650,17439,17574, 4985, 4985, 4985, 4985, 4985, 4985, 4985,17460,17574,17650,17676,17795, 4985,17329,17460,17430, 17795,18709,17676,17460,18425,17285,17285,17285,17285,17285, 17285,17285,17285,17285, 4985, 4985, 4985, 4987, 4987, 4987, 4987, 4987, 4987, 4987, 4987, 4987,17285, 4987,17312,17312, 17312,17312,17312,17312,17312,17312,17312,17540, 4987,17711, 18425,17546,17540,17550,17285,17415,17546,17711,17550,17312, 17313,17313,17313,17313,17313,17313, 4987,17415,17414,17626, 17540,18709,17636,17567,17546,17554,17550,17312,18709,17682, 17554,17313, 4987, 4989, 4989,17415, 4989, 4989, 4989, 4989, 4989, 4989, 4989, 4989, 4989,17617, 4989, 4989,17554,17313, 17567,17626,17414,17335,17347,17347,17347, 4989, 4989, 4989, 4989, 4989, 4989, 4989,17335,17335,17335,17335,17335, 4989, 17414,17473,17617,18967,17508,17347,17682,17626,17473,17636, 17508,17682,17414,17473,17636,17335,17508, 4989, 4989, 4989, 4989, 4991, 4991,17347, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4991, 4992, 4992,17846, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992, 4992,17846, 4992, 4992,17489, 17489,17489,17489,17489,17489,17489,17489,17489, 4992, 4992, 4992, 4992, 4992, 4992, 4992,17833,18880,18880,18880,18174, 4992,17422,17316,17316,17316,17316,17316,17316,17316,17316, 17316,18174,17422,17422,17422,17422,17422,17422, 4992, 4992, 4992, 4993, 4993,17316, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993,17422, 4993, 4993,17611,17645,17833,17870, 17870,17316,17428,17833,17870, 4993, 4993, 4993, 4993, 4993, 4993, 4993, 4993,17428,17428,17428,17611, 4993,17425,17317, 17317,17317,17317,17317,17317,17317,17317,17317,17611,17425, 17425,17425,17425,17425,17428, 4993, 4993, 4993, 5004, 5004, 17317, 5004, 5004, 5004, 5004, 5004, 5004, 5004, 5004, 5004, 17425, 5004, 5004,17625,17645,18808,17820,17609,17317,17645, 17808,17820, 5004, 5004, 5004, 5004, 5004, 5004, 5004,17609, 17613,17808,17820,17625, 5004,17427,17318,17318,17318,17318, 17318,17318,17613,18808,17609,17625,17427,17427,17427,17427, 17427,17427, 5004, 5004, 5004, 5005, 5005,17318, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5005,17427, 5005, 5005, 17797,17622,17443,17624,17643,17318,18175,17613,17624, 5005, 5005, 5005, 5005, 5005, 5005, 5005, 5005,17643,18175,17777, 18615, 5005,17643,17348,17348,17348,17348,17348,17348,17348, 17348,17348,17622,17797,18615,17624,17443,18615,17622, 5005, 5005, 5005, 5006, 5006,17348, 5006, 5006, 5006, 5006, 5006, 5006, 5006, 5006, 5006,17443, 5006, 5006,17570,17443,17558, 19005,17777,17348,17576,17558,17797, 5006, 5006, 5006, 5006, 5006, 5006, 5006,17334,17877,17570,17572,17777, 5006,17877, 5006,19058,17558,17570,17334,17334,17334,17334,17334,17334, 17334,17334,17334,17575,17572,17576, 5006, 5006, 5006,17837, 18799,19061,17572,18820,17837,17334,17440, 5006, 5008, 5008, 17837, 5008, 5008, 5008, 5008, 5008, 5008, 5008, 5008, 5008, 5008, 5008, 5008,17896,17576,17575,17575,17902,17440,18820, 17576,18399, 5008, 5008, 5008, 5008, 5008, 5008, 5008,17509, 17440,17510,17515,18399, 5008,17509,17509,17510,17515,17515, 5008,17509,17824,17510,17515,17896,17510,17824,17440,17902, 17575,17824, 5008, 5008, 5008, 5008, 5009, 5009,18799, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5009, 5013, 5013,17584, 5013, 5013, 5013, 5013, 5013, 5013, 5013, 5013, 5013,19062, 5013, 5013,17498,17498,17498,17498,17498,17498, 17498,17498,17498, 5013, 5013, 5013, 5013, 5013, 5013, 5013, 18746,18376,17809,17584,18376, 5013, 5013,17349,17349,17349, 17349,17349,17809,17809,17442,17527,17527,17527,17527,18376, 19065,17584,17606, 5013, 5013, 5013, 5016, 5016,17349, 5016, 5016, 5016, 5016, 5016, 5016, 5016, 5016, 5016,17584, 5016, 5016,17527,17900,17900,17900,18746,17349,17606,17442,17607, 5016, 5016, 5016, 5016, 5016, 5016, 5016,17336,17527,17577, 17606,17527, 5016,17900,18746,19066,17442,19074,17336,17336, 17336,17336,17336,17336,17607,17802,17847,17336,17516,17607, 5016, 5016, 5016,17442,17516,18802,17847,17607,18802,17336, 17516,17577, 5016, 5025, 5025,17588, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025, 5025,19075, 5025, 5025,17507,17507, 17507,17507,17507,17507,17507,17507,17507, 5025, 5025, 5025, 5025, 5025, 5025, 5025,17577,17816,17577,17588,17802, 5025, 17816,17816,17816,17802,17802, 5025,17518,17518,17518,17518, 17518,17518,17518,17518,17518,17588,18537, 5025, 5025, 5025, 5029, 5029,17929, 5029, 5029, 5029, 5029, 5029, 5029, 5029, 5029, 5029,17588, 5029, 5029,17519,17519,17519,17519,17519, 17519,17519,17519,17519, 5029, 5029, 5029, 5029, 5029, 5029, 5029,18537,17880,19083,17929,18537, 5029,17880,17350,17350, 17350,17350,17350,17350,17520,17520,17520,17520,17520,17520, 17520,17520,17520,17597, 5029, 5029, 5029, 5030, 5030,17350, 5030, 5030, 5030, 5030, 5030, 5030, 5030, 5030, 5030,17637, 5030, 5030,17677,17637,17677,19084,18651,17350,17850,17597, 17677, 5030, 5030, 5030, 5030, 5030, 5030, 5030,17597,17850, 17644,18651,19096, 5030,17351,17351,17351,17351,17351,17351, 17585,17644,17637,17351,17641,18778,17644,17637,17712,17641, 17712, 5030, 5030, 5030,17641,17351,17712,17913,17717, 5030, 5031, 5031, 5031, 5031, 5031, 5031, 5031, 5031, 5031,18778, 5031,19097,17585,17351,17354,17354,17354,17354,17354,17354, 17578, 5031,17581,17911,17913,17353,17353,17353,17353,17353, 17353,17353,17353,17353,17911,17354,17649,18754,17585, 5031, 17578,17680,17581,17649,18754,17717,17353,17585,17649,17680, 17717,17915,17578,17354,17581, 5031, 5036, 5036,19110, 5036, 5036, 5036, 5036, 5036,17353,17680, 5036, 5036, 5036,17413, 17413,17413,17413,17413,17413,17413,17413,17413,17915,17745, 17914, 5036, 5036, 5036, 5036, 5036, 5036,17578,17642,17581, 17413,17914, 5036,17395,17395,17395,17395,17395,17395,17395, 17395,17395,17916,18781,19111,17924,19120,18781,17413,17395, 5036, 5036, 5036, 5036, 5037, 5037,17739, 5037, 5037, 5037, 5037, 5037, 5037, 5037, 5037, 5037,17745, 5037, 5037,17916, 17745,17745,17924,17642,17395,17745,17926,17745, 5037, 5037, 5037, 5037, 5037, 5037, 5037,18598,17642,17739,19122,18598, 5037,17642,17642, 5037,17544,17544,17544,17544,17544,17544, 17544,17544,17544,17926,17739,18598,17909,17739, 5037, 5037, 5037, 5037, 5038, 5038,17909, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5038, 5039, 5039,17763, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 5039, 5039,19123, 5039, 5039, 17566,17566,17566,17566,17566,17566,17566,17566,17566, 5039, 5039, 5039, 5039, 5039, 5039, 5039,18630,17763,17763,18508, 18630, 5039,18508,17851,17530,17530,17530,17530,17530,17530, 17530,17530,17530,17851,17851,17763,18630,18508,17763, 5039, 5039, 5039, 5039, 5040, 5040,17530, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5040, 5041, 5041,17610, 5041, 5041, 5041, 5041, 5041, 5041, 5041, 5041, 5041,17579, 5041, 5041,17829,18669,18669,19200,18292,17829,18669,17610,17681, 5041, 5041, 5041, 5041, 5041, 5041, 5041,17681,17579,17646, 17610,17829, 5041,17659,17646,17659,17825,17589, 5041,17646, 17579,17825,17659,17681,17646,17825,17950,18292,17715,17651, 5041, 5041, 5041, 5041, 5042, 5042,17715, 5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042,17912, 5042, 5042,17589, 19228,17610,17715,17950,17912,17579,17579,17659, 5042, 5042, 5042, 5042, 5042, 5042, 5042, 5042,17855,17589, 5042,17823, 5042,17855,17855,19232, 5042,17920,17589, 5042, 5042, 5042, 17651,17420, 5042,17920,17589,17651,17651,19228, 5042, 5042, 5042,17651,17420,17420,17420,17420,17420,17420,17420,17420, 17420,17652,17652,17652,17652,17652,17652,17652,17652,17652, 5042, 5043, 5043,17420, 5043, 5043, 5043, 5043, 5043, 5043, 5043, 5043, 5043, 5043, 5043, 5043,17823,17827,17862,17827, 18347,17823,17922,17862,17827, 5043, 5043, 5043, 5043, 5043, 5043, 5043, 5043,17922,17862,19217,18676, 5043,17652,17925, 17531,17531,17531,17531,17531,17531,17531,17531,17531,18676, 17925,19303,18347,19217,18676, 5043, 5043, 5043, 5043, 5044, 5044,17531, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5044, 5045, 5045,18608, 5045, 5045, 5045, 5045, 5045, 5045, 5045, 5045, 5045,18608, 5045, 5045,17630,17630,17630, 17630,17630,17630,17630,17630,17630, 5045, 5045, 5045, 5045, 5045, 5045, 5045, 5045,17826,17638, 5045,19304, 5045,17826, 17934,17630, 5045,17638,17826, 5045, 5045, 5045,17638,17421, 5045,17934,17875,17638,19179,17865, 5045, 5045, 5045,17638, 17421,17421,17421,17421,17421,17421,17421,17421,17421,17634, 17634,17634,17634,17634,17634,17634,17634,17634, 5045, 5046, 5046,17421, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 5046,17831,17875,19179,18289,19306,17831, 17875,18554,17831, 5046, 5046, 5046, 5046, 5046, 5046, 5046, 17678,17678,17865,18554,18289, 5046,17678,17865,17678,17678, 17839, 5046,17713,17713,17839,17839,17634,17634,17713,17839, 17713,17713,17839, 5046, 5046, 5046, 5046, 5050, 5050,18289, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5050, 5052, 5052,18348, 5052, 5052, 5052, 5052, 5052, 5052, 5052, 5052, 5052, 5052, 5052, 5052,19307,17869,18304,17869,18712, 17818,18023,17818,17869, 5052, 5052, 5052, 5052, 5052, 5052, 5052,17818,18023,17818,18348,18304, 5052,18304,17818,17592, 17592,17592, 5052,17633,17633,17633,17633,17633,17633,17633, 17633,17633,17754,19274, 5052, 5052, 5052, 5052, 5053, 5053, 17580, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 5053, 17582, 5053, 5053,17592,19313,19274,18712,18712,19314,17592, 17580,17923, 5053, 5053, 5053, 5053, 5053, 5053, 5053,17923, 17582,17592,17580,17639, 5053,17580,17594,17594,17594,17754, 5053,17639,17582,17633,17754,17582,17639,17754,17592,17958, 17633,17639, 5053, 5053, 5053, 5054, 5054,17639, 5054, 5054, 5054, 5054, 5054, 5054, 5054, 5054, 5054,17580, 5054, 5054, 17594,17844,19254,17889,19319,18028,17958,17582,17594, 5054, 5054, 5054, 5054, 5054, 5054, 5054,18028,17871,17594,19320, 19254, 5054,17871,17523,17523,17523,17523,17523,17523,17523, 17523,17523,17742,19325,17968,17594,17889,17871,17523, 5054, 5054, 5054, 5056, 5056,17523, 5056, 5056, 5056, 5056, 5056, 5056, 5056, 5056, 5056,17844, 5056, 5056,17716,17889,17844, 17844,17968,19326,17742,18326,17716, 5056, 5056, 5056, 5056, 5056, 5056, 5056,17742,17836,17423,17744,17836, 5056,17836, 17742,17716,18326,17742,18326,17836,17423,17423,17423,17423, 17423,17423,17423,17423,17423,17736, 5056, 5056, 5056,18818, 18818,17748,17749,17736, 5056, 5079, 5079,17423, 5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079, 5079,17873, 5079, 5079, 18392,19331,17873,17744,19332,17873,17736,17819,17744, 5079, 5079, 5079, 5079, 5079, 5079, 5079,17927,19340,18818,17744, 17819, 5079,17819,17736,17927,17868,17736, 5079,17748,17749, 17868,17819,18392,17748,17749,17868,17933,17748,17749, 5079, 5079, 5079, 5081, 5081,17933, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5081, 5102, 5102,19341, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5102, 5109,18683, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 5109, 17980,18683,18312,19455,17806,18312, 5109, 5109, 5109, 5109, 5109, 5109,17806,17822,17821,17822,17822,17806,17821,17821, 18312,17822,17885,17821,17822,17821,19484,17980,17806,17885, 17885,17822,17885, 5109, 5109, 5109, 5109, 5109, 5109, 5129, 5129,18312, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5129, 5130, 5130,18306, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130, 5130,17866, 5130, 5130,17834,19288,17866, 17834,19256,17860,17866,17860,17834, 5130, 5130, 5130, 5130, 5130, 5130, 5130,17860,17937,17860,18306,19284, 5130,19256, 17860,17834,17937,17655, 5130,17655,17655,17655,17655,17655, 17655,17655,17655,17655,18306,19288, 5130, 5130, 5130, 5130, 5132, 5132,17768, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132,19284, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132, 5132,17655,19623,17768,19197,19203, 5132,18022,17905,17529, 17529,17529,17529,17529,17529,18022,17996,17905,17529,17743, 17768,17768,18009,17768, 5132, 5132, 5132, 5132, 5136, 5136, 17529, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 5136, 17583, 5136, 5136,17996,19203,19197,17861,17905,18647,18009, 17529,17743, 5136, 5136, 5136, 5136, 5136, 5136, 5136,17861, 17583,17861,18647,19357, 5136,18647,17743,17593,17593,17593, 17861,17743,17583,17656,17656,17656,17656,17656,17656,17656, 17656,17656, 5136, 5136, 5136, 5136, 5137, 5137,19357, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 5137, 5137,18024, 5137, 5137,17593,17583,17591,17591,17591,17612,17583,17778,17904, 5137, 5137, 5137, 5137, 5137, 5137, 5137,19576,17904,17593, 17747,18027, 5137,17750,17755,18024,17612,18433,17593,18027, 17747,17656,19576,18433,17758,17593,17593,17591,17612,18433, 5137, 5137, 5137, 5137, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140, 5140,17778,17591,17752,17904,17946,17778, 5140, 5140, 5140, 5140, 5140, 5140,17778,17946,17750,17761, 17750,17755,17591,17612,17946,17750,17755,17747,18029,17591, 18034,17758,17747,17595,17595,17595,17758, 5140, 5140, 5140, 5140, 5140, 5140, 5142, 5142, 5142, 5142, 5142, 5142, 5142, 5142, 5142, 5142,17752,17752,18029,18005,18034,17752, 5142, 5142, 5142, 5142, 5142, 5142,18005,17761,17595,17756,18680, 18680,17761,17756,19676,17760,18680,17635,17635,17635,17635, 17635,17635,17635,17635,17635,17595, 5142, 5142, 5142, 5142, 5142, 5142, 5145, 5145, 5145, 5145, 5145, 5145, 5145, 5145, 5145, 5145,17595,18039,18328,17951,17753,18033, 5145, 5145, 5145, 5145, 5145, 5145,17951,17756,18328,18038,18033,17635, 17756,17760,17598,17599,17598,17599,17760,17635,18038,17951, 18039, 5145,17760,19679,18328, 5145, 5145, 5145, 5145, 5145, 5145, 5150, 5150,17635, 5150, 5150, 5150, 5150, 5150, 5150, 5150, 5150, 5150,17753, 5150, 5150,17598,17599,17753,17601, 17602,17601,17602,18006,18844, 5150, 5150, 5150, 5150, 5150, 5150, 5150,18006,17753,17598,17599,18844, 5150,19680,18006, 5150,17601,17654,17654,17654,17654,17654,17654,17654,17654, 17654,17598,17599,17601,17602, 5150, 5150, 5150, 5152, 5152, 5152, 5152, 5152, 5152, 5152, 5152, 5152, 5152,17949,18043, 18054,17601,17602,17949, 5152, 5152, 5152, 5152, 5152, 5152, 18043,18054,17602,17764,18032,17735,17780,17759,17601,17602, 17602,17654,18032,18607,17780,17780,17781,17783,17654,19683, 17949, 5152, 5152, 5152, 5152, 5152, 5152, 5154, 5154, 5154, 5154, 5154, 5154, 5154, 5154, 5154,17735,17899,17899,17899, 17899,17899,17735, 5154, 5154, 5154, 5154, 5154, 5154,18607, 17764,18069,18037,17735,17759,17764,17735,17759,17899,17759, 18037,18681,17780,17781,17783,17759,18681,17780,17781,17783, 5154, 5154, 5154, 5154, 5154, 5154, 5173, 5173,18069, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5173, 5175, 5175, 5175, 5175, 5175, 5175, 5175, 5175, 5175, 5175,18284, 18891,18891,18891,18058,18068, 5175, 5175, 5175, 5175, 5175, 5175,17424,17790,17858,18058,18068,18809,19684,17858,17858, 17858,18284,17424,17424,17424,17424,17424,17424,17424,17424, 17424,17765, 5175, 5175, 5175, 5175, 5175, 5175, 5180,17867, 17741,18284,17957,17424,17867,19692,18809,17957,17867, 5180, 5180, 5180, 5180, 5180, 5180, 5180, 5180, 5180, 5180,17790, 18074,19693,17765,17784,17790, 5180, 5180, 5180, 5180, 5180, 5180,17741,17878,17765,17957,17878,17741,17878,17746,17765, 17762,17741,17765,17878,18079,18595,17784,18074,17741,18595, 17757,17741, 5180, 5180, 5180, 5180, 5180, 5180, 5181,19457, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 5181, 17784,18079,17792,18595,18013,17784, 5181, 5181, 5181, 5181, 5181, 5181,17746,18013,17746,17746,17788,17762,19457,17767, 17746,17762,17762,17746,17757,18013,17762,17757,17789,17762, 17746,19701,17757, 5181, 5181, 5181, 5181, 5181, 5181, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184, 5184,17757,17792, 17767,18100,18013,18010,17792, 5184, 5184, 5184, 5184, 5184, 5184,17767,18010,17788,18750,18073,17848,17767,17788,18750, 17767,18609,17788,17789,17848,17789,18073,18010,18100,17848, 17789,18609, 5184, 5184, 5184, 5184, 5184, 5184, 5199, 5199, 17848, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5199, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201, 5201,17959,19128,19128,19128,18078,19702, 5201, 5201, 5201, 5201, 5201, 5201,17429,17888,17888,18078,17888,17967,18105, 18110,17959,19230,17967,17429,17429,17429,17429,17429,17429, 17429,17429,17429,17959, 5201, 5201, 5201, 5201, 5201, 5201, 5206,17876,17766,17960,17876,17429,18105,18110,17888,17876, 17967, 5206, 5206, 5206, 5206, 5206, 5206, 5206, 5206, 5206, 5206,19714,19230,17960,19363,17876,17888, 5206, 5206, 5206, 5206, 5206, 5206,17766,18083,17960,18099,17863,17791,17766, 17793,17863,17863,18042,17979,18083,17863,18099,17863,17979, 17766,18042,17970,17766, 5206, 5206, 5206, 5206, 5206, 5206, 5207,19363, 5207, 5207, 5207, 5207, 5207, 5207, 5207, 5207, 5207, 5207,17970,18126,17782,19715,17979,19728, 5207, 5207, 5207, 5207, 5207, 5207,17970,17791,17794,17793,17879,17782, 17791,18611,17793,17879,19418,17791,18611,17793,18131,17879, 18126,18611,17971,17972,17962, 5207, 5207, 5207, 5207, 5207, 5207, 5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210, 5210, 17782,17782,17971,17972,17962,18131,17782, 5210, 5210, 5210, 5210, 5210, 5210,17794,17971,17972,17962,17782,17794,17962, 17782,17600,18511,17600,17995,18046,19418,18008,19729,17995, 17794,18511,18008,18046, 5210, 5210, 5210, 5210, 5210, 5210, 5240, 5240,17982, 5240, 5240, 5240, 5240, 5240, 5240, 5240, 5240, 5240,18052, 5240, 5240,17600,17995,17891,17891,18008, 18052,18147,17982,18057, 5240, 5240, 5240, 5240, 5240, 5240, 5240,18057,18061,17600,17982,19738, 5240,17600,18067,18072, 18061,17864, 5240,17864,17864,18077,18067,18072,18147,17864, 17600,17891,17864,18077, 5240, 5240, 5240, 5250, 5250,17864, 5250, 5250, 5250, 5250, 5250, 5250, 5250, 5250, 5250,17891, 5250, 5250,18082,17891,18494,18494,18494,19740,17987,18104, 18082, 5250, 5250, 5250, 5250, 5250, 5250, 5250,17436,18086, 18104,18117,18098, 5250,18117,18494,19178,18086,17987, 5250, 18098,17436,17436,17436,17436,17436,17436,17436,17436,17436, 17987, 5250, 5250, 5250, 5255, 5255,18103,18108,18113,19741, 19178,18117,17436, 5255,18103,18108,18113,18109,17436,17524, 17524,17524,17524,17524,17524,17524,17524,17524,18109,18138, 18791,18120,18138,17881,17524,18791, 5255,17881,17881,18120, 17524,17884,17881, 5255,17961,17881,17525,17525,17525,17525, 17525,17525,17525,17525,17525,18501,17884,18114, 5255,18138, 5255,17525, 5255,17969,17961, 5255, 5255,17525,18114,18156, 5255,17961,18639, 5255,17974, 5255,17961, 5255,18123, 5255, 5255, 5255, 5256,17969,17973,17981,18123,18501,17884,19755, 17969,19874,17884,17884,17974,17969,18156,17884,17897,17897, 17897,17897,17897,17897,17973,17981,17974,17897,18639,17974, 18129,17973,17981,18819, 5256, 5256,17973,17981,18129,17897, 18185, 5256,17988,18124,17898,17898,17898,17898,17898,17898, 17898,17898,17898,18134,18124,18130, 5256,19486, 5256,17897, 5256,18134,17988, 5256, 5256,17898,18130,18185, 5256,18819, 18135, 5256,18146, 5256,17988, 5256,18141, 5256, 5256, 5256, 5257,18135, 5257,18146,18141,18192,19486,17998,17989, 5257, 17930,17930,17930,17930,17930,17930,17930,17930,17984,17984, 17984,17984,17984,17984,17984,17984,17984,17998,17989,18795, 17930,19352,18192,18184, 5257,17989,18795,17990,18184,17998, 17989, 5257,17985,17985,17985,17985,17985,17985,17985,17985, 17985,19352,18405,18145,17997,18155, 5257,17990, 5257, 5257, 5257,18145,18153, 5257, 5257,18184,18155,18012, 5257,17990, 18153, 5257,17990, 5257,17997, 5257,18012, 5257, 5257, 5257, 5258,17997, 5258,18012,18405,18191,17997,18405,18012, 5258, 18191,19876, 5258,17986,17986,17986,17986,17986,17986,17986, 17986,17986,18000,18000,18000,18000,18000,18000,18000,18000, 18000,18159,19633,18198, 5258,18012,19196,18191,18198,18159, 18160, 5258,18001,18001,18001,18001,18001,18001,18001,18001, 18001,18160,19189,18163,18177,18176, 5258,19633, 5258, 5258, 5258,18163,18176, 5258, 5258,18198,18177,18176, 5258,18177, 19189, 5258,19196, 5258,19189, 5258,19233, 5258, 5258, 5258, 5259,18002,18002,18002,18002,18002,18002,18002,18002,18002, 18017,18017,18017,18017,18017,18017,18017,18017,18017,18018, 18018,18018,18018,18018,18018,18018,18018,18018,18199,18247, 18207,18206, 5259,18217,19877,19233,18206,18247,18217, 5259, 18018,18019,18248,18019,18019,18019,18019,18019,18019,18253, 19216,18252,19202,18248, 5259,18199, 5259,18207, 5259,18252, 18253, 5259, 5259,18206,18019,18217, 5259,18218,19216, 5259, 19216, 5259,18316, 5259,18316, 5259, 5259, 5259, 5261,18053, 18053,18053,18053,18053,18053,18053,18053,18053,18232,18223, 19563,18249,19879,19202,18218,18053,18092,18092,18092,18092, 18092,18092,18092,18092,18092,18258,18316,19563,18254,18223, 5261,18224,18092,18226,18231,18232,18258, 5261,18249,18231, 18053,18223,18125,18125,18125,18125,18125,18125,18125,18125, 18125,18224, 5261,18226, 5261,18254, 5261,18092,18125, 5261, 5261,18234,18257,18224, 5261,18226,18231, 5261,18226, 5261, 18257, 5261,18262, 5261, 5261, 5261, 5262,18259,18556,18556, 18262,18234,18283,18125,18142,18142,18142,18142,18142,18142, 18142,18142,18142,18234,18556,18154,18154,18154,18154,18154, 18154,18154,18154,18154,18259,18142,18266,19281, 5262,18283, 18556,18340,19881,18363,18266, 5262,18154,18169,18169,18169, 18169,18169,18169,18169,18169,18169,19614,18272,18263,18340, 5262,18363, 5262,18169, 5262,18272,18154, 5262, 5262,18263, 18275,19614, 5262,18363,18282, 5262,19281, 5262,18275, 5262, 18340, 5262, 5262, 5262, 5281,18282,18286,18225,18169,18211, 18211,18211,18211,18211,18211,18211,18211,18211,18222,18222, 18222,18222,18222,18222,18222,18222,18222,18225,18286,18233, 18281,18286,18333,18319,18225,18319, 5281,18290,18281,18225, 18333,18334,18335, 5281,18353,18366,18367,18368,18286,18233, 18599,19601,18334,18366,18599,18371,18233,18367, 5281, 5281, 5281,18233, 5281,18371,18290, 5281, 5281,18319,19601,18335, 5281,18353,18599, 5281,18368, 5281,18351, 5281,18351, 5281, 5281, 5281, 5283,18236,18236,18236,18236,18236,18236,18236, 18236,18236,18237,18237,18237,18237,18237,18237,18237,18237, 18237,18238,18238,18238,18238,18238,18238,18238,18238,18238, 18351,18631,18341,18351, 5283,18631,19882,18341,18562,18373, 18285, 5283,18241,18372,18241,18241,18241,18241,18241,18241, 18241,18241,18241,18631,18372,18341, 5283,18285, 5283,18420, 5283,18413,18285, 5283, 5283,18241,18373,18420, 5283, 5283, 18562, 5283,18310, 5283,18310, 5283,18341, 5283, 5283, 5283, 5284,18242,18285,18242,18242,18242,18242,18242,18242,18242, 18242,18242,18243,18413,18243,18243,18243,18243,18243,18243, 18243,18243,18243,18287,18242,18342,18310,18288,18344,18293, 18293,18293, 5284,18613,18377,18243,18612,18288,18343, 5284, 18377,18613,18421,18342,18310,18287,18612,18400,18344,18645, 18400,18287,18377,18421, 5284,18413, 5284,18645, 5284,18288, 18344, 5284, 5284,18293,18342,18287, 5284,18320,18320, 5284, 18343, 5284,19886, 5284,18400, 5284, 5284, 5284, 5285,18288, 18387,18293,18294,18294,18294,18294,18294,18294,18294,18294, 18294,18295,18295,18295,18295,18295,18295,18295,18295,18295, 18343,18320,18311,18294,18296,18296,18296,18296,18296,18296, 5285,18387,18295,18620,18414,19359,19359, 5285,18390,18320, 18311,18294,18604,18620,18696,18296,18604,18640,18311,18387, 18295,19888, 5285,19889, 5285,18696, 5285,18640,18390, 5285, 5285,18311,18320,18296, 5285, 5285,18414, 5285,18604, 5285, 18390, 5285,18414, 5285, 5285, 5285, 5286,18297,18297,18297, 18297,18297,18297,18297,18297,18297,18298,18298,18298,18298, 18298,18298,18298,18298,18298,18401,18378,18825,18297,18415, 18299,18299,18299,18299,18299,18825,18375,18298, 5286,18422, 18339,18375,19500,18721,18410, 5286,18297,18641,18721,18401, 18721,18299,18302,18302,18302,18298,18415,18641,18378,18375, 5286,18383, 5286,19892, 5286,18401,18422, 5286, 5286,18299, 18410,18410, 5286,18302,18339, 5286,18378, 5286,18564, 5286, 5286, 5286, 5286, 5286, 5287,18301,18301,18301,18301,18301, 18301,18302,18339,18383, 5287, 5287, 5287, 5287, 5287, 5287, 5287, 5287, 5287, 5287,18385,18564,18301,18396,19500,18560, 18560,18383,18507,18557,19493,18339, 5287,18507,18396,18396, 18396,18396,18396, 5287,18301,18513,18303,18303,18303,18303, 18303,18303,18303,18303,18303,18507,18385,19198, 5287,18396, 5287,18560, 5287,18513,18557, 5287, 5287,18303,18354,18354, 5287,18384,18404, 5287,18385, 5287,19894, 5287,19517, 5287, 5287, 5287, 5288,19198,18513,18303,18321,18321,18321,18321, 18321,18321, 5288,18408,18322,18322,18322,18322,18322,18322, 18516,19493,18354,18322,18404,18384,18557,18321,18323,18323, 18323,18323,18323,18323, 5288,18322,18546,18549,18409,18722, 18354, 5288,18404,18384,18722,18321,18722,18408,18354,18323, 18498,18384,18498,18322,18516,18516, 5288,18549, 5288, 5288, 5288,18546,18546, 5288, 5288,18408,19517,18323, 5288,18549, 5288, 5288,18409, 5288,18546, 5288,18498, 5288, 5288, 5288, 5299,18643, 5299,18324,18324,18324,18643,18398,18408, 5299, 18409,18643, 5299,18498,18325,18325,18325,18325,18325,18325, 18325,18325,18325,19494,18324,18434,18329,18329,18329,18329, 18549,18434,18434,18409, 5299,18325,18559,18434,18440,18398, 19282, 5299,18324,18450,18440,18461,19895, 5299,18826,18450, 18440,18461,18329,18325,18561,18450, 5299,18461, 5299,18826, 5299,18398,19282, 5299, 5299,19901,18398,18559, 5299,18329, 18329, 5299,18329, 5299,18561, 5299,18559, 5299, 5299, 5299, 5300,18563, 5300,18345,19527,18406,18561,18406,19527, 5300, 19494,18801, 5300,18346,18345,18345,18345,18345,18345,18345, 18345,18345,18345,19903,18346,18346,18346,18346,18346,18346, 18472,18435,18442,18563, 5300,18345,18472,18435,18442,18406, 18830, 5300,18472,18435,18442,18346,18435,18442,18830,18356, 18356,18356,18356,18356,19571,18441, 5300,18406, 5300,18801, 5300,18441,18441, 5300, 5300,18801,18644,18441, 5300, 5300, 18356, 5300,18563, 5300,19571, 5300,18644, 5300, 5300, 5300, 5338, 5338, 5338, 5338, 5338, 5338, 5338, 5338,18356,19289, 5338, 5338, 5338,18355,18355,18355,18355,18355,18355,18355, 18355,18355,18600,18652,18617, 5338, 5338, 5338, 5338, 5338, 5338,19409,18617,18652,18355,19289, 5338,18447,18447,18447, 18447,18447,18447,18447,18447,18447,18600,18617,18617,18831, 18600,19904,18355,19409, 5338, 5338, 5338, 5338, 5341, 5341, 18831, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5341, 5343, 5343, 5343, 5343, 5343, 5343, 5343, 5343, 5343, 5343,18514,18616,18648,18616,18648,19910, 5343, 5343, 5343, 5343, 5343, 5343,18817,18616,18648,18451,18787,18391,18917, 18845,18834,18451,18451,18391,18391,18391,18391,18451,18834, 18917,18817,18845,18514, 5343, 5343, 5343, 5343, 5343, 5343, 5344, 5344, 5344, 5344, 5344, 5344, 5344, 5344, 5344, 5344, 18391,18514,18817,18677,18922, 5344, 5344, 5344, 5344, 5344, 5344, 5344,18787,19912,18677,18922,19913,18391,18550,18677, 18391,18448,18448,18448,18448,18448,18448,18448,18448,18448, 18550,18787,19923, 5344, 5344, 5344, 5344, 5344, 5344, 5347, 5347, 5347, 5347, 5347, 5347, 5347, 5347, 5347, 5347,18493, 18493,18493,18493,18493,18493, 5347, 5347, 5347, 5347, 5347, 5347,18449,18449,18449,18449,18449,18449,18449,18449,18449, 18493,18550,18821,19287,18827,19924,18360,18360,18360,18360, 18360,18360, 5347, 5347, 5347, 5347, 5347, 5347, 5348, 5348, 5348, 5348, 5348, 5348, 5348, 5348, 5348,18360,18602,18821, 18594,18827,18602, 5348, 5348, 5348, 5348, 5348, 5348, 5348, 18452,18462,19287,19947,18463,18360,18452,18462,18462,18916, 18463,18855,18452,18462,18594,18452,18463,18916,18594,18463, 18602, 5348, 5348, 5348, 5348, 5348, 5348, 5353, 5353, 5353, 5353, 5353, 5353, 5353, 5353, 5353, 5353,18594,18855,19177, 18862,18869,18594, 5353, 5353, 5353, 5353, 5353, 5353,18457, 18457,18457,18457,18457,18457,18457,18457,18457,18458,18458, 18458,18458,18458,18458,18458,18458,18458,18862,18869,19177, 5353, 5353, 5353, 5353, 5353, 5353, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5356, 5356,18500,18500,18500,18500, 18500,18500, 5356, 5356, 5356, 5356, 5356, 5356,18459,18459, 18459,18459,18459,18459,18459,18459,18459,18500,18627,19298, 19496,18606,18627,18361,18361,18361,18361,18361,18361, 5356, 5356, 5356, 5356, 5356, 5356, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357, 5357,18361,18606,18627,18743,18588,18606, 18588, 5357, 5357, 5357, 5357, 5357, 5357,18588,19298,19496, 18588,18847,18361,18468,18468,18468,18468,18468,18468,18468, 18468,18468,18606,18847,19454,19952,18847,18606, 5357, 5357, 5357, 5357, 5357, 5357, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5365, 5365,18743,18558,19454,18877,18888,18743, 5365, 5365, 5365, 5365, 5365, 5365,18469,18469,18469,18469, 18469,18469,18469,18469,18469,18470,18470,18470,18470,18470, 18470,18470,18470,18470,18877,18888,18558, 5365, 5365, 5365, 5365, 5365, 5365, 5366, 5366, 5366, 5366, 5366, 5366, 5366, 5366, 5366,18632,18492,18492,18492,18492,18492,18492, 5366, 5366, 5366, 5366, 5366, 5366,18473,18902,18474,18492,18558, 19358,18473,18473,18474,18492,18921,18632,18473,18918,18474, 18632,18601,18474,18921,19420,18601, 5366, 5366, 5366, 5366, 5366, 5366, 5371,18902, 5371, 5371, 5371, 5371, 5371, 5371, 5371, 5371, 5371, 5371,18601,18918,19358,18923,18928,18601, 5371, 5371, 5371, 5371, 5371, 5371,18479,18479,18479,18479, 18479,18479,18479,18479,18479,18480,18480,18480,18480,18480, 18480,18480,18480,18480,18923,18928,19420, 5371, 5371, 5371, 5371, 5371, 5371, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5378, 5378,18518,18699,19962,18933,19528,19528, 5378, 5378, 5378, 5378, 5378, 5378,18481,18481,18481,18481,18481, 18481,18481,18481,18481,18491,18491,18491,18491,18491,18491, 18491,18491,18491,18933,18517,18518, 5378, 5378, 5378, 5378, 5378, 5378, 5379, 5379, 5379, 5379, 5379, 5379, 5379, 5379, 5379,18519,18520,19966,19969,18699,19977,19982, 5379, 5379, 5379, 5379, 5379, 5379,18668,18518,18517,18666,18784,18517, 18518,18699,18520,18573,18573,18573,18573,18573,18573,18573, 18573,18573,19257,18519,18520, 5379, 5379, 5379, 5379, 5379, 5379, 5384, 5384, 5384, 5384, 5384, 5384, 5384, 5384, 5384, 5384,18517,18636,18573,18938,18927,18636, 5384, 5384, 5384, 5384, 5384, 5384,18519,19257,18784,18927,18668,18519,18520, 18784,18603,18668,18634,18666,18603,18520,18634,18636,18666, 19986,18938,18521,18523, 5384, 5384, 5384, 5384, 5384, 5384, 5388, 5388, 5388, 5388, 5388, 5388, 5388, 5388, 5388, 5388, 18531,19989,18521,18523,18603,18634, 5388, 5388, 5388, 5388, 5388, 5388,18673,18724,18521,18523,18932,18673,20015,18724, 18521,18635,18673,18523,18724,18635,18724,18932,18532,18532, 18532,18524,18531, 5388, 5388, 5388, 5388, 5388, 5388, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5392, 5392,18521, 18523,18524,18954,18741,18635, 5392, 5392, 5392, 5392, 5392, 5392,18741,18532,18524,19398,19364,19029,18531,18574,18574, 18574,18574,18574,18574,18574,18574,18574,18741,19029,18954, 18532,18538, 5392, 5392, 5392, 5392, 5392, 5392, 5393, 5393, 5393, 5393, 5393, 5393, 5393, 5393, 5393,18532,18524,19398, 19364,18937,19364,20045, 5393, 5393, 5393, 5393, 5393, 5393, 18800,18678,18937,18538,18575,18575,18575,18575,18575,18575, 18575,18575,18575,18810,18574,18810,18605,18533,18533,18533, 18605, 5393, 5393, 5393, 5393, 5393, 5393, 5398, 5398, 5398, 5398, 5398, 5398, 5398, 5398, 5398, 5398,18667,18538,18810, 20082,19575,18605, 5398, 5398, 5398, 5398, 5398, 5398,18605, 18667,18533,18674,18942,18800,18667,18810,18674,18678,19575, 18575,18667,18674,18678,18942,18800,18535,18535,18535,18533, 5398, 5398, 5398, 5398, 5398, 5398, 5402, 5402, 5402, 5402, 5402, 5402, 5402, 5402, 5402, 5402,18533,20135,18535,18959, 18649,18698, 5402, 5402, 5402, 5402, 5402, 5402,18649,18755, 18535,18576,18576,18576,18576,18576,18576,18576,18576,18576, 18974,18979,18984,18649,18649,18542,18959,18542,18535, 5402, 5402, 5402, 5402, 5402, 5402, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 5403, 5403,18535,20136,18974,18979,18984, 18682, 5403, 5403, 5403, 5403, 5403, 5403,18682,18698,18542, 18755,19438,18682,18710,18854,18755,19438,18576,18698,18854, 19009,18626,18710,18541,18543,18541,18543,18542, 5403, 5403, 5403, 5403, 5403, 5403, 5405, 5405, 5405, 5405, 5405, 5405, 5405, 5405, 5405, 5405,18542,18626,18854,19009,18742,18626, 5405, 5405, 5405, 5405, 5405, 5405,18742,18541,18543,18577, 18577,18577,18577,18577,18577,18577,18577,18577,18626,19030, 18710,19448,18742,18626,19356,18541,18543, 5405, 5405, 5405, 5405, 5405, 5405, 5410, 5410, 5410, 5410, 5410, 5410, 5410, 5410, 5410,18541,18543,19035,19448,19030,20178,18541, 5410, 5410, 5410, 5410, 5410, 5410,18544,18544,18544,18544,18544, 18544,18544,18544,18723,19258,19356,19068,18577,18723,18723, 18723,19035,18548,18548,18893,18544, 5410, 5410, 5410, 5410, 5410, 5410, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411, 5411,18548,19068,18893,18638,19258,18926, 5411, 5411, 5411, 5411, 5411, 5411,18548,18926,18893,18675,18720,20188, 19456,18357,18357,18357,18357,18357,18357,18728,18548,18638, 18357,18728,18728,18638,18728, 5411, 5411, 5411, 5411, 5411, 5411, 5416,18357, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416, 5416,18394,19456,18633,18638,20189, 5416,18633, 18357,18638,18675,18952,18394,18394,18394,18394,18394,18394, 18394,18394,18394,20270,18952,18675,19295,18679,18633,18720, 18675,18675,18679,18633,18720,18394,18720,18679,19295, 5416, 5417, 5417,18679, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5417, 5426, 5426,18894, 5426, 5426, 5426, 5426, 5426, 5426, 5426, 5426, 5426,18734, 5426, 5426,18547,18726, 18734,18804,18734,18958,18726,18894,18726, 5426, 5426, 5426, 5426, 5426, 5426, 5426,18958,18726,19609,18894,18547, 5426, 18526,18358,18358,18358,18358,18358,18358,18358,18358,18358, 18547,19316,19316,19316,18804,20372,19609, 5426, 5426, 5426, 5427, 5427,18358, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427,18526, 5427, 5427,18733,18733,18861,18796,18547, 18358,18733,18861,18733, 5427, 5427, 5427, 5427, 5427, 5427, 5427, 5427,19322,19322,19322,18804, 5427,18526,18359,18359, 18359,18359,18359,18359,18359,18359,18359,18526,19125,18861, 19328,19328,19328,19564, 5427, 5427, 5427, 5431, 5431,18359, 5431, 5431, 5431, 5431, 5431, 5431, 5431, 5431, 5431,18796, 5431, 5431,19629,18868,18796,19125,18637,18359,18868,18963, 18637, 5431, 5431, 5431, 5431, 5431, 5431, 5431,20149,19564, 18963,20149,19629, 5431,19299,18362,18362,18362,18362,18362, 18362,18597,18637,18762,18362,18868,19299,19450,18762,18637, 18762, 5431, 5431, 5431, 5432, 5432,18362, 5432, 5432, 5432, 5432, 5432, 5432, 5432, 5432, 5432,18597, 5432, 5432,18670, 18597,18876,18684,18670,18362,20213,18876,18973, 5432, 5432, 5432, 5432, 5432, 5432, 5432, 5432,18597,19450,18973,19297, 5432,19602,18379,18379,18379,18379,18379,18379,18379,18379, 18379,19297,18670,18876,19297,18597,20070,18670, 5432, 5432, 5432, 5433, 5433,18379, 5433, 5433, 5433, 5433, 5433, 5433, 5433, 5433, 5433,18684, 5433, 5433,18904,19602,18684,18684, 19301,18379,18978,18379,18684, 5433, 5433, 5433, 5433, 5433, 5433, 5433,19301,18978,20213,19301,18904, 5433,20070,18495, 18495,18495,18495,18495,18495,18495,18495,18495,18904,18812, 18812,18812,18812,18812,18812, 5433, 5433, 5433, 5434, 5434, 18495, 5434, 5434, 5434, 5434, 5434, 5434, 5434, 5434, 5434, 18812, 5434, 5434,18658,18658,18658,18658,18658,18658,18658, 18658,18658, 5434, 5434, 5434, 5434, 5434, 5434, 5434, 5434, 19334,19334,19334,19572, 5434,18983,18499,18499,18499,18499, 18499,18499,18499,18499,18499,18706,18983,19572,20407,19459, 19572,20012, 5434, 5434, 5434, 5435, 5435,18499, 5435, 5435, 5435, 5435, 5435, 5435, 5435, 5435, 5435,18658, 5435, 5435, 18580,18580,18580,18580,18580,18580,18580,18580,18580, 5435, 5435, 5435, 5435, 5435, 5435, 5435,20012,18735,18735,19263, 19459, 5435,18735,19267,18735,18534,18534,18534,18725,18706, 18592,18725,18393, 5435,18592,19442,18725,18706,18725, 5435, 5435, 5435,19442,18393,18393,18393,18393,18393,18393,18931, 18592,19263,18393,18706,18580,19267,18580,18931,18592,18534, 18730, 5435, 5439, 5439,18393, 5439, 5439, 5439, 5439, 5439, 5439, 5439, 5439, 5439,18592, 5439, 5439,18534,18763,19613, 20373,18534,18988,18763,18393,18763, 5439, 5439, 5439, 5439, 5439, 5439, 5439,18988,18534,20371,19479,19613, 5439,19008, 18502,18502,18502,18502,18502,18502,18629,18730,18775,18502, 19008,19137,18730,18775,18730,18775, 5439, 5439, 5439, 5440, 5440,18502, 5440, 5440, 5440, 5440, 5440, 5440, 5440, 5440, 5440,18629, 5440, 5440,18936,18629,19479,20373,19137,19610, 20371,18502,18936, 5440, 5440, 5440, 5440, 5440, 5440, 5440, 5440,18629,18702,19610,19451, 5440,19610,18536,18536,18536, 19027,18578,18578,18578,18578,18578,18578,18578,18578,18578, 18629,19027,19142, 5440, 5440, 5440, 5443, 5443,19451, 5443, 5443, 5443, 5443, 5443, 5443, 5443, 5443, 5443,18708, 5443, 5443,18536,18815,18815,18815,18815,18815,18708,18708,19142, 5443, 5443, 5443, 5443, 5443, 5443, 5443,18578,18702,18536, 18941,18729, 5443,18815,18539,18729,18539,18702,18941,18536, 18729,18945,18729,19181,18945,18702,18536,18536,18702,19627, 5443, 5443, 5443, 5444, 5444,19181, 5444, 5444, 5444, 5444, 5444, 5444, 5444, 5444, 5444,18708, 5444, 5444,18539,18764, 18708,18945,19147,19181,18764,18764,18764, 5444, 5444, 5444, 5444, 5444, 5444, 5444, 5444,19627,18539,20419,18671, 5444, 18948,18732,18540,18539,18540,18732,18671,18951,18948,19147, 18732,18671,18732,18539,18539,18951,18671, 5444, 5444, 5444, 5446, 5446,18671, 5446, 5446, 5446, 5446, 5446, 5446, 5446, 5446, 5446,18887, 5446, 5446,18957,18540,18887,18966,19483, 19034,18966,18540,18957, 5446, 5446, 5446, 5446, 5446, 5446, 5446,19034,18774,18774,18540,18719, 5446,18719,18774,18765, 18774,19483,18719,18540,18887,18765,18719,18719,18966,18719, 18765,18540,18765,18719, 5446, 5446, 5446, 5447, 5447,19270, 5447, 5447, 5447, 5447, 5447, 5447, 5447, 5447, 5447,19766, 5447, 5447,18689,18689,18689,18689,18689,18689,18689,18689, 18689, 5447, 5447, 5447, 5447, 5447, 5447, 5447, 5447,19446, 18761,19270,19766, 5447,19446,19039,18579,18579,18579,18579, 18579,18579,18579,18579,18579,18901,19039,19477,18782,19152, 18901, 5447, 5447, 5447, 5448, 5448,18782, 5448, 5448, 5448, 5448, 5448, 5448, 5448, 5448, 5448,18962, 5448, 5448,18593, 18689,19477,18782,18593,18962,19136,19152,18901, 5448, 5448, 5448, 5448, 5448, 5448, 5448,18579,19136,18672,19467,18593, 5448,18761,19440,19467,18846,18672,18761,18593,18761,18579, 18672,18846,19440,18395, 5448,18672,18846,19440, 5448, 5448, 5448,18672,20481,18593,18395,18395,18395,18395,18395,18395, 18395,18395,18395,18582,18582,18582,18582,18582,18582,18582, 18582,18582, 5448, 5449, 5449,18395, 5449, 5449, 5449, 5449, 5449, 5449, 5449, 5449, 5449,18766, 5449, 5449,18766,18767, 18803,18803,19235,18766,18767,18766,18767, 5449, 5449, 5449, 5449, 5449, 5449, 5449,19235,18767,19746,19746,19746, 5449, 19141,18582,18583,18583,18583,18583,18583,18583,18583,18583, 18583,19141,19235,19638,18803,20483,19638, 5449, 5449, 5449, 5450, 5450,19275, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450,18803, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450, 5450,18624,19638,18583,19275,18624, 5450,18581,18581,18581, 18581,18581,18581,18581,18581,18581,19471,19067,20280,19488, 19204,18624,19067,19471, 5450, 5450, 5450, 5452, 5452,18624, 5452, 5452, 5452, 5452, 5452, 5452, 5452, 5452, 5452,18769, 5452, 5452,19458,18769,18769,18624,18769,19204,19146,19067, 18581, 5452, 5452, 5452, 5452, 5452, 5452, 5452,18581,19146, 19488,20280,19204, 5452,19151,18584,18584,18584,18584,18584, 18584,18584,18584,18584,18581,19151,19458,19248,18783,19294, 20046, 5452, 5452, 5452, 5453, 5453,18783, 5453, 5453, 5453, 5453, 5453, 5453, 5453, 5453, 5453,18770, 5453, 5453,18625, 18770,19480,18783,18625,19248,18770,19294,18770, 5453, 5453, 5453, 5453, 5453, 5453, 5453, 5453,20046,18776,18776,18625, 5453,18584,18776,19396,18776,19480,19156,18625,18659,18659, 18659,18659,18659,18659,18659,18659,18659,19156, 5453, 5453, 5453, 5454, 5454,18625, 5454, 5454, 5454, 5454, 5454, 5454, 5454, 5454, 5454,19396, 5454, 5454,18660,18660,18660,18660, 18660,18660,18660,18660,18660, 5454, 5454, 5454, 5454, 5454, 5454, 5454,18773,19639,19475,18731,18773, 5454,18969,19475, 18660,18773,18731,18773,18659,18771,18969,18731,18402,18731, 18402, 5454,18972,19639,20484, 5454, 5454, 5454,20370,18731, 18972,18402,18402,18402,18402,18402,18402,18402,18402,18402, 18664,18664,18664,18664,18664,18664,18664,18664,18664, 5454, 5468, 5468,18402, 5468, 5468, 5468, 5468, 5468, 5468, 5468, 5468, 5468,18771, 5468, 5468,18977,19199,18771,19199,18771, 19166,19170,19229,18977, 5468, 5468, 5468, 5468, 5468, 5468, 5468,19166,19170,19229,20370,19247, 5468,18663,18663,18663, 18663,18663,18663,18663,18663,18663,19247,18664,18664,20486, 19199,18982,19272,20488, 5468, 5468, 5468, 5469, 5469,18982, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469,18987, 5469, 5469,18991,19400,18806,18806,19272,18987,18895,19293, 18991, 5469, 5469, 5469, 5469, 5469, 5469, 5469, 5469,18760, 19293,18760,19272, 5469,18998,20489,18760,18663,18895,19565, 18760,18760,18998,18760,18663,18895,19400,18760,18806,19565, 18895, 5469, 5469, 5469, 5483, 5483,19183, 5483, 5483, 5483, 5483, 5483, 5483, 5483, 5483, 5483,18806, 5483, 5483,18881, 18881,18881,18881,18881,18881,18881,18881,18881, 5483, 5483, 5483, 5483, 5483, 5483, 5483,19001,19007,19020,19183,18806, 5483,19225,20209,19001,19007,19020,18685,18685,18685,18685, 18685,18685,18685,18685,18685,19023,19183,20276, 5483, 5483, 5483, 5484, 5484,19023, 5484, 5484, 5484, 5484, 5484, 5484, 5484, 5484, 5484,19225, 5484, 5484,18892,18892,18892,18892, 18892,18892,18892,18892,18892, 5484, 5484, 5484, 5484, 5484, 5484, 5484, 5484,18685,18701,19033,19038, 5484,19641,19225, 20209,20276,19869,19033,19038,18701,18701,18701,18701,18701, 18701,18701,18701,18701,19869, 5484, 5484, 5484, 5504, 5504, 19641, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5504, 5505,18811,18811,18811,18811,18811,18811,18811,18811, 18811,19283, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505,20277,19069,18811,18906,18906,18906,18906,18906,18906, 18906,18906,18906,18687,18687,18687,18687,18687,18687,18687, 18687,18687,19069,19283,20277,18665,18665,18665,18665,18665, 18665,18665,18665,18665,19069, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5505, 5509, 5509,18687, 5509, 5509, 5509, 5509, 5509,18665,18687, 5509, 5509, 5509,18522,18896,18903,18665,19993,19124,19351, 19351,19351,20493,19124, 5509, 5509, 5509, 5509, 5509, 5509, 5509,19010,18665,18522,18896,18903, 5509,19562,19013,19993, 19351,19010,18903,19042,19049,18522,18896,18903,19013,18896, 19124,19042,19049,19010, 5509, 5509, 5509, 5509, 5510, 5510, 19013, 5510, 5510, 5510, 5510, 5510,19013,19052, 5510, 5510, 5510,19010,18522,19135,19262,19052,19485,19286,19013,18522, 18522,19135, 5510, 5510, 5510, 5510, 5510, 5510, 5510, 5510, 19214,19214,19214,18688, 5510,18688,18688,18688,18688,18688, 18688,18688,18688,18688,19562,19640,19262,19071,19077,19286, 19485,19214, 5510, 5510, 5510, 5510, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 5512, 5512,19262,19071,19077,19214, 19640,18772, 5512, 5512, 5512, 5512, 5512, 5512,18772,19071, 19077,18688,19071,18772,20495,18772,18907,18907,18907,18907, 18907,18907,18907,18907,18907,18772,19078,19080,19086, 5512, 5512, 5512, 5512, 5512, 5512, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513, 5513,19390,19078,19080,19086,19140, 19647, 5513, 5513, 5513, 5513, 5513, 5513,19140,19078,19080, 19086,19647,19080,19145,18813,18813,18813,18813,18813,18813, 19439,19145,19439,18813,19397,19439,19399,19390, 5513, 5513, 5513, 5513, 5513, 5513, 5515,18813,18814,18814,18814,18814, 18814,18814,18814,18814,18814, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515, 5515,18813,19397,18814,19399,19648, 20286, 5515, 5515, 5515, 5515, 5515, 5515,18908,18908,18908, 18908,18908,18908,18908,18908,18908,19088,19088,19088,19088, 19088,19088,19088,19088,19088,19552,19648,19554, 5515, 5515, 5515, 5515, 5515, 5515, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 5518, 5518,20286,20496,19417,20499,20041,19552, 5518, 5518, 5518, 5518, 5518, 5518,18953,18953,18953,18953, 18953,18953,18953,18953,18953,19150,19155,19159,19165,19417, 20041,19554,18953,19150,19155,19159,19165, 5518, 5518, 5518, 5518, 5518, 5518, 5520, 5520, 5520, 5520, 5520, 5520, 5520, 5520, 5520,19553,19417,19553,19554,19590,18953,19417, 5520, 5520, 5520, 5520, 5520, 5520,18997,18997,18997,18997,18997, 18997,18997,18997,18997,19169,19218,19553,19898,19898,19898, 19590,18997,19169,19091,19093,19099, 5520, 5520, 5520, 5520, 5520, 5520, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 5525, 5525,19070,19091,19093,19099,18997,19218, 5525, 5525, 5525, 5525, 5525, 5525,19016,19091,19093,19099,19173,19093, 19192,19201,19070,19201,19016,19218,19173,19558,19192,19070, 19353,19016,19353,19558,19070, 5525, 5525, 5525, 5525, 5525, 5525, 5527, 5527, 5527, 5527, 5527, 5527, 5527, 5527, 5527, 19201,19558,20501,20502,19016,19201,19353, 5527, 5527, 5527, 5527, 5527, 5527,18822,19089,19089,19089,19089,19089,19089, 19089,19089,19089,19353,18822,18822,18822,18822,18822,18822, 18822,18822,18822,19246, 5527, 5527, 5527, 5527, 5527, 5527, 5530,19246,19251,19195,19224,18822,19634,19224,19243,19195, 19251, 5530, 5530, 5530, 5530, 5530, 5530, 5530, 5530, 5530, 20042,19195,19224,19591,19634,19591,19243, 5530, 5530, 5530, 5530, 5530, 5530,19048,19048,19048,19048,19048,19048,19048, 19048,19048,19195,19224,19243,19634,20042,19591,20508,19048, 19269,19105,19107,19113, 5530, 5530, 5530, 5530, 5530, 5530, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 5531, 19076,19105,19107,19113,19048,19567, 5531, 5531, 5531, 5531, 5531, 5531,19269,19105,19107,19113,19292,19107,19180,19180, 19076,19180,19567,19654,19292,19567,19567,19076,19182,19182, 19182,19182,19076, 5531, 5531, 5531, 5531, 5531, 5531, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533, 5533,19079,19085, 19654,19653,19180,19269,19182, 5533, 5533, 5533, 5533, 5533, 5533,19498,19653,19231,19193,19231,19453,19193,19079,19085, 19180,19182,19182,20510,19182,19079,19085,19205,19205,19205, 19079,19085, 5533, 5533, 5533, 5533, 5533, 5533, 5536, 5536, 5536, 5536, 5536, 5536, 5536, 5536, 5536,19231,19193,19453, 19238,19884,19518,19231, 5536, 5536, 5536, 5536, 5536, 5536, 19518,19205,19238,19884,19498,18911,19193,18911,18911,18911, 18911,18911,18911,18911,18911,18911,19642,19686,19498,19205, 19238, 5536, 5536, 5536, 5536, 5536, 5536, 5537,18911, 5537, 5537, 5537, 5537, 5537, 5537, 5537, 5537, 5537, 5537,19402, 19642,19907,19907,19907,19686, 5537, 5537, 5537, 5537, 5537, 5537,19090,19090,19090,19090,19090,19090,19090,19090,19090, 19101,19101,19101,19101,19101,19101,19101,19101,19101,19271, 19402,19194, 5537, 5537, 5537, 5537, 5537, 5537, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 5540, 5540,19092,19194, 19992,20511,19444,19271, 5540, 5540, 5540, 5540, 5540, 5540, 19444,19469,19271,19402,19194,19444,19260,19222,19092,19222, 19194,19469,19994,19424,19992,19092,19469,19260,19260,19260, 19092, 5540, 5540, 5540, 5540, 5540, 5540, 5542, 5542, 5542, 5542, 5542, 5542, 5542, 5542, 5542,19098,19106,19260,19658, 19361,19222,19296, 5542, 5542, 5542, 5542, 5542, 5542,19296, 19658,19566,19994,19276,19296,19300,19098,19106,19361,19222, 19424,19566,19300,19098,19106,19424,19361,19300,19098,19106, 5542, 5542, 5542, 5542, 5542, 5542, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5545, 5545,19276,19285,19916,19916,19916, 20337,19276, 5545, 5545, 5545, 5545, 5545, 5545,19102,19102, 19102,19102,19102,19102,19102,19102,19102,19103,19103,19103, 19103,19103,19103,19103,19103,19103,19487,19393,19285, 5545, 5545, 5545, 5545, 5545, 5545, 5546, 5546, 5546, 5546, 5546, 5546, 5546, 5546, 5546, 5546,19112,20517,19393,20519,20337, 19556, 5546, 5546, 5546, 5546, 5546, 5546,19360,19336,19393, 19487,19337,19556,19406,19336,19112,19401,19337,19337,19285, 19336,19743,19112,19337,19556,19360,19401,19112, 5546, 5546, 5546, 5546, 5546, 5546, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 5549, 5549,19360,19406,19626,19401,19743,20520, 5549, 5549, 5549, 5549, 5549, 5549,19115,19115,19115,19115, 19115,19115,19115,19115,19115,19116,19116,19116,19116,19116, 19116,19116,19116,19116,20279,20145,19626, 5549, 5549, 5549, 5549, 5549, 5549, 5551, 5551, 5551, 5551, 5551, 5551, 5551, 5551, 5551,19468,19366,19468,20145,19600,19468,20279, 5551, 5551, 5551, 5551, 5551, 5551,19117,19117,19117,19117,19117, 19117,19117,19117,19117,19129,19129,19129,19129,19129,19129, 19129,19129,19129,19408,19365,19366, 5551, 5551, 5551, 5551, 5551, 5551, 5554, 5554, 5554, 5554, 5554, 5554, 5554, 5554, 5554,19349,19349,19349,19349,19349,19753,19362, 5554, 5554, 5554, 5554, 5554, 5554,19395,19408,19365,19753,20530,19482, 19366,19264,19349,19600,19365,19362,19395,19264,19382,19264, 19277,19279,20019,19279,19362, 5554, 5554, 5554, 5554, 5554, 5554, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555, 5555,19365,19482,19264,19382,19758,19395, 5555, 5555, 5555, 5555, 5555, 5555,19382,19277,19279,19758,20019,20531,18912, 19264,18912,18912,18912,18912,18912,18912,18912,18912,18912, 19264,20316,19277,19279, 5555, 5555, 5555, 5555, 5555, 5555, 5558, 5558,18912, 5558, 5558, 5558, 5558, 5558, 5558, 5558, 5558, 5558,19012, 5558, 5558, 5558, 5558, 5558, 5558, 5558, 5558,19373,19012,19546, 5558, 5558, 5558, 5558, 5558, 5558, 5558,19546,19760,20558,19012,20316, 5558,19012,19309,19309, 19309,19309,19309,19309,19309,19309,19309,19546,20563,20375, 19760,19754,19012,19373, 5558, 5558, 5558, 5560, 5560,19014, 5560, 5560, 5560, 5560, 5560, 5560, 5560, 5560, 5560,19014, 5560, 5560, 5560, 5560, 5560, 5560, 5560, 5560,19754,19014, 19569, 5560, 5560, 5560, 5560, 5560, 5560, 5560,19373,19762, 19569,19014,19762, 5560,18913,19577,18913,18913,18913,18913, 18913,18913,18913,18913,18913,19577,20375,19762,20573,19014, 20577, 5560, 5560, 5560, 5560, 5562, 5562,18913, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5562, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5569, 5569,19355,19355, 19355,19355,19355,19355, 5569, 5569, 5569, 5569, 5569, 5569, 19310,19310,19310,19310,19310,19310,19310,19310,19310,19355, 19404,20580,20365,19131,20146,19131,19131,19131,19131,19131, 19131, 5569, 5569, 5569, 5569, 5569, 5569, 5570, 5570, 5570, 5570, 5570, 5570, 5570, 5570, 5570,19131,19628,19628,19628, 20146,19404,19404, 5570, 5570, 5570, 5570, 5570, 5570,19311, 19311,19311,19311,19311,19311,19311,19311,19311,19628,20365, 19405,20278,20014,19383,19391,19187,19187,19187,19187,19187, 5570, 5570, 5570, 5570, 5570, 5570, 5575, 5575, 5575, 5575, 5575, 5575, 5575, 5575, 5575, 5575,19187,20278,19405,19391, 19383,19405, 5575, 5575, 5575, 5575, 5575, 5575,19383,19391, 19421,20014,19391,20099,19187,19317,19317,19317,19317,19317, 19317,19317,19317,19317,19211,19211,19211,19211,19211, 5575, 5575, 5575, 5575, 5575, 5575, 5579, 5579, 5579, 5579, 5579, 5579, 5579, 5579, 5579, 5579,19211,20589,19561,20594,20099, 20000, 5579, 5579, 5579, 5579, 5579, 5579,19421,19561,19445, 19280,19421,19421,19211,19445,19685,19421,19561,20000,19445, 19685,20090,19208,19208,19208,19208,19208,19208, 5579, 5579, 5579, 5579, 5579, 5579, 5585, 5585, 5585, 5585, 5585, 5585, 5585, 5585, 5585,19208,19280,19403,19603,19685,19426,19570, 5585, 5585, 5585, 5585, 5585, 5585,19603,19570,20598,20020, 20090,19208,19280,20408,19028,19028,19028,19028,19028,19028, 19028,19028,19028,19452,19280,19759,19403, 5585, 5585, 5585, 5585, 5585, 5585, 5590, 5590,19028, 5590, 5590, 5590, 5590, 5590, 5590, 5590, 5590, 5590,19426, 5590, 5590,19525,20020, 19426,19452,19759,19525,19011,19028,19452, 5590, 5590, 5590, 5590, 5590, 5590, 5590,19011,20275,19017,19403,20601, 5590, 20408,19011,20275,19223,19234,19234,19011,19017,19017,19017, 19017,19017,19017,19017,19017,19017,19525, 5590, 5590, 5590, 19226,19223,19608,19253,19011,19573,19407,19573,19017,19223, 19608,19226,19226,19226,19226,19226,19226,19573,19234, 5590, 5612, 5612,19223, 5612, 5612, 5612, 5612, 5612, 5612, 5612, 5612, 5612,19226, 5612, 5612,19407,19234,19253,19407,20007, 20635,19604,19607,19770, 5612, 5612, 5612, 5612, 5612, 5612, 5612,19604,19607,19234,19770,19253, 5612,20007,19130,19130, 19130,19130,19130,19130,19130,19130,19130,19481,19239,19239, 19239,19239,19253,19407, 5612, 5612, 5612, 5613, 5613,19130, 5613, 5613, 5613, 5613, 5613, 5613, 5613, 5613, 5613,19394, 5613, 5613,20013,20101,19239,19481,19771,19832,19374,19775, 19481, 5613, 5613, 5613, 5613, 5613, 5613, 5613, 5613,19394, 19775,19239,19239, 5613,19239,19184,19184,19184,19184,19184, 19184,19394,20013,19771,19184,19534,19776,19534,20101,19832, 19374, 5613, 5613, 5613, 5614, 5614,19184, 5614, 5614, 5614, 5614, 5614, 5614, 5614, 5614, 5614,19534, 5614, 5614,19392, 19374,19394,19534,19776,19184,19611,19184,19611, 5614, 5614, 5614, 5614, 5614, 5614, 5614,19374,20325,19611,20043,19392, 5614,19259,19185,19185,19185,19185,19185,19185,19185,19185, 19185,19392,19259,19259,19259,19259,19259,19259, 5614, 5614, 5614, 5615, 5615,19185, 5615, 5615, 5615, 5615, 5615, 5615, 5615, 5615, 5615,19259, 5615, 5615,19519,19392,20054,20043, 20325,19185,20636,19615,19519, 5615, 5615, 5615, 5615, 5615, 5615, 5615, 5615,19615,20093,20641,20054, 5615,19266,19186, 19186,19186,19186,19186,19186,19186,19186,19186,19781,19266, 19266,19266,19266,19266,19266, 5615, 5615, 5615, 5616, 5616, 19186, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 5616, 19266, 5616, 5616,20093,19763,19781,19519,19530,19186,19780, 19763,19519, 5616, 5616, 5616, 5616, 5616, 5616, 5616,19530, 19780,19530,19763,20651, 5616,19323,19323,19323,19323,19323, 19323,19323,19323,19323,19428,19423, 5616,19621,20406,20655, 19530,20405, 5616, 5616, 5616,19621,19206,19206,19206,19206, 19206,19206,19206,19206,19206,19329,19329,19329,19329,19329, 19329,19329,19329,19329, 5616, 5622, 5622,19206, 5622, 5622, 5622, 5622, 5622, 5622, 5622, 5622, 5622,19543, 5622, 5622, 19423,19428,19423,20406,19871,19206,19428,19423,19544, 5622, 5622, 5622, 5622, 5622, 5622, 5622,19871,20405,19428,19871, 20658, 5622,19544,19207,19207,19207,19207,19207,19207,19207, 19207,19207,19544,19536,20100,19536,19531,19543,19531, 5622, 5622, 5622, 5623, 5623,19207, 5623, 5623, 5623, 5623, 5623, 5623, 5623, 5623, 5623,19536, 5623, 5623,19531,19618,19622, 19618,19543,19207,19367,19422,20339, 5623, 5623, 5623, 5623, 5623, 5623, 5623, 5623,20339,20100,19636,20153, 5623,19618, 19209,19209,19209,19209,19209,19209,19209,19209,19209,19536, 20667,19531,19622,20672,19636,19367, 5623, 5623, 5623, 5626, 5626,19209, 5626, 5626, 5626, 5626, 5626, 5626, 5626, 5626, 5626,19422, 5626, 5626,19618,19636,19422,19742,20153,19209, 19422,19367,19742, 5626, 5626, 5626, 5626, 5626, 5626, 5626, 19367,20289,20290,19622,20676, 5626,19785,19210,19210,19210, 19210,19210,19210,19210,19210,19210,19537,19785,19786,19742, 19537,20289,19537, 5626, 5626, 5626, 5627, 5627,19210, 5627, 5627, 5627, 5627, 5627, 5627, 5627, 5627, 5627,19599, 5627, 5627,19537,20290,19999,20679,19786,19210,19932,19425,19599, 5627, 5627, 5627, 5627, 5627, 5627, 5627, 5627,19599,20319, 20684,19999, 5627,19999,19213,19213,19213,19213,19213,19213, 19335,19335,19335,19335,19335,19335,19335,19335,19335,19932, 5627, 5627, 5627, 5629, 5629,19213, 5629, 5629, 5629, 5629, 5629, 5629, 5629, 5629, 5629,19425, 5629, 5629,20053,20410, 19425,20018,20319,19213,19790,19425,19547, 5629, 5629, 5629, 5629, 5629, 5629, 5629,19547,19790,20053,20006,20053, 5629, 19801,19215,19215,19215,19215,19215,19215,19215,19215,19215, 19547,19801,19831,20018,19532,20006,19532, 5629, 5629, 5629, 5630, 5630,19215, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 5630,19581, 5630, 5630,19532,20410,20686,20006,19831, 19215,19805,19427,19816, 5630, 5630, 5630, 5630, 5630, 5630, 5630, 5630,19805,20688,19816,20689, 5630,19821,19236,19236, 19236,19236,19236,19236,19236,19236,19236,19533,19821,19532, 19592,19533,19581,19533, 5630, 5630, 5630, 5631, 5631,19236, 5631, 5631, 5631, 5631, 5631, 5631, 5631, 5631, 5631,19427, 5631, 5631,19533,19761,19427,20694,19581,19236,19761,19427, 19836, 5631, 5631, 5631, 5631, 5631, 5631, 5631,19227,20282, 19549,19836,19582, 5631,19592,19533,19761,19473,19549,19227, 19227,19227,19227,19227,19227,19473,19582, 5631,19227,19338, 19473, 5631, 5631, 5631,19549,19338,19582,19535,19592,19535, 19227,19338,20282,19841,19338,19343,19343,19343,19343,19343, 19343,19343,19343,19343,19841, 5631, 5632, 5632,19535, 5632, 5632, 5632, 5632, 5632, 5632, 5632, 5632, 5632,20086, 5632, 5632,19344,19344,19344,19344,19344,19344,19344,19344,19344, 5632, 5632, 5632, 5632, 5632, 5632, 5632,19605,20116,20116, 20116,19535, 5632,19345,19345,19345,19345,19345,19345,19345, 19345,19345,20086,20071,19605,20695,20701,19605,19605,20071, 5632, 5632, 5632, 5633, 5633,19764, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633,19368, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633, 5633,19545,19368,20702,19764,19545, 5633, 19846,19237,19237,19237,19237,19237,19237,19368,19499,19837, 20109,19846,19842,20711,19545,19764,20109, 5633, 5633, 5633, 5635, 5635,19237, 5635, 5635, 5635, 5635, 5635, 5635, 5635, 5635, 5635,19499, 5635, 5635,19646,19837,19687,19545,19842, 19237,19857,19368,19646, 5635, 5635, 5635, 5635, 5635, 5635, 5635,19583,19857,20712,20067,19583, 5635,19687,19240,19240, 19240,19240,19240,19240,19240,19240,19240,20722,19499,19687, 20287,19583,20067,19499, 5635, 5635, 5635, 5636, 5636,19240, 5636, 5636, 5636, 5636, 5636, 5636, 5636, 5636, 5636,19474, 5636, 5636,20057,20067,19474,19583,20287,19240,19861,19474, 19594, 5636, 5636, 5636, 5636, 5636, 5636, 5636, 5636,19861, 20057,20723,19594, 5636,19940,19241,19241,19241,19241,19241, 19241,19241,19241,19241,19594,19940,19941,20057,19997,19997, 19997, 5636, 5636, 5636, 5637, 5637,19241, 5637, 5637, 5637, 5637, 5637, 5637, 5637, 5637, 5637,19568, 5637, 5637,19997, 20150,19568,20148,19941,19241,19945,19568,19449, 5637, 5637, 5637, 5637, 5637, 5637, 5637,20733,19945,19997,20150,19557, 5637,19242,19242,19242,19242,19242,19242,19377,19377,19377, 19449,19596,19557,19261, 5637,20030,20148,19596, 5637, 5637, 5637,20150,19242,19557,19261,19261,19261,19261,19261,19261, 19261,19261,19261,20030,19449,19596,19946,20030,20328,19449, 19242,19377, 5637, 5641, 5641,19261, 5641, 5641, 5641, 5641, 5641, 5641, 5641, 5641, 5641,19606, 5641, 5641,20328,19377, 19606,20087,19951,19946,19950,19606,19377, 5641, 5641, 5641, 5641, 5641, 5641, 5641,19441,19950,19377,19377,19470, 5641, 19955,19441,19380,19380,19380,19470,19441, 5641,19441,19951, 19470,19955,19470,20087,19574,19956,20317, 5641, 5641, 5641, 5644, 5644,19574, 5644, 5644, 5644, 5644, 5644, 5644, 5644, 5644, 5644, 5644, 5644, 5644,19652,19380,19574,19574,20317, 19369,19371,19956,19652, 5644, 5644, 5644, 5644, 5644, 5644, 5644,19265,19961,20096,19380,19976, 5644,19478,19551, 5644, 19369,19371,19265,19265,19265,19265,19265,19265,19265,19265, 19265,19380,19369,19371, 5644, 5644, 5644, 5644,20112,19961, 19478,20151,19976,19265,20112,20096, 5644, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651, 5651,20151, 5651, 5651,19589,19551,19478,19635,20151,19369,19371,19478, 19635, 5651, 5651, 5651, 5651, 5651, 5651, 5651,19268,19370, 19538,20428,19551, 5651,19538,20734,19538,19551,19635,19268, 19268,19268,19268,19268,19268,19381,19381,19381,19268,19370, 19657, 5651, 5651, 5651,19661,19538,20428,19589,19657,19635, 19268,19370,19661, 5651, 5653, 5653, 5653, 5653, 5653, 5653, 5653, 5653, 5653, 5653, 5653, 5653,19589, 5653, 5653,19381, 19268,19589,19538,19370,19960,19981,19595,19538, 5653, 5653, 5653, 5653, 5653, 5653, 5653,19960,19370,19381,20364,19595, 5653,19347,19347,19347,19347,19347,19347,19347,19347,19347, 19595,20062,19981,19620,19381,20001,19620,20001, 5653, 5653, 5653,20364,19347,19620,19620, 5653, 5682, 5682,19695, 5682, 5682, 5682, 5682, 5682, 5682, 5682, 5682, 5682,20062, 5682, 5682,20001,19631,19631,19631,19631,19631,19631,19695,19584, 5682, 5682, 5682, 5682, 5682, 5682, 5682,19584,20001,20001, 19695,20069, 5682,19631,19348,19348,19348,19348,19348,19348, 19348,19348,19348,19584,20741,19968,20186,20743,19968,20069, 5682, 5682, 5682, 5683, 5683,19348, 5683, 5683, 5683, 5683, 5683, 5683, 5683, 5683, 5683,19416, 5683, 5683,20186,20044, 20069,20044,20744,19416,19416,19968,19585, 5683, 5683, 5683, 5683, 5683, 5683, 5683,19585,19372,19696,20321,19965, 5683, 19354,19354,19354,19354,19354,19354,19354,19354,19354,19965, 19585, 5683,19667,20044,19587,19372,19696, 5683, 5683, 5683, 19667,19354,19587,19376,19376,19670,20368,19372,19696,19988, 20321,19416,19988,19670,19555,20755,19416,19555,19587, 5683, 5684, 5684,19555, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684,19752, 5684, 5684,19372,19376,19688,19555,19988, 19752,19975,19372,19372, 5684, 5684, 5684, 5684, 5684, 5684, 5684, 5684,19975,20368,19376,19559, 5684,19688,19378,19378, 19378,19559,19757,19376,19688,19769,20094,20095,19559,19688, 19757,19376,20106,19769, 5684, 5684, 5684, 5689, 5689,19559, 5689, 5689, 5689, 5689, 5689, 5689, 5689, 5689, 5689,19704, 5689, 5689,19378,20206,19689,20813,20094,20095,19378,20106, 19612, 5689, 5689, 5689, 5689, 5689, 5689, 5689,19612,19704, 19378,19980,19443, 5689,19689,19384,19386,19384,19386,19378, 19443,19704,19980,19612,19612,19443,19689,19378,20206,19689, 19443, 5689, 5689, 5689, 5690, 5690,19443, 5690, 5690, 5690, 5690, 5690, 5690, 5690, 5690, 5690,19774, 5690, 5690,19384, 19386,19694,20844,20318,19774,19539,20187,19539, 5690, 5690, 5690, 5690, 5690, 5690, 5690, 5690,19619,19384,19386,19472, 5690,19694,19779,19388,19386,19388,19539,19472,19694,20318, 19779,20108,19472,19694,19384,19386,20187,19472, 5690, 5690, 5690, 5692, 5692,19472, 5692, 5692, 5692, 5692, 5692, 5692, 5692, 5692, 5692,19539, 5692, 5692,19593,19388,19539,19593, 20198,19985,20300,20108,19593, 5692, 5692, 5692, 5692, 5692, 5692, 5692,19985,19619,19784,19388,20061, 5692,19789,19387, 19593,19387,19784,19619,19388,19793,19789,20061,20415,19548, 20198,20326,19388,19793,19619, 5692, 5692, 5692, 5693, 5693, 19698, 5693, 5693, 5693, 5693, 5693, 5693, 5693, 5693, 5693, 19387, 5693, 5693,19387,20300,19624,19624,20326,20872,20105, 19698,20415, 5693, 5693, 5693, 5693, 5693, 5693, 5693, 5693, 20105,19387,19698,19548, 5693,19698,19548,19379,19379,19379, 19387,19548,19799,19804,19385,20415,19385,20926,19387,19624, 19799,19804, 5693, 5693, 5693, 5694, 5694,19548, 5694, 5694, 5694, 5694, 5694, 5694, 5694, 5694, 5694,19624, 5694, 5694, 19749,19379,19749,19749,19749,19749,19749,19749,19385, 5694, 5694, 5694, 5694, 5694, 5694, 5694,19808,19385,20400,19379, 19624, 5694, 5694,19749,19808,19389,19385,19389,19389,19389, 19389,19389,19389,19389,19389,19389,19379,19815,19820, 5694, 5694, 5694,19379,19385,19824,19815,19820,20864,19389, 5694, 5695, 5695,19824, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695,20440, 5695, 5695,20400, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695, 5695,19430,20111,19430,19835,19840, 5695,20864,20111,20440, 19430,20111,19835,19840,19430,19430,19430,19430,19430,19430, 19430,19430,19430,20118, 5695, 5695, 5695, 5696, 5696,20118, 5696, 5696, 5696, 5696, 5696, 5696, 5696, 5696, 5696,19697, 5696, 5696,19649,19649,19649,19649,19649,19649,19649,19649, 19845, 5696, 5696, 5696, 5696, 5696, 5696, 5696,19845,19697, 19637,19849,19649, 5696,19855,20417,19697,20273,19649,19849, 20084,19697,19855,19560,19598,19586,20083,20417,19637,20084, 20302, 5696, 5696, 5696, 5697, 5697,19637, 5697, 5697, 5697, 5697, 5697, 5697, 5697, 5697, 5697,19703, 5697, 5697,19637, 20083,20004,20273,20084,20928,21136,20083,21143, 5697, 5697, 5697, 5697, 5697, 5697, 5697,19709,19703,19560,19598,19586, 5697, 5697,19586,19703,19560,19598,19860,19586,19703,19560, 19598,20363,20302,20004,19860,19709,19864,19939, 5697, 5697, 5697,19560,19598,19586,19864,19939,20009,19709, 5697, 5699, 5699,20004, 5699, 5699, 5699, 5699, 5699, 5699, 5699, 5699, 5699, 5699, 5699, 5699,19706,19706,19706,19706,19706,19706, 19706,19706,19706, 5699, 5699, 5699, 5699, 5699, 5699, 5699, 20009,20110,20110,20363,20794, 5699,20354,20110,19630,19630, 19630,19630,19630,19630,19630,19630,19630,20354,20009,20138, 20138,20138,20794, 5699, 5699, 5699, 5699, 5703, 5703,19630, 5703, 5703, 5703, 5703, 5703, 5703, 5703, 5703, 5703,19711, 5703, 5703,19707,19707,19707,19707,19707,19707,19707,19707, 19707, 5703, 5703, 5703, 5703, 5703, 5703, 5703,19870,19711, 19883,19944,19597, 5703,21034,19870, 5703,19883,19597,19944, 19870,19711,19883,20122,19711,19597,20207,21160,20376,20122, 20367, 5703, 5703, 5703, 5708, 5708,19597, 5708, 5708, 5708, 5708, 5708, 5708, 5708, 5708, 5708,19710, 5708, 5708,19708, 19708,19708,19708,19708,19708,19708,19708,19708, 5708, 5708, 5708, 5708, 5708, 5708, 5708,20114,19710,19949,19954,19959, 5708,20114,21034,19710,20114,19949,19954,19959,19710,19719, 19719,19719,19719,19719,19719,19719,19719,19719, 5708, 5708, 5708,20338,20376,20367,20207,20207, 5708, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5715, 5717, 5717,19717, 5717, 5717, 5717, 5717, 5717, 5717, 5717, 5717, 5717,19964, 5717, 5717,19971,20140,19716,20147, 20338,19964,20022,19717,19971, 5717, 5717, 5717, 5717, 5717, 5717, 5717,21165,21175,20022,19717,21179, 5717,19716,19632, 19632,19632,19632,19632,19632,19716,19974,20126,19632,20140, 19716,20147,20022,20126,19974, 5717, 5717, 5717, 5724, 5724, 19632, 5724, 5724, 5724, 5724, 5724, 5724, 5724, 5724, 5724, 19979, 5724, 5724,19984,20445,20505,20505,20505,19979,19723, 19632,19984, 5724, 5724, 5724, 5724, 5724, 5724, 5724,19273, 19991,20130,20033,20037, 5724,19724,19725,20130,19991,19723, 20033,20445,19273,19273,19273,19273,19273,19273,19273,19273, 19273,19723, 5724, 5724, 5724,19724,19725,19995,19995, 5724, 5725,20185,19724,19273,20017,20037,20017,19724,19725,19273, 19643,19725, 5725, 5725, 5725, 5725, 5725, 5725, 5725, 5725, 5725,19643,19643,19643,19643,19643,19643,19643,19643,19643, 21182,19995,20152, 5725,21190,20060,20104,20185,20017,20120, 20037,20017,19643,20060,20104,20120,20113,20113,20120,19995, 20152, 5725,20113, 5725,20152, 5725, 5725, 5725, 5725, 5725, 5725, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 5726, 20281, 5726,19720,19720,19720,19720,19720,19720,19720,19720, 19720,19730, 5726,19721,19721,19721,19721,19721,19721,19721, 19721,19721,20315,19996,19996,19996,19996,19996,19996,20315, 5726,19730,20021,20021,20281,20021,20119,20119,19730,20123, 20123,20010,20119,19730,19996,20123, 5726, 5731, 5731,19731, 5731, 5731, 5731, 5731, 5731, 5731, 5731, 5731, 5731,20010, 5731, 5731,19996,20010,20127,20127,20021,19918,19926,19731, 20127, 5731, 5731, 5731, 5731, 5731, 5731, 5731,20293,20875, 20010,19731,20765, 5731,20021,20875,20293,19918,19926, 5731, 19733,19733,19733,19733,19733,19733,19733,19733,19733,19918, 19926, 5731, 5731, 5731, 5731, 5732, 5732,20765, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5732, 5733, 5733, 20024, 5733, 5733, 5733, 5733, 5733, 5733, 5733, 5733, 5733, 5733, 5733, 5733,19734,19734,19734,19734,19734,19734,19734, 19734,19734, 5733, 5733, 5733, 5733, 5733, 5733, 5733,20124, 20128,20450,20024,20801, 5733,20124,20128,21195,20124,20128, 5733,19735,19735,19735,19735,19735,19735,19735,19735,19735, 20024,20801, 5733, 5733, 5733, 5733, 5734, 5734,20450, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5734, 5735, 5735,21199, 5735, 5735, 5735, 5735, 5735, 5735, 5735, 5735, 5735,20181, 5735, 5735,19747,19747,19747,19747,19747,19747, 19747,19747,19747, 5735, 5735, 5735, 5735, 5735, 5735, 5735, 20028,20028,20028,20028,20028, 5735,20181,20348,19748,19748, 19748,19748,19748,19748,19748,19748,19748,20348,20348,20181, 20873,20028,20181, 5735, 5735, 5735, 5735, 5736, 5736,19748, 5736, 5736, 5736, 5736, 5736, 5736, 5736, 5736, 5736,20028, 5736, 5736,19899,19899,19899,19899,19899,19899,19899,19899, 19899, 5736, 5736, 5736, 5736, 5736, 5736, 5736,20292,21202, 20873,20292,21207, 5736,20040,19765,19765,19765,19765,19765, 19765,19765,19765,19765,20292,20040,20040,20040,20040,20040, 20040, 5736, 5736, 5736, 5737, 5737,19765, 5737, 5737, 5737, 5737, 5737, 5737, 5737, 5737, 5737,20040, 5737, 5737,19920, 20077,20341,20034,20284,19765,20034,19765,20066, 5737, 5737, 5737, 5737, 5737, 5737, 5737,21209,20051,20051,20051,19920, 5737,19908,19908,19908,19908,19908,19908,19908,19908,19908, 20284,19920,20077,19919,19920,20284,20034,20051, 5737, 5737, 5737,20066,19800,19800,19800,19800,19800,19800,19800,19800, 19800,20341,20077,19919,20034,20051,20341, 5737,19800,20066, 19919,20173, 5737, 5744, 5744,19919, 5744, 5744, 5744, 5744, 5744, 5744, 5744, 5744, 5744,20154, 5744, 5744,20131,20131, 20827,20097,20066,19800,20131,20055,20173, 5744, 5744, 5744, 5744, 5744, 5744, 5744,19925,21211,20173,20055,20827, 5744, 19917,19917,19917,19917,19917,19917,19917,19917,19917,20346, 20154, 5744,20346,20097,19925,20055,20154, 5744, 5744, 5744, 20346,19925,20433,21212,20476, 5744,19925,19928,19928,19928, 19928,19928,19928,19928,19928,19928,20476,20285,20320, 5744, 5745, 5745,20097, 5745, 5745, 5745, 5745, 5745, 5745, 5745, 5745, 5745,20433, 5745, 5745,19929,19929,19929,19929,19929, 19929,19929,19929,19929, 5745, 5745, 5745, 5745, 5745, 5745, 5745,20285,20320,20402,20184,20035, 5745,19930,19930,19930, 19930,19930,19930,19930,19930,19930,20184,20011, 5745,20023, 20023,20023,20023,20035, 5745, 5745, 5745,19856,19856,19856, 19856,19856,19856,19856,19856,19856,20311,20311,20035,20434, 20184,21217,20311,19856,20035,20023, 5745, 5746, 5746,20011, 5746, 5746, 5746, 5746, 5746, 5746, 5746, 5746, 5746, 5746, 5746, 5746,20023,20023,20324,20023,20402,20011,19856,20434, 20478, 5746, 5746, 5746, 5746, 5746, 5746, 5746,20132,20144, 20144,20144,20478, 5746,20132,20478, 5746,20132,20011,20117, 20117,20117,20117,20117,20117,20117,20117,20117,20324,20416, 20144, 5746, 5746, 5746, 5746, 5747, 5747,20416, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5747, 5749, 5749, 20760, 5749, 5749, 5749, 5749, 5749, 5749, 5749, 5749, 5749, 5749, 5749, 5749,20438,20081,20422,20183,20432,21218,20076, 20760,20438, 5749, 5749, 5749, 5749, 5749, 5749, 5749,20036, 20076,20076,20076,21224, 5749,20036,20183,19998,19998,19998, 19998,19998,19998,19998,19998,19998,20081,20036,20183,20432, 20422,20076, 5749, 5749, 5749, 5749, 5755, 5755,19998, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755, 5755,20036, 5755, 5755,20098,20183,20047,20047,20098,19998,20190,20203,20203, 5755, 5755, 5755, 5755, 5755, 5755, 5755,20081,20203,20925, 20190,21225, 5755,20212,20003,20003,20003,20003,20003,20003, 20196, 5755,20212,20098,20547,20399,20767,20047,20190,20098, 5755, 5755, 5755, 5756, 5756,20003, 5756, 5756, 5756, 5756, 5756, 5756, 5756, 5756, 5756,20047, 5756, 5756,20399,20925, 20374,20547,20196,20003,20157,20214,20214, 5756, 5756, 5756, 5756, 5756, 5756, 5756,20411,20214,20403,20767,20047, 5756, 20212,20002,20002,20002,20002,20002,20002,20002,20002,20002, 20164,20056,20056,20056,20056,20196,20157, 5756, 5756, 5756, 5758, 5758,20002, 5758, 5758, 5758, 5758, 5758, 5758, 5758, 5758, 5758,20374, 5758, 5758,20552,20068,20056,20174,20766, 20002,20068,20164,20403, 5758, 5758, 5758, 5758, 5758, 5758, 5758,20157,19933,20296,20056,20056, 5758,20056,20411,20068, 20174,20766,20552,19933,19933,19933,19933,19933,19933,19933, 19933,19933,20192,20174, 5758, 5758, 5758,20164,20768,20787, 20068, 5758, 5779, 5779,19933, 5779, 5779, 5779, 5779, 5779, 5779, 5779, 5779, 5779,20192, 5779, 5779,20193,20423,20855, 20296,20787,20074,20192,20768,20296, 5779, 5779, 5779, 5779, 5779, 5779, 5779,20074,20074,20074,20074,20074, 5779,20139, 20139,20139,20139,20139,20139,20139,20139,20139,20193,21234, 20358,20193,20358,20423,20074,20855, 5779, 5779, 5779, 5781, 5781,20358, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5781, 5782, 5782,20155, 5782, 5782, 5782, 5782, 5782, 5782, 5782, 5782, 5782, 5782, 5782, 5782,20398,20409,21151, 20091,20298,20274,20091,20155,20369, 5782, 5782, 5782, 5782, 5782, 5782, 5782,20810,19934,20323,20155,21151, 5782,20143, 20143,20143,20143,20143,20274,19934,19934,19934,19934,19934, 19934,19934,19934,19934,20091,20810, 5782, 5782, 5782, 5782, 20143,20274,20323,20353,20274, 5782,19934,20323,20298,20398, 20409,20155,20091,20298,20353,20353,20369,21235, 5782, 5802, 5802,20369, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5802, 5803, 5803,21245, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5803, 5805, 5805, 5805, 5805, 5805, 5805, 5805, 5805, 5805, 5805,20491,20211,20331,21246,20349, 20389, 5805, 5805, 5805, 5805, 5805, 5805,20491,20210,20349, 20349,20389,20331,20078,20435,20418,21256,20210,20210,20078, 20331,20078,20048,20048,20048,20048,20048,20048, 5805, 5805, 5805, 5805, 5805, 5805, 5812, 5812, 5812, 5812, 5812, 5812, 5812, 5812, 5812,20048,20165,20078,20435,20809,20418, 5812, 5812, 5812, 5812, 5812, 5812, 5812,20211,20215,20303,20215, 20215,20048,20078,20211,20092,20210,20215,20443,20215,20847, 20210,20809,20078,20288,20418,20443,20165, 5812, 5812, 5812, 5812, 5812, 5812, 5814, 5814, 5814, 5814, 5814, 5814, 5814, 5814, 5814, 5814,20847,20165,20350,20350,20288,20092, 5814, 5814, 5814, 5814, 5814, 5814,20303,20205,20350,20288,20303, 20303,20165,20350,21257,20303,20350,20092,20205,20205,20205, 20205,20205,20205,20205,20205,20205, 5814, 5814, 5814, 5814, 5814, 5814, 5835, 5835,20092, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5835, 5836, 5836,20191, 5836, 5836, 5836, 5836, 5836, 5836, 5836, 5836, 5836,20352, 5836, 5836, 20514,20514,20514,20088,20208,20557,20439,20352,20352, 5836, 5836, 5836, 5836, 5836, 5836, 5836,20283,20439,20191,21264, 20778, 5836,20295,21145,20005,20005,20005,20005,20005,20005, 20295,20295,20557,20005,20306,21145,20283,20088,20778, 5836, 5836, 5836, 5836, 5837, 5837,20005, 5837, 5837, 5837, 5837, 5837, 5837, 5837, 5837, 5837,20088, 5837, 5837,20208,20191, 20283,20778,20334,20005,20156,20005,20208, 5837, 5837, 5837, 5837, 5837, 5837, 5837,20351,20969,20088,20334,20295, 5837, 20783,20306,20208,20295,20351,20351,20306,20334,20327,20351, 20050,20050,20050,20050,20050,20050,20156, 5837, 5837, 5837, 5837, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841,20050,20327,20308,20969,20783,20388, 5841, 5841, 5841, 5841, 5841, 5841,20327,20156,20304,20345,20388,20388,20050, 20803,20156,20156,20220,20220,20220,20220,20220,20220,20220, 20220,20220,20322,20161, 5841, 5841, 5841, 5841, 5841, 5841, 5844, 5844, 5844, 5844, 5844, 5844, 5844, 5844, 5844, 5844, 20308,20860,20322,20161,20803,20308, 5844, 5844, 5844, 5844, 5844, 5844,20304,20345,20307,20161,20080,20304,20305,20220, 20309,20304,20803,20860,20345,20562,20322,20080,20080,20080, 20080,20080,20080, 5844, 5844, 5844, 5844, 5844, 5844, 5846, 5846, 5846, 5846, 5846, 5846, 5846, 5846, 5846,20080,20160, 20161,20355,20562,21266,20355, 5846, 5846, 5846, 5846, 5846, 5846,20307,20355,20305,20360,20305,20307,20309,20355,20160, 20305,20307,20309,20865,20360,20360,20989,20309, 5846,20162, 20182,20160, 5846, 5846, 5846, 5846, 5846, 5846, 5850, 5850, 5850, 5850, 5850, 5850, 5850, 5850, 5850, 5850,20166,20162, 20182,20347,20567,20380, 5850, 5850, 5850, 5850, 5850, 5850, 20356,20162,20182,20383,20865,20989,20160,20347,20356,20448, 20356,20356,20160,20383,20383,20166,20299,20448,20347,20567, 20166, 5850, 5850, 5850, 5850, 5850, 5850, 5852, 5852, 5852, 5852, 5852, 5852, 5852, 5852, 5852,20162,20182,20381,20299, 20380,20381,20166, 5852, 5852, 5852, 5852, 5852, 5852,20381, 21267,20380,21029,21283,20444,20166,20163,20025,20025,20025, 20025,20025,20025,20299,20194,20444,20025,20366,20299,20401, 5852, 5852, 5852, 5852, 5852, 5852, 5858, 5858,20025, 5858, 5858, 5858, 5858, 5858, 5858, 5858, 5858, 5858,20163, 5858, 5858,20089,20168,20168,20168,20194,20025,20382,20025,20453, 5858, 5858, 5858, 5858, 5858, 5858, 5858,20453,20340,20340, 20163,20310, 5858,20382,20366,20163,20401,21029, 5858,20366, 20089,20401,20788,20163,20382,20089,20168,20195,20194,20856, 5858, 5858, 5858, 5859, 5859, 5859, 5859, 5859, 5859, 5859, 5859, 5859, 5859,20089,20168,21339,20384,20572,20788, 5859, 5859, 5859, 5859, 5859, 5859,20340,20384,20384,20310,20195, 20340,20168,20856,20310,20089,20227,20227,20227,20227,20227, 20227,20227,20227,20227,20572,20310, 5859, 5859, 5859, 5859, 5859, 5859, 5862, 5862, 5862, 5862, 5862, 5862, 5862, 5862, 5862, 5862,20845,21355,20195,21356,20404,20845, 5862, 5862, 5862, 5862, 5862, 5862,20180,20180,20180,20180,20180,20180, 20180,20180,20026,20026,20026,20026,20026,20026,20026,20026, 20026,20523,20523,20523,20180, 5862, 5862, 5862, 5862, 5862, 5862, 5870, 5870,20026, 5870, 5870, 5870, 5870, 5870, 5870, 5870, 5870, 5870,20359, 5870, 5870,20924,20404,20359,20814, 20429,20026,20404,20429,20359, 5870, 5870, 5870, 5870, 5870, 5870, 5870,20387,19935,20747,20747,20747, 5870,20429,20314, 21147,20924,20387,20387,19935,19935,19935,19935,19935,19935, 19935,19935,19935,20814,20197, 5870, 5870, 5870, 5870,20429, 20835,20314, 5870, 5871, 5871,19935, 5871, 5871, 5871, 5871, 5871, 5871, 5871, 5871, 5871,20811, 5871, 5871,20314,21147, 20333,20314,20539,20430,20811,20386,20197, 5871, 5871, 5871, 5871, 5871, 5871, 5871,20457,20386,20386,20835,20940, 5871, 20386,20430,20457,20027,20027,20027,20027,20027,20027,20027, 20027,20027,20333,20197,20539,20391,20430, 5871, 5871, 5871, 5871,20197,20430,20391,20027,20391,20391,20333, 5871, 5881, 5881,20940, 5881, 5881, 5881, 5881, 5881,21153,20333, 5881, 5881, 5881,20027,20142,20142,20142,20142,20142,20142,20142, 20142,20142,21358, 5881, 5881, 5881, 5881, 5881, 5881, 5881, 20393,20394,20393,20038,20142, 5881,20394,20876,20876,20588, 21153,20393,20394,20876,20038,20038,20038,20038,20038,20038, 20038,20038,20038, 5881, 5881, 5881, 5881, 5882, 5882,20039, 5882, 5882, 5882, 5882, 5882,20038,20588, 5882, 5882, 5882, 20039,20039,20039,20039,20039,20039,20039,20039,20039,20362, 21359, 5882, 5882, 5882, 5882, 5882, 5882, 5882, 5882,20762, 20774,20039,20762, 5882,20362,20223,20223,20223,20223,20223, 20223,20223,20223,20223,20846,20175,20159,20175,20774,20762, 20774, 5882, 5882, 5882, 5882, 5884, 5884, 5884, 5884, 5884, 5884, 5884, 5884, 5884, 5884,20362,20159,21365,20846,20463, 20846, 5884, 5884, 5884, 5884, 5884, 5884,20463,20159,20175, 20175,20223,20362,20395,20159,20362,20049,20049,20049,20049, 20049,20049,21366,20395,20395,20049,21073,20175, 5884, 5884, 5884, 5884, 5884, 5884, 5885,20159,20927,20049,20158,20579, 21371,20927,20579,20159,20175, 5885, 5885, 5885, 5885, 5885, 5885, 5885, 5885, 5885, 5885,20049,20449,20454,20158,20593, 20610, 5885, 5885, 5885, 5885, 5885, 5885,20449,20454,20579, 20158,20221,20221,20221,20221,20221,20221,20221,20221,20221, 20221,20849,21372,21073,21073,21070,20593,20610, 5885, 5885, 5885, 5885, 5885, 5885, 5890,20158, 5890, 5890, 5890, 5890, 5890, 5890, 5890, 5890, 5890,20158,20158,20849,20390,20464, 20468,20390, 5890, 5890, 5890, 5890, 5890, 5890,20221,20390, 20464,20468,21377,20221,20685,20390,21378,20234,20234,20234, 20234,20234,20234,20234,20234,20234,21070,20525,20527, 5890, 5890, 5890, 5890, 5890, 5890, 5894, 5894, 5894, 5894, 5894, 5894, 5894, 5894, 5894, 5894,20782,20685,20525,20527,20467, 20471, 5894, 5894, 5894, 5894, 5894, 5894,20467,20471,20525, 20527,20784,21383,20527,21384,20052,20052,20052,20052,20052, 20052,20052,20052,20052,20234,20234,21038,20782, 5894, 5894, 5894, 5894, 5894, 5894, 5915, 5915,20052, 5915, 5915, 5915, 5915, 5915,20618,20784, 5915, 5915, 5915,20425,20425,20425, 20425,20425,20929,20533,20052,20385,20385,20929, 5915, 5915, 5915, 5915, 5915, 5915, 5915,20072,20545,20385,20425,20618, 5915,21392,20385,20533,20545,20385,20072,20072,20072,20072, 20072,20072,20072,20072,20072,20533,20477,20490, 5915, 5915, 5915, 5915,20546,20477,20490,21038,20550,20072,20477,20490, 21393,20640,20645,20546,20550, 5915, 5916, 5916,20073, 5916, 5916, 5916, 5916, 5916,20414,20932, 5916, 5916, 5916,20073, 20073,20073,20073,20073,20073,20073,20073,20073,20640,20645, 5916, 5916, 5916, 5916, 5916, 5916, 5916, 5916,20079,20526, 20073,20650, 5916,21651,21405,20666,20932,20551,20972,20079, 20079,20079,20079,20079,20079,20079,20079,20079,20551,20526, 5916, 5916, 5916, 5916,20414,20431,20526,20555,20650,20414, 20079,20526,20666,20431,21405,20555,20414, 5916, 5918, 5918, 5918, 5918, 5918, 5918, 5918, 5918, 5918, 5918,20600,21665, 20657,20600,20556,20657, 5918, 5918, 5918, 5918, 5918, 5918, 20171,20171,20171,20556,20431,20560,20561,20141,20141,20141, 20141,20141,20141,20560,20972,20853,20141,20561,20600,20566, 20657, 5918, 5918, 5918, 5918, 5918, 5918, 5919,20141,20565, 20566,20171,20837,20532,20171,21724,20671,20565, 5919, 5919, 5919, 5919, 5919, 5919, 5919, 5919, 5919, 5919,20141,20853, 21741,20571,20171,20532, 5919, 5919, 5919, 5919, 5919, 5919, 20532,20171,20571,20671,20837,20532,20857,20853,20576,20171, 20252,20252,20252,20252,20252,20252,20252,20252,20252,20576, 20570, 5919, 5919, 5919, 5919, 5919, 5919, 5924,20570, 5924, 5924, 5924, 5924, 5924, 5924, 5924, 5924, 5924,20857,20427, 20427,20427,20427,20427,20427, 5924, 5924, 5924, 5924, 5924, 5924,20233,20233,20233,20233,20233,20233,20233,20233,20233, 20427,20754,20235,20235,20235,20235,20235,20235,20235,20235, 20235,20861, 5924, 5924, 5924, 5924, 5924, 5924, 5928, 5928, 5928, 5928, 5928, 5928, 5928, 5928, 5928, 5928,20754,21417, 20678,20586,20575,20678, 5928, 5928, 5928, 5928, 5928, 5928, 20575,20397,20586,20861,20582,20235,20585,20591,20170,20170, 20170,20233,20582,20235,20585,20591,20397,21417,20233,20759, 20678, 5928, 5928, 5928, 5928, 5928, 5928, 5954, 5954,20235, 5954, 5954, 5954, 5954, 5954, 5954, 5954, 5954, 5954,20592, 5954, 5954,20170,21757,20421,20421,20759,20397,20597,20836, 20592, 5954, 5954, 5954, 5954, 5954, 5954, 5954,20836,20597, 20170,20596,20357, 5954,20397,20357,20170,20397,20863,20596, 20357,20603,20608,20169,20169,20169,20357,20170,20421,20603, 20608, 5954, 5954, 5954, 5963, 5963,20357, 5963, 5963, 5963, 5963, 5963, 5963, 5963, 5963, 5963,20421, 5963, 5963,20992, 20421,20886,20863,20172,20172,20172,20609,20169, 5963, 5963, 5963, 5963, 5963, 5963, 5963,20085,20169,20609,20786,20176, 5963,20176,20177,20886,20177,20169,20420,20420,20085,20085, 20085,20085,20085,20085,20085,20085,20085,20172, 5963, 5963, 5963, 5967,20169,20392,20616,20786,20392,21758,20617,20085, 20622,20392,20616,20176,20621,20172,20177,20392,20085,20617, 20420,20622,20621,21472,20172,20992,21472,20392,20625,20638, 20639,20176,20172, 5967,20177,20643,20625,20638,20420,20644, 5967,20639,20176,20643,20648,20649,20420,20654,20176,20177, 20644,20177,20648,20653,21760, 5967,20649, 5967,20654, 5967, 20660,20653, 5967, 5967,20664,20663,21071, 5967,20660,21761, 5967,21152, 5967,20663, 5967,20664, 5967, 5967, 5967, 5968, 20240,20240,20240,20240,20240,20240,20240,20240,20240,20670, 5968, 5968, 5968, 5968, 5968, 5968, 5968, 5968, 5968,20179, 20670,20179,20179,20179,20179,20179,20179,20179,20179,20179, 21152, 5968,20669,20674,20798,21464,21464,21071, 5968,20690, 20669,20674,20179,20232,20232,20232,20232,20232,20232,20232, 20232,20232,20675, 5968,20681, 5968,20752, 5968,20240,20690, 5968, 5968,20681,20675,20752, 5968,20798,20232, 5968,20753, 5968,20690, 5968,20757, 5968, 5968, 5968, 5970,20913, 5970, 20753,20757,20858,21637,20798,21637, 5970,20236,20236,20236, 20236,20236,20236,20236,20236,20236,20692,20238,20238,20238, 20238,20238,20238,20238,20238,20238,21767,20868,20913,20858, 20697, 5970,20691,20913,20858,20868,20692,20239, 5970,20239, 20239,20239,20239,20239,20239,20239,20239,20239,20692,20699, 20697,20692,20691, 5970,20236, 5970,20758, 5970,20761,20691, 5970, 5970,20697,20761,20691, 5970,20238,20758, 5970,20699, 5970,20869, 5970,20238, 5970, 5970, 5970, 5971,21406, 5971, 20764,20699,20869,20761,20699,20239, 5971,20698,20245,20245, 20245,20245,20245,20245,20245,20245,20245,20246,20246,20246, 20246,20246,20246,20246,20246,20246,20246,20698,20885,20870, 20812, 5971,20764,20785,20698,20785,20812,21406, 5971,20698, 21072,21768,20248,20248,20248,20248,20248,20248,20248,20248, 20248,21072,20764, 5971,20245, 5971,20870, 5971,21773,20812, 5971, 5971,20885,21774,20246, 5971, 5971,20785, 5971,20246, 5971, 5971, 5971,20785, 5971, 5971, 5971, 5993, 5993, 5993, 5993, 5993, 5993, 5993, 5993, 5993, 5993, 5993,20248,20257, 20257,20257,20257,20257,20257,20257,20257,20257,20258,20258, 20258,20258,20258,20258,20258,20258,20258,20707,20789,20789, 21779,20800,21158,20257,20259,20259,20259,20259,20259,20259, 20259,20259,20259,21158,20954, 5993,20954,20707,21030,20800, 5993, 5997, 5997,20954,20708,20718,20729,20807,21154,20707, 5997, 5997,20789,20260,20260,20260,20260,20260,20260,20260, 20260,20260,20800,20923,20708,20718,20729,20807,20258,20842, 20789,20708,21154, 5997,20709,20258,20708,20718,20729,20807, 5997,20259,20259,20261,20261,20261,20261,20261,20261,20261, 20261,20261,20887,20720,20709, 5997,20260, 5997,20923, 5997, 20888,20842, 5997, 5997,20260,21030,20709, 5997,20888,20709, 5997,21500, 5997,20720, 5997,20974, 5997, 5997, 5997, 5998, 20260,20842,20892,20974,20887,20720,21159,21780,20720, 5998, 20261,21500,21785,20263,20263,20263,20263,20263,20263,20263, 20263,20263,20265,20265,20265,20265,20265,20265,20265,20265, 20265, 5998,20719,21159,20892,20806,20793,20264, 5998,20264, 20264,20264,20264,20264,20264,20264,20264,20264,20297,20828, 20862,20730,20719, 5998,20793, 5998,20793, 5998,20935,20719, 5998, 5998,20263,20297,20719, 5998,20731,20806, 5998,20263, 5998,20730, 5998,20763, 5998, 5998, 5998, 5999,20730,20763, 20265,20828,20862,20730,21036,20264,20731, 5999,20950,21786, 20935,20862,20826,20763,20297,20297,20994,20781,20731,20828, 20297,20731, 5999,20781,20994,20843,21498,20950,20806, 5999, 20826,20297,20826,20937,20297,20781, 5999,20336,20336,20336, 20336,20336,20336,20336,20336,20336,20771,20771,20771,20771, 20771, 5999,21498, 5999,21794, 5999,20781,20843, 5999, 5999, 20937,21008,20950, 5999,21036,20937, 5999,20771, 5999,21008, 5999,21036, 5999, 5999, 5999, 6002,20938, 6002,21008,20973, 20815,20815,20815,20843, 6002,20771,20775, 6002,20775,20424, 20424,20424,20424,20424,20424,20424,20424,20424,20426,20426, 20426,20426,20426,20426,20426,20426,20426,20914,20938, 6002, 20424,20832,20775,20832,20815,20795, 6002,20795,20931,20426, 20506,20506,20506,20506,20506,20506,20506,20506,20506,20775, 20775, 6002,20815, 6002, 6002, 6002,21489,20914, 6002, 6002, 20931,20795,20914, 6002,20938,20832, 6002,20973, 6002,20931, 6002,21795, 6002, 6002, 6002, 6003,21475, 6003,20795,20795, 21031,21141,20859,20832, 6003,21475,21489, 6003,20515,20515, 20515,20515,20515,20515,20515,20515,20515,20524,20524,20524, 20524,20524,20524,20524,20524,20524,20773,20773,20773, 6003, 20930,20930,20921,21141,20859,21031, 6003,20535,20535,20535, 20535,20535,20535,20535,20535,20535,21163,20773,20791,20791, 20791, 6003,20921, 6003, 6003, 6003,21892,21163, 6003, 6003, 21168,21893,20930, 6003,20921,20773, 6003,20859, 6003,20791, 6003,21168, 6003, 6003, 6003, 6046, 6046,20536,20536,20536, 20536,20536,20536,20536,20536,20536,20921,20791, 6046, 6046, 6046, 6046, 6046, 6046, 6046, 6046, 6046,20537,20537,20537, 20537,20537,20537,20537,20537,20537,20890,20891,21150, 6046, 20587,20587,20587,20587,20587,20587,20587,20587,20587,20934, 21150,21270,21270,21270,20890,20891,20587, 6046, 6050, 6050, 20540, 6050, 6050, 6050, 6050, 6050,20890,20891, 6050, 6050, 6050,20540,20540,20540,20540,20540,20540,20540,20540,20540, 20934,20587, 6050, 6050, 6050, 6050, 6050, 6050, 6050,21150, 21600,21600,20540,20749, 6050,20704,20704,20704,20704,20704, 20704,20704,20704,20704,20749,20749,20749,20749,20749,20749, 20934,21164, 6050, 6050, 6050, 6050, 6051, 6051,20541, 6051, 6051, 6051, 6051, 6051,21169,20749, 6051, 6051, 6051,20541, 20541,20541,20541,20541,20541,20541,20541,20541,21164,20993, 6051, 6051, 6051, 6051, 6051, 6051, 6051, 6051,21684,21504, 20541,21169, 6051,20705,20705,20705,20705,20705,20705,20705, 20705,20705,20951,21368,21368,21368,20804,20780,20951,21916, 6051, 6051, 6051, 6051, 6053, 6053, 6053, 6053, 6053, 6053, 6053, 6053, 6053, 6053,20804,20780,21504,20951,20804,20947, 6053, 6053, 6053, 6053, 6053, 6053,20631,20631,20631,20631, 20631,20631,20631,20631,20631,20804,20780,20993,20947,21140, 21140,21174,20631,20780,20947,21684,21032, 6053, 6053, 6053, 6053, 6053, 6053, 6054, 6054, 6054, 6054, 6054, 6054, 6054, 6054, 6054, 6054,20889,21140,21653,21653,20631,21174, 6054, 6054, 6054, 6054, 6054, 6054,20665,20665,20665,20665,20665, 20665,20665,20665,20665,20877,21189,21006,21374,21374,21374, 20877,20665,21006,20877,21006,20889, 6054, 6054, 6054, 6054, 6054, 6054, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6056, 6056,21189,20889,21032,21032,20665, 6056, 6056, 6056, 6056, 6056, 6056, 6056,20706,20706,20706,20706,20706,20706, 20706,20706,20706,20714,20714,20714,20714,20714,20714,20714, 20714,20714,21380,21380,21380, 6056, 6056, 6056, 6056, 6056, 6056, 6059, 6059, 6059, 6059, 6059, 6059, 6059, 6059, 6059, 6059,21083,21114,21543,21194,21939,21543, 6059, 6059, 6059, 6059, 6059, 6059,20715,20715,20715,20715,20715,20715,20715, 20715,20715,20716,20716,20716,20716,20716,20716,20716,20716, 20716,21194,21083,21114, 6059, 6059, 6059, 6059, 6059, 6059, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 6061, 6061,21083, 21114,21087,21083,21114,22006,21505, 6061, 6061, 6061, 6061, 6061, 6061,20725,20725,20725,20725,20725,20725,20725,20725, 20725,20726,20726,20726,20726,20726,20726,20726,20726,20726, 21505,21087,21087, 6061, 6061, 6061, 6061, 6061, 6061, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6066, 6066,21087, 21092,21544,21087,21277,21544, 6066, 6066, 6066, 6066, 6066, 6066,20727,20727,20727,20727,20727,20727,20727,20727,20727, 20736,20736,20736,20736,20736,20736,20736,20736,20736,22082, 21277,21092, 6066, 6066, 6066, 6066, 6066, 6066, 6068, 6068, 6068, 6068, 6068, 6068, 6068, 6068, 6068,20805,21092,21092, 21181,21092,21553,21181, 6068, 6068, 6068, 6068, 6068, 6068, 20737,20737,20737,20737,20737,20737,20737,20737,20737,20738, 20738,20738,20738,20738,20738,20738,20738,20738,21553,20805, 21181, 6068, 6068, 6068, 6068, 6068, 6068, 6071, 6071, 6071, 6071, 6071, 6071, 6071, 6071, 6071,21004,20805,21648,20971, 20991,21648, 6071, 6071, 6071, 6071, 6071, 6071, 6071,20748, 20748,20748,20748,20748,20748,20748,20748,20748,20805,20808, 20879,21004,20879,20971,20991,20808,20808,20808,20808,21004, 6071, 6071, 6071, 6071, 6071, 6071, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072, 6072,20879,21386,21386,21386, 20975,20808, 6072, 6072, 6072, 6072, 6072, 6072,20975,20971, 20991,21010,21018,20879,20971,20991,21721,21721,20808,21010, 21018,20808,21010,20777,20777,20777,20777,20777,20777, 6072, 6072, 6072, 6072, 6072, 6072, 6074, 6074, 6074, 6074, 6074, 6074, 6074, 6074, 6074,20777,20881,20881,20881,20881,20881, 20881, 6074, 6074, 6074, 6074, 6074, 6074,21003,21351,21003, 20975,21007,20777,21007,21294,20975,20881,21003,21003,21007, 21351,21294,20790,20790,20790,20790,20790,20790, 6074, 6074, 6074, 6074, 6074, 6074, 6077, 6077, 6077, 6077, 6077, 6077, 6077, 6077, 6077,20790,21294,20821,20821,20821,20821,20821, 6077, 6077, 6077, 6077, 6077, 6077,20995,21011,21173,21178, 21011,20790,21012,21014,20995,21012,20821,21012,21011,21173, 21178,21014,21014,21012,20824,20824,20824, 6077, 6077, 6077, 6077, 6077, 6077, 6078,20821, 6078, 6078, 6078, 6078, 6078, 6078, 6078, 6078, 6078, 6078,20824,20884,20884,20884,20884, 20884, 6078, 6078, 6078, 6078, 6078, 6078,20834,21188,22084, 20834,20922,21420,20824,21046,21208,20995,20884,20933,21188, 21046,20995,21046,20922,20920,20834,20893,20894, 6078, 6078, 6078, 6078, 6078, 6078, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 6081, 6081,20920,20922,20834,21208,21420,20933, 6081, 6081, 6081, 6081, 6081, 6081,20920,20933,20893,20894, 20962,20962,20962,20962,20962,20962,20962,20962,20962,21282, 21404,20797,20797,20797,20797,20797,20797, 6081, 6081, 6081, 6081, 6081, 6081, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083, 6083,20797,20893,20894,20949,21282,20920,21002, 6083, 6083, 6083, 6083, 6083, 6083,21016,21002,21047,21937,21047, 20797,21404,21421,21016,20949,21047,21002,20962,20962,21016, 20818,20818,20818,20818,20818,20818, 6083, 6083, 6083, 6083, 6083, 6083, 6086, 6086, 6086, 6086, 6086, 6086, 6086, 6086, 6086,20818,20895,21287,21937,20948,21421,20949, 6086, 6086, 6086, 6086, 6086, 6086,21017,20948,21025,21025,21021,20818, 20841,21021,21017,21017,20948,22103,21025,21021,21422,21021, 21287,20841,20841,20841,20895, 6086, 6086, 6086, 6086, 6086, 6086, 6087, 6087, 6087, 6087, 6087, 6087, 6087, 6087, 6087, 6087,20948,20841,21577,21193,21037,20948, 6087, 6087, 6087, 6087, 6087, 6087,21020,21037,21193,21480,21422,20840,20895, 20964,20964,20964,20964,20964,20964,20964,20964,20964,20840, 20840,20840,20840,20840, 6087, 6087, 6087, 6087, 6087, 6087, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 6090, 20840,21577,21983,21039,21039,21480, 6090, 6090, 6090, 6090, 6090, 6090,21037,21039,21049,21020,21020,20964,20939,22105, 21542,21020,21049,21020,21416,21049,21983,20823,20823,20823, 20823,20823,20823, 6090, 6090, 6090, 6090, 6090, 6090, 6092, 6092, 6092, 6092, 6092, 6092, 6092, 6092, 6092,20823,20896, 20939,21043,21198,21043,21542, 6092, 6092, 6092, 6092, 6092, 6092,21043,21043,21198,21416,20850,20823,20968,20968,20968, 20968,20968,20968,20968,20968,20968,20852,21647,20854,21647, 20939,20896, 6092, 6092, 6092, 6092, 6092, 6092, 6095, 6095, 6095, 6095, 6095, 6095, 6095, 6095, 6095,20850,21996,21499, 21499,21499,21495,20850, 6095, 6095, 6095, 6095, 6095, 6095, 20852,21042,20854,20852,21495,20850,20896,20896,21053,21042, 21499,21201,20896,21996,21201,20968,21053,21053,20852,21042, 20854, 6095, 6095, 6095, 6095, 6095, 6095, 6096, 6096, 6096, 6096, 6096, 6096, 6096, 6096, 6096, 6096,20854,20970,20852, 20955,21201,20955, 6096, 6096, 6096, 6096, 6096, 6096,20955, 20990,21276,21281,20955,20955,20955,20955,20955,20955,20955, 20955,20955,21276,21281,22106,21044,22107,20897,20898,20909, 6096, 6096, 6096, 6096, 6096, 6096, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6102, 6102,20902,20897,20898,21138, 21044,20970, 6102, 6102, 6102, 6102, 6102, 6102,21044,20897, 20898,20909,21035,20990,21050,20970,21057,21050,21157,20898, 21302,21035,21035,21481,21057,21050,21157,20990,20902, 6102, 6102, 6102, 6102, 6102, 6102, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103, 6103,20897,20898,20909,21302,21313,21507, 21138, 6103, 6103, 6103, 6103, 6103, 6103,21051,21009,21055, 21051,21507,21051,20902,21009,21481,21138,21055,21051,21035, 20902,21687,21009,21055,21035,21313,20936,21009, 6103, 6103, 6103, 6103, 6103, 6103, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 6108, 6108,20904,21318,22108,21343,21056,21028, 6108, 6108, 6108, 6108, 6108, 6108,21056,21056,20936,21713, 21687,20946,21286,20966,20966,20966,20966,20966,20966,20966, 20966,20966,21318,21286,21343,20946,20904, 6108, 6108, 6108, 6108, 6108, 6108, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 6112, 6112,20936,20946,20833,22109,21301,21713, 6112, 6112, 6112, 6112, 6112, 6112,21028,20904,21060,21301,21162, 21060,20904,20966,20833,21028,21167,21060,21162,21060,20966, 21621,20833,21028,21167,21621,21028, 6112, 6112, 6112, 6112, 6112, 6112, 6118, 6118,20833, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6118, 6127, 6127,20905, 6127, 6127, 6127, 6127, 6127, 6127, 6127, 6127, 6127,21172, 6127, 6127, 21177,22070,21213,21903,20919,21172,21312,21317,21177, 6127, 6127, 6127, 6127, 6127, 6127, 6127,22070,21312,21317,20905, 21353, 6127,21213,20769,20769,20769,20769,20769,20769,20769, 20769,20769,21353,21403,21213,21353,20919,20905,21903, 6127, 6127, 6127, 6128, 6128,20769, 6128, 6128, 6128, 6128, 6128, 6128, 6128, 6128, 6128,20905, 6128, 6128,21184,21436,21215, 21403,20919,20769,20907,21322,21184, 6128, 6128, 6128, 6128, 6128, 6128, 6128, 6128,20919,21322,22110,21497, 6128,21215, 20770,20770,20770,20770,20770,20770,20770,20770,20770,21497, 21436,21215,21497,21432,21215,20907, 6128, 6128, 6128, 6132, 6132,20770, 6132, 6132, 6132, 6132, 6132, 6132, 6132, 6132, 6132,21432, 6132, 6132,21187,20907,21220,21441,22111,20770, 21118,21342,21187, 6132, 6132, 6132, 6132, 6132, 6132, 6132, 20907,21643,21342,22115,21432, 6132,21220,20776,20776,20776, 20776,20776,20776,20776,20776,20776,21918,21442,21220,21441, 21118,21118,21918, 6132, 6132, 6132, 6133, 6133,20776, 6133, 6133, 6133, 6133, 6133, 6133, 6133, 6133, 6133,21118, 6133, 6133,21118,21418,21222,21418,21407,20776,20908,21402,21442, 6133, 6133, 6133, 6133, 6133, 6133, 6133, 6133,22116,21402, 21643,21443, 6133,21222,20792,20792,20792,20792,20792,20792, 20792,20792,20792,21541,20908,21222,21418,21407,21222,20908, 6133, 6133, 6133, 6135, 6135,20792, 6135, 6135, 6135, 6135, 6135, 6135, 6135, 6135, 6135,21407, 6135, 6135,21192,20908, 21230,21443,21419,20792,21419,21288,21192, 6135, 6135, 6135, 6135, 6135, 6135, 6135,20908,21722,21541,21288,21722, 6135, 21230,20796,20796,20796,20796,20796,20796,20796,20796,20796, 21446,21033,21230,21914,21149,21288,21419, 6135, 6135, 6135, 6136, 6136,20796, 6136, 6136, 6136, 6136, 6136, 6136, 6136, 6136, 6136,21149, 6136, 6136,21197,21149,21241,21463,21494, 20796,21493,21446,21197, 6136, 6136, 6136, 6136, 6136, 6136, 6136, 6136,21493,21149,21914,22072, 6136,21241,20799,20799, 20799,20799,20799,20799,21204,21033,21494,20799,21511,21241, 21463,21344,21204,21033, 6136, 6136, 6136, 6138, 6138,20799, 6138, 6138, 6138, 6138, 6138, 6138, 6138, 6138, 6138,21033, 6138, 6138,21232,21344,21243,21511,21444,20799,21444,20799, 21275, 6138, 6138, 6138, 6138, 6138, 6138, 6138,21275,22072, 22117,21344,21232, 6138,21243,20816,20816,20816,20816,20816, 20816,20816,20816,20816,21232,21546,21243,21232,21346,21243, 21444, 6138, 6138, 6138, 6139, 6139,20816, 6139, 6139, 6139, 6139, 6139, 6139, 6139, 6139, 6139,21646, 6139, 6139,21280, 21346,21252,21483,21346,20816,21646,21546,21280, 6139, 6139, 6139, 6139, 6139, 6139, 6139, 6139,21534,22112,21346,22112, 6139,21252,20817,20817,20817,20817,20817,20817,20817,20817, 20817,21142,21691,21252,21483,21347,21345,21483, 6139, 6139, 6139, 6140, 6140,20817, 6140, 6140, 6140, 6140, 6140, 6140, 6140, 6140, 6140,21345, 6140, 6140,21534,21347,21345,21960, 20901,20817,21960,21347,21142, 6140, 6140, 6140, 6140, 6140, 6140, 6140,20542,20899,21285,21347,21345, 6140,22119, 6140, 20901,21412,21285,20542,20542,20542,20542,20542,20542,20542, 20542,20542,20901,20899,21297, 6140, 6140, 6140,21142,21412, 21691,21412,21297,20952,20542,20899, 6140, 6143, 6143,20952, 6143, 6143, 6143, 6143, 6143, 6143, 6143, 6143, 6143,20901, 6143, 6143,21254,21599,21599,21599,21290,20901,20952,20899, 21690, 6143, 6143, 6143, 6143, 6143, 6143, 6143,21290,21579, 20899,21290,21254, 6143,21576,20819,20819,20819,20819,20819, 20819,20819,20819,20819,21254,20952,21290,21254,22038,21350, 20952, 6143, 6143, 6143, 6144, 6144,20819, 6144, 6144, 6144, 6144, 6144, 6144, 6144, 6144, 6144,21350, 6144, 6144,21300, 21579,21576,22135,22038,20819,21579,21539,21300, 6144, 6144, 6144, 6144, 6144, 6144, 6144, 6144,21690,21576,21539,21350, 6144,21272,20820,20820,20820,20820,20820,20820,20820,20820, 20820,21005,21272,21272,21272,21272,21272,21272, 6144, 6144, 6144, 6148, 6148,20820, 6148, 6148, 6148, 6148, 6148, 6148, 6148, 6148, 6148,21272, 6148, 6148,21388,21482,21005,21539, 21450,20820,21440,21603,21005, 6148, 6148, 6148, 6148, 6148, 6148, 6148,21005,21428,21603,21603,21388, 6148,21660,20825, 20825,20825,20825,20825,20825,20825,20825,20825,21388,21482, 21660,21428,21450,21428,21440, 6148, 6148, 6148, 6149, 6149, 20825, 6149, 6149, 6149, 6149, 6149, 6149, 6149, 6149, 6149, 21450, 6149, 6149,21305,21440,20851,21482,21510,20825,21438, 22136,21305, 6149, 6149, 6149, 6149, 6149, 6149, 6149, 6149, 21438,21438,21438,22137, 6149,21510,20880,20880,20880,20880, 20880,20880,20880,20880,20880,21013,21594,21059,21639,20851, 21510,21438, 6149, 6149, 6149, 6152, 6152,20880, 6152, 6152, 6152, 6152, 6152, 6152, 6152, 6152, 6152,20851, 6152, 6152, 21548,21486,21013,22156,21487,20851,21488,21639,21013, 6152, 6152, 6152, 6152, 6152, 6152, 6152,21013,21594,20851,21548, 21013, 6152,21594,20882,20882,20882,20882,20882,20882,21059, 21059,21548,20882,21486,21486,21059,21487,21059,21488, 6152, 6152, 6152, 6153, 6153,20882, 6153, 6153, 6153, 6153, 6153, 6153, 6153, 6153, 6153,21308, 6153, 6153,21316,21540,21390, 22158,21545,21308,21448,20882,21316, 6153, 6153, 6153, 6153, 6153, 6153, 6153, 6153,22159,21448,21545,21753, 6153,21390, 20883,20883,20883,20883,20883,20883,20883,20883,20883,21753, 21540,21390,21545,21448,21390,20953, 6153, 6153, 6153, 6155, 6155,20883, 6155, 6155, 6155, 6155, 6155, 6155, 6155, 6155, 6155,21321, 6155, 6155,20953,21551,21015,21045,22160,21321, 21547,21547,21015, 6155, 6155, 6155, 6155, 6155, 6155, 6155, 21015,21611,21611,21611,21995, 6155,21547,20910,20910,20910, 21015,20953,21079,21325,21045,21485,20953,21551,21728,21485, 21045,21325,21547, 6155, 6155, 6155, 6156, 6156,21045, 6156, 6156, 6156, 6156, 6156, 6156, 6156, 6156, 6156,21332, 6156, 6156,20910,20910,21079,21728,21995,21332,21485,22051,21079, 6156, 6156, 6156, 6156, 6156, 6156, 6156, 6156,21048,20910, 21079,21335, 6156,21079,21048,20911,20911,20911,21515,21335, 21341,21401,21048,22051,21485,21536,20910,21048,21341,21401, 6156, 6156, 6156, 6157, 6157,21090, 6157, 6157, 6157, 6157, 6157, 6157, 6157, 6157, 6157, 6157, 6157, 6157,20900,20911, 21515,22161,21616,21413,21616,21616,21536, 6157, 6157, 6157, 6157, 6157, 6157, 6157, 6157,21459,21090,20911,20900, 6157, 21717,21413,21090,21459,20912,20912,20912,20900,20911,21413, 20900,21536,21476,21090,20911,21515,21090, 6157, 6157, 6157, 6157, 6157, 6158, 6158,21536, 6158, 6158, 6158, 6158, 6158, 6158, 6158, 6158, 6158,21492, 6158, 6158,20900,20912,21614, 21614,21614,21492,21604,21476,20900, 6158, 6158, 6158, 6158, 6158, 6158, 6158,21476,21604,21604,20912,21415, 6158,21019, 20915,20916,20915,20916,21019,21530,21415,21473,21717,21902, 21086,20912,21019,20912,22162,21415, 6158, 6158, 6158, 6159, 6159,21019, 6159, 6159, 6159, 6159, 6159, 6159, 6159, 6159, 6159,21473, 6159, 6159,20915,20916,21415,20915,21530,21902, 21530,21086,21473, 6159, 6159, 6159, 6159, 6159, 6159, 6159, 6159,21086,20915,20916,21054, 6159,21471,20917,21086,20917, 21054,21086,21484,21735,21692,20916,21052,21117,21054,20915, 20916,21592,21692, 6159, 6159, 6159, 6162, 6162,21054, 6162, 6162, 6162, 6162, 6162, 6162, 6162, 6162, 6162,21471, 6162, 6162,20917,21456,21052,21484,21735,21214,21221,21117,21052, 6162, 6162, 6162, 6162, 6162, 6162, 6162,21052,21117,20917, 21456,21052, 6162,21352,21456,21117,21214,21221,21117,21592, 21352,20917,21471,21214,21221,21352,20917,21484,21214,21221, 6162, 6162, 6162, 6163, 6163,21123, 6163, 6163, 6163, 6163, 6163, 6163, 6163, 6163, 6163,21941, 6163, 6163,20960,20960, 20960,20960,20960,20960,20960,20960,20960, 6163, 6163, 6163, 6163, 6163, 6163, 6163, 6163,22163,21123,21941,22164, 6163, 21557,21644,20960,20961,20961,20961,20961,20961,20961,20961, 20961,20961,21644,21123,21123,22168,21123, 6163, 6163, 6163, 6165, 6165,21348, 6165, 6165, 6165, 6165, 6165, 6165, 6165, 6165, 6165,21348, 6165, 6165,20980,20980,20980,20980,20980, 20980,20980,20980,20980, 6165, 6165, 6165, 6165, 6165, 6165, 6165,21640,21557,21496,21348,22169, 6165,22002,21557,20980, 21496,21640,21414,20961,21564,21496,21564,21564,21557,22002, 20961,21414,21348,21564, 6165, 6165, 6165, 6166, 6166,21550, 6166, 6166, 6166, 6166, 6166, 6166, 6166, 6166, 6166,21414, 6166, 6166,20982,20982,20982,20982,20982,20982,20982,20982, 20982, 6166, 6166, 6166, 6166, 6166, 6166, 6166, 6166,21641, 21414,21550,21509, 6166,21550,21770,21770,21770,20967,21641, 20967,20967,20967,20967,20967,20967,20967,20967,20967,22034, 21509, 6166, 6166, 6166, 6167, 6167,21292, 6167, 6167, 6167, 6167, 6167, 6167, 6167, 6167, 6167, 6167, 6167, 6167,20982, 20982,21509,22170,21479,22034,21479,21292,22073, 6167, 6167, 6167, 6167, 6167, 6167, 6167, 6167,20967,22034,21292,21429, 6167,21429,21685,20963,20963,20963,20963,20963,20963,20963, 20963,20963,21449,21449,21449,21449,21292,21479, 6167, 6167, 6167, 6167, 6167, 6170, 6170,21429, 6170, 6170, 6170, 6170, 6170, 6170, 6170, 6170, 6170,21479, 6170, 6170,21449,21649, 22073,22073,21429,21429,21649,21649,20963, 6170, 6170, 6170, 6170, 6170, 6170, 6170,20963,21449,21449,22172,21449, 6170, 20981,20981,20981,20981,20981,20981,20981,20981,20981,21685, 20963,21502,21502,21502,21502,21502,21502, 6170, 6170, 6170, 6171, 6171,21089, 6171, 6171, 6171, 6171, 6171, 6171, 6171, 6171, 6171,21502, 6171, 6171,20988,20988,20988,20988,20988, 20988,20988,20988,20988, 6171, 6171, 6171, 6171, 6171, 6171, 6171, 6171,21716,21089,21609,22011, 6171,22186,21447,21447, 20981,21447,21512,21080,21089,21609,21609,20981,21231,21508, 21089,21080,21733,21089, 6171, 6171, 6171, 6180, 6180, 6180, 6180, 6180, 6180, 6180, 6180, 6180, 6180,21508,21231,21512, 20839,22011,21447,20988,21080,21231,21508,21512,21733, 6180, 21231,20839,20839,20839,20839,20839,20839,20839,20839,20839, 21447,21080,22085,22085,21080,22127,22127, 6180,21716, 6180, 6182, 6182,20839, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6182, 6183,21460,22240,21602,21460,22241,21610, 20848,21610,21610,21610, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183,20848,20848,20848,20848,20848,20848,20848, 20848,20848,21608,21608,21652,21027,21602,21602,21460,21652, 21652,21652,21608,22241,20848,20848,21027,21027,21027,21027, 21027,21027,21027,21027,21027,22262,21460, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6183, 6187, 6187,22273, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6187, 6189,21538,20983,20983,20983, 20983,20983,20983,20983,20983,20983, 6189, 6189, 6189, 6189, 6189, 6189, 6189, 6189, 6189, 6189,21538,21734,21740,22180, 22180,21718, 6189, 6189, 6189, 6189, 6189, 6189,21538,21718, 20984,20984,20984,20984,20984,20984,20984,20984,20984,21612, 20983,21745,22282,21734,21612,21740,21612,21612,20983, 6189, 6189, 6189, 6189, 6189, 6189, 6191, 6191, 6191, 6191, 6191, 6191, 6191, 6191, 6191,20983,21776,21776,21776,21745,21538, 21606, 6191, 6191, 6191, 6191, 6191, 6191,20984,20986,20986, 20986,20986,20986,20986,20986,20986,20986,20987,21549,20987, 20987,20987,20987,20987,20987,20987,20987,20987, 6191, 6191, 6191, 6191, 6191, 6191, 6197, 6197, 6197, 6197, 6197, 6197, 6197, 6197, 6197,21630,22165,21710,22165,21732,22314,21549, 6197, 6197, 6197, 6197, 6197, 6197,21732,20986,21919,21606, 21606,21606,21630,21091,20986,20987,21068,21068,21068,21068, 21068,21068,21068,21068,21068,21549,21516, 6197, 6197, 6197, 6197, 6197, 6197, 6200, 6200, 6200, 6200, 6200, 6200, 6200, 6200, 6200, 6200,21058,21091,21630,21516,21919,21058, 6200, 6200, 6200, 6200, 6200, 6200,21091,21058,21148,21516,21516, 21552,21091,21710,21148,21091,21058,21069,21069,21069,21069, 21069,21069,21069,21069,21069,21148, 6200, 6200, 6200, 6200, 6200, 6200, 6204, 6204, 6204, 6204, 6204, 6204, 6204, 6204, 6204,21746,21552,21516,21645,21591,21148,21658, 6204, 6204, 6204, 6204, 6204, 6204,21645,21645,21658,21658,21529,21081, 21081,21081,21081,21081,21081,21081,21081,21081,21552,21751, 21782,21782,21782,21746,21519, 6204, 6204, 6204, 6204, 6204, 6204, 6207,21591, 6207, 6207, 6207, 6207, 6207, 6207, 6207, 6207, 6207, 6207,21529,22315,22358,21751,21529,21591, 6207, 6207, 6207, 6207, 6207, 6207,21081,21519,21082,21082,21082, 21082,21082,21082,21082,21082,21082,21082,21084,21084,21084, 21084,21084,21084,21084,21084,21084, 6207, 6207, 6207, 6207, 6207, 6207, 6214, 6214, 6214, 6214, 6214, 6214, 6214, 6214, 6214,21519,22363,22373,21291,21628,21739,21519, 6214, 6214, 6214, 6214, 6214, 6214,21082,21947,21291,21739,21601,21082, 21615,21111,21291,21084,21628,21615,21619,21615,21615,21111, 21628,21619,21085,21947,21291, 6214, 6214, 6214, 6214, 6214, 6214, 6217, 6217, 6217, 6217, 6217, 6217, 6217, 6217, 6217, 6217,21618,21111,21788,21788,21788,21744, 6217, 6217, 6217, 6217, 6217, 6217,21085,21619,21618,21618,21744,21085,21111, 21289,21601,21111,21085,21805,21618,21601,21289,21601,21601, 21085,22377,21289,21085, 6217, 6217, 6217, 6217, 6217, 6217, 6221, 6221, 6221, 6221, 6221, 6221, 6221, 6221, 6221, 6221, 21289,21805,22380,21711,21812,21830, 6221, 6221, 6221, 6221, 6221, 6221,21088,21088,21088,21088,21088,21088,21088,21088, 21088,21094,21094,21094,21094,21094,21094,21094,21094,21094, 22389,21812,21830, 6221, 6221, 6221, 6221, 6221, 6221, 6225, 6225, 6225, 6225, 6225, 6225, 6225, 6225, 6225,21632,21835, 21873,21873,21873,21954,21632, 6225, 6225, 6225, 6225, 6225, 6225,21095,21095,21095,21095,21095,21095,21095,21095,21095, 21711,21954,21840,21632,21901,21094,21835,21410,21410,21410, 21410,21410, 6225, 6225, 6225, 6225, 6225, 6225, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 6228, 6228,21410,21840, 21578,21901,21804,21738, 6228, 6228, 6228, 6228, 6228, 6228, 21578,21738,21435,21804,21667,22196,21410,21095,21435,21667, 21667,21100,21100,21100,21100,21100,21100,21100,21100,21100, 21435, 6228, 6228, 6228, 6228, 6228, 6228, 6232, 6232, 6232, 6232, 6232, 6232, 6232, 6232, 6232, 6232,21578,22394,22196, 21634,21435,21578, 6232, 6232, 6232, 6232, 6232, 6232,21097, 21097,21097,21097,21097,21097,21097,21097,21097,21100,21634, 22398,21096,21096,21096,21096,21096,21096,21096,21096,21096, 6232, 6232, 6232, 6232, 6232, 6232, 6236, 6236, 6236, 6236, 6236, 6236, 6236, 6236, 6236,21096,21634,21895,21895,21895, 22113,21634, 6236, 6236, 6236, 6236, 6236, 6236,21098,21098, 21098,21098,21098,21098,21098,21098,21098,21750,21747,21097, 21666,22401,21920,22424,22113,21666,21097,21723,21461, 6236, 6236, 6236, 6236, 6236, 6236, 6239, 6239, 6239, 6239, 6239, 6239, 6239, 6239, 6239, 6239,21747,21461,21755,21920,21750, 21747, 6239, 6239, 6239, 6239, 6239, 6239,21688,21666,21755, 21723,21461,21755,21624,21120,21098,21098,21461,21099,21099, 21099,21099,21099,21099,21099,21099,21099,21624, 6239, 6239, 6239, 6239, 6239, 6239, 6243, 6243, 6243, 6243, 6243, 6243, 6243, 6243, 6243, 6243,21242,21120,21624,21723,22166,22429, 6243, 6243, 6243, 6243, 6243, 6243,21120,21654,21743,21654, 21688,21099,21120,22444,21242,21120,21743,21967,21654,21099, 21654,21242,22166,21967,21688,21654,21242, 6243, 6243, 6243, 6243, 6243, 6243, 6244, 6244,21099, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6244, 6247, 6247,22493, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6247, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 6253, 6253,21714, 22516,21593,22533,22516,21981, 6253, 6253, 6253, 6253, 6253, 6253,21593,21102,21102,21102,21102,21102,21102,21102,21102, 21102,21103,21981,21103,21103,21103,21103,21103,21103,21103, 21103,21103, 6253, 6253, 6253, 6253, 6253, 6253, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 6255, 6255,21537,21593,21411, 21411,21411,21714,21593, 6255, 6255, 6255, 6255, 6255, 6255, 20838,21102,21748,21866,22584,21936,21714,21537,21102,21103, 21411,20838,20838,20838,20838,20838,20838,22666,21811,21537, 20838, 6255, 6255, 6255, 6255, 6255, 6255, 6258,21411,21811, 21927,21936,20838,21946,21748,21866,21816,21748, 6258, 6258, 6258, 6258, 6258, 6258, 6258, 6258, 6258,21816,21927,21537, 21927,21946,20838,21946, 6258, 6258, 6258, 6258, 6258, 6258, 21104,21104,21104,21104,21104,21104,21104,21104,21104,21119, 21119,21119,21119,21119,21119,21119,21119,21119,21110,21524, 21524, 6258, 6258, 6258, 6258, 6258, 6258, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259, 6259,21959,22674,21689, 21820,22771,22791, 6259, 6259, 6259, 6259, 6259, 6259,21110, 21462,21820,21524,21638,21121,21110,21462,21803,21104,21122, 21982,21975,22033,21689,21959,21803,21110,21116,21462,21110, 6259, 6259, 6259, 6259, 6259, 6259, 6265, 6265, 6265, 6265, 6265, 6265, 6265, 6265, 6265,21121,21982,21524,22033,21462, 21122,21121, 6265, 6265, 6265, 6265, 6265, 6265,21116,21689, 21975,21122,21121,21116,21689,21121,21638,21122,21116,21810, 21122,21638,21638,22799,22800,21116,21834,21810,21116, 6265, 6265, 6265, 6265, 6265, 6265, 6268, 6268,21834, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6268, 6289, 6289, 22012, 6289, 6289, 6289, 6289, 6289, 6289, 6289, 6289, 6289, 22193, 6289, 6289,21125,21125,21125,21125,21125,21125,21125, 21125,21125, 6289, 6289, 6289, 6289, 6289, 6289, 6289,21815, 21693,21819,21823,22193, 6289,22012,22012,21815,21693,21819, 21823,21112,21112,21112,21112,21112,21112,21112,21112,21112, 22195,22442, 6289, 6289, 6289, 6290, 6290,21523, 6290, 6290, 6290, 6290, 6290, 6290, 6290, 6290, 6290,21125, 6290, 6290, 21127,21127,21127,21127,21127,21127,21127,21127,21127, 6290, 6290, 6290, 6290, 6290, 6290, 6290, 6290,21112,21833,21523, 21693, 6290,22442,22195,21127,21693,21833,21113,21113,21113, 21113,21113,21113,21113,21113,21113,21113,21523,21990, 6290, 6290, 6290, 6292, 6292,21869, 6292, 6292, 6292, 6292, 6292, 6292, 6292, 6292, 6292,21523, 6292, 6292,21129,21129,21129, 21129,21129,21129,21129,21129,21129, 6292, 6292, 6292, 6292, 6292, 6292, 6292,21838,21113,22114,21869,21990, 6292,21113, 22114,21838,21144,21144,21839,21115,21115,21115,21115,21115, 21115,21115,21115,21115,22039,21839, 6292, 6292, 6292, 6293, 6293,21790, 6293, 6293, 6293, 6293, 6293, 6293, 6293, 6293, 6293,21843, 6293, 6293,21129,21129,21144,22803,22805,21843, 22039,21790,22083, 6293, 6293, 6293, 6293, 6293, 6293, 6293, 6293,21115,22083,21790,21144, 6293,21844,21126,21126,21126, 21126,21126,21126,21126,21126,21126,21622,21844,22471,21631, 21144,21622,21622, 6293, 6293, 6293, 6295, 6295,21622, 6295, 6295, 6295, 6295, 6295, 6295, 6295, 6295, 6295,21631, 6295, 6295,21135,21135,21135,21135,21135,21135,21135,21135,21135, 6295, 6295, 6295, 6295, 6295, 6295, 6295,21607,22224,22204, 22471,21655, 6295,21126,21128,21128,21128,21128,21128,21128, 21128,21128,21128,21631,21655,22224,21655,22810,21988,22204, 6295, 6295, 6295, 6296, 6296,21655, 6296, 6296, 6296, 6296, 6296, 6296, 6296, 6296, 6296,21253, 6296, 6296,21389,21135, 21875,21879,21607,21731,21749,21988,22229, 6296, 6296, 6296, 6296, 6296, 6296, 6296, 6296,21253,21607,21607,21389, 6296, 21847,21607,21253,22041,21128,21389,21853,21253,21847,22041, 21389,21128,21875,21879,21853,21731,21749, 6296, 6296, 6296, 6297, 6297,21749, 6297, 6297, 6297, 6297, 6297, 6297, 6297, 6297, 6297,22211, 6297, 6297,21131,21131,21131,21131,21131, 21131,21131,21131,21131, 6297, 6297, 6297, 6297, 6297, 6297, 6297,20918,21518,22229,21731,22211, 6297,22230, 6297,21427, 21427,21427,20918,20918,20918,20918,20918,20918,20918,20918, 20918,21858,21518,21862, 6297, 6297, 6297,21855,22213,21858, 21427,21862,21131,20918,21518, 6297, 6303, 6303,21855, 6303, 6303, 6303, 6303, 6303, 6303, 6303, 6303, 6303,21427, 6303, 6303,21227,21227,21227,21227,21227,21227,21227,21227,21227, 6303, 6303, 6303, 6303, 6303, 6303, 6303,21518,21899,21518, 22167,22213, 6303,21883,22230,22167,21899,21134,21859,21134, 21134,21134,21134,21134,21134,21134,21134,21134,22818,21859, 6303, 6303, 6303, 6304, 6304,21887, 6304, 6304, 6304, 6304, 6304, 6304, 6304, 6304, 6304,21883, 6304, 6304,21228,21228, 21228,21228,21228,21228,21228,21228,21228, 6304, 6304, 6304, 6304, 6304, 6304, 6304, 6304,21134,21434,21887,21900, 6304, 21130,21130,21130,21130,21130,21130,21130,21130,21130,21900, 22192,22772,22243,21625,21434,22281,21633, 6304, 6304, 6304, 6308, 6308,21633, 6308, 6308, 6308, 6308, 6308, 6308, 6308, 6308, 6308,21625, 6308, 6308,21434,21626,21868,21904,21921, 22281,21633,21434,21130, 6308, 6308, 6308, 6308, 6308, 6308, 6308,21130,22243,22772,22192,21626, 6308,21229,21229,21229, 21229,21229,21229,21229,21229,21229,21625,21130,21633,21868, 21904,21921,21868,21633, 6308, 6308, 6308, 6309, 6309,21970, 6309, 6309, 6309, 6309, 6309, 6309, 6309, 6309, 6309,21626, 6309, 6309,21237,21237,21237,21237,21237,21237,21237,21237, 21237, 6309, 6309, 6309, 6309, 6309, 6309, 6309, 6309,22042, 22867,21970,22785, 6309,21437,22042,21133,21133,21133,21133, 21133,21133,21133,21133,21133,21437,21437,21437,21437,21437, 21437, 6309, 6309, 6309, 6312, 6312,21971, 6312, 6312, 6312, 6312, 6312, 6312, 6312, 6312, 6312,21437, 6312, 6312,21238, 21238,21238,21238,21238,21238,21238,21238,21238, 6312, 6312, 6312, 6312, 6312, 6312, 6312,21133,22785,22873,21971,21971, 6312,21467,21133,21239,21239,21239,21239,21239,21239,21239, 21239,21239,21467,21467,21467,21467,21467,21467, 6312, 6312, 6312, 6313, 6313,22007, 6313, 6313, 6313, 6313, 6313, 6313, 6313, 6313, 6313,21467, 6313, 6313,21248,21248,21248,21248, 21248,21248,21248,21248,21248, 6313, 6313, 6313, 6313, 6313, 6313, 6313, 6313,22874,21987,22007,22265, 6313,21470,21146, 21146,21146,21146,21146,21146,21987,21719,21867,21146,21470, 21470,21470,21470,21470,21719, 6313, 6313, 6313, 6315, 6315, 21146, 6315, 6315, 6315, 6315, 6315, 6315, 6315, 6315, 6315, 21470, 6315, 6315,21792,21867,21871,22265,21729,22194,21867, 21146,21986, 6315, 6315, 6315, 6315, 6315, 6315, 6315,21986, 22295,22295,22295,21792, 6315,21249,21249,21249,21249,21249, 21249,21249,21249,21249,22194,21792,21719,21871,21792,21729, 21871,21719, 6315, 6315, 6315, 6316, 6316,21922, 6316, 6316, 6316, 6316, 6316, 6316, 6316, 6316, 6316,21729, 6316, 6316, 21250,21250,21250,21250,21250,21250,21250,21250,21250, 6316, 6316, 6316, 6316, 6316, 6316, 6316, 6316,22244,21729,21922, 22244, 6316,21259,21259,21259,21259,21259,21259,21259,21259, 21259,22094,22875,22244,22876,22275,22094,21922,22094, 6316, 6316, 6316, 6317, 6317,21951, 6317, 6317, 6317, 6317, 6317, 6317, 6317, 6317, 6317, 6317, 6317, 6317,21260,21260,21260, 21260,21260,21260,21260,21260,21260, 6317, 6317, 6317, 6317, 6317, 6317, 6317, 6317,21912,22275,21951,21928, 6317,21261, 21261,21261,21261,21261,21261,21261,21261,21261,22201,22210, 22881,22219,21912,22956,21951,21928, 6317, 6317, 6317, 6317, 6317, 6318, 6318,21928, 6318, 6318, 6318, 6318, 6318, 6318, 6318, 6318, 6318,21912, 6318, 6318,21271,21271,21271,21271, 21271,21271,21271,21271,21271, 6318, 6318, 6318, 6318, 6318, 6318, 6318,22201,22210,21730,22219,21968, 6318,21331,21331, 21331,21331,21331,21331,21331,21331,21331,21915,21905,21915, 21905,23085,21730,22689,21331, 6318, 6318, 6318, 6319, 6319, 21968, 6319, 6319, 6319, 6319, 6319, 6319, 6319, 6319, 6319, 22222, 6319, 6319,21730,21905,21725,21725,21968,21870,21331, 21730,21915, 6319, 6319, 6319, 6319, 6319, 6319, 6319, 6319, 22222,21905,21905,22118, 6319,21361,21361,21361,21361,21361, 21361,21361,21361,21361,22118,21870,22003,22689,22003,21725, 21870,22689, 6319, 6319, 6319, 6322, 6322,22003, 6322, 6322, 6322, 6322, 6322, 6322, 6322, 6322, 6322,21725, 6322, 6322, 21362,21362,21362,21362,21362,21362,21362,21362,21362, 6322, 6322, 6322, 6322, 6322, 6322, 6322,21725,22317,22317,22317, 22171, 6322,21363,21363,21363,21363,21363,21363,21363,21363, 21363,22171,22037,21727,21727,21727,21727,21727,21727, 6322, 6322, 6322, 6323, 6323,22037, 6323, 6323, 6323, 6323, 6323, 6323, 6323, 6323, 6323,21727, 6323, 6323,21369,21369,21369, 21369,21369,21369,21369,21369,21369, 6323, 6323, 6323, 6323, 6323, 6323, 6323, 6323,22037,22009,23111,21911, 6323,21375, 21375,21375,21375,21375,21375,21375,21375,21375,22247,22247, 23118,22232,22254,22009,22247,21911, 6323, 6323, 6323, 6325, 6325,22009, 6325, 6325, 6325, 6325, 6325, 6325, 6325, 6325, 6325,21911, 6325, 6325,21381,21381,21381,21381,21381,21381, 21381,21381,21381, 6325, 6325, 6325, 6325, 6325, 6325, 6325, 22232,22254,22104,22279,22286, 6325,21387,21387,21387,21387, 21387,21387,21387,21387,21387,22286,22485,23110,22279,22104, 21913,21913,22104, 6325, 6325, 6325, 6326, 6326,22040, 6326, 6326, 6326, 6326, 6326, 6326, 6326, 6326, 6326,21913, 6326, 6326,21395,21395,21395,21395,21395,21395,21395,21395,21395, 6326, 6326, 6326, 6326, 6326, 6326, 6326, 6326,22157,21913, 22040,22485, 6326,21396,21396,21396,21396,21396,21396,21396, 21396,21396,22095,22806,22806,22157,23110,22095,22157,22095, 6326, 6326, 6326, 6327, 6327,21877, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327,21397,21397, 21397,21397,21397,21397,21397,21397,21397, 6327, 6327, 6327, 6327, 6327, 6327, 6327, 6327,22269,22269,21877,22482, 6327, 21877,22269,21754,21408,21408,21408,21408,21408,21408,21754, 21715,21876,21408,21880,21754,22202,22482, 6327, 6327, 6327, 6327, 6327, 6331, 6331,21408, 6331, 6331, 6331, 6331, 6331, 6331, 6331, 6331, 6331,21715, 6331, 6331,21881,21876,21885, 21880,22202,21408,21876,21408,21880, 6331, 6331, 6331, 6331, 6331, 6331, 6331,22807,22494,21953,23082,23082, 6331,21889, 21409,21409,21409,21409,21409,21409,21409,21409,21409,21881, 21715,21885,21881,21953,21885,21715, 6331, 6331, 6331, 6333, 6333,21409, 6333, 6333, 6333, 6333, 6333, 6333, 6333, 6333, 6333,21889, 6333, 6333,21889,22191,21953,22494,21531,21409, 21531,22807,22191, 6333, 6333, 6333, 6333, 6333, 6333, 6333, 21425,21425,21425,21425,21425, 6333,21501,21501,21501,21501, 21501,21501,21501,21501,21501,21431,21431,21431,21431,21431, 21431,21425,21531, 6333, 6333, 6333,21465,21501,22045,22926, 21531,21532,21465,21532,21465,22926,21431,22236,22045,21425, 21531, 6333, 6334, 6334,21513, 6334, 6334, 6334, 6334, 6334, 6334, 6334, 6334, 6334,21431, 6334, 6334,21531,21465,22045, 21454,21454,21454,21454,21454,21532, 6334, 6334, 6334, 6334, 6334, 6334, 6334,21513,21884,21465,21513,21966, 6334,22125, 21521,21454,22235,21532,22125,21465,22125,21423,21423,21423, 21423,21423,21423,21423,21423,21423, 6334, 6334, 6334,21454, 21532,21884,21888,21513,21514,22236,21884,22278,21423,21966, 22278,21513,21521, 6334, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339, 6339,21423, 6339, 6339,21888, 22147,21917,23169,21917,21888,22147,21514,22147, 6339, 6339, 6339, 6339, 6339, 6339, 6339,21521,21966,21521,22235,22278, 6339,21424,21424,21424,21424,21424,21424,21424,21424,21424, 21917,22046,22046,21514,21929,21917,21931,21931, 6339, 6339, 6339,21514,21424,21929, 6339, 6341, 6341, 6341, 6341, 6341, 6341, 6341, 6341, 6341, 6341, 6341, 6341,22257, 6341, 6341, 21424,21929,21938,22046,21938,21934,21525,22212,21931, 6341, 6341, 6341, 6341, 6341, 6341, 6341,21934,21934,21934,21934, 21934, 6341,21929,21430,21430,21430,21430,21430,21430,21430, 21430,21430,21948,22212,21948,21931,21938,21934,21525, 6341, 6341, 6341, 6362, 6362,21430, 6362, 6362, 6362, 6362, 6362, 6362, 6362, 6362, 6362,22036, 6362, 6362,22197,21948,21942, 21942,23210,21430,22257,22233,21525, 6362, 6362, 6362, 6362, 6362, 6362, 6362,21525,22036,21948,21948,21617, 6362,21617, 21451,21451,21451,21451,21451,21451,22036,22209,21617,21451, 22197,21617,21617,21942,22209,21617, 6362, 6362, 6362, 6363, 6363,21451, 6363, 6363, 6363, 6363, 6363, 6363, 6363, 6363, 6363,21942, 6363, 6363,21978,22148,22036,22233,22783,21451, 22148,21451,22148, 6363, 6363, 6363, 6363, 6363, 6363, 6363, 6363,22233,23105,22783,23105, 6363,21961,21452,21452,21452, 21452,21452,21452,21452,21452,21452,21978,21961,21961,21961, 21926,21926,21926, 6363, 6363, 6363, 6364, 6364,21452, 6364, 6364, 6364, 6364, 6364, 6364, 6364, 6364, 6364,21961, 6364, 6364,21926,21978,21956,21976,21940,21452,21940,22258,22220, 6364, 6364, 6364, 6364, 6364, 6364, 6364,22266,22198,21926, 22266,22251, 6364,23245,21453,21453,21453,21453,21453,21453, 21453,21453,21453,22266,21940,22220,21976,21956,22198,21940, 6364, 6364, 6364, 6365, 6365,21453, 6365, 6365, 6365, 6365, 6365, 6365, 6365, 6365, 6365,21956, 6365, 6365,22043,21980, 21791,21979,22198,21453,21962,22080,22043, 6365, 6365, 6365, 6365, 6365, 6365, 6365, 6365,21976,22258,22457,23246, 6365, 21791,21503,21503,21503,21503,21503,21503,21791,22251,22043, 21503,21980,21791,21979,21980,22457,21962, 6365, 6365, 6365, 6366, 6366,21503, 6366, 6366, 6366, 6366, 6366, 6366, 6366, 6366, 6366,22080, 6366, 6366,21979,21962,22080,22457,22010, 22515,21629,21503,22322, 6366, 6366, 6366, 6366, 6366, 6366, 6366,21629,23250,21563,22322,21563, 6366,22010,22215,22200, 21629,21477,21563,22099,21642,22010,22099,21439, 6366,22515, 21563,22099,21642,22099, 6366, 6366, 6366,21642,21439,21439, 21439,21439,21439,21439,21439,21439,21439,21629,21642,21563, 22242,22215,21629,22200,22008,21477, 6366, 6372, 6372,21439, 6372, 6372, 6372, 6372, 6372, 6372, 6372, 6372, 6372,21517, 6372, 6372,22008,21477,22242,22662,23256,21944,21944,21944, 22330, 6372, 6372, 6372, 6372, 6372, 6372, 6372,21477,21517, 22008,22330,22662, 6372,21477,21526,21526,21526,21944,21974, 22214,21517,21560,21560,21560,21560,21560,21560,21560,21560, 21560, 6372, 6372, 6372, 6373, 6373,21944, 6373, 6373, 6373, 6373, 6373, 6373, 6373, 6373, 6373,22013, 6373, 6373,21526, 21517,22218,21526,21974,22214,22050,21517,22264, 6373, 6373, 6373, 6373, 6373, 6373, 6373, 6373,23263,21526,21930,22698, 6373,21974,21527,21527,21527,21974,21977,21930,22013,21560, 22288,22264,22287,22252,21526,22218,21930,22050, 6373, 6373, 6373, 6376, 6376,21958, 6376, 6376, 6376, 6376, 6376, 6376, 6376, 6376, 6376,22263, 6376, 6376,21527,21930,21977,22287, 22698,22013,22288,22013,21977, 6376, 6376, 6376, 6376, 6376, 6376, 6376,22050,23311,21527,21958,22004, 6376,22004,21528, 21528,21528,22071,22014,22014,22101,21527,22004,22263,22101, 22101,21527,22101,21958,22004, 6376, 6376, 6376, 6377, 6377, 22252, 6377, 6377, 6377, 6377, 6377, 6377, 6377, 6377, 6377, 22335, 6377, 6377,21528,21958,22014,21992,21992,21992,21992, 21992,22335, 6377, 6377, 6377, 6377, 6377, 6377, 6377, 6377, 23156,21528,23156,22280, 6377,22071,21533,21992,21533,22048, 22120,22020,22014,21528,22120,22071,22702,22255,21528,22120, 22014,22120, 6377, 6377, 6377, 6379, 6379,22280, 6379, 6379, 6379, 6379, 6379, 6379, 6379, 6379, 6379,22237, 6379, 6379, 21533,22048,21973,22020,21973,22237,22323,22048,21605, 6379, 6379, 6379, 6379, 6379, 6379, 6379,21605,22702,21533,22583, 22098, 6379,21605,21605,22583,22098,21533,22098,22098,22020, 22255,22979,21605,22323,22979,21533,21973,22423,22020, 6379, 6379, 6379, 6380, 6380,22255, 6380, 6380, 6380, 6380, 6380, 6380, 6380, 6380, 6380,21973, 6380, 6380,21673,21673,21673, 21673,21673,21673,21673,21673,21673, 6380, 6380, 6380, 6380, 6380, 6380, 6380, 6380,22216,21973,22423,22484, 6380,21559, 21559,21559,21559,21559,21559,21559,21559,21559,21559,22331, 22270,23165,22336,23165,22216,22484, 6380, 6380, 6380, 6381, 6381,22015, 6381, 6381, 6381, 6381, 6381, 6381, 6381, 6381, 6381,21673, 6381, 6381,22044,22044,22331,21478,22216,22336, 22340,22015,22270, 6381, 6381, 6381, 6381, 6381, 6381, 6381, 22044,22340,22270,22015,21957, 6381,22015,21674,21674,21674, 21674,21674,21674,21674,21674,21674,22044,22345,21466, 6381, 22093,21478,21957, 6381, 6381, 6381,21957,21478,22345,21466, 21466,21466,21466,21466,21466,21466,21466,21466,22015,21478, 23197,22586,23197,21957,22028,22029,22586, 6381, 6382, 6382, 21466, 6382, 6382, 6382, 6382, 6382, 6382, 6382, 6382, 6382, 21478, 6382, 6382,21674,21994,21994,21994,21994,21994,21994, 22028,22029, 6382, 6382, 6382, 6382, 6382, 6382, 6382,22028, 22029,22093,22126,22126, 6382,21994,22093,22126,22093,22126, 21561,21561,21561,21561,21561,21561,21561,21561,21561,21561, 22409,22497, 6382, 6382, 6382, 6383, 6383,22019, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383,23377, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383, 6383,22409,21561,23162,22019, 22497, 6383,21561,22361,21562,21562,21562,21562,21562,21562, 21562,21562,21562,23377,22361,22735,22245,22019,22443, 6383, 6383, 6383, 6385, 6385,22245, 6385, 6385, 6385, 6385, 6385, 6385, 6385, 6385, 6385,22019, 6385, 6385,21675,21675,21675, 21675,21675,21675,21675,21675,21675, 6385, 6385, 6385, 6385, 6385, 6385, 6385,22443,21562,22413,22735,23162, 6385,21562, 22366,21675,21676,21676,21676,21676,21676,21676,21676,21676, 21676,22366,22699,22413,22736,22413, 6385, 6385, 6385, 6386, 6386,22023, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386,22016, 6386, 6386,21677,21677,21677,21677,21677,21677, 21677,21677,21677, 6386, 6386, 6386, 6386, 6386, 6386, 6386, 6386,22016,22699,22023,22736, 6386,22660,21910,21910,21910, 21910,21910,21676,22016,22124,22124,22660,22341,22047,21676, 22124,22023,22124, 6386, 6386, 6386, 6387, 6387,21910, 6387, 6387, 6387, 6387, 6387, 6387, 6387, 6387, 6387,22023, 6387, 6387,21677,21677,22016,22341,22199,21910,22362,22016,22047, 6387, 6387, 6387, 6387, 6387, 6387, 6387,21925,21925,21925, 21925,21925, 6387,21683,21683,21683,21683,21683,21683,21683, 21683,21683,22199,22410,22362,21468, 6387,22199,21925,22128, 6387, 6387, 6387,23388,22047,22447,21468,21468,21468,21468, 21468,21468,22068,22096,22128,21468,21925,22068,22096,22096, 22096,22410,22128,22190, 6387, 6391, 6391,21468, 6391, 6391, 6391, 6391, 6391, 6391, 6391, 6391, 6391,22149, 6391, 6391, 22447,21683,22149,22149,22149,22190,22371,21468,22131, 6391, 6391, 6391, 6391, 6391, 6391, 6391,23233,22371,22259,22068, 23233, 6391,22190,22131,22068,22190,22259,22121,22131, 6391, 21679,21679,21679,21679,21679,21679,21679,21679,21679, 6391, 6391, 6391, 6398, 6398,22131, 6398, 6398, 6398, 6398, 6398, 6398, 6398, 6398, 6398,22672, 6398, 6398,21700,21700,21700, 21700,21700,21700,21700,21700,21700, 6398, 6398, 6398, 6398, 6398, 6398, 6398,22667,22121,22178,22238,21679, 6398,22121, 22178,22121,22178,22672,22238,22667,21681,21681,21681,21681, 21681,21681,21681,21681,21681,22154, 6398, 6398, 6398,22154, 22154,23389,22154, 6398, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 6403, 6403,21700, 6403,21469,21701,21701,21701,21701, 21701,21701,21701,21701,21701, 6403,21469,21469,21469,21469, 21469,21469,21469,21469,21469,21681,22238,22267,22542,22271, 21701,22238,21681, 6403,23567,22267,21682,21469,21682,21682, 21682,21682,21682,21682,21682,21682,21682,23607,22548, 6403, 6418, 6418,22542, 6418, 6418, 6418, 6418, 6418, 6418, 6418, 6418, 6418,22271, 6418, 6418,21703,21703,21703,21703,21703, 21703,21703,21703,21703, 6418, 6418, 6418, 6418, 6418, 6418, 6418,22183,21474,22548,21682,22520, 6418,21972,22183,22183, 22695,22183,22026,22026,22026,21474,21474,21474,21474,21474, 21474,21474,21474,21474, 6418, 6418, 6418, 6420, 6420, 6420, 6420, 6420, 6420, 6420, 6420, 6420,21474, 6420,21535,21474, 22695,21972,21703,21703,22520,22697,22026,22984, 6420,21535, 21535,21535,21535,21535,21535,21535,21535,21535,22123,21972, 22285,22602,22123,21972,22026,22984, 6420,22123,22285,22123, 21535,21699,21699,21699,21699,21699,21699,21699,21699,21699, 21972,22026, 6420, 6422, 6422,22602, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422, 6422,22697, 6422, 6422,21763,21763, 21763,21763,21763,21763,21763,21763,21763, 6422, 6422, 6422, 6422, 6422, 6422, 6422,22151,22177,22177,22151,23651, 6422, 22980,22177,22151,22177,22151,21699,21764,21764,21764,21764, 21764,21764,21764,21764,21764,22321,22980, 6422, 6422, 6422, 6422, 6424, 6424,22321, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6424, 6425, 6425,22049, 6425, 6425, 6425, 6425, 6425, 6425, 6425, 6425, 6425,22774, 6425, 6425,21709, 21709,21709,21709,21709,21709,21709,21709,21709, 6425, 6425, 6425, 6425, 6425, 6425, 6425,22376,23062,22329,22049,23668, 6425,23062,22025,22025,22025,22329,22376,21702,21702,21702, 21702,21702,21702,21702,21702,21702,22774,22461, 6425, 6425, 6425, 6426, 6426,22291, 6426, 6426, 6426, 6426, 6426, 6426, 6426, 6426, 6426,22049, 6426, 6426,22025,21709,22049,22461, 22225,22217,22367,22174,22025, 6426, 6426, 6426, 6426, 6426, 6426, 6426, 6426,23115,22025,22291,23115, 6426,21678,21678, 21678,21678,21678,21678,21678,21678,21678,21702,22217,22367, 22476,22025,22225,22217,21702, 6426, 6426, 6426, 6437, 6437, 22225, 6437, 6437, 6437, 6437, 6437, 6437, 6437, 6437, 6437, 22174, 6437, 6437,22179,22179,22174,22476,22174,22179,22386, 22179,21678, 6437, 6437, 6437, 6437, 6437, 6437, 6437,21678, 22386,23120,23120,23670, 6437,21964,21726,21726,21726,21726, 21726,21726,21726,21726,21726,21678,21964,21964,21964,21964, 21964,21964, 6437, 6437, 6437, 6438, 6438,21726, 6438, 6438, 6438, 6438, 6438, 6438, 6438, 6438, 6438,21964, 6438, 6438, 21765,21765,21765,21765,21765,21765,21765,21765,21765, 6438, 6438, 6438, 6438, 6438, 6438, 6438, 6438,23171,23171,23686, 22547, 6438,21704,21704,21704,21704,21704,21704,21704,21704, 21704,22289,22018,23691,22372,22388,22412,22412,22412, 6438, 6438, 6438, 6439, 6439,22130, 6439, 6439, 6439, 6439, 6439, 6439, 6439, 6439, 6439,22035, 6439, 6439,22412,22289,22547, 22203,22372,22388,22289,22018,21704, 6439, 6439, 6439, 6439, 6439, 6439, 6439,21704,22035,22412,22130,22097, 6439,22146, 6439,22150,22486,22097,22203,22453,22035,22150,22097,21704, 22097,22130,22150,22018,22150,22203, 6439, 6439, 6439,22018, 22778,22778,22130,22453,22486,22453,22778, 6439, 6441, 6441, 22035, 6441, 6441, 6441, 6441, 6441, 6441, 6441, 6441, 6441, 6441, 6441, 6441,21771,21771,21771,21771,21771,21771,21771, 21771,21771, 6441, 6441, 6441, 6441, 6441, 6441, 6441,22503, 22146,22334,22704,23166, 6441,22146,23166,22146,22503,22334, 6441,21777,21777,21777,21777,21777,21777,21777,21777,21777, 22339,22704, 6441, 6441, 6441, 6441, 6442, 6442,22339, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6442, 6446, 6446,22297, 6446, 6446, 6446, 6446, 6446, 6446, 6446, 6446, 6446,22665, 6446, 6446,21783,21783,21783,21783,21783,21783, 21783,21783,21783, 6446, 6446, 6446, 6446, 6446, 6446, 6446, 22344,22348,23206,22297,23206, 6446, 6446,22665,22344,22348, 21705,21705,21705,21705,21705,21705,21705,21705,21705,22792, 22418,22676,23701, 6446, 6446, 6446, 6448, 6448,22290, 6448, 6448, 6448, 6448, 6448, 6448, 6448, 6448, 6448,22418, 6448, 6448,21789,21789,21789,21789,21789,21789,21789,21789,21789, 6448, 6448, 6448, 6448, 6448, 6448, 6448,21705,22676,22418, 22290,22792, 6448,22290,22392,21707,21707,21707,21707,21707, 21707,21707,21707,21707,22676,22392,23554,22360,23554,22676, 6448, 6448, 6448, 6473, 6473,22360, 6473, 6473, 6473, 6473, 6473, 6473, 6473, 6473, 6473, 6473, 6473, 6473,21797,21797, 21797,21797,21797,21797,21797,21797,21797, 6473, 6473, 6473, 6473, 6473, 6473, 6473,21707,22379,22393,22276,22379, 6473, 22546,21707,23705,22276,21708,22301,21708,21708,21708,21708, 21708,21708,21708,21708,21708,22276,22365, 6473, 6473, 6473, 6473,22694,22546,22393,22365,22379, 6473,21798,21798,21798, 21798,21798,21798,21798,21798,21798,22276,22301,22658, 6473, 6493, 6493,22305, 6493, 6493, 6493, 6493, 6493, 6493, 6493, 6493, 6493,21708, 6493, 6493,21799,21799,21799,21799,21799, 21799,21799,21799,21799, 6493, 6493, 6493, 6493, 6493, 6493, 6493,22658,22694,23262,22305,22668, 6493,21874,21874,21874, 21874,21874,21874,21874,21874,21874,22234,22668,22739,23708, 23032,22794,22668,23262, 6493, 6493, 6493, 6493, 6494, 6494, 22309, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 22234, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494, 6494,22739, 22741,22794,22309,22397, 6494,21896,21896,21896,21896,21896, 21896,21896,21896,21896,22397,23032,22234,23717,23032,22741, 22370,22234, 6494, 6494, 6494, 6494, 6497, 6497,22370, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6497, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500, 6500,22491, 22703,22605,22779,22519,22607, 6500, 6500, 6500, 6500, 6500, 6500,21854,21854,21854,21854,21854,21854,21854,21854,21854, 22173,22519,22375,22607,22173,22605,22491,21854,22519,22173, 22375,22173, 6500, 6500, 6500, 6500, 6500, 6500, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 6502,22607,22405,22779, 22246,22703,21854, 6502, 6502, 6502, 6502, 6502, 6502, 6502, 21999,21999,21999,21999,21999,21999,21999,21999,21999,21999, 22000,22000,22000,22000,22000,22000,22000,22000,22000,22000, 22405, 6502, 6502, 6502, 6502, 6502, 6502, 6507, 6507, 6507, 6507, 6507, 6507, 6507, 6507, 6507, 6507,22246,22400,22731, 22246,22400,22246, 6507, 6507, 6507, 6507, 6507, 6507,22001, 22001,22001,22001,22001,22001,22001,22001,22001,22001,22059, 22059,22059,22059,22059,22059,22059,22059,22059,22400,22293, 6507, 6507, 6507, 6507, 6507, 6507, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6511, 6511,22427,23722,22490,22706, 22731,22122, 6511, 6511, 6511, 6511, 6511, 6511,22122,22490, 23563,22293,23563,22122,22293,22122,21991,21991,21991,21991, 21991,21991,21991,21991,21991,22122,22706,22059,22427, 6511, 6511, 6511, 6511, 6511, 6511, 6521, 6521,21991, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6521, 6523, 6523, 23726, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6523, 6531, 6531, 6531, 6531, 6531, 6531, 6531, 6531, 6531, 6531,22017,22256,22268,23212,23212,22822, 6531, 6531, 6531, 6531, 6531, 6531,22092,22185,22092,22734,22822,22780,22299, 22092,22017,22185,23729,22092,22092,22256,22092,22185,22185, 22030,22092,22030,22017, 6531, 6531, 6531, 6531, 6531, 6531, 6533, 6533, 6533, 6533, 6533, 6533, 6533, 6533, 6533, 6533, 22268,22299,22030,22268,22299,22268, 6533, 6533, 6533, 6533, 6533, 6533,22256,22017,22030,22780,22734,22256,22017,22060, 22060,22060,22060,22060,22060,22060,22060,22060,22272,22032, 23434,22032,22030, 6533, 6533, 6533, 6533, 6533, 6533, 6536, 6536, 6536, 6536, 6536, 6536, 6536, 6536, 6536, 6536,22030, 22601,22613,23434,22058,22382, 6536, 6536, 6536, 6536, 6536, 6536,22272,22382,22032,22058,22058,22058,22058,22058,22058, 22058,22058,22058,22601,22601,22613,22060,22060, 6536,22439, 22440,22032, 6536, 6536, 6536, 6536, 6536, 6536, 6542, 6542, 6542, 6542, 6542, 6542, 6542, 6542, 6542, 6542,22032,22594, 22619,22061,22272,22061, 6542, 6542, 6542, 6542, 6542, 6542, 22061,22439,22440,22594,22061,22061,22061,22061,22061,22061, 22061,22061,22061,22594,22619,22221,22623,22411,22623,22411, 22303, 6542, 6542, 6542, 6542, 6542, 6542, 6545, 6545, 6545, 6545, 6545, 6545, 6545, 6545, 6545, 6545,22555,23207,22221, 22623,23207,22175, 6545, 6545, 6545, 6545, 6545, 6545,22175, 22221,22411,22303,22521,22175,22303,22175,21906,21906,21906, 21906,21906,21906,21906,21906,21906,22175,22773,22555,22208, 6545, 6545, 6545, 6545, 6545, 6545, 6553, 6553,21906, 6553, 6553, 6553, 6553, 6553, 6553, 6553, 6553, 6553,22521, 6553, 6553,22208,22521,22740,22274,22274,21906,22024,22773,22385, 6553, 6553, 6553, 6553, 6553, 6553, 6553,22385,22208,22555, 22999,22208, 6553,22133,22133,22133,22133,22133,22133,22133, 22133,22133,21907,21907,21907,21907,21907,21907,22274,22024, 6553, 6553, 6553, 6558, 6558, 6558, 6558, 6558, 6558, 6558, 6558, 6558, 6558,21907,22740,22999,22274,22024,22508, 6558, 6558, 6558, 6558, 6558, 6558,22391,22024,22508,22260,22396, 22403,21907,22133,22391,22024,22292,22260,22396,22403,22274, 21943,21943,21943,21943,21943,21943, 6558, 6558, 6558, 6558, 6558, 6558, 6560, 6560, 6560, 6560, 6560, 6560, 6560, 6560, 6560,21943,22292,22551,22511,22277,22511,22292, 6560, 6560, 6560, 6560, 6560, 6560,22277,22511,22812,23798,22551,21943, 22804,22428,21908,21908,21908,21908,21908,21908,22260,22428, 22804,21908,22277,22260,22551, 6560, 6560, 6560, 6560, 6560, 6560, 6568, 6568,21908, 6568, 6568, 6568, 6568, 6568, 6568, 6568, 6568, 6568,22277, 6568, 6568,22812,22152,22307,22311, 22468,21908,22152,21908,22152, 6568, 6568, 6568, 6568, 6568, 6568, 6568,23010,22152,22958,23640,22817, 6568,23010,23640, 21909,21909,21909,21909,21909,21909,21909,21909,21909,22298, 22307,22311,22468,22307,22311, 6568, 6568, 6568, 6568, 6569, 6569,21909, 6569, 6569, 6569, 6569, 6569, 6569, 6569, 6569, 6569,22176, 6569, 6569,22958,22176,22298,22817,22420,21909, 22176,22298,22176, 6569, 6569, 6569, 6569, 6569, 6569, 6569, 21932,22302,22306,22310,22406, 6569,22420,22478,22496,23253, 22743,21932,21932,21932,21932,21932,21932,21932,21932,21932, 22518,23253,23865, 6569, 6569, 6569, 6569,22420,22302,22306, 22310,22406,21932,22302,22306,22310,22406,22743,22518,22478, 22496, 6569, 6579, 6579,22518, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6579, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 6581, 6581,22939,22421,23871,22939,22462, 22489, 6581, 6581, 6581, 6581, 6581, 6581,22462,22489,22436, 23594,22545,23594,22939,22421,21923,21923,21923,21923,21923, 21923,22483,22421,22545,21923,22407,22483,22436, 6581, 6581, 6581, 6581, 6581, 6581, 6584,22421,21923,21950,21950,21950, 21950,21950,21950,22436,22483, 6584, 6584, 6584, 6584, 6584, 6584, 6584, 6584, 6584,21923,22469,21923,22407,21950,22545, 22407, 6584, 6584, 6584, 6584, 6584, 6584,22139,22139,22139, 22139,22139,22139,22139,22139,22139,21950,22134,22134,22134, 22134,22134,22134,22134,22134,22134,22472,22469, 6584, 6584, 6584, 6584, 6584, 6584, 6585,22835, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585, 6585,22835,23230,23230,23230, 23203,22469, 6585, 6585, 6585, 6585, 6585, 6585,22472,22417, 22422,22472,22480,22422,22139,22479,22134,22138,22138,22138, 22138,22138,22138,22138,22138,22138,22138,22417,22422, 6585, 6585, 6585, 6585, 6585, 6585, 6588, 6588, 6588, 6588, 6588, 6588, 6588, 6588, 6588,22480,22549,22417,22479,22505,22422, 22610, 6588, 6588, 6588, 6588, 6588, 6588,22505,22610,23203, 22775,23457,23457,22775,22505,21993,21993,21993,21993,21993, 21993,21993,21993,21993,22480,22479,22775,22549, 6588, 6588, 6588, 6588, 6588, 6588, 6604, 6604,21993, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6604, 6606, 6606, 6606, 6606, 6606, 6606, 6606, 6606, 6606, 6606,22467,23247,23247, 23247,23560,22655, 6606, 6606, 6606, 6606, 6606, 6606,22027, 22027,22027,22550,22556,22430,22553,22430,21924,21924,21924, 21924,21924,21924,21924,21924,21924,22655,22559,22553,22467, 6606, 6606, 6606, 6606, 6606, 6606, 6609,22426,21924,22426, 22430,22523,22732,22027,22550,22556,22553, 6609, 6609, 6609, 6609, 6609, 6609, 6609, 6609, 6609,21924,22430,22430,22559, 23560,22027,24000, 6609, 6609, 6609, 6609, 6609, 6609,22027, 22467,22426,22732,22523,22426,22446,23319,22446,22027,22140, 22140,22140,22140,22140,22140,22140,22140,22140,22140,22723, 6609, 6609, 6609, 6609, 6609, 6609, 6610,22723, 6610, 6610, 6610, 6610, 6610, 6610, 6610, 6610, 6610, 6610,22523,22446, 22808,23319,22446,22513, 6610, 6610, 6610, 6610, 6610, 6610, 22437,22145,22513,22145,22557,22567,22140,22567,22145,22477, 22481,22140,22145,22145,22567,22145,22673,22513,22437,22145, 22808, 6610, 6610, 6610, 6610, 6610, 6610, 6613, 6613, 6613, 6613, 6613, 6613, 6613, 6613, 6613,22557,23339,24001,22437, 22673,22477,22481, 6613, 6613, 6613, 6613, 6613, 6613,21933, 22481,22141,22141,22141,22141,22141,22141,22141,22141,22141, 21933,21933,21933,21933,21933,21933,21933,21933,21933,22593, 6613, 6613, 6613, 6613, 6613, 6613, 6649,22477,22557,23339, 24006,21933,21945,21945,21945,21945,21945,21945,21945,21945, 21945, 6649,21949,21949,21949,21949,21949,21949,21949,21949, 21949,22141,22459,21945,22438,22438,22141,22603, 6649,22593, 6649,22460,22031,21949,22031, 6649,22603,22460,23463,23463, 22459,21945,22438,22415,22415,22415,22415,22415,22415,22460, 6649,21949, 6649,22593, 6649,22554,22797, 6649, 6649,22475, 22603,22459, 6649,22438,22415, 6649,22031, 6649,22459, 6649, 22460, 6649, 6649, 6649, 6650, 6650,21952,21952,21952,21952, 21952,21952,22415,22554,22031,21952,22554,22419,22452,22452, 22452,22719,22419,22475,22031,22572,22572,21952,22517,22719, 22719,22031,22031,22797,24007,22572, 6650,21963,22797,22452, 22419,22475,22558, 6650,22611,21952,22517,21952,21963,21963, 21963,21963,21963,21963,21963,21963,21963,22452, 6650,22793, 6650,22419, 6650,22611,22475, 6650, 6650,22517,22611,21963, 6650,22544,21965, 6650,22558, 6650,22454, 6650,22454, 6650, 6650, 6650, 6651,21965,21965,21965,21965,21965,21965,22612, 22793,22544,21965,22296,22296,22296,22296,22296,22296,22296, 22296,22296,22454,22544,21965,23011,22612,23870,22573,22573, 22537,23011,21969,22612, 6651,22558,22474,22538,22573,22454, 22454, 6651, 6651,22647,21965,21969,21969,21969,21969,21969, 21969,21969,21969,21969,22537,22522, 6651,22647, 6651,22544, 6651,22596,22538, 6651, 6651,22537,21969,22647, 6651,22596, 22474, 6651,22538, 6651,21969, 6651,22474, 6651, 6651, 6651, 6652,22473, 6652,23569,23569,22596,22696,22522,22474, 6652, 22318,22318,22318,22318,22318,22318,22318,22318,22318,23870, 22354,22354,22354,22354,22354,22354,22354,22354,22354,22474, 22597,22536,22536,22536, 6652,22473,22354,22522,22597,22696, 22954, 6652,22522,22387,22387,22387,22387,22387,22387,22387, 22387,22387,22614,22473,22597,22614, 6652,22576, 6652,22387, 6652,22354,22576, 6652, 6652,22536,22954,22576, 6652,22576, 22527, 6652,22529, 6652,22473, 6652,22614, 6652, 6652, 6652, 6653,22473,22823,22536,22387,22414,22414,22414,22414,22414, 22414,22414,22414,22414,22416,22416,22416,22416,22416,22416, 22536,22552,22527,22416,22529,23410,22414,22581,22581,22823, 23057,22552, 6653,22566,22552,22416,22577,22581,22566, 6653, 22525,22577,23057,22599,22414,23410,22577,23057,22527,22529, 22627,22599,22552,22416, 6653,22416, 6653,22527, 6653,22529, 22525, 6653, 6653,22627,23666,22566, 6653,22599, 6653, 6653, 22566, 6653,22525, 6653,22627, 6653, 6653, 6653, 6654,22431, 22431,22431,22431,22431,22431,22431,22431,22431,22432,22432, 22432,22432,22432,22432,22435,22435,22435,22435,22435,23666, 22431,22582,22582, 6654,22606,22766,22543,22525,22606,22432, 6654,22582,22710,22624,22766,22435,22825, 6654,22431,22606, 22433,22433,22433,22433,22433,22433,22543,22432,22606,22433, 22585,22608, 6654,22435, 6654,22585, 6654,22710,22543, 6654, 6654,22433,22585,24008, 6654,22710,23436, 6654,22825, 6654, 22539, 6654,22539, 6654, 6654, 6654, 6655,22624,22608,22433, 22543,22433,22434,22434,22434,22434,22434,22434,22434,22434, 22434,22657,22448,22448,22448,22448,22448,22448,22448,22448, 22448,22624,22608,22434,22539,22604,22657,23436, 6655,22609, 22816,22604,22464,22448,22657, 6655,22617,22609,22675,22604, 22816,22434,22539,22464,22464,22464,22464,22464,22675,22604, 6655,22448, 6655,22609, 6655,23743,22617, 6655, 6655,22539, 22617,23743, 6655, 6655,22464, 6655,22441, 6655,24009, 6655, 22675, 6655, 6655, 6655, 6657,24010, 6657,22441,22441,22441, 22441,22441,22441, 6657,22616,22840,22441, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657, 6657,22840,22705,22441,22501, 22501,22501,22501,22501,22501,22501,22501,22501, 6657,22615, 22733,22616,22615,22809,22809, 6657,22524,22615,22441,22449, 22449,22449,22449,22449,22449,22449,22449,22449,22705,22616, 6657,23108, 6657,22615, 6657,22616,22524, 6657, 6657,22705, 22449,23108, 6657,22733,24012, 6657,22809, 6657,22524, 6657, 22598, 6657, 6657, 6657, 6670,22540,22524,22540,22449,22450, 22450,22450,22450,22450,22455,22455,22455,22455,22455,22455, 22455,22455,22455,22661,22456,22456,22456,22456,22456,22456, 22450,22618,22565,22524,22595,22455, 6670,22565,22595,22540, 22964,22661,24013, 6670,22598,22456,22618,22598,22450,22964, 22661,22760,22598,22455,22595,22618,23013,22540, 6670,22760, 6670,22628, 6670,22456,22565, 6670, 6670,22628,22598,22565, 6670,23013,22677, 6670,22540, 6670,22565, 6670,22595, 6670, 6670, 6670, 6671,22463,22677,22628,22646,23013,22786,22620, 22620, 6671,22465,22677,22463,22463,22463,22463,22463,22463, 22463,22463,22463,22465,22465,22465,22465,22465,22465,22465, 22465,22465,22620,22620, 6671,22463,23378,22466,22541,22708, 22541, 6671,22622,22626,22465,22622,22646,22708,22466,22466, 22466,22466,22466,22466,22622,22626, 6671,22708, 6671,22925, 6671,22786,22786, 6671, 6671,22664,22622,22626, 6671,22466, 22646, 6671,22541, 6671,22664, 6671,23378, 6671, 6671, 6671, 6672,22470,22640,22495,22495,22495,22495,22495,22495, 6672, 22541,22925,22495,22664,22470,22470,22470,22470,22470,22470, 22470,22470,22470,22470,22495,22640,22640,22541,22541,22776, 23107,22600, 6672,22541,22713,22470,22713,22776,22600, 6672, 22654,22670,22713,22600,22495,23158,22510,22526,22510,22510, 22510,22510,22510,22510, 6672,22600, 6672,22510, 6672,23107, 22625, 6672, 6672,22625,22670,22670, 6672,22526,22625, 6672, 22742, 6672,22721, 6672,23158, 6672, 6672, 6672, 6673,22526, 22721,22534,22534,22534,22625,22654,22721,22507, 6673,22507, 22507,22507,22507,22507,22507,22507,22507,22507,22507,24014, 22796,22742,22671,22534,22654,22526,22621,22683,22796,22654, 6673,22671,22742,22683,22526,22534,22509, 6673,22509,22509, 22509,22509,22509,22509,22509,22509,22509,22509,22535,22535, 22535,22683, 6673,22534, 6673,22671, 6673,22648,22630, 6673, 6673,22648,22795,23063, 6673,22795,22878, 6673,23063, 6673, 22534, 6673,22621, 6673, 6673, 6673, 6674,22648,22795,22621, 22981,22688,22535,22878,22621,24039, 6674, 6674, 6674, 6674, 6674, 6674, 6674, 6674, 6674, 6674,22621,22649,22629,22650, 22535,22648,22630,22659,22629,22649,22878,22650, 6674,22630, 22535,22629,22639,22981,22630, 6674,22659,22535,22535,22639, 22652,22649,22629,22650,22639,22745,22630,22659,22652,22709, 6674,22709, 6674,22745, 6674,22688,22639, 6674, 6674,22709, 22709,22967, 6674,22745,22652, 6674,22688, 6674,23447, 6674, 22967, 6674, 6674, 6674, 6675, 6675, 6675, 6675, 6675, 6675, 6675, 6675, 6675,22637,22637,22637,22637,22637,22637,22637, 22637,22637,22638,22638,22638,22638,22638,22638,22638,22638, 22638,22651,22669,22880,23447,22880,22642,22642,22642,22642, 22642,22642,22642,22642,22642,22798,22798,22722,22663, 6675, 22669,22798,22678,22679,22678,22722,22722,22663, 6675,22669, 22680,22701,22738,22680,22637,22663, 6675,22880,22680, 6675, 6679,22827, 6679,22638,22641,22651,22678,22669,22651, 6679, 22700,22663, 6679,22651,22680,22641,22641,22641,22641,22641, 22641,22641,22641,22641,22642,22701,22738,22679,22681,22651, 22701,22738,23336,22827, 6679,22737,22827,22700,23199,22836, 22681, 6679,22643,22643,22643,22643,22643,22643,22643,22643, 22643,22679,22681,23603,22685,23603, 6679,22682, 6679,22684, 6679,22700,22737, 6679, 6679,22684,22836,23199, 6679,23336, 22682, 6679,22684, 6679,22711, 6679,22715, 6679, 6679, 6679, 6680,22682, 6680,22684,22715,22712,22737,22715,22720, 6680, 22714,22712, 6680,22712,22720,22750,22714,22750,22685,22643, 22643,22711,22720,22750,22714,22685,22747,22711,22716,22714, 22685,22716,22720,22717, 6680,22711,22717,22815,22717,22716, 22724, 6680,22685,22725,22717,22724,22726,23249,24040,22726, 22845,22747,23249,22724,22814,22726, 6680,22726, 6680,22747, 6680,22845,22724, 6680, 6680,22718,23609,23609, 6680, 6680, 22815, 6680,22814, 6680, 6680, 6680,22815, 6680, 6680, 6680, 6704, 6704, 6704, 6704, 6704, 6704, 6704, 6704, 6704, 6704, 6704,22748,22718,22814,22749,22725,22725,22746,22718,22746, 22749,22725,22749,22725,22752,22756,22718,22746,22746,22841, 22718,22751,22752,22756,22756,22752,22753,22751,22748,22753, 22763,23252,24045,22763,22748,22751,23252,22753, 6704,22763, 22751,22763,22748, 6704, 6721, 6721,22841, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6721, 6723, 6723, 6723, 6723, 6723, 6723, 6723, 6723, 6723, 6723,22784,23357,22846, 24046,22975, 6723, 6723, 6723, 6723, 6723, 6723, 6723,22754, 22975,22758,22754,22759,22754,22762,22850,22870,22755,22758, 22754,22759,22759,23357,22777,22758,22846,22850,22870,22777, 6723, 6723, 6723, 6723, 6723, 6723, 6725, 6725, 6725, 6725, 6725, 6725, 6725, 6725, 6725,22755,23025,22871,23556,23025, 22784,22755, 6725, 6725, 6725, 6725, 6725, 6725,22821,22755, 22784,22782,23025,22755,22781,22781,22821,22762,22762,22782, 22781,22777,22781,22762,22871,22762,22777,23556,22782, 6725, 6725, 6725, 6725, 6725, 6725, 6731, 6731, 6731, 6731, 6731, 6731, 6731, 6731, 6731,22757,22826,22946,22953,22973,22802, 22757, 6731, 6731, 6731, 6731, 6731, 6731,22802,22757,22801, 22801,22811,22811,22811,23758,22801,22802,22801,22757,22973, 23758,23254,22826,22946,22953,22893,22893,22826, 6731, 6731, 6731, 6731, 6731, 6731, 6734, 6734, 6734, 6734, 6734, 6734, 6734, 6734, 6734, 6734,22761,22811,22973,23254,23269,22761, 6734, 6734, 6734, 6734, 6734, 6734,22813,22761,22893,22831, 22834,22839,22844,22811,22849,22813,22761,22831,22834,22839, 22844,23274,22849,23411,22813,23269,22896, 6734, 6734, 6734, 6734, 6734, 6734, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738, 6738,23279,22891,22896,22813,22896,22853,23274, 6738, 6738, 6738, 6738, 6738, 6738,22853,22859,22859,22859,22859, 22859,22859,22859,22859,22859,22860,22863,22869,23411,23279, 23355,23284,22859,22860,22863,22869, 6738, 6738, 6738, 6738, 6738, 6738, 6741,22891, 6741, 6741, 6741, 6741, 6741, 6741, 6741, 6741, 6741, 6741,23355,22891,23376,22859,23284,22918, 6741, 6741, 6741, 6741, 6741, 6741,22877,22877,22877,22877, 22877,22877,22877,22877,22877,22879,22913,22918,22922,22918, 23376,22884,22884,22884,22884,22884,22887, 6741, 6741, 6741, 6741, 6741, 6741, 6748, 6748, 6748, 6748, 6748, 6748, 6748, 6748, 6748,22884,22919,22887,24047,22945,22877,22913, 6748, 6748, 6748, 6748, 6748, 6748,22879,22888,22945,22922,22888, 22884,22919,22936,22882,23655,22882,22913,22887,23655,22919, 22922,22892,22879,22892,22888,22889, 6748, 6748, 6748, 6748, 6748, 6748, 6751, 6751, 6751, 6751, 6751, 6751, 6751, 6751, 6751, 6751,22882,22889,22936,22888,22894,22882, 6751, 6751, 6751, 6751, 6751, 6751,22890,22892,22894,22909,22889,22923, 23058,22892,22890,24048,22889,23058,22936,22909,22923,22911, 23058,22911,22890,22900,22901, 6751, 6751, 6751, 6751, 6751, 6751, 6755, 6755, 6755, 6755, 6755, 6755, 6755, 6755, 6755, 6755,22900,22901,22890,23006,22912,22894, 6755, 6755, 6755, 6755, 6755, 6755,22911,22910,22912,23006,22909,22923,22911, 22900,22927,22929,22901,22910,22940,23020,23368,22886,22886, 22886,22886,22886,22886, 6755, 6755, 6755, 6755, 6755, 6755, 6759, 6759, 6759, 6759, 6759, 6759, 6759, 6759, 6759,22886, 23414,23006,22927,23368,22910,22912, 6759, 6759, 6759, 6759, 6759, 6759,22929,22903,22941,22940,23020,22886,23414,22982, 23414,22940,23474,23488,22929,23020,22927,22902,22895,22895, 22895,22903,22902, 6759, 6759, 6759, 6759, 6759, 6759, 6762, 6762, 6762, 6762, 6762, 6762, 6762, 6762, 6762, 6762,22895, 22902,22982,22903,22920,22941, 6762, 6762, 6762, 6762, 6762, 6762,22905,22920,22921,22905,22944,22985,22895,23012,22982, 23488,22902,22921,22944,23474,23488,23012,22941,22930,22905, 22920,22921, 6762, 6762, 6762, 6762, 6762, 6762, 6766, 6766, 6766, 6766, 6766, 6766, 6766, 6766, 6766, 6766,22985,23012, 22905,22920,22921,23109, 6766, 6766, 6766, 6766, 6766, 6766, 22930,22947,22972,23109,22972,23581,22906,23018,22930,22950, 23581,22947,22906,22972,22906,22898,22898,22898,22898,22898, 22898, 6766, 6766, 6766, 6766, 6766, 6766, 6770, 6770, 6770, 6770, 6770, 6770, 6770, 6770, 6770,22898,22934,22906,23018, 23159,22947,22965, 6770, 6770, 6770, 6770, 6770, 6770,22950, 23159,22965,23160,23039,22898,22906,23014,23014,22965,23016, 23016,22950,23160,23018,23756,22906,22917,22917,22917,22934, 6770, 6770, 6770, 6770, 6770, 6770, 6773, 6773, 6773, 6773, 6773, 6773, 6773, 6773, 6773, 6773,23756,22917,23014,22977, 22969,23016, 6773, 6773, 6773, 6773, 6773, 6773,22977,22969, 23003,23056,23583,22934,23019,22917,22969,23583,23039,24049, 22977,23039,23056,22931,22916,22916,22916,22916,22916, 6773, 6773, 6773, 6773, 6773, 6773, 6777, 6777, 6777, 6777, 6777, 6777, 6777, 6777, 6777, 6777,22916,23019,22977,22931,22970, 23003, 6777, 6777, 6777, 6777, 6777, 6777,22931,22970,22948, 23065,24051,23090,22916,23349,23065,23035,23090,23090,22948, 23065,23035,23003,22970,22938,22931,22948,22986, 6777, 6777, 6777, 6777, 6777, 6777, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 6778, 6778,22938,23430,22931,23349,24052,22948, 6778, 6778, 6778, 6778, 6778, 6778,22938,23009,23035,22986, 22908,22960,22960,22960,22960,22960,22960,22960,22960,22960, 23430,22908,22908,22908,22908,22908,22908, 6778, 6778, 6778, 6778, 6778, 6778, 6780, 6780, 6780, 6780, 6780, 6780, 6780, 6780, 6780,22908,22937,22986,23061,23325,23009,23882, 6780, 6780, 6780, 6780, 6780, 6780,22961,22961,22961,22961,22961, 22961,22961,22961,22961,23061,23009,23384,23384,23384,23061, 22933,22932,22998,23325,22991,22937, 6780, 6780, 6780, 6780, 6780, 6780, 6783, 6783, 6783, 6783, 6783, 6783, 6783, 6783, 6783,22952,22952,22952,22952,22952,22952, 6783, 6783, 6783, 6783, 6783, 6783, 6783,22933,22932,22991,22998,22937,23047, 23050,23116,22952,22998,22932,23564,23116,23116,23564,23882, 23050,23050,22933,22932,22983, 6783, 6783, 6783, 6783, 6783, 6783, 6784, 6784, 6784, 6784, 6784, 6784, 6784, 6784, 6784, 6784,22991,22983,22904,22932,22933,23049, 6784, 6784, 6784, 6784, 6784, 6784,23051,23033,23040,23047,23033,23040,23114, 23926,22904,23049,23051,23051,22983,24053,23047,23114,22904, 23033,23040,23926,23049, 6784, 6784, 6784, 6784, 6784, 6784, 6789, 6789,22904, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6789, 6799, 6799,22992, 6799, 6799, 6799, 6799, 6799, 6799, 6799, 6799, 6799,22949, 6799, 6799,22935,23255, 23320,23310,23320,23048,23055,22949,23048, 6799, 6799, 6799, 6799, 6799, 6799, 6799,23048,23055,23055,22992,24088, 6799, 22949,22883,22883,22883,22883,22883,22883,22883,22883,22883, 22935,23999,23255,23310,23320,22949,22935, 6799, 6799, 6799, 6800, 6800,22883, 6800, 6800, 6800, 6800, 6800, 6800, 6800, 6800, 6800,22992, 6800, 6800,23999,23015,22935,23337,23255, 22883,22987,23054,23101, 6800, 6800, 6800, 6800, 6800, 6800, 6800, 6800,23054,23054,23101,23101, 6800,22993,22885,22885, 22885,22885,22885,22885,22885,22885,22885,23015,23604,23374, 23337,23604,24099,22987, 6800, 6800, 6800, 6804, 6804,22885, 6804, 6804, 6804, 6804, 6804, 6804, 6804, 6804, 6804,22993, 6804, 6804,24245,23313,23004,23313,23374,22885,23106,22987, 23015, 6804, 6804, 6804, 6804, 6804, 6804, 6804,22987,22993, 23259,23259,23506, 6804,23004,22897,22897,22897,22897,22897, 22897,22897,22897,22897,22993,24086,23004,23313,23259,23506, 23313, 6804, 6804, 6804, 6805, 6805,22897, 6805, 6805, 6805, 6805, 6805, 6805, 6805, 6805, 6805,23007, 6805, 6805,23259, 23066,23106,23350,23095,22897,23066,23106,23106, 6805, 6805, 6805, 6805, 6805, 6805, 6805, 6805,24086,23004,23053,23095, 6805,23066,22899,22899,22899,22899,22899,22899,23053,23053, 23095,22899,23742,23053,23350,24441,23007,23519, 6805, 6805, 6805, 6808, 6808,22899, 6808, 6808, 6808, 6808, 6808, 6808, 6808, 6808, 6808,23008, 6808, 6808,23140,23321,23321,23007, 23742,22899,23140,22899,23140, 6808, 6808, 6808, 6808, 6808, 6808, 6808,23093,23059,23052,23052,23102, 6808,23059,22914, 22914,22914,22914,22914,22914,23059,23052,23102,22914,23519, 23321,23052,23157,23008,23052, 6808, 6808, 6808, 6809, 6809, 22914, 6809, 6809, 6809, 6809, 6809, 6809, 6809, 6809, 6809, 23067, 6809, 6809,24370,23346,23067,23008,23369,22914,23093, 22914,23067, 6809, 6809, 6809, 6809, 6809, 6809, 6809, 6809, 23093,23330,23346,24370, 6809,23017,22915,22915,22915,22915, 22915,22915,22915,22915,22915,23157,24506,23369,23346,23330, 23157,23157, 6809, 6809, 6809, 6812, 6812,22915, 6812, 6812, 6812, 6812, 6812, 6812, 6812, 6812, 6812,23017, 6812, 6812, 23774,23774,23330,23017,23315,22915,23112,23412,23075, 6812, 6812, 6812, 6812, 6812, 6812, 6812,23075,23112,23075,23075, 23600, 6812,23163,22951,22951,22951,22951,22951,22951,22951, 22951,22951,23017,23163,24002,23060,23315,23412,24002, 6812, 6812, 6812, 6813, 6813,22951, 6813, 6813, 6813, 6813, 6813, 6813, 6813, 6813, 6813,23315, 6813, 6813,22962,22962,22962, 22962,22962,22962,22962,22962,22962, 6813, 6813, 6813, 6813, 6813, 6813, 6813, 6813,22976,23077,23258,23077, 6813,23600, 22995,22995,22995,22976,23060,23258,23077,23064,23060,23060, 22976,23680,23772,23060,23772,22976, 6813, 6813, 6813, 6815, 6815,22988, 6815, 6815, 6815, 6815, 6815, 6815, 6815, 6815, 6815,22989, 6815, 6815,22995,23323,23323,23338,23680,23338, 23200,22988,22976, 6815, 6815, 6815, 6815, 6815, 6815, 6815, 23200,22989,22995,22988,23079, 6815,23064,23068,22996,22996, 22996,23064,23068,22989,23079,23079,23064,23078,23323,22995, 23068,23338,23078, 6815, 6815, 6815, 6816, 6816,23078, 6816, 6816, 6816, 6816, 6816, 6816, 6816, 6816, 6816,22988, 6816, 6816,22989,22996,24696,23362,23323,23366,23673,22989,22989, 6816, 6816, 6816, 6816, 6816, 6816, 6816, 6816,23069,24729, 22996,23080, 6816,23069,23071,22997,22997,22997,23069,23071, 23080,23080,23002,23071,23002,23201,23362,22996,23366,23673, 6816, 6816, 6816, 6817, 6817,23201, 6817, 6817, 6817, 6817, 6817, 6817, 6817, 6817, 6817,23119, 6817, 6817,23088,22997, 23119,23119,23119,23088,23347,23096,23002, 6817, 6817, 6817, 6817, 6817, 6817, 6817,22907,23096,23096,22997,23586, 6817, 6817,24038,23347,23586,23002,22907,22907,22907,22907,22907, 22907,22907,22907,22907,22997,22997,23088, 6817, 6817, 6817, 22997,23002,23141,23347,23141,24038,22907, 6817, 6818, 6818, 23141, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 22990, 6818, 6818,23765, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818, 6818,24759, 22990,23765,23094,23122, 6818,23094,23000,23001,23000,23001, 23070,23335,22990,23094,23070,23070,23122,23685,23122,23070, 23765,23070, 6818, 6818, 6818, 6819, 6819,23122, 6819, 6819, 6819, 6819, 6819, 6819, 6819, 6819, 6819,23000, 6819, 6819, 23000,23001,24820,23335,23685,23074,23204,22990,23074, 6819, 6819, 6819, 6819, 6819, 6819, 6819,23074,23204,23000,23001, 23086, 6819,23074,23335,23117,23086,23268,23000,23001,23117, 23076,23086,23086,23076,23117,23000,23001,23268,23076, 6819, 6819, 6819, 6820, 6820,23076, 6820, 6820, 6820, 6820, 6820, 6820, 6820, 6820, 6820,23076, 6820, 6820,23151,23036,24146, 23005,23748,24146,23036,23097,23151, 6820, 6820, 6820, 6820, 6820, 6820, 6820,22924,23097,23097,23167,23771, 6820, 6820, 23005,23167,23167,23136,22924,22924,22924,22924,22924,22924, 23036,23136,23005,22924,23168,23036, 6820, 6820, 6820,23168, 23748,23136,23036,23771,23168,22924, 6820, 6822, 6822,23260, 6822, 6822, 6822, 6822, 6822, 6822, 6822, 6822, 6822,23100, 6822, 6822,24697,23580,23580,22924,23365,23005,23580,23100, 23100, 6822, 6822, 6822, 6822, 6822, 6822, 6822,23072,23260, 23072,23072,23073, 6822,23113,23073,23072,23089,23260,23072, 23073,23087,23089,23089,23113,23113,23072,23073,23365,23089, 24133, 6822, 6822, 6822, 6823, 6823,23073, 6823, 6823, 6823, 6823, 6823, 6823, 6823, 6823, 6823,23127, 6823, 6823,24697, 23198,23127,24133,23801,23365,23098,23098,23127, 6823, 6823, 6823, 6823, 6823, 6823, 6823, 6823,23087,23098,23099,23087, 6823,23126,23098,23126,23087,23098,23124,23435,23099,23099, 23440,23440,23126,23099,23124,23087,23124,23124, 6823, 6823, 6823, 6827, 6827,23801, 6827, 6827, 6827, 6827, 6827, 6827, 6827, 6827, 6827,23198, 6827, 6827,24915,23435,23198,23198, 23138,23121,23440,23121,23131, 6827, 6827, 6827, 6827, 6827, 6827, 6827,23121,23123,23121,23192,23123, 6827,23354,23121, 23182,23128,23182,23192,23123,23138,23125,23354,23182,23125, 23123,23128,23128,23138,23125, 6827, 6827, 6827, 6828, 6828, 23125, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 23125, 6828, 6828,23208,23872,23872,23132,23132,23208,23208, 23132,23131, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 6828, 23132,23131,23142,23137, 6828,23137,23759,23144,23142,23143, 23144,23132,23131,23137,23137,23139,23142,23143,23144,23261, 23143,23142, 6828, 6828, 6828, 6832, 6832,23261, 6832, 6832, 6832, 6832, 6832, 6832, 6832, 6832, 6832,23147, 6832, 6832, 23442,23759,23139,24939,23443,23147,23147,23504,23139, 6832, 6832, 6832, 6832, 6832, 6832, 6832,23139,23145,23149,23209, 23145, 6832,23145,23153,23209,23150,23149,23164,23145,23209, 23148,23442,23149,23150,23150,23443,23148,23164,23164, 6832, 6832, 6832, 6833, 6833,23148, 6833, 6833, 6833, 6833, 6833, 6833, 6833, 6833, 6833,23148, 6833, 6833,23170,23504,23504, 23179,23442,23170,23170,23170,23391, 6833, 6833, 6833, 6833, 6833, 6833, 6833, 6833,23391,23153,23153,23154, 6833,23152, 23154,23153,23188,23153,23152,23179,23154,23267,23154,23146, 23188,23188,23152,23179,24611,23267, 6833, 6833, 6833, 6836, 6836,23152, 6836, 6836, 6836, 6836, 6836, 6836, 6836, 6836, 6836,23181, 6836, 6836,24041,23235,23146,23181,24041,23181, 23235,23235,23146, 6836, 6836, 6836, 6836, 6836, 6836, 6836, 23146,23172,23177,23172,23146, 6836,23178,23184,23178,24611, 23177,23644,23172,23191,23172,23184,23178,23178,23184,23172, 23177,23191,23191, 6836, 6836, 6836, 6837, 6837,23644, 6837, 6837, 6837, 6837, 6837, 6837, 6837, 6837, 6837,23180, 6837, 6837,23211,23575,23637,23637,23637,23211,23211,23211,23205, 6837, 6837, 6837, 6837, 6837, 6837, 6837, 6837,23183,23205, 23205,23161, 6837,23557,23183,23180,23217,23185,24464,23161, 23185,23180,23183,23557,23161,23217,23217,23183,23185,23180, 6837, 6837, 6837, 6839, 6839,23161, 6839, 6839, 6839, 6839, 6839, 6839, 6839, 6839, 6839,23186, 6839, 6839,23186,23575, 23186,23173,24464,23473,23575,23318,23186, 6839, 6839, 6839, 6839, 6839, 6839, 6839,23173,23232,23173,23318,23190, 6839, 23232,23226,23226,23227,23227,23173,23190,22928,23272,22928, 6839,23226,23190,23227,23473,23318,23272, 6839, 6839, 6839, 22928,22928,22928,22928,22928,22928,22928,22928,22928,23187, 23579,23473,23579,23232,23473,25070,23318,23579, 6839, 6840, 6840,22928, 6840, 6840, 6840, 6840, 6840, 6840, 6840, 6840, 6840,23394, 6840, 6840,23873,23873,23187,23427,23214,23194, 23394,23273,23187, 6840, 6840, 6840, 6840, 6840, 6840, 6840, 23187,23214,23273,23214,23187, 6840,23195,23427,23278,23195, 23222,23222,23214,23277,23189,23195,23222,23195,23222,23278, 23189,23277,23427, 6840, 6840, 6840, 6841, 6841,23189, 6841, 6841, 6841, 6841, 6841, 6841, 6841, 6841, 6841,23189, 6841, 6841,23194,23194,23589,23596,23998,23998,23194,23589,23194, 6841, 6841, 6841, 6841, 6841, 6841, 6841, 6841,23223,23213, 25075,23213, 6841,23193,23243,23243,23223,23283,23193,23231, 23213,23282,23213,23596,23243,23223,23193,23213,23283,23282, 6841, 6841, 6841, 6842, 6842,23193, 6842, 6842, 6842, 6842, 6842, 6842, 6842, 6842, 6842,23287, 6842, 6842,23239,23239, 23620,23620,24250,23287,23239,23620,23239, 6842, 6842, 6842, 6842, 6842, 6842, 6842,23231,23240,23234,23248,23202, 6842, 23393,23234,23234,23240,23244,23244,23202,23231,23234,23393, 24250,23202,23240,23231,23244,23406,23393, 6842, 6842, 6842, 6843, 6843,23202, 6843, 6843, 6843, 6843, 6843, 6843, 6843, 6843, 6843,23288, 6843, 6843,23367,23406,23257,23257,23324, 23324,23367,23248,23288, 6843, 6843, 6843, 6843, 6843, 6843, 6843, 6843,23251,23367,23291,23248, 6843,23251,23297,23299, 23302,23248,23291,23406,23251,23306,23297,23324,23302,23690, 23299,23257,23324,23306, 6843, 6843, 6843, 6847, 6847,23358, 6847, 6847, 6847, 6847, 6847, 6847, 6847, 6847, 6847,23257, 6847, 6847,23353,23415,23415,23363,23690,23303,23257,23358, 23396, 6847, 6847, 6847, 6847, 6847, 6847, 6847,23303,23396, 24375,23358,23373, 6847,23298,23298,23298,23298,23298,23298, 23298,23298,23298,23373,23353,24375,23415,23363,23317,25092, 23298, 6847, 6847, 6847, 6848, 6848,23363, 6848, 6848, 6848, 6848, 6848, 6848, 6848, 6848, 6848,23317, 6848, 6848,23372, 23317,23353,23322,23322,23790,23298,23558,23372, 6848, 6848, 6848, 6848, 6848, 6848, 6848, 6848,23558,23317,23331,23403, 6848,23331,23314,23314,23314,23314,23314,23314,23403,23582, 23790,23314,24037,24037,23582,23322,23331,23582, 6848, 6848, 6848, 6851, 6851,23314, 6851, 6851, 6851, 6851, 6851, 6851, 6851, 6851, 6851,23322, 6851, 6851,24692,23331,23652,23652, 23652,23314,23659,23314,23399, 6851, 6851, 6851, 6851, 6851, 6851, 6851,23437,23399,23316,23333,23561, 6851,23334,23659, 23316,23437,23332,23333,23417,23364,23445,23561,23399,23334, 23334,23334,23316,23333,23672, 6851, 6851, 6851, 6852, 6852, 23332, 6852, 6852, 6852, 6852, 6852, 6852, 6852, 6852, 6852, 23334, 6852, 6852,23316,23333,23332,23417,23364,23445,24692, 23672,23332, 6852, 6852, 6852, 6852, 6852, 6852, 6852, 6852, 23584,23348,23348,23672, 6852,23562,23326,23326,23326,23326, 23326,23326,23326,23326,23326,23562,23562,23445,25104,23348, 23364,23417, 6852, 6852, 6852, 6854, 6854,23326, 6854, 6854, 6854, 6854, 6854, 6854, 6854, 6854, 6854,23597, 6854, 6854, 23348,23413,23413,23584,23477,23326,23423,23597,23584, 6854, 6854, 6854, 6854, 6854, 6854, 6854,23327,23327,23327,23327, 23327, 6854,23385,23385,23385,23385,23385,23385,23385,23385, 23385,23799, 6854,23340,23413,23340,23477,23327,23423, 6854, 6854, 6854,23328,23328,23328,23328,23328,23328,23328,23328, 23328,23477,23413,23621,23838,23327,23477,23799,23621,23340, 6854, 6855, 6855,23328, 6855, 6855, 6855, 6855, 6855, 6855, 6855, 6855, 6855,23423, 6855, 6855,23340,23340,23939,23939, 23838,23328,23939,23407,23438, 6855, 6855, 6855, 6855, 6855, 6855, 6855,23407,23438,23800,25371,24093, 6855,23352,23329, 23329,23329,23329,23329,23329,23361,23478,23407,23667,23352, 23352,23352,23352,23352,23352, 6855, 6855, 6855, 6856, 6856, 23329, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 23352, 6856, 6856,23800,23695,24093,23432,23700,23329,23361, 23441,23667, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 6856, 23401,23405,23598,23478, 6856,23441,23432,23361,23478,23401, 23405,23695,23598,24015,23700,23361,23401,23405,23432,23478, 24015,23441, 6856, 6856, 6856, 6859, 6859,23667, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6859, 6860,23341, 23341,23341,23341,23341,23341,23341,23341,23341,23433, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860,23351,23418, 23341,23565,24110,24104,23761,25451,23565,23565,23433,23351, 23351,23351,23351,23351,23351,23351,23351,23351,23341,23418, 23433,24104,23761,23605,23761,24110,23416,23416,23605,23605, 23351,23418, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6860, 6864, 6864,23416, 6864, 6864, 6864, 6864, 6864,23571,23418, 6864, 6864, 6864, 23342,23342,23342,23342,23342,23342,23716,23439,23571,24143, 23571, 6864, 6864, 6864, 6864, 6864, 6864, 6864,23439,23571, 23572,23342,23444, 6864,23416,23572,23343,23343,23343,23343, 23343,23343,23359,23716,24143,23343,23572,24253,23439,23342, 24253, 6864, 6864, 6864, 6864, 6865, 6865,23343, 6865, 6865, 6865, 6865, 6865,23601,23444, 6865, 6865, 6865,23345,23345, 23345,23345,23345,23444,23601,23343,23359,23343,23968, 6865, 6865, 6865, 6865, 6865, 6865, 6865, 6865,23360,23419,23345, 23968, 6865,23721,23679,23359,23344,23344,23344,23344,23344, 23344,23344,23344,23344,23679,23479,24472,23345,23419, 6865, 6865, 6865, 6865, 6867,23398,23359,23344,23446,23446,23721, 23419,23360,23360,23398, 6867, 6867, 6867, 6867, 6867, 6867, 6867, 6867, 6867, 6867,23344,23398,23491,23397,23408,23360, 6867, 6867, 6867, 6867, 6867, 6867,23397,23408,24472,23446, 25459,23648,23479,23397,23408,23419,23479,23479,23397,23408, 23360,23479,23398,23479,23501,24131,23648, 6867, 6867, 6867, 6867, 6867, 6867, 6870, 6870, 6870, 6870, 6870, 6870, 6870, 6870, 6870,23421,23491,23446,23397,23408,23409,23491, 6870, 6870, 6870, 6870, 6870, 6870,23501,23409,23381,23648,23381, 23381,23381,23381,23381,23381,23381,23381,23381,23409,23648, 23486,24131,23501,23501,23421,23501, 6870, 6870, 6870, 6870, 6870, 6870, 6873,23381, 6873, 6873, 6873, 6873, 6873, 6873, 6873, 6873, 6873,23420,23431,23409,24352,23684,23381,23559, 6873, 6873, 6873, 6873, 6873, 6873,23454,23559,23684,23421, 23421,23470,23559,23420,23431,23421,23422,23486,23486,23470, 24352,23494,23486,23559,25469,23420,23431, 6873, 6873, 6873, 6873, 6873, 6873, 6877, 6877, 6877, 6877, 6877, 6877, 6877, 6877, 6877,23470,24645,24159,23796,23689,23497,23422, 6877, 6877, 6877, 6877, 6877, 6877,23481,23431,23689,23454,23470, 23420,23420,23470,23678,23454,23481,23420,23476,23494,24159, 23422,23678,23796,23494,23454,23422, 6877, 6877, 6877, 6877, 6877, 6877, 6880,23422, 6880, 6880, 6880, 6880, 6880, 6880, 6880, 6880, 6880, 6880,23497,23518,23694,24645,23476,23497, 6880, 6880, 6880, 6880, 6880, 6880,23460,23694,23476,23526, 23602,23469,23481,23482,23683,23476,23483,23481,23476,23526, 23602,23602,23683,23426,23426,23426,23518, 6880, 6880, 6880, 6880, 6880, 6880, 6883, 6883, 6883, 6883, 6883, 6883, 6883, 6883, 6883,23469,23518,24689,23699,23518,23688,23469, 6883, 6883, 6883, 6883, 6883, 6883,23688,23699,23426,23460,23469, 23482,23480,23469,23483,23460,23482,23526,24689,23483,23482, 23484,23526,23483,23475,23460,23426, 6883, 6883, 6883, 6883, 6883, 6883, 6886, 6886, 6886, 6886, 6886, 6886, 6886, 6886, 6886, 6886,23426,23489,23534,25480,23663,23489, 6886, 6886, 6886, 6886, 6886, 6886,23475,23480,23487,23480,23480,23475, 23492,23663,23674,23480,23475,23484,23480,23484,24176,24176, 24176,23475,23484,23480,23475, 6886, 6886, 6886, 6886, 6886, 6886, 6889, 6889, 6889, 6889, 6889, 6889, 6889, 6889, 6889, 23489,23534,23496,23663,23674,23489,23534, 6889, 6889, 6889, 6889, 6889, 6889,23487,23663,23493,23502,23492,23487,23495, 23492,23487,23492,23502,23502,24251,23502,25510,23492,25664, 23490,24087,23496,23496, 6889, 6889, 6889, 6889, 6889, 6889, 6892, 6892, 6892, 6892, 6892, 6892, 6892, 6892, 6892, 6892, 23496,24251,23537,23496,23704,23693, 6892, 6892, 6892, 6892, 6892, 6892,23493,23693,24087,23704,23495,23493,23615,23498, 23495,23495,23507,23493,23490,23495,24252,23490,23495,23531, 23732,23509,23490, 6892, 6892, 6892, 6892, 6892, 6892, 6895, 6895, 6895, 6895, 6895, 6895, 6895, 6895, 6895,23490,23537, 23498,23523,25724,24087,23537, 6895, 6895, 6895, 6895, 6895, 6895,23498,23732,23509,23698,23508,24252,23498,25738,23507, 23498,23509,23698,23507,23507,23615,23531,23531,23507,23499, 23615,23531, 6895, 6895, 6895, 6895, 6895, 6895, 6898, 6898, 6898, 6898, 6898, 6898, 6898, 6898, 6898, 6898,23523,23707, 23714,23555,23707,23523, 6898, 6898, 6898, 6898, 6898, 6898, 23499,23714,23508,23776,23523,23599,23499,23508,23425,23425, 23425,23510,23776,23599,23508,24310,24310,23499,23599,23707, 23499, 6898, 6898, 6898, 6898, 6898, 6898, 6901, 6901,23599, 6901, 6901, 6901, 6901, 6901, 6901, 6901, 6901, 6901, 6901, 6901, 6901,23425,23510,23555,25741,23647,23720,23510,23555, 23555, 6901, 6901, 6901, 6901, 6901, 6901, 6901,23720,23757, 23425,23576,23757, 6901,23510,23428,23576,23428,23703,23425, 23576,23515,23757,23500,24098,23521,23703,23425,23647,23515, 6901, 6901, 6901, 6901, 6903, 6903,23647, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903, 6903,23428, 23728,24098,23515,23728,23500,23542,23521,23725, 6903, 6903, 6903, 6903, 6903, 6903, 6903,23500,23521,23428,23725,23515, 6903,23500,23515,23521,23500,23522,23521,23527,23529,23791, 23728,25742,23428,23514,23428,23542,23542, 6903, 6903, 6903, 6903, 6903, 6912, 6912, 6912, 6912, 6912, 6912, 6912, 6912, 6912,24071,24071,23542,23540,24071,23542,23522, 6912, 6912, 6912, 6912, 6912, 6912,23514,23791,23578,23795,23524,23528, 23514,23578,23522,23529,23527,23529,23578,23522,23795,23527, 23529,23514,23520,23527,23514, 6912, 6912, 6912, 6912, 6912, 6912, 6915, 6915, 6915, 6915, 6915, 6915, 6915, 6915, 6915, 6915,23540,23753,23532,25751,24388,23540, 6915, 6915, 6915, 6915, 6915, 6915,23520,23753,23524,23528,23533,23520,23524, 23524,23528,23662,23520,23524,23528,23524,23535,23543,24388, 23520,23535,23753,23520, 6915, 6915, 6915, 6915, 6915, 6915, 6919, 6919, 6919, 6919, 6919, 6919, 6919, 6919, 6919, 6919, 23532,23547,25752,23753,23662,23532, 6919, 6919, 6919, 6919, 6919, 6919,23662,23623,23533,23538,23777,23525,23623,23533, 23532,23568,23533,23539,23535,23543,23568,23568,23568,23535, 23543,25558,23547, 6919, 6919, 6919, 6919, 6919, 6919, 6922, 6922, 6922, 6922, 6922, 6922, 6922, 6922, 6922,23777,23547, 23547,24103,23547,23611,24123, 6922, 6922, 6922, 6922, 6922, 6922,23525,23538,23525,23525,23538,23611,23538,23611,23525, 23539,23577,23525,23538,25558,23539,23577,23611,24103,23525, 23577,23539, 6922, 6922, 6922, 6922, 6922, 6922, 6925, 6925, 24123, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6925, 6926, 6926,23544, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 6926, 6926,23608, 6926, 6926,23612,24454,23608,23608, 23608,23612,23570,24454,23570, 6926, 6926, 6926, 6926, 6926, 6926, 6926,23612,23570,23544,23570,24584, 6926,23573,24097, 23570,23587,23573,23573,23587,23544,23587,23573,23626,23573, 24097,23544,23587,23626,23544, 6926, 6926, 6926, 6926, 6927, 6927,24584, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6927, 6932, 6932,23545, 6932, 6932, 6932, 6932, 6932, 6932, 6932, 6932, 6932, 6932, 6932, 6932,23619,23629,23619, 24426,24426,25763,23629,23619,23710, 6932, 6932, 6932, 6932, 6932, 6932, 6932,23710,24134,23545,24102,23588, 6932,23541, 23733,23545,23588,23574,23616,23574,23574,24102,23588,23616, 24722,23574,23545,23616,23574,23545, 6932, 6932, 6932, 6932, 6935,23574, 6935, 6935, 6935, 6935, 6935, 6935, 6935, 6935, 6935, 6935,23733,24722,23595,24134,23868,23633, 6935, 6935, 6935, 6935, 6935, 6935,23633,23633,23541,23633,23868,23713, 23541,23541,23424,23424,23424,23541,23622,23713,23541,23733, 23546,23622,23536,24446,23622, 6935, 6935, 6935, 6935, 6935, 6935, 6936, 6936,23868, 6936, 6936, 6936, 6936, 6936, 6936, 6936, 6936, 6936,23424, 6936, 6936,23424,23595,24132,24446, 23734,23546,23595,23595,23809, 6936, 6936, 6936, 6936, 6936, 6936, 6936,23546,23809,23424,23628,23536, 6936,23546,23536, 23628,23546,23585,23424,23536,23585,23628,23734,24812, 6936, 23585,23424,23734,23738,24132, 6936, 6936, 6936, 6936,23429, 23536,23429,23429,23590,23785,23613,23585,23590,23590,23613, 23613,23738,23590,24812,23613,23590,23613, 6936, 6937, 6937, 23738, 6937, 6937, 6937, 6937, 6937, 6937, 6937, 6937, 6937, 23618, 6937, 6937,23429,23624,23618,23785,23785,24164,23610, 23618,23610, 6937, 6937, 6937, 6937, 6937, 6937, 6937,24164, 23610,23429,23610,23614, 6937,23614,23614,23610,23617,23784, 23429,23614,23625,23617,23614,23625, 6937,23617,23429,23638, 23625,23614, 6937, 6937, 6937,23649,23627,23624,23639,23627, 23630,23627,23624,23639,23630,23630,23625,23627,23812,23630, 24148,23784,23630,24649, 6937, 6938, 6938,23812, 6938, 6938, 6938, 6938, 6938, 6938, 6938, 6938, 6938,23649, 6938, 6938, 23654,24148,23649,23786,23638,23654,23639,25670,23784, 6938, 6938, 6938, 6938, 6938, 6938, 6938,23653,23638,23649,23641, 25670, 6938,23646,23638,23641,23641,23671,23646,23645,23671, 23880,23641,23645,23645,23646,23786,24649,23645,23654, 6938, 6938, 6938, 6941, 6941,23671, 6941, 6941, 6941, 6941, 6941, 6941, 6941, 6941, 6941,23660, 6941, 6941,24406,23660,23660, 24160,23653,23880,23660,23818,23671, 6941, 6941, 6941, 6941, 6941, 6941, 6941,23818,23653,23719,23656,24406, 6941,23661, 23653,23656,23656,23719,23661,23665,23669,23669,23656,23664, 23787,23661,23827,23665,23724,24160, 6941, 6941, 6941,23665, 23665,23827,23724, 6941, 6962, 6962,25764, 6962, 6962, 6962, 6962, 6962, 6962, 6962, 6962, 6962,23731, 6962, 6962,23794, 23669,23664,23787,23735,23731,23735,23664,23794, 6962, 6962, 6962, 6962, 6962, 6962, 6962,23920,24106,23740,23669,24106, 6962,23830,23664,23938,23744,23744,23920,23787,23747,23747, 23830,23920,23938,24555,24106,23740,23669,23735, 6962, 6962, 6962, 6963, 6963,23735, 6963, 6963, 6963, 6963, 6963, 6963, 6963, 6963, 6963,24069, 6963, 6963,23740,23744,23746,23746, 23739,23747,24069,23740,23747, 6963, 6963, 6963, 6963, 6963, 6963, 6963, 6963,24254,24555,23744,24254, 6963,23715,23715, 23715,23715,23715,23715,23715,23715,23715,23845,23845,23788, 24281,23746,23739,23788,23715, 6963, 6963, 6963, 6966, 6966, 23741, 6966, 6966, 6966, 6966, 6966, 6966, 6966, 6966, 6966, 23739, 6966, 6966,23881,23847,23847,24118,23750,23788,23715, 23845,23788, 6966, 6966, 6966, 6966, 6966, 6966, 6966,24281, 23746,23739,23741,23766, 6966,24585,23736,23736,23736,23736, 23736,23736,23736,23736,23736,23881,23773,23847,24118,23750, 23741,23766, 6966, 6966, 6966, 6967, 6967,23736, 6967, 6967, 6967, 6967, 6967, 6967, 6967, 6967, 6967,23750, 6967, 6967, 23789,23741,23766,25779,23847,23736,23768,24585,23773, 6967, 6967, 6967, 6967, 6967, 6967, 6967,23751,23874,23874,23879, 23752, 6967,23751,23876,23768,23737,23737,23737,23737,23737, 23737,23876,23789, 6967,23751,23760,23760,23760,23752, 6967, 6967, 6967,23752,23917,23773,23768,23737,23773,23917,23874, 23789,23879,23879,23917,23876,23751,23760,24316,24364,23752, 24220, 6967, 6968, 6968,23737, 6968, 6968, 6968, 6968, 6968, 6968, 6968, 6968, 6968,23760, 6968, 6968,23805,23805,23805, 23805,23805,23805,23805,23805,23805, 6968, 6968, 6968, 6968, 6968, 6968, 6968, 6968,24364,24220,24316,24082, 6968,23755, 23749,23749,23749,23749,23749,23749,24082,23848,23848,23749, 23755,23755,23755,23755,23755,25096, 6968, 6968, 6968, 6971, 6971,23749, 6971, 6971, 6971, 6971, 6971, 6971, 6971, 6971, 6971,23755, 6971, 6971,24374,23848,23778,25096,23877,23749, 23848,23749,23815, 6971, 6971, 6971, 6971, 6971, 6971, 6971, 24363,23815,24374,23770,23780, 6971,23770,23762,23762,23762, 23762,23762,23762,23762,23762,23762,23815,24363,23875,23877, 23778,23770,23780, 6971, 6971, 6971, 6972, 6972,23762, 6972, 6972, 6972, 6972, 6972, 6972, 6972, 6972, 6972,23778, 6972, 6972,24054,23770,23780,23875,23877,23762,23912,24054,23875, 6972, 6972, 6972, 6972, 6972, 6972, 6972, 6972,23816,23778, 25780,24411, 6972,24166,23763,23763,23763,23763,23763,23763, 23878,23878,23767,23913,23913,24166,24411,23767,23913,23816, 6972, 6972, 6972, 6974, 6974,23763, 6974, 6974, 6974, 6974, 6974, 6974, 6974, 6974, 6974,23767, 6974, 6974,23923,23923, 23912,24085,23878,23763,23923,23912,23816, 6974, 6974, 6974, 6974, 6974, 6974, 6974,24579,24139,23767,24579,23810, 6974, 23814,23764,23764,23764,23764,23764,23764,23810,23910,23814, 23764,24084,24084,24139,23810,24084,23814, 6974, 6974, 6974, 6975, 6975,23764, 6975, 6975, 6975, 6975, 6975, 6975, 6975, 6975, 6975,23924, 6975, 6975,24085,24139,23924,24399,24085, 23764,23821,23764,23820, 6975, 6975, 6975, 6975, 6975, 6975, 6975, 6975,23820,23769,24594,24399, 6975,23828,25797,23820, 23783,24096,23821,23782,23779,23910,23828,23844,24165,24096, 23910,23769,23921,23828, 6975, 6975, 6975, 6976, 6976,23769, 6976, 6976, 6976, 6976, 6976, 6976, 6976, 6976, 6976,23821, 6976, 6976,23769,23779,23783,24165,24594,23782,23779,23844, 23782, 6976, 6976, 6976, 6976, 6976, 6976, 6976,23754,24437, 24437,25873,23783, 6976, 6976,23782,23779,23844,23951,23754, 23754,23754,23754,23754,23754,23754,23754,23754,23783,23921, 23822, 6976, 6976, 6976,23921,24285,23782,23779,24091,23822, 23754, 6976, 6977, 6977,23862, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977,23822, 6977, 6977,25887, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977, 6977,24091,23824,23951,23862,24091, 6977,23966, 23951,23839,23839,23824,23966,23781,23806,23806,23806,23806, 23806,23806,23806,23806,23806,23824, 6977, 6977, 6977, 6978, 6978,24285, 6978, 6978, 6978, 6978, 6978, 6978, 6978, 6978, 6978,23862, 6978, 6978,23839,23965,23965,23840,23840,23781, 23911,23965,23824, 6978, 6978, 6978, 6978, 6978, 6978, 6978, 23834,23918,23839,23911,23919, 6978,23918,23781,23911,23834, 24144,23918,24171,24011,23911,23781,23834,23919,24011,24144, 23840,24171,23919, 6978, 6978, 6978, 6979, 6979,23781, 6979, 6979, 6979, 6979, 6979, 6979, 6979, 6979, 6979,23840, 6979, 6979,23807,23807,23807,23807,23807,23807,23807,23807,23807, 6979, 6979, 6979, 6979, 6979, 6979, 6979,23854,23823,23833, 23842,23842, 6979, 6979,23832,23937,23836,23823,23833,24699, 23937,23937,24178,23832,23823,23836,23937,23841,23841,23823, 6979, 6979, 6979,23833,24178,23832,23934,23836,23842,23854, 6979, 6984, 6984,23842, 6984, 6984, 6984, 6984, 6984, 6984, 6984, 6984, 6984,25888, 6984, 6984,23823,23963,23954,23954, 23841,23842,23832,23954,23836, 6984, 6984, 6984, 6984, 6984, 6984, 6984,23831,23835,23854,23854,24699, 6984,23841,24179, 23854,23831,23835,23858,23934,23846,23846,23841,23831,23835, 23934,24179,24101,23831,23835, 6984, 6984, 6984, 6985, 6985, 24101, 6985, 6985, 6985, 6985, 6985, 6985, 6985, 6985, 6985, 23857, 6985, 6985,24410,23963,23858,23843,23843,23846,23963, 23831,23835, 6985, 6985, 6985, 6985, 6985, 6985, 6985, 6985, 23857,24410,24168,23915, 6985,23933,23846,23849,23849,23850, 23850,23915,23857,24157,24168,23858,23915,24168,23953,23843, 23858,23915, 6985, 6985, 6985, 6989, 6989,23915, 6989, 6989, 6989, 6989, 6989, 6989, 6989, 6989, 6989,23843, 6989, 6989, 23849,23984,23850,24741,24741,24157,23984,23857,23984, 6989, 6989, 6989, 6989, 6989, 6989, 6989,23843,24953,23922,23933, 23850, 6989,23925,23922,23851,23851,23852,23852,23922,23925, 23933,23953,24169,23922,23925,23849,23953,23850,24157, 6989, 6989, 6989, 6990, 6990,23859, 6990, 6990, 6990, 6990, 6990, 6990, 6990, 6990, 6990,23852, 6990, 6990,23851,24170,23852, 24050,23952,23853,23853,24169,24050, 6990, 6990, 6990, 6990, 6990, 6990, 6990, 6990,23952,24953,23859,24799, 6990,23952, 23860,23860,23860,23914,23851,23952,23927,23914,23960,24799, 24170,25890,23851,24003,23852,23853, 6990, 6990, 6990, 6994, 6994,24003, 6994, 6994, 6994, 6994, 6994, 6994, 6994, 6994, 6994,23859, 6994, 6994,23860,23985,23914,24003,23859,24694, 23985,23914,23985, 6994, 6994, 6994, 6994, 6994, 6994, 6994, 23853,23853,23860,23960,23962, 6994,24163,23927,23861,23861, 23861,23861,23927,23927,24163,23962,23960,23860,23927,23860, 23962,23960,23960, 6994, 6994, 6994, 6995, 6995,23961, 6995, 6995, 6995, 6995, 6995, 6995, 6995, 6995, 6995,23958, 6995, 6995,23961,23861,23958,24061,24694,23961,23855,23958,24061, 6995, 6995, 6995, 6995, 6995, 6995, 6995, 6995,23959,25891, 23861,25895, 6995,23959,23863,23986,23863,23855,23959,23861, 23986,23986,23986,24068,24451,24459,23855,23861,24068,23855, 6995, 6995, 6995, 6998, 6998,23867, 6998, 6998, 6998, 6998, 6998, 6998, 6998, 6998, 6998,23866, 6998, 6998,23863,24074, 24261,24451,24459,24063,24074,23867,23855, 6998, 6998, 6998, 6998, 6998, 6998, 6998,23855,23866,23863,23867,24063, 6998, 23964,23864,23967,23864,24249,23964,24063,23866,23863,23967, 23964,23867,24261,23863,23967,23964,24249, 6998, 6998, 6998, 6999, 6999,23867, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 6999,23990, 6999, 6999,23864,23990,23990,24249,23990, 24111,23856,23992,23866, 6999, 6999, 6999, 6999, 6999, 6999, 6999, 6999,24365,23864,23987,24357, 6999,23983,23969,23955, 23987,23856,24365,23955,23996,23987,25904,23987,24357,23996, 23864,23996,24111,23856, 6999, 6999, 6999, 7001, 7001,24357, 7001, 7001, 7001, 7001, 7001, 7001, 7001, 7001, 7001,23992, 7001, 7001,23955,24081,23992,25905,23992,23955,24081,24126, 23856, 7001, 7001, 7001, 7001, 7001, 7001, 7001,23856,23969, 24107,24111,25906, 7001,23969,23969,24107,24126,23983,23988, 23969,23775,23988,23983, 7001,23983,24126,23988,24107,23988, 24058, 7001, 7001, 7001,23775,23775,23775,23775,23775,23775, 23775,23775,23775,23902,23902,23902,23902,23902,23902,23902, 23902,23902, 7001, 7002, 7002,23775, 7002, 7002, 7002, 7002, 7002, 7002, 7002, 7002, 7002,25920, 7002, 7002,23904,23904, 23904,23904,23904,23904,23904,23904,23904, 7002, 7002, 7002, 7002, 7002, 7002, 7002,24058,23995,23995,24183,23775, 7002, 24145,23995,23904,23995,24727,24058,24183,23902,23903,23903, 23903,23903,23903,23903,23903,23903,23903, 7002, 7002, 7002, 7003, 7003,24439, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 7003,24145, 7003, 7003,23908,23908,23908,23908,23908, 23908,23908,23908,23908, 7003, 7003, 7003, 7003, 7003, 7003, 7003, 7003,23997,23997,24439,23916, 7003,23997,23991,23997, 24727,23994,23991,23916,23903,23994,24480,23991,23916,23991, 23994,24145,23994,23916, 7003, 7003, 7003, 7004, 7004,23916, 7004, 7004, 7004, 7004, 7004, 7004, 7004, 7004, 7004,24023, 7004, 7004,23908,24113,24023,24113,24023,24181,24480,24356, 24004, 7004, 7004, 7004, 7004, 7004, 7004, 7004,24004,24181, 24065,24356,24181, 7004,23907,23907,23907,23907,23907,23907, 23907,23907,23907,24356,24004,24065,24005,24113,24016,24055, 24065, 7004, 7004, 7004, 7005, 7005,24108, 7005, 7005, 7005, 7005, 7005, 7005, 7005, 7005, 7005,24065, 7005, 7005,23932, 23932,23932,23932,23932,23932,23932,23932,23932, 7005, 7005, 7005, 7005, 7005, 7005, 7005, 7005,24186,24185,24108,23956, 7005,24751,24751,24005,23907,24186,24185,23956,24005,24016, 24055,23907,23956,24185,24016,24055,24108,23956, 7005, 7005, 7005, 7009, 7009,23956, 7009, 7009, 7009, 7009, 7009, 7009, 7009, 7009, 7009,24024, 7009, 7009,24025,23932,24024,24504, 24024,24025,24025,24025,24188, 7009, 7009, 7009, 7009, 7009, 7009, 7009,24027,24188,24029,24027,25921, 7009,24029,24029, 24027,24029,24027,23928,23928,23928,23928,23928,23928,23928, 23928,23928,24090,24473,24504, 7009, 7009, 7009, 7010, 7010, 24090, 7010, 7010, 7010, 7010, 7010, 7010, 7010, 7010, 7010, 24090, 7010, 7010,23943,23943,23943,23943,23943,23943,23943, 23943,23943, 7010, 7010, 7010, 7010, 7010, 7010, 7010, 7010, 23928,24090,25378,24473, 7010,23909,23909,23909,23909,23909, 23909,23909,23909,23909,24035,24246,25378,24502,24194,24035, 24246,24035, 7010, 7010, 7010, 7013, 7013,24194, 7013, 7013, 7013, 7013, 7013, 7013, 7013, 7013, 7013,23943, 7013, 7013, 24036,24036,24070,24255,24502,24036,24284,24036,23909, 7013, 7013, 7013, 7013, 7013, 7013, 7013,23909,24070,24083,24070, 24730, 7013,24070,23944,23944,23944,23944,23944,23944,23944, 23944,23944,23909,24083,24255,24083,24042,24255,24083, 7013, 7013, 7013, 7014, 7014,24042, 7014, 7014, 7014, 7014, 7014, 7014, 7014, 7014, 7014,24030, 7014, 7014,24105,24030,24112, 24042,24149,24105,24030,24278,24030, 7014, 7014, 7014, 7014, 7014, 7014, 7014, 7014,24284,24022,25097,24730, 7014,23944, 24105,23930,23930,23930,23930,23930,23930,23930,23930,23930, 24149,24112,24044,24149,24112,24031, 7014, 7014, 7014, 7016, 7016,25097, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 7016,24149, 7016, 7016,23945,23945,23945,23945,23945,23945, 23945,23945,23945, 7016, 7016, 7016, 7016, 7016, 7016, 7016, 23930,24278,23957,24114,24400, 7016,24022,23930,23945,24044, 23957,24022,24031,24022,24044,23957, 7016,24031,24033,24031, 23957,24114,24033, 7016, 7016, 7016,23957,24033,23931,24033, 23931,23931,23931,23931,23931,23931,23931,23931,23931,24114, 24400,24784,24623,24625, 7016, 7017, 7017,24366, 7017, 7017, 7017, 7017, 7017, 7017, 7017, 7017, 7017,24366, 7017, 7017, 23949,23949,23949,23949,23949,23949,23949,23949,23949, 7017, 7017, 7017, 7017, 7017, 7017, 7017,23931,24784,25922,24794, 24279, 7017,23948,23948,23948,23948,23948,23948,23948,23948, 23948,24156,24064,24077,24623,24625,24043,24794,24156, 7017, 7017, 7017, 7018, 7018,24043, 7018, 7018, 7018, 7018, 7018, 7018, 7018, 7018, 7018,24062, 7018, 7018,23949,23949,24062, 24043,24062,24062,24156,24064,24077, 7018, 7018, 7018, 7018, 7018, 7018, 7018, 7018,23982,24197,23982,24158, 7018,24064, 24077,23982,23948,24158,24197,23982,23982,24279,23982,23948, 24064,24077,23982,24302,24301,24158, 7018, 7018, 7018, 7024, 7024,24302, 7024, 7024, 7024, 7024, 7024, 7024, 7024, 7024, 7024,25949, 7024, 7024,23974,23974,23974,23974,23974,23974, 23974,23974,23974, 7024, 7024, 7024, 7024, 7024, 7024, 7024, 23356,24034,24034,24075,24153, 7024,24283,24034,24075,24034, 24075,24075,24337,23356,23356,23356,23356,23356,23356,23356, 23356,23356,24026, 7024, 7024, 7024,24154,24210,24026,24656, 24313,23356,24301,24026,23356,24026,24210,24076,24153, 7024, 7025, 7025,23974, 7025, 7025, 7025, 7025, 7025, 7025, 7025, 7025, 7025,24076, 7025, 7025,24338,24153,24787,24154,24283, 24076,24154,24078,24338, 7025, 7025, 7025, 7025, 7025, 7025, 7025,24167,24180,24283,24314,24153, 7025,24078,24167,24180, 24337,24656,24078,24167,24180,23970,23970,23970,23970,23970, 23970,23970,23970,23970, 7025, 7025, 7025,24313,24078,24787, 23950,23950,23950,23950,23950,23950,23950,23950,23950,23972, 23972,23972,23972,23972,23972,23972,23972,23972,25964, 7025, 7030, 7030, 7030, 7030, 7030, 7030, 7030, 7030, 7030, 7030, 7030, 7030,23970, 7030, 7030,24258,24353,24951,24353,24089, 24089,24314,24369,23950, 7030, 7030, 7030, 7030, 7030, 7030, 7030,23950,24369,24732,24192,24320, 7030,23993,23972,24474, 24353,24122,24122,24192,23993,23972,24258,23950,24116,23993, 24192,23993,24951,24089, 7030, 7030, 7030,24116, 7030, 7050, 7050,23993, 7050, 7050, 7050, 7050, 7050, 7050, 7050, 7050, 7050,24089, 7050, 7050,24122,24116,24117,26018,24474,24117, 24122,24258,24195, 7050, 7050, 7050, 7050, 7050, 7050, 7050, 24732,24195,24089,24115,24226, 7050,24116,24117,24195,24115, 23973,24320,23973,23973,23973,23973,23973,23973,23973,23973, 23973,24115,24226, 7050, 7050, 7050, 7051, 7051,24117, 7051, 7051, 7051, 7051, 7051, 7051, 7051, 7051, 7051,24305, 7051, 7051,24305,24115,24226,25108,24121,24121,24155,24305,24305, 7051, 7051, 7051, 7051, 7051, 7051, 7051, 7051,23973,24021, 24201,24021, 7051,24243,24344,24376,24021,24230,24230,24201, 24021,24021,25108,24021,24213,24376,24201,24021,24121,24155, 7051, 7051, 7051, 7053, 7053,24127, 7053, 7053, 7053, 7053, 7053, 7053, 7053, 7053, 7053,24213, 7053, 7053,24243,24358, 24230,24482,24243,24230,24344,24358,24155, 7053, 7053, 7053, 7053, 7053, 7053, 7053,24121,24189,24128,24127,24032, 7053, 24236,24155,24213,24358,24189,24032,24362,25379,24344,24485, 24032,24189,24032,24482,24128,24127,24189, 7053, 7053, 7053, 7054, 7054,24032, 7054, 7054, 7054, 7054, 7054, 7054, 7054, 7054, 7054,24236, 7054, 7054,24128,24127,25379,24257,24129, 24205,24485,24128,24189, 7054, 7054, 7054, 7054, 7054, 7054, 7054, 7054,24205,24257,24140,24916, 7054,24140,24092,24092, 24092,24092,24092,24092,24092,24092,24092,24236,24496,24257, 24205,24129,24140,24362, 7054, 7054, 7054, 7056, 7056,24092, 7056, 7056, 7056, 7056, 7056, 7056, 7056, 7056, 7056,24129, 7056, 7056,24916,24140,24496,24471,24206,24229,24229,24208, 24191, 7056, 7056, 7056, 7056, 7056, 7056, 7056,24206,24191, 24129,24208,25139, 7056,24208,24109,24109,24109,24109,24109, 24109,24109,24109,24109,24191,24389,24206,24389,24471,24208, 24229, 7056, 7056, 7056, 7057, 7057,24109, 7057, 7057, 7057, 7057, 7057, 7057, 7057, 7057, 7057,25395, 7057, 7057,24389, 24785,24256,24259,25139,24109,24218,24109,24200, 7057, 7057, 7057, 7057, 7057, 7057, 7057, 7057,24200,24218,24444,24229, 7057,25395,24124,24124,24124,24124,24124,24124,24124,24124, 24124,24200,24256,24785,24259,24218,24398,24259, 7057, 7057, 7057, 7058, 7058,24124, 7058, 7058, 7058, 7058, 7058, 7058, 7058, 7058, 7058,24450, 7058, 7058,24354,24444,24380,24444, 24141,24124,24583,24214,24450, 7058, 7058, 7058, 7058, 7058, 7058, 7058,24214,24239,24256,24318,24690, 7058,24141, 7058, 24125,24125,24125,24125,24125,24125,24142,24214,24136,24136, 24136,24136,24136,24141,24142, 7058, 7058, 7058,24380,24141, 24354,24125,24583,24398,24142,24239, 7058, 7064, 7064,24136, 7064, 7064, 7064, 7064, 7064, 7064, 7064, 7064, 7064,24125, 7064, 7064,24380,24690,24354,24142,24589,24136,24318,24239, 24280, 7064, 7064, 7064, 7064, 7064, 7064, 7064,24280,24367, 24239,24371,24318, 7064,24240,24135,24135,24135,24135,24135, 24135,24135,24135,24135,24693,24371,24367,24589,24371,24367, 24367, 7064, 7064, 7064, 7065, 7065,24135, 7065, 7065, 7065, 7065, 7065, 7065, 7065, 7065, 7065,24240, 7065, 7065,24303, 24493,24736,24221,24221,24135,24501,24280,24303, 7065, 7065, 7065, 7065, 7065, 7065, 7065, 7065,24501,24775,24589,24407, 7065,24693,24137,24137,24137,24137,24137,24137,24137,24137, 24137,24240,24493,24407,24736,24221,24407,24240, 7065, 7065, 7065, 7069, 7069,24137, 7069, 7069, 7069, 7069, 7069, 7069, 7069, 7069, 7069,24221, 7069, 7069,24775,26020,24736,24303, 24971,24137,24497,24309,24303, 7069, 7069, 7069, 7069, 7069, 7069, 7069,24309,24309,25671,24971,24390, 7069,24957,24138, 24138,24138,24138,24138,24138,24177,24177,24177,24177,24177, 24177,24177,24177,24177,24497, 7069, 7069, 7069, 7070, 7070, 24138, 7070, 7070, 7070, 7070, 7070, 7070, 7070, 7070, 7070, 24512, 7070, 7070,24440,24440,24152,24248,25671,24138,24512, 24390,24212, 7070, 7070, 7070, 7070, 7070, 7070, 7070, 7070, 24212,26021,24339,24372, 7070,24372,24248,24212,24224,24224, 24339,24150,24449,24315,24390,24372,24440,24957,24248,24152, 24449,24315, 7070, 7070, 7070, 7073, 7073,24152, 7073, 7073, 7073, 7073, 7073, 7073, 7073, 7073, 7073,24152, 7073, 7073, 24248,24224,24461,24461,24224,24150,24345,24974,24150, 7073, 7073, 7073, 7073, 7073, 7073, 7073,24190,24198,24152,24224, 24345, 7073,24339,24150,24207,24190,24198,24339,24151,24315, 24345,24207,24612,24198,24615,24461,24207,24190,24198, 7073, 7073, 7073, 7074, 7074,24150, 7074, 7074, 7074, 7074, 7074, 7074, 7074, 7074, 7074,24207, 7074, 7074,24463,24463,24494, 26025,24974,24151,24582,24190,24198, 7074, 7074, 7074, 7074, 7074, 7074, 7074, 7074,24361,24582,24615,24612, 7074,24368, 24151,24217,24227,24227,24368,24361,24223,24223,24217,24368, 24463,24494,24615,24217,24361,24151, 7074, 7074, 7074, 7076, 7076,24151, 7076, 7076, 7076, 7076, 7076, 7076, 7076, 7076, 7076,24217, 7076, 7076,24347,24227,24582,24225,24225,24223, 24381,24494,24347, 7076, 7076, 7076, 7076, 7076, 7076, 7076, 24199,24202,24401,24227,24381, 7076,24402,24223,24347,24199, 24202,24260,24401,24613,24381,26027,24402,24202,24613,24801, 24225,24199,24202, 7076, 7076, 7076, 7077, 7077,24223, 7077, 7077, 7077, 7077, 7077, 7077, 7077, 7077, 7077,24225, 7077, 7077,24505,24505,24260,24403,24801,24591,24393,24199,24202, 7077, 7077, 7077, 7077, 7077, 7077, 7077, 7077,24203,24225, 24393,24403, 7077,24405,24403,24403,24412,24203,24234,24234, 24476,24393,24757,24405,24505,25706,24412,24591,24260,24203, 7077, 7077, 7077, 7078, 7078,24260, 7078, 7078, 7078, 7078, 7078, 7078, 7078, 7078, 7078, 7078, 7078, 7078,24319,24465, 25706,24234,24476,24757,24234,24397,24203, 7078, 7078, 7078, 7078, 7078, 7078, 7078, 7078,24173,24397,24465,24591, 7078, 24476,24786,24319,24304,24173,24397,24173,24173,24173,24173, 24173,24173,24173,24173,24173,24465,24234, 7078, 7078, 7078, 7078, 7078, 7079, 7079,24980, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079, 7079,24483, 7079, 7079,26028,24319,26032, 24492,24786,24483,24319,24392,24173, 7079, 7079, 7079, 7079, 7079, 7079, 7079,24215,24216,24408,24392,24408, 7079,24980, 24304,24404,24215,24216,24424,24424,24404,24408,24392,24215, 24304,24404,24492,24424,24215,24216, 7079, 7079, 7079, 7080, 7080,24304, 7080, 7080, 7080, 7080, 7080, 7080, 7080, 7080, 7080,24237, 7080, 7080,24346,24700,24763,24580,24346,24233, 24233,24215,24216, 7080, 7080, 7080, 7080, 7080, 7080, 7080, 7080,24237,24492,24455,24346, 7080,24425,24580,24231,24231, 24235,24235,24646,24237,24394,24425,24425,24646,24763,24580, 24394,24455,24233, 7080, 7080, 7080, 7083, 7083,24346, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083, 7083,24394, 7083, 7083,24231,24455,24235,25261,25261,24237,24658,24237,24700, 7083, 7083, 7083, 7083, 7083, 7083, 7083,24233,24436,24231, 24515,24233, 7083,24521,24241,24241,24241,24436,24436,24515, 24435,24435,24521,24769,26034,24795,24231,24348,24235,24435, 7083, 7083, 7083, 7084, 7084,24348, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084,24247, 7084, 7084,24241,24658, 24769,24348,24795,24813,24238,24238,24640, 7084, 7084, 7084, 7084, 7084, 7084, 7084, 7084,24247,24241,24457,24350, 7084, 24533,24242,24242,24242,24238,24543,24350,24247,24241,24533, 24813,24360,24723,24241,24543,24457,24238, 7084, 7084, 7084, 7086, 7086,24350, 7086, 7086, 7086, 7086, 7086, 7086, 7086, 7086, 7086,24452, 7086, 7086,24242,24457,24640,24640,24828, 24828,24828,24247,24238, 7086, 7086, 7086, 7086, 7086, 7086, 7086,24238,24415,24242,24456,24360, 7086,24546,24244,24723, 24244,24500,24360,24456,24452,24383,24546,24360,24349,24500, 24242,24764,24456,24383, 7086, 7086, 7086, 7087, 7087,24360, 7087, 7087, 7087, 7087, 7087, 7087, 7087, 7087, 7087,24383, 7087, 7087,24244,24456,24771,24764,24581,25892,25892,24443, 24452, 7087, 7087, 7087, 7087, 7087, 7087, 7087, 7087,24415, 24244,24443,24349, 7087,26035,24349,24581,24586,24244,24415, 24349,24486,24442,24442,24442,24586,24771,24244,24581,24443, 24415, 7087, 7087, 7087, 7088, 7088,24349, 7088, 7088, 7088, 7088, 7088, 7088, 7088, 7088, 7088, 7088, 7088, 7088,24355, 24443,24725,24355,24486,24561,24914,24442,24355, 7088, 7088, 7088, 7088, 7088, 7088, 7088, 7088,24513,24495,24643,24581, 7088,24359,24561,24355,24442,24513,24495,24359,24575,24587, 24561,24914,24513,24726,24359,24495,24486,24587, 7088, 7088, 7088, 7088, 7088, 7092, 7092,24359, 7092, 7092, 7092, 7092, 7092, 7092, 7092, 7092, 7092,24453, 7092, 7092,24373,26040, 24575,24438,24438,24643,24725,24438,24373, 7092, 7092, 7092, 7092, 7092, 7092, 7092,24382,24438,24517,24925,24382, 7092, 24726,24373,24373,24462,24462,24517,24438,24453,24384,24575, 24479,24385,24517,24453,24382,24575,24384, 7092, 7092, 7092, 7100, 7100,24479, 7100, 7100, 7100, 7100, 7100, 7100, 7100, 7100, 7100,24384, 7100, 7100,24386,24462,24925,24382,26042, 24479,24679,24518,24386, 7100, 7100, 7100, 7100, 7100, 7100, 7100,24518,24679,24523,24466,24385, 7100,24950,24385,24386, 24466,24479,24523,24385,24779,24391,24518,24818,24391,24523, 24462,24633,24466,24391, 7100, 7100, 7100, 7132, 7132,24385, 7132, 7132, 7132, 7132, 7132, 7132, 7132, 7132, 7132,24391, 7132, 7132,24409,24466,24818,24577,24779,24528,25908,25908, 24409, 7132, 7132, 7132, 7132, 7132, 7132, 7132,24468,24528, 24535,24468,24395, 7132,24491,24409,24409,24633,24395,24535, 24688,24577,24633,24396,24950,24395,24535,24528,24519,24468, 24577, 7132, 7132, 7132, 7133, 7133,24395, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133, 7133,24491, 7133, 7133,24519, 24468,24490,24524,26043,24491,25505,24529,24467, 7133, 7133, 7133, 7133, 7133, 7133, 7133,24458,24467,24396,24529,24477, 7133,26051,24688,24524,24396,24477,24519,24574,25505,24396, 24619,24130, 7133,24458,24467,24490,24529,24477, 7133, 7133, 7133,24396,24130,24130,24130,24130,24130,24130,24458,24590, 24524,24130,24536,24490,24458,24467,24644,24590,24477,24574, 7133, 7134, 7134,24130, 7134, 7134, 7134, 7134, 7134, 7134, 7134, 7134, 7134,24536, 7134, 7134,24490,24619,24910,24673, 24590,24574,24619,24130,24910, 7134, 7134, 7134, 7134, 7134, 7134, 7134, 7134,24712,24574,24673,24418, 7134,24470,24983, 24536,24644,26053,24418,24712,24616,24673,24733,24418,24470, 24470,24470,24470,24470,24470, 7134, 7134, 7134, 7139, 7139, 24418, 7139, 7139, 7139, 7139, 7139, 7139, 7139, 7139, 7139, 24470, 7139, 7139,24509,24509,24509,24509,24509,24509,24509, 24509,24509, 7139, 7139, 7139, 7139, 7139, 7139, 7139,24527, 24544,24616,24550,24429, 7139,24835,24616,24983,24527,24544, 24429,24550,24588,24616,24835,24429,24544,24648,24550,24478, 24527,24733, 7139, 7139, 7139, 7140, 7140,24429, 7140, 7140, 7140, 7140, 7140, 7140, 7140, 7140, 7140,24478, 7140, 7140, 24635,24478,24488,24588,26054,24593,26067,24527,24525, 7140, 7140, 7140, 7140, 7140, 7140, 7140, 7140,24525,24478,24648, 25316, 7140,24963,24445,24445,24445,24445,24445,24445,24445, 24445,24445,24525,24635,24695,24648,24488,24593,24588, 7140, 7140, 7140, 7142, 7142,24445, 7142, 7142, 7142, 7142, 7142, 7142, 7142, 7142, 7142,24488, 7142, 7142,24821,24488,25316, 24958,24531,24541,24698,24445,24635, 7142, 7142, 7142, 7142, 7142, 7142, 7142,24531,24541,24488,24531,24593, 7142,24695, 24475,24475,24475,24475,24475,24475,24667,24767,24728,24475, 24963,24531,24541,24821,25099,24767, 7142, 7142, 7142, 7143, 7143,24475, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7143,24672, 7143, 7143,24672,24698,24489,24958,24958,24475, 24721,24475,24672, 7143, 7143, 7143, 7143, 7143, 7143, 7143, 7143,26068,24667,24728,25099, 7143,24830,24667,24489,24510, 24510,24510,24510,24510,24510,24510,24510,24510,24830,24537, 24489,25083,25118, 7143, 7143, 7143, 7144, 7144,24537, 7144, 7144, 7144, 7144, 7144, 7144, 7144, 7144, 7144,24489, 7144, 7144,24968,24721,24537,24565,24565,24592,25083,24773,24773, 7144, 7144, 7144, 7144, 7144, 7144, 7144,24469,24539,24489, 24564,24564, 7144, 7144,25118,26113,24773,24539,24469,24469, 24469,24469,24469,24469,24469,24469,24469,24565,24592,24539, 7144, 7144, 7144,24565,24731,24780,24592,24773,24968,24469, 7144, 7145, 7145,24564, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145,24780, 7145, 7145,24539, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145, 7145,24526,24538,24780,24618,24549, 7145,24831,24564, 24530,24526,24538,24618,24618,24549,24731,24530,24526,24538, 24831,25973,24530,24526,24538, 7145, 7145, 7145, 7146, 7146, 24549, 7146, 7146, 7146, 7146, 7146, 7146, 7146, 7146, 7146, 24530, 7146, 7146,25049,24758,24758,25973,24811,24811,25049, 24526,24538, 7146, 7146, 7146, 7146, 7146, 7146, 7146,24547, 24548,24618,25098,24949, 7146,24811,24618,24540,24547,24548, 24776,24776,24621,24626,24540,24547,24683,24758,24683,24540, 24547,24548, 7146, 7146, 7146, 7147, 7147,24683, 7147, 7147, 7147, 7147, 7147, 7147, 7147, 7147, 7147,24540, 7147, 7147, 24706,24558,24558,24776,24568,24568,25098,24547,24548, 7147, 7147, 7147, 7147, 7147, 7147, 7147,24706,24551,24868,24621, 24626, 7147, 7147,24552,24621,24626,24551,24706,24949,24626, 24868,24746,24552,24551,24558,24570,24570,24568,24551, 7147, 7147, 7147,24628,25556,24552,25130,24756,24487,24868, 7147, 7149, 7149,24558, 7149, 7149, 7149, 7149, 7149, 7149, 7149, 7149, 7149, 7149, 7149, 7149,24551,25556,25130,24570,24762, 24558,24552,24568,24568, 7149, 7149, 7149, 7149, 7149, 7149, 7149,24487,24746,24746,24671,24705, 7149,24487,24705,24628, 24559,24559,24560,24560,24628,24570,24705,24756,24756,24487, 25105,24762,24570,24570, 7149, 7149, 7149, 7149, 7153, 7153, 24940, 7153, 7153, 7153, 7153, 7153, 7153, 7153, 7153, 7153, 24487, 7153, 7153,24559,25089,24560,24802,25105,24716,24559, 24716,24671, 7153, 7153, 7153, 7153, 7153, 7153, 7153,24716, 24762,24559,24671,24560, 7153,24571,24571, 7153,24569,24569, 24629,24560,24770,24627,24887,24917,24630,25243,24802,24622, 25089,24940, 7153, 7153, 7153, 7170, 7170,24917, 7170, 7170, 7170, 7170, 7170, 7170, 7170, 7170, 7170,24571, 7170, 7170, 25234,24569,24622,25243,24770,24768,24887,24569,24802, 7170, 7170, 7170, 7170, 7170, 7170, 7170,24768,24629,24627,24674, 24627, 7170,24629,24630,24571,24627,24622,24629,24630,24674, 24674,24622,24571,26130,24816,24817,24569,25234,24770, 7170, 7170, 7170,24816, 7170, 7189, 7189,24817, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7189, 7190, 7190,26143, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7190, 7194, 7194,24941, 7194, 7194, 7194, 7194, 7194, 7194, 7194, 7194, 7194,24572, 7194, 7194,24807,24777,24777,25411,24822, 24822,25411,24739,24652, 7194, 7194, 7194, 7194, 7194, 7194, 7194,26156,24572,24739,24739,24807, 7194,24978,24639,24576, 24576,24576,24651,24631,24572,24639,24639,24807,24639,24777, 24651,24651,24822,24941, 7194, 7194, 7194, 7194, 7195, 7195, 24573, 7195, 7195, 7195, 7195, 7195, 7195, 7195, 7195, 7195, 24652, 7195, 7195,24576,24572,24652,24578,24869,24578,24572, 24573,26183, 7195, 7195, 7195, 7195, 7195, 7195, 7195,24869, 24631,24576,24573,24749, 7195,24631,24638,24654,24651,24576, 24631,25133,24978,24651,24749,24749,24655,24869,24576,25133, 24578,24638, 7195, 7195, 7195, 7195, 7198, 7198, 7198, 7198, 7198, 7198, 7198, 7198, 7198, 7198,24918,24573,24578,24655, 24740,24969, 7198, 7198, 7198, 7198, 7198, 7198,24918,24740, 24740,24620,24632,24638,24654,24578,24684,24638,24638,24654, 24661,24684,24638,24655,26078,24876,24620,24684,24655, 7198, 7198, 7198, 7198, 7198, 7198, 7200, 7200, 7200, 7200, 7200, 7200, 7200, 7200, 7200, 7200,25260,24876,26078,24969,25260, 24942, 7200, 7200, 7200, 7200, 7200, 7200,24620,24620,24632, 24653,24942,24659,24620,24632,24661,25084,24661,24660,24662, 24664,25557,24661,24876,24620,24653,24632,24620, 7200, 7200, 7200, 7200, 7200, 7200, 7203, 7203, 7203, 7203, 7203, 7203, 7203, 7203, 7203, 7203,24919,26184,24691,25557,25084, 7203, 7203, 7203, 7203, 7203, 7203, 7203,24653,24653,24663,24659, 24665,24666,24653,24659,24659,24660,24662,24664,24659,25135, 24660,24662,24664,24653,24660,24919,24653, 7203, 7203, 7203, 7203, 7203, 7203, 7209, 7209, 7209, 7209, 7209, 7209, 7209, 7209, 7209, 7209,24691,24676,24676,25135,24979,24691, 7209, 7209, 7209, 7209, 7209, 7209,24663,24676,24665,24666,24675, 24663,24676,24665,24666,24676,24663,24704,24665,24919,24675, 24675,25532,25340,24893,25532,24666, 7209, 7209, 7209, 7209, 7209, 7209, 7211, 7211, 7211, 7211, 7211, 7211, 7211, 7211, 7211,24893,25233,26186,24677,24988,24678,24893, 7211, 7211, 7211, 7211, 7211, 7211,24677,24677,24678,24678,24681,24677, 24685,25340,24707,24704,24979,24808,24681,25560,24681,24681, 24685,24685,24707,24707,24704, 7211, 7211, 7211, 7211, 7211, 7211, 7228, 7228,25233, 7228, 7228, 7228, 7228, 7228, 7228, 7228, 7228, 7228,24838, 7228, 7228,24923,24808,24988,24988, 25560,24680,24838,24708,24680, 7228, 7228, 7228, 7228, 7228, 7228, 7228,24680,24708,24708,24750,24923, 7228,24680,24710, 25318,24711,24717,24808,24750,24750,24687,24717,24923,24710, 24710,24711,24711,24717,24710, 7228, 7228, 7228, 7228, 7229, 7229,24687, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229,25152, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 7229, 24709,24709,24687,24714,24713, 7229,24724,24713,25152,24825, 24825,24714,24709,24714,24714,24713,25318,24709,24987,24687, 24709,24713,24687, 7229, 7229, 7229, 7229, 7232, 7232, 7232, 7232, 7232, 7232, 7232, 7232, 7232, 7232,24825,24973,24718, 24720,25319,24825, 7232, 7232, 7232, 7232, 7232, 7232,24718, 24718,24744,24745,24724,24754,24720,25106,24755,24724,24745, 24745,25106,24745,25157,24755,24755,24744,24755,24761,24754, 7232, 7232, 7232, 7232, 7232, 7232, 7235, 7235, 7235, 7235, 7235, 7235, 7235, 7235, 7235, 7235,24720,24987,25106,25725, 25157,24973, 7235, 7235, 7235, 7235, 7235, 7235,24782,24781, 24761,24973,24744,24720,24772,24754,24720,24744,24781,25319, 24754,25725,26188,24760,24760,24760,24782,24781,24761, 7235, 7235, 7235, 7235, 7235, 7235, 7237, 7237, 7237, 7237, 7237, 7237, 7237, 7237, 7237,24790,24791,24772,24782,24781,24761, 24837, 7237, 7237, 7237, 7237, 7237, 7237,24760,25136,24837, 24840,24832,24790,24846,24772,24806,24837,24806,24832,24840, 25136,24790,24846,24832, 7237,24760,24774,24791, 7237, 7237, 7237, 7237, 7237, 7237, 7241, 7241, 7241, 7241, 7241, 7241, 7241, 7241, 7241, 7241,24774,24791,24833,25530,24841,24806, 7241, 7241, 7241, 7241, 7241, 7241,24774,24841,24833,24778, 24778,24833,24849,24810,24841,24774,24791,24806,25530,24841, 26165,24849,24803,24793,24803,24783,24792, 7241, 7241, 7241, 7241, 7241, 7241, 7243, 7243, 7243, 7243, 7243, 7243, 7243, 7243, 7243,24778,24783,24792,24810,24841,24944,24778, 7243, 7243, 7243, 7243, 7243, 7243,24793,24803,24857,24783,24823, 24823,24860,25526,24881,24783,24792,24857,26165,25526,24778, 24860,24810,24792,24793,24803,24881, 7243, 7243, 7243, 7243, 7243, 7243, 7253, 7253, 7253, 7253, 7253, 7253, 7253, 7253, 7253, 7253,24823,24881,24793,24803,24842,24873, 7253, 7253, 7253, 7253, 7253, 7253,24944,24842,24873,25082,24798,24798, 24823,25116,24824,24824,24944,25398,25082,24842,24908,24789, 24789,24789,24789,24789,24789, 7253, 7253, 7253, 7253, 7253, 7253, 7255, 7255, 7255, 7255, 7255, 7255, 7255, 7255, 7255, 24789,24798,24908,25116,24842,24824,24843, 7255, 7255, 7255, 7255, 7255, 7255,24908,25342,24843,25398,25932,24789,24829, 24829,24829,24829,24829,24829,24829,24829,24829,24798,24805, 24843,24805,24824,25932, 7255, 7255, 7255, 7255, 7255, 7255, 7263, 7263, 7263, 7263, 7263, 7263, 7263, 7263, 7263, 7263, 25284,25169,24981,24844,25284,24847, 7263, 7263, 7263, 7263, 7263, 7263,24844,24805,24847,24956,24853,24895,24895,24844, 24920,24847,24922,24922,24956,24853,25533,24970,25169,25533, 25342,24805,24853, 7263, 7263, 7263, 7263, 7263, 7263, 7266, 7266, 7266, 7266, 7266, 7266, 7266, 7266, 7266, 7266,24809, 24895,24920,24805,24809,24922, 7266, 7266, 7266, 7266, 7266, 7266,24809,24809,24809,24809,24809,24809,24809,24809,24924, 24981,24981,24956,24970,25377,25540,24804,25609,24970,25567, 24920,24809, 7266, 7266, 7266, 7266, 7266, 7266, 7274, 7274, 7274, 7274, 7274, 7274, 7274, 7274, 7274,24897,24897,25567, 26266,24924,24852,24858, 7274, 7274, 7274, 7274, 7274, 7274, 24804,24852,24858,25377,25540,24682,25609,25397,24682,24858, 25085,24889,24889,24682,24891,24891,24852,24924,24804,24682, 24897, 7274, 7274, 7274, 7274, 7274, 7274, 7275, 7275,24682, 7275, 7275, 7275, 7275, 7275, 7275, 7275, 7275, 7275,24804, 7275, 7275,25085,25397,24889,24965,24804,24891,25085,24921, 24864, 7275, 7275, 7275, 7275, 7275, 7275, 7275,24147,24864, 24921,24863,24889, 7275,25389,24891,24864,25071,25071,25085, 24863,24147,24147,24147,24147,24147,24147,24147,24147,24147, 24921, 7275, 7275, 7275, 7275,24863,24875,24890,24890,24870, 24892,24892,24147,24965,25413,24875,24870,24877,25389,24965, 25071,24870,24875, 7275, 7276, 7276,24877, 7276, 7276, 7276, 7276, 7276, 7276, 7276, 7276, 7276,24851, 7276, 7276,24870, 24890,24877,24147,24892,25413,24851,24945,24850, 7276, 7276, 7276, 7276, 7276, 7276, 7276,24854,24850,24851,24890,24903, 7276,24892,25559,24850,24854,24892,24986,25210,24850,25093, 7276,24854,26269,25054,24890,24986,24854,25107, 7276, 7276, 7276, 7276, 7285, 7285,24851, 7285, 7285, 7285, 7285, 7285, 24871,24903, 7285, 7285, 7285,24850,25559,24945,25210,25107, 26270,25093,24871,24854,25107,24871, 7285, 7285, 7285, 7285, 7285, 7285, 7285,24945,24484,25183,24896,24896, 7285,25093, 24871,24906,24955,24986,25054,25054,24903,24484,24484,24484, 24484,24484,24484,24484,24484,24484, 7285, 7285, 7285, 7285, 7286, 7286,25183, 7286, 7286, 7286, 7286, 7286,24484,24896, 7286, 7286, 7286,24906,24788,24788,24788,24788,24788,24788, 24788,24788,24788,24855, 7286, 7286, 7286, 7286, 7286, 7286, 7286, 7286,24855,25320,24484,24788, 7286,25145,24880,24906, 25134,25320,24955,24896,24855,24880,25145,26273,24906,24955, 24880,25134,25555,24788, 7286, 7286, 7286, 7286, 7288, 7288, 7288, 7288, 7288, 7288, 7288, 7288, 7288, 7288,24880,25081, 26274,24855,24861,24862, 7288, 7288, 7288, 7288, 7288, 7288, 24954,24861,24862,25064,24715,24913,25124,24715,24861,24954, 24954,25344,24715,24861,24862,25869,25555,24913,24715,25344, 25081, 7288, 7288, 7288, 7288, 7288, 7288, 7291,24715, 7291, 7291, 7291, 7291, 7291, 7291, 7291, 7291, 7291,25124,24913, 24861,24862,24865,24866,24878, 7291, 7291, 7291, 7291, 7291, 7291,24865,24866,24878,25064,25064,25129,24954,24865,25081, 24878,25148,24954,24865,24866,24878,25869,24899,24899,24985, 25148,25564, 7291, 7291, 7291, 7291, 7291, 7291, 7295, 7295, 7295, 7295, 7295, 7295, 7295, 7295, 7295, 7295,25129,25240, 24865,24866,24878,24879, 7295, 7295, 7295, 7295, 7295, 7295, 24899,25138,24879,24883,24883,24883,24883,24883,24883,24883, 24883,24883,25611,25138,24879,25564,25138,25207,25207,25207, 25240, 7295, 7295, 7295, 7295, 7295, 7295, 7311, 7311,24985, 7311, 7311, 7311, 7311, 7311,24899,24985, 7311, 7311, 7311, 26282,24879,24884,24884,24884,24884,24884,24884,24884,24884, 24884, 7311, 7311, 7311, 7311, 7311, 7311, 7311,26283,25100, 25281,25281,25281, 7311,24885,24885,24885,24885,24885,24885, 24885,24885,24885,24800,25313,24901,24901,25100,25611,24900, 24900, 7311, 7311, 7311, 7311,24905,24800,24800,24800,24800, 24800,24800,24800,24800,24800,25100,24964,25058, 7311, 7312, 7312,24904, 7312, 7312, 7312, 7312, 7312,24800,24901, 7312, 7312, 7312,24900,25125,24907,24907,24907,24905,25094,25094, 25809,24904,26291, 7312, 7312, 7312, 7312, 7312, 7312, 7312, 7312,24902,24902,24904,24998, 7312,25094,24948,25809,26292, 25343,25313,24800,24901,25068,25125,24900,24900,24907,24911, 24964,25058,24905, 7312, 7312, 7312, 7312,25094,24905,24904, 25870,24964,25058,25809,24902,24998,24907,25314,24904,24911, 7312, 7314, 7314, 7314, 7314, 7314, 7314, 7314, 7314, 7314, 7314,24911,24998,24907,25125,24998,24902, 7314, 7314, 7314, 7314, 7314, 7314,24948,25154,24911,25059,25053,25068,24902, 25229,24912,24948,25154,25053,25053,24911,25053,25343,25068, 24948,25870,25531,24948, 7314, 7314, 7314, 7314, 7314, 7314, 7317,24912, 7317, 7317, 7317, 7317, 7317, 7317, 7317, 7317, 7317,24952,25229,24912,25314,25576,25430,25146, 7317, 7317, 7317, 7317, 7317, 7317,25059,24947,25146,25430,25531,26304, 25059,24982,24909,25146,24909,24912,24947,24947,24947,24947, 24947,24947,24947,24947,24947, 7317, 7317, 7317, 7317, 7317, 7317, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 7321, 7321,24977,25069,24976,25576,24952,24909, 7321, 7321, 7321, 7321, 7321, 7321,24952,24976,24976,24976,24976,24976,24976, 24976,24976,24976,25080,24909,24982,25080,24994,25128,24952, 25337,25128,25942,24982, 7321, 7321, 7321, 7321, 7321, 7321, 7354,24909,24909,24984,25080,25166,25128,24909,25942,24982, 25069,25180,24984,24984,25166, 7354,25069,24977,24994,24995, 25180,25063,25073,25073,24994,25080,24977,24995,25063,25063, 25630,25063, 7354,25000,24977,24994,26167,24977,24994, 7354, 24996,24996,24996,24996,24996,24996,24996,24996,24996,25001, 24995,26167,25090,25090, 7354,25073, 7354,25337, 7354,25194, 24984, 7354, 7354,25197,25000,24984, 7354,24995,25194, 7354, 24995, 7354,25197, 7354,25000, 7354, 7354, 7354, 7355,25001, 25001,25000,25073,25119,25000,25090,24996,24999,24999,24999, 24999,24999,24999,24999,24999,24999,25630,25001, 7355,25235, 25001,25002,25002,25002,25002,25002,25002,25002,25002,25002, 7355,25004,25090,25072,25072,25119,26305, 7355,25236,24997, 24997,24997,24997,24997,24997,24997,24997,24997,24997,26318, 25003,25235, 7355,24999, 7355,25241, 7355,25005,25006, 7355, 7355,25119,25004,25023, 7355,25027,25072, 7355,25004, 7355, 25236, 7355,25429, 7355, 7355, 7355, 7356,25350, 7356,25004, 25429,25003,25004,25127,25072, 7356,24997,25241,25005,25006, 25354,24997,25003,25716,25023,25396,25027,25029,25003,25005, 25023,25003,25074,25074,25338,25005,25006,25006,25005,25006, 7356,25023,25238,25027,25023,25127,25027, 7356,25008,25008, 25008,25008,25008,25008,25008,25008,25008,25396,25029,25716, 25074,25350, 7356,26319, 7356,25074, 7356,25443,25029, 7356, 7356,25364,25350,25238, 7356,25029,25443, 7356,25029, 7356, 25127, 7356,25095, 7356, 7356, 7356, 7356, 7357,25354,25035, 25009,25009,25009,25009,25009,25009,25009,25009,25009,25238, 25095,25338,25008,25010,25010,25010,25010,25010,25010,25010, 25010,25010,25095,26328,25111,25111,25227,25216,25216, 7357, 25035,25095,25426,25076,25076,25076, 7357,25010,25011,25011, 25011,25011,25011,25011,25011,25011,25011,25035,25035,25364, 25035, 7357,25227, 7357, 7357, 7357,25009,25111, 7357, 7357, 25216,25227,25426, 7357,25086,25086, 7357,25076, 7357,25030, 7357,25032, 7357, 7357, 7357, 7358,25013,25013,25013,25013, 25013,25013,25013,25013,25013,25076,25215,25012,25012,25012, 25012,25012,25012,25012,25012,25012,26330,25086,25011,25030, 25030,25102,25032,25087,25215,25011,25087, 7358,25024,25351, 25102,25563,25215,25032, 7358,25086,25024,25030,25150,25032, 25030,25087,25032,25013,25077,25077,25077,25150,25102, 7358, 25012, 7358,25420, 7358,25150,25438, 7358, 7358,25012,25024, 25577, 7358,25087, 7358, 7358,25563, 7358,25438, 7358,25102, 7358, 7358, 7358, 7359,25012, 7359,25024,25351,25077,25024, 25825,26331, 7359,25351,25420, 7359,25015,25015,25015,25015, 25015,25015,25015,25015,25015,25016,25077,25016,25016,25016, 25016,25016,25016,25016,25016,25016,25433, 7359,25088,25577, 25825,25079,25079,25079, 7359,25017,25017,25017,25017,25017, 25017,25017,25017,25017,25270,26368,25088,25439,25270, 7359, 25270, 7359, 7359, 7359,25088,25015, 7359, 7359,25433,25439, 25079, 7359,25015,25016, 7359,25079, 7359,25088, 7359,25270, 7359, 7359, 7359, 7374,25025,25025,25025,25025,25025,25025, 25025,25025,25025,25079,25028,25028,25028,25028,25028,25028, 25028,25028,25028,25017,25031,25031,25031,25031,25031,25031, 25031,25031,25031,25137,25151, 7374,25033,25112,25112,25156, 25137,25425, 7374,25151,25034,25137,25585,25168,25156,25606, 25025,25539,25091,25091,25585,25156,25168, 7374,25151, 7374, 25028, 7374,25612,25168, 7374, 7374,25607,25033,25425, 7374, 25112,25101, 7374,25033, 7374,25034, 7374,25101, 7374, 7374, 7374, 7375,25404,25539,25033,25091,25034,25033,25112,25101, 25103, 7375,25034,25103,25091,25034, 7375,25026,25026,25026, 25026,25026,25026,25026,25026,25026,25026,25113,25113,25404, 25101,25103,25404, 7375,25122, 7375,25606,26384,25114,25114, 7375,25037,25037,25037,25037,25037,25037,25037,25037,25037, 25612,25999,25103,25607,25123, 7375,25120, 7375,25121, 7375, 25113,25161, 7375, 7375,25026,25122,25114, 7375,25122,25026, 7375,25114, 7375,25161, 7375,25453, 7375, 7375, 7375, 7376, 7376,25140,25140,25121,25453,25158,25122,25113,25123, 7376, 25120,25161,25121,25999,25158,25037,25120,25038,25038,25038, 25038,25038,25038,25038,25038,25038,25123,25122,25120,25158, 25121, 7376,25239,25239,25140,25123,25115,25115, 7376,25039, 25039,25039,25039,25039,25039,25039,25039,25039,25613,25120, 26386,25121,25140, 7376,25162, 7376,25613, 7376,25431,25361, 7376, 7376,25159,25039,25239, 7376,25162,26387, 7376,25115, 7376,25159, 7376,25038, 7376, 7376, 7376, 7379,25159,25463, 25078,25078,25078,25159,25162,25431, 7379, 7379,25463,25040, 25040,25040,25040,25040,25040,25040,25040,25040,25042,25042, 25042,25042,25042,25042,25042,25042,25042,25361,25115, 7379, 25159,25142,25142,25361,25078,25225, 7379,25041,25041,25041, 25041,25041,25041,25041,25041,25041,25143,25143,25217,25217, 26197, 7379,25078, 7379, 7379, 7379,26197,25242, 7379, 7379, 25565,25078,25160, 7379,25142,25042, 7379,25225, 7379,25040, 7379,25160, 7379, 7379, 7379, 7381,25040, 7381,25163,25143, 25041,25217,25143,25160, 7381,25163,25565, 7381,25041,25242, 25163,25044,25044,25044,25044,25044,25044,25044,25044,25044, 25173,25599,25225,25142,25041,26388,25237,25173,25163, 7381, 25160,25599,25173,25423,25164,25045, 7381,25045,25045,25045, 25045,25045,25045,25045,25045,25045,25164,25170,25242,25164, 25173, 7381,25184, 7381,25380, 7381,25170,25237, 7381, 7381, 25044,25184,25625, 7381,25164,25423, 7381,25044, 7381,25174, 7381,25170, 7381, 7381, 7381, 7385,25184, 7385,25224,25237, 25268,25174,25268,25045, 7385,25175,25380, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385, 7385,25175,25182,25174, 25176,25268,25200,25258,26389,25446,25423,25182,25258, 7385, 25224,25200,25176,25380,25182,25175, 7385,25046,25046,25046, 25046,25046,25046,25046,25046,25046,25200,25628,25171,25625, 25176, 7385,25446, 7385,25268, 7385,25052,25171, 7385, 7385, 25224,25258,25449, 7385,25171,25224, 7385,25690, 7385,25171, 7385,25223, 7385, 7385, 7385, 7386, 7386, 7386, 7386, 7386, 7386, 7386, 7386, 7386,26390,25172,25628,25052,25062,25449, 25403,25223,25052,25177,25172,25046,25171,25052,25231,25457, 25177,25467,25690,25223,25052,25177,25172,25052,25057,25057, 25057,25057,25057,25057,25057,25057,25057,25403,25231,25062, 7386, 7386,25188,25177,25062,25691,25457,26391,25467,25062, 25231,25232, 7386,25172,25188,25403,25062, 7386,25223,25062, 7386, 7387, 7387, 7387, 7387, 7387, 7387, 7387, 7387, 7387, 7387,25232,25188,25190,25190,25190,25190,25190,25190,25190, 25190,25190,25117,25232,25691,25057,25067,25067,25067,25067, 25067,25067,25067,25067,25067,25117,25117,25117,25117,25117, 25117,25117,25117,25117,25474,25195,25826, 7387,25178,25201, 25187,25211,25211,25474,25195,25478,25117,25187,25201,25554, 25178,25195,25187,25178, 7387,25201,25554, 7387, 7388, 7388, 7388, 7388, 7388, 7388, 7388, 7388, 7388,25126,25178,25267, 25187,25267,25478,25067,25211,25826,25419,26118,25126,25126, 25126,25126,25126,25126,25126,25126,25126,25117,25185,25186, 25267,26116,25211,26116,25360,25692,25267,25185,25186,25126, 25219,25219,25230, 7388,25185,25419,26118, 7388,25419,25185, 25186,25191,25191,25191,25191,25191,25191,25191,25191,25191, 7388,25692,25230, 7388, 7389, 7389, 7389, 7389, 7389, 7389, 7389, 7389, 7389,25219,25230,25419,25185,25186,25192,25192, 25192,25192,25192,25192,25192,25192,25192,25277,25360,26392, 25277,25198,25199,25203, 7389,25202,25230,25277,25277,25360, 25198,25199,25203,25440,25202,25626,25974,25198,25219, 7389, 25440,25202,25198,25199,25203,25440,25202,25208,25208,25208, 25208,25208,25208,25208,25208,25208, 7389,25212,25212, 7389, 7390, 7390, 7390, 7390, 7390, 7390, 7390, 7390, 7390,25198, 25199,25203,25974,25202,25205,25205,25205,25205,25205,25205, 25205,25205,25205,25514,25213,25213,25214,25214,25220,25220, 25212,25222,25222,25266,25631,25205,26396,25266,25721,25266, 25317,25514,25626,25218,25218, 7390,25221,25221,25212,25721, 25282,25276,25228,25514,25228,25282, 7390,25213,25266,25214, 25495,25220, 7390,25213,25222, 7390, 7391, 7391, 7391, 7391, 7391, 7391, 7391, 7391, 7391,25213,25218,25214,25448,25221, 25263,25266,25218,25448,25213,25221,25228,25495,25282,25226, 25226,25226,25263,25317,25263,25264,25220,25264,25265,25222, 25265,25214,25631,25218,25228,25222,25221,25317,25276,25632, 25448, 7391,25387,25263,25221,26397,25264,25632,25276,25265, 25387,25228, 7391,25226,25269,25272,25269,25272, 7391,25276, 25387, 7391, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392, 7392,25226,25285,25492,25642,25269,25272,25285,25285,25287, 25264,25387,25492,25265,25285,25275,25271,25275,25226,25226, 25271,25287,25271,25287,25226,25288,25289,25288,25289,25291, 25578,25291,25293,25272,25293,25414,25275, 7392,25272,25578, 25269,25271,25287,25418,25315,25290,25288,25289, 7392,25290, 25291,25290,25315,25293, 7392,25341,25291, 7392, 7393, 7393, 7393, 7393, 7393, 7393, 7393, 7393, 7393,25414,25271,25898, 25290,25275,25642,25271,25321,25649,25345,25418,25696,25998, 25288,25289,25321,25649,25345,25292,25293,25292,25294,25297, 25294,25297,25295,25290,25889,25418,25295,25292,25295,25889, 25315,25356,25414, 7393,25356,25696,25292,25355,25341,25294, 25297,25356,25356,25418,25898,25296, 7393,25295,25998,25296, 7393,25296,25341, 7393, 7394, 7394, 7394, 7394, 7394, 7394, 7394, 7394, 7394,25292,25321,25659,25345,25297,25292,25321, 25296,25345,25297,25659,25294,25303,25303,25303,25303,25303, 25303,25303,25303,25303,25304,25304,25304,25304,25304,25304, 25304,25304,25304,25652,25355,25339,25731,25296,26127, 7394, 7394,26127,25296,25339,25355,25731,25305,25305,25305,25305, 25305,25305,25305,25305,25305,25355, 7394,25367,25367, 7394, 7395, 7395, 7395, 7395, 7395, 7395, 7395, 7395, 7395,25303, 25305,25308,25308,25308,25308,25308,25308,25308,25308,25308, 25304,25306,25306,25306,25306,25306,25306,25306,25306,25306, 25367,25339,25307,25307,25307,25307,25307,25307,25307,25307, 25307,25652,25424,25366,25381, 7395,25366,26398,25367, 7395, 25424,25704,25365,25366,25366,25485,25485,25485,25308,25722, 25424,26353, 7395, 7395,26353, 7395, 7396, 7396, 7396, 7396, 7396, 7396, 7396, 7396, 7396,25307,25381,25370,25370,25369, 25369,25306,25456,25307,25704,25381,25722,25456,25306,25312, 25312,25312,25312,25312,25312,25312,25312,25312,25534,25307, 25310,25310,25310,25310,25310,25310,25310,25310,25310,25365, 25370, 7396,25369,25370,25456,25720,25466,25409,25409,25365, 7396,25466, 7396,25720,25372,25372,25372,25573, 7396,25534, 25365, 7396, 7397, 7397, 7397, 7397, 7397, 7397, 7397, 7397, 7397,25376,25573,25487,25375,25375,25375,25312,25466,25310, 25409,25369,25573,25409,25393,25487,25310,25393,25372,25376, 26400,25311,25534,25311,25311,25311,25311,25311,25311,25311, 25311,25311,25393,25487,25376, 7397,25372, 7397,25375,26414, 25376,25375,26478, 7397,25327,25327,25327,25327,25327,25327, 25327,25327,25327,25393, 7397,26101,25375, 7397,25536, 7397, 7398, 7398, 7398, 7398, 7398, 7398, 7398, 7398, 7398,25311, 25329,25329,25329,25329,25329,25329,25329,25329,25329,25328, 25328,25328,25328,25328,25328,25328,25328,25328,25441,25536, 25391,25391,25536,25736,25329,25450,26101,25458,25327,25846, 25441,25846,26554,25441,25450, 7398,25458,25846, 7398,25330, 25330,25330,25330,25330,25330,25330,25330,25330,26563,25450, 25736,25458, 7398,25391,25391, 7398, 7399, 7399, 7399, 7399, 7399, 7399, 7399, 7399, 7399,25328,25331,25331,25331,25331, 25331,25331,25331,25331,25331,25349,25349,25349,25349,25349, 25349,25349,25349,25349,25332,25332,25332,25332,25332,25332, 25332,25332,25332,25570,25791,25468,25479,25579,25579,25330, 26565, 7399,25872,25791,25468,25479,25330, 7399,25570,25331, 25382,25382,25374,25374,25374,26566,25570,25331, 7399,25468, 25479, 7399, 7400, 7400, 7400, 7400, 7400, 7400, 7400, 7400, 7400,25332,25349,25331,25334,25334,25334,25334,25334,25334, 25334,25334,25334,25382,25579,25679,25374,25388,25335,25579, 25335,25335,25335,25335,25335,25335,25335,25335,25335,25872, 25872,25382,25399,26568,25374,25388,26363, 7400,25336,25336, 25336,25336,25336,25336,25336,25336,25336,25679, 7400,25689, 25399,26570,25388,25334, 7400,25374,25388, 7400, 7416, 7416, 25334, 7416, 7416, 7416, 7416, 7416,25335,26363, 7416, 7416, 7416,25399,25359,25359,25359,25359,25359,25359,25359,25359, 25359,25689, 7416, 7416, 7416, 7416, 7416, 7416, 7416,26363, 25871,25410,25410,25445, 7416,25589,25336,25383,25383,25384, 25384,25871,25445,25385,25385,25386,25386,25421,25744,25445, 25589,25421, 7416, 7416, 7416, 7416, 7417, 7417,25589, 7417, 7417, 7417, 7417, 7417,25410,25488, 7417, 7417, 7417,25359, 25383,25385,25384,25390,25390,25744,25385,25488,25386,25421, 7417, 7417, 7417, 7417, 7417, 7417, 7417, 7417,25383,25400, 25384,26571, 7417,25899,25385,25488,25386,26575,25400,25384, 25410,25421,25819,25392,25392,25561,25390,25400,25401,25402, 7417, 7417, 7417, 7417, 7419, 7419, 7419, 7419, 7419, 7419, 7419, 7419, 7419, 7419,25390,25561,25401,25402,25400, 7419, 7419, 7419, 7419, 7419, 7419, 7419,25392,25819,25899,25406, 25406,25477,25402,25537,25537,25819,25477,25401,25402,25561, 25924,25924,25408,25408,25392,25437,25437, 7419, 7419, 7419, 7419, 7419, 7419, 7422, 7422, 7422, 7422, 7422, 7422, 7422, 7422, 7422,25406,25477,25394,25537,26245,25454,25461, 7422, 7422, 7422, 7422, 7422, 7422,25408,25454,25461,25437,25464, 25406,25580,25394,25454,25437,25584,25856,26245,25464,25461, 25394,25956,25415,25416,25856,25464, 7422, 7422, 7422, 7422, 7422, 7422, 7425,25394, 7425, 7425, 7425, 7425, 7425, 7425, 7425, 7425, 7425,25529,25408,26577,25461,25956,25584,25496, 7425, 7425, 7425, 7425, 7425, 7425,25415,25416,25496,25529, 25475,25580,25802,25802,25802,25415,25580,26096,26096,25475, 25566,25529,25584,25496,25415,25416,25475, 7425, 7425, 7425, 7425, 7425, 7425, 7429, 7429, 7429, 7429, 7429, 7429, 7429, 7429, 7429,25436,25436,25566,25415,25416,25460,25470, 7429, 7429, 7429, 7429, 7429, 7429,25566,25460,25470,25494,26428, 25597,25597,25471,25460,25470,26002,26428,25494,25460,25470, 25597,25471,26578,26002,25494,25436, 7429, 7429, 7429, 7429, 7429, 7429, 7432,25471, 7432, 7432, 7432, 7432, 7432, 7432, 7432, 7432, 7432, 7432,26581,25460,25470,25481,25482,25497, 7432, 7432, 7432, 7432, 7432, 7432,25481,25482,25497,26583, 25471,25436,25500,25481,25489,25497,25562,25845,25481,25482, 25497,25489,26584,25845,25500,25845,25489, 7432, 7432, 7432, 7432, 7432, 7432, 7435, 7435, 7435, 7435, 7435, 7435, 7435, 7435, 7435,25500,25562,25489,25481,25482,25497,25562, 7435, 7435, 7435, 7435, 7435, 7435,25486,25486,25486,25486,25486, 25486,25486,25486,25486,25502,25502,25502,25502,25502,25502, 25502,25502,25502,25512,25512,25678, 7435, 7435, 7435, 7435, 7435, 7435, 7438, 7438, 7438, 7438, 7438, 7438, 7438, 7438, 7438, 7438,25490,25678,25754,25975,25498,25955, 7438, 7438, 7438, 7438, 7438, 7438,25490,25498,25512,25490,25714,25955, 25717,25499,25515,25515,25678,25512,25678,25498,25499,25766, 25975,25754,25490,25499,25512, 7438, 7438, 7438, 7438, 7438, 7438, 7441, 7441, 7441, 7441, 7441, 7441, 7441, 7441, 7441, 25714,25499,25610,25717,25498,25515,25766, 7441, 7441, 7441, 7441, 7441, 7441,25503,25503,25503,25503,25503,25503,25503, 25503,25503,25504,25504,25504,25504,25504,25504,25504,25504, 25504,25827,25515,25524, 7441, 7441, 7441, 7441, 7441, 7441, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 7444, 25521,25877,25877,26394,25595,25610, 7444, 7444, 7444, 7444, 7444, 7444,25595,25524,25827,25511,25511,25608,25524,25610, 25516,25516,25595,25782,25795,25608,25877,26394,25513,25513, 25518,25518,25521, 7444, 7444, 7444, 7444, 7444, 7444, 7447, 7447, 7447, 7447, 7447, 7447, 7447, 7447, 7447,25511,25520, 25782,25795,25598,25516,25593, 7447, 7447, 7447, 7447, 7447, 7447,25513,25516,25518,25583,25821,25511,25521,25521,25520, 25727,25727,25518,25608,25821,25511,25934,25934,25914,25513, 25672,25520, 7447, 7447, 7447, 7447, 7447, 7447, 7450, 7450, 7450, 7450, 7450, 7450, 7450, 7450, 7450, 7450,25518,25535, 25598,25934,25513,25727, 7450, 7450, 7450, 7450, 7450, 7450, 25598,25593,25672,25672,25583,25648,25520,25520,25658,25583, 25987,25593,25520,25914,26590,25553,25583,25523,25523,25523, 25535, 7450, 7450, 7450, 7450, 7450, 7450, 7456, 7456, 7456, 7456, 7456, 7456, 7456, 7456, 7456,25522,25553,25648,25907, 25987,25658,25596, 7456, 7456, 7456, 7456, 7456, 7456,25907, 25596,25523,26592,25614,25553,25535,25627,25553,25572,25591, 25596,25614,25648,25976,25627,25658,26593,25527,25522,25523, 7456, 7456, 7456, 7456, 7456, 7456, 7459, 7459, 7459, 7459, 7459, 7459, 7459, 7459, 7459, 7459,25523,25527,25976,26005, 25572,25591, 7459, 7459, 7459, 7459, 7459, 7459,25629,25527, 25848,26005,25828,25522,25522,25572,25591,25712,25848,25522, 25900,25848,25627,25614,26555,25900,25572,25591,25614, 7459, 7459, 7459, 7459, 7459, 7459, 7463, 7463, 7463, 7463, 7463, 7463, 7463, 7463, 7463, 7463,25828,26599,25715,25923,25712, 25527, 7463, 7463, 7463, 7463, 7463, 7463,25601,25923,25715, 26555,25629,25601,25506,25601,25506,25506,25506,25506,25506, 25506,25506,25506,25506,25601,25629,25712,25715, 7463, 7463, 7463, 7463, 7463, 7463, 7465, 7465,25506, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7475, 7475,25538, 7475, 7475, 7475, 7475, 7475, 7475, 7475, 7475, 7475,25815, 7475, 7475,25575,25575,25575,25575,25575,25575,25575,25575, 25575, 7475, 7475, 7475, 7475, 7475, 7475, 7475,25538,25815, 25916,25538,26126, 7475,26126,25916,25517,25517,25519,25519, 25417,25815,25615,25615,25615,25615,25615,25615,25615,25615, 25615, 7475, 7475, 7475, 7476, 7476,25707, 7476, 7476, 7476, 7476, 7476, 7476, 7476, 7476, 7476,25538, 7476, 7476,25517, 25697,25519,25673,25673,25417,25643,25815,25732, 7476, 7476, 7476, 7476, 7476, 7476, 7476, 7476,25732,26432,25707,26003, 7476,25615,25417,25732,26008,25519,25517,25697,25729,25729, 26003,25915,26601,25697,25517,25673,25519,25417, 7476, 7476, 7476, 7480, 7480,25417, 7480, 7480, 7480, 7480, 7480, 7480, 7480, 7480, 7480,25673, 7480, 7480,25633,26008,25592,25707, 26432,25729,25643,25677,25633, 7480, 7480, 7480, 7480, 7480, 7480, 7480,25643,25592,26229,25677,25915, 7480,25592,25525, 26602,25525,25525,25643,25594,25594,25594,25594,25594,25594, 25594,25594,25594,25677,25592, 7480, 7480, 7480, 7481, 7481, 26102, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 25989, 7481, 7481,25525,25677,26229,25633,25662,25662,25989, 25600,25633, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 7481, 26102,25525,25644,26012, 7481,25644,25654,25663,25663,25654, 25525,25594,25644,25644,26004,26012,25654,25654,25525,26122, 25662,25594, 7481, 7481, 7481, 7485, 7485,25653, 7485, 7485, 7485, 7485, 7485, 7485, 7485, 7485, 7485,25600, 7485, 7485, 25663,26004,25600,25713,25834,25824,25663,25745,25600, 7485, 7485, 7485, 7485, 7485, 7485, 7485,25662,25824,25600,25745, 26612, 7485,26013,26132,26132,25616,25616,25616,25616,25616, 25616,25616,25616,25616,26013,25713,25834,25745,26122, 7485, 7485, 7485, 7486, 7486,25653, 7486, 7486, 7486, 7486, 7486, 7486, 7486, 7486, 7486,25653, 7486, 7486,25824,25681,25681, 25675,25675,26613,25816,26123,25653, 7486, 7486, 7486, 7486, 7486, 7486, 7486, 7486,25616,26123,25713,26640, 7486,25617, 25617,25617,25617,25617,25617,25617,25617,25617,25617,25701, 25701,25681,26100,25675,25681,25816, 7486, 7486, 7486, 7490, 7490,25669, 7490, 7490, 7490, 7490, 7490, 7490, 7490, 7490, 7490,25675, 7490, 7490,26048,26048,26048,26100,26393,25669, 26393,25830,25701, 7490, 7490, 7490, 7490, 7490, 7490, 7490, 25816,25669,25675,25687,26674, 7490,25990,25667,25667,25667, 25669,25687,25618,25618,25618,25618,25618,25618,25618,25618, 25618,25687,25830, 7490, 7490, 7490, 7491, 7491,25701, 7491, 7491, 7491, 7491, 7491, 7491, 7491, 7491, 7491,25990, 7491, 7491,25667,25687,25735,25743,26147,26147,25833,25735,25743, 7491, 7491, 7491, 7491, 7491, 7491, 7491, 7491,25618,25667, 25688,26682, 7491,25830,26433,25620,25620,25620,25620,25620, 25620,25620,25620,25620,25618,25735,25743,25667,25688,25833, 7491, 7491, 7491, 7494, 7494,25693, 7494, 7494, 7494, 7494, 7494, 7494, 7494, 7494, 7494,25688, 7494, 7494,26433,25688, 26059,26059,26059,25702,25702,26166,25833, 7494, 7494, 7494, 7494, 7494, 7494, 7494,25833,25620,26870,25693,26872, 7494, 25620,25668,25668,25668,25711,25619,25619,25619,25619,25619, 25619,25619,25619,25619,25619,25693,25702, 7494, 7494, 7494, 7495, 7495,25702, 7495, 7495, 7495, 7495, 7495, 7495, 7495, 7495, 7495,26166, 7495, 7495,25668,25711,25829,25682,25682, 25695,25668,26106,25875, 7495, 7495, 7495, 7495, 7495, 7495, 7495, 7495,25619,25668,25694,25694, 7495,25619,25695,25634, 25634,25634,25634,25634,25634,25634,25634,25634,25829,25711, 25695,25682,25694,26106, 7495, 7495, 7495, 7497, 7497,25695, 7497, 7497, 7497, 7497, 7497, 7497, 7497, 7497, 7497,25682, 7497, 7497,26874,25694,25875,25683,25683,26139,25829,25746, 25748, 7497, 7497, 7497, 7497, 7497, 7497, 7497,25634,26139, 25875,25746,25748, 7497,26356,25748,26106,25635,25635,25635, 25635,25635,25635,25635,25635,25635,26356,25737,25683,25746, 25748, 7497, 7497, 7497, 7498, 7498,25737, 7498, 7498, 7498, 7498, 7498, 7498, 7498, 7498, 7498,25683, 7498, 7498,26128, 26875,25737,25684,25684,26128,26128,25756,25757, 7498, 7498, 7498, 7498, 7498, 7498, 7498, 7498,25635,26356,25756,25757, 7498,25636,25636,25636,25636,25636,25636,25636,25636,25636, 25636,25703,25703,26255,25796,25684,25756,25757, 7498, 7498, 7498, 7499, 7499,25796, 7499, 7499, 7499, 7499, 7499, 7499, 7499, 7499, 7499,25684, 7499, 7499,25946,25946,25796,25685, 25685,26880,25684,25758,25703, 7499, 7499, 7499, 7499, 7499, 7499, 7499,26255,26023,26881,25758,25507, 7499,25507,25507, 25507,25507,25507,25507,25507,25507,25507,25685,25412,25946, 25412, 7499,25685,25758,25901, 7499, 7499, 7499,25703,25507, 26023,25412,25412,25412,25412,25412,25412,25412,25412,25412, 25685,25753,25944,25944,26152,26152,25753,26194,26194, 7499, 7500, 7500,25412, 7500, 7500, 7500, 7500, 7500, 7500, 7500, 7500, 7500,25852, 7500, 7500,26085,25901,25944,25686,25686, 25852,25852,25760,25753, 7500, 7500, 7500, 7500, 7500, 7500, 7500,25855,25901,26085,25760,26621, 7500,25760,26887,25855, 25855,26085,25637,25637,25637,25637,25637,25637,25637,25637, 25637,25686,25760,26621, 7500, 7500, 7500, 7501, 7501,25997, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501,25686, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501, 7501,25637,26201, 26201,25997,25792, 7501,25765,26119,25676,25676,25781,25765, 25708,25792,25854,25781,25637,26119,26030,26663,25792,25997, 25854, 7501, 7501, 7501, 7503, 7503,25854, 7503, 7503, 7503, 7503, 7503, 7503, 7503, 7503, 7503,25765, 7503, 7503,25676, 25781,26663,25676,26030,25708,25708,25768,25773, 7503, 7503, 7503, 7503, 7503, 7503, 7503,26888,26185,25676,25768,25773, 7503,26185,25708,25728,25728,25981,25638,25638,25638,25638, 25638,25638,25638,25638,25638,25638,25768,25773, 7503, 7503, 7503, 7504, 7504,25708, 7504, 7504, 7504, 7504, 7504, 7504, 7504, 7504, 7504,25981, 7504, 7504,25728,25794,25710,25981, 26897,26037,25794,25774,25784, 7504, 7504, 7504, 7504, 7504, 7504, 7504, 7504,25638,26898,25774,25784, 7504,25638,25770, 25770,25770,25770,25770,25770,25770,25770,25770,26037,25794, 25728,26117,25710,25774,25784, 7504, 7504, 7504, 7505, 7505, 25903, 7505, 7505, 7505, 7505, 7505, 7505, 7505, 7505, 7505, 25710, 7505, 7505,25771,25771,25771,25771,25771,25771,25771, 25771,25771, 7505, 7505, 7505, 7505, 7505, 7505, 7505,26205, 26205,25710,26908,25508, 7505,25508,25508,25508,25508,25508, 25508,25508,25508,25508,26117,26120,25903,25422, 7505,26117, 26117,25903, 7505, 7505, 7505,26120,25508,25817,25422,25422, 25422,25422,25422,25422,25422,25422,25422,25639,25639,25639, 25639,25639,25639,25639,25639,25639, 7505, 7516, 7516,25422, 7516, 7516, 7516, 7516, 7516, 7516, 7516, 7516, 7516,25817, 7516, 7516,25772,25772,25772,25772,25772,25772,25772,25772, 25772, 7516, 7516, 7516, 7516, 7516, 7516, 7516,26446,25798, 26157,26157,26157, 7516,26006,26446,25747,25639,25798,25817, 25709,26006,25639,25747,25817,25798,26006,26681,25747,26715, 25798, 7516, 7516, 7516, 7517, 7517,26103, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517,25747, 7517, 7517,25811, 25811,26681,25806,25806,25709,26108,25776,25798, 7517, 7517, 7517, 7517, 7517, 7517, 7517, 7517,26103,26909,25776,26715, 7517,25776,25709,25647,25647,25647,25647,25647,25647,25647, 25647,25647,25811,25811,25709,25806,25776,26108, 7517, 7517, 7517, 7531, 7531,25709, 7531, 7531, 7531, 7531, 7531, 7531, 7531, 7531, 7531,25806, 7531, 7531,25786,25786,25786,25786, 25786,25786,25786,25786,25786, 7531, 7531, 7531, 7531, 7531, 7531, 7531,25842,25647,25842,26145,26919, 7531,25647,25831, 26145,26145,25842,25842,25919,25647,25657,25657,25657,25657, 25657,25657,25657,25657,25657, 7531, 7531, 7531, 7532, 7532, 26920, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 25831, 7532, 7532,25787,25787,25787,25787,25787,25787,25787, 25787,25787, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 7532, 25919,25841,25847,26124, 7532,25919,25657,26187,25847,25841, 26195,25657,26187,26124,26124,25831,25847,26668,25657,25841, 26195,25847, 7532, 7532, 7532, 7554, 7554,26668, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7554, 7555,25528, 26160,26212,26045,25528,25978,26160,26160,25978,26927, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555,25755,25528, 25759,25767,25978,26244,26441,25755,26212,25759,25767,26045, 25755,25528,25759,25767,25788,25788,25788,25788,25788,25788, 25788,25788,25788,25978,26441,25528,25814,25814,25755,26244, 25759,25767, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7555, 7558, 7558,25814, 7558, 7558, 7558, 7558, 7558, 7558, 7558, 7558, 7558,26929, 7558, 7558,25803,25803,25803,25803,25803,25803,25803,25803, 25803, 7558, 7558, 7558, 7558, 7558, 7558, 7558,25814,25705, 26930,26125,25705, 7558,25814,25808,25808,26173,25810,25810, 26125,26173,25705,25705,25705,25705,25705,25705,25705,25705, 25705, 7558, 7558, 7558, 7558, 7559, 7559,25775, 7559, 7559, 7559, 7559, 7559,25705,25775, 7559, 7559, 7559,25808,25775, 25805,25810,25805,25805,25805,25805,25805,25805,26430,25799, 7559, 7559, 7559, 7559, 7559, 7559,25808,25775,25799,25810, 26007, 7559,25783,25805,25832,25849,26014,25808,25849,25783, 25799,26430,26007,26014,25783,26007,25849,26258,26014, 7559, 7559, 7559, 7559, 7560, 7560,26258, 7560, 7560, 7560, 7560, 7560,25844,25783, 7560, 7560, 7560,25832,25799,25843,25804, 25804,25804,25804,25804,25804,25804,25804,25804, 7560, 7560, 7560, 7560, 7560, 7560, 7560,25807,25807,26056,25844, 7560, 25804,26357,25850,25843,25844,25850,26710,25850,26980,25832, 26357,25843,25844,25850,25812,25812,26169, 7560, 7560, 7560, 7560, 7565,26448,25823,26056,25813,25813,25851,25807,25807, 7565,25957, 7565, 7565, 7565, 7565, 7565, 7565, 7565, 7565, 7565, 7565,25822,25823,26385,26448,25807,25812, 7565, 7565, 7565, 7565, 7565, 7565,25851,25823,25858,26710,25813,25813, 25851,26385,25822,25957,26385,25812,25957,26070,25851,26169, 26169,25902,25851,25918,25822, 7565, 7565, 7565, 7565, 7565, 7565, 7571,25812, 7571, 7571, 7571, 7571, 7571, 7571, 7571, 7571, 7571, 7571,25813,26070,25823,25822,26137,26987, 7571, 7571, 7571, 7571, 7571, 7571,26099,26137,26137,25858,25858, 25859,25948,25948,25859,25858,26228,25858,26099,25902,25859, 25918,25859,25820,25902,25820,25918, 7571, 7571, 7571, 7571, 7571, 7571, 7575, 7575, 7575, 7575, 7575, 7575, 7575, 7575, 7575, 7575,25857,26099,25948,26228,26015,25857, 7575, 7575, 7575, 7575, 7575, 7575,26651,25857,25820,26651,26015,25951, 25951,26015,25983,25983,25857,25867,25867,25867,25867,25867, 25867,25867,25867,25867,25820, 7575, 7575, 7575, 7575, 7575, 7575, 7579, 7579, 7579, 7579, 7579, 7579, 7579, 7579, 7579, 7579,25820,25951,26984,25927,25983,26984, 7579, 7579, 7579, 7579, 7579, 7579,25868,25868,25868,25868,25868,25868,25868, 25868,25868,25885,25885,25885,25885,25885,25885,25885,25885, 25885,25961,25961,25972, 7579, 7579, 7579, 7579, 7579, 7579, 7583, 7583, 7583, 7583, 7583, 7583, 7583, 7583, 7583, 7583, 25927,25972,26254,26260,26259,25927, 7583, 7583, 7583, 7583, 7583, 7583,25927,26159,25961,26259,27047,25853,26159,26159, 25961,26131,25972,25853,25972,26159,26131,26131,26131,26254, 26260,25853,25961, 7583, 7583, 7583, 7583, 7583, 7583, 7584, 7584,25853, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7584, 7587, 7587,26097, 7587, 7587, 7587, 7587, 7587, 7587, 7587, 7587, 7587,26959, 7587, 7587, 7587, 7587, 7587, 26959,25985,25985,26399,26097,25971, 7587, 7587, 7587, 7587, 7587, 7587, 7587,25917,26399,26190,26097,25971, 7587,25995, 25818,25818,25818,25818,25886,25886,25886,25886,25886,25886, 25886,25886,25886,25937,25985,25971, 7587, 7587, 7587, 7588, 7588,26262, 7588, 7588, 7588, 7588, 7588, 7588, 7588, 7588, 7588,25995, 7588, 7588,25818,25917,25971,25986,25986,25954, 26182,26182,26190, 7588, 7588, 7588, 7588, 7588, 7588, 7588, 26182,25917,25818,26150,26262, 7588,26470,25954,26190,25937, 26470,25818,26150,26150,25937,25954,26336,26336,26336,25818, 25986,25937,25995, 7588, 7588, 7588, 7590, 7590,25954, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7590, 7591, 7591,26211, 7591, 7591, 7591, 7591, 7591, 7591, 7591, 7591, 7591,27089, 7591, 7591, 7591, 7591, 7591,25980,25966,25966, 26061,26276,25980, 7591, 7591, 7591, 7591, 7591, 7591, 7591, 26416,26253,26061,26211,26253, 7591,26049,26049,26049,26049, 26049,26049,26049,26049,26049,26408,26408,26416,26276,25980, 26061,25966,26253, 7591, 7591, 7591, 7591, 7592, 7592,25966, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7592, 7593, 7593,25929, 7593, 7593, 7593, 7593, 7593, 7593, 7593, 7593, 7593,26104, 7593, 7593,25939,25947,25947,25952,25952, 25952,26062,26487,26487, 7593, 7593, 7593, 7593, 7593, 7593, 7593,26490,26490,26062,26558,25929, 7593,25953,25953,25953, 25967,25967,26369,26104,27182,26333,26558,26369,25939,25947, 25962,26062,25952,26213, 7593, 7593, 7593, 7593, 7599, 7599, 7599, 7599, 7599, 7599, 7599, 7599, 7599,25929,26104,26064, 25952,25953,26333,25967, 7599, 7599, 7599, 7599, 7599, 7599, 25939,26064,25962,25947,26064,26213,25952,25977,25977,25953, 26022,25967,26423,26213,26504,26022,25960,25960,25963,26064, 25962, 7599, 7599, 7599, 7599, 7599, 7599, 7602, 7602, 7602, 7602, 7602, 7602, 7602, 7602, 7602, 7602,25994,26134,26504, 25977,25962,26022, 7602, 7602, 7602, 7602, 7602, 7602,25960, 25963,26134,26701,26134,27183,25969,25969,25993,25977,25993, 26494,26494,26134,26423,26423,25970,25970,25960,25963,25994, 7602, 7602, 7602, 7602, 7602, 7602, 7606, 7606, 7606, 7606, 7606, 7606, 7606, 7606, 7606,25960,25996,25996,25969,25963, 25996,25993, 7606, 7606, 7606, 7606, 7606, 7606,25970,25994, 26701,25970,26551,26168,25984,25984,25969,26009,26009,25993, 26010,26010,26029,26551,26429,26438,25970,26029,25996, 7606, 7606, 7606, 7606, 7606, 7606, 7609, 7609,25969, 7609, 7609, 7609, 7609, 7609, 7609, 7609, 7609, 7609,25984, 7609, 7609, 26009,26095,26036,26010,26029,26072,25979,26036,26277, 7609, 7609, 7609, 7609, 7609, 7609, 7609,26168,26072,26429,26438, 26277, 7609,27185,26174,25979,26395,26168,26095,26174,26174, 26395,25984,25979,26480,26036,26072,26095,26480,26277, 7609, 7609, 7609, 7609, 7610, 7610,25979, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7610, 7617,25991, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617, 7617,26044,26459, 26133,26700,26133,26044, 7617, 7617, 7617, 7617, 7617, 7617, 26700,26133,26461,26133,26782,26447,26011,26011,26133,26459, 26055,25991,26069,26782,25991,26055,26105,26069,26450,26461, 26044, 7617, 7617, 7617, 7617, 7617, 7617, 7618, 7618,25991, 7618, 7618, 7618, 7618, 7618, 7618, 7618, 7618, 7618,26011, 7618, 7618,26055,26434,26069,26011,26110,26105,26230,26447, 25991, 7618, 7618, 7618, 7618, 7618, 7618, 7618,26974,26573, 26974,26450,26437, 7618,25992,26451,26011,26063,26084,26084, 26111,26573,25988,26110,26063, 7618,26434,26105,26110,26063, 26230, 7618, 7618, 7618, 7618,25988,25988,25988,25988,25988, 25988,25988,25988,25988,26107,26231,26437,26063,25992,26451, 26352,26084,26111, 7618, 7620, 7620,25988, 7620, 7620, 7620, 7620, 7620, 7620, 7620, 7620, 7620,25992, 7620, 7620,26084, 26252,26084,26202,26202,25992,26352,26107,26231, 7620, 7620, 7620, 7620, 7620, 7620, 7620,26352,26473,25992,26111,26343, 7620,26060,26060,26060,26060,26060,26060,26060,26060,26060, 26783,26783,26252,26473,26783,26202,26107,26343, 7620, 7620, 7620, 7620, 7621, 7621,26343, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7621, 7622, 7622,26250, 7622, 7622, 7622, 7622, 7622, 7622, 7622, 7622, 7622,26239, 7622, 7622, 26074,26074,26074,26074,26074,26074,26074,26074,26074, 7622, 7622, 7622, 7622, 7622, 7622, 7622, 7622,26989,26989,26250, 27044, 7622,26375,27044,26239,26071,26376,26375,26411,26375, 26239,26376,26071,26376,26456,26411,26411,26071,26411, 7622, 7622, 7622, 7622, 7623, 7623,26250, 7623, 7623, 7623, 7623, 7623, 7623, 7623, 7623, 7623,26071, 7623, 7623,26075,26075, 26075,26075,26075,26075,26075,26075,26075, 7623, 7623, 7623, 7623, 7623, 7623, 7623,26587,26587,26587,26483,26456, 7623, 26076,26076,26076,26076,26076,26076,26076,26076,26076,26203, 26203,26275,26358,26359,26483,26360,26275, 7623, 7623, 7623, 7624, 7624,26092, 7624, 7624, 7624, 7624, 7624, 7624, 7624, 7624, 7624, 7624, 7624, 7624,26144,26083,26083,26358,26359, 26144,26360,26203,26275, 7624, 7624, 7624, 7624, 7624, 7624, 7624,26098,26087,26087,26092,26079, 7624,26079,26079,26079, 26079,26079,26079,26079,26079,26079,26431,26112, 7624,26083, 27186,26098,26083,26144, 7624, 7624, 7624, 7624,26079,26089, 26089,26109,26367,26098,27192,26087,26332,26083,26087,26092, 26092,26332,26431,26439,26531,26452, 7624, 7625, 7625,26112, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625, 7625,26098, 7625, 7625,26089,26109,26367,26089,26206,26206,26332,26439, 26285, 7625, 7625, 7625, 7625, 7625, 7625, 7625,26452,26531, 27049,27049,26285, 7625,26080,26112,26080,26080,26080,26080, 26080,26080,26080,26080,26080,27091,27091,26089,26109,26206, 26285, 7625, 7625, 7625, 7625, 7627, 7627,26080, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7627, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 7629, 7629,26670,26279, 26286,26675,26550,27193, 7629, 7629, 7629, 7629, 7629, 7629, 26550,26279,26286,26675,26279,26670,26081,26251,26081,26081, 26081,26081,26081,26081,26081,26081,26081,26090,26090,26279, 26286, 7629, 7629, 7629, 7629, 7629, 7629, 7631, 7631,26081, 7631, 7631, 7631, 7631, 7631, 7631, 7631, 7631, 7631,26251, 7631, 7631,26215,26215,26361,26361,26220,26220,26449,26857, 26090, 7631, 7631, 7631, 7631, 7631, 7631, 7631,26091,26091, 26857,26866,26093, 7631,26121,26251,26158,26714,26172,26495, 26495,26158,26121,26172,26449,26215,26361,26121,26091,26220, 26090, 7631, 7631, 7631, 7637,26090,26207,26207,26121,26355, 26091,26240,26240,26215,26093, 7637, 7637, 7637, 7637, 7637, 7637, 7637, 7637, 7637,26158,26866,26172,27198,26714,26355, 26457, 7637, 7637, 7637, 7637, 7637, 7637,26091,26093,26207, 26495,26355,26979,27199,26240,26091,26094,26094,26094,26093, 26208,26208,26208,26241,26241,26418,26457,26207, 7637, 7637, 7637, 7637, 7637, 7637, 7638, 7638,26207, 7638, 7638, 7638, 7638, 7638, 7638, 7638, 7638, 7638, 7638, 7638, 7638,26440, 26094,26544,26355,26294,26208,26362,26241,26418, 7638, 7638, 7638, 7638, 7638, 7638, 7638,26294,26218,26418,26094,26218, 7638,26979,26208,26440,26204,26204,26210,27204,26544,26217, 26217,26243,26243,26294,26440,26094,26362,26218, 7638, 7638, 7638, 7638, 7639, 7639,26210, 7639, 7639, 7639, 7639, 7639, 7639, 7639, 7639, 7639, 7639, 7639, 7639,26204,26218,26455, 26362,26210,26217,26204,26243,26210, 7639, 7639, 7639, 7639, 7639, 7639, 7639, 7639,26469,26496,26496,26237, 7639,26469, 26217,26209,26209,26209,26204,26237,26216,26216,26365,26263, 26263,26243,27033,26455,27033,26237, 7639, 7639, 7639, 7639, 7641, 7641,26364, 7641, 7641, 7641, 7641, 7641, 7641, 7641, 7641, 7641,26469, 7641, 7641,26209,26237,26221,26221,26216, 26365,26209,26263,26365, 7641, 7641, 7641, 7641, 7641, 7641, 7641, 7641,26720,26209,26364,26496, 7641,26216,26221,26642, 26224,26224,26209,26436,26232,26232,26246,26246,26219,26263, 26221,26720,26503,26216, 7641, 7641, 7641, 7641, 7642, 7642, 26364, 7642, 7642, 7642, 7642, 7642, 7642, 7642, 7642, 7642, 26436, 7642, 7642,26224,26642,26436,26366,26232,26246,26219, 26299,26503, 7642, 7642, 7642, 7642, 7642, 7642, 7642,27039, 27205,26224,26299,26238, 7642,26232,26246,26219,26225,26225, 26233,26233,26234,26234,27097,27097,26235,26235,26366,26224, 26299,26238, 7642, 7642, 7642, 7642, 7643, 7643,26219, 7643, 7643, 7643, 7643, 7643, 7643, 7643, 7643, 7643,26238, 7643, 7643,26225,26238,26233,26235,26234,26226,26225,26552,26235, 7643, 7643, 7643, 7643, 7643, 7643, 7643, 7643,27039,26225, 26366,26233, 7643,26234,26596,26596,26596,26235,26236,26236, 26351,26227,26234,26247,26307,26552,26680,26719,26226,26435, 7643, 7643, 7643, 7643, 7644, 7644,26307, 7644, 7644, 7644, 7644, 7644, 7644, 7644, 7644, 7644,26226, 7644, 7644,26435, 26248,26236,26351,26227,26307,26680,26718,26247, 7644, 7644, 7644, 7644, 7644, 7644, 7644,26247,26757,26226,26547,26236, 7644,26227, 7644,26435,26351,26247,27210,26374,26719,26242, 26242,26249,26249,26249,26248,26757,26278,26351, 7644, 7644, 7644, 7644,26227,26278,26547,26834,26247,26718,26278, 7644, 7645, 7645,26248, 7645, 7645, 7645, 7645, 7645, 7645, 7645, 7645, 7645,26242, 7645, 7645,26249,26278,26518,26242,26248, 26288,26519,26301,26248, 7645, 7645, 7645, 7645, 7645, 7645, 7645,26834,26288,26249,26301,26288, 7645,26301,26374,26242, 26342,26342,26518,26374,26382,26374,26264,26264,26382,26382, 26288,26382,26301,26519, 7645, 7645, 7645, 7646, 7646,27211, 7646, 7646, 7646, 7646, 7646, 7646, 7646, 7646, 7646,26377, 7646, 7646,26543,26342,26377,26377,26377,26313,27219,26264, 26315, 7646, 7646, 7646, 7646, 7646, 7646, 7646,26264,26313, 26543,26342,26315, 7646,26379,26315,26284,26379,26605,26605, 26605,26636,26379,26284,26379,26543,27220,26313,26284,26636, 26315, 7646, 7646, 7646, 7647, 7647,26666, 7647, 7647, 7647, 7647, 7647, 7647, 7647, 7647, 7647,26284, 7647, 7647,26296, 26296,26296,26296,26296,26296,26296,26296,26296, 7647, 7647, 7647, 7647, 7647, 7647, 7647, 7647,26378,26413,26520,26666, 7647,26380,26378,26287,26790,26413,26380,26378,26380,26378, 26287,26413,26413,26790,27043,26287,27043,26380, 7647, 7647, 7647, 7648, 7648,26520, 7648, 7648, 7648, 7648, 7648, 7648, 7648, 7648, 7648,26287, 7648, 7648,26297,26297,26297,26297, 26297,26297,26297,26297,26297, 7648, 7648, 7648, 7648, 7648, 7648, 7648,26293,26673,26401,26521,26479, 7648,26401,26293, 26685,26479,26321,26401,26293,26401,26300,26348,26348, 7648, 26635,27315,26685,26300,26321, 7648, 7648, 7648,26300,26673, 26521,26685,26293,26298,26298,26298,26298,26298,26298,26298, 26298,26298,26321,26402,26479,26635,26300, 7648, 7649, 7649, 26348, 7649, 7649, 7649, 7649, 7649, 7649, 7649, 7649, 7649, 26417, 7649, 7649,26309,26309,26309,26309,26309,26309,26309, 26309,26309, 7649, 7649, 7649, 7649, 7649, 7649, 7649, 7649, 26635,27075,26404,27075, 7649,26348,26404,26306,26713,26559, 26402,26404,26417,26404,26306,26402,26559,26402,27357,26306, 26417,26559, 7649, 7649, 7649, 7661, 7661,26532, 7661, 7661, 7661, 7661, 7661, 7661, 7661, 7661, 7661,26306, 7661, 7661, 26310,26310,26310,26310,26310,26310,26310,26310,26310, 7661, 7661, 7661, 7661, 7661, 7661, 7661,27461,27086,26713,26532, 27086, 7661,26311,26311,26311,26311,26311,26311,26311,26311, 26311,26339,26747,26339,26339,26339,26339,26339,26339, 7661, 7661, 7661, 7662, 7662,26488, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662,26339, 7662, 7662,26323,26323,26323, 26323,26323,26323,26323,26323,26323, 7662, 7662, 7662, 7662, 7662, 7662, 7662, 7662,26405,26405,26488,26403, 7662,26739, 26405,26314,26405,26747,26403,26406,26488,26739,26314,26403, 26406,26403,26406,26314,26752,26751, 7662, 7662, 7662, 7666, 7666,26403, 7666, 7666, 7666, 7666, 7666, 7666, 7666, 7666, 7666,26314, 7666, 7666,26324,26324,26324,26324,26324,26324, 26324,26324,26324, 7666, 7666, 7666, 7666, 7666, 7666, 7666, 26373,27085,26373,27085,26752, 7666,26751,26373,26320,26421, 26756,26373,26373,26798,26373,26320,26421,26421,26373,26421, 26320,26697,26798, 7666, 7666, 7666, 7667, 7667,26533, 7667, 7667, 7667, 7667, 7667, 7667, 7667, 7667, 7667,26320, 7667, 7667,26325,26325,26325,26325,26325,26325,26325,26325,26325, 7667, 7667, 7667, 7667, 7667, 7667, 7667, 7667,26453,27491, 26533,26756, 7667,26337,26337,26337,26337,26337,26337,26337, 26337,26337,26454,26345,26345,26697,26427,26510,26453,26697, 7667, 7667, 7667, 7668, 7668,26349, 7668, 7668, 7668, 7668, 7668, 7668, 7668, 7668, 7668,26510, 7668, 7668,26427,26454, 26505,26712,26453,26711,26454,26349,26345, 7668, 7668, 7668, 7668, 7668, 7668, 7668,26345,26427,26510,26349,26427, 7668, 26505,26338,26338,26338,26338,26338,26338,26338,26338,26338, 27081,26491,26505,26711,26712,26445,26641, 7668, 7668, 7668, 7669, 7669,26338, 7669, 7669, 7669, 7669, 7669, 7669, 7669, 7669, 7669,26349, 7669, 7669,26407,26407,26445,26341,26341, 26407,26641,26407,26491, 7669, 7669, 7669, 7669, 7669, 7669, 7669, 7669,26475,26491,26445,26861, 7669,26445,26572,26347, 26347,26350,26492,26492,26542,26572,26861,26475,26750,27081, 26572,26341,27492,26458, 7669, 7669, 7669, 7670, 7670,26341, 7670, 7670, 7670, 7670, 7670, 7670, 7670, 7670, 7670,26341, 7670, 7670,26347,26350,26354,26492,26542,26458,26354,26475, 26347, 7670, 7670, 7670, 7670, 7670, 7670, 7670,26458,26462, 26475,26463,26474, 7670,26354,26350,26484,26607,26750,26722, 26350,27593,26492,26863,26560, 7670,26354,26347,26350,26607, 26542, 7670, 7670, 7670,26464,26863,26560,26497,26497,26560, 26354,26462,26643,26463,26474,26462,26722,26607,26484,27594, 26462,26463,26474, 7670, 7674, 7674,26484, 7674, 7674, 7674, 7674, 7674, 7674, 7674, 7674, 7674,26464, 7674, 7674,26748, 26497,26464,26498,26498,26511,26511,26485,26643, 7674, 7674, 7674, 7674, 7674, 7674, 7674,26871,27599,26464,26497,26676, 7674,26485,26500,26500,26500,26696,26728,26506,26506,26748, 26498,26676,26728,26871,26728,26498,26676,26511, 7674, 7674, 7674, 7675, 7675,26502, 7675, 7675, 7675, 7675, 7675, 7675, 7675, 7675, 7675,26485, 7675, 7675,26500,26498,26493,26493, 26506,26502,27307,26526,26485, 7675, 7675, 7675, 7675, 7675, 7675, 7675, 7675,26516,26500,26526,26516, 7675,26506,26696, 26507,26507,26502,26500,26502,26801,26501,26501,26501,26755, 26696,26493,26759,26526,26516, 7675, 7675, 7675, 7678, 7678, 26493, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 7678, 26528, 7678, 7678,26507,26526,26516,26513,26513,26509,26759, 26501,27307, 7678, 7678, 7678, 7678, 7678, 7678, 7678,26501, 26755,26507,26527,26801, 7678,27600,26509,26528,26501,26508, 26508,26514,26514,26515,26515,26627,26528,26806,26806,26513, 26527,26509, 7678, 7678, 7678, 7679, 7679,26509, 7679, 7679, 7679, 7679, 7679, 7679, 7679, 7679, 7679,26513, 7679, 7679, 26627,26527,26508,26527,26514,26517,26515,26615,26508, 7679, 7679, 7679, 7679, 7679, 7679, 7679, 7679,26654,26627,26615, 26508, 7679,26514,26944,26515,26522,26522,26541,26806,26508, 26529,26529,26530,26530,26977,26944,26517,26615,26514, 7679, 7679, 7679, 7681, 7681,26977, 7681, 7681, 7681, 7681, 7681, 7681, 7681, 7681, 7681,26517, 7681, 7681,26654,26522,26541, 26524,26524,26749,26529,26672,26530, 7681, 7681, 7681, 7681, 7681, 7681, 7681,26672,26530,26517,26522,26655, 7681,27317, 27317,26654,26525,26525,26833,26536,26536,26536,26540,26540, 26529,26655,26672,26524,26541,26749, 7681, 7681, 7681, 7682, 7682,26655, 7682, 7682, 7682, 7682, 7682, 7682, 7682, 7682, 7682,26524, 7682, 7682,26833,26525,26534,26545,26525,26536, 26648,26540,26545, 7682, 7682, 7682, 7682, 7682, 7682, 7682, 7682,26735,26524,26525,27602, 7682,27005,26536,26534,26735, 26735,26535,26537,26537,26537,26539,26539,26539,27005,26545, 26534,26546,26648, 7682, 7682, 7682, 7683, 7683,26648, 7683, 7683, 7683, 7683, 7683, 7683, 7683, 7683, 7683,26534, 7683, 7683,26538,26538,26538,26539,26535,26537,26820,26546,26539, 7683, 7683, 7683, 7683, 7683, 7683, 7683,26557,26557,26534, 26546,26667, 7683,26535,26537,26608,26614,26539,26628,26628, 26556,26556,26608,26614,26667,26538, 7683,26608,26614,26820, 7683, 7683, 7683,26687,26535,26667,26535,26625,26625,26679, 26557,26557,26646,26538,27523,26608,26614,26644,26679,26724, 27523,26628,26538,26556, 7683, 7684, 7684,26724, 7684, 7684, 7684, 7684, 7684, 7684, 7684, 7684, 7684,26724, 7684, 7684, 26625,26556,26679,26646,26609,26630,26630,26687,26644, 7684, 7684, 7684, 7684, 7684, 7684, 7684,26609,27312,26625,26609, 27312, 7684,26588,26588,26588,26588,26588,26588,26588,26588, 26588,26687,26644,27301,26609,27301,26646,26684,26630, 7684, 7684, 7684, 7685, 7685,26647, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685,26717, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685, 7685,26630,26684,27349,26647,26865, 7685,26597, 26597,26597,26597,26597,26597,26597,26597,26597,26717,26865, 26684,26844,26865,26717,27603,26684, 7685, 7685, 7685, 7687, 7687,26649, 7687, 7687, 7687, 7687, 7687, 7687, 7687, 7687, 7687,26647, 7687, 7687,26606,26606,26606,26606,26606,26606, 26606,26606,26606, 7687, 7687, 7687, 7687, 7687, 7687, 7687, 26791,26799,26844,26649,27349, 7687,26617,26617,26617,26617, 26617,26617,26617,26617,26617,26791,26799,26791,26799,27604, 26791,26799,27258, 7687, 7687, 7687, 7688, 7688,26633, 7688, 7688, 7688, 7688, 7688, 7688, 7688, 7688, 7688,26649, 7688, 7688,26618,26618,26618,26618,26618,26618,26618,26618,26618, 7688, 7688, 7688, 7688, 7688, 7688, 7688, 7688,26803,27606, 26633,26971, 7688,26619,26619,26619,26619,26619,26619,26619, 26619,26619,26971,26721,27258,26678,26832,26933,26933,26933, 7688, 7688, 7688, 7689, 7689,26634, 7689, 7689, 7689, 7689, 7689, 7689, 7689, 7689, 7689,26633, 7689, 7689,26678,26678, 26645,26633,26639,26832,26721,26690,26803, 7689, 7689, 7689, 7689, 7689, 7689, 7689,26639,26721,26830,26634,26690, 7689, 26622,26622,26622,26622,26622,26622,26622,26622,26622,26690, 26686,26645,26686, 7689,26830,26639,26656, 7689, 7689, 7689, 26656,26622,26650,26623,26623,26623,26623,26623,26623,26623, 26623,26623,26634,26645,26686,26830,26656,26855,26634,26622, 26855, 7689, 7703, 7703,26623, 7703, 7703, 7703, 7703, 7703, 7703, 7703, 7703, 7703,26650, 7703, 7703,26761,26629,26629, 26656,26976,26623,26683,26855,26761, 7703, 7703, 7703, 7703, 7703, 7703, 7703,26683,26845,26761,27607,26662, 7703,26629, 26624,26624,26624,26624,26624,26624,26624,26624,26624,26650, 26976,26629,27435,26669,26650,26683, 7703, 7703, 7703, 7704, 7704,26624, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704,26669, 7704, 7704,27435,26845,26637,26626,26626,26624, 26669,26689,26662, 7704, 7704, 7704, 7704, 7704, 7704, 7704, 7704,26808,26808,26689,26657, 7704,26637,26950,26626,26632, 26632,26662,26657,26738,26821,26689,26662,26659,26637,27135, 26626,26738,26738, 7704, 7704, 7704, 7718, 7718,26657, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 7718, 7718,26626, 7718, 7718,26658,26632,27135,26716,26665,26821,26638,26950,26658, 7718, 7718, 7718, 7718, 7718, 7718, 7718,27311,26637,27311, 26665,26659, 7718,26704,26659,26658,26772,26638,26665,26659, 26632,26716,26705,26808,26772,26772,27608,26632,26632,26638, 7718, 7718, 7718, 7719, 7719,26659, 7719, 7719, 7719, 7719, 7719, 7719, 7719, 7719, 7719,26716, 7719, 7719,26660,26691, 26638,26831,26726,26631,26631,26691,26660, 7719, 7719, 7719, 7719, 7719, 7719, 7719, 7719,26951,27343,26704,27343, 7719, 26705,26731,26660,26691,26631,26671,26705,26726,26704,26731, 27035,26954,26731,26831,26671,26726,26631, 7719, 7719, 7719, 7743, 7743,26671, 7743, 7743, 7743, 7743, 7743, 7743, 7743, 7743, 7743,26775, 7743, 7743,26729,26951,26729,26671,27035, 26775,26775,26954,26729, 7743, 7743, 7743, 7743, 7743, 7743, 7743,26631,26677,26725,26765,26725, 7743,27144,26732,27634, 26765,26732,26765,26725,26725,26688,26753,26727,26688,26732, 26677,26841,26954,26688, 7743, 7743, 7743, 7744, 7744,26677, 7744, 7744, 7744, 7744, 7744, 7744, 7744, 7744, 7744,26688, 7744, 7744,27144,26753,26727,26810,26810,26677,26841,26841, 26727, 7744, 7744, 7744, 7744, 7744, 7744, 7744,26727,26733, 26692,26776,26733, 7744,26733,27131,26692,26753,26742,26776, 26733,26742,26766,26692,26766,26693,26734,26742,26810,26742, 26766, 7744, 7744, 7744,26692, 7744, 7749, 7749, 7749, 7749, 7749, 7749, 7749, 7749, 7749, 7749, 7749, 7749,26741, 7749, 7749,27131,26763,26734,27146,27635,26813,26813,26810,26734, 7749, 7749, 7749, 7749, 7749, 7749, 7749,26734,26730,26693, 26737,26734, 7749,26754,26730,27640,26693,26763,26737,27146, 26736,26693,26730,26740,26737,26763,26736,26730,26740,26813, 7749, 7749, 7749,26693,26736,26758,26740,26767,27641,26769, 26741,26741,26769,26767,26736,26740,26741,26754,26741,26813, 26769,26767,26754, 7749, 7771, 7771,26767, 7771, 7771, 7771, 7771, 7771, 7771, 7771, 7771, 7771,26758, 7771, 7771,26805, 26805,26854,26764,26800,26815,26815,27643,26758, 7771, 7771, 7771, 7771, 7771, 7771, 7771,26762,26768,26762,26800,26854, 7771,26778,26774,26981,26768,26762,26762,26768,26800,26764, 26774,26854,26805,26805,26981,26764,26774,26815, 7771, 7771, 7771, 7772, 7772,26764, 7772, 7772, 7772, 7772, 7772, 7772, 7772, 7772, 7772,26770, 7772, 7772,26770,27644,26770,26804, 26804,26814,26814,27645,26770, 7772, 7772, 7772, 7772, 7772, 7772, 7772, 7772,26778,26778,26779,26773, 7772,26779,26778, 27647,26778,26773,26860,26779,26787,26779,27134,26771,26814, 26773,26860,26804,26862,26814, 7772, 7772, 7772, 7775, 7775, 26773, 7775, 7775, 7775, 7775, 7775, 7775, 7775, 7775, 7775, 26804, 7775, 7775,27134,26814,26771,26786,26787,26953,26852, 26862,26771, 7775, 7775, 7775, 7775, 7775, 7775, 7775,26771, 26864,26786,26787,26771, 7775,26777,27040,26864,26853,26786, 26777,26795,26864,26787,26811,26811,26937,27040,26777,26953, 27648,26852, 7775, 7775, 7775, 7776, 7776,26777, 7776, 7776, 7776, 7776, 7776, 7776, 7776, 7776, 7776,27649, 7776, 7776, 26853,26794,26802,26795,26816,26816,26816,26811,26937, 7776, 7776, 7776, 7776, 7776, 7776, 7776,26794,26802,26795,26956, 26953, 7776,26852,26876,26794,26811,26937,26802,26818,26795, 26807,26807,26948, 7776,27353,26876,27353,26853,26816, 7776, 7776, 7776,26807,26807,26807,26807,26807,26807,26807,26807, 26807,26956,26807,26876,26978,27354,26816,27175,27354,26948, 26818, 7776, 7777, 7777,26978, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777,26963, 7777, 7777,26963,26818,26817, 26817,26817,26824,27175,26970,26963, 7777, 7777, 7777, 7777, 7777, 7777, 7777, 7777,26819,26970,26970,27681, 7777,26818, 26824,26819,26822,26822,26825,26825,26819,26819,26823,26823, 26819,26962,26824,26817,26817,26856, 7777, 7777, 7777, 7780, 7780,26824, 7780, 7780, 7780, 7780, 7780, 7780, 7780, 7780, 7780,26817, 7780, 7780,26825,26822,26945,26825,26839,26829, 27113,26823,26856, 7780, 7780, 7780, 7780, 7780, 7780, 7780, 26823,26856,27113,26822,26983, 7780,26945,26829,26962,26823, 26826,26826,26822,26983,26825,26827,26827,27595,26945,26962, 26839,27595,26829, 7780, 7780, 7780, 7781, 7781,26829, 7781, 7781, 7781, 7781, 7781, 7781, 7781, 7781, 7781,26839, 7781, 7781,26843,26843,26826,26945,26840,26883,26943,26827,27077, 7781, 7781, 7781, 7781, 7781, 7781, 7781, 7781,26883,26839, 27704,26826, 7781,27195,27195,27195,26827,26828,26828,26842, 26842,26938,26938,26893,26843,26843,26883,26840,27077,26943, 7781, 7781, 7781, 7783, 7783,26893, 7783, 7783, 7783, 7783, 7783, 7783, 7783, 7783, 7783,26840, 7783, 7783,26868,26868, 26828,26957,26842,26893,26938,26904,26828, 7783, 7783, 7783, 7783, 7783, 7783, 7783,26943,27745,26840,26904,26828, 7783, 26842,27020,26837,26837,26838,26838,26846,26828,26846,27020, 26947,26868,27020,26957,26868,26904,27746, 7783, 7783, 7783, 7784, 7784,26947, 7784, 7784, 7784, 7784, 7784, 7784, 7784, 7784, 7784,27042, 7784, 7784,26837,27147,26838,26957,27145, 26846,27042,26878,26838, 7784, 7784, 7784, 7784, 7784, 7784, 7784, 7784,26947,26837,26878,26838, 7784,26878,26846,26848, 26848,26848,26941,26847,26955,26847,26850,26850,26850,27145, 27147,26837,26878,28018, 7784, 7784, 7784, 7785, 7785,26846, 7785, 7785, 7785, 7785, 7785, 7785, 7785, 7785, 7785,27158, 7785, 7785,27420,26848,26941,28053,26955,26847,27082,26949, 26850, 7785, 7785, 7785, 7785, 7785, 7785, 7785,26885,27082, 26877,26848,26942, 7785, 7785,26847,27021,26877,26850,27021, 26885,26949,26877,26885,26936,26936,26949,27021,27421,26941, 27158, 7785, 7785, 7785,27420,26941,26847,26955,26885,26850, 26877, 7785, 7786, 7786,26942, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786,27421, 7786, 7786,26936, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786, 7786,28121,26942,26936,27359,27359, 7786,26942, 26851,26851,26851,26890,26890,26890,26890,26890,26890,26890, 26890,26890,27960,27028,27173,26964, 7786, 7786, 7786, 7787, 7787,27028, 7787, 7787, 7787, 7787, 7787, 7787, 7787, 7787, 7787,26964, 7787, 7787,26851,26958,27238,26851,26895,26906, 26952,27173,26964, 7787, 7787, 7787, 7787, 7787, 7787, 7787, 26895,26906,26851,26895,26906, 7787,26985,27960,26884,27405, 27405,26985,26985,27238,27018,26884,27018,26958,26895,26906, 26884,26952,27018, 7787, 7787, 7787, 7788, 7788,27416, 7788, 7788, 7788, 7788, 7788, 7788, 7788, 7788, 7788,26884, 7788, 7788,26891,26891,26891,26891,26891,26891,26891,26891,26891, 7788, 7788, 7788, 7788, 7788, 7788, 7788,26952,27416,26958, 27125,27125, 7788, 7788,26892,26892,26892,26892,26892,26892, 26892,26892,26892,26915,27591,27591,26894,26905,27024,27303, 7788, 7788, 7788,26894,26905,26915,27024,27024,26894,26905, 7788, 7793, 7793,27125, 7793, 7793, 7793, 7793, 7793, 7793, 7793, 7793, 7793,26915, 7793, 7793,26894,26905,27303,27345, 26917,27120,27120,26965,27115, 7793, 7793, 7793, 7793, 7793, 7793, 7793,26917,26965,26965,26917,27115, 7793,26900,26900, 26900,26900,26900,26900,26900,26900,26900,26988,27345,28577, 26917,26975,26988,26988,26988, 7793, 7793, 7793, 7794, 7794, 27036, 7794, 7794, 7794, 7794, 7794, 7794, 7794, 7794, 7794, 27036, 7794, 7794,26901,26901,26901,26901,26901,26901,26901, 26901,26901, 7794, 7794, 7794, 7794, 7794, 7794, 7794, 7794, 27120,27632,27632,26991, 7794,26902,26902,26902,26902,26902, 26902,26902,26902,26902,26975,27132,26991,27418,26991,26975, 26975,27417, 7794, 7794, 7794, 7798, 7798,26991, 7798, 7798, 7798, 7798, 7798, 7798, 7798, 7798, 7798,27132, 7798, 7798, 26911,26911,26911,26911,26911,26911,26911,26911,26911, 7798, 7798, 7798, 7798, 7798, 7798, 7798,27417,27132,27418,27419, 27178, 7798,26912,26912,26912,26912,26912,26912,26912,26912, 26912,27045,27178,26995,27445,26995,27045,27045,28620, 7798, 7798, 7798, 7799, 7799,26995, 7799, 7799, 7799, 7799, 7799, 7799, 7799, 7799, 7799,27419, 7799, 7799,26913,26913,26913, 26913,26913,26913,26913,26913,26913, 7799, 7799, 7799, 7799, 7799, 7799, 7799, 7799,26966,26967,26967,27084, 7799,26968, 27445,26916,27763,27013,26966,26966,27084,26967,26916,26968, 26968,27013,26967,26916,26968,26967, 7799, 7799, 7799, 7803, 7803,27013, 7803, 7803, 7803, 7803, 7803, 7803, 7803, 7803, 7803,26916, 7803, 7803,26922,26922,26922,26922,26922,26922, 26922,26922,26922, 7803, 7803, 7803, 7803, 7803, 7803, 7803, 27201,27201,27201,27433,27180, 7803,26923,26923,26923,26923, 26923,26923,26923,26923,26923,27087,27180,26996,27763,27180, 27087,27087,26996, 7803, 7803, 7803, 7804, 7804,26996, 7804, 7804, 7804, 7804, 7804, 7804, 7804, 7804, 7804,27433, 7804, 7804,26924,26924,26924,26924,26924,26924,26924,26924,26924, 7804, 7804, 7804, 7804, 7804, 7804, 7804, 7804,27207,27207, 27207,27172, 7804,26934,26934,26934,26934,26934,26934,26934, 26934,26934,27172,27330,27022,27154,28621,27022,27330,27022, 7804, 7804, 7804, 7807, 7807,27022, 7807, 7807, 7807, 7807, 7807, 7807, 7807, 7807, 7807,26946, 7807, 7807,27332,27117, 27117,27157,27154,27332,27037,27154,26969, 7807, 7807, 7807, 7807, 7807, 7807, 7807,27037,26946,26969,26969,26982, 7807, 26997,26935,26935,26935,26935,26935,26935,26946,26982,26982, 26997,26997,27117,27157,27966,27117,28623, 7807, 7807, 7807, 7808, 7808,26935, 7808, 7808, 7808, 7808, 7808, 7808, 7808, 7808, 7808,27000, 7808, 7808,27017,27423,26946,27016,27015, 26935,27017,27078,27017, 7808, 7808, 7808, 7808, 7808, 7808, 7808, 7808,27078,26986,28624,26990, 7808,26990,26986,26939, 26939,26940,26940,26986,27015,27016,26990,27966,26990,27423, 27422,27016,27015,26990, 7808, 7808, 7808, 7810, 7810,27016, 7810, 7810, 7810, 7810, 7810, 7810, 7810, 7810, 7810,27000, 7810, 7810,26939,27462,26940,27422,27825,26992,27008,27000, 26992, 7810, 7810, 7810, 7810, 7810, 7810, 7810,26992,26993, 27000,27825,27031, 7810,26992,27031,27136,26993,27462,26993, 26993,27031,26994,27031, 7810,26994,27026,26939,27004,26940, 26994, 7810, 7810, 7810,27026,27027,26994,27004,27004,27009, 27026,27079,27009,27027,27027,27136,26994,27034,27136,27009, 27009,27079, 7810, 7811, 7811,27008, 7811, 7811, 7811, 7811, 7811, 7811, 7811, 7811, 7811,27008, 7811, 7811,27057,27509, 27001,27001,27509,27030,27001,27136,27008, 7811, 7811, 7811, 7811, 7811, 7811, 7811,27001,27019,27014,27063,27014, 7811, 27063,27019,27041,27057,27432,27001,27014,27014,27063,27019, 27034,27057,27041,27041,27019,27034,27034, 7811, 7811, 7811, 7812, 7812,27444, 7812, 7812, 7812, 7812, 7812, 7812, 7812, 7812, 7812,27046, 7812, 7812,27030,27030,27046,27164,27076, 27432,27030,27046,27030, 7812, 7812, 7812, 7812, 7812, 7812, 7812, 7812,27048,27444,27055,27025, 7812,27048,27048,27048, 27059,27025,27055,27060,27242,27060,27059,27023,27059,27025, 27164,27060,27055,27820, 7812, 7812, 7812, 7813, 7813,27025, 7813, 7813, 7813, 7813, 7813, 7813, 7813, 7813, 7813,27058, 7813, 7813,27076,27820,27023,27242,27051,27076,27076,28628, 27023, 7813, 7813, 7813, 7813, 7813, 7813, 7813,27023,27051, 27062,27051,27023, 7813,27029,27056,27058,27056,27062,27029, 27051,27062,27058,27124,27124,27056,27056,27029,27592,27242, 27058, 7813, 7813, 7813, 7814, 7814,27029, 7814, 7814, 7814, 7814, 7814, 7814, 7814, 7814, 7814,27070, 7814, 7814,28639, 27126,27126,27592,27166,27070,27050,27124,27050, 7814, 7814, 7814, 7814, 7814, 7814, 7814, 7814,27050,27335,27050,27038, 7814,27166,27335,27050,27124,27064,27066,27038,27064,27166, 27064,27167,27038,27126,27066,27066,27064,27167, 7814, 7814, 7814, 7818, 7818,27038, 7818, 7818, 7818, 7818, 7818, 7818, 7818, 7818, 7818,27069, 7818, 7818,27609,28013,27167,28640, 27126,27069,27069,27609,27083, 7818, 7818, 7818, 7818, 7818, 7818, 7818,27061,27068,27083,27083,27067, 7818,27061,27072, 27398,27068,27067,27088,27122,27122,27061,27068,27088,27130, 27067,27061,27398,27088,27130, 7818, 7818, 7818, 7819, 7819, 27067, 7819, 7819, 7819, 7819, 7819, 7819, 7819, 7819, 7819, 27073, 7819, 7819,27073,27234,27165,27508,27122,28642,27073, 28013,27073, 7819, 7819, 7819, 7819, 7819, 7819, 7819, 7819, 27171,27072,27072,27130, 7819,27071,27090,27072,27171,27072, 27071,27090,27090,27090,27129,27065,27234,27165,27071,27508, 27122,27508, 7819, 7819, 7819, 7822, 7822,27071, 7822, 7822, 7822, 7822, 7822, 7822, 7822, 7822, 7822,27096, 7822, 7822, 27674,27674,27065,27137,27137,27129,27096,27096,27065, 7822, 7822, 7822, 7822, 7822, 7822, 7822,27065,27092,27165,27092, 27065, 7822,27104,27129,27111,27138,27138,27270,27092,27310, 27092,27104,27104,27111,27111,27092,27137,28644,27310, 7822, 7822, 7822, 7823, 7823,27129, 7823, 7823, 7823, 7823, 7823, 7823, 7823, 7823, 7823,27137, 7823, 7823,27168,27138,27138, 27141,27141,27213,27213,27213,27633, 7823, 7823, 7823, 7823, 7823, 7823, 7823, 7823,27270,27270,27138,27080, 7823,27270, 27293,27128,27128,27128,27168,27080,27140,27140,27293,27633, 27080,27168,27133,27141,27293,27293, 7823, 7823, 7823, 7825, 7825,27080, 7825, 7825, 7825, 7825, 7825, 7825, 7825, 7825, 7825,27141, 7825, 7825,27457,27128,27240,27093,27128,27140, 27141,27133,27457, 7825, 7825, 7825, 7825, 7825, 7825, 7825, 27093,27179,27093,27128,27133, 7825,27241,27215,27179,27308, 27231,27093,28022,27179,27118,27118, 7825,27227,27240,27215, 27308,27139,27140, 7825, 7825, 7825,27118,27118,27118,27118, 27118,27118,27118,27118,27118,27227,27118,27215,27241,27139, 27152,27227,27231,27152, 7825, 7826, 7826,27139, 7826, 7826, 7826, 7826, 7826, 7826, 7826, 7826, 7826,27338, 7826, 7826, 27139,27152,27338,27149,27149,27143,27245,27239,27231, 7826, 7826, 7826, 7826, 7826, 7826, 7826,28022,27231,27675,27675, 27304, 7826,27152,27143,27150,27150,27151,27151,27156,27156, 27304,27153,27142,27142,27239,27143,27149,27239,27245, 7826, 7826, 7826, 7827, 7827,27143, 7827, 7827, 7827, 7827, 7827, 7827, 7827, 7827, 7827,27149, 7827, 7827,27150,27372,27151, 27233,27156,27153,27372,27156,27142, 7827, 7827, 7827, 7827, 7827, 7827, 7827, 7827,27142,27150,27305,27151, 7827,27346, 27153,27177,27177,27142,27233,27159,27305,27228,27228,27346, 27243,27150,27472,27472,27472,27233, 7827, 7827, 7827, 7869, 7869,27153, 7869, 7869, 7869, 7869, 7869, 7869, 7869, 7869, 7869,27232, 7869, 7869,27177,27812,27159,27228,27217,27159, 27228,27243,27177, 7869, 7869, 7869, 7869, 7869, 7869, 7869, 27217,28659,27812,27217,27237, 7869,27247,27159,27162,27162, 27162,27249,27160,27232,27313,27160,27237,27228,27217,27313, 27313,27243,27813, 7869, 7869, 7869, 7870, 7870,27159, 7870, 7870, 7870, 7870, 7870, 7870, 7870, 7870, 7870,27247, 7870, 7870,27237,27162,27249,27957,27957,27160,27248,27232,27232, 7870, 7870, 7870, 7870, 7870, 7870, 7870, 7870,27813,27415, 27162,27694, 7870,27246,27160,27163,27163,27163,27188,27188, 27188,27188,27188,27188,27188,27188,27188,27415,27162,27248, 7870, 7870, 7870, 7871, 7871,27160, 7871, 7871, 7871, 7871, 7871, 7871, 7871, 7871, 7871,27246, 7871, 7871,27415,27163, 27434,27246,27694,27248,27309,27163,27347, 7871, 7871, 7871, 7871, 7871, 7871, 7871,27309,27309,27347,27163,28019, 7871, 27189,27189,27189,27189,27189,27189,27189,27189,27189,27316, 27246,28660,27434,27302,27316,27316,27316, 7871, 7871, 7871, 7872, 7872,27257, 7872, 7872, 7872, 7872, 7872, 7872, 7872, 7872, 7872,27851, 7872, 7872,27190,27190,27190,27190,27190, 27190,27190,27190,27190, 7872, 7872, 7872, 7872, 7872, 7872, 7872, 7872,27850,27257,27696,28019, 7872,27196,27196,27196, 27196,27196,27196,27196,27196,27196,27302,27323,27851,27850, 27257,27302,27302,27257, 7872, 7872, 7872, 7873, 7873,27281, 7873, 7873, 7873, 7873, 7873, 7873, 7873, 7873, 7873,27696, 7873, 7873,27202,27202,27202,27202,27202,27202,27202,27202, 27202, 7873, 7873, 7873, 7873, 7873, 7873, 7873,27440,27281, 27281,27759,28662, 7873,27208,27208,27208,27208,27208,27208, 27208,27208,27208,27262,27323, 7873,27440,27281,27465,27323, 27281, 7873, 7873, 7873,27214,27214,27214,27214,27214,27214, 27214,27214,27214,27324,27216,27244,27465,27440,27324,28021, 27759,27216,27324, 7873, 7879, 7879,27216, 7879, 7879, 7879, 7879, 7879, 7879, 7879, 7879, 7879,27374, 7879, 7879,27468, 27262,27374,27320,27400,27216,27262,27244,27320, 7879, 7879, 7879, 7879, 7879, 7879, 7879,27400,27262,27468,27320,27962, 7879,27222,27222,27222,27222,27222,27222,27222,27222,27222, 27327,27244,27327,27406,27406,27474,28021,27327, 7879, 7879, 7879, 7880, 7880,27286, 7880, 7880, 7880, 7880, 7880, 7880, 7880, 7880, 7880,27474, 7880, 7880,27223,27223,27223,27223, 27223,27223,27223,27223,27223, 7880, 7880, 7880, 7880, 7880, 7880, 7880, 7880,27962,27286,27478,28664, 7880,27224,27224, 27224,27224,27224,27224,27224,27224,27224,27226,27226,27333, 27514,27286,27286,27478,27286, 7880, 7880, 7880, 7883, 7883, 27406, 7883, 7883, 7883, 7883, 7883, 7883, 7883, 7883, 7883, 27236, 7883, 7883,27297,27328,27328,27235,27226,27350,27328, 27226,27514, 7883, 7883, 7883, 7883, 7883, 7883, 7883,27350, 27236,27636,27333,27351, 7883,27636,27235,27333,27226,27265, 27229,27229,27236,27351,27351,27261,27297,27226,27235,27265, 27801,28106, 7883, 7883, 7883, 7884, 7884,27482, 7884, 7884, 7884, 7884, 7884, 7884, 7884, 7884, 7884,27236, 7884, 7884, 27229,27362,27451,27229,27801,27482,27362,27261,27297, 7884, 7884, 7884, 7884, 7884, 7884, 7884, 7884,27362,28054,27235, 28106, 7884,27261,27352,27230,27230,27265,27261,27253,27254, 27229,27265,27352,27458,27451,27263,27268,27254,27229, 7884, 7884, 7884, 7886, 7886,27458, 7886, 7886, 7886, 7886, 7886, 7886, 7886, 7886, 7886,27515, 7886, 7886,27230,27377,27253, 27254,27552,28737,27377,27266,27253, 7886, 7886, 7886, 7886, 7886, 7886, 7886,27552,27451,28054,27253,27254, 7886,27253, 27254,27268,27263,27268,27230,27515,27263,27263,27268,27355, 27260,27263,27230,27263,27355,27355, 7886, 7886, 7886, 7887, 7887,27259, 7887, 7887, 7887, 7887, 7887, 7887, 7887, 7887, 7887,27266, 7887, 7887,27329,27467,27266,27365,27467,27329, 27266,27260,27903, 7887, 7887, 7887, 7887, 7887, 7887, 7887, 7887,27260,27259,27467,27329, 7887,28768,27259,27260,27780, 27331,27260,27259,27264,27267,27331,27380,27271,27331,27259, 27273,27380,27259, 7887, 7887, 7887, 7888, 7888,27903, 7888, 7888, 7888, 7888, 7888, 7888, 7888, 7888, 7888,27272, 7888, 7888,27369,27274,27369,27365,27276,27274,27546,27369,27365, 7888, 7888, 7888, 7888, 7888, 7888, 7888,27264,27546,27264, 27264,27267, 7888,27546,27271,27264,27267,27273,27264,27271, 27267,27454,27273,27279,27282,27264, 7888,27780,27306,27715, 7888, 7888, 7888,27371,27271,27272,27306,27715,27371,27274, 27272,27306,27276,27272,27274,27277,27275,27276,27454,27278, 28544,28544,27306,27371, 7888, 7889, 7889,27284, 7889, 7889, 7889, 7889, 7889, 7889, 7889, 7889, 7889,27326, 7889, 7889, 27279,27282,27326,27370,27370,27279,27282,27326,27370, 7889, 7889, 7889, 7889, 7889, 7889, 7889,27470,27863,27284,27470, 27275, 7889,27277,27275,27284,27277,27278,27277,27275,27280, 27961,27278,27863,27277,27470,27284,27486,27278,27284, 7889, 7889, 7889, 7890, 7890,27275, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890,27486, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890, 7890,28056,27325,27961,27280,27724, 7890,27325, 27280,27280,27337,27325,27292,27280,27424,27337,27280,27283, 27285,27292,27292,27337,27292,27724, 7890, 7890, 7890, 7892, 7892,27684, 7892, 7892, 7892, 7892, 7892, 7892, 7892, 7892, 7892,27336, 7892, 7892,27336,27459,27336,28769,27424,27344, 27283,27285,27336, 7892, 7892, 7892, 7892, 7892, 7892, 7892, 28056,27283,27285,27684,27318, 7892,27318,27283,27285,27321, 27283,27285,27459,27321,27321,27318,27512,27318,27321,27512, 27321,27424,27318, 7892, 7892, 7892, 7893, 7893,27512, 7893, 7893, 7893, 7893, 7893, 7893, 7893, 7893, 7893,27373, 7893, 7893,27334,27344,27373,27334,27319,27373,27344,27344,27334, 7893, 7893, 7893, 7893, 7893, 7893, 7893, 7893,27319,27339, 27319,27366, 7893,27339,27339,27334,27366,27358,27339,27319, 27366,27339,27358,27358,27358,27717,27385,27494,27494,27494, 7893, 7893, 7893, 7894, 7894,27824, 7894, 7894, 7894, 7894, 7894, 7894, 7894, 7894, 7894,27363, 7894, 7894,27453,27363, 27363,27375,27717,27824,27363,27452,27363, 7894, 7894, 7894, 7894, 7894, 7894, 7894,27322,27367,27322,27322,27348, 7894, 27367,28772,27322,27452,27367,27322,27348,27385,27385,27516, 27453,27348,27322, 7894,27360,27361,27360, 7894, 7894, 7894, 27452,27368,27348,28016,27375,27360,27368,27360,27361,27375, 27361,27368,27360,27378,27685,27695,27378,27453,27378,27361, 27516, 7894, 7898, 7898,27378, 7898, 7898, 7898, 7898, 7898, 7898, 7898, 7898, 7898,27379, 7898, 7898,27408,27408,27379, 27695,27450,27450,28819,27685,27379, 7898, 7898, 7898, 7898, 7898, 7898, 7898,27364,27516,27364,27364,27376, 7898,28016, 27376,27364,27709,27381,27364,27376, 7898,27381,27381,27550, 27408,27364,27381,27450,27550,27381, 7898, 7898, 7898, 7915, 7915,27376, 7915, 7915, 7915, 7915, 7915, 7915, 7915, 7915, 7915,27384, 7915, 7915,27709,27697,27408,28375,27384,27384, 27450,27384,27388, 7915, 7915, 7915, 7915, 7915, 7915, 7915, 27391,27388,27388,27394,27650, 7915,27399,27391,27391,27397, 27391,27650,27394,27394,27399,27697,27397,27397,27401,27397, 27399,27399,27507, 7915, 7915, 7915,27401,27749,27517,27538, 27538,27756,27401,27401,27538, 7915, 7916, 7916,27427, 7916, 7916, 7916, 7916, 7916, 7916, 7916, 7916, 7916,27721, 7916, 7916,27441,27403,27403,27507,28375,27427,27431,27749,27517, 7916, 7916, 7916, 7916, 7916, 7916, 7916,27463,27463,27439, 27497,27466, 7916,27427,27469,27431,27466,27427,27441,27469, 27721,27476,27749,27431,27476,27403,27441,27439,27497,27507, 7916, 7916, 7916,27403,27466,27517,27431,27469,27756,27476, 27463,28152,27439,27497,28152, 7916, 7931, 7931,27439, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7931, 7934, 7934,27750, 7934, 7934, 7934, 7934, 7934, 7934, 7934, 7934, 7934,28086, 7934, 7934,27480,27464,27464,27480,27407,27407, 27518,27518,27596, 7934, 7934, 7934, 7934, 7934, 7934, 7934, 27596,27484,27480,27750,27484, 7934,27464,27473,27473,27473, 27473,27473,27473,27473,27473,27473,27596,28086,27464,27484, 28857,27407,27518, 7934, 7934, 7934, 7934, 7935, 7935,27520, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935,27407, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935, 7935,28897,27535, 27705,27520,27753, 7935,27411,27411,27412,27412,27605,27705, 27520,27753,27597,27605,27426,27426,27429,27429,27443,27443, 27597, 7935, 7935, 7935, 7935, 7938, 7938, 7938, 7938, 7938, 7938, 7938, 7938, 7938, 7938,27475,27597,27411,28085,27412, 27475, 7938, 7938, 7938, 7938, 7938, 7938,27426,27547,27429, 27426,27443,27428,27428,27740,27411,27535,27412,27475,27443, 28085,27535,27414,27414,27414,27426,27412,27429, 7938, 7938, 7938, 7938, 7938, 7938, 7941, 7941, 7941, 7941, 7941, 7941, 7941, 7941, 7941, 7941,27479,27428,27716,27740,27858,27479, 7941, 7941, 7941, 7941, 7941, 7941,27414,27716,27537,27430, 27430,27436,27436,27565,27414,27547,27542,27479,27858,28262, 27547,27542,27437,27437,27414,27428,27542, 7941, 7941, 7941, 7941, 7941, 7941, 7943, 7943, 7943, 7943, 7943, 7943, 7943, 7943, 7943,27430,27430,27436,27718,27743,28262, 7943, 7943, 7943, 7943, 7943, 7943, 7943,27437,28729,27718,27743,28729, 27430,27537,27436,27449,27449,27449,27537,27565,27892,27483, 27447,27565,28010,27437,27483,28017, 7943, 7943, 7943, 7943, 7943, 7943, 7947, 7947, 7947, 7947, 7947, 7947, 7947, 7947, 7947, 7947,27483,27488,27892,28010,27488,27449, 7947, 7947, 7947, 7947, 7947, 7947,27447,27551,27757,27438,27438,27543, 27522,27488,27551,27752,27543,27449,27646,27551,27487,27543, 28017,27646,27447,27487,27506, 7947, 7947, 7947, 7947, 7947, 7947, 7949, 7949, 7949, 7949, 7949, 7949, 7949, 7949, 7949, 27438,27487,27522,27447,27536,27752,27438, 7949, 7949, 7949, 7949, 7949, 7949,28261,27548,27811,27506,27536,27438,27548, 27549,27549,27536,27669,27548,27576,27549,27438,27536,27548, 27576,27522,27576,27757, 7949, 7949, 7949, 7949, 7949, 7949, 7955, 7955, 7955, 7955, 7955, 7955, 7955, 7955, 7955, 7955, 27506,27506,28261,29126,27862,29132, 7955, 7955, 7955, 7955, 7955, 7955,27495,27495,27495,27495,27495,27495,27495,27495, 27495,27577,27862,27942,27712,27564,27577,27669,27577,27511, 27712,27669,27811, 7955, 7955, 7955, 7955, 7955, 7955, 7958, 7958, 7958, 7958, 7958, 7958, 7958, 7958, 7958, 7958,27511, 27806,27712,27511,27942,27637, 7958, 7958, 7958, 7958, 7958, 7958,27511,27637,27806,27544,27671,27601,27498,27498,27448, 27448,27448,27781,27446,27806,27496,27496,27513,27637,27564, 27781,28168, 7958, 7958, 7958, 7958, 7958, 7958, 7966, 7966, 27564, 7966, 7966, 7966, 7966, 7966, 7966, 7966, 7966, 7966, 27498, 7966, 7966,27448,27513,27701,28052,27446,27496,27544, 27513,27601, 7966, 7966, 7966, 7966, 7966, 7966, 7966,27671, 27701,27448,27544,27671, 7966,27446,27496,27544,27544,27814, 27601,27583,27701,27498,27545,27583,27583,27448,27583,27814, 27446,27496, 7966, 7966, 7966, 7966,27446,27545,27819,28168, 28168,28052,27545, 7966, 7977, 7977,27819, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7977, 7985, 7985, 7985, 7985, 7985, 7985, 7985, 7985, 7985, 7985,27510,27720,28334, 28334,28334,27815, 7985, 7985, 7985, 7985, 7985, 7985,27578, 27720,27792,27815,27720,27578,27578,27578,27510,27527,27527, 27527,27527,27527,27527,27527,27527,27527,27500,27500,27510, 7985, 7985, 7985, 7985, 7985, 7985, 7987, 7987, 7987, 7987, 7987, 7987, 7987, 7987, 7987, 7987,27519,27519,27818,27839, 27510,27792, 7987, 7987, 7987, 7987, 7987, 7987,27818,27553, 27500,27528,27528,27528,27528,27528,27528,27528,27528,27528, 27924,28011,27527,27839,28556,27792,27501,27501,27519, 7987, 7987, 7987, 7987, 7987, 7987, 7990, 7990, 7990, 7990, 7990, 7990, 7990, 7990, 7990, 7990,27500,27802,27924,27802,28556, 27758, 7990, 7990, 7990, 7990, 7990, 7990,27581,27758,27501, 27553,27857,27581,27519,27581,27553,27553,27528,28011,27857, 27802,27553,28014,27581, 7990,27504,27504,27501, 7990, 7990, 7990, 7990, 7990, 7990, 7996, 7996, 7996, 7996, 7996, 7996, 7996, 7996, 7996, 7996,27501,27575,27840,28046,27840,27638, 7996, 7996, 7996, 7996, 7996, 7996,27758,27638,27504,27533, 27533,27533,27533,27533,27533,27533,27533,27533,28119,28014, 27840,27585,27539,27638,27505,27505,27539, 7996, 7996, 7996, 7996, 7996, 7996, 7999, 7999, 7999, 7999, 7999, 7999, 7999, 7999, 7999, 7999,27504,28046,28119,29307,27504,28049, 7999, 7999, 7999, 7999, 7999, 7999,27539,27575,27505,27579,27904, 27539,27575,27580,27575,27579,27580,27533,27533,27585,27579, 27580,27579,27580,27585,27521,27585, 7999, 7999, 7999, 7999, 7999, 7999, 8007, 8007, 8007, 8007, 8007, 8007, 8007, 8007, 8007, 8007,27505,27505,27904,28049,27540,27541, 8007, 8007, 8007, 8007, 8007, 8007,27540,27541,27521,27584,27587,27540, 27541,27584,27587,27751,27540,27541,27584,27587,27584,27587, 27540,27541,27742,27499,27499, 8007, 8007, 8007, 8007, 8007, 8007, 8010, 8010, 8010, 8010, 8010, 8010, 8010, 8010, 8010, 8010,27521,27742,27826,29326,27751,27751, 8010, 8010, 8010, 8010, 8010, 8010,27826,27742,27610,27499,27554,27554,27554, 27554,27554,27554,27554,27554,27554,27589,27725,27655,29354, 28045,27589,27725,27589, 8010, 8010, 8010, 8010, 8010, 8010, 8018, 8018, 8018, 8018, 8018, 8018, 8018, 8018, 8018,27499, 27725,27499,27598,28045,28401,27586, 8018, 8018, 8018, 8018, 8018, 8018,27586,27574,27554,27574,27610,27586,27901,27586, 27574,27610,27588,27588,27574,27574,27655,27574,27588,27586, 27588,27574,27655, 8018, 8018, 8018, 8018, 8018, 8018, 8023, 8023, 8023, 8023, 8023, 8023, 8023, 8023, 8023, 8023,27598, 27901,28625,28625,29394,27598, 8023, 8023, 8023, 8023, 8023, 8023,27532,27532,27532,27532,27532,27532,27532,27532,27532, 27502,27502,28401,27529,27529,27529,27529,27529,27529,27529, 27529,27529, 8023, 8023, 8023, 8023, 8023, 8023, 8025, 8025, 8025, 8025, 8025, 8025, 8025, 8025, 8025,27529,27973,28082, 28645,28645,27639,27502, 8025, 8025, 8025, 8025, 8025, 8025, 27534,27534,27534,27534,27534,27534,27534,27534,27534,27590, 27590,27532,27617,27975,27590,28082,27590,27617,27532,27617, 27502, 8025, 8025, 8025, 8025, 8025, 8025, 8033,27502, 8033, 8033, 8033, 8033, 8033, 8033, 8033, 8033, 8033, 8033,27639, 27973,27886,27886,27534,27639, 8033, 8033, 8033, 8033, 8033, 8033,27534,27558,27558,27558,27558,27558,27558,27558,27558, 27558,27618,27503,27503,27622,27975,27618,27534,27618,27622, 27616,27622, 8033, 8033, 8033, 8033, 8033, 8033, 8037, 8037, 27622, 8037, 8037, 8037, 8037, 8037, 8037, 8037, 8037, 8037, 27503, 8037, 8037,27619,29420,27503,27672,27672,27619,27619, 27619,27886, 8037, 8037, 8037, 8037, 8037, 8037, 8037,27642, 27558,27624,27830,29447, 8037,27624,27624,27810,27624,27556, 27556,27556,27556,27556,27556,27556,27556,27556,27810,27672, 27503,27616, 8037, 8037, 8037, 8037,27616,27810,27616,27557, 27654,27557,27557,27557,27557,27557,27557,27557,27557,27557, 27795,28433,27830,27651,27642, 8037, 8038, 8038,27795, 8038, 8038, 8038, 8038, 8038, 8038, 8038, 8038, 8038,27556, 8038, 8038,27629,27629,27642,27795,27556,27830,27629,27848,27629, 8038, 8038, 8038, 8038, 8038, 8038, 8038,27557,27615,27848, 27615,28433, 8038,27621,27654,27615,27621,27852,27848,27615, 27615,27621,27615,27621,27651,27654,27615,27852,27922,27651, 8038, 8038, 8038, 8038, 8047, 8047,27922, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8047, 8050,28301, 8050, 8050, 8050, 8050, 8050, 8050, 8050, 8050, 8050, 8050,27710, 28301,27793,29448,27923,27710, 8050, 8050, 8050, 8050, 8050, 8050,27620,27625,27630,27923,27793,27625,27620,27630,27658, 27630,27625,27620,27625,27620,27793,27658,27658,27822,27658, 27822,27710, 8050, 8050, 8050, 8050, 8050, 8050, 8072, 8072, 27822, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8072, 8075,28000, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075, 8075,28000,27626,27661,27667,28270,27627, 8075, 8075, 8075, 8075, 8075, 8075,27627,27668,27628,27631,27631, 27627,27628,27627,27631,27668,27631,27628,28374,27628,28048, 27668,27668,27627,27673,27673,27670, 8075, 8075, 8075, 8075, 8075, 8075, 8116,27670,28270,27664,27689,27677,27677,27670, 27670,27626,27664,27664,27673,27664,27626, 8116,27626,27661, 27667,27682,27682,27686,27689,27821,27673,27963,27702,27702, 27661,27667,27963,29492, 8116,27683,27683,27683,27796,27821, 27677, 8116,27821,27688,27688,27689,27796,27689,27690,27690, 27692,27692,28048,28374,27682,27686, 8116,27683, 8116,27706, 8116,27702,27796, 8116, 8116,27677,27698,27698, 8116,27683, 27693, 8116,27853, 8116,27700, 8116,27688, 8116, 8116, 8116, 8117,27690,27853,27692,27688,27686,27692,27683,27693,27699, 27699,27719,27700,27706,27688,27703,27703,27726,27719,27698, 27726,27692,28009,27719,27700,27693,27711,27690,27747,27693, 28035,27706, 8117,27700,29515,27726,27703,27698,27902, 8117, 27744,28035,27699,27706,27711,27744,27698,27737,27703,27722, 27722,27699,27706,29470, 8117,29520, 8117,28020, 8117,27747, 27699, 8117, 8117,27707,27707,27707, 8117,27711,27729, 8117, 27902, 8117,27744, 8117,28009, 8117, 8117, 8117, 8118,27737, 8118,27747,27722,27708,27708,27708,27729, 8118,27741,27728, 27728,27730,27730,27734,27734,27735,27735,27707,27729,27731, 27731,27738,28174,27798,27733,27733,27736,27736,27741,28020, 27782,27798, 8118,27761,27737,27707,27737,27708,27782, 8118, 27741,27762,27728,27708,27730,27786,27734,27798,27735,27734, 27739,29470,27731,27738, 8118,27708, 8118,27733, 8118,27736, 27728, 8118, 8118,28057,27708,27762, 8118,27748, 8118, 8118, 27741, 8118,27728, 8118,27730, 8118, 8118, 8118, 8119,27910, 27739,27734,27731,27735,27735,27739,27761,27731,27738,27738, 27782,28174,27733,27733,27736,27782,27733,27803,27748,27794, 27761,27762,27786,27794,27787,27787,27762,27800,27787,28098, 8119,27910,27786,27805,27807,27969,27797, 8119,27787,27794, 27807,27831,28178,27786,27845,27805,27809,28057,28178,27787, 27845,28098, 8119,27748, 8119,27831, 8119,27805,27807, 8119, 8119,27803,27849,27794, 8119,27831, 8119, 8119,27845, 8119, 27833, 8119,27800, 8119, 8119, 8119, 8119, 8122,27833, 8122, 27797,27804,27969,27797,27804,27803, 8122,27969,27797,27804, 27809,27800,27816,27808,27833,27835,27800,27809,27817,27808, 27841,28300,27809,27817,27797,27804,27808,27823,27817,27816, 27843, 8122,27816,27816,27809,27823,27832,27808, 8122,27834, 27832,27838,27843,28051,28061,27847,28089,27834,28300,27849, 27823,27823,28061, 8122,27843, 8122,27832, 8122,27836,27835, 8122, 8122,27835,27834,27841, 8122,27836,27835, 8122,27856, 8122,27844, 8122,27867, 8122, 8122, 8122, 8133,27881,27856, 27832,28089,27836,27835,27844,28268,27838, 8133,27841,27847, 27842,27846, 8133,27842,27859,27844,27847,27846,27842,28051, 27854,27847,27855,27871,27846,27838,27874,27855,27859, 8133, 27838,27859,27855,27847,27842,27846, 8133,27854,27861,27864, 27854,27854,27860,27877,27860,27880,27861,29534,28268,27864, 27867, 8133,27881, 8133,27860, 8133,27881,27883, 8133, 8133, 27867,27861,27861, 8133,28371,28099, 8133,29536, 8133,27896, 8133,27867, 8133, 8133, 8133, 8134,27868,27871,27918,27868, 27882,27882,28044,27874,27882, 8134,27868,27868,27871,27885, 27885,27887,27887,27874,27882,27884,27884,27877,27893,27884, 27926,27896,27880,28371,27874,27882,28099, 8134,27877,27884, 27918,27883,27880,27908, 8134,27883,27888,27888,27908,27896, 27884,28278,27885,27880,27887,27890,27890,27890,27918, 8134, 27893, 8134,27926, 8134,28044, 8134, 8134, 8134,27894,27894, 27896, 8134,27900,28278, 8134,27908, 8134,27927, 8134,27888, 8134, 8134, 8134, 8136,27899,27899,27893,27897,27897,27890, 27900,27891,27984, 8136,27891,28097,27891,27895,27895,27888, 27891,27894,29537,27891,27891,27891,28117,27890,27891,27927, 27931,27900,28397,27900,28117, 8136,28087,27899,27895,27894, 27897,27914, 8136,27911,27907,27899,27914,27927,27931,28097, 27895,27905,27905,27906,27906,27899,27931, 8136,27984, 8136, 28087, 8136,27907,27984, 8136, 8136,27909,27909,27895, 8136, 27907,28397, 8136,27914, 8136,27897, 8136,27911, 8136, 8136, 8136, 8137,27928,27907,27905,27968,27906,27906,27912,27912, 27912, 8137,27915,27968,27968,27911,27915,27915,27919,27909, 27917,27916,27905,27911,27906,27917,27916,27919,29552,27928, 27913,27913,27913, 8137,27928, 8137,27911,28055,27929,27929, 8137,27916,27912,27992,27915,27919,27992,27917,28838,27941, 27930,27930,27917,27916,27992, 8137,27954, 8137,27939, 8137, 27912,27968, 8137, 8137,27913,28838,27968, 8137,27929,27912, 8137,27929, 8137,27913, 8137,27941, 8137, 8137, 8137, 8156, 27952, 8156,27913,27930,27941,27932,27932,27954, 8156,28055, 27939, 8156,27943,27935,27935,27955,27933,27933,27929,27936, 27936,27930,27944,27937,27937,28622,27948,27944,28243,27930, 28622,27952,27943, 8156,28243,27938,27938,28118,27932,27940, 8156,27948,27944,27954,27943,27939,27935,27955,28118,27933, 27955,27939,27936,27948,27944, 8156,27937, 8156,27936, 8156, 28077,28077, 8156, 8156,27932,27991,27952, 8156,27938,27943, 8156,27940, 8156,28136, 8156,27933, 8156, 8156, 8156, 8156, 8159,27935, 8159,27965,27933,27953,27953,27936,27935, 8159, 27937,27937, 8159,27940,28748,27938,27945,27951,27940,27946, 27947,27945,27938,27938,27946,27947,27940,27950,28136,28748, 27993,28077,27991,27949, 8159,27956,27945,27953,27949,27946, 27947, 8159,27950,27991,27951,27965,27993,27947,27945,27950, 27951,27946,27947,27949,27950,27987, 8159,27993, 8159, 8159, 8159,27965,27945, 8159, 8159,27949,27971,27956, 8159,27972, 27977, 8159,28167, 8159,27994, 8159,27995, 8159, 8159, 8159, 8184, 8184,28263,27978,27994,27994,27995,27995,27987,28088, 28060,29349,27972, 8184, 8184, 8184, 8184, 8184, 8184, 8184, 8184, 8184,27956,28137,27970,27979,28263,28167,28026,27956, 28161,28161,27987,27971, 8184,28088,27972,27977,27971,27970, 28161,27972,27977,28060,27976,27980,27977,27981,27978,28137, 27978,27997, 8184, 8187, 8187,27978, 8187, 8187, 8187, 8187, 8187,27997,27997, 8187, 8187, 8187,27997,28060,28079,28079, 27970,27970,27979,27982,27998,28026,27970,27979, 8187, 8187, 8187, 8187, 8187, 8187,27998,27998,28026,27970,29349, 8187, 27970,27976,27980,27999,27981,27976,27976,27980,27983,27981, 27976,28079,27980,28548,27999,27999,28264, 8187, 8187, 8187, 8187, 8188, 8188,28250, 8188, 8188, 8188, 8188, 8188,28250, 27982, 8188, 8188, 8188,28004,27982,28004,28067,28166,28264, 27982,27996,27996,28548,29595,28004, 8188, 8188, 8188, 8188, 8188, 8188, 8188,27996,28002,27983,28001, 8188,27996,28001, 27983,27996,28002,28005,28002,28002,28012,28001,28005,28039, 28067,28039,27983,28001,28005, 8188, 8188, 8188, 8188, 8193, 28039, 8193, 8193, 8193, 8193, 8193, 8193, 8193, 8193, 8193, 8193,28015,28104,28006,28067,28028, 8193, 8193, 8193, 8193, 8193, 8193, 8193,28006,28006,28166,28027,28003,28008,28027, 28003,28028,28100,28012,28256,28003,28104,28027,28012,28104, 28256,28003,28028,28008, 8193, 8193, 8193, 8193, 8193, 8193, 8199,28003, 8199, 8199, 8199, 8199, 8199, 8199, 8199, 8199, 8199, 8199,28015,28281,28100,28029,29604,28015, 8199, 8199, 8199, 8199, 8199, 8199,28008,28029,28029,28030,28298,28033, 29616,28034,28073,28076,28076,28281,28298,28030,28030,28033, 28033,28008,28034,28034,28008, 8199, 8199, 8199, 8199, 8199, 8199, 8203, 8203, 8203, 8203, 8203, 8203, 8203, 8203, 8203, 8203,28031,28031,28076,28032,28073,28076, 8203, 8203, 8203, 8203, 8203, 8203,28031,28032,28032,28037,28040,28031,28032, 28041,28031,28040,28050,28037,28047,28037,28037,28040,28073, 28041,28041,28113,28076, 8203, 8203, 8203, 8203, 8203, 8203, 8207, 8207, 8207, 8207, 8207, 8207, 8207, 8207, 8207, 8207, 28122,28036,28303,28170,28036,28043, 8207, 8207, 8207, 8207, 8207, 8207,28036,28113,28303,29351,28173,28303,28036,28265, 28043,28083,28047,28269,28050,28173,28083,28047,28081,28050, 28279,28113,28122, 8207, 8207, 8207, 8207, 8207, 8207, 8211, 8211, 8211, 8211, 8211, 8211, 8211, 8211, 8211, 8211,28074, 28074,28043,28083,28074,28265, 8211, 8211, 8211, 8211, 8211, 8211,28170,28279,28074,28269,28081,28078,28078,28043,28122, 28081,28043,28287,28173,28074,28114,28114,29351,28084,28091, 28091,28090, 8211, 8211, 8211, 8211, 8211, 8211, 8212, 8212, 8212, 8212, 8212, 8212, 8212, 8212, 8212,28075,28075,28078, 28084,28075,28114,28172, 8212, 8212, 8212, 8212, 8212, 8212, 28165,28075,28091,28090,28287,28331,28080,28080,28080,28110, 28084,28078,28075,28331,28110,28271,28078,28123,28094,28094, 28091, 8212, 8212, 8212, 8212, 8212, 8212, 8215, 8215, 8215, 8215, 8215, 8215, 8215, 8215, 8215, 8215,28080,28090,28295, 28080,28110,28295, 8215, 8215, 8215, 8215, 8215, 8215,28123, 28299,28094,28123,28172,28038,28337,28271,28038,28080,28337, 28172,28299,28038,28110,29623,28165,28295,28080,28038,28094, 8215, 8215, 8215, 8215, 8215, 8215, 8219, 8219,28038, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8219, 8230, 8230,28064, 8230, 8230, 8230, 8230, 8230, 8230, 8230, 8230, 8230,28138, 8230, 8230,28111,28093,28093,28105,28105,28111, 28272,28070,28143, 8230, 8230, 8230, 8230, 8230, 8230, 8230, 28447,28138,28175,28175,28138, 8230,28376,28143,28108,28108, 28108,28447,28175,28138,28376,28092,28111,28105,28093,28143, 28105,28633,28272, 8230, 8230, 8230, 8231, 8231,28064, 8231, 8231, 8231, 8231, 8231, 8231, 8231, 8231, 8231,28064, 8231, 8231,28266,28108,28126,28095,28095,28092,28105,28070,28064, 8231, 8231, 8231, 8231, 8231, 8231, 8231, 8231,28070,28093, 28108,28126, 8231,28272,28092,28095,28102,28102,28756,28070, 28147,28096,28756,28148,28266,28633,28266,28095,28126,28146, 8231, 8231, 8231, 8235, 8235,28092, 8235, 8235, 8235, 8235, 8235, 8235, 8235, 8235, 8235,28095, 8235, 8235,28149,28102, 28112,28147,28102,28096,28148,28112,28146, 8235, 8235, 8235, 8235, 8235, 8235, 8235,28402,28146,28274,28102,28294, 8235, 28134,28096,28402,28109,28109,28109,28147,28124,28124,28149, 29654,28148,28112,28504,28274,28112,28294, 8235, 8235, 8235, 8236, 8236,28096, 8236, 8236, 8236, 8236, 8236, 8236, 8236, 8236, 8236,28134, 8236, 8236,28274,28151,28109,28109,28150, 28124,28674,28144,28149, 8236, 8236, 8236, 8236, 8236, 8236, 8236, 8236,28504,28144,28103,28109, 8236,28144,28368,28125, 28125,28127,28127,28135,28275,28275,28280,28134,28151,28144, 28674,28150,28103,28124, 8236, 8236, 8236, 8240, 8240,28150, 8240, 8240, 8240, 8240, 8240, 8240, 8240, 8240, 8240,28103, 8240, 8240,28125,28103,28127,28135,28145,28275,28280,28369, 28394, 8240, 8240, 8240, 8240, 8240, 8240, 8240,28151,28424, 28125,28145,28395, 8240,28330,28169,28128,28128,28129,28129, 28446,28318,29683,28145,28425,28368,28145,28125,28446,28127, 28135, 8240, 8240, 8240, 8241, 8241,28135, 8241, 8241, 8241, 8241, 8241, 8241, 8241, 8241, 8241,28330, 8241, 8241,28128, 28424,28129,28273,28273,28130,28130,28318,28425, 8241, 8241, 8241, 8241, 8241, 8241, 8241, 8241,28369,28394,28267,28169, 8241,28171,28330,28131,28131,28132,28132,28169,28188,28395, 28171,28171,28273,28325,28128,28273,28129,28130, 8241, 8241, 8241, 8245, 8245,28169, 8245, 8245, 8245, 8245, 8245, 8245, 8245, 8245, 8245,28273, 8245, 8245,28131,28267,28132,28188, 28325,28325,28273,28327,28267, 8245, 8245, 8245, 8245, 8245, 8245, 8245,28130,28285,29685,28400,28188, 8245,28171,28188, 28133,28133,28292,28171,28257,28257,28292,28292,28192,28194, 28372,28131,28636,28132,28327, 8245, 8245, 8245, 8246, 8246, 28285, 8246, 8246, 8246, 8246, 8246, 8246, 8246, 8246, 8246, 28139, 8246, 8246,28133,28292,28139,28327,28257,28192,28192, 28194,28164, 8246, 8246, 8246, 8246, 8246, 8246, 8246, 8246, 28139,28194,28526,28285, 8246,28133,28192,28194,28509,28192, 28194,28400,28139,28372,28219,28636,28509,28398,28133,28341, 28257,28341, 8246, 8246, 8246, 8249, 8249,28372, 8249, 8249, 8249, 8249, 8249, 8249, 8249, 8249, 8249,28140, 8249, 8249, 28341,28526,28140,28142,29691,28219,28223,28164,28142, 8249, 8249, 8249, 8249, 8249, 8249, 8249,28164,28140,28962,28302, 28140, 8249,28219,28142,28164,28219,28302,28164,28184,28140, 28398,28302,28631,28196,28341,28142,28223,28223,28142, 8249, 8249, 8249, 8250, 8250,28398, 8250, 8250, 8250, 8250, 8250, 8250, 8250, 8250, 8250,28223, 8250, 8250,28223,28418,28184, 28962,28259,28259,28304,28196,28184, 8250, 8250, 8250, 8250, 8250, 8250, 8250, 8250,28163,28196,28184,28631, 8250,28184, 28656,28196,28418,28745,28196,28163,28163,28163,28163,28163, 28163,28163,28163,28163,28259,28304, 8250, 8250, 8250, 8252, 8252,28190, 8252, 8252, 8252, 8252, 8252, 8252, 8252, 8252, 8252,28319, 8252, 8252,28193,28193,28193,28193,28193,28193, 28193,28193,28193, 8252, 8252, 8252, 8252, 8252, 8252, 8252, 28745,28319,28190,28656,28304, 8252,28259,28190,28426,29615, 28185,28291,28190,28319,28427,28197,28291,28225,28185,28190, 28244,28244,28190, 8252, 8252, 8252, 8253, 8253,28417, 8253, 8253, 8253, 8253, 8253, 8253, 8253, 8253, 8253,28244, 8253, 8253,28185,28426,28291,28244,28244,28197,28329,28225,28427, 8253, 8253, 8253, 8253, 8253, 8253, 8253, 8253,28185,28225, 28417,28185, 8253,28197,28197,28225,28197,28329,28225,28186, 28186,28186,28186,28186,28186,28186,28186,28186,29615,28329, 8253, 8253, 8253, 8254, 8254,28291, 8254, 8254, 8254, 8254, 8254, 8254, 8254, 8254, 8254, 8254, 8254, 8254,28189,28189, 28189,28189,28189,28189,28189,28189,28189, 8254, 8254, 8254, 8254, 8254, 8254, 8254, 8254,28186,28494,28370,28507, 8254, 28847,28286,28286,28529,28847,28370,28494,28187,28187,28187, 28187,28187,28187,28187,28187,28187,28187, 8254, 8254, 8254, 8254, 8254, 8255, 8255,28189, 8255, 8255, 8255, 8255, 8255, 8255, 8255, 8255, 8255,28286, 8255, 8255,28199,28199,28199, 28199,28199,28199,28199,28199,28199, 8255, 8255, 8255, 8255, 8255, 8255, 8255,28370,28187,28665,28665,28308, 8255,28187, 28480,28276,28276,28396,28507,28195,28216,28286,28448,28529, 28191,28396,28480,28531,28216,28308, 8255, 8255, 8255, 8256, 8256,28531, 8256, 8256, 8256, 8256, 8256, 8256, 8256, 8256, 8256,28199, 8256, 8256,28276,28448,28195,28216,28308,28419, 28305,28191,28195, 8256, 8256, 8256, 8256, 8256, 8256, 8256, 8256,28191,28276,28195,28216, 8256,28195,28216,28191,28396, 28508,28191,28200,28200,28200,28200,28200,28200,28200,28200, 28200,28419,28305, 8256, 8256, 8256, 8259, 8259,28305, 8259, 8259, 8259, 8259, 8259, 8259, 8259, 8259, 8259,28464, 8259, 8259,28201,28201,28201,28201,28201,28201,28201,28201,28201, 8259, 8259, 8259, 8259, 8259, 8259, 8259,28492,28492,28734, 28734,29422, 8259,28451,28501,28201,28530,28492,28200,28202, 28202,28202,28202,28202,28202,28202,28202,28202,28508,28464, 8259, 8259, 8259, 8260, 8260,28316, 8260, 8260, 8260, 8260, 8260, 8260, 8260, 8260, 8260,28451, 8260, 8260,28203,28203, 28203,28203,28203,28203,28203,28203,28203, 8260, 8260, 8260, 8260, 8260, 8260, 8260, 8260,28632,29449,28316,29731, 8260, 28204,28204,28204,28204,28204,28204,28204,28204,28204,28202, 28437,28501,29422,28454,28530,28437,28202, 8260, 8260, 8260, 8262, 8262,28228, 8262, 8262, 8262, 8262, 8262, 8262, 8262, 8262, 8262,28316, 8262, 8262,28203,28203,28454,28316,28324, 28632,28574,28437,28204, 8262, 8262, 8262, 8262, 8262, 8262, 8262,28204,28574,28228,28324,28454, 8262,28209,28209,28209, 28209,28209,28209,28209,28209,28209,28324,28204,29449,28651, 28228,28228,28324,28228, 8262, 8262, 8262, 8263, 8263,28277, 8263, 8263, 8263, 8263, 8263, 8263, 8263, 8263, 8263,28555, 8263, 8263,28224,28224,28224,28224,28224,28224,28224,28224, 28224, 8263, 8263, 8263, 8263, 8263, 8263, 8263, 8263,28573, 28277,28555,28860, 8263,28651,28209,28860,28573,28570,28205, 28205,28205,28205,28205,28205,28205,28205,28205,28277,28682, 28570, 8263, 8263, 8263, 8264, 8264,28326, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 8264,28277, 28315,28107,28260,28260,28260,28326,28488,28570, 8264, 8264, 8264, 8264, 8264, 8264, 8264, 8264,28205,28326,28682,28284, 8264,29742,28207,28207,28207,28207,28207,28207,28207,28207, 28207,28215,28315,28227,28478,28107,28260,28284, 8264, 8264, 8264, 8264, 8264, 8275, 8275, 8275, 8275, 8275, 8275, 8275, 8275, 8275, 8275,28107,28260,28879,28320,28484,28284,28315, 28284,28320,28215,28488,28227, 8275,28478,28315,28215,28260, 28107,28207,28484,28488,28107,28227,28320,28879,28207,28215, 28484,28227,28215, 8275,28227, 8275, 8279, 8279,28320, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8279, 8280, 28221,28283,28283,28141,28423,29747,28309,28309,28141,28317, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280,28141, 28338,29128,28423,28141,29128,28338,28338,28694,28634,28490, 28643,28221,28338,28634,28283,28141,28221,28490,28694,28309, 28643,28221,28283,28423,28317,28317,28502,28490,28221,28141, 28317,28221,28283, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8280, 8283, 8283, 28309, 8283, 8283, 8283, 8283, 8283, 8283, 8283, 8283, 8283, 29748, 8283, 8283,28232,28232,28232,28232,28232,28232,28232, 28232,28232, 8283, 8283, 8283, 8283, 8283, 8283, 8283,28523, 28738,28738,28738,28502, 8283,28524,28293,28232,28306,28306, 28208,28293,28208,28208,28208,28208,28208,28208,28208,28208, 28208,28653, 8283, 8283, 8283, 8283, 8284, 8284,28222, 8284, 8284, 8284, 8284, 8284, 8284, 8284, 8284, 8284,28293, 8284, 8284,28306,28348,28344,28293,28344,28348,28474,28348,28553, 8284, 8284, 8284, 8284, 8284, 8284, 8284, 8284,28208,28222, 28491,29750, 8284,29114,28344,29751,28523,28348,28491,28222, 28344,28306,28524,28553,28474,28653,28222,28474,28491,28222, 8284, 8284, 8284, 8284, 8285, 8285,29114, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8285, 8286, 8286,29761, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8286, 8292,28340, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292, 8292,28347,28340,28347,28340,28746,28554, 8292, 8292, 8292, 8292, 8292, 8292,28217,28217,28217,28217,28217,28217, 28217,28217,28217,28347,28340,28226,28220,28220,28220,28220, 28220,28220,28220,28220,28220, 8292, 8292, 8292, 8292, 8292, 8292, 8293, 8293,28554, 8293, 8293, 8293, 8293, 8293, 8293, 8293, 8293, 8293,28746, 8293, 8293,28226,28328,28347,28641, 28217,28450,28226,28373,28641, 8293, 8293, 8293, 8293, 8293, 8293, 8293,28220,28226,28770,28770,28226, 8293,28233,28233, 28233,28233,28233,28233,28233,28233,28233,28373,28328, 8293, 28346,28288,28346,28450,28561, 8293, 8293, 8293, 8293,28218, 28218,28218,28218,28218,28218,28218,28218,28218,28218,28335, 28442,28346,28323,29690,28335,28442,28578, 8293, 8298,28450, 28561,28323,28328,28373, 8298,28288, 8298,28323,28373, 8298, 8298, 8298, 8298, 8298, 8298, 8298, 8298, 8298,28233,28323, 28258,28258,28442,28288,28346,28233,28218,28335,28578,28696, 8298,28218,28258,28258,28258,28258,28258,28258,28258,28258, 28258,28696,28258,29690,28288,29762,28288, 8298, 8299, 8299, 28578, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8299, 8301, 8301,29777, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8301, 8303, 8303,28579, 8303, 8303, 8303, 8303, 8303, 8303, 8303, 8303, 8303,28575, 8303, 8303,28322, 28441,28321,28440,28596,28322,28441,28321,28440, 8303, 8303, 8303, 8303, 8303, 8303, 8303,28321,28663,28443,28579,28322, 8303,28321,28440,28575,28579,28443,28663,28441,28754,28754, 28754,28322,28441,28321,28440,28596,28579,28322, 8303, 8303, 8303, 8303, 8304, 8304,28443, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8304, 8310,28785, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8310,28605,28786,29017, 29017,28693,28732, 8310, 8310, 8310, 8310, 8310, 8310,28693, 28785,28732,28732,28230,28230,28230,28230,28230,28230,28230, 28230,28230,28786,29026,29026,28605,28652,28342,28605,28342, 8310, 8310, 8310, 8310, 8310, 8310, 8311, 8311,28430, 8311, 8311, 8311, 8311, 8311, 8311, 8311, 8311, 8311,28342, 8311, 8311,28231,28231,28231,28231,28231,28231,28231,28231,28231, 8311, 8311, 8311, 8311, 8311, 8311, 8311,28230,28455,28455, 28430,28652, 8311,28359,28359,28359,28359,28359,28359,28359, 28359,28359,28342,28472, 8311,28582,29780,28940,28430,28851, 8311, 8311, 8311, 8311,28472,28654,28698,28359,28472,28661, 28654,28455,29782,28582,28661,28940,28851,28231,28698,28430, 28472,28698, 8311, 8314, 8314,28582, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8314, 8316, 8316,29787, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8316, 8322, 28741,28463,28771,29795,28774,28741,28741,28771, 8322,28774, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 8322, 28505,28750,28845,28845,28845,28463, 8322, 8322, 8322, 8322, 8322, 8322,28234,28234,28234,28234,28234,28234,28234,28234, 28234,28236,28236,28236,28236,28236,28236,28236,28236,28236, 28670,28310,28310, 8322, 8322, 8322, 8322, 8322, 8322, 8325, 28463, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325, 8325,29035,29035,28505,28493,28750,28431, 8325, 8325, 8325, 8325, 8325, 8325,28527,28310,28670,28715,28505,28236,28234, 28234,28421,28421,28421,28235,28235,28235,28235,28235,28235, 28235,28235,28235,28431, 8325, 8325, 8325, 8325, 8325, 8325, 8328, 8328, 8328, 8328, 8328, 8328, 8328, 8328, 8328,28310, 28310,28715,28493,29799,28421,28310, 8328, 8328, 8328, 8328, 8328, 8328,28493,28431,28676,28864,28527,28235,28311,28311, 28290,28290,28290,28312,28312,28235,28413,28413,28422,28422, 28527,28421,28864, 8328, 8328, 8328, 8328, 8328, 8328, 8331, 8331,28235, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 8331,28311, 8331, 8331,28290,28676,28312,28290,28422,28413, 28609,28422,28312, 8331, 8331, 8331, 8331, 8331, 8331, 8331, 28697,28675,28290,28496,28801, 8331,28311,28697,28496,28422, 28496,29516,28697,28312,29516,28801,28311,28311,28422,28413, 28496,28312,28609, 8331, 8331, 8331, 8331, 8332, 8332,28675, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8332, 8333, 8333,28610, 8333, 8333, 8333, 8333, 8333, 8333, 8333, 8333, 8333,28695, 8333, 8333,28240,28240,28240,28240,28240, 28240,28240,28240,28240, 8333, 8333, 8333, 8333, 8333, 8333, 8333, 8333,29806,28635,28610,29809, 8333,28313,28313,28695, 28238,28238,28238,28238,28238,28238,28238,28238,28238,29813, 28399,29096,29096,28780, 8333, 8333, 8333, 8333, 8334, 8334, 28479, 8334, 8334, 8334, 8334, 8334, 8334, 8334, 8334, 8334, 28313, 8334, 8334,28240,28399,28635,28438,28559,28307,28307, 28438,28438, 8334, 8334, 8334, 8334, 8334, 8334, 8334,28238, 28377,28635,28479,28780, 8334,28800,28238,28313,28377,28314, 28314,28475,28475,28800,28559,28313, 8334,28790,28438,28403, 28399,28307, 8334, 8334, 8334,28399,28790,28403,28239,28679, 28239,28239,28239,28239,28239,28239,28239,28239,28239,28307, 28559,28479,28314,28475, 8334, 8335, 8335,28679, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335, 8335,28343, 8335, 8335, 28377,28343,28307,28343,28671,28377,28677,28784,28679, 8335, 8335, 8335, 8335, 8335, 8335, 8335,28239,28314,29820,28403, 29829, 8335,28343,28314,28403,28514,28514,28514,28514,28514, 28514,28514,28514,28514,28514,29838,28671,28784,28677, 8335, 8335, 8335, 8335, 8337, 8337,28343, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8337, 8339, 8339, 8339, 8339, 8339, 8339, 8339, 8339, 8339, 8339,28476,28477,28951,28345, 28893,28345, 8339, 8339, 8339, 8339, 8339, 8339,28893,28758, 28680,28345,28873,28749,28758,28758,28951,28416,28416,28416, 28345,28415,28415,28428,28428,28452,28452,28476,28477, 8339, 8339, 8339, 8339, 8339, 8339, 8341, 8341,28680, 8341, 8341, 8341, 8341, 8341, 8341, 8341, 8341, 8341,28345, 8341, 8341, 28477,28416,28345,28873,28415,28690,28428,28476,28452, 8341, 8341, 8341, 8341, 8341, 8341, 8341,28749,28429,28429,28416, 28436, 8341,28680,28349,28428,28436,28749,28349,28350,28349, 28350,28416,28432,28432,28452,28503,28525,28690,28429, 8341, 8341, 8341, 8347,28503,28525,28415,28456,28456,28349,28350, 28429,28723,28436, 8347, 8347, 8347, 8347, 8347, 8347, 8347, 8347, 8347,28567,29839,28690,28432,28723,28567,28429, 8347, 8347, 8347, 8347, 8347, 8347,28349,28350,30825,28723,28456, 28349,28350,28357,28357,28357,28357,28357,28357,28357,28357, 28357,28503,28525,28436,28567,28432, 8347, 8347, 8347, 8347, 8347, 8347, 8349, 8349,28716, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349,28456, 8349, 8349,28367,28367,28367, 28367,28367,28367,28367,28367,28367, 8349, 8349, 8349, 8349, 8349, 8349, 8349, 8349,28655,28716,28357,28876, 8349,28358, 28358,28358,28358,28358,28358,28358,28358,28358,28543,28543, 28564,28549,28549,29111,28969,28564, 8349, 8349, 8349, 8349, 8350, 8350,28486, 8350, 8350, 8350, 8350, 8350, 8350, 8350, 8350, 8350,28876, 8350, 8350,28367,28655,29111,28434,28982, 28434,28543,28564,28549, 8350, 8350, 8350, 8350, 8350, 8350, 8350,28982,28655,28969,28486,28358, 8350,28360,28360,28360, 28360,28360,28360,28360,28360,28360,28637,28543,28439,28486, 28549,28564,28434,28439, 8350, 8350, 8350, 8350, 8351, 8351, 28486, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 28434, 8351, 8351,28551,28551,28487,28435,28435,28435,29009, 28439,28894, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 8351, 28487,28434,28894,28637, 8351,28487,28773,28360,28637,28766, 28766,28773,28439,28657,28360,29009,28551, 5541,28773,28766, 28435,28487, 8351, 8351, 8351, 8351, 8352, 8352,28435, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352, 8352,28435, 8352, 8352,28363,28363,28363,28363,28363,28363,28363,28363,28363, 8352, 8352, 8352, 8352, 8352, 8352, 8352,28457,28457,28595, 28657,29297, 8352, 5535, 8352,28657,28361,28361,28361,28361, 28361,28361,28361,28361,28361,28767,28767,28788,28510,28532, 8352, 8352, 8352, 8352,29297,28767,28510,28532,28363,28595, 28457, 8352, 8353, 8353,28595, 8353, 8353, 8353, 8353, 8353, 8353, 8353, 8353, 8353,28788, 8353, 8353,28383,28383,28383, 28383,28383,28383,28383,28383,28383, 8353, 8353, 8353, 8353, 8353, 8353, 8353,28361,28361,28457,29446,28943, 8353,28362, 28362,28362,28362,28362,28362,28362,28362,28362,28510,28532, 28802,28943,28943,28510,28532,28788, 8353, 8353, 8353, 8355, 8355,28779, 8355, 8355, 8355, 8355, 8355, 8355, 8355, 8355, 8355,28383, 8355, 8355,28703,28568,28685,28802,28453,28453, 28568,28685,28362, 8355, 8355, 8355, 8355, 8355, 8355, 8355, 28362,29446,28703,28779,28980, 8355,28384,28384,28384,28384, 28384,28384,28384,28384,28384,28980,28362,28568,28685,28703, 28568,28453,29497, 8355, 8355, 8355, 8355, 8356, 8356,28461, 8356, 8356, 8356, 8356, 8356, 8356, 8356, 8356, 8356,28453, 8356, 8356,28365,28365,28365,28365,28365,28365,28365,28365, 28365, 8356, 8356, 8356, 8356, 8356, 8356, 8356,28959,28458, 28458,28461,28384, 8356,28385,28385,28385,28385,28385,28385, 28385,28385,28385,28420,28420, 8356,28506,28988,28528,29497, 28959, 8356, 8356, 8356,28700,28877,28557,28557,28385,28460, 28460,28365,28458,28550,28550,28988,28461,28461,28365,28988, 28506,28458,28528, 8356, 8357, 8357,28420, 8357, 8357, 8357, 8357, 8357, 8357, 8357, 8357, 8357,28700, 8357, 8357,28557, 28877,29419,28460,29423,28420,28700,28550,28458, 8357, 8357, 8357, 8357, 8357, 8357, 8357, 8357,28506,28557,28528,28420, 8357,28506,28751,28528,28550,28366,28460,28366,28366,28366, 28366,28366,28366,28366,28366,28366,28550,28460, 8357, 8357, 8357, 8357, 8359, 8359,28638, 8359, 8359, 8359, 8359, 8359, 8359, 8359, 8359, 8359,29186, 8359, 8359,28387,28387,28387, 28387,28387,28387,28387,28387,28387, 8359, 8359, 8359, 8359, 8359, 8359, 8359,28366,29419,28751,28751,29423, 8359,28386, 28386,28386,28386,28386,28386,28386,28386,28386,28545,28545, 28638,28858,28858,28858,29186,28638, 8359, 8359, 8359, 8360, 8360,28658, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 8360,28465, 8360, 8360,28387,28387,28465,28467,28603,29104, 29104,28545,28467, 8360, 8360, 8360, 8360, 8360, 8360, 8360, 28878,28465,28979,28603, 5534, 8360,28740,28467,29129,28386, 28979,28740,28740,28465,29129,28603,28386,28658,28740,28467, 28545,28603,28658, 8360, 8360, 8360, 8360, 8361, 8361,28878, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8361, 8364, 8364,28558, 8364, 8364, 8364, 8364, 8364, 8364, 8364, 8364, 8364,29115, 8364, 8364,28393,28393,28393,28393,28393, 28393,28393,28393,28393, 8364, 8364, 8364, 8364, 8364, 8364, 8364, 8364,29353,28558,29115,29352, 8364,28388,28388,28388, 28388,28388,28388,28388,28388,28388,28560,28560,28495,28932, 28932,28558,29603,28932, 8364, 8364, 8364, 8365, 8365,28699, 8365, 8365, 8365, 8365, 8365, 8365, 8365, 8365, 8365,28468, 8365, 8365,28558,28393,28468,28581,28581,28581,28462,28560, 28388, 8365, 8365, 8365, 8365, 8365, 8365, 8365,28388,28468, 29353,28699,29421, 8365,29352,28495,28468,28459,28459,28713, 28495,28468,28604,28606,28388,28560,28495,29779,28581,29603, 28462, 8365, 8365, 8365, 8366, 8366,28495, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366, 8366,28581, 8366, 8366,28604, 28459,28713,28954,28699,28606,28581,28462,28604, 8366, 8366, 8366, 8366, 8366, 8366, 8366,28462,28954,28954,28459,29779, 8366,28783,29421,28552,28552,28714,28389,28389,28389,28389, 28389,28389,28389,28389,28389,28459,28713,28606, 8366, 8366, 8366, 8368, 8368,28831, 8368, 8368, 8368, 8368, 8368, 8368, 8368, 8368, 8368,28783, 8368, 8368,28552,28714,28469,28470, 28583,28583,28583,28469,28470, 8368, 8368, 8368, 8368, 8368, 8368, 8368, 8368,28389,28552,28470,28831, 8368,28469,28470, 28391,28391,28391,28391,28391,28391,28391,28391,28391,28552, 28469,28470,28714,28583,28714, 8368, 8368, 8368, 8369, 8369, 28829, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 8369, 28466, 8369, 8369,28471,29045,28466,28689,28883,28471,28829, 28583,28689, 8369, 8369, 8369, 8369, 8369, 8369, 8369,28391, 28466,28829,28739,28471, 8369,28562,28391,28739,28562,28473, 29060,28607,28466,28924,28473,28471, 8369,28797,28689,28883, 28797,29060, 8369, 8369, 8369,29045,28466,28689,28392,28473, 28392,28392,28392,28392,28392,28392,28392,28392,28392,28562, 28739,28473,28607,28924, 8369, 8370, 8370,28797, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370, 8370,28562, 8370, 8370, 28513,28513,28513,28513,28513,28513,28513,28513,28513, 8370, 8370, 8370, 8370, 8370, 8370, 8370,28392,28607,28562,29391, 28965, 8370,29567,28489,28489,28489,28489,28489,28489,28489, 28489,28489,28565,28704,28704,29152,28565,28565,29239, 8370, 8370, 8370, 8370, 8371, 8371,28747, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 8371,28965, 8371, 8371,28513,29040, 28566,28684,28684,28684,28565,28566,28704, 8371, 8371, 8371, 8371, 8371, 8371, 8371, 8371,29493,29152,29239,29391, 8371, 28489,28516,28516,28516,28516,28516,28516,28516,28516,28516, 28489,28747,28566,29567,29040,28684,28747, 8371, 8371, 8371, 8371, 8372, 8372,28565, 8372, 8372, 8372, 8372, 8372, 8372, 8372, 8372, 8372,28684, 8372, 8372,28535,28535,28535,28535, 28535,28535,28535,28535,28535, 8372, 8372, 8372, 8372, 8372, 8372, 8372,29582,28807,28566,29493,28901, 8372,28516,28921, 28511,28511,28511,28511,28511,28511,28511,28511,28511,29182, 28725,28807, 5532,28895,28901, 8372, 8372, 8372, 8373, 8373, 28724, 8373, 8373, 8373, 8373, 8373, 8373, 8373, 8373, 8373, 28921, 8373, 8373,28807,28535,28580,28580,28901,28673,28673, 28895,28725, 8373, 8373, 8373, 8373, 8373, 8373, 8373,28511, 29182,28724,29582,29046, 8373,28512,28512,28512,28512,28512, 28512,28512,28512,28512,28563,28563,28563,28725,28580,28585, 28585,28673, 8373, 8373, 8373, 8373, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377, 8377,28563,28724,29046,28673, 28931,29390, 8377, 8377, 8377, 8377, 8377, 8377,28563,28931, 28818,28673,28585,28580,28512,28515,28515,28515,28515,28515, 28515,28515,28515,28515,28912,28805,28563,28806,28806, 8377, 8377, 8377, 8377, 8377, 8377, 8380, 8380, 8380, 8380, 8380, 8380, 8380, 8380, 8380, 8380,28818,28818,28585,29542, 5529, 28818, 8380, 8380, 8380, 8380, 8380, 8380,28805,28805,28912, 28806,28515,29350,29390,29554,28912,29542,28518,28518,28518, 28518,28518,28518,28518,28518,28518,28963,28515, 8380, 8380, 8380, 8380, 8380, 8380, 8382,28517,28517,28517,28517,28517, 28517,28517,28517,28517,28517, 8382, 8382, 8382, 8382, 8382, 8382, 8382, 8382, 8382,28597,28936,29050,28919,28963,28597, 28941, 8382, 8382, 8382, 8382, 8382, 8382,28518,28755,28941, 28936,28757,28518,28755,28597,28836,28757,28757,28936,29554, 29350,28919,28517,28757,28919,29050,28597,28517, 8382, 8382, 8382, 8382, 8382, 8382, 8385, 8385,28594, 8385, 8385, 8385, 8385, 8385, 8385, 8385, 8385, 8385,28755, 8385, 8385,28538, 28538,28538,28538,28538,28538,28538,28538,28538, 8385, 8385, 8385, 8385, 8385, 8385, 8385, 8385,28836,28836,28594,29073, 8385,28533,28533,28533,28533,28533,28533,28533,28533,28533, 29084,28569,28795,28667,28667,28569,28569,28795, 8385, 8385, 8385, 8388, 8388, 8388, 8388, 8388, 8388, 8388, 8388, 8388, 8388,28804,28594,28594,29073,28981,28538, 8388, 8388, 8388, 8388, 8388, 8388,28569,28795,29084,28667, 5528, 5526,28569, 28533,29092,28534,28534,28534,28534,28534,28534,28534,28534, 28534,28830,28981,28804, 8388, 8388, 8388, 8388, 8388, 8388, 8392, 8392,28667, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 8392, 8392,28599,28687,28686,28701,28701, 28599,28687,28686,28830, 8392, 8392, 8392, 8392, 8392, 8392, 8392,28534,29092,29092,28804,28599, 8392,28536,28536,28536, 28536,28536,28536,28536,28536,28536,28536,28599,28687,28686, 28599,28701,29183,28830, 8392, 8392, 8392, 8392, 8393, 8393, 28938, 8393, 8393, 8393, 8393, 8393, 8393, 8393, 8393, 8393, 8393, 8393, 8393,29704,29183,28938,28546,28546,28546,28686, 28938,28952, 8393, 8393, 8393, 8393, 8393, 8393, 8393,28687, 28952, 5523,28701, 5522, 8393, 5521,28938, 8393,28584,28584, 28584,28537,28537,28537,28537,28537,28537,28537,28537,28537, 28546,29704, 8393, 8393, 8393, 8393, 8396, 8396,28923, 8396, 8396, 8396, 8396, 8396, 8396, 8396, 8396, 8396,28546, 8396, 8396,28584,28727,28600,28775,28775,28546,28964,28600,28984, 8396, 8396, 8396, 8396, 8396, 8396, 8396,28537,29495,29184, 28923,28984, 8396,28600,28984,29117,28678,28678,28584,28590, 28590,28702,28702,28537,28727,28600,28584,28775,29048,28964, 8396, 8396, 8396, 8396, 8397, 8397,28923, 8397, 8397, 8397, 8397, 8397, 8397, 8397, 8397, 8397,28678, 8397, 8397,28678, 29184,29117,28590,28590,28702,29048,29473,28727, 8397, 8397, 8397, 8397, 8397, 8397, 8397, 8397,28846,28678,28775,29495, 8397,28846,28702,29119,28586,28586,28678,28539,28539,28539, 28539,28539,28539,28539,28539,28539,28539,28590, 8397, 8397, 8397, 8397, 8398, 8398,28593, 8398, 8398, 8398, 8398, 8398, 8398, 8398, 8398, 8398,28846, 8398, 8398,28586,28898,29119, 28726,28840,28587,28587,29473,29059, 8398, 8398, 8398, 8398, 8398, 8398, 8398,29059,28539,28586,28593,29661, 8398,28539, 29043,28540,28540,28540,28540,28540,28540,28540,28540,28540, 28898,28726,28586,28840,29056,28587, 8398, 8398, 8398, 8400, 8400,28840, 8400, 8400, 8400, 8400, 8400, 8400, 8400, 8400, 8400,28593, 8400, 8400,29043,28593,28726,28828,28593,28898, 29056,29056,28587, 8400, 8400, 8400, 8400, 8400, 8400, 8400, 28587,28540,29127,29661,29445, 8400,28540,29127,28547,28547, 28547,28547,28547,28547,28547,28547,28547,28794,28828,29061, 29241,29192,28794, 8400, 8400, 8400, 8400, 8401, 8401,28547, 8401, 8401, 8401, 8401, 8401, 8401, 8401, 8401, 8401,28602, 8401, 8401,28688,28828,28602,28721,29061,28688,29192,28794, 28917, 8401, 8401, 8401, 8401, 8401, 8401, 8401, 8401,28602, 28721,29241,29192, 8401,28947,28917,29445,28589,28589,28588, 28588,28602,28721,28827,28688,28721,28608,28917,28794,28947, 28688, 8401, 8401, 8401, 8401, 8402, 8402,28947, 8402, 8402, 8402, 8402, 8402, 8402, 8402, 8402, 8402,28588, 8402, 8402, 28589,28917,28588,28967,28827,28608,29193,28967,28608, 8402, 8402, 8402, 8402, 8402, 8402, 8402,28911,28976,29193,28592, 28592, 8402, 8402,28618,28618,28618,28618,28618,28618,28618, 28618,28618,28666,28666,28967,28589,28589,28588,28827, 8402, 8402, 8402, 8402,28608,28976,29655,29712,28976,28911, 8402, 8403, 8403,28592, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403,29737, 8403, 8403,28666, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403, 8403,28592,29737,28911,29712, 5519, 8403,28592,28619,28619, 28619,28619,28619,28619,28619,28619,28619,28672,28672,29244, 28666,29100,29655,29179, 8403, 8403, 8403, 8404, 8404,28853, 8404, 8404, 8404, 8404, 8404, 8404, 8404, 8404, 8404,28718, 8404, 8404,28869,28869,28718,28789,28789,28681,28681,29179, 28672, 8404, 8404, 8404, 8404, 8404, 8404, 8404,29329,28718, 29244,28853,29496, 8404,29329,28668,28668,28668,28672,28853, 28683,28718,29100,29100,28796,28869,28672,28718,28789,28796, 28681, 8404, 8404, 8404, 8405, 8405,28899, 8405, 8405, 8405, 8405, 8405, 8405, 8405, 8405, 8405,28720, 8405, 8405,28668, 28826,28720,28882,28882,28683,28826,28796,28796, 8405, 8405, 8405, 8405, 8405, 8405, 8405,28681,28720,28668,28899,28789, 8405,28899,28683,29496,28705,28705,28708,28708,28720,28777, 28777,28777,28826,29270,28668,28882,29240,28720, 8405, 8405, 8405, 8406, 8406,28683, 8406, 8406, 8406, 8406, 8406, 8406, 8406, 8406, 8406,28601, 8406, 8406,28598,28705,28601,28708, 29240,28598,28708,28777,29270, 8406, 8406, 8406, 8406, 8406, 8406, 8406,28598,28601,28848,29274,28598, 8406, 8406,28848, 28848,28777, 5517,29274, 5516,28601,28848,28920,28598,28709, 28709,28601,28705,28834,28708, 8406, 8406, 8406, 8406,28601, 28834,28834,28598,28834,28777, 8406, 8407, 8407,28985, 8407, 8407, 8407, 8407, 8407, 8407, 8407, 8407, 8407,28920, 8407, 8407,28927,28709,28820,28717,29116,28707,28707,28820,28717, 8407, 8407, 8407, 8407, 8407, 8407, 8407, 8407,28717,28820, 28985,29282, 8407,28820,28717,28710,28710,28712,28712,29282, 28782,28782,28920,28793,29116,28820,28717,28709,28793,28707, 8407, 8407, 8407, 8408, 8408,28866, 8408, 8408, 8408, 8408, 8408, 8408, 8408, 8408, 8408,28927, 8408, 8408,28710,29295, 28712,28710,29044,28782, 5514,28793,28927, 8408, 8408, 8408, 8408, 8408, 8408, 8408,28707,28707,28854,28866,28707, 8408, 28728,28782,28776,28776,29290,28866,28787,28787,29295,28782, 28712,28854,29290,28710, 5507,28712,29044, 8408, 8408, 8408, 8409, 8409,28793, 8409, 8409, 8409, 8409, 8409, 8409, 8409, 8409, 8409,28728, 8409, 8409,28776,28792,28722,28824,28787, 28792,28792,29360,28854, 8409, 8409, 8409, 8409, 8409, 8409, 8409, 8409,28722,28824,28854,29535, 8409,28787,28859,28728, 28781,28781,29393,28859,28722,28824,28881,28728,28792,29360, 28776,28881,28787,28722, 8409, 8409, 8409, 8411, 8411,29624, 8411, 8411, 8411, 8411, 8411, 8411, 8411, 8411, 8411,28942, 8411, 8411,28942,28781,28821,28792,28859,29130,28881,28821, 28824, 8411, 8411, 8411, 8411, 8411, 8411, 8411, 5506,28942, 28867,28781,28942, 8411,28821,28778,28778,28778,28778,28778, 28778,28778,28778,28778,28778,28867,28821,29535,28781,29130, 29393, 8411, 8411, 8411, 8412, 8412,28778, 8412, 8412, 8412, 8412, 8412, 8412, 8412, 8412, 8412,28953, 8412, 8412,28953, 29624,28791,28791,28791,28870,28870,28825,28867, 8412, 8412, 8412, 8412, 8412, 8412, 8412, 8412,28953,28861,28867,28953, 8412,28825,28861,28861,28809,28809,28814,28814,29471,28861, 28815,28815,28791,28825,28825,28791,29581,28870, 8412, 8412, 8412, 8413, 8413,29133, 8413, 8413, 8413, 8413, 8413, 8413, 8413, 8413, 8413,28791, 8413, 8413,29181,28809,29337,28814, 28810,28810,28791,28815,29337, 8413, 8413, 8413, 8413, 8413, 8413, 8413,28669,28922,28922,29133,28890, 8413,28870, 8413, 29698, 5501,29181,28669,28669,28669,28669,28669,28669,28669, 28669,28669,28809,28810,28814, 8413, 8413, 8413,28815,28809, 29732,29471,29581,28890,28669,28922, 8413, 8414, 8414,28890, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414, 8414,28719, 8414, 8414,29293,28918,28719,28956,28956,29063,28810,28810, 29698, 8414, 8414, 8414, 8414, 8414, 8414, 8414,28918,28719, 28812,28812,28817, 8414, 5498,29732, 8414,29063,29293,29392, 28918,28719,29151,28918,28719,28887,28813,28813,28956,29063, 28887, 8414, 8414, 8414, 8416,28719,28811,28811,28816,28816, 28986,28987,28987,28812,28817, 8416, 8416, 8416, 8416, 8416, 8416, 8416, 8416, 8416,29151,28885,29569,28887,28956,28813, 28885, 8416, 8416, 8416, 8416, 8416, 8416,28813,29517,28811, 28812,28816,28986,29016,28987,28811,28822,28812,28812,28817, 28986,28822,29016,29016,29004,28817,29392,28885, 8416, 8416, 8416, 8416, 8416, 8416,28813,28839,28822,28841,28816,28871, 28871,28871, 8416, 8423,28811,28823,28816,28886,28822,28885, 28823,29004,28886,29214, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 8423, 8423,29299,29569,28823,29517,28839,29583,28841, 28886,28839,29299,28871,28841, 8423,28839,28823,28823,28886, 28855,28889,28971,28822,29004,29214,28889,28971, 8423, 5494, 28841,28871,29064, 8423, 8427, 8427,28852, 8427, 8427, 8427, 8427, 8427, 8427, 8427, 8427, 8427,28865, 8427, 8427,29210, 29064, 5489,28855,28889,28971,29007,28889,28855, 8427, 8427, 8427, 8427, 8427, 8427, 8427,29639,29080,29064,28852,29583, 8427,28868,28852,28855,28960,28960,29210,28852,28865,28900, 28900,28900,28865,29007,28971,29518,29007,28865, 8427, 8427, 8427, 8428, 8428,29080, 8428, 8428, 8428, 8428, 8428, 8428, 8428, 8428, 8428,28868, 8428, 8428,28997,28960,28868,28874, 28874,29210,28900,29081,29469, 8428, 8428, 8428, 8428, 8428, 8428, 8428, 8428,29080,28868,28960,29639, 8428,28997,28872, 28872,28872,28872,28872,28872,28872,28872,28872,28872,28900, 29642,28997,28874,29518,29081, 8428, 8428, 8428, 8432, 8432, 28872, 8432, 8432, 8432, 8432, 8432, 8432, 8432, 8432, 8432, 28874, 8432, 8432,29765, 5480,28913,28916,29006,29006,28928, 28913,28916, 8432, 8432, 8432, 8432, 8432, 8432, 8432,29081, 29266,29469,29640,28874, 8432,28913,28916,28875,28875,28880, 28880,28884,28884,28884,28955,28955,28955,28913,28916,29006, 29642,28916, 8432, 8432, 8432, 8433, 8433,29266, 8433, 8433, 8433, 8433, 8433, 8433, 8433, 8433, 8433,28928, 8433, 8433, 28875,28972,28880,28928,29079,28884,28972,28955,29765, 8433, 8433, 8433, 8433, 8433, 8433, 8433, 8433,29412,28875,29079, 28880, 8433,28888,28884,28902,28902,28888,28888,29266,28937, 28948,29079,28880,28972,28955,28875, 5477,29640,28884, 8433, 8433, 8433, 8435, 8435,29412, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 8435,28888, 8435, 8435,28902,29005,28915, 28888,28937,28948,29441,28915,28949, 8435, 8435, 8435, 8435, 8435, 8435, 8435, 5473,29519,29472,28937,28948, 8435,28915, 28949,28903,28903,28904,28904,28949,29238,28937,28948,29005, 28974,28915,28902,28888,29441,28974, 8435, 8435, 8435, 8436, 8436,28949, 8436, 8436, 8436, 8436, 8436, 8436, 8436, 8436, 8436,29005, 8436, 8436,28903,28915,28904,29699,29238,28905, 28905,29195,28974, 8436, 8436, 8436, 8436, 8436, 8436, 8436, 8436,28974,29519,29195,29441, 8436,29195,29108,28906,28906, 28908,28908,28957,28957,28957,28957,28966,28966,29472,28903, 28904,28904,28905, 8436, 8436, 8436, 8438, 8438,29242, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 8438, 8438,29025, 8438, 8438,28906,29083,28908,28961,28961,28957,29025,29025,28966, 8438, 8438, 8438, 8438, 8438, 8438, 8438,28905,29108,29108, 29242,29699, 8438,28906,28957,28909,28909,28966,28968,28968, 28968,28908,29808,28957,29083,28966,28906,28961,28908,28908, 8438, 8438, 8438, 8439, 8439,29008, 8439, 8439, 8439, 8439, 8439, 8439, 8439, 8439, 8439,28961, 8439, 8439,28909,29036, 29036,28968,29269,28907,28907,29164, 5463, 8439, 8439, 8439, 8439, 8439, 8439, 8439, 8439,29083,28909,29008,28961, 8439, 29768, 5458,28910,28910,28907,28970,28970,28970,28968,28990, 28990,29808,29036,28909,29269,29553,28907, 8439, 8439, 8439, 8440, 8440,29250, 8440, 8440, 8440, 8440, 8440, 8440, 8440, 8440, 8440,29008, 8440, 8440,28910,29164,29164,29768,28970, 29049,29049,28990,29034, 8440, 8440, 8440, 8440, 8440, 8440, 8440,28907,29034,29034,29250,29088, 8440,28970, 8440,28958, 28958,28958,28958,28958,28958,28958,28958,28958,28958,28970, 28910,28910,28983,29049, 8440, 8440, 8440,28990,29148,28983, 28958,29250,29553,29141,28983, 8440, 8443, 8443,29088, 8443, 8443, 8443, 8443, 8443, 8443, 8443, 8443, 8443,28975, 8443, 8443,29054,29002,28975,28973,29148,29054,29141,28973,28973, 8443, 8443, 8443, 8443, 8443, 8443, 8443,29002,29141,29141, 29088,29134, 8443,28996,29012,28989,28989,28991,28991,29002, 28975,29148,29124,29054,29054, 5407,28973,29124,28975,29134, 8443, 8443, 8443, 8444, 8444,29134, 8444, 8444, 8444, 8444, 8444, 8444, 8444, 8444, 8444,28996, 8444, 8444,28989,29614, 28991,29003, 5406,28973,29124,29002,28991, 8444, 8444, 8444, 8444, 8444, 8444, 8444, 8444,28973,29003, 5404, 5397, 8444, 29614,29012,28996,28989,29052,28992,28992,28991,29003,29052, 28996,29012,29305,28989,28989,28991,29003, 8444, 8444, 8444, 8448, 8448,29012, 8448, 8448, 8448, 8448, 8448, 8448, 8448, 8448, 8448,29000, 8448, 8448,29294,29052,29000,28992,29037, 29037,29389,29605,29305, 8448, 8448, 8448, 8448, 8448, 8448, 8448,29345,29000,29389,29389,29013, 8448,29345,29013,28993, 28993,28994,28994,29123,29000,29013,29013,29294,29123,29052, 29305,29197,29037,28992, 8448, 8448, 8448, 8449, 8449,28992, 8449, 8449, 8449, 8449, 8449, 8449, 8449, 8449, 8449,29197, 8449, 8449,28993,29538,28994,29123,29037,29197,29123,29078, 29000, 8449, 8449, 8449, 8449, 8449, 8449, 8449, 8449,29605, 29362, 5395,29725, 8449,29078,29038,29038,29038,29072,29159, 29041,29041,29041,29042,29042,29053,29078,28993,29362,28994, 29053, 8449, 8449, 8449, 8452, 8452,29296, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452, 8452,28999, 8452, 8452,29038, 29072,28999,29725,29041,29580,29362,29042,29053, 8452, 8452, 8452, 8452, 8452, 8452, 8452,29078,28999,29038,29296,29538, 8452,29041,29095,29159,29042,29202,29065,29065,28999,29053, 29041,29095,29095,29082,29159,29072,29072,28999, 8452, 8452, 8452, 8453, 8453,29259, 8453, 8453, 8453, 8453, 8453, 8453, 8453, 8453, 8453,29001, 8453, 8453,29055,29202,29001,29065, 29465,29055,29580,29146,29082, 8453, 8453, 8453, 8453, 8453, 8453, 8453, 8453,29001,29103,29259,29055, 8453,29146,29091, 29047,29047,29253,29103,29103,29001,29091,29091,29055,29091, 29146,29465,29202,29001,29065, 8453, 8453, 8453, 8455, 8455, 29082, 8455, 8455, 8455, 8455, 8455, 8455, 8455, 8455, 8455, 29259, 8455, 8455,29047,29253,29051,29051,29051,29109,29109, 29494,29632, 8455, 8455, 8455, 8455, 8455, 8455, 8455,29146, 5394,29047,29253,29465, 8455,29482,29039,29039,29039,29039, 29039,29039,29039,29039,29039,29039,29211,29211,29047,29051, 29172,29109, 8455, 8455, 8455, 8456, 8456,29039, 8456, 8456, 8456, 8456, 8456, 8456, 8456, 8456, 8456,29051, 8456, 8456, 29482,29122,29075,29109,29273,29051,29122,29075,29211, 8456, 8456, 8456, 8456, 8456, 8456, 8456, 8456,29194,29309,29632, 29099, 8456,29075,29494,29194,29066,29066,29099,29099,29194, 29099,29172,29172,29122,29075,29075,29309,29273,29696, 8456, 8456, 8456, 8457, 8457,29309, 8457, 8457, 8457, 8457, 8457, 8457, 8457, 8457, 8457, 8457, 8457, 8457,28914,29066,29077, 29121,29273,28914,29122,29077,29121, 8457, 8457, 8457, 8457, 8457, 8457, 8457, 8457,29593,29634,29647,28914, 8457,29077, 29067,29067,29167,29068,29068,29066,29070,29070,29196,28914, 29383,29077,29121,29066,29696,28914, 8457, 8457, 8457, 8457, 8457, 8458, 8458,28914, 8458, 8458, 8458, 8458, 8458, 8458, 8458, 8458, 8458,29067, 8458, 8458,29068,29196,29121,29070, 29196,29361,29067,29383, 5389, 8458, 8458, 8458, 8458, 8458, 8458, 8458,29593,29634,29647, 5383,29167, 8458,29196, 5381, 29068,29175,29107,29069,29069,29252,29070,29167,29067,29107, 29107,29068,29107,29361,29070, 8458, 8458, 8458, 8459, 8459, 29385, 8459, 8459, 8459, 8459, 8459, 8459, 8459, 8459, 8459, 29074, 8459, 8459,29069,29281,29074,29069,29252,29149,29361, 29617,29209, 8459, 8459, 8459, 8459, 8459, 8459, 8459, 8459, 29074,29570,29209,29385, 8459,29175,29209,29112,29112,29113, 29113,29113,29074,29069,29160,29209,29175,29281,29209,29149, 29252,29069, 8459, 8459, 8459, 8462, 8462,29218, 8462, 8462, 8462, 8462, 8462, 8462, 8462, 8462, 8462,29125, 8462, 8462, 29112,29281,29113,29076,29149,29177,29177,29074,29076, 8462, 8462, 8462, 8462, 8462, 8462, 8462,29649,29617,29112,29663, 29113, 8462,29160,29076,29125,29120,29120,29120,29160,29113, 29555, 5380,29125,29374,29570,29076, 5375,29374,29177, 8462, 8462, 8462, 8463, 8463,29218, 8463, 8463, 8463, 8463, 8463, 8463, 8463, 8463, 8463,29218, 8463, 8463,29388,29388,29120, 29118,29118,29139,29139,29374,29218, 8463, 8463, 8463, 8463, 8463, 8463, 8463, 8463,29076,29641,29663,29120, 8463,29177, 29110,29110,29110,29110,29110,29110,29110,29110,29110,29110, 29388,29649,29555,29118,29120,29139, 8463, 8463, 8463, 8465, 8465,29110, 8465, 8465, 8465, 8465, 8465, 8465, 8465, 8465, 8465,29118, 8465, 8465,29150,29191,29142,29143,29454,29191, 29191,29142,29143, 8465, 8465, 8465, 8465, 8465, 8465, 8465, 29139,29743,29662,29594,29118, 8465,29142,29143,29135,29135, 29136,29136,29544,29641,29191,29150,29168,29191,29142,29143, 29454,29743,29143, 8465, 8465, 8465, 8466, 8466,29405, 8466, 8466, 8466, 8466, 8466, 8466, 8466, 8466, 8466,29163, 8466, 8466,29135,29142,29136,29136,29163,29163,29544,29163,29150, 8466, 8466, 8466, 8466, 8466, 8466, 8466, 8466,29405,29135, 29662,29171, 8466,29405,29168,29594,29137,29137,29171,29171, 29168,29171,29246,29180,29180,29176,29135,29246,29136,29246, 8466, 8466, 8466, 8467, 8467,29375, 8467, 8467, 8467, 8467, 8467, 8467, 8467, 8467, 8467, 8467, 8467, 8467,28998,29137, 29145,29713,29633,28998,29246,29145,29180, 8467, 8467, 8467, 8467, 8467, 8467, 8467, 8467,29648,29375,29226,28998, 8467, 29145,29138,29138,29176,29180,29185,29185,29223,29137,29176, 28998,29188,29145,28998,29137, 5370,29188, 8467, 8467, 8467, 8467, 8467, 8470, 8470,28998, 8470, 8470, 8470, 8470, 8470, 8470, 8470, 8470, 8470,29138, 8470, 8470,29375,29185,29147, 29144,29650,29713,29188,29147,29144, 8470, 8470, 8470, 8470, 8470, 8470, 8470,29633,29226,29223,29185,29648, 8470,29147, 29144,29223,29222,29219,29226,29203,29219,29138,29188,29138, 29308,29147,29144,29219,29219,29226, 8470, 8470, 8470, 8471, 8471,29140, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471,29203, 8471, 8471,29189,29187,29187,29187, 5368,29189, 29203,29626,29308, 8471, 8471, 8471, 8471, 8471, 8471, 8471, 8471,29144,29650,29140,29190, 8471,29222,29247,29502,29190, 29227,29429,29247,29227,29213,29213,29189,29222,29631,29187, 29227,29227,29308, 8471, 8471, 8471, 8480, 8480, 8480, 8480, 8480, 8480, 8480, 8480, 8480, 8480,29190,29187,29140,29247, 29502,29675,29140,29429,29190,29140,29213,29230, 8480,29189, 29178,29178,29178,29178,29178,29178,29178,29178,29178,29178, 29187,29212,29231,29625,29626,29247, 8480, 5367, 8480, 8487, 8487,29178, 8487, 8487, 8487, 8487, 8487, 8487, 8487, 8487, 8487,29213, 8487, 8487,29429,29301,29199,29199,29200,29200, 29301,29631,29212, 8487, 8487, 8487, 8487, 8487, 8487, 8487, 29265,29230,29289,29511,29303, 8487,29267,29664,29675,29303, 29231,29668,29230,29703,29234,29265,29231,29301,29511,29199, 29568,29200,29199, 8487, 8487, 8487,29212,29265,29201,29201, 29511,29592,29625, 5362,29657,29289,29303,29267, 8487, 8492, 8492, 8492, 8492, 8492, 8492, 8492, 8492, 8492, 8492, 8492, 8492,29200, 8492, 8492,29199,29208,29200,29204,29738,29289, 29265,29201,29204, 8492, 8492, 8492, 8492, 8492, 8492, 8492, 29208,29234,29267,29235,29568, 8492,29235,29204,29656,29668, 29664,29234,29208,29235,29235,29592,29703,29278,29657,29204, 29278,29201,29234, 8492, 8492, 8492,29201,29278,29278, 5361, 29669,29692,29434,29738,29606, 8492, 8503, 8503,29208, 8503, 8503, 8503, 8503, 8503, 8503, 8503, 8503, 8503,29205, 8503, 8503,29206,29323,29205,29248,29204,29206,29323,29268,29248, 8503, 8503, 8503, 8503, 8503, 8503, 8503,29434,29205,29606, 29656,29206, 8503,29434,29248,29236,29236,29243,29243,29243, 29205,29367,29710,29206,29323,29692,29248,29669,29205,29268, 8503, 8503, 8503, 8504, 8504,29277, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504,29778, 8504, 8504,29236,29206, 29243,29268,29490,29256,29256,29322,29367, 8504, 8504, 8504, 8504, 8504, 8504, 8504, 8504,29778,29367,29670,29243, 8504, 29322,29245,29245,29245,29249,29396,29304,29243,29236,29249, 29396,29304,29322,29490,29710,29671,29256, 8504, 8504, 8504, 8508, 8508,29277, 8508, 8508, 8508, 8508, 8508, 8508, 8508, 8508, 8508,29277, 8508, 8508,29245,29249,29396,29304, 5359, 29376,29532,29322,29277, 8508, 8508, 8508, 8508, 8508, 8508, 8508,29256,29430,29245,29490,29670, 8508,29682,29237,29237, 29237,29237,29237,29237,29237,29237,29237,29237,29304,29249, 29430,29376,29532,29671, 8508, 8508, 8508, 8509, 8509,29237, 8509, 8509, 8509, 8509, 8509, 8509, 8509, 8509, 8509,29261, 8509, 8509,29400,29430,29261,29260,29376,29257,29257,29264, 29260, 8509, 8509, 8509, 8509, 8509, 8509, 8509, 8509,29261, 29400,29480,29532, 8509,29264,29260,29255,29255,29258,29258, 29302,29261,29400,29776,29682,29302,29264,29260,29677,29480, 29257, 8509, 8509, 8509, 8510, 8510,29285, 8510, 8510, 8510, 8510, 8510, 8510, 8510, 8510, 8510,29480, 8510, 8510,29255, 29264,29258,29302,29455,29291,29291,29257,29255, 8510, 8510, 8510, 8510, 8510, 8510, 8510,29257,29260,29678,29776,29286, 8510,29455,29286,29676,29298,29298,29334,29302,29258,29286, 29286,29600,29676,29455,29255,29677,29258,29291, 8510, 8510, 8510, 8511, 8511,29285, 8511, 8511, 8511, 8511, 8511, 8511, 8511, 8511, 8511,29285, 8511, 8511,29263,29298,29262,29334, 5358,29263,29600,29262,29285, 8511, 8511, 8511, 8511, 8511, 8511, 8511, 8511,29291,29678,29298,29263, 8511,29262,29489, 29717,29711,29706,29300,29300,29300,29300,29357,29263,29324, 29262,29334,29357,29689,29357, 8511, 8511, 8511, 8512, 8512, 29399, 8512, 8512, 8512, 8512, 8512, 8512, 8512, 8512, 8512, 29489, 8512, 8512,29207,29262,29316,29711,29300,29207,29357, 29324,29263, 8512, 8512, 8512, 8512, 8512, 8512, 8512,29207, 29310,29310,29399,29207, 8512,29300,29413,29413,29359,29311, 29311,29316,29207,29359,29300,29207, 8512,29489,29717, 5355, 29316,29689, 8512, 8512, 8512,29706,29324,29313,29313,29207, 29311,29342,29325,29310,29638,29720,29736,29399,29413,29733, 29359,29719,29311, 5354, 8512, 8516, 8516,29466, 8516, 8516, 8516, 8516, 8516, 8516, 8516, 8516, 8516,29827, 8516, 8516, 29313,29734,29318,29325,29342,29638,29359,29318,29310, 8516, 8516, 8516, 8516, 8516, 8516, 8516,29719,29311,29466,29733, 29724, 8516,29318,29292,29292,29292,29292,29292,29292,29292, 29292,29292,29292,29720,29318,29313,29342,29736,29325, 8516, 8516, 8516, 8517, 8517,29292, 8517, 8517, 8517, 8517, 8517, 8517, 8517, 8517, 8517,29466, 8517, 8517,29414,29414,29319, 29320,29697,29315,29315,29319,29320, 8517, 8517, 8517, 8517, 8517, 8517, 8517, 8517,29734,29827,29684, 5350, 8517,29319, 29320,29312,29312,29314,29314,29684,29524,29724, 5349,29414, 29697,29319,29320,29330,29330,29315, 8517, 8517, 8517, 8520, 8520, 5346, 8520, 8520, 8520, 8520, 8520, 8520, 8520, 8520, 8520,29330, 8520, 8520,29312,29524,29314,29330,29330,29338, 29338,29321,29320, 8520, 8520, 8520, 8520, 8520, 8520, 8520, 29315,29315,29319,29524,29314, 8520,29321,29338,29347,29347, 29503,29442,29312,29338,29338,29355,29355,29355,29321,29312, 29312,29314,29744, 8520, 8520, 8520, 8521, 8521,29503, 8521, 8521, 8521, 8521, 8521, 8521, 8521, 8521, 8521,29503, 8521, 8521,29347,29442,29317,29458,29373,29346,29346,29317,29355, 8521, 8521, 8521, 8521, 8521, 8521, 8521, 8521,29411,29321, 29373,29753, 8521,29317,29346, 5345,29384,29355,29764, 5342, 29346,29346,29373,29411,29458,29317,29347,29442,29744,29458, 8521, 8521, 8521, 8523, 8523,29411, 8523, 8523, 8523, 8523, 8523, 8523, 8523, 8523, 8523,29370, 8523, 8523,29373,29384, 29370,29358,29479,29479,29718,29358,29358, 8523, 8523, 8523, 8523, 8523, 8523, 8523,29317,29370,29753,29739,29764, 8523, 29411,29741,29363,29363,29364,29364,29397,29370,29577,29387, 29358,29397,29531,29358,29479,29718,29384, 8523, 8523, 8523, 8524, 8524,29384, 8524, 8524, 8524, 8524, 8524, 8524, 8524, 8524, 8524,29479, 8524, 8524,29363, 5334,29364,29397,29577, 29365,29365, 5331,29531, 8524, 8524, 8524, 8524, 8524, 8524, 8524, 8524,29358, 5330,29387,29741, 8524,29387,29726,29739, 29402,29402,29398,29387,29549,29577,29386,29398,29513,29513, 29363,29397,29364,29365, 8524, 8524, 8524, 8525, 8525,29531, 8525, 8525, 8525, 8525, 8525, 8525, 8525, 8525, 8525,29726, 8525, 8525,29368,29402,29398,29549,29410,29368,29749,29386, 29513, 8525, 8525, 8525, 8525, 8525, 8525, 8525,29365,29365, 29371,29410,29368, 8525,29365,29371,29372,29406,29386,29386, 29402,29372,29406,29410,29368,29403,29403, 8525,29402,29398, 29371, 8525, 8525, 8525,29549,29727,29372,29406,29754,29431, 29431, 5314,29371,29386,29415,29410,29417,29417,29372,29406, 29368, 5307,29749,29770,29774, 8525, 8526, 8526,29403, 8526, 8526, 8526, 8526, 8526, 8526, 8526, 8526, 8526,29371, 8526, 8526,29428,29431,29406,29415,29415,29428,29512,29550,29417, 8526, 8526, 8526, 8526, 8526, 8526, 8526, 5203,29770,29415, 29755,29746, 8526,29403,29774,29760,29757,29756,29767,29415, 29754,29417,29727,29428,29760,29431,29417,29431,29512,29550, 8526, 8526, 8526, 8527, 8527,29621, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527,29416, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527, 8527,29428,29512,29621,29416,29755, 8527, 29752,29550,29401,29401,29757,29424,29427,29452,29416,29424, 29424,29427,29452,29746,29705,29756,29767, 8527, 8527, 8527, 8529, 8529,29621, 8529, 8529, 8529, 8529, 8529, 8529, 8529, 8529, 8529,29401, 8529, 8529,29401,29510,29424,29427,29452, 29439,29601,29416,29705, 8529, 8529, 8529, 8529, 8529, 8529, 8529,29510, 5202, 5200,29758,29439, 8529,29769,29771,29424, 29433,29433,29401,29510,29453,29452,29501,29439,29427,29453, 29401,29501,29601,29752, 8529, 8529, 8529, 8530, 8530,29590, 8530, 8530, 8530, 8530, 8530, 8530, 8530, 8530, 8530,29510, 8530, 8530,29407,29433,29459,29435,29453,29407,29501,29459, 29435, 8530, 8530, 8530, 8530, 8530, 8530, 8530, 8530,29439, 29590,29601,29407, 8530,29459,29435,29771,29432,29432,29432, 29450,29758,29443,29443,29407,29450,29459,29435,29433,29769, 29763, 8530, 8530, 8530, 8531, 8531,29788, 8531, 8531, 8531, 8531, 8531, 8531, 8531, 8531, 8531,29590, 8531, 8531,29369, 29432,29408,29450,29773,29369,29443,29408,29407, 8531, 8531, 8531, 8531, 8531, 8531, 8531,29369,29816,29409,29435,29369, 8531,29408,29409,29505,29436,29474, 5177,29432,29369,29436, 29474,29369,29526,29408, 8531,29432,29763,29409, 8531, 8531, 8531,29784,29788,29450,29436,29369,29443,29408,29477,29409, 29564,29505, 5176,29477, 5174,29408,29436,29474,29505,29505, 29773,29526, 8531, 8545, 8545, 5139, 8545, 8545, 8545, 8545, 8545, 8545, 8545, 8545, 8545, 5138, 8545, 8545,29816,29791, 29477,29564,29785,29589,29409,29630,29436, 8545, 8545, 8545, 8545, 8545, 8545, 8545,29418,29784,29526,29759,29474, 8545, 29611,29611,29803,29456,29456,29418,29418,29418,29418,29418, 29418,29418,29418,29418,29589,29477,29630, 8545, 8545, 8545, 8546, 8546,29564, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546,29611, 8546, 8546,29437,29456,29438,29487,29589, 29437,29630,29438,29440, 8546, 8546, 8546, 8546, 8546, 8546, 8546, 8546,29791,29487,29785,29437, 8546,29438,29440,29803, 29457,29457,29467,29467,29759,29487,29456,29437,29523,29438, 29440,29456,29837,29523, 8546, 8546, 8546, 8560, 8560, 5110, 8560, 8560, 8560, 8560, 8560, 8560, 8560, 8560, 8560,29775, 8560, 8560,29837,29457,29487,29467,29491,29491,29775,29565, 29523, 8560, 8560, 8560, 8560, 8560, 8560, 8560,29444,29437, 29438,29440,29781, 8560,29789,29612, 5055,29481,29481,29444, 29444,29444,29444,29444,29444,29444,29444,29444,29457,29491, 29565, 8560, 8560, 8560, 8561, 8561,29467, 8561, 8561, 8561, 8561, 8561, 8561, 8561, 8561, 8561,29612, 8561, 8561,29460, 29481,29461,29462,29563,29460,29491,29461,29462, 8561, 8561, 8561, 8561, 8561, 8561, 8561, 8561,29805,29565,29563,29460, 8561,29461,29462,29815,29478,29478,29481,29781,29478,29478, 29563,29460,29789,29461,29462,29481,29793,29612, 8561, 8561, 8561, 8620, 8620,29766, 8620, 8620, 8620, 8620, 8620, 8620, 8620, 8620, 8620,29464, 8620, 8620,29478,29460,29464,29485, 29563,29566,29566,29463,29485, 8620, 8620, 8620, 8620, 8620, 8620, 8620,29766,29464,29461,29783, 4902, 8620,29463,29485, 4900,29558,29504,29504,29499,29464,29558,29805,29815,29499, 29463,29485,29793, 4899,29566, 8620, 8620, 8620, 8621, 8621, 4888, 8621, 8621, 8621, 8621, 8621, 8621, 8621, 8621, 8621, 4887, 8621, 8621,29558,29822,29504,29499, 4885,29525,29525, 29485,29790, 8621, 8621, 8621, 8621, 8621, 8621, 8621, 8621, 29468,29463,29797,29783, 8621,29475,29786,29533,29533,29475, 29475,29468,29468,29468,29468,29468,29468,29468,29468,29468, 29504,29525, 8621, 8621, 8621, 8623, 8623,29499, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623, 8623,29475, 8623, 8623, 29533,29488,29498,29500, 4870,29488,29822,29498,29500, 8623, 8623, 8623, 8623, 8623, 8623, 8623,29525,29525,29790,29475, 29488, 8623,29525,29797,29786,29514,29514,29792,29613,29613, 29579,29579,29488,29540,29498,29500,29475,29533,29540, 8623, 8623, 8623, 8624, 8624,29772, 8624, 8624, 8624, 8624, 8624, 8624, 8624, 8624, 8624,29484, 8624, 8624,29506,29514,29484, 29498,29613,29506,29579,29578,29540, 8624, 8624, 8624, 8624, 8624, 8624, 8624, 8624,29484,29772,29500,29506, 8624,29521, 29798,29792,29801,29539,29521,29794,29484,29825,29539,29506, 29579,29540,29514,29812,29814,29578, 8624, 8624, 8624, 8626, 8626,29831, 8626, 8626, 8626, 8626, 8626, 8626, 8626, 8626, 8626,29521, 8626, 8626,29508,29539,29796,29507, 4868,29508, 29817,29484,29507, 8626, 8626, 8626, 8626, 8626, 8626, 8626, 29831,29506,29578,29800,29508, 8626, 4867,29507,29798,29804, 29801,29825,29522,29557, 4862,29521,29508,29522,29557,29507, 29814,29812,29539, 8626, 8626, 8626, 8627, 8627,29794, 8627, 8627, 8627, 8627, 8627, 8627, 8627, 8627, 8627,29509, 8627, 8627,29527,29508,29509,29522,29557,29527, 4856,29817,29802, 8627, 8627, 8627, 8627, 8627, 8627, 8627, 8627,29509,29796, 29507,29527, 8627,29646,29646,29622,29622,29543,29543,29571, 29509,29541,29541,29527,29571,29541,29541,29804,29800,29557, 8627, 8627, 8627, 8628, 8628,29522, 8628, 8628, 8628, 8628, 8628, 8628, 8628, 8628, 8628,29646, 8628, 8628,29622, 4854, 29543,29571,29807,29541,29835,29832, 4853, 8628, 8628, 8628, 8628, 8628, 8628, 8628,29527,29395,29802,29810,29819, 8628, 29395, 8628,29818,29821, 4848,29622,29395,29395,29395,29395, 29395,29395,29395,29395,29395,29543,29811, 8628, 8628, 8628, 4843,29571,29541,29832,29835,29823, 4841,29395, 8628, 8634, 8634,29830, 8634, 8634, 8634, 8634, 8634, 8634, 8634, 8634, 8634,29528, 8634, 8634,29545,29530,29528,29547,29730,29545, 29807,29548,29547, 8634, 8634, 8634, 8634, 8634, 8634, 8634, 29530,29528, 4840,29730,29545, 8634,29548,29547,29821,29818, 29810,29819,29530,29528,29824,29730,29545,29811,29548,29547, 29823,29830, 4835, 8634, 8634, 8634, 8635, 8635,29826, 8635, 8635, 8635, 8635, 8635, 8635, 8635, 8635, 8635,29529, 8635, 8635,29551,29551,29529,29556,29545,29599,29530,29834,29556, 8635, 8635, 8635, 8635, 8635, 8635, 8635, 8635,29529,29548, 29547,29599, 8635,29572, 4834,29559,29559,29559,29572,29828, 29529,29833,29584,29599,29551,29836,29556,29584,29828,29834, 8635, 8635, 8635, 8639, 8639,29824, 8639, 8639, 8639, 8639, 8639, 8639, 8639, 8639, 8639,29572, 8639, 8639,29559,29826, 4832,29602,29602, 4831,29584,29529,29833, 8639, 8639, 8639, 8639, 8639, 8639, 8639,29599,29551, 4828,29556, 4827, 8639, 29836, 4823, 4822,29573,29573,29559, 4819, 4818, 4815, 4812, 29607, 4811,29572,29559,29602,29607, 4728, 8639, 8639, 8639, 8640, 8640, 4727, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640,29561, 8640, 8640,29560,29573,29561,29562,29610, 29560, 4714,29607,29562, 8640, 8640, 8640, 8640, 8640, 8640, 8640, 8640,29561,29602,29610,29560, 8640, 4713,29562, 4711, 4703, 4702, 4700, 4695,29561, 4694,29610,29560, 4692, 4688, 29562,29573, 4687, 4685, 8640, 8640, 8640, 8643, 8643, 4681, 8643, 8643, 8643, 8643, 8643, 8643, 8643, 8643, 8643,29574, 8643, 8643, 4680,29560,29574,29576,29610,29591,29591,29645, 29562, 8643, 8643, 8643, 8643, 8643, 8643, 8643, 4678,29574, 29576, 4675, 4674, 8643,29645, 4667, 4665, 4663, 4645, 4637, 4534,29574,29576, 4530, 4529, 4526,29645, 4525, 4500, 4496, 29591, 8643, 8643, 8643, 8644, 8644, 4495, 8644, 8644, 8644, 8644, 8644, 8644, 8644, 8644, 8644,29576, 8644, 8644,29585, 4492,29645,29575, 4491,29585, 4455,29574,29575, 8644, 8644, 8644, 8644, 8644, 8644, 8644, 8644,29591, 4453, 4411,29591, 8644,29596,29575, 4363, 4358, 4355,29596, 4354, 4302, 4274, 4217,29585, 4216, 4200,29575, 4199, 4179, 4178, 8644, 8644, 8644, 8646, 8646, 4176, 8646, 8646, 8646, 8646, 8646, 8646, 8646, 8646, 8646,29596, 8646, 8646,29587, 4168,29575,29586, 29695,29587, 4167,29660,29586, 8646, 8646, 8646, 8646, 8646, 8646, 8646,29585, 4165, 4160,29695,29587, 8646,29660,29586, 4159, 4157, 4153, 4152, 4150, 4146, 4145,29695,29587, 4143, 29660,29586, 4140,29596, 4139, 8646, 8646, 8646, 8647, 8647, 4135, 8647, 8647, 8647, 8647, 8647, 8647, 8647, 8647, 8647, 29587, 8647, 8647,29695, 4134,29598,29597, 4065, 4052, 4048, 29598,29597, 8647, 8647, 8647, 8647, 8647, 8647, 8647, 8647, 29620,29660,29586, 4047, 8647,29598,29597, 4042, 4041, 4036, 4032, 4031, 4026, 4025, 4024,29620, 4020,29598,29597, 4019, 4014, 4010, 8647, 8647, 8647, 8648, 8648,29620, 8648, 8648, 8648, 8648, 8648, 8648, 8648, 8648, 8648, 8648, 8648, 8648, 29486,29486, 4009,29681,29681,29486, 4006,29588,29597, 8648, 8648, 8648, 8648, 8648, 8648, 8648, 8648, 3993,29598,29681, 29486, 8648,29588,29620, 3992, 3990, 3989, 3971, 3969, 3968, 3967,29681,29486, 3963,29588, 3962, 3961, 3960, 3959, 8648, 8648, 8648, 8648, 8648, 8649, 8649,29486, 8649, 8649, 8649, 8649, 8649, 8649, 8649, 8649, 8649,29588, 8649, 8649,29609, 29629,29608,29618,29716,29609, 3958,29608,29618, 8649, 8649, 8649, 8649, 8649, 8649, 8649,29629, 3957, 3955,29716,29609, 8649,29608,29618, 3929, 3921, 3858, 3828,29629, 3747, 3742, 29716,29609, 3711,29608,29618, 3707, 3706, 3695, 8649, 8649, 8649, 8650, 8650, 3692, 8650, 8650, 8650, 8650, 8650, 8650, 8650, 8650, 8650,29619, 8650, 8650,29618,29608,29619,29627, 29716,29609,29629,29702,29627, 8650, 8650, 8650, 8650, 8650, 8650, 8650, 8650,29619, 3631, 3621, 3586, 8650,29702,29627, 3565, 3564, 3552, 3541, 3527,29619, 3523, 3522, 3517, 3516, 29702,29627, 3511, 3507, 3506, 8650, 8650, 8650, 8653, 8653, 3501, 8653, 8653, 8653, 8653, 8653, 8653, 8653, 8653, 8653, 29628, 8653, 8653,29635, 3500,29628, 3499, 3495,29635, 3494, 3489,29619, 8653, 8653, 8653, 8653, 8653, 8653, 8653, 3485, 29628,29702,29627,29635, 8653, 3484, 3481, 3471, 3470, 3395, 3384, 3374,29628, 3366, 3356,29635, 3355, 3347, 3346, 3332, 3307, 3305, 8653, 8653, 8653, 8654, 8654, 3304, 8654, 8654, 8654, 8654, 8654, 8654, 8654, 8654, 8654,29636, 8654, 8654, 3303, 3299,29636,29637, 3298,29635, 3297,29628,29637, 8654, 8654, 8654, 8654, 8654, 8654, 8654, 8654,29636, 3296, 3295, 3294, 8654, 3293,29637, 3292, 3291, 3233, 3223, 3222,29636, 3196, 3186, 3185, 3172, 3171,29637, 3138, 3117, 3093, 8654, 8654, 8654, 8656, 8656, 3063, 8656, 8656, 8656, 8656, 8656, 8656, 8656, 8656, 8656,29643, 8656, 8656,29658, 3058,29643, 29652, 3055,29658, 3054, 3020,29652, 8656, 8656, 8656, 8656, 8656, 8656, 8656, 2973,29643, 2972, 2929,29658, 8656, 2918, 29652, 2908, 2900, 2885, 2884, 2823,29643, 2811, 2810,29658, 2809, 2797,29652, 2769, 2709, 2621, 8656, 8656, 8656, 8657, 8657, 2549, 8657, 8657, 8657, 8657, 8657, 8657, 8657, 8657, 8657,29651, 8657, 8657,29652, 2545,29651, 2544, 2533, 2530, 2494,29688,29643, 8657, 8657, 8657, 8657, 8657, 8657, 8657, 8657,29651, 2479, 2474, 2471, 8657,29688, 2470, 2445, 2444, 2367, 2366, 2268,29651, 2267, 2255, 2166, 2156,29688, 2155, 2131, 2121, 2120, 8657, 8657, 8657, 8658, 8658, 2049, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658,29546,29546, 2039,29659,29723,29546, 2013,29651,29659, 8658, 8658, 8658, 8658, 8658, 8658, 8658, 8658,29688, 2007, 29723,29546, 8658, 2003,29659, 2002, 1991, 1988, 1964, 1963, 1895, 1894,29723,29546, 1844, 1832,29659, 1738, 1729, 1671, 8658, 8658, 8658, 8658, 8658, 8662, 8662,29546, 8662, 8662, 8662, 8662, 8662, 8662, 8662, 8662, 8662,29723, 8662, 8662, 29673, 1667,29674, 1654, 1614,29673, 1593,29674,29653, 8662, 8662, 8662, 8662, 8662, 8662, 8662, 1588,29659, 1563, 1562, 29673, 8662,29674,29653, 1506, 1505, 1373, 1368, 1366, 1356, 1355, 1339,29673, 1332,29674,29653, 1324, 1314, 1313, 8662, 8662, 8662, 8680, 8680, 1293, 8680, 8680, 8680, 8680, 8680, 8680, 8680, 8680, 8680,29483, 8680, 8680,29653,29709,29483, 1249, 1243, 1239, 1217, 1216, 1196, 8680, 8680, 8680, 8680, 8680, 8680, 8680,29709,29483,29356, 1156, 1155, 8680,29356, 29356, 967, 959, 945, 942,29709,29483,29356,29356,29356, 29356,29356,29356,29356,29356, 932, 8680, 8680, 8680, 930, 29483, 916, 915, 898, 864, 863,29709,29356,29483, 860, 859, 8680, 8681, 8681, 846, 8681, 8681, 8681, 8681, 8681, 8681, 8681, 8681, 8681, 845, 8681, 8681, 807, 806, 789, 784, 744, 743, 710, 665, 642, 8681, 8681, 8681, 8681, 8681, 8681, 8681, 636, 635,29425, 598, 597, 8681, 595, 29425, 593, 580, 545, 537, 512,29425,29425,29425,29425, 29425,29425,29425,29425,29425,29666, 8681, 8681, 8681, 510, 29666, 505, 424, 412, 8681, 8694, 8694,29425, 8694, 8694, 8694, 8694, 8694, 8694, 8694,29666, 8694, 8694, 8694,29680, 29693, 395, 393,29680,29680,29693, 392,29666, 388, 8694, 8694, 8694, 8694, 8694, 8694, 8694, 384, 383, 364,29680, 29693, 8694, 357, 351, 341, 334, 333, 332, 329,29666, 299,29680,29693, 298, 295, 291, 260, 221, 220, 8694, 8694, 8694, 8694, 8695, 8695,29680, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8695, 8699, 8699, 219, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8699, 8700, 8700, 218, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8700, 8708, 8708, 8708, 8708, 8708, 8708, 8708, 8708, 8708, 8708,29667, 217, 216, 215, 214, 213, 8708, 8708, 8708, 8708, 8708, 8708, 211, 210, 209,29667, 207, 206, 205, 204, 202, 201, 200, 198, 197, 196, 195,29667, 194, 193, 192, 191, 189, 8708, 8708, 8708, 8708, 8708, 8708, 8710, 8710, 8710, 8710, 8710, 8710, 8710, 8710, 8710, 8710,29667, 174, 166, 139, 129, 128, 8710, 8710, 8710, 8710, 8710, 8710, 109, 108, 107, 105, 104, 90, 89, 88, 87, 84, 83, 60, 59, 52, 51, 50, 49, 48, 47, 46, 45, 8710, 8710, 8710, 8710, 8710, 8710, 8713, 8713, 8713, 8713, 8713, 8713, 8713, 8713, 8713, 8713, 44, 43, 42, 41, 40, 8713, 8713, 8713, 8713, 8713, 8713, 8713, 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 8713, 8713, 8713, 8713, 8713, 8713, 8719, 8719, 8719, 8719, 8719, 8719, 8719, 8719, 8719, 8719,29672, 18, 17, 16, 15,29672, 8719, 8719, 8719, 8719, 8719, 8719, 14, 13, 4, 3, 0, 0, 0, 0,29672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29672, 8719, 8719, 8719, 8719, 8719, 8719, 8722, 8722, 8722, 8722, 8722, 8722, 8722, 8722, 8722, 8722, 0, 0, 0, 0, 0,29672, 8722, 8722, 8722, 8722, 8722, 8722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8722, 8722, 8722, 8722, 8722, 8722, 8734, 8734, 8734, 8734, 8734, 8734, 8734, 8734, 8734, 8734,29679, 0, 0, 0, 0,29679, 8734, 8734, 8734, 8734, 8734, 8734, 0, 0, 0, 0, 0, 0, 0, 0,29679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29679, 8734, 8734, 8734, 8734, 8734, 8734, 8736, 8736, 8736, 8736, 8736, 8736, 8736, 8736, 8736,29694,29686, 0, 0, 0, 29694,29686, 8736, 8736, 8736, 8736, 8736, 8736, 0, 0, 0, 0, 0, 0, 0,29694,29686, 0, 0, 0, 29679, 0, 0, 0, 0, 0, 0,29694,29686, 8736, 8736, 8736, 8736, 8736, 8736, 8744, 8744, 0, 8744, 8744, 8744, 8744, 8744, 8744, 8744, 8744, 8744, 0, 8744, 8744, 29686, 0, 0,29694, 0, 0, 0, 0, 0, 8744, 8744, 8744, 8744, 8744, 8744, 8744, 0,29451,29687, 0, 0, 8744,29451,29687, 0, 0, 0, 0,29451,29451, 29451,29451,29451,29451,29451,29451,29451, 0,29687, 8744, 8744, 8744, 8744, 0, 0, 0, 0, 0,29700,29451, 29687,29729,29700,29700, 0, 0,29729, 8744, 8756, 8756, 8756, 8756, 8756, 8756, 8756, 8756, 8756, 8756,29700, 0, 0,29729, 0, 0, 8756, 8756, 8756, 8756, 8756, 8756, 29700, 0, 0,29729, 0, 0, 0, 0, 0, 0, 29687, 0, 0, 0,29700, 0, 0, 0, 0, 0, 0, 8756, 8756, 8756, 8756, 8756, 8756, 8759, 8759, 8759, 8759, 8759, 8759, 8759, 8759, 8759, 8759,29701, 0, 0, 0, 0,29701, 8759, 8759, 8759, 8759, 8759, 8759, 0, 0, 0, 0, 0, 0, 0, 0,29701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29701, 8759, 8759, 8759, 8759, 8759, 8759, 8761, 8761, 8761, 8761, 8761, 8761, 8761, 8761, 8761,29707,29708, 0, 0, 0, 29707,29708, 8761, 8761, 8761, 8761, 8761, 8761, 0, 0, 0, 0, 0, 0, 0,29707,29708, 0, 0, 0, 29701, 0, 0, 0, 0, 8761, 0,29707,29708, 8761, 8761, 8761, 8761, 8761, 8761, 8765, 8765, 8765, 8765, 8765, 8765, 8765, 8765, 8765, 8765,29715, 0, 0, 0,29708, 29715, 8765, 8765, 8765, 8765, 8765, 8765, 0, 0, 0, 0, 0, 0, 0, 0,29715, 0,29707, 0, 0, 0, 0, 0, 0, 0, 0, 0,29715, 8765, 8765, 8765, 8765, 8765, 8765, 8767, 8767, 8767, 8767, 8767, 8767, 8767, 8767, 8767,29721,29728, 0, 0, 0,29721,29728, 8767, 8767, 8767, 8767, 8767, 8767, 0,29715, 0, 0, 0, 0, 0,29721,29728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29721,29728, 8767, 8767, 8767, 8767, 8767, 8767, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8777, 8777,29735, 0, 0, 0,29728,29735, 8777, 8777, 8777, 8777, 8777, 8777, 0, 0, 0, 0, 0, 0, 0, 0,29735, 0, 0,29721, 0, 0, 0, 0, 0, 0, 0, 0,29735, 8777, 8777, 8777, 8777, 8777, 8777, 8779, 8779, 8779, 8779, 8779, 8779, 8779, 8779, 8779,29745, 0, 0, 0, 0,29745, 0, 8779, 8779, 8779, 8779, 8779, 8779, 0,29735, 0, 0, 0, 0, 0,29745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29745, 0, 8779, 8779, 8779, 8779, 8779, 8779, 8791, 8791, 8791, 8791, 8791, 8791, 8791, 8791, 8791, 8791, 0, 0, 0, 0, 0, 0, 8791, 8791, 8791, 8791, 8791, 8791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8791, 8791, 8791, 8791, 8791, 8791, 8793, 8793, 8793, 8793, 8793, 8793, 8793, 8793, 8793,29722, 0, 0, 0, 0,29722, 0, 8793, 8793, 8793, 8793, 8793, 8793, 0, 0, 0, 0, 0, 0, 0,29722, 29644, 0, 0, 0, 0,29644, 0, 0, 0, 0, 0,29722, 0, 8793, 8793, 8793, 8793, 8793, 8793, 8801, 29644, 8801, 8801, 8801, 8801, 8801, 8801, 8801, 8801, 8801, 8801, 0,29644, 0, 0, 0,29722, 8801, 8801, 8801, 8801, 8801, 8801, 0, 0, 0,29644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29644, 0, 0, 0, 0, 0, 0, 8801, 8801, 8801, 8801, 8801, 8801, 8805, 8805, 8805, 8805, 8805, 8805, 8805, 8805, 8805, 8805, 0, 0, 0, 0, 0, 0, 8805, 8805, 8805, 8805, 8805, 8805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8805, 8805, 8805, 8805, 8805, 8805, 8808, 8808, 8808, 8808, 8808, 8808, 8808, 8808, 8808, 8808, 0, 0, 0, 0, 0, 0, 8808, 8808, 8808, 8808, 8808, 8808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8808, 8808, 8808, 8808, 8808, 8808, 8816, 8816, 8816, 8816, 8816, 8816, 8816, 8816, 8816, 0, 0, 0, 0, 0, 0, 0, 8816, 8816, 8816, 8816, 8816, 8816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8816, 8816, 8816, 8816, 8816, 8816, 8818, 8818, 8818, 8818, 8818, 8818, 8818, 8818, 8818, 8818,29714, 0, 0, 0, 0,29714, 8818, 8818, 8818, 8818, 8818, 8818, 0, 0, 0, 0, 0, 0, 0, 0,29714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29714, 8818, 8818, 8818, 8818, 8818, 8818, 8821, 8821, 0, 8821, 8821, 8821, 8821, 8821, 8821, 8821, 8821, 8821, 0, 8821, 8821, 0, 0, 0, 0,29714, 0, 0, 0, 0, 8821, 8821, 8821, 8821, 8821, 8821, 8821, 0, 0, 0, 29476, 0, 8821, 0, 0,29476, 0, 0, 0, 0, 0,29476,29476,29476,29476,29476,29476,29476,29476,29476, 8821, 8821, 8821, 8821, 8831, 8831, 0, 8831, 8831, 8831, 8831, 8831,29476, 0, 8831, 8831, 8831, 0,29665,29740, 0, 0, 0,29665,29740, 0, 0, 0, 0, 8831, 8831, 8831, 8831, 8831, 8831, 0, 0, 0,29665,29740, 8831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29665,29740, 0, 0, 0, 0, 0, 0, 8831, 8831, 8831, 8831, 8832, 8832,29665, 8832, 8832, 8832, 8832, 8832, 0, 0, 8832, 8832, 8832,29665,29740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8832, 8832, 8832, 8832, 8832, 8832, 8832, 0, 0, 0, 0, 8832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8832, 8832, 8832, 8832, 8834, 0, 8834, 8834, 8834, 8834, 8834, 8834, 8834, 8834, 8834, 8834, 0, 0, 0, 0, 0, 0, 8834, 8834, 8834, 8834, 8834, 8834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8834, 8834, 8834, 8834, 8834, 8834, 8856, 8856, 0, 8856, 8856, 8856, 8856, 8856, 0, 0, 8856, 8856, 8856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8856, 8856, 8856, 8856, 8856, 8856, 0, 0, 0, 0, 0, 8856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8856, 8856, 8856, 8856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8856, 8857, 8857, 0, 8857, 8857, 8857, 8857, 8857, 0, 0, 8857, 8857, 8857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8857, 8857, 8857, 8857, 8857, 8857, 8857, 0, 0, 0, 0, 8857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8857, 8857, 8857, 8857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8857, 8859, 0, 8859, 8859, 8859, 8859, 8859, 8859, 8859, 8859, 8859, 8859, 0, 0, 0, 0, 0, 0, 8859, 8859, 8859, 8859, 8859, 8859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8859, 8859, 8859, 8859, 8859, 8859, 8895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8895, 0, 0, 0, 0, 0, 0, 8895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8895, 0, 8895, 0, 8895, 0, 0, 8895, 8895, 0, 0, 0, 8895, 0, 0, 8895, 0, 8895, 0, 8895, 0, 8895, 8895, 8895, 8896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8896, 0, 0, 8896, 0, 8896, 0, 0, 0, 0, 8896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8896, 0, 8896, 0, 8896, 0, 0, 8896, 8896, 0, 0, 0, 8896, 0, 0, 8896, 0, 8896, 0, 8896, 0, 8896, 8896, 8896, 8897, 0, 8897, 0, 0, 0, 0, 0, 0, 8897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8897, 0, 0, 0, 0, 0, 0, 8897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8897, 0, 8897, 8897, 8897, 0, 0, 8897, 8897, 0, 0, 0, 8897, 0, 0, 8897, 0, 8897, 0, 8897, 0, 8897, 8897, 8897, 8898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8898, 0, 0, 0, 0, 0, 0, 8898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8898, 0, 8898, 0, 8898, 0, 0, 8898, 8898, 0, 0, 0, 8898, 0, 0, 8898, 0, 8898, 0, 8898, 0, 8898, 8898, 8898, 8899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8899, 0, 0, 0, 0, 0, 0, 8899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8899, 0, 8899, 0, 8899, 0, 0, 8899, 8899, 0, 0, 0, 8899, 0, 0, 8899, 0, 8899, 0, 8899, 0, 8899, 8899, 8899, 8902, 0, 8902, 0, 0, 0, 0, 0, 0, 8902, 0, 0, 0, 0, 0, 0, 0, 8902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8902, 0, 8902, 0, 0, 0, 0, 8902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8902, 0, 8902, 0, 8902, 0, 0, 8902, 8902, 0, 0, 0, 8902, 0, 0, 8902, 0, 8902, 0, 8902, 0, 8902, 8902, 8902, 8911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8911, 0, 0, 0, 0, 8911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8911, 0, 0, 0, 0, 0, 0, 8911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8911, 0, 8911, 0, 8911, 0, 0, 8911, 8911, 0, 0, 0, 8911, 0, 0, 8911, 0, 8911, 0, 8911, 0, 8911, 8911, 8911, 8912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8912, 0, 0, 0, 0, 0, 0, 8912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8912, 0, 8912, 0, 8912, 0, 0, 8912, 8912, 0, 0, 0, 8912, 0, 0, 8912, 0, 8912, 0, 8912, 0, 8912, 8912, 8912, 8913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8913, 0, 0, 0, 0, 0, 0, 8913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8913, 0, 8913, 0, 8913, 0, 0, 8913, 8913, 0, 0, 0, 8913, 0, 0, 8913, 0, 8913, 0, 8913, 0, 8913, 8913, 8913, 8914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8914, 0, 0, 0, 0, 0, 0, 8914, 0, 0, 0, 0, 0, 8914, 0, 0, 0, 0, 0, 0, 0, 0, 8914, 0, 8914, 0, 8914, 0, 0, 8914, 8914, 0, 0, 0, 8914, 0, 0, 8914, 0, 8914, 0, 8914, 0, 8914, 8914, 8914, 8915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8915, 0, 0, 0, 0, 0, 0, 8915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8915, 0, 8915, 0, 8915, 0, 0, 8915, 8915, 0, 0, 0, 8915, 0, 0, 8915, 0, 8915, 0, 8915, 0, 8915, 8915, 8915, 8916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8916, 0, 0, 0, 0, 0, 0, 8916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8916, 0, 8916, 0, 8916, 0, 8916, 8916, 8916, 0, 0, 0, 8916, 0, 8916, 8916, 0, 8916, 0, 8916, 0, 8916, 8916, 8916, 8937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8937, 0, 0, 0, 0, 0, 0, 8937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8937, 0, 8937, 0, 8937, 0, 0, 8937, 8937, 0, 0, 0, 8937, 0, 0, 8937, 0, 8937, 0, 8937, 0, 8937, 8937, 8937, 8938, 0, 8938, 0, 0, 0, 0, 0, 0, 8938, 0, 0, 8938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8938, 0, 0, 0, 0, 0, 0, 8938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8938, 0, 8938, 0, 8938, 0, 0, 8938, 8938, 0, 0, 0, 8938, 0, 8938, 8938, 0, 8938, 0, 8938, 0, 8938, 8938, 8938, 8939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8939, 0, 0, 0, 0, 0, 0, 8939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8939, 0, 8939, 0, 8939, 0, 0, 8939, 8939, 0, 0, 0, 8939, 0, 8939, 8939, 0, 8939, 0, 8939, 0, 8939, 8939, 8939, 8939, 8941, 0, 8941, 0, 0, 0, 0, 0, 0, 8941, 0, 0, 8941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8941, 0, 0, 0, 0, 0, 0, 8941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8941, 0, 8941, 0, 8941, 0, 0, 8941, 8941, 0, 0, 0, 8941, 0, 0, 8941, 0, 8941, 0, 8941, 0, 8941, 8941, 8941, 8965, 8965, 0, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8965, 8966, 0, 8966, 8966, 8966, 8966, 8966, 8966, 8966, 8966, 8966, 8966, 0, 0, 0, 0, 0, 8966, 8966, 8966, 8966, 8966, 8966, 8966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8966, 8966, 8966, 8966, 8966, 8966, 8969, 0, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 8969, 0, 0, 0, 0, 0, 0, 8969, 8969, 8969, 8969, 8969, 8969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8969, 8969, 8969, 8969, 8969, 8969, 8971, 8971, 0, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8971, 8981, 8981, 0, 8981, 8981, 8981, 8981, 8981, 8981, 8981, 8981, 8981, 0, 8981, 8981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8981, 8981, 8981, 8981, 8981, 8981, 8981, 0, 0, 0, 0, 0, 8981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8981, 8981, 8981, 8982, 8982, 0, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 0, 8982, 8982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 8982, 0, 0, 0, 0, 8982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8982, 8982, 8982, 8986, 8986, 0, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 0, 8986, 8986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8986, 8986, 8986, 8986, 8986, 8986, 8986, 0, 0, 0, 0, 0, 8986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8986, 8986, 8986, 8987, 8987, 0, 8987, 8987, 8987, 8987, 8987, 8987, 8987, 8987, 8987, 0, 8987, 8987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8987, 8987, 8987, 8987, 8987, 8987, 8987, 8987, 0, 0, 0, 0, 8987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8987, 8987, 8987, 8991, 8991, 0, 8991, 8991, 8991, 8991, 8991, 8991, 8991, 8991, 8991, 0, 8991, 8991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8991, 8991, 8991, 8991, 8991, 8991, 8991, 0, 0, 0, 0, 0, 8991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8991, 8991, 8991, 8992, 8992, 0, 8992, 8992, 8992, 8992, 8992, 8992, 8992, 8992, 8992, 0, 8992, 8992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8992, 8992, 8992, 8992, 8992, 8992, 8992, 8992, 0, 0, 0, 0, 8992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8992, 8992, 8992, 8996, 8996, 0, 8996, 8996, 8996, 8996, 8996, 8996, 8996, 8996, 8996, 0, 8996, 8996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8996, 8996, 8996, 8996, 8996, 8996, 8996, 0, 0, 0, 0, 0, 8996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8996, 8996, 8996, 8997, 8997, 0, 8997, 8997, 8997, 8997, 8997, 8997, 8997, 8997, 8997, 0, 8997, 8997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8997, 8997, 8997, 8997, 8997, 8997, 8997, 8997, 0, 0, 0, 0, 8997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8997, 8997, 8997, 9001, 9001, 0, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 0, 9001, 9001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9001, 9001, 9001, 9001, 9001, 9001, 9001, 0, 0, 0, 0, 0, 9001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9001, 9001, 9001, 9002, 9002, 0, 9002, 9002, 9002, 9002, 9002, 9002, 9002, 9002, 9002, 0, 9002, 9002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9002, 9002, 9002, 9002, 9002, 9002, 9002, 9002, 0, 0, 0, 0, 9002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9002, 9002, 9002, 9005, 9005, 0, 9005, 9005, 9005, 9005, 9005, 9005, 9005, 9005, 9005, 0, 9005, 9005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9005, 9005, 9005, 9005, 9005, 9005, 9005, 0, 0, 0, 0, 0, 9005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9005, 9005, 9005, 9006, 9006, 0, 9006, 9006, 9006, 9006, 9006, 9006, 9006, 9006, 9006, 0, 9006, 9006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9006, 9006, 9006, 9006, 9006, 9006, 9006, 9006, 0, 0, 0, 0, 9006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9006, 9006, 9006, 9008, 9008, 0, 9008, 9008, 9008, 9008, 9008, 9008, 9008, 9008, 9008, 0, 9008, 9008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9008, 9008, 9008, 9008, 9008, 9008, 9008, 0, 0, 0, 0, 0, 9008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9008, 0, 0, 0, 0, 0, 0, 9008, 9008, 9008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9008, 9009, 9009, 0, 9009, 9009, 9009, 9009, 9009, 9009, 9009, 9009, 9009, 0, 9009, 9009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9009, 9009, 9009, 9009, 9009, 9009, 9009, 0, 0, 0, 0, 0, 9009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9009, 9009, 9009, 9010, 9010, 0, 9010, 9010, 9010, 9010, 9010, 9010, 9010, 9010, 9010, 0, 9010, 9010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9010, 9010, 9010, 9010, 9010, 9010, 9010, 9010, 0, 0, 0, 0, 9010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9010, 9010, 9010, 9011, 9011, 0, 9011, 9011, 9011, 9011, 9011, 9011, 9011, 9011, 9011, 0, 9011, 9011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9011, 9011, 9011, 9011, 9011, 9011, 9011, 0, 0, 0, 0, 0, 9011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9011, 9011, 9011, 9012, 9012, 0, 9012, 9012, 9012, 9012, 9012, 9012, 9012, 9012, 9012, 0, 9012, 9012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9012, 9012, 9012, 9012, 9012, 9012, 9012, 9012, 0, 0, 0, 0, 9012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9012, 9012, 9012, 9016, 9016, 0, 9016, 9016, 9016, 9016, 9016, 9016, 9016, 9016, 9016, 0, 9016, 9016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9016, 9016, 9016, 9016, 9016, 9016, 9016, 0, 0, 0, 0, 0, 9016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9016, 9016, 9016, 9017, 9017, 0, 9017, 9017, 9017, 9017, 9017, 9017, 9017, 9017, 9017, 0, 9017, 9017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9017, 9017, 9017, 9017, 9017, 9017, 9017, 9017, 0, 0, 0, 0, 9017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9017, 9017, 9017, 9020, 9020, 0, 9020, 9020, 9020, 9020, 9020, 9020, 9020, 9020, 9020, 0, 9020, 9020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9020, 9020, 9020, 9020, 9020, 9020, 9020, 0, 0, 0, 0, 0, 9020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9020, 9020, 9020, 9021, 9021, 0, 9021, 9021, 9021, 9021, 9021, 9021, 9021, 9021, 9021, 0, 9021, 9021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9021, 9021, 9021, 9021, 9021, 9021, 9021, 9021, 0, 0, 0, 0, 9021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9021, 9021, 9021, 9023, 9023, 0, 9023, 9023, 9023, 9023, 9023, 9023, 9023, 9023, 9023, 0, 9023, 9023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9023, 9023, 9023, 9023, 9023, 9023, 9023, 0, 0, 0, 0, 0, 9023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9023, 0, 0, 0, 0, 0, 0, 9023, 9023, 9023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9023, 9024, 9024, 0, 9024, 9024, 9024, 9024, 9024, 9024, 9024, 9024, 9024, 0, 9024, 9024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9024, 9024, 9024, 9024, 9024, 9024, 9024, 0, 0, 0, 0, 0, 9024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9024, 9024, 9024, 9025, 9025, 0, 9025, 9025, 9025, 9025, 9025, 9025, 9025, 9025, 9025, 0, 9025, 9025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9025, 9025, 9025, 9025, 9025, 9025, 9025, 9025, 0, 0, 0, 0, 9025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9025, 9025, 9025, 9028, 9028, 0, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9028, 9029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9029, 9033, 9033, 0, 9033, 9033, 9033, 9033, 9033, 9033, 9033, 9033, 9033, 0, 9033, 9033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9033, 9033, 9033, 9033, 9033, 9033, 9033, 0, 0, 0, 0, 0, 9033, 0, 0, 9033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9033, 9033, 9033, 9033, 9034, 9034, 0, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 0, 9034, 9034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9034, 9034, 9034, 9034, 9034, 9034, 9034, 0, 0, 0, 0, 0, 9034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9034, 9034, 9034, 9034, 9035, 9035, 0, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9035, 9038, 9038, 0, 9038, 9038, 9038, 9038, 9038, 9038, 9038, 9038, 9038, 0, 9038, 9038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9038, 9038, 9038, 9038, 9038, 9038, 9038, 0, 0, 0, 0, 0, 9038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9038, 9038, 9038, 9044, 9044, 0, 9044, 9044, 9044, 9044, 9044, 9044, 9044, 9044, 9044, 0, 9044, 9044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9044, 9044, 9044, 9044, 9044, 9044, 9044, 9044, 0, 0, 0, 0, 9044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9044, 9044, 9044, 9044, 9045, 9045, 0, 9045, 9045, 9045, 9045, 9045, 9045, 9045, 9045, 9045, 0, 9045, 9045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9045, 9045, 9045, 9045, 9045, 9045, 9045, 0, 0, 0, 0, 0, 9045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9045, 9045, 9045, 9045, 9046, 9046, 0, 9046, 9046, 9046, 9046, 9046, 9046, 9046, 9046, 9046, 0, 9046, 9046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9046, 9046, 9046, 9046, 9046, 9046, 9046, 9046, 0, 0, 0, 0, 9046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9046, 9046, 9046, 9046, 9047, 9047, 0, 9047, 9047, 9047, 9047, 9047, 9047, 9047, 9047, 9047, 0, 9047, 9047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9047, 9047, 9047, 9047, 9047, 9047, 9047, 0, 0, 0, 0, 0, 9047, 0, 9047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9047, 9047, 9047, 9047, 0, 0, 0, 0, 0, 0, 0, 9047, 9048, 9048, 0, 9048, 9048, 9048, 9048, 9048, 9048, 9048, 9048, 9048, 0, 9048, 9048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9048, 9048, 9048, 9048, 9048, 9048, 9048, 0, 0, 0, 0, 0, 9048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9048, 9048, 9048, 9052, 9052, 0, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 0, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 0, 0, 0, 9052, 9052, 9052, 9052, 9052, 9052, 9052, 0, 0, 0, 0, 0, 9052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9052, 9052, 9052, 9053, 9053, 0, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 0, 9053, 9053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9053, 9053, 9053, 9053, 9053, 9053, 9053, 0, 0, 0, 0, 0, 9053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9053, 9053, 9053, 9053, 9054, 9054, 0, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9054, 9057, 9057, 0, 9057, 9057, 9057, 9057, 9057, 9057, 9057, 9057, 9057, 0, 9057, 9057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9057, 9057, 9057, 9057, 9057, 9057, 9057, 0, 0, 0, 0, 0, 9057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9057, 9057, 9057, 9063, 9063, 0, 9063, 9063, 9063, 9063, 9063, 9063, 9063, 9063, 9063, 0, 9063, 9063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9063, 9063, 9063, 9063, 9063, 9063, 9063, 9063, 0, 0, 0, 0, 9063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9063, 9063, 9063, 9063, 9064, 9064, 0, 9064, 9064, 9064, 9064, 9064, 9064, 9064, 9064, 9064, 0, 9064, 9064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9064, 9064, 9064, 9064, 9064, 9064, 9064, 0, 0, 0, 0, 0, 9064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9064, 9064, 9064, 9064, 9065, 9065, 0, 9065, 9065, 9065, 9065, 9065, 9065, 9065, 9065, 9065, 0, 9065, 9065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9065, 9065, 9065, 9065, 9065, 9065, 9065, 9065, 0, 0, 0, 0, 9065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9065, 9065, 9065, 9065, 9066, 9066, 0, 9066, 9066, 9066, 9066, 9066, 9066, 9066, 9066, 9066, 0, 9066, 9066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9066, 9066, 9066, 9066, 9066, 9066, 9066, 0, 0, 0, 0, 0, 9066, 0, 9066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9066, 9066, 9066, 9066, 0, 0, 0, 0, 0, 0, 0, 9066, 9067, 9067, 0, 9067, 9067, 9067, 9067, 9067, 9067, 9067, 9067, 9067, 0, 9067, 9067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9067, 9067, 9067, 9067, 9067, 9067, 9067, 0, 0, 0, 0, 0, 9067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9067, 9067, 9067, 9069, 9069, 0, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 0, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 0, 0, 0, 9069, 9069, 9069, 9069, 9069, 9069, 9069, 0, 0, 0, 0, 0, 9069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9069, 9069, 9069, 9069, 9070, 9070, 0, 9070, 9070, 9070, 9070, 9070, 9070, 9070, 9070, 9070, 0, 9070, 9070, 9070, 9070, 9070, 0, 0, 0, 0, 0, 0, 9070, 9070, 9070, 9070, 9070, 9070, 9070, 0, 0, 0, 0, 0, 9070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9070, 9070, 9070, 9070, 9071, 9071, 0, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 9071, 0, 0, 0, 0, 0, 9071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9071, 9071, 9071, 9071, 9071, 9073, 9073, 0, 9073, 9073, 9073, 9073, 9073, 0, 0, 9073, 9073, 9073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9073, 9073, 9073, 9073, 9073, 9073, 0, 0, 0, 0, 0, 9073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9073, 9073, 9073, 9073, 9074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9074, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 9079, 0, 0, 0, 0, 0, 0, 0, 9079, 9079, 9079, 9079, 9079, 9079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9079, 9079, 9079, 9079, 9079, 9079, 9082, 9082, 0, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 0, 9082, 9082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9082, 9082, 9082, 9082, 9082, 9082, 9082, 0, 0, 0, 0, 0, 9082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9082, 9082, 9082, 9082, 9083, 9083, 0, 9083, 9083, 9083, 9083, 9083, 9083, 9083, 9083, 9083, 0, 9083, 9083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9083, 9083, 9083, 9083, 9083, 9083, 9083, 9083, 0, 0, 0, 0, 9083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9083, 9083, 9083, 9083, 9084, 9084, 0, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 0, 9084, 9084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9084, 9084, 9084, 9084, 9084, 9084, 9084, 0, 0, 0, 0, 0, 9084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9084, 9084, 9084, 9084, 9085, 9085, 0, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9085, 9088, 9088, 0, 9088, 9088, 9088, 9088, 9088, 9088, 9088, 9088, 9088, 0, 9088, 9088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9088, 9088, 9088, 9088, 9088, 9088, 9088, 9088, 0, 0, 0, 0, 9088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9088, 9088, 9088, 9089, 9089, 0, 9089, 9089, 9089, 9089, 9089, 9089, 9089, 9089, 9089, 0, 9089, 9089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9089, 9089, 9089, 9089, 9089, 9089, 9089, 0, 0, 0, 0, 0, 9089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9089, 0, 0, 0, 0, 0, 9089, 9089, 9089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9089, 9090, 9090, 0, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 0, 9090, 9090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9090, 9090, 9090, 9090, 9090, 9090, 9090, 0, 0, 0, 0, 0, 9090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9090, 9090, 9090, 9090, 9091, 9091, 0, 9091, 9091, 9091, 9091, 9091, 9091, 9091, 9091, 9091, 0, 9091, 9091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9091, 9091, 9091, 9091, 9091, 9091, 9091, 9091, 0, 0, 0, 0, 9091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9091, 9091, 9091, 9091, 9092, 9092, 0, 9092, 9092, 9092, 9092, 9092, 9092, 9092, 9092, 9092, 0, 9092, 9092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9092, 9092, 9092, 9092, 9092, 9092, 9092, 0, 0, 0, 0, 0, 9092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9092, 9092, 9092, 9093, 9093, 0, 9093, 9093, 9093, 9093, 9093, 9093, 9093, 9093, 9093, 0, 9093, 9093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9093, 9093, 9093, 9093, 9093, 9093, 9093, 0, 0, 0, 0, 0, 9093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9093, 9093, 9093, 9093, 9097, 9097, 9097, 9097, 9097, 9097, 9097, 9097, 9097, 9097, 0, 0, 0, 0, 0, 0, 9097, 9097, 9097, 9097, 9097, 9097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9097, 9097, 9097, 9097, 9097, 9097, 9100, 9100, 9100, 9100, 9100, 9100, 9100, 9100, 9100, 9100, 0, 0, 0, 0, 0, 0, 9100, 9100, 9100, 9100, 9100, 9100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9100, 9100, 9100, 9100, 9100, 9100, 9102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9102, 9102, 9102, 9102, 9102, 9102, 9102, 9102, 9102, 0, 0, 0, 0, 0, 0, 0, 9102, 9102, 9102, 9102, 9102, 9102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9102, 9102, 9102, 9102, 9102, 9102, 9105, 9105, 0, 9105, 9105, 9105, 9105, 9105, 9105, 9105, 9105, 9105, 0, 9105, 9105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9105, 9105, 9105, 9105, 9105, 9105, 9105, 9105, 0, 0, 0, 0, 9105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9105, 9105, 9105, 9108, 9108, 9108, 9108, 9108, 9108, 9108, 9108, 9108, 9108, 0, 0, 0, 0, 0, 0, 9108, 9108, 9108, 9108, 9108, 9108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9108, 9108, 9108, 9108, 9108, 9108, 9114, 9114, 0, 9114, 9114, 9114, 9114, 9114, 9114, 9114, 9114, 9114, 0, 9114, 9114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9114, 9114, 9114, 9114, 9114, 9114, 9114, 0, 0, 0, 0, 0, 9114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9114, 9114, 9114, 9114, 9115, 9115, 0, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 0, 9115, 9115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 9115, 0, 0, 0, 0, 9115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9115, 9115, 9115, 9115, 9116, 9116, 0, 9116, 9116, 9116, 9116, 9116, 9116, 9116, 9116, 9116, 0, 9116, 9116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9116, 9116, 9116, 9116, 9116, 9116, 9116, 0, 0, 0, 0, 0, 9116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9116, 9116, 9116, 9118, 9118, 0, 9118, 9118, 9118, 9118, 9118, 9118, 9118, 9118, 9118, 0, 9118, 9118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9118, 9118, 9118, 9118, 9118, 9118, 9118, 0, 0, 0, 0, 0, 9118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9118, 9118, 9118, 9118, 9119, 9119, 0, 9119, 9119, 9119, 9119, 9119, 9119, 9119, 9119, 9119, 0, 9119, 9119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9119, 9119, 9119, 9119, 9119, 9119, 9119, 9119, 0, 0, 0, 0, 9119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9119, 9119, 9119, 9119, 9120, 9120, 0, 9120, 9120, 9120, 9120, 9120, 9120, 9120, 9120, 9120, 0, 9120, 9120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9120, 9120, 9120, 9120, 9120, 9120, 9120, 0, 0, 0, 0, 0, 9120, 9120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9120, 9120, 9120, 9120, 0, 0, 0, 0, 0, 0, 9120, 9121, 9121, 0, 9121, 9121, 9121, 9121, 9121, 9121, 9121, 9121, 9121, 0, 9121, 9121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9121, 9121, 9121, 9121, 9121, 9121, 9121, 0, 0, 0, 0, 0, 9121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9121, 9121, 9121, 9122, 9122, 0, 9122, 9122, 9122, 9122, 9122, 9122, 9122, 9122, 9122, 0, 9122, 9122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9122, 9122, 9122, 9122, 9122, 9122, 9122, 0, 0, 0, 0, 0, 9122, 9122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9122, 9122, 9122, 9122, 0, 0, 0, 0, 0, 0, 9122, 9123, 9123, 0, 9123, 9123, 9123, 9123, 9123, 9123, 9123, 9123, 9123, 0, 9123, 9123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9123, 9123, 9123, 9123, 9123, 9123, 9123, 9123, 0, 0, 0, 0, 9123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9123, 9123, 9123, 9125, 9125, 0, 9125, 9125, 9125, 9125, 9125, 9125, 9125, 9125, 9125, 0, 9125, 9125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9125, 9125, 9125, 9125, 9125, 9125, 9125, 0, 0, 0, 0, 0, 9125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9125, 9125, 9125, 9125, 9126, 9126, 0, 9126, 9126, 9126, 9126, 9126, 9126, 9126, 9126, 9126, 0, 9126, 9126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9126, 9126, 9126, 9126, 9126, 9126, 9126, 9126, 0, 0, 0, 0, 9126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9126, 9126, 9126, 9126, 9127, 9127, 0, 9127, 9127, 9127, 9127, 9127, 9127, 9127, 9127, 9127, 0, 9127, 9127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9127, 9127, 9127, 9127, 9127, 9127, 9127, 0, 0, 0, 0, 0, 9127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9127, 9127, 9127, 9128, 9128, 0, 9128, 9128, 9128, 9128, 9128, 9128, 9128, 9128, 9128, 0, 9128, 9128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9128, 9128, 9128, 9128, 9128, 9128, 9128, 0, 0, 0, 0, 0, 9128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9128, 9128, 9128, 9129, 9129, 0, 9129, 9129, 9129, 9129, 9129, 9129, 9129, 9129, 9129, 0, 9129, 9129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9129, 9129, 9129, 9129, 9129, 9129, 9129, 9129, 0, 0, 0, 0, 9129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9129, 9129, 9129, 9130, 9130, 0, 9130, 9130, 9130, 9130, 9130, 9130, 9130, 9130, 9130, 0, 9130, 9130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9130, 9130, 9130, 9130, 9130, 9130, 9130, 0, 0, 0, 0, 0, 9130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9130, 0, 0, 0, 0, 0, 9130, 9130, 9130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9130, 9132, 9132, 9132, 9132, 9132, 9132, 9132, 9132, 9132, 0, 0, 0, 0, 0, 0, 0, 9132, 9132, 9132, 9132, 9132, 9132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9132, 0, 9132, 9132, 9132, 9132, 9132, 9132, 9133, 9133, 0, 9133, 9133, 9133, 9133, 9133, 9133, 9133, 9133, 9133, 0, 9133, 9133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9133, 9133, 9133, 9133, 9133, 9133, 9133, 9133, 0, 0, 0, 0, 9133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9133, 9133, 9133, 9134, 9134, 0, 9134, 9134, 9134, 9134, 9134, 9134, 9134, 9134, 9134, 0, 9134, 9134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9134, 9134, 9134, 9134, 9134, 9134, 9134, 9134, 0, 0, 0, 0, 9134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9134, 9134, 9134, 9134, 9135, 9135, 0, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9135, 9138, 9138, 0, 9138, 9138, 9138, 9138, 9138, 9138, 9138, 9138, 9138, 0, 9138, 9138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9138, 9138, 9138, 9138, 9138, 9138, 9138, 0, 0, 0, 0, 0, 9138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9138, 9138, 9138, 9139, 9139, 0, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 0, 9139, 9139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 9139, 0, 0, 0, 0, 9139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9139, 9139, 9139, 9140, 9140, 0, 9140, 9140, 9140, 9140, 9140, 9140, 9140, 9140, 9140, 0, 9140, 9140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9140, 9140, 9140, 9140, 9140, 9140, 9140, 0, 0, 0, 0, 0, 9140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9140, 9140, 9140, 9141, 9141, 0, 9141, 9141, 9141, 9141, 9141, 9141, 9141, 9141, 9141, 0, 9141, 9141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9141, 9141, 9141, 9141, 9141, 9141, 9141, 9141, 0, 0, 0, 0, 9141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9141, 9141, 9141, 9143, 9143, 0, 9143, 9143, 9143, 9143, 9143, 9143, 9143, 9143, 9143, 0, 9143, 9143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9143, 9143, 9143, 9143, 9143, 9143, 9143, 0, 0, 0, 0, 0, 9143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9143, 9143, 9143, 9144, 9144, 0, 9144, 9144, 9144, 9144, 9144, 9144, 9144, 9144, 9144, 0, 9144, 9144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9144, 9144, 9144, 9144, 9144, 9144, 9144, 9144, 0, 0, 0, 0, 9144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9144, 9144, 9144, 9145, 9145, 0, 9145, 9145, 9145, 9145, 9145, 9145, 9145, 9145, 9145, 0, 9145, 9145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9145, 9145, 9145, 9145, 9145, 9145, 9145, 0, 0, 0, 0, 0, 9145, 0, 9145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9145, 9145, 9145, 0, 0, 0, 0, 0, 0, 0, 0, 9145, 9146, 9146, 0, 9146, 9146, 9146, 9146, 9146, 9146, 9146, 9146, 9146, 0, 9146, 9146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9146, 9146, 9146, 9146, 9146, 9146, 9146, 0, 0, 0, 0, 0, 9146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9146, 9146, 9146, 9146, 9147, 9147, 0, 9147, 9147, 9147, 9147, 9147, 9147, 9147, 9147, 9147, 0, 9147, 9147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9147, 9147, 9147, 9147, 9147, 9147, 9147, 9147, 0, 0, 0, 0, 9147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9147, 9147, 9147, 9147, 9148, 9148, 0, 9148, 9148, 9148, 9148, 9148, 9148, 9148, 9148, 9148, 0, 9148, 9148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9148, 9148, 9148, 9148, 9148, 9148, 9148, 0, 0, 0, 0, 0, 9148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9148, 9148, 9148, 9150, 9150, 0, 9150, 9150, 9150, 9150, 9150, 9150, 9150, 9150, 9150, 0, 9150, 9150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9150, 9150, 9150, 9150, 9150, 9150, 9150, 9150, 0, 0, 0, 0, 9150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9150, 9150, 9150, 9152, 9152, 0, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 0, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 9152, 0, 0, 0, 0, 0, 9152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9152, 9152, 9152, 9152, 9160, 9160, 9160, 9160, 9160, 9160, 9160, 9160, 9160, 9160, 0, 0, 0, 0, 0, 0, 9160, 9160, 9160, 9160, 9160, 9160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9160, 9160, 9160, 9160, 9160, 9160, 9162, 9162, 9162, 9162, 9162, 9162, 9162, 9162, 9162, 9162, 0, 0, 0, 0, 0, 0, 9162, 9162, 9162, 9162, 9162, 9162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9162, 9162, 9162, 9162, 9162, 9162, 9165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9165, 9165, 9165, 9165, 9165, 9165, 9165, 9165, 9165, 9165, 0, 0, 0, 0, 0, 0, 9165, 9165, 9165, 9165, 9165, 9165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9165, 9165, 9165, 9165, 9165, 9165, 9173, 9173, 9173, 9173, 9173, 9173, 9173, 9173, 9173, 9173, 0, 0, 0, 0, 0, 0, 9173, 9173, 9173, 9173, 9173, 9173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9173, 9173, 9173, 9173, 9173, 9173, 9175, 9175, 9175, 9175, 9175, 9175, 9175, 9175, 9175, 0, 0, 0, 0, 0, 0, 0, 9175, 9175, 9175, 9175, 9175, 9175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9175, 9175, 9175, 9175, 9175, 9175, 9181, 9181, 0, 9181, 9181, 9181, 9181, 9181, 9181, 9181, 9181, 9181, 9181, 9181, 9181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9181, 9181, 9181, 9181, 9181, 9181, 9181, 0, 0, 0, 0, 0, 9181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9181, 9181, 9181, 9181, 9182, 9182, 0, 9182, 9182, 9182, 9182, 9182, 9182, 9182, 9182, 9182, 9182, 9182, 9182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9182, 9182, 9182, 9182, 9182, 9182, 9182, 9182, 0, 0, 0, 0, 9182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9182, 9182, 9182, 9182, 9183, 9183, 0, 9183, 9183, 9183, 9183, 9183, 9183, 9183, 9183, 9183, 9183, 9183, 9183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9183, 9183, 9183, 9183, 9183, 9183, 9183, 0, 0, 0, 0, 0, 9183, 0, 0, 0, 0, 0, 9183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9183, 9183, 9183, 9183, 9185, 9185, 0, 9185, 9185, 9185, 9185, 9185, 9185, 9185, 9185, 9185, 0, 9185, 9185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9185, 9185, 9185, 9185, 9185, 9185, 9185, 0, 0, 0, 0, 0, 9185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9185, 9185, 9185, 9185, 9186, 9186, 0, 9186, 9186, 9186, 9186, 9186, 9186, 9186, 9186, 9186, 0, 9186, 9186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9186, 9186, 9186, 9186, 9186, 9186, 9186, 9186, 0, 0, 0, 0, 9186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9186, 9186, 9186, 9186, 9187, 9187, 0, 9187, 9187, 9187, 9187, 9187, 9187, 9187, 9187, 9187, 0, 9187, 9187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9187, 9187, 9187, 9187, 9187, 9187, 9187, 0, 0, 0, 0, 0, 9187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9187, 9187, 9187, 9189, 9189, 0, 9189, 9189, 9189, 9189, 9189, 9189, 9189, 9189, 9189, 0, 9189, 9189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9189, 9189, 9189, 9189, 9189, 9189, 9189, 9189, 0, 0, 0, 0, 9189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9189, 9189, 9189, 9191, 9191, 0, 9191, 9191, 9191, 9191, 9191, 9191, 9191, 9191, 9191, 0, 9191, 9191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9191, 9191, 9191, 9191, 9191, 9191, 9191, 0, 0, 0, 0, 0, 9191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9191, 9191, 9191, 9191, 9192, 9192, 0, 9192, 9192, 9192, 9192, 9192, 9192, 9192, 9192, 9192, 0, 9192, 9192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9192, 9192, 9192, 9192, 9192, 9192, 9192, 9192, 0, 0, 0, 0, 9192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9192, 9192, 9192, 9192, 9193, 9193, 0, 9193, 9193, 9193, 9193, 9193, 9193, 9193, 9193, 9193, 0, 9193, 9193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9193, 9193, 9193, 9193, 9193, 9193, 9193, 0, 0, 0, 0, 0, 9193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9193, 9193, 9193, 9195, 9195, 0, 9195, 9195, 9195, 9195, 9195, 9195, 9195, 9195, 9195, 0, 9195, 9195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9195, 9195, 9195, 9195, 9195, 9195, 9195, 0, 0, 0, 0, 0, 9195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9195, 9195, 9195, 9195, 9196, 9196, 0, 9196, 9196, 9196, 9196, 9196, 9196, 9196, 9196, 9196, 0, 9196, 9196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9196, 9196, 9196, 9196, 9196, 9196, 9196, 9196, 0, 0, 0, 0, 9196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9196, 9196, 9196, 9196, 9197, 9197, 0, 9197, 9197, 9197, 9197, 9197, 9197, 9197, 9197, 9197, 0, 9197, 9197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9197, 9197, 9197, 9197, 9197, 9197, 9197, 0, 0, 0, 0, 0, 9197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9197, 0, 0, 0, 9197, 9197, 9197, 9197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9197, 9198, 9198, 0, 9198, 9198, 9198, 9198, 9198, 9198, 9198, 9198, 9198, 0, 9198, 9198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9198, 9198, 9198, 9198, 9198, 9198, 9198, 0, 0, 0, 0, 0, 9198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9198, 9198, 9198, 9199, 9199, 0, 9199, 9199, 9199, 9199, 9199, 9199, 9199, 9199, 9199, 0, 9199, 9199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9199, 9199, 9199, 9199, 9199, 9199, 9199, 0, 0, 0, 0, 0, 9199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9199, 9199, 9199, 9200, 9200, 0, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 0, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 9200, 0, 0, 0, 0, 0, 9200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9200, 9200, 9200, 9202, 9202, 0, 9202, 9202, 9202, 9202, 9202, 9202, 9202, 9202, 9202, 0, 9202, 9202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9202, 9202, 9202, 9202, 9202, 9202, 9202, 9202, 0, 0, 0, 0, 9202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9202, 9202, 9202, 9203, 9203, 0, 9203, 9203, 9203, 9203, 9203, 9203, 9203, 9203, 9203, 0, 9203, 9203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9203, 9203, 9203, 9203, 9203, 9203, 9203, 0, 0, 0, 0, 0, 9203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9203, 9203, 9203, 9203, 9204, 9204, 0, 9204, 9204, 9204, 9204, 9204, 9204, 9204, 9204, 9204, 0, 9204, 9204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9204, 9204, 9204, 9204, 9204, 9204, 9204, 9204, 0, 0, 0, 0, 9204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9204, 9204, 9204, 9204, 9205, 9205, 0, 9205, 9205, 9205, 9205, 9205, 9205, 9205, 9205, 9205, 0, 9205, 9205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9205, 9205, 9205, 9205, 9205, 9205, 9205, 0, 0, 0, 0, 0, 9205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9205, 0, 0, 0, 9205, 9205, 9205, 9205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9205, 9206, 9206, 0, 9206, 9206, 9206, 9206, 9206, 9206, 9206, 9206, 9206, 0, 9206, 9206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9206, 9206, 9206, 9206, 9206, 9206, 9206, 0, 0, 0, 0, 0, 9206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9206, 9206, 9206, 9208, 9208, 0, 9208, 9208, 9208, 9208, 9208, 9208, 9208, 9208, 9208, 0, 9208, 9208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9208, 9208, 9208, 9208, 9208, 9208, 9208, 0, 0, 0, 0, 0, 9208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9208, 9208, 9208, 9209, 9209, 0, 9209, 9209, 9209, 9209, 9209, 9209, 9209, 9209, 9209, 0, 9209, 9209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9209, 9209, 9209, 9209, 9209, 9209, 9209, 0, 0, 0, 0, 0, 9209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9209, 0, 0, 0, 0, 0, 9209, 9209, 9209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9209, 9210, 9210, 0, 9210, 9210, 9210, 9210, 9210, 9210, 9210, 9210, 9210, 0, 9210, 9210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9210, 9210, 9210, 9210, 9210, 9210, 9210, 9210, 0, 0, 0, 0, 9210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9210, 9210, 9210, 9214, 9214, 0, 9214, 9214, 9214, 9214, 9214, 9214, 9214, 9214, 9214, 0, 9214, 9214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9214, 9214, 9214, 9214, 9214, 9214, 9214, 0, 0, 0, 0, 0, 9214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9214, 9214, 9214, 9215, 9215, 0, 9215, 9215, 9215, 9215, 9215, 9215, 9215, 9215, 9215, 0, 9215, 9215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9215, 9215, 9215, 9215, 9215, 9215, 9215, 9215, 0, 0, 0, 0, 9215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9215, 9215, 9215, 9217, 9217, 0, 9217, 9217, 9217, 9217, 9217, 9217, 9217, 9217, 9217, 0, 9217, 9217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9217, 9217, 9217, 9217, 9217, 9217, 9217, 0, 0, 0, 0, 0, 9217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9217, 9217, 9217, 9218, 9218, 0, 9218, 9218, 9218, 9218, 9218, 9218, 9218, 9218, 9218, 0, 9218, 9218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9218, 9218, 9218, 9218, 9218, 9218, 9218, 9218, 0, 0, 0, 0, 9218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9218, 9218, 9218, 9219, 9219, 0, 9219, 9219, 9219, 9219, 9219, 9219, 9219, 9219, 9219, 0, 9219, 9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9219, 9219, 9219, 9219, 9219, 9219, 9219, 0, 0, 0, 0, 0, 9219, 9219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9219, 9219, 9219, 0, 0, 0, 0, 0, 0, 0, 9219, 9220, 9220, 0, 9220, 9220, 9220, 9220, 9220, 9220, 9220, 9220, 9220, 0, 9220, 9220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9220, 9220, 9220, 9220, 9220, 9220, 9220, 0, 0, 0, 0, 0, 9220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9220, 9220, 9220, 9221, 9221, 0, 9221, 9221, 9221, 9221, 9221, 9221, 9221, 9221, 9221, 0, 9221, 9221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9221, 9221, 9221, 9221, 9221, 9221, 9221, 0, 0, 0, 0, 0, 9221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9221, 9221, 9221, 9222, 9222, 0, 9222, 9222, 9222, 9222, 9222, 9222, 9222, 9222, 9222, 0, 9222, 9222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9222, 9222, 9222, 9222, 9222, 9222, 9222, 0, 0, 0, 0, 0, 9222, 9222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9222, 9222, 9222, 0, 0, 0, 0, 0, 0, 0, 9222, 9223, 9223, 0, 9223, 9223, 9223, 9223, 9223, 9223, 9223, 9223, 9223, 0, 9223, 9223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9223, 9223, 9223, 9223, 9223, 9223, 9223, 0, 0, 0, 0, 0, 9223, 0, 0, 0, 0, 0, 9223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9223, 9223, 9223, 9224, 9224, 0, 9224, 9224, 9224, 9224, 9224, 9224, 9224, 9224, 9224, 0, 9224, 9224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9224, 9224, 9224, 9224, 9224, 9224, 9224, 0, 0, 0, 0, 0, 9224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9224, 9224, 9224, 9224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9224, 9234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9234, 9234, 9234, 9234, 9234, 9234, 9234, 9234, 9234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9234, 0, 0, 0, 0, 9234, 9236, 9236, 0, 9236, 9236, 9236, 9236, 9236, 9236, 9236, 9236, 9236, 0, 9236, 9236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9236, 9236, 9236, 9236, 9236, 9236, 9236, 0, 0, 0, 0, 0, 9236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9236, 9236, 9236, 9237, 9237, 0, 9237, 9237, 9237, 9237, 9237, 9237, 9237, 9237, 9237, 0, 9237, 9237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9237, 9237, 9237, 9237, 9237, 9237, 9237, 9237, 0, 0, 0, 0, 9237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9237, 9237, 9237, 9241, 9241, 0, 9241, 9241, 9241, 9241, 9241, 9241, 9241, 9241, 9241, 0, 9241, 9241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9241, 9241, 9241, 9241, 9241, 9241, 9241, 0, 0, 0, 0, 0, 9241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9241, 9241, 9241, 9242, 9242, 0, 9242, 9242, 9242, 9242, 9242, 9242, 9242, 9242, 9242, 0, 9242, 9242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9242, 9242, 9242, 9242, 9242, 9242, 9242, 9242, 0, 0, 0, 0, 9242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9242, 9242, 9242, 9245, 9245, 0, 9245, 9245, 9245, 9245, 9245, 9245, 9245, 9245, 9245, 0, 9245, 9245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9245, 9245, 9245, 9245, 9245, 9245, 9245, 0, 0, 0, 0, 0, 9245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9245, 9245, 9245, 9246, 9246, 0, 9246, 9246, 9246, 9246, 9246, 9246, 9246, 9246, 9246, 0, 9246, 9246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9246, 9246, 9246, 9246, 9246, 9246, 9246, 9246, 0, 0, 0, 0, 9246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9246, 9246, 9246, 9249, 9249, 0, 9249, 9249, 9249, 9249, 9249, 9249, 9249, 9249, 9249, 0, 9249, 9249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9249, 9249, 9249, 9249, 9249, 9249, 9249, 0, 0, 0, 0, 0, 9249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9249, 9249, 9249, 9250, 9250, 0, 9250, 9250, 9250, 9250, 9250, 9250, 9250, 9250, 9250, 0, 9250, 9250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9250, 9250, 9250, 9250, 9250, 9250, 9250, 9250, 0, 0, 0, 0, 9250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9250, 9250, 9250, 9252, 9252, 0, 9252, 9252, 9252, 9252, 9252, 9252, 9252, 9252, 9252, 0, 9252, 9252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9252, 9252, 9252, 9252, 9252, 9252, 9252, 0, 0, 0, 0, 0, 9252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9252, 9252, 9252, 9253, 9253, 0, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 0, 9253, 9253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 9253, 0, 0, 0, 0, 9253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9253, 9253, 9253, 9254, 9254, 0, 9254, 9254, 9254, 9254, 9254, 9254, 9254, 9254, 9254, 0, 9254, 9254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9254, 9254, 9254, 9254, 9254, 9254, 9254, 0, 0, 0, 0, 0, 9254, 9254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9254, 9254, 9254, 0, 0, 0, 0, 0, 0, 0, 9254, 9255, 9255, 0, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 0, 9255, 9255, 0, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 9255, 0, 0, 0, 0, 0, 9255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9255, 9255, 9255, 9256, 9256, 0, 9256, 9256, 9256, 9256, 9256, 9256, 9256, 9256, 9256, 0, 9256, 9256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9256, 9256, 9256, 9256, 9256, 9256, 9256, 0, 0, 0, 0, 0, 9256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9256, 9256, 9256, 9257, 9257, 0, 9257, 9257, 9257, 9257, 9257, 9257, 9257, 9257, 9257, 0, 9257, 9257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9257, 9257, 9257, 9257, 9257, 9257, 9257, 0, 0, 0, 0, 0, 9257, 9257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9257, 9257, 9257, 0, 0, 0, 0, 0, 0, 0, 9257, 9259, 9259, 0, 9259, 9259, 9259, 9259, 9259, 9259, 9259, 9259, 9259, 0, 9259, 9259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9259, 9259, 9259, 9259, 9259, 9259, 9259, 0, 0, 0, 0, 0, 9259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9259, 9259, 9259, 9260, 9260, 0, 9260, 9260, 9260, 9260, 9260, 9260, 9260, 9260, 9260, 0, 9260, 9260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9260, 9260, 9260, 9260, 9260, 9260, 9260, 9260, 0, 0, 0, 0, 9260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9260, 9260, 9260, 9264, 9264, 0, 9264, 9264, 9264, 9264, 9264, 9264, 9264, 9264, 9264, 0, 9264, 9264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9264, 9264, 9264, 9264, 9264, 9264, 9264, 0, 0, 0, 0, 0, 9264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9264, 9264, 9264, 9265, 9265, 0, 9265, 9265, 9265, 9265, 9265, 9265, 9265, 9265, 9265, 0, 9265, 9265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9265, 9265, 9265, 9265, 9265, 9265, 9265, 9265, 0, 0, 0, 0, 9265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9265, 9265, 9265, 9269, 9269, 0, 9269, 9269, 9269, 9269, 9269, 9269, 9269, 9269, 9269, 0, 9269, 9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9269, 9269, 9269, 9269, 9269, 9269, 9269, 0, 0, 0, 0, 0, 9269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9269, 9269, 9269, 9270, 9270, 0, 9270, 9270, 9270, 9270, 9270, 9270, 9270, 9270, 9270, 0, 9270, 9270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9270, 9270, 9270, 9270, 9270, 9270, 9270, 9270, 0, 0, 0, 0, 9270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9270, 9270, 9270, 9273, 9273, 0, 9273, 9273, 9273, 9273, 9273, 9273, 9273, 9273, 9273, 0, 9273, 9273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9273, 9273, 9273, 9273, 9273, 9273, 9273, 0, 0, 0, 0, 0, 9273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9273, 9273, 9273, 9274, 9274, 0, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 0, 9274, 9274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 9274, 0, 0, 0, 0, 9274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9274, 9274, 9274, 9276, 9276, 0, 9276, 9276, 9276, 9276, 9276, 9276, 9276, 9276, 9276, 0, 9276, 9276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9276, 9276, 9276, 9276, 9276, 9276, 9276, 0, 0, 0, 0, 0, 9276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9276, 0, 0, 0, 0, 0, 0, 9276, 9276, 9276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9276, 9277, 9277, 0, 9277, 9277, 9277, 9277, 9277, 9277, 9277, 9277, 9277, 0, 9277, 9277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9277, 9277, 9277, 9277, 9277, 9277, 9277, 0, 0, 0, 0, 0, 9277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9277, 9277, 9277, 9278, 9278, 0, 9278, 9278, 9278, 9278, 9278, 9278, 9278, 9278, 9278, 0, 9278, 9278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9278, 9278, 9278, 9278, 9278, 9278, 9278, 9278, 0, 0, 0, 0, 9278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9278, 9278, 9278, 9279, 9279, 0, 9279, 9279, 9279, 9279, 9279, 9279, 9279, 9279, 9279, 0, 9279, 9279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9279, 9279, 9279, 9279, 9279, 9279, 9279, 0, 0, 0, 0, 0, 9279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9279, 9279, 9279, 9280, 9280, 0, 9280, 9280, 9280, 9280, 9280, 9280, 9280, 9280, 9280, 0, 9280, 9280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9280, 9280, 9280, 9280, 9280, 9280, 9280, 9280, 0, 0, 0, 0, 9280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9280, 9280, 9280, 9284, 9284, 0, 9284, 9284, 9284, 9284, 9284, 9284, 9284, 9284, 9284, 0, 9284, 9284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9284, 9284, 9284, 9284, 9284, 9284, 9284, 0, 0, 0, 0, 0, 9284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9284, 9284, 9284, 9285, 9285, 0, 9285, 9285, 9285, 9285, 9285, 9285, 9285, 9285, 9285, 0, 9285, 9285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9285, 9285, 9285, 9285, 9285, 9285, 9285, 9285, 0, 0, 0, 0, 9285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9285, 9285, 9285, 9288, 9288, 0, 9288, 9288, 9288, 9288, 9288, 9288, 9288, 9288, 9288, 0, 9288, 9288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9288, 9288, 9288, 9288, 9288, 9288, 9288, 0, 0, 0, 0, 0, 9288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9288, 9288, 9288, 9289, 9289, 0, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 0, 9289, 9289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 9289, 0, 0, 0, 0, 9289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9289, 9289, 9289, 9291, 9291, 0, 9291, 9291, 9291, 9291, 9291, 9291, 9291, 9291, 9291, 0, 9291, 9291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9291, 9291, 9291, 9291, 9291, 9291, 9291, 0, 0, 0, 0, 0, 9291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9291, 0, 0, 0, 0, 0, 0, 9291, 9291, 9291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9291, 9292, 9292, 0, 9292, 9292, 9292, 9292, 9292, 9292, 9292, 9292, 9292, 0, 9292, 9292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9292, 9292, 9292, 9292, 9292, 9292, 9292, 0, 0, 0, 0, 0, 9292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9292, 9292, 9292, 9293, 9293, 0, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 0, 9293, 9293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 9293, 0, 0, 0, 0, 9293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9293, 9293, 9293, 9302, 9302, 0, 9302, 9302, 9302, 9302, 9302, 9302, 9302, 9302, 9302, 0, 9302, 9302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9302, 9302, 9302, 9302, 9302, 9302, 9302, 0, 0, 0, 0, 0, 9302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9302, 9302, 9302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9302, 9306, 9306, 9306, 9306, 9306, 9306, 9306, 9306, 9306, 9306, 9306, 9306, 0, 9306, 9306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9306, 9306, 9306, 9306, 9306, 9306, 9306, 0, 0, 0, 0, 0, 9306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9306, 9306, 9306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9306, 9314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 9314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9314, 0, 0, 0, 0, 9314, 9318, 9318, 0, 9318, 9318, 9318, 9318, 9318, 9318, 9318, 9318, 9318, 0, 9318, 9318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9318, 9318, 9318, 9318, 9318, 9318, 9318, 0, 0, 0, 0, 0, 9318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9318, 9318, 9318, 9319, 9319, 0, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 0, 9319, 9319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 9319, 0, 0, 0, 0, 9319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9319, 9319, 9319, 9323, 9323, 0, 9323, 9323, 9323, 9323, 9323, 9323, 9323, 9323, 9323, 0, 9323, 9323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9323, 9323, 9323, 9323, 9323, 9323, 9323, 0, 0, 0, 0, 0, 9323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9323, 9323, 9323, 9324, 9324, 0, 9324, 9324, 9324, 9324, 9324, 9324, 9324, 9324, 9324, 0, 9324, 9324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9324, 9324, 9324, 9324, 9324, 9324, 9324, 9324, 0, 0, 0, 0, 9324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9324, 9324, 9324, 9326, 9326, 0, 9326, 9326, 9326, 9326, 9326, 9326, 9326, 9326, 9326, 0, 9326, 9326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9326, 9326, 9326, 9326, 9326, 9326, 9326, 0, 0, 0, 0, 0, 9326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9326, 9326, 9326, 9327, 9327, 0, 9327, 9327, 9327, 9327, 9327, 9327, 9327, 9327, 9327, 0, 9327, 9327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9327, 9327, 9327, 9327, 9327, 9327, 9327, 9327, 0, 0, 0, 0, 9327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9327, 9327, 9327, 9329, 9329, 0, 9329, 9329, 9329, 9329, 9329, 9329, 9329, 9329, 9329, 0, 9329, 9329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9329, 9329, 9329, 9329, 9329, 9329, 9329, 0, 0, 0, 0, 0, 9329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9329, 9329, 9329, 9330, 9330, 0, 9330, 9330, 9330, 9330, 9330, 9330, 9330, 9330, 9330, 0, 9330, 9330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9330, 9330, 9330, 9330, 9330, 9330, 9330, 9330, 0, 0, 0, 0, 9330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9330, 9330, 9330, 9331, 9331, 0, 9331, 9331, 9331, 9331, 9331, 9331, 9331, 9331, 9331, 0, 9331, 9331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9331, 9331, 9331, 9331, 9331, 9331, 9331, 0, 0, 0, 0, 0, 9331, 0, 9331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9331, 9331, 9331, 0, 0, 0, 0, 0, 0, 0, 0, 9331, 9334, 9334, 0, 9334, 9334, 9334, 9334, 9334, 9334, 9334, 9334, 9334, 0, 9334, 9334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9334, 9334, 9334, 9334, 9334, 9334, 9334, 0, 0, 0, 0, 0, 9334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9334, 9334, 9334, 9335, 9335, 0, 9335, 9335, 9335, 9335, 9335, 9335, 9335, 9335, 9335, 0, 9335, 9335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9335, 9335, 9335, 9335, 9335, 9335, 9335, 9335, 0, 0, 0, 0, 9335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9335, 9335, 9335, 9339, 9339, 0, 9339, 9339, 9339, 9339, 9339, 9339, 9339, 9339, 9339, 0, 9339, 9339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9339, 9339, 9339, 9339, 9339, 9339, 9339, 0, 0, 0, 0, 0, 9339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9339, 9339, 9339, 9340, 9340, 0, 9340, 9340, 9340, 9340, 9340, 9340, 9340, 9340, 9340, 0, 9340, 9340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9340, 9340, 9340, 9340, 9340, 9340, 9340, 9340, 0, 0, 0, 0, 9340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9340, 9340, 9340, 9343, 9343, 0, 9343, 9343, 9343, 9343, 9343, 9343, 9343, 9343, 9343, 0, 9343, 9343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9343, 9343, 9343, 9343, 9343, 9343, 9343, 0, 0, 0, 0, 0, 9343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9343, 9343, 9343, 9344, 9344, 0, 9344, 9344, 9344, 9344, 9344, 9344, 9344, 9344, 9344, 0, 9344, 9344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9344, 9344, 9344, 9344, 9344, 9344, 9344, 9344, 0, 0, 0, 0, 9344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9344, 9344, 9344, 9346, 9346, 0, 9346, 9346, 9346, 9346, 9346, 9346, 9346, 9346, 9346, 0, 9346, 9346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9346, 9346, 9346, 9346, 9346, 9346, 9346, 0, 0, 0, 0, 0, 9346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9346, 9346, 9346, 9347, 9347, 0, 9347, 9347, 9347, 9347, 9347, 9347, 9347, 9347, 9347, 0, 9347, 9347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9347, 9347, 9347, 9347, 9347, 9347, 9347, 9347, 0, 0, 0, 0, 9347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9347, 9347, 9347, 9348, 9348, 0, 9348, 9348, 9348, 9348, 9348, 9348, 9348, 9348, 9348, 9348, 9348, 9348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9348, 9348, 9348, 9348, 9348, 9348, 9348, 9348, 0, 0, 0, 0, 9348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9348, 9348, 9348, 9348, 9348, 9349, 9349, 0, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 0, 9349, 9349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9349, 9349, 9349, 9349, 9349, 9349, 9349, 0, 0, 0, 0, 0, 9349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9349, 9349, 9349, 9350, 9350, 0, 9350, 9350, 9350, 9350, 9350, 9350, 9350, 9350, 9350, 0, 9350, 9350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9350, 9350, 9350, 9350, 9350, 9350, 9350, 9350, 0, 0, 0, 0, 9350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9350, 9350, 9350, 9353, 9353, 0, 9353, 9353, 9353, 9353, 9353, 9353, 9353, 9353, 9353, 0, 9353, 9353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9353, 9353, 9353, 9353, 9353, 9353, 9353, 0, 0, 0, 0, 0, 9353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9353, 9353, 9353, 9354, 9354, 0, 9354, 9354, 9354, 9354, 9354, 9354, 9354, 9354, 9354, 0, 9354, 9354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9354, 9354, 9354, 9354, 9354, 9354, 9354, 9354, 0, 0, 0, 0, 9354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9354, 9354, 9354, 9356, 9356, 0, 9356, 9356, 9356, 9356, 9356, 9356, 9356, 9356, 9356, 0, 9356, 9356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9356, 9356, 9356, 9356, 9356, 9356, 9356, 0, 0, 0, 0, 0, 9356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9356, 9356, 9356, 9357, 9357, 0, 9357, 9357, 9357, 9357, 9357, 9357, 9357, 9357, 9357, 0, 9357, 9357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9357, 9357, 9357, 9357, 9357, 9357, 9357, 9357, 0, 0, 0, 0, 9357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9357, 9357, 9357, 9358, 9358, 0, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 9358, 0, 0, 0, 0, 9358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9358, 9358, 9358, 9358, 9358, 9361, 9361, 0, 9361, 9361, 9361, 9361, 9361, 9361, 9361, 9361, 9361, 0, 9361, 9361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9361, 9361, 9361, 9361, 9361, 9361, 9361, 0, 0, 0, 0, 0, 9361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9361, 9361, 9361, 9362, 9362, 0, 9362, 9362, 9362, 9362, 9362, 9362, 9362, 9362, 9362, 0, 9362, 9362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9362, 9362, 9362, 9362, 9362, 9362, 9362, 9362, 0, 0, 0, 0, 9362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9362, 9362, 9362, 9371, 9371, 9371, 9371, 9371, 9371, 9371, 9371, 9371, 9371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9371, 0, 9371, 9407, 9407, 0, 9407, 9407, 9407, 9407, 9407, 9407, 9407, 9407, 9407, 0, 9407, 9407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9407, 9407, 9407, 9407, 9407, 9407, 9407, 0, 0, 0, 0, 0, 9407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9407, 9407, 9407, 9408, 9408, 0, 9408, 9408, 9408, 9408, 9408, 9408, 9408, 9408, 9408, 0, 9408, 9408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9408, 9408, 9408, 9408, 9408, 9408, 9408, 9408, 0, 0, 0, 0, 9408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9408, 9408, 9408, 9411, 9411, 0, 9411, 9411, 9411, 9411, 9411, 9411, 9411, 9411, 9411, 0, 9411, 9411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9411, 9411, 9411, 9411, 9411, 9411, 9411, 0, 0, 0, 0, 0, 9411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9411, 9411, 9411, 9412, 9412, 0, 9412, 9412, 9412, 9412, 9412, 9412, 9412, 9412, 9412, 0, 9412, 9412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9412, 9412, 9412, 9412, 9412, 9412, 9412, 0, 0, 0, 0, 0, 9412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9412, 0, 0, 0, 0, 0, 9412, 9412, 9412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9412, 9413, 9413, 0, 9413, 9413, 9413, 9413, 9413, 9413, 9413, 9413, 9413, 0, 9413, 9413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9413, 9413, 9413, 9413, 9413, 9413, 9413, 9413, 0, 0, 0, 0, 9413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9413, 9413, 9413, 9416, 9416, 0, 9416, 9416, 9416, 9416, 9416, 9416, 9416, 9416, 9416, 0, 9416, 9416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9416, 9416, 9416, 9416, 9416, 9416, 9416, 0, 0, 0, 0, 0, 9416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9416, 9416, 9416, 9417, 9417, 0, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 0, 9417, 9417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 9417, 0, 0, 0, 0, 9417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9417, 9417, 9417, 9419, 9419, 0, 9419, 9419, 9419, 9419, 9419, 9419, 9419, 9419, 9419, 0, 9419, 9419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9419, 9419, 9419, 9419, 9419, 9419, 9419, 0, 0, 0, 0, 0, 9419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9419, 9419, 9419, 9420, 9420, 0, 9420, 9420, 9420, 9420, 9420, 9420, 9420, 9420, 9420, 0, 9420, 9420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9420, 9420, 9420, 9420, 9420, 9420, 9420, 9420, 0, 0, 0, 0, 9420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9420, 9420, 9420, 9421, 9421, 0, 9421, 9421, 9421, 9421, 9421, 9421, 9421, 9421, 9421, 0, 9421, 9421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9421, 9421, 9421, 9421, 9421, 9421, 9421, 0, 0, 0, 0, 0, 9421, 9421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9421, 9421, 9421, 0, 0, 0, 0, 0, 0, 0, 9421, 9422, 9422, 0, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 0, 9422, 9422, 0, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 9422, 0, 0, 0, 0, 0, 9422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9422, 9422, 9422, 9423, 9423, 0, 9423, 9423, 9423, 9423, 9423, 9423, 9423, 9423, 9423, 0, 9423, 9423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9423, 9423, 9423, 9423, 9423, 9423, 9423, 0, 0, 0, 0, 0, 9423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9423, 9423, 9423, 9424, 9424, 0, 9424, 9424, 9424, 9424, 9424, 9424, 9424, 9424, 9424, 0, 9424, 9424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9424, 9424, 9424, 9424, 9424, 9424, 9424, 0, 0, 0, 0, 0, 9424, 9424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9424, 9424, 9424, 0, 0, 0, 0, 0, 0, 0, 9424, 9429, 9429, 0, 9429, 9429, 9429, 9429, 9429, 9429, 9429, 9429, 9429, 0, 9429, 9429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9429, 9429, 9429, 9429, 9429, 9429, 9429, 0, 0, 0, 0, 0, 9429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9429, 9429, 9429, 9430, 9430, 0, 9430, 9430, 9430, 9430, 9430, 9430, 9430, 9430, 9430, 0, 9430, 9430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9430, 9430, 9430, 9430, 9430, 9430, 9430, 9430, 0, 0, 0, 0, 9430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9430, 9430, 9430, 9434, 9434, 0, 9434, 9434, 9434, 9434, 9434, 9434, 9434, 9434, 9434, 0, 9434, 9434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9434, 9434, 9434, 9434, 9434, 9434, 9434, 0, 0, 0, 0, 0, 9434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9434, 9434, 9434, 9435, 9435, 0, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 0, 9435, 9435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 9435, 0, 0, 0, 0, 9435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9435, 9435, 9435, 9439, 9439, 0, 9439, 9439, 9439, 9439, 9439, 9439, 9439, 9439, 9439, 0, 9439, 9439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9439, 9439, 9439, 9439, 9439, 9439, 9439, 0, 0, 0, 0, 0, 9439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9439, 9439, 9439, 9440, 9440, 0, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 0, 9440, 9440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 9440, 0, 0, 0, 0, 9440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9440, 9440, 9440, 9443, 9443, 0, 9443, 9443, 9443, 9443, 9443, 9443, 9443, 9443, 9443, 0, 9443, 9443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9443, 9443, 9443, 9443, 9443, 9443, 9443, 0, 0, 0, 0, 0, 9443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9443, 9443, 9443, 9444, 9444, 0, 9444, 9444, 9444, 9444, 9444, 9444, 9444, 9444, 9444, 0, 9444, 9444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9444, 9444, 9444, 9444, 9444, 9444, 9444, 9444, 0, 0, 0, 0, 9444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9444, 9444, 9444, 9446, 9446, 0, 9446, 9446, 9446, 9446, 9446, 9446, 9446, 9446, 9446, 0, 9446, 9446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9446, 9446, 9446, 9446, 9446, 9446, 9446, 0, 0, 0, 0, 0, 9446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9446, 0, 0, 0, 0, 0, 0, 9446, 9446, 9446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9446, 9447, 9447, 0, 9447, 9447, 9447, 9447, 9447, 9447, 9447, 9447, 9447, 0, 9447, 9447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9447, 9447, 9447, 9447, 9447, 9447, 9447, 0, 0, 0, 0, 0, 9447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9447, 9447, 9447, 9448, 9448, 0, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 0, 9448, 9448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 9448, 0, 0, 0, 0, 9448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9448, 9448, 9448, 9449, 9449, 0, 9449, 9449, 9449, 9449, 9449, 9449, 9449, 9449, 9449, 0, 9449, 9449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9449, 9449, 9449, 9449, 9449, 9449, 9449, 0, 0, 0, 0, 0, 9449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9449, 9449, 9449, 9450, 9450, 0, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 0, 9450, 9450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 9450, 0, 0, 0, 0, 9450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9450, 9450, 9450, 9454, 9454, 0, 9454, 9454, 9454, 9454, 9454, 9454, 9454, 9454, 9454, 0, 9454, 9454, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9454, 9454, 9454, 9454, 9454, 9454, 9454, 0, 0, 0, 0, 0, 9454, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9454, 9454, 9454, 9455, 9455, 0, 9455, 9455, 9455, 9455, 9455, 9455, 9455, 9455, 9455, 0, 9455, 9455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9455, 9455, 9455, 9455, 9455, 9455, 9455, 9455, 0, 0, 0, 0, 9455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9455, 9455, 9455, 9458, 9458, 0, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 0, 9458, 9458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9458, 9458, 9458, 9458, 9458, 9458, 9458, 0, 0, 0, 0, 0, 9458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9458, 9458, 9458, 9459, 9459, 0, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 0, 9459, 9459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 9459, 0, 0, 0, 0, 9459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9459, 9459, 9459, 9461, 9461, 0, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 0, 9461, 9461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9461, 9461, 9461, 9461, 9461, 9461, 9461, 0, 0, 0, 0, 0, 9461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9461, 0, 0, 0, 0, 0, 0, 9461, 9461, 9461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9461, 9462, 9462, 0, 9462, 9462, 9462, 9462, 9462, 9462, 9462, 9462, 9462, 0, 9462, 9462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9462, 9462, 9462, 9462, 9462, 9462, 9462, 0, 0, 0, 0, 0, 9462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9462, 9462, 9462, 9463, 9463, 0, 9463, 9463, 9463, 9463, 9463, 9463, 9463, 9463, 9463, 0, 9463, 9463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9463, 9463, 9463, 9463, 9463, 9463, 9463, 9463, 0, 0, 0, 0, 9463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9463, 9463, 9463, 9486, 9486, 0, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 0, 9486, 9486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9486, 9486, 9486, 9486, 9486, 9486, 9486, 0, 0, 0, 0, 0, 9486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9486, 9486, 9486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9486, 9487, 9487, 0, 9487, 9487, 9487, 9487, 9487, 9487, 9487, 9487, 9487, 0, 9487, 9487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9487, 9487, 9487, 9487, 9487, 9487, 9487, 0, 0, 0, 0, 0, 9487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9487, 9487, 9487, 0, 0, 0, 0, 9487, 9499, 9499, 0, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 0, 9499, 9499, 9499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9499, 9499, 9499, 9499, 9499, 9499, 9499, 0, 0, 0, 0, 0, 9499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9499, 9499, 9499, 9499, 9500, 9500, 0, 9500, 9500, 9500, 9500, 9500, 9500, 9500, 0, 9500, 9500, 9500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9500, 9500, 9500, 9500, 9500, 9500, 9500, 9500, 0, 0, 0, 0, 9500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9500, 9500, 9500, 9500, 9505, 9505, 0, 9505, 9505, 9505, 9505, 9505, 9505, 9505, 9505, 9505, 0, 9505, 9505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9505, 9505, 9505, 9505, 9505, 9505, 9505, 0, 0, 0, 0, 0, 9505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9505, 9505, 9505, 9505, 9506, 9506, 0, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 0, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 9506, 0, 0, 0, 0, 0, 9506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9506, 9506, 9506, 9506, 9509, 9509, 9509, 9509, 9509, 9509, 9509, 9509, 9509, 9509, 0, 0, 0, 0, 0, 0, 9509, 9509, 9509, 9509, 9509, 9509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9509, 9509, 9509, 9509, 9509, 9509, 9512, 9512, 9512, 9512, 9512, 9512, 9512, 9512, 9512, 9512, 0, 0, 0, 0, 0, 0, 9512, 9512, 9512, 9512, 9512, 9512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9512, 9512, 9512, 9512, 9512, 9512, 9514, 9514, 9514, 9514, 9514, 9514, 9514, 9514, 9514, 0, 0, 0, 0, 0, 0, 9514, 9514, 9514, 9514, 9514, 9514, 9514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9514, 9514, 9514, 9514, 9514, 9514, 9518, 9518, 9518, 9518, 9518, 9518, 9518, 9518, 9518, 9518, 0, 0, 0, 0, 0, 0, 9518, 9518, 9518, 9518, 9518, 9518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9518, 9518, 9518, 9518, 9518, 9518, 9520, 9520, 9520, 9520, 9520, 9520, 9520, 9520, 9520, 0, 0, 0, 0, 0, 0, 0, 9520, 9520, 9520, 9520, 9520, 9520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9520, 9520, 9520, 9520, 9520, 9520, 9530, 9530, 9530, 9530, 9530, 9530, 9530, 9530, 9530, 9530, 0, 0, 0, 0, 0, 0, 9530, 9530, 9530, 9530, 9530, 9530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9530, 9530, 9530, 9530, 9530, 9530, 9532, 9532, 9532, 9532, 9532, 9532, 9532, 9532, 9532, 0, 0, 0, 0, 0, 0, 0, 9532, 9532, 9532, 9532, 9532, 9532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9532, 9532, 9532, 9532, 9532, 9532, 9540, 9540, 9540, 9540, 9540, 9540, 9540, 9540, 9540, 9540, 0, 0, 0, 0, 0, 0, 9540, 9540, 9540, 9540, 9540, 9540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9540, 9540, 9540, 9540, 9540, 9540, 9543, 9543, 9543, 9543, 9543, 9543, 9543, 9543, 9543, 9543, 0, 0, 0, 0, 0, 0, 9543, 9543, 9543, 9543, 9543, 9543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9543, 9543, 9543, 9543, 9543, 9543, 9551, 9551, 9551, 9551, 9551, 9551, 9551, 9551, 9551, 0, 0, 0, 0, 0, 0, 0, 9551, 9551, 9551, 9551, 9551, 9551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9551, 9551, 9551, 9551, 9551, 9551, 9552, 9552, 0, 9552, 9552, 9552, 9552, 9552, 9552, 9552, 9552, 9552, 0, 9552, 9552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9552, 9552, 9552, 9552, 9552, 9552, 9552, 0, 0, 0, 0, 0, 9552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9552, 9552, 9552, 9552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9552, 9568, 9568, 9568, 9568, 9568, 9568, 9568, 9568, 9568, 9568, 0, 0, 0, 0, 0, 0, 9568, 9568, 9568, 9568, 9568, 9568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9568, 9568, 9568, 9568, 9568, 9568, 9570, 9570, 9570, 9570, 9570, 9570, 9570, 9570, 9570, 9570, 0, 0, 0, 0, 0, 0, 9570, 9570, 9570, 9570, 9570, 9570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9570, 9570, 9570, 9570, 9570, 9570, 9573, 9573, 9573, 9573, 9573, 9573, 9573, 9573, 9573, 9573, 0, 0, 0, 0, 0, 0, 9573, 9573, 9573, 9573, 9573, 9573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9573, 0, 0, 0, 9573, 9573, 9573, 9573, 9573, 9573, 9578, 9578, 9578, 9578, 9578, 9578, 9578, 9578, 9578, 9578, 0, 0, 0, 0, 0, 0, 9578, 9578, 9578, 9578, 9578, 9578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9578, 9578, 9578, 9578, 9578, 9578, 9581, 9581, 9581, 9581, 9581, 9581, 9581, 9581, 9581, 9581, 0, 0, 0, 0, 0, 0, 9581, 9581, 9581, 9581, 9581, 9581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9581, 9581, 9581, 9581, 9581, 9581, 9588, 9588, 9588, 9588, 9588, 9588, 9588, 9588, 9588, 9588, 0, 0, 0, 0, 0, 0, 9588, 9588, 9588, 9588, 9588, 9588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9588, 9588, 9588, 9588, 9588, 9588, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 9591, 0, 0, 0, 0, 0, 0, 9591, 9591, 9591, 9591, 9591, 9591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9591, 9591, 9591, 9591, 9591, 9591, 9598, 9598, 9598, 9598, 9598, 9598, 9598, 9598, 9598, 0, 0, 0, 0, 0, 0, 0, 9598, 9598, 9598, 9598, 9598, 9598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9598, 9598, 9598, 9598, 9598, 9598, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 9599, 0, 0, 0, 0, 0, 0, 9599, 9599, 9599, 9599, 9599, 9599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9599, 9599, 9599, 9599, 9599, 9599, 9602, 9602, 9602, 9602, 9602, 9602, 9602, 9602, 9602, 9602, 0, 0, 0, 0, 0, 0, 9602, 9602, 9602, 9602, 9602, 9602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9602, 9602, 9602, 9602, 9602, 9602, 9609, 9609, 9609, 9609, 9609, 9609, 9609, 9609, 9609, 0, 0, 0, 0, 0, 0, 0, 9609, 9609, 9609, 9609, 9609, 9609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9609, 9609, 9609, 9609, 9609, 9609, 9610, 0, 9610, 9610, 9610, 9610, 9610, 9610, 9610, 9610, 9610, 9610, 0, 0, 0, 0, 0, 0, 9610, 9610, 9610, 9610, 9610, 9610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9610, 9610, 9610, 9610, 9610, 9610, 9617, 9617, 9617, 9617, 9617, 9617, 9617, 9617, 9617, 9617, 0, 0, 0, 0, 0, 0, 9617, 9617, 9617, 9617, 9617, 9617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9617, 9617, 9617, 9617, 9617, 9617, 9619, 9619, 9619, 9619, 9619, 9619, 9619, 9619, 9619, 0, 0, 0, 0, 0, 0, 0, 9619, 9619, 9619, 9619, 9619, 9619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9619, 9619, 9619, 9619, 9619, 9619, 9627, 9627, 9627, 9627, 9627, 9627, 9627, 9627, 9627, 9627, 0, 0, 0, 0, 0, 0, 9627, 9627, 9627, 9627, 9627, 9627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9627, 9627, 9627, 9627, 9627, 9627, 9635, 9635, 9635, 9635, 9635, 9635, 9635, 9635, 9635, 9635, 0, 0, 0, 0, 0, 0, 9635, 9635, 9635, 9635, 9635, 9635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9635, 9635, 9635, 9635, 9635, 9635, 9659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9659, 9659, 9659, 9659, 9659, 9659, 9659, 9659, 9659, 0, 9659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9659, 9703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9703, 0, 0, 0, 0, 0, 0, 9703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9703, 0, 9703, 0, 9703, 0, 0, 9703, 9703, 0, 0, 0, 9703, 0, 0, 9703, 0, 9703, 0, 9703, 0, 9703, 9703, 9703, 9704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9704, 0, 9704, 0, 0, 0, 0, 9704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9704, 0, 9704, 0, 9704, 0, 0, 9704, 9704, 0, 0, 0, 9704, 0, 0, 9704, 0, 9704, 0, 9704, 0, 9704, 9704, 9704, 9705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9705, 0, 0, 0, 0, 9705, 0, 0, 0, 0, 0, 0, 9705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9705, 0, 9705, 0, 9705, 0, 0, 9705, 9705, 0, 0, 0, 9705, 0, 0, 9705, 0, 9705, 0, 9705, 0, 9705, 9705, 9705, 9706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9706, 0, 0, 0, 0, 0, 0, 9706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9706, 0, 9706, 0, 9706, 0, 0, 9706, 9706, 0, 0, 0, 9706, 0, 0, 9706, 0, 9706, 0, 9706, 0, 9706, 9706, 9706, 9706, 9707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9707, 0, 0, 0, 0, 0, 0, 9707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9707, 0, 9707, 9707, 9707, 0, 0, 9707, 9707, 0, 0, 0, 9707, 0, 0, 9707, 0, 9707, 0, 9707, 0, 9707, 9707, 9707, 9708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9708, 0, 0, 0, 0, 0, 0, 9708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9708, 0, 9708, 0, 9708, 0, 9708, 9708, 9708, 0, 0, 0, 9708, 0, 0, 9708, 0, 9708, 0, 9708, 0, 9708, 9708, 9708, 9709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9709, 0, 0, 0, 0, 0, 0, 9709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9709, 0, 9709, 0, 9709, 0, 0, 9709, 9709, 0, 0, 0, 9709, 0, 0, 9709, 0, 9709, 0, 9709, 0, 9709, 9709, 9709, 9710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9710, 0, 0, 0, 0, 0, 0, 9710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9710, 0, 9710, 0, 9710, 0, 0, 9710, 9710, 0, 0, 0, 9710, 0, 9710, 9710, 0, 9710, 0, 9710, 0, 9710, 9710, 9710, 9711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9711, 0, 0, 0, 0, 0, 0, 9711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9711, 0, 9711, 0, 9711, 0, 0, 9711, 9711, 0, 0, 0, 9711, 9711, 0, 9711, 0, 9711, 0, 9711, 0, 9711, 9711, 9711, 9712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9712, 0, 0, 0, 0, 0, 0, 9712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9712, 0, 9712, 0, 9712, 0, 0, 9712, 9712, 0, 0, 0, 9712, 0, 0, 9712, 0, 9712, 0, 9712, 0, 9712, 9712, 9712, 9712, 9713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9713, 0, 0, 0, 0, 0, 0, 9713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9713, 0, 9713, 0, 9713, 0, 0, 9713, 9713, 0, 0, 0, 9713, 0, 0, 9713, 0, 9713, 0, 9713, 0, 9713, 9713, 9713, 9714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9714, 0, 0, 0, 0, 0, 0, 9714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9714, 0, 9714, 0, 9714, 0, 0, 9714, 9714, 0, 0, 0, 9714, 0, 9714, 9714, 0, 9714, 0, 9714, 0, 9714, 9714, 9714, 9715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9715, 0, 0, 0, 0, 0, 0, 9715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9715, 0, 9715, 0, 9715, 0, 0, 9715, 9715, 0, 0, 0, 9715, 0, 0, 9715, 0, 9715, 0, 9715, 0, 9715, 9715, 9715, 9715, 9716, 0, 0, 0, 0, 0, 0, 0, 9716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9716, 0, 0, 0, 0, 0, 0, 9716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9716, 0, 9716, 0, 9716, 0, 0, 9716, 9716, 0, 0, 0, 9716, 0, 0, 9716, 0, 9716, 0, 9716, 0, 9716, 9716, 9716, 9717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9717, 0, 0, 0, 0, 0, 0, 9717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9717, 0, 9717, 0, 9717, 0, 0, 9717, 9717, 0, 0, 0, 9717, 0, 0, 9717, 0, 9717, 0, 9717, 0, 9717, 9717, 9717, 9718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9718, 0, 0, 0, 0, 0, 0, 9718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9718, 0, 9718, 0, 9718, 0, 0, 9718, 9718, 0, 0, 0, 9718, 0, 0, 9718, 0, 9718, 0, 9718, 0, 9718, 9718, 9718, 9719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9719, 0, 0, 0, 0, 0, 0, 9719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9719, 0, 9719, 0, 9719, 0, 0, 9719, 9719, 0, 0, 9719, 9719, 0, 0, 9719, 0, 9719, 0, 9719, 0, 9719, 9719, 9719, 9720, 0, 9720, 0, 0, 0, 0, 0, 0, 9720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9720, 0, 0, 0, 0, 0, 0, 9720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9720, 0, 9720, 0, 9720, 0, 0, 9720, 9720, 0, 0, 0, 9720, 0, 9720, 9720, 0, 9720, 0, 9720, 0, 9720, 9720, 9720, 9720, 9721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9721, 0, 0, 0, 0, 0, 0, 9721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9721, 0, 9721, 0, 9721, 0, 0, 9721, 9721, 0, 0, 0, 9721, 0, 9721, 9721, 0, 9721, 0, 9721, 0, 9721, 9721, 9721, 9725, 0, 9725, 0, 0, 0, 0, 0, 0, 9725, 0, 0, 0, 9725, 9725, 9725, 9725, 9725, 9725, 9725, 9725, 9725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9725, 0, 0, 0, 0, 0, 0, 9725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9725, 0, 9725, 0, 9725, 0, 0, 9725, 9725, 0, 0, 0, 9725, 0, 0, 9725, 0, 9725, 0, 9725, 0, 9725, 9725, 9725, 9730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9730, 0, 0, 0, 0, 0, 0, 9730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9730, 0, 9730, 0, 9730, 0, 0, 9730, 9730, 0, 0, 0, 9730, 0, 0, 9730, 0, 9730, 0, 9730, 0, 9730, 9730, 9730, 9731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9731, 0, 0, 0, 0, 0, 0, 9731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9731, 0, 9731, 0, 9731, 0, 0, 9731, 9731, 0, 0, 0, 9731, 9731, 0, 9731, 0, 9731, 0, 9731, 0, 9731, 9731, 9731, 9732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9732, 0, 0, 0, 0, 0, 0, 9732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9732, 0, 9732, 0, 9732, 0, 0, 9732, 9732, 0, 0, 0, 9732, 9732, 0, 9732, 0, 9732, 0, 9732, 0, 9732, 9732, 9732, 9733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9733, 0, 0, 0, 0, 0, 0, 9733, 0, 0, 0, 0, 0, 9733, 0, 0, 0, 0, 0, 0, 0, 0, 9733, 0, 9733, 0, 9733, 0, 0, 9733, 9733, 0, 0, 0, 9733, 0, 0, 9733, 0, 9733, 0, 9733, 0, 9733, 9733, 9733, 9734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9734, 0, 0, 0, 0, 0, 0, 9734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9734, 0, 9734, 0, 9734, 0, 0, 9734, 9734, 0, 0, 0, 9734, 0, 9734, 9734, 0, 9734, 0, 9734, 0, 9734, 9734, 9734, 9749, 0, 9749, 0, 0, 0, 0, 0, 0, 9749, 0, 0, 9749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9749, 0, 0, 0, 0, 0, 0, 9749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9749, 0, 9749, 9749, 9749, 0, 0, 9749, 9749, 0, 0, 0, 9749, 0, 0, 9749, 0, 9749, 0, 9749, 0, 9749, 9749, 9749, 9756, 0, 9756, 0, 0, 0, 0, 0, 0, 9756, 0, 0, 9756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9756, 0, 0, 0, 0, 0, 0, 9756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9756, 0, 9756, 9756, 9756, 0, 0, 9756, 9756, 0, 0, 0, 9756, 0, 0, 9756, 0, 9756, 0, 9756, 0, 9756, 9756, 9756, 9759, 0, 9759, 0, 0, 0, 0, 0, 0, 9759, 0, 0, 9759, 0, 0, 0, 0, 9759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9759, 0, 9759, 0, 0, 0, 0, 9759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9759, 0, 9759, 0, 9759, 0, 0, 9759, 9759, 0, 0, 0, 9759, 0, 0, 9759, 0, 9759, 0, 9759, 0, 9759, 9759, 9759, 9763, 0, 9763, 0, 0, 0, 0, 0, 0, 9763, 0, 9763, 9763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9763, 0, 0, 0, 0, 0, 0, 9763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9763, 0, 9763, 9763, 9763, 0, 0, 9763, 9763, 0, 0, 0, 9763, 0, 0, 9763, 0, 9763, 0, 9763, 0, 9763, 9763, 9763, 9781, 9781, 0, 9781, 9781, 9781, 9781, 9781, 0, 0, 9781, 9781, 9781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9781, 9781, 9781, 9781, 9781, 9781, 0, 0, 0, 0, 0, 9781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9781, 9781, 9781, 9781, 9791, 9791, 0, 9791, 9791, 9791, 9791, 9791, 9791, 9791, 9791, 9791, 0, 9791, 9791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9791, 9791, 9791, 9791, 9791, 9791, 9791, 0, 0, 0, 0, 0, 9791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9791, 9791, 9791, 9792, 9792, 0, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 0, 9792, 9792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 9792, 0, 0, 0, 0, 9792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9792, 9792, 9792, 9796, 9796, 0, 9796, 9796, 9796, 9796, 9796, 9796, 9796, 9796, 9796, 0, 9796, 9796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9796, 9796, 9796, 9796, 9796, 9796, 9796, 0, 0, 0, 0, 0, 9796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9796, 9796, 9796, 9797, 9797, 0, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 0, 9797, 9797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 9797, 0, 0, 0, 0, 9797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9797, 9797, 9797, 9811, 9811, 0, 9811, 9811, 9811, 9811, 9811, 9811, 9811, 9811, 9811, 0, 9811, 9811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9811, 9811, 9811, 9811, 9811, 9811, 9811, 0, 0, 0, 0, 0, 9811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9811, 9811, 9811, 9812, 9812, 0, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 0, 9812, 9812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 9812, 0, 0, 0, 0, 9812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9812, 9812, 9812, 9826, 9826, 0, 9826, 9826, 9826, 9826, 9826, 9826, 9826, 9826, 9826, 0, 9826, 9826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9826, 9826, 9826, 9826, 9826, 9826, 9826, 0, 0, 0, 0, 0, 9826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9826, 9826, 9826, 9827, 9827, 0, 9827, 9827, 9827, 9827, 9827, 9827, 9827, 9827, 9827, 0, 9827, 9827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9827, 9827, 9827, 9827, 9827, 9827, 9827, 9827, 0, 0, 0, 0, 9827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9827, 9827, 9827, 9847, 9847, 0, 9847, 9847, 9847, 9847, 9847, 9847, 9847, 9847, 9847, 9847, 9847, 9847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9847, 9847, 9847, 9847, 9847, 9847, 9847, 0, 0, 0, 0, 0, 9847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9847, 9847, 9847, 9847, 9849, 9849, 0, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9849, 9850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9850, 9854, 9854, 0, 9854, 9854, 9854, 9854, 9854, 9854, 9854, 9854, 9854, 0, 9854, 9854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9854, 9854, 9854, 9854, 9854, 9854, 9854, 0, 0, 0, 0, 0, 9854, 0, 0, 0, 0, 0, 9854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9854, 9854, 9854, 9854, 9855, 9855, 0, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 0, 9855, 9855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9855, 9855, 9855, 9855, 9855, 9855, 9855, 0, 0, 0, 0, 0, 9855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9855, 9855, 9855, 9855, 9856, 9856, 0, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9856, 9857, 9857, 0, 9857, 9857, 9857, 9857, 9857, 9857, 9857, 9857, 9857, 0, 9857, 9857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9857, 9857, 9857, 9857, 9857, 9857, 9857, 9857, 0, 0, 0, 0, 9857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9857, 9857, 9857, 9857, 9858, 9858, 0, 9858, 9858, 9858, 9858, 9858, 9858, 9858, 9858, 9858, 0, 9858, 9858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9858, 9858, 9858, 9858, 9858, 9858, 9858, 0, 0, 0, 0, 0, 9858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9858, 9858, 9858, 9859, 9859, 9859, 9859, 9859, 9859, 9859, 9859, 9859, 9859, 0, 0, 0, 0, 0, 0, 9859, 9859, 9859, 9859, 9859, 9859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9859, 9859, 9859, 9859, 9859, 9859, 9863, 9863, 0, 9863, 9863, 9863, 9863, 9863, 9863, 9863, 9863, 9863, 0, 9863, 9863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9863, 9863, 9863, 9863, 9863, 9863, 9863, 9863, 0, 0, 0, 0, 9863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9863, 9863, 9863, 9868, 9868, 0, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 0, 9868, 9868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9868, 9868, 9868, 9868, 9868, 9868, 9868, 0, 0, 0, 0, 0, 9868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9868, 9868, 9868, 9868, 9869, 9869, 0, 9869, 9869, 9869, 9869, 9869, 9869, 9869, 9869, 9869, 0, 9869, 9869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9869, 9869, 9869, 9869, 9869, 9869, 9869, 9869, 0, 0, 0, 0, 9869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9869, 9869, 9869, 9869, 9870, 9870, 0, 9870, 9870, 9870, 9870, 9870, 9870, 9870, 9870, 9870, 0, 9870, 9870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9870, 9870, 9870, 9870, 9870, 9870, 9870, 0, 0, 0, 0, 0, 9870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9870, 9870, 9870, 9872, 9872, 0, 9872, 9872, 9872, 9872, 9872, 9872, 9872, 9872, 9872, 0, 9872, 9872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9872, 9872, 9872, 9872, 9872, 9872, 9872, 0, 0, 0, 0, 0, 9872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9872, 9872, 9872, 9872, 9873, 9873, 0, 9873, 9873, 9873, 9873, 9873, 9873, 9873, 9873, 9873, 0, 9873, 9873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9873, 9873, 9873, 9873, 9873, 9873, 9873, 9873, 0, 0, 0, 0, 9873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9873, 9873, 9873, 9873, 9874, 9874, 0, 9874, 9874, 9874, 9874, 9874, 9874, 9874, 9874, 9874, 0, 9874, 9874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9874, 9874, 9874, 9874, 9874, 9874, 9874, 0, 0, 0, 0, 0, 9874, 9874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9874, 9874, 9874, 9874, 0, 0, 0, 0, 0, 0, 9874, 9875, 9875, 0, 9875, 9875, 9875, 9875, 9875, 9875, 9875, 9875, 9875, 0, 9875, 9875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9875, 9875, 9875, 9875, 9875, 9875, 9875, 0, 0, 0, 0, 0, 9875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9875, 9875, 9875, 9876, 9876, 0, 9876, 9876, 9876, 9876, 9876, 9876, 9876, 9876, 9876, 0, 9876, 9876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9876, 9876, 9876, 9876, 9876, 9876, 9876, 0, 0, 0, 0, 0, 9876, 9876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9876, 9876, 9876, 9876, 0, 0, 0, 0, 0, 0, 9876, 9877, 9877, 0, 9877, 9877, 9877, 9877, 9877, 9877, 9877, 9877, 9877, 0, 9877, 9877, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9877, 9877, 9877, 9877, 9877, 9877, 9877, 9877, 0, 0, 0, 0, 9877, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9877, 9877, 9877, 9882, 9882, 0, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9882, 9883, 9883, 0, 9883, 9883, 9883, 9883, 9883, 9883, 9883, 9883, 9883, 0, 9883, 9883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9883, 9883, 9883, 9883, 9883, 9883, 9883, 0, 0, 0, 0, 0, 9883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9883, 0, 0, 0, 0, 0, 9883, 9883, 9883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9883, 9884, 9884, 0, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 0, 9884, 9884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9884, 9884, 9884, 9884, 9884, 9884, 9884, 0, 0, 0, 0, 0, 9884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9884, 9884, 9884, 9884, 9885, 9885, 0, 9885, 9885, 9885, 9885, 9885, 9885, 9885, 9885, 9885, 0, 9885, 9885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9885, 9885, 9885, 9885, 9885, 9885, 9885, 9885, 0, 0, 0, 0, 9885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9885, 9885, 9885, 9885, 9886, 9886, 0, 9886, 9886, 9886, 9886, 9886, 9886, 9886, 9886, 9886, 0, 9886, 9886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9886, 9886, 9886, 9886, 9886, 9886, 9886, 0, 0, 0, 0, 0, 9886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9886, 9886, 9886, 9887, 9887, 9887, 9887, 9887, 9887, 9887, 9887, 9887, 9887, 0, 0, 0, 0, 0, 0, 9887, 9887, 9887, 9887, 9887, 9887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9887, 9887, 9887, 9887, 9887, 9887, 9891, 9891, 0, 9891, 9891, 9891, 9891, 9891, 9891, 9891, 9891, 9891, 0, 9891, 9891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9891, 9891, 9891, 9891, 9891, 9891, 9891, 9891, 0, 0, 0, 0, 9891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9891, 9891, 9891, 9895, 9895, 0, 9895, 9895, 9895, 9895, 9895, 9895, 9895, 9895, 9895, 0, 9895, 9895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9895, 9895, 9895, 9895, 9895, 9895, 9895, 0, 0, 0, 0, 0, 9895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9895, 9895, 9895, 9895, 9896, 9896, 0, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 0, 9896, 9896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 9896, 0, 0, 0, 0, 9896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9896, 9896, 9896, 9896, 9897, 9897, 0, 9897, 9897, 9897, 9897, 9897, 9897, 9897, 9897, 9897, 0, 9897, 9897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9897, 9897, 9897, 9897, 9897, 9897, 9897, 0, 0, 0, 0, 0, 9897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9897, 9897, 9897, 9899, 9899, 0, 9899, 9899, 9899, 9899, 9899, 9899, 9899, 9899, 9899, 0, 9899, 9899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9899, 9899, 9899, 9899, 9899, 9899, 9899, 0, 0, 0, 0, 0, 9899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9899, 9899, 9899, 9899, 9900, 9900, 0, 9900, 9900, 9900, 9900, 9900, 9900, 9900, 9900, 9900, 0, 9900, 9900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9900, 9900, 9900, 9900, 9900, 9900, 9900, 9900, 0, 0, 0, 0, 9900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9900, 9900, 9900, 9900, 9901, 9901, 0, 9901, 9901, 9901, 9901, 9901, 9901, 9901, 9901, 9901, 0, 9901, 9901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9901, 9901, 9901, 9901, 9901, 9901, 9901, 0, 0, 0, 0, 0, 9901, 9901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9901, 9901, 9901, 9901, 0, 0, 0, 0, 0, 0, 9901, 9902, 9902, 0, 9902, 9902, 9902, 9902, 9902, 9902, 9902, 9902, 9902, 0, 9902, 9902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9902, 9902, 9902, 9902, 9902, 9902, 9902, 0, 0, 0, 0, 0, 9902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9902, 9902, 9902, 9903, 9903, 0, 9903, 9903, 9903, 9903, 9903, 9903, 9903, 9903, 9903, 0, 9903, 9903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9903, 9903, 9903, 9903, 9903, 9903, 9903, 0, 0, 0, 0, 0, 9903, 9903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9903, 9903, 9903, 9903, 0, 0, 0, 0, 0, 0, 9903, 9904, 9904, 0, 9904, 9904, 9904, 9904, 9904, 9904, 9904, 9904, 9904, 0, 9904, 9904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9904, 9904, 9904, 9904, 9904, 9904, 9904, 9904, 0, 0, 0, 0, 9904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9904, 9904, 9904, 9906, 9906, 0, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9906, 9907, 9907, 0, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9907, 9910, 9910, 0, 9910, 9910, 9910, 9910, 9910, 0, 0, 9910, 9910, 9910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9910, 9910, 9910, 9910, 9910, 9910, 9910, 0, 0, 0, 0, 9910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9910, 9910, 9910, 9910, 9910, 9911, 9911, 0, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9911, 9917, 9917, 9917, 9917, 9917, 9917, 9917, 9917, 9917, 0, 0, 0, 0, 0, 0, 0, 9917, 9917, 9917, 9917, 9917, 9917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9917, 9917, 9917, 9917, 9917, 9917, 9920, 9920, 0, 9920, 9920, 9920, 9920, 9920, 9920, 9920, 9920, 9920, 0, 9920, 9920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9920, 9920, 9920, 9920, 9920, 9920, 9920, 0, 0, 0, 0, 0, 9920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9920, 9920, 9920, 9920, 9921, 9921, 0, 9921, 9921, 9921, 9921, 9921, 9921, 9921, 9921, 9921, 0, 9921, 9921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9921, 9921, 9921, 9921, 9921, 9921, 9921, 9921, 0, 0, 0, 0, 9921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9921, 9921, 9921, 9921, 9923, 9923, 0, 9923, 9923, 9923, 9923, 9923, 9923, 9923, 9923, 9923, 0, 9923, 9923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9923, 9923, 9923, 9923, 9923, 9923, 9923, 9923, 0, 0, 0, 0, 9923, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9923, 9923, 9923, 9923, 9924, 9924, 0, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9924, 9926, 9926, 0, 9926, 9926, 9926, 9926, 9926, 9926, 9926, 9926, 9926, 0, 9926, 9926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9926, 9926, 9926, 9926, 9926, 9926, 9926, 0, 0, 0, 0, 0, 9926, 0, 0, 9926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9926, 9926, 9926, 9927, 9927, 0, 9927, 9927, 9927, 9927, 9927, 9927, 9927, 9927, 9927, 0, 9927, 9927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9927, 9927, 9927, 9927, 9927, 9927, 9927, 0, 0, 0, 0, 0, 9927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9927, 9927, 9927, 9928, 9928, 0, 9928, 9928, 9928, 9928, 9928, 9928, 9928, 9928, 9928, 0, 9928, 9928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9928, 9928, 9928, 9928, 9928, 9928, 9928, 9928, 0, 0, 0, 0, 9928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9928, 9928, 9928, 9929, 9929, 0, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 0, 9929, 9929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9929, 9929, 9929, 9929, 9929, 9929, 9929, 0, 0, 0, 0, 0, 9929, 0, 9929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9929, 9929, 9929, 0, 0, 0, 0, 0, 0, 0, 0, 9929, 9930, 9930, 0, 9930, 9930, 9930, 9930, 9930, 9930, 9930, 9930, 9930, 0, 9930, 9930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9930, 9930, 9930, 9930, 9930, 9930, 9930, 0, 0, 0, 0, 0, 9930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9930, 9930, 9930, 9930, 9931, 9931, 0, 9931, 9931, 9931, 9931, 9931, 9931, 9931, 9931, 9931, 0, 9931, 9931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9931, 9931, 9931, 9931, 9931, 9931, 9931, 9931, 0, 0, 0, 0, 9931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9931, 9931, 9931, 9931, 9932, 9932, 0, 9932, 9932, 9932, 9932, 9932, 9932, 9932, 9932, 9932, 0, 9932, 9932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9932, 9932, 9932, 9932, 9932, 9932, 9932, 0, 0, 0, 0, 0, 9932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9932, 9932, 9932, 9934, 9934, 0, 9934, 9934, 9934, 9934, 9934, 9934, 9934, 9934, 9934, 0, 9934, 9934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9934, 9934, 9934, 9934, 9934, 9934, 9934, 9934, 0, 0, 0, 0, 9934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9934, 9934, 9934, 9936, 9936, 0, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 0, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 9936, 0, 0, 0, 0, 0, 9936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9936, 9936, 9936, 9936, 9944, 9944, 9944, 9944, 9944, 9944, 9944, 9944, 9944, 9944, 0, 0, 0, 0, 0, 0, 9944, 9944, 9944, 9944, 9944, 9944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9944, 9944, 9944, 9944, 9944, 9944, 9946, 9946, 9946, 9946, 9946, 9946, 9946, 9946, 9946, 9946, 0, 0, 0, 0, 0, 0, 9946, 9946, 9946, 9946, 9946, 9946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9946, 9946, 9946, 9946, 9946, 9946, 9949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9949, 9949, 9949, 9949, 9949, 9949, 9949, 9949, 9949, 9949, 0, 0, 0, 0, 0, 0, 9949, 9949, 9949, 9949, 9949, 9949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9949, 9949, 9949, 9949, 9949, 9949, 9957, 9957, 9957, 9957, 9957, 9957, 9957, 9957, 9957, 9957, 0, 0, 0, 0, 0, 0, 9957, 9957, 9957, 9957, 9957, 9957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9957, 9957, 9957, 9957, 9957, 9957, 9959, 9959, 9959, 9959, 9959, 9959, 9959, 9959, 9959, 0, 0, 0, 0, 0, 0, 0, 9959, 9959, 9959, 9959, 9959, 9959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9959, 9959, 9959, 9959, 9959, 9959, 9966, 9966, 0, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 0, 9966, 9966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9966, 9966, 9966, 9966, 9966, 9966, 9966, 0, 0, 0, 0, 0, 9966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9966, 9966, 9966, 9966, 9967, 9967, 0, 9967, 9967, 9967, 9967, 9967, 9967, 9967, 9967, 9967, 0, 9967, 9967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9967, 9967, 9967, 9967, 9967, 9967, 9967, 9967, 0, 0, 0, 0, 9967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9967, 9967, 9967, 9967, 9968, 9968, 0, 9968, 9968, 9968, 9968, 9968, 9968, 9968, 9968, 9968, 0, 9968, 9968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9968, 9968, 9968, 9968, 9968, 9968, 9968, 0, 0, 0, 0, 0, 9968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9968, 9968, 9968, 9970, 9970, 0, 9970, 9970, 9970, 9970, 9970, 9970, 9970, 9970, 9970, 0, 9970, 9970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9970, 9970, 9970, 9970, 9970, 9970, 9970, 9970, 0, 0, 0, 0, 9970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9970, 9970, 9970, 9972, 9972, 0, 9972, 9972, 9972, 9972, 9972, 9972, 9972, 9972, 9972, 0, 9972, 9972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9972, 9972, 9972, 9972, 9972, 9972, 9972, 0, 0, 0, 0, 0, 9972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9972, 9972, 9972, 9972, 9973, 9973, 0, 9973, 9973, 9973, 9973, 9973, 9973, 9973, 9973, 9973, 0, 9973, 9973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9973, 9973, 9973, 9973, 9973, 9973, 9973, 9973, 0, 0, 0, 0, 9973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9973, 9973, 9973, 9973, 9974, 9974, 0, 9974, 9974, 9974, 9974, 9974, 9974, 9974, 9974, 9974, 0, 9974, 9974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9974, 9974, 9974, 9974, 9974, 9974, 9974, 0, 0, 0, 0, 0, 9974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9974, 9974, 9974, 9976, 9976, 0, 9976, 9976, 9976, 9976, 9976, 9976, 9976, 9976, 9976, 0, 9976, 9976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9976, 9976, 9976, 9976, 9976, 9976, 9976, 0, 0, 0, 0, 0, 9976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9976, 9976, 9976, 9976, 9977, 9977, 0, 9977, 9977, 9977, 9977, 9977, 9977, 9977, 9977, 9977, 0, 9977, 9977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9977, 9977, 9977, 9977, 9977, 9977, 9977, 9977, 0, 0, 0, 0, 9977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9977, 9977, 9977, 9977, 9978, 9978, 0, 9978, 9978, 9978, 9978, 9978, 9978, 9978, 9978, 9978, 0, 9978, 9978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9978, 9978, 9978, 9978, 9978, 9978, 9978, 0, 0, 0, 0, 0, 9978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9978, 0, 0, 0, 9978, 9978, 9978, 9978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9978, 9979, 9979, 0, 9979, 9979, 9979, 9979, 9979, 9979, 9979, 9979, 9979, 0, 9979, 9979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9979, 9979, 9979, 9979, 9979, 9979, 9979, 0, 0, 0, 0, 0, 9979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9979, 9979, 9979, 9980, 9980, 0, 9980, 9980, 9980, 9980, 9980, 9980, 9980, 9980, 9980, 0, 9980, 9980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9980, 9980, 9980, 9980, 9980, 9980, 9980, 9980, 0, 0, 0, 0, 9980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9980, 9980, 9980, 9981, 9981, 0, 9981, 9981, 9981, 9981, 9981, 9981, 9981, 9981, 9981, 0, 9981, 9981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9981, 9981, 9981, 9981, 9981, 9981, 9981, 0, 0, 0, 0, 0, 9981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9981, 9981, 9981, 9981, 9982, 9982, 0, 9982, 9982, 9982, 9982, 9982, 9982, 9982, 9982, 9982, 0, 9982, 9982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9982, 9982, 9982, 9982, 9982, 9982, 9982, 9982, 0, 0, 0, 0, 9982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9982, 9982, 9982, 9982, 9983, 9983, 0, 9983, 9983, 9983, 9983, 9983, 9983, 9983, 9983, 9983, 0, 9983, 9983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9983, 9983, 9983, 9983, 9983, 9983, 9983, 0, 0, 0, 0, 0, 9983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9983, 0, 0, 0, 9983, 9983, 9983, 9983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9983, 9984, 9984, 0, 9984, 9984, 9984, 9984, 9984, 9984, 9984, 9984, 9984, 0, 9984, 9984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9984, 9984, 9984, 9984, 9984, 9984, 9984, 0, 0, 0, 0, 0, 9984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9984, 9984, 9984, 9987, 9987, 0, 9987, 9987, 9987, 9987, 9987, 9987, 9987, 9987, 9987, 0, 9987, 9987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9987, 9987, 9987, 9987, 9987, 9987, 9987, 0, 0, 0, 0, 0, 9987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9987, 9987, 9987, 9987, 9988, 9988, 0, 9988, 9988, 9988, 9988, 9988, 9988, 9988, 9988, 9988, 0, 9988, 9988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9988, 9988, 9988, 9988, 9988, 9988, 9988, 9988, 0, 0, 0, 0, 9988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9988, 9988, 9988, 9988, 9989, 9989, 0, 9989, 9989, 9989, 9989, 9989, 9989, 9989, 9989, 9989, 0, 9989, 9989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9989, 9989, 9989, 9989, 9989, 9989, 9989, 0, 0, 0, 0, 0, 9989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9989, 9989, 9989, 9991, 9991, 0, 9991, 9991, 9991, 9991, 9991, 9991, 9991, 9991, 9991, 0, 9991, 9991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9991, 9991, 9991, 9991, 9991, 9991, 9991, 9991, 0, 0, 0, 0, 9991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9991, 9991, 9991, 9992, 9992, 0, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 0, 9992, 9992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9992, 9992, 9992, 9992, 9992, 9992, 9992, 0, 0, 0, 0, 0, 9992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9992, 9992, 9992, 9993, 9993, 0, 9993, 9993, 9993, 9993, 9993, 9993, 9993, 9993, 9993, 0, 9993, 9993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9993, 9993, 9993, 9993, 9993, 9993, 9993, 9993, 0, 0, 0, 0, 9993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9993, 9993, 9993, 9995, 9995, 0, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 0, 9995, 9995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9995, 9995, 9995, 9995, 9995, 9995, 9995, 0, 0, 0, 0, 0, 9995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9995, 9995, 9995, 9996, 9996, 0, 9996, 9996, 9996, 9996, 9996, 9996, 9996, 9996, 9996, 0, 9996, 9996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9996, 9996, 9996, 9996, 9996, 9996, 9996, 9996, 0, 0, 0, 0, 9996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9996, 9996, 9996, 9997, 9997, 0, 9997, 9997, 9997, 9997, 9997, 9997, 9997, 9997, 9997, 0, 9997, 9997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9997, 9997, 9997, 9997, 9997, 9997, 9997, 0, 0, 0, 0, 0, 9997, 0, 9997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9997, 9997, 9997, 0, 0, 0, 0, 0, 0, 0, 0, 9997,10002,10002, 0,10002, 10002,10002,10002,10002,10002,10002,10002,10002, 0,10002, 10002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10002,10002,10002,10002,10002,10002,10002, 0, 0, 0, 0, 0,10002, 0, 0,10002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10002,10002,10002,10002,10003,10003, 0,10003,10003,10003, 10003,10003,10003,10003,10003,10003,10003,10003,10003,10003, 10003,10003,10003,10003,10003,10003,10003,10003,10003,10003, 10003,10003,10003,10003,10003,10003,10003,10003,10003,10003, 10003,10003,10003,10003,10003,10003,10003,10003,10003,10003, 10003,10003,10003,10003,10003,10003,10003,10003,10003,10003, 10003,10003,10003,10003,10003,10003,10003,10003,10003,10003, 10003,10003,10003,10003,10003,10003,10003,10003,10003,10003, 10003,10003,10003,10003,10003,10003,10003,10006,10006, 0, 10006,10006,10006,10006,10006,10006,10006,10006,10006, 0, 10006,10006, 0, 0, 0, 0, 0, 0, 0, 0, 0,10006,10006,10006,10006,10006,10006,10006, 0, 0, 0, 0, 0,10006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10006,10006,10006,10007,10007, 0,10007,10007,10007, 10007,10007,10007,10007,10007,10007, 0,10007,10007, 0, 0, 0, 0, 0, 0, 0, 0, 0,10007,10007, 10007,10007,10007,10007,10007, 0, 0, 0, 0, 0, 10007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10007, 0, 0, 0, 0, 0,10007,10007, 10007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10007,10008,10008, 0,10008,10008,10008,10008,10008,10008, 10008,10008,10008, 0,10008,10008, 0, 0, 0, 0, 0, 0, 0, 0, 0,10008,10008,10008,10008,10008, 10008,10008,10008, 0, 0, 0, 0,10008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10008,10008,10008,10011,10011, 0,10011,10011,10011,10011,10011,10011,10011,10011,10011, 0,10011,10011, 0, 0, 0, 0, 0, 0, 0, 0, 0,10011,10011,10011,10011,10011,10011,10011, 0, 0, 0, 0, 0,10011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10011,10011,10011,10012,10012, 0,10012,10012, 10012,10012,10012,10012,10012,10012,10012,10012,10012,10012, 0, 0, 0, 0, 0, 0, 0, 0, 0,10012, 10012,10012,10012,10012,10012,10012, 0, 0, 0, 0, 0,10012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10012, 10012,10012,10012,10013,10013, 0,10013,10013,10013,10013, 10013,10013,10013,10013,10013, 0,10013,10013, 0, 0, 0, 0, 0, 0, 0, 0, 0,10013,10013,10013, 10013,10013,10013,10013,10013, 0, 0, 0, 0,10013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10013,10013,10013, 10016,10016, 0,10016,10016,10016,10016,10016,10016,10016, 10016,10016, 0,10016,10016, 0, 0, 0, 0, 0, 0, 0, 0, 0,10016,10016,10016,10016,10016,10016, 10016, 0, 0, 0, 0, 0,10016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10016,10016,10016,10017,10017, 0, 10017,10017,10017,10017,10017,10017,10017,10017,10017, 0, 10017,10017, 0, 0, 0, 0, 0, 0, 0, 0, 0,10017,10017,10017,10017,10017,10017,10017,10017, 0, 0, 0, 0,10017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10017,10017,10017,10019,10019, 0,10019,10019,10019, 10019,10019,10019,10019,10019,10019, 0,10019,10019, 0, 0, 0, 0, 0, 0, 0, 0, 0,10019,10019, 10019,10019,10019,10019,10019, 0, 0, 0, 0, 0, 10019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10019,10019, 10019,10020,10020, 0,10020,10020,10020,10020,10020,10020, 10020,10020,10020, 0,10020,10020, 0, 0, 0, 0, 0, 0, 0, 0, 0,10020,10020,10020,10020,10020, 10020,10020,10020, 0, 0, 0, 0,10020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10020,10020,10020,10021,10021, 0,10021,10021,10021,10021,10021,10021,10021,10021,10021, 0,10021,10021, 0, 0, 0, 0, 0, 0, 0, 0, 0,10021,10021,10021,10021,10021,10021,10021, 0, 0, 0, 0, 0,10021,10021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10021,10021,10021, 0, 0, 0, 0, 0, 0, 0,10021,10022,10022, 0,10022,10022,10022,10022, 10022,10022,10022,10022,10022, 0,10022,10022, 0,10022, 10022,10022,10022,10022,10022,10022,10022,10022,10022,10022, 10022,10022,10022,10022, 0, 0, 0, 0, 0,10022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10022,10022,10022, 10023,10023, 0,10023,10023,10023,10023,10023,10023,10023, 10023,10023, 0,10023,10023, 0, 0, 0, 0, 0, 0, 0, 0, 0,10023,10023,10023,10023,10023,10023, 10023, 0, 0, 0, 0, 0,10023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10023,10023,10023,10024,10024, 0, 10024,10024,10024,10024,10024,10024,10024,10024,10024, 0, 10024,10024, 0, 0, 0, 0, 0, 0, 0, 0, 0,10024,10024,10024,10024,10024,10024,10024, 0, 0, 0, 0, 0,10024,10024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10024,10024,10024, 0, 0, 0, 0, 0, 0, 0,10024,10025,10025, 0,10025,10025,10025,10025,10025, 10025,10025,10025,10025, 0,10025,10025, 0, 0, 0, 0, 0, 0, 0, 0, 0,10025,10025,10025,10025, 10025,10025,10025, 0, 0, 0, 0, 0,10025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10025,10025,10025,10025, 10026,10026, 0,10026,10026,10026,10026,10026,10026,10026, 10026,10026, 0,10026,10026, 0, 0, 0, 0, 0, 0, 0, 0, 0,10026,10026,10026,10026,10026,10026, 10026,10026, 0, 0, 0, 0,10026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10026,10026,10026,10026,10027,10027, 0,10027,10027,10027,10027,10027,10027,10027,10027,10027, 0,10027,10027, 0, 0, 0, 0, 0, 0, 0, 0, 0,10027,10027,10027,10027,10027,10027,10027, 0, 0, 0, 0, 0,10027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10027,10027,10027,10029,10029, 0,10029,10029, 10029,10029,10029,10029,10029,10029,10029, 0,10029,10029, 0, 0, 0, 0, 0, 0, 0, 0, 0,10029, 10029,10029,10029,10029,10029,10029,10029, 0, 0, 0, 0,10029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10029, 10029,10029,10032,10032, 0,10032,10032,10032,10032,10032, 10032,10032,10032,10032, 0,10032,10032, 0, 0, 0, 0, 0, 0, 0, 0, 0,10032,10032,10032,10032, 10032,10032,10032, 0, 0, 0, 0, 0,10032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10032,10032,10032,10032, 10036,10036,10036,10036,10036,10036,10036,10036,10036,10036, 0, 0, 0, 0, 0, 0,10036,10036,10036,10036, 10036,10036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10036,10036,10036,10036,10036,10036,10039, 10039,10039,10039,10039,10039,10039,10039,10039,10039, 0, 0, 0, 0, 0, 0,10039,10039,10039,10039,10039, 10039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10039,10039,10039,10039,10039,10039,10041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10041, 10041,10041,10041,10041,10041,10041,10041,10041, 0, 0, 0, 0, 0, 0, 0,10041,10041,10041,10041,10041, 10041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10041,10041,10041,10041,10041,10041,10045,10045, 10045,10045,10045,10045,10045,10045,10045,10045, 0, 0, 0, 0, 0, 0,10045,10045,10045,10045,10045,10045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10045,10045,10045,10045,10045,10045,10047,10047,10047, 10047,10047,10047,10047,10047,10047, 0, 0, 0, 0, 0, 0, 0,10047,10047,10047,10047,10047,10047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10047,10047,10047,10047,10047,10047,10055,10055,10055,10055, 10055,10055,10055,10055,10055,10055, 0, 0, 0, 0, 0, 0,10055,10055,10055,10055,10055,10055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10055, 10055,10055,10055,10055,10055,10058,10058,10058,10058,10058, 10058,10058,10058,10058,10058, 0, 0, 0, 0, 0, 0,10058,10058,10058,10058,10058,10058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10058,10058, 10058,10058,10058,10058,10066,10066, 0,10066,10066,10066, 10066,10066,10066,10066,10066,10066,10066,10066,10066,10066, 10066,10066,10066,10066,10066,10066,10066,10066,10066,10066, 10066,10066,10066,10066,10066,10066,10066,10066,10066,10066, 10066,10066,10066,10066,10066,10066,10066,10066,10066,10066, 10066,10066,10066,10066,10066,10066,10066,10066,10066,10066, 10066,10066,10066,10066,10066,10066,10066,10066,10066,10066, 10066,10066,10066,10066,10066,10066,10066,10066,10066,10066, 10066,10066,10066,10066,10066,10066,10066,10067,10067, 0, 10067,10067,10067,10067,10067,10067,10067,10067,10067,10067, 10067,10067, 0, 0, 0, 0, 0, 0, 0, 0, 0,10067,10067,10067,10067,10067,10067,10067, 0, 0, 0, 0, 0,10067, 0, 0,10067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10067,10067,10067,10067,10068,10068, 0,10068,10068, 10068,10068,10068,10068,10068,10068,10068,10068,10068,10068, 0, 0, 0, 0, 0, 0, 0, 0, 0,10068, 10068,10068,10068,10068,10068,10068, 0, 0, 0, 0, 0,10068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10068, 10068,10068,10068,10069,10069, 0,10069,10069,10069,10069, 10069,10069,10069,10069,10069,10069,10069,10069, 0, 0, 0, 0, 0, 0, 0, 0, 0,10069,10069,10069, 10069,10069,10069,10069, 0, 0, 0, 0, 0,10069, 0, 0, 0, 0, 0,10069, 0, 0, 0, 0, 0,10069, 0, 0, 0, 0, 0,10069,10069,10069, 10069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10069, 10070,10070, 0,10070,10070,10070,10070,10070,10070,10070, 10070,10070, 0,10070,10070, 0, 0, 0, 0, 0, 0, 0, 0, 0,10070,10070,10070,10070,10070,10070, 10070, 0, 0, 0, 0, 0,10070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10070,10070,10070,10070,10071,10071, 0,10071,10071,10071,10071,10071,10071,10071,10071,10071, 0,10071,10071, 0, 0, 0, 0, 0, 0, 0, 0, 0,10071,10071,10071,10071,10071,10071,10071,10071, 0, 0, 0, 0,10071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10071,10071,10071,10071,10072,10072, 0,10072, 10072,10072,10072,10072,10072,10072,10072,10072, 0,10072, 10072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10072,10072,10072,10072,10072,10072,10072, 0, 0, 0, 0, 0,10072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10072,10072,10072,10074,10074, 0,10074,10074,10074,10074, 10074,10074,10074,10074,10074, 0,10074,10074, 0, 0, 0, 0, 0, 0, 0, 0, 0,10074,10074,10074, 10074,10074,10074,10074,10074, 0, 0, 0, 0,10074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10074,10074,10074, 10078,10078, 0,10078,10078,10078,10078,10078,10078,10078, 10078,10078, 0,10078,10078, 0, 0, 0, 0, 0, 0, 0, 0, 0,10078,10078,10078,10078,10078,10078, 10078, 0, 0, 0, 0, 0,10078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10078,10078,10078,10078,10079,10079, 0,10079,10079,10079,10079,10079,10079,10079,10079,10079, 0,10079,10079, 0, 0, 0, 0, 0, 0, 0, 0, 0,10079,10079,10079,10079,10079,10079,10079,10079, 0, 0, 0, 0,10079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10079,10079,10079,10079,10080,10080, 0,10080, 10080,10080,10080,10080,10080,10080,10080,10080, 0,10080, 10080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10080,10080,10080,10080,10080,10080,10080, 0, 0, 0, 0, 0,10080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10080,10080,10080,10082,10082, 0,10082,10082,10082,10082, 10082,10082,10082,10082,10082, 0,10082,10082, 0, 0, 0, 0, 0, 0, 0, 0, 0,10082,10082,10082, 10082,10082,10082,10082,10082, 0, 0, 0, 0,10082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10082,10082,10082, 10084,10084, 0,10084,10084,10084,10084,10084,10084,10084, 10084,10084, 0,10084,10084, 0, 0, 0, 0, 0, 0, 0, 0, 0,10084,10084,10084,10084,10084,10084, 10084, 0, 0, 0, 0, 0,10084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10084,10084,10084,10084,10085,10085, 0,10085,10085,10085,10085,10085,10085,10085,10085,10085, 0,10085,10085, 0, 0, 0, 0, 0, 0, 0, 0, 0,10085,10085,10085,10085,10085,10085,10085,10085, 0, 0, 0, 0,10085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10085,10085,10085,10085,10086,10086, 0,10086, 10086,10086,10086,10086,10086,10086,10086,10086, 0,10086, 10086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10086,10086,10086,10086,10086,10086,10086, 0, 0, 0, 0, 0,10086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10086,10086,10086,10088,10088, 0,10088,10088,10088,10088, 10088,10088,10088,10088,10088, 0,10088,10088, 0, 0, 0, 0, 0, 0, 0, 0, 0,10088,10088,10088, 10088,10088,10088,10088, 0, 0, 0, 0, 0,10088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10088,10088,10088, 10088,10089,10089, 0,10089,10089,10089,10089,10089,10089, 10089,10089,10089, 0,10089,10089, 0, 0, 0, 0, 0, 0, 0, 0, 0,10089,10089,10089,10089,10089, 10089,10089,10089, 0, 0, 0, 0,10089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10089,10089,10089,10089,10090, 10090, 0,10090,10090,10090,10090,10090,10090,10090,10090, 10090,10090,10090,10090, 0, 0, 0, 0, 0, 0, 0, 0, 0,10090,10090,10090,10090,10090,10090,10090, 10090, 0, 0, 0, 0,10090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10090,10090,10090,10090,10090,10091,10091, 0,10091,10091,10091,10091,10091,10091,10091,10091,10091, 0,10091,10091, 0, 0, 0, 0, 0, 0, 0, 0, 0,10091,10091,10091,10091,10091,10091,10091, 0, 0, 0, 0, 0,10091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10091,10091,10091,10092,10092, 0,10092,10092, 10092,10092,10092,10092,10092,10092,10092, 0,10092,10092, 0, 0, 0, 0, 0, 0, 0, 0, 0,10092, 10092,10092,10092,10092,10092,10092,10092, 0, 0, 0, 0,10092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10092, 10092,10092,10093,10093, 0,10093,10093,10093,10093,10093, 10093,10093,10093,10093, 0,10093,10093, 0, 0, 0, 0, 0, 0, 0, 0, 0,10093,10093,10093,10093, 10093,10093,10093, 0, 0, 0, 0, 0,10093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10093,10093,10093,10094, 10094, 0,10094,10094,10094,10094,10094,10094,10094,10094, 10094, 0,10094,10094, 0, 0, 0, 0, 0, 0, 0, 0, 0,10094,10094,10094,10094,10094,10094,10094, 10094, 0, 0, 0, 0,10094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10094,10094,10094,10098,10098, 0,10098, 10098,10098,10098,10098,10098,10098,10098,10098, 0,10098, 10098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10098,10098,10098,10098,10098,10098,10098, 0, 0, 0, 0, 0,10098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10098,10098,10098,10098,10099,10099, 0,10099,10099,10099, 10099,10099,10099,10099,10099,10099, 0,10099,10099, 0, 0, 0, 0, 0, 0, 0, 0, 0,10099,10099, 10099,10099,10099,10099,10099,10099, 0, 0, 0, 0, 10099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10099,10099, 10099,10099,10100,10100, 0,10100,10100,10100,10100,10100, 10100,10100,10100,10100, 0,10100,10100, 0, 0, 0, 0, 0, 0, 0, 0, 0,10100,10100,10100,10100, 10100,10100,10100, 0, 0, 0, 0, 0,10100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10100,10100,10100,10102, 10102, 0,10102,10102,10102,10102,10102,10102,10102,10102, 10102, 0,10102,10102, 0, 0, 0, 0, 0, 0, 0, 0, 0,10102,10102,10102,10102,10102,10102,10102, 0, 0, 0, 0, 0,10102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10102,10102,10102,10102,10103,10103, 0, 10103,10103,10103,10103,10103,10103,10103,10103,10103, 0, 10103,10103, 0, 0, 0, 0, 0, 0, 0, 0, 0,10103,10103,10103,10103,10103,10103,10103,10103, 0, 0, 0, 0,10103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10103,10103,10103,10103,10104,10104, 0,10104,10104, 10104,10104,10104,10104,10104,10104,10104,10104,10104,10104, 0, 0, 0, 0, 0, 0, 0, 0, 0,10104, 10104,10104,10104,10104,10104,10104,10104, 0, 0, 0, 0,10104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10104, 10104,10104,10104,10104,10105,10105, 0,10105,10105,10105, 10105,10105,10105,10105,10105,10105, 0,10105,10105, 0, 0, 0, 0, 0, 0, 0, 0, 0,10105,10105, 10105,10105,10105,10105,10105, 0, 0, 0, 0, 0, 10105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10105,10105, 10105,10106,10106, 0,10106,10106,10106,10106,10106,10106, 10106,10106,10106, 0,10106,10106, 0, 0, 0, 0, 0, 0, 0, 0, 0,10106,10106,10106,10106,10106, 10106,10106,10106, 0, 0, 0, 0,10106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10106,10106,10106,10108,10108, 0,10108,10108,10108,10108,10108,10108,10108,10108,10108, 0,10108,10108, 0, 0, 0, 0, 0, 0, 0, 0, 0,10108,10108,10108,10108,10108,10108,10108, 0, 0, 0, 0, 0,10108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10108,10108,10108,10109,10109, 0,10109,10109, 10109,10109,10109,10109,10109,10109,10109, 0,10109,10109, 0, 0, 0, 0, 0, 0, 0, 0, 0,10109, 10109,10109,10109,10109,10109,10109,10109, 0, 0, 0, 0,10109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10109, 10109,10109,10110,10110, 0,10110,10110,10110,10110,10110, 10110,10110,10110,10110, 0,10110,10110, 0, 0, 0, 0, 0, 0, 0, 0, 0,10110,10110,10110,10110, 10110,10110,10110, 0, 0, 0, 0, 0,10110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10110,10110,10110,10111, 10111, 0,10111,10111,10111,10111,10111,10111,10111,10111, 10111, 0,10111,10111, 0, 0, 0, 0, 0, 0, 0, 0, 0,10111,10111,10111,10111,10111,10111,10111, 10111, 0, 0, 0, 0,10111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10111,10111,10111,10112,10112, 0,10112, 10112,10112,10112,10112,10112,10112,10112,10112, 0,10112, 10112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10112,10112,10112,10112,10112,10112,10112, 0, 0, 0, 0, 0,10112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10112, 0, 0, 0, 0, 0, 10112,10112,10112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10112,10117,10117, 0,10117,10117,10117,10117, 10117,10117,10117,10117,10117, 0,10117,10117, 0, 0, 0, 0, 0, 0, 0, 0, 0,10117,10117,10117, 10117,10117,10117,10117, 0, 0, 0, 0, 0,10117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10117,10117,10117, 10118,10118, 0,10118,10118,10118,10118,10118,10118,10118, 10118,10118, 0,10118,10118, 0, 0, 0, 0, 0, 0, 0, 0, 0,10118,10118,10118,10118,10118,10118, 10118,10118, 0, 0, 0, 0,10118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10118,10118,10118,10121,10121, 0, 10121,10121,10121,10121,10121,10121,10121,10121,10121, 0, 10121,10121, 0, 0, 0, 0, 0, 0, 0, 0, 0,10121,10121,10121,10121,10121,10121,10121, 0, 0, 0, 0, 0,10121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10121,10121,10121,10122,10122, 0,10122,10122,10122, 10122,10122,10122,10122,10122,10122, 0,10122,10122, 0, 0, 0, 0, 0, 0, 0, 0, 0,10122,10122, 10122,10122,10122,10122,10122,10122, 0, 0, 0, 0, 10122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10122,10122, 10122,10124,10124, 0,10124,10124,10124,10124,10124,10124, 10124,10124,10124, 0,10124,10124, 0, 0, 0, 0, 0, 0, 0, 0, 0,10124,10124,10124,10124,10124, 10124,10124, 0, 0, 0, 0, 0,10124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10124,10124,10124,10125,10125, 0,10125,10125,10125,10125,10125,10125,10125,10125,10125, 0,10125,10125, 0, 0, 0, 0, 0, 0, 0, 0, 0,10125,10125,10125,10125,10125,10125,10125,10125, 0, 0, 0, 0,10125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10125,10125,10125,10126,10126, 0,10126,10126, 10126,10126,10126,10126,10126,10126,10126, 0,10126,10126, 0, 0, 0, 0, 0, 0, 0, 0, 0,10126, 10126,10126,10126,10126,10126,10126, 0, 0, 0, 0, 0,10126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10126, 0, 0, 0,10126, 10126,10126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10126,10127,10127, 0,10127,10127,10127, 10127,10127,10127,10127,10127,10127, 0,10127,10127, 0, 0, 0, 0, 0, 0, 0, 0, 0,10127,10127, 10127,10127,10127,10127,10127, 0, 0, 0, 0, 0, 10127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10127,10127, 10127,10128,10128, 0,10128,10128,10128,10128,10128,10128, 10128,10128,10128, 0,10128,10128, 0, 0, 0, 0, 0, 0, 0, 0, 0,10128,10128,10128,10128,10128, 10128,10128,10128, 0, 0, 0, 0,10128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10128,10128,10128,10129,10129, 0,10129,10129,10129,10129,10129,10129,10129,10129,10129, 0,10129,10129, 0, 0, 0, 0, 0, 0, 0, 0, 0,10129,10129,10129,10129,10129,10129,10129, 0, 0, 0, 0, 0,10129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10129,10129,10129,10130,10130, 0,10130,10130, 10130,10130,10130,10130,10130,10130,10130, 0,10130,10130, 0, 0, 0, 0, 0, 0, 0, 0, 0,10130, 10130,10130,10130,10130,10130,10130,10130, 0, 0, 0, 0,10130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10130, 10130,10130,10131,10131, 0,10131,10131,10131,10131,10131, 10131,10131,10131,10131, 0,10131,10131, 0, 0, 0, 0, 0, 0, 0, 0, 0,10131,10131,10131,10131, 10131,10131,10131, 0, 0, 0, 0, 0,10131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10131, 0, 0, 0,10131,10131,10131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10131,10132,10132, 0,10132,10132,10132,10132,10132,10132, 10132,10132,10132, 0,10132,10132, 0, 0, 0, 0, 0, 0, 0, 0, 0,10132,10132,10132,10132,10132, 10132,10132, 0, 0, 0, 0, 0,10132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10132,10132,10132,10133,10133, 0,10133,10133,10133,10133,10133,10133,10133,10133,10133, 0,10133,10133, 0, 0, 0, 0, 0, 0, 0, 0, 0,10133,10133,10133,10133,10133,10133,10133, 0, 0, 0, 0, 0,10133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10133,10133,10133,10133, 0, 0, 0, 0, 0, 0, 0,10133,10146,10146, 0,10146,10146,10146, 10146,10146,10146,10146,10146,10146, 0,10146,10146, 0, 0, 0, 0, 0, 0, 0, 0, 0,10146,10146, 10146,10146,10146,10146,10146, 0, 0, 0, 0, 0, 10146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10146,10146, 10146,10147,10147, 0,10147,10147,10147,10147,10147,10147, 10147,10147,10147, 0,10147,10147, 0, 0, 0, 0, 0, 0, 0, 0, 0,10147,10147,10147,10147,10147, 10147,10147,10147, 0, 0, 0, 0,10147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10147,10147,10147,10151,10151, 0,10151,10151,10151,10151,10151,10151,10151,10151,10151, 0,10151,10151, 0, 0, 0, 0, 0, 0, 0, 0, 0,10151,10151,10151,10151,10151,10151,10151, 0, 0, 0, 0, 0,10151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10151,10151,10151,10152,10152, 0,10152,10152, 10152,10152,10152,10152,10152,10152,10152, 0,10152,10152, 0, 0, 0, 0, 0, 0, 0, 0, 0,10152, 10152,10152,10152,10152,10152,10152,10152, 0, 0, 0, 0,10152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10152, 10152,10152,10156,10156, 0,10156,10156,10156,10156,10156, 10156,10156,10156,10156, 0,10156,10156, 0, 0, 0, 0, 0, 0, 0, 0, 0,10156,10156,10156,10156, 10156,10156,10156, 0, 0, 0, 0, 0,10156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10156,10156,10156,10157, 10157, 0,10157,10157,10157,10157,10157,10157,10157,10157, 10157, 0,10157,10157, 0, 0, 0, 0, 0, 0, 0, 0, 0,10157,10157,10157,10157,10157,10157,10157, 10157, 0, 0, 0, 0,10157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10157,10157,10157,10161,10161, 0,10161, 10161,10161,10161,10161,10161,10161,10161,10161, 0,10161, 10161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10161,10161,10161,10161,10161,10161,10161, 0, 0, 0, 0, 0,10161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10161,10161,10161,10162,10162, 0,10162,10162,10162,10162, 10162,10162,10162,10162,10162, 0,10162,10162, 0, 0, 0, 0, 0, 0, 0, 0, 0,10162,10162,10162, 10162,10162,10162,10162,10162, 0, 0, 0, 0,10162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10162,10162,10162, 10165,10165, 0,10165,10165,10165,10165,10165,10165,10165, 10165,10165, 0,10165,10165, 0, 0, 0, 0, 0, 0, 0, 0, 0,10165,10165,10165,10165,10165,10165, 10165, 0, 0, 0, 0, 0,10165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10165,10165,10165,10166,10166, 0, 10166,10166,10166,10166,10166,10166,10166,10166,10166, 0, 10166,10166, 0, 0, 0, 0, 0, 0, 0, 0, 0,10166,10166,10166,10166,10166,10166,10166,10166, 0, 0, 0, 0,10166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10166,10166,10166,10168,10168, 0,10168,10168,10168, 10168,10168,10168,10168,10168,10168, 0,10168,10168, 0, 0, 0, 0, 0, 0, 0, 0, 0,10168,10168, 10168,10168,10168,10168,10168, 0, 0, 0, 0, 0, 10168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10168,10168, 10168,10169,10169, 0,10169,10169,10169,10169,10169,10169, 10169,10169,10169, 0,10169,10169, 0, 0, 0, 0, 0, 0, 0, 0, 0,10169,10169,10169,10169,10169, 10169,10169,10169, 0, 0, 0, 0,10169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10169,10169,10169,10170,10170, 0,10170,10170,10170,10170,10170,10170,10170,10170,10170, 0,10170,10170, 0, 0, 0, 0, 0, 0, 0, 0, 0,10170,10170,10170,10170,10170,10170,10170, 0, 0, 0, 0, 0,10170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10170, 0, 0, 0,10170,10170,10170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10170,10171,10171, 0, 10171,10171,10171,10171,10171,10171,10171,10171,10171, 0, 10171,10171, 0, 0, 0, 0, 0, 0, 0, 0, 0,10171,10171,10171,10171,10171,10171,10171, 0, 0, 0, 0, 0,10171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10171,10171,10171,10172,10172, 0,10172,10172,10172, 10172,10172,10172,10172,10172,10172, 0,10172,10172,10172, 10172,10172,10172,10172,10172,10172,10172,10172,10172,10172, 10172,10172,10172,10172,10172, 0, 0, 0, 0, 0, 10172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10172,10172, 10172,10174,10174, 0,10174,10174,10174,10174,10174,10174, 10174,10174,10174, 0,10174,10174, 0, 0, 0, 0, 0, 0, 0, 0, 0,10174,10174,10174,10174,10174, 10174,10174, 0, 0, 0, 0, 0,10174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10174,10174,10174,10175,10175, 0,10175,10175,10175,10175,10175,10175,10175,10175,10175, 0,10175,10175, 0, 0, 0, 0, 0, 0, 0, 0, 0,10175,10175,10175,10175,10175,10175,10175,10175, 0, 0, 0, 0,10175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10175,10175,10175,10176,10176, 0,10176,10176, 10176,10176,10176,10176,10176,10176,10176, 0,10176,10176, 0, 0, 0, 0, 0, 0, 0, 0, 0,10176, 10176,10176,10176,10176,10176,10176, 0, 0, 0, 0, 0,10176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10176, 0, 0, 0,10176, 10176,10176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10176,10187,10187, 0,10187,10187,10187, 10187,10187,10187,10187,10187,10187, 0,10187,10187, 0, 0, 0, 0, 0, 0, 0, 0, 0,10187,10187, 10187,10187,10187,10187,10187, 0, 0, 0, 0, 0, 10187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10187,10187, 10187,10188,10188, 0,10188,10188,10188,10188,10188,10188, 10188,10188,10188, 0,10188,10188, 0, 0, 0, 0, 0, 0, 0, 0, 0,10188,10188,10188,10188,10188, 10188,10188,10188, 0, 0, 0, 0,10188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10188,10188,10188,10202,10202, 0,10202,10202,10202,10202,10202,10202,10202,10202,10202, 0,10202,10202, 0, 0, 0, 0, 0, 0, 0, 0, 0,10202,10202,10202,10202,10202,10202,10202, 0, 0, 0, 0, 0,10202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10202,10202,10202,10203,10203, 0,10203,10203, 10203,10203,10203,10203,10203,10203,10203, 0,10203,10203, 0, 0, 0, 0, 0, 0, 0, 0, 0,10203, 10203,10203,10203,10203,10203,10203,10203, 0, 0, 0, 0,10203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10203, 10203,10203,10231,10231, 0,10231,10231,10231,10231,10231, 10231,10231,10231,10231, 0,10231,10231, 0, 0, 0, 0, 0, 0, 0, 0, 0,10231,10231,10231,10231, 10231,10231,10231, 0, 0, 0, 0, 0,10231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10231,10231,10231, 0, 0, 0, 0,10231,10235,10235,10235,10235,10235,10235, 10235,10235,10235,10235,10235,10235, 0,10235,10235, 0, 0, 0, 0, 0, 0, 0, 0, 0,10235,10235, 10235,10235,10235,10235,10235, 0, 0, 0, 0, 0, 10235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10235,10235, 10235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10235,10245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10245,10245,10245, 10245,10245,10245,10245,10245,10245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10245, 0, 0, 0, 0,10245,10247,10247, 0, 10247,10247,10247,10247,10247,10247,10247,10247,10247, 0, 10247,10247, 0, 0, 0, 0, 0, 0, 0, 0, 0,10247,10247,10247,10247,10247,10247,10247, 0, 0, 0, 0, 0,10247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10247,10247,10247,10248,10248, 0,10248,10248,10248, 10248,10248,10248,10248,10248,10248, 0,10248,10248, 0, 0, 0, 0, 0, 0, 0, 0, 0,10248,10248, 10248,10248,10248,10248,10248,10248, 0, 0, 0, 0, 10248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10248,10248, 10248,10252,10252, 0,10252,10252,10252,10252,10252,10252, 10252,10252,10252, 0,10252,10252, 0, 0, 0, 0, 0, 0, 0, 0, 0,10252,10252,10252,10252,10252, 10252,10252, 0, 0, 0, 0, 0,10252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10252,10252,10252,10253,10253, 0,10253,10253,10253,10253,10253,10253,10253,10253,10253, 0,10253,10253, 0, 0, 0, 0, 0, 0, 0, 0, 0,10253,10253,10253,10253,10253,10253,10253,10253, 0, 0, 0, 0,10253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10253,10253,10253,10256,10256, 0,10256,10256, 10256,10256,10256,10256,10256,10256,10256, 0,10256,10256, 0, 0, 0, 0, 0, 0, 0, 0, 0,10256, 10256,10256,10256,10256,10256,10256, 0, 0, 0, 0, 0,10256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10256, 10256,10256,10257,10257, 0,10257,10257,10257,10257,10257, 10257,10257,10257,10257, 0,10257,10257, 0, 0, 0, 0, 0, 0, 0, 0, 0,10257,10257,10257,10257, 10257,10257,10257,10257, 0, 0, 0, 0,10257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10257,10257,10257,10260, 10260, 0,10260,10260,10260,10260,10260,10260,10260,10260, 10260, 0,10260,10260, 0, 0, 0, 0, 0, 0, 0, 0, 0,10260,10260,10260,10260,10260,10260,10260, 0, 0, 0, 0, 0,10260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10260,10260,10260,10261,10261, 0,10261, 10261,10261,10261,10261,10261,10261,10261,10261, 0,10261, 10261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10261,10261,10261,10261,10261,10261,10261,10261, 0, 0, 0, 0,10261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10261,10261,10261,10263,10263, 0,10263,10263,10263,10263, 10263,10263,10263,10263,10263, 0,10263,10263, 0, 0, 0, 0, 0, 0, 0, 0, 0,10263,10263,10263, 10263,10263,10263,10263, 0, 0, 0, 0, 0,10263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10263,10263,10263, 10264,10264, 0,10264,10264,10264,10264,10264,10264,10264, 10264,10264, 0,10264,10264, 0, 0, 0, 0, 0, 0, 0, 0, 0,10264,10264,10264,10264,10264,10264, 10264,10264, 0, 0, 0, 0,10264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10264,10264,10264,10265,10265, 0, 10265,10265,10265,10265,10265,10265,10265,10265,10265, 0, 10265,10265, 0, 0, 0, 0, 0, 0, 0, 0, 0,10265,10265,10265,10265,10265,10265,10265, 0, 0, 0, 0, 0,10265,10265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10265,10265,10265, 0, 0, 0, 0, 0, 0, 0,10265,10266,10266, 0,10266,10266,10266,10266,10266, 10266,10266,10266,10266, 0,10266,10266, 0,10266,10266, 10266,10266,10266,10266,10266,10266,10266,10266,10266,10266, 10266,10266,10266, 0, 0, 0, 0, 0,10266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10266,10266,10266,10267, 10267, 0,10267,10267,10267,10267,10267,10267,10267,10267, 10267, 0,10267,10267, 0, 0, 0, 0, 0, 0, 0, 0, 0,10267,10267,10267,10267,10267,10267,10267, 0, 0, 0, 0, 0,10267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10267,10267,10267,10268,10268, 0,10268, 10268,10268,10268,10268,10268,10268,10268,10268, 0,10268, 10268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10268,10268,10268,10268,10268,10268,10268, 0, 0, 0, 0, 0,10268,10268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10268,10268,10268, 0, 0, 0, 0, 0, 0, 0, 10268,10270,10270, 0,10270,10270,10270,10270,10270,10270, 10270,10270,10270, 0,10270,10270, 0, 0, 0, 0, 0, 0, 0, 0, 0,10270,10270,10270,10270,10270, 10270,10270, 0, 0, 0, 0, 0,10270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10270,10270,10270,10271,10271, 0,10271,10271,10271,10271,10271,10271,10271,10271,10271, 0,10271,10271, 0, 0, 0, 0, 0, 0, 0, 0, 0,10271,10271,10271,10271,10271,10271,10271,10271, 0, 0, 0, 0,10271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10271,10271,10271,10275,10275, 0,10275,10275, 10275,10275,10275,10275,10275,10275,10275, 0,10275,10275, 0, 0, 0, 0, 0, 0, 0, 0, 0,10275, 10275,10275,10275,10275,10275,10275, 0, 0, 0, 0, 0,10275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10275, 10275,10275,10276,10276, 0,10276,10276,10276,10276,10276, 10276,10276,10276,10276, 0,10276,10276, 0, 0, 0, 0, 0, 0, 0, 0, 0,10276,10276,10276,10276, 10276,10276,10276,10276, 0, 0, 0, 0,10276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10276,10276,10276,10280, 10280, 0,10280,10280,10280,10280,10280,10280,10280,10280, 10280, 0,10280,10280, 0, 0, 0, 0, 0, 0, 0, 0, 0,10280,10280,10280,10280,10280,10280,10280, 0, 0, 0, 0, 0,10280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10280,10280,10280,10281,10281, 0,10281, 10281,10281,10281,10281,10281,10281,10281,10281, 0,10281, 10281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10281,10281,10281,10281,10281,10281,10281,10281, 0, 0, 0, 0,10281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10281,10281,10281,10284,10284, 0,10284,10284,10284,10284, 10284,10284,10284,10284,10284, 0,10284,10284, 0, 0, 0, 0, 0, 0, 0, 0, 0,10284,10284,10284, 10284,10284,10284,10284, 0, 0, 0, 0, 0,10284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10284,10284,10284, 10285,10285, 0,10285,10285,10285,10285,10285,10285,10285, 10285,10285, 0,10285,10285, 0, 0, 0, 0, 0, 0, 0, 0, 0,10285,10285,10285,10285,10285,10285, 10285,10285, 0, 0, 0, 0,10285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10285,10285,10285,10287,10287, 0, 10287,10287,10287,10287,10287,10287,10287,10287,10287, 0, 10287,10287, 0, 0, 0, 0, 0, 0, 0, 0, 0,10287,10287,10287,10287,10287,10287,10287, 0, 0, 0, 0, 0,10287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10287, 0, 0, 0, 0, 0, 0,10287,10287,10287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10287,10288,10288, 0,10288,10288,10288,10288, 10288,10288,10288,10288,10288, 0,10288,10288, 0, 0, 0, 0, 0, 0, 0, 0, 0,10288,10288,10288, 10288,10288,10288,10288, 0, 0, 0, 0, 0,10288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10288,10288,10288, 10289,10289, 0,10289,10289,10289,10289,10289,10289,10289, 10289,10289, 0,10289,10289, 0, 0, 0, 0, 0, 0, 0, 0, 0,10289,10289,10289,10289,10289,10289, 10289,10289, 0, 0, 0, 0,10289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10289,10289,10289,10290,10290, 0, 10290,10290,10290,10290,10290,10290,10290,10290,10290, 0, 10290,10290, 0, 0, 0, 0, 0, 0, 0, 0, 0,10290,10290,10290,10290,10290,10290,10290, 0, 0, 0, 0, 0,10290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10290,10290,10290,10291,10291, 0,10291,10291,10291, 10291,10291,10291,10291,10291,10291, 0,10291,10291, 0, 0, 0, 0, 0, 0, 0, 0, 0,10291,10291, 10291,10291,10291,10291,10291,10291, 0, 0, 0, 0, 10291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10291,10291, 10291,10295,10295, 0,10295,10295,10295,10295,10295,10295, 10295,10295,10295, 0,10295,10295, 0, 0, 0, 0, 0, 0, 0, 0, 0,10295,10295,10295,10295,10295, 10295,10295, 0, 0, 0, 0, 0,10295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10295,10295,10295,10296,10296, 0,10296,10296,10296,10296,10296,10296,10296,10296,10296, 0,10296,10296, 0, 0, 0, 0, 0, 0, 0, 0, 0,10296,10296,10296,10296,10296,10296,10296,10296, 0, 0, 0, 0,10296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10296,10296,10296,10299,10299, 0,10299,10299, 10299,10299,10299,10299,10299,10299,10299, 0,10299,10299, 0, 0, 0, 0, 0, 0, 0, 0, 0,10299, 10299,10299,10299,10299,10299,10299, 0, 0, 0, 0, 0,10299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10299, 10299,10299,10300,10300, 0,10300,10300,10300,10300,10300, 10300,10300,10300,10300, 0,10300,10300, 0, 0, 0, 0, 0, 0, 0, 0, 0,10300,10300,10300,10300, 10300,10300,10300,10300, 0, 0, 0, 0,10300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10300,10300,10300,10302, 10302, 0,10302,10302,10302,10302,10302,10302,10302,10302, 10302, 0,10302,10302, 0, 0, 0, 0, 0, 0, 0, 0, 0,10302,10302,10302,10302,10302,10302,10302, 0, 0, 0, 0, 0,10302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10302, 0, 0, 0, 0, 0, 0,10302,10302,10302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10302,10303,10303, 0,10303,10303, 10303,10303,10303,10303,10303,10303,10303, 0,10303,10303, 0, 0, 0, 0, 0, 0, 0, 0, 0,10303, 10303,10303,10303,10303,10303,10303, 0, 0, 0, 0, 0,10303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10303, 10303,10303,10304,10304, 0,10304,10304,10304,10304,10304, 10304,10304,10304,10304, 0,10304,10304, 0, 0, 0, 0, 0, 0, 0, 0, 0,10304,10304,10304,10304, 10304,10304,10304,10304, 0, 0, 0, 0,10304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10304,10304,10304,10332, 10332, 0,10332,10332,10332,10332,10332,10332,10332,10332, 10332, 0,10332,10332, 0, 0, 0, 0, 0, 0, 0, 0, 0,10332,10332,10332,10332,10332,10332,10332, 0, 0, 0, 0, 0,10332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10332,10332,10332,10333,10333, 0,10333, 10333,10333,10333,10333,10333,10333,10333,10333, 0,10333, 10333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10333,10333,10333,10333,10333,10333,10333,10333, 0, 0, 0, 0,10333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10333,10333,10333,10337,10337, 0,10337,10337,10337,10337, 10337,10337,10337,10337,10337, 0,10337,10337, 0, 0, 0, 0, 0, 0, 0, 0, 0,10337,10337,10337, 10337,10337,10337,10337, 0, 0, 0, 0, 0,10337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10337,10337,10337, 10338,10338, 0,10338,10338,10338,10338,10338,10338,10338, 10338,10338, 0,10338,10338, 0, 0, 0, 0, 0, 0, 0, 0, 0,10338,10338,10338,10338,10338,10338, 10338,10338, 0, 0, 0, 0,10338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10338,10338,10338,10339,10339, 0, 10339,10339,10339,10339,10339,10339,10339,10339,10339, 0, 10339,10339, 0, 0, 0, 0, 0, 0, 0, 0, 0,10339,10339,10339,10339,10339,10339,10339, 0, 0, 0, 0, 0,10339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10339,10339,10339,10340,10340, 0,10340,10340,10340, 10340,10340,10340,10340,10340,10340, 0,10340,10340, 0, 0, 0, 0, 0, 0, 0, 0, 0,10340,10340, 10340,10340,10340,10340,10340,10340, 0, 0, 0, 0, 10340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10340,10340, 10340,10341,10341, 0,10341,10341,10341,10341,10341,10341, 10341,10341,10341, 0,10341,10341, 0, 0, 0, 0, 0, 0, 0, 0, 0,10341,10341,10341,10341,10341, 10341,10341, 0, 0, 0, 0, 0,10341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10341, 0, 0, 0, 0, 0,10341,10341,10341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10341,10345,10345, 0,10345,10345,10345,10345,10345,10345,10345,10345,10345, 0,10345,10345, 0, 0, 0, 0, 0, 0, 0, 0, 0,10345,10345,10345,10345,10345,10345,10345, 0, 0, 0, 0, 0,10345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10345,10345,10345,10346,10346, 0,10346,10346, 10346,10346,10346,10346,10346,10346,10346, 0,10346,10346, 0, 0, 0, 0, 0, 0, 0, 0, 0,10346, 10346,10346,10346,10346,10346,10346,10346, 0, 0, 0, 0,10346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10346, 10346,10346,10349,10349, 0,10349,10349,10349,10349,10349, 10349,10349,10349,10349, 0,10349,10349, 0, 0, 0, 0, 0, 0, 0, 0, 0,10349,10349,10349,10349, 10349,10349,10349, 0, 0, 0, 0, 0,10349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10349,10349,10349,10350, 10350, 0,10350,10350,10350,10350,10350,10350,10350,10350, 10350, 0,10350,10350, 0, 0, 0, 0, 0, 0, 0, 0, 0,10350,10350,10350,10350,10350,10350,10350, 10350, 0, 0, 0, 0,10350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10350,10350,10350,10352,10352, 0,10352, 10352,10352,10352,10352,10352,10352,10352,10352, 0,10352, 10352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10352,10352,10352,10352,10352,10352,10352, 0, 0, 0, 0, 0,10352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10352,10352,10352,10353,10353, 0,10353,10353,10353,10353, 10353,10353,10353,10353,10353, 0,10353,10353, 0, 0, 0, 0, 0, 0, 0, 0, 0,10353,10353,10353, 10353,10353,10353,10353,10353, 0, 0, 0, 0,10353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10353,10353,10353, 10354,10354, 0,10354,10354,10354,10354,10354,10354,10354, 10354,10354, 0,10354,10354, 0, 0, 0, 0, 0, 0, 0, 0, 0,10354,10354,10354,10354,10354,10354, 10354, 0, 0, 0, 0, 0,10354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10354, 0, 0, 0,10354,10354,10354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10354,10355, 10355, 0,10355,10355,10355,10355,10355,10355,10355,10355, 10355, 0,10355,10355, 0, 0, 0, 0, 0, 0, 0, 0, 0,10355,10355,10355,10355,10355,10355,10355, 0, 0, 0, 0, 0,10355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10355,10355,10355,10356,10356, 0,10356, 10356,10356,10356,10356,10356,10356,10356,10356, 0,10356, 10356,10356,10356,10356,10356,10356,10356,10356,10356,10356, 10356,10356,10356,10356,10356,10356,10356, 0, 0, 0, 0, 0,10356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10356,10356,10356,10358,10358, 0,10358,10358,10358,10358, 10358,10358,10358,10358,10358, 0,10358,10358, 0, 0, 0, 0, 0, 0, 0, 0, 0,10358,10358,10358, 10358,10358,10358,10358, 0, 0, 0, 0, 0,10358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10358,10358,10358, 10359,10359, 0,10359,10359,10359,10359,10359,10359,10359, 10359,10359, 0,10359,10359, 0, 0, 0, 0, 0, 0, 0, 0, 0,10359,10359,10359,10359,10359,10359, 10359,10359, 0, 0, 0, 0,10359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10359,10359,10359,10360,10360, 0, 10360,10360,10360,10360,10360,10360,10360,10360,10360, 0, 10360,10360, 0, 0, 0, 0, 0, 0, 0, 0, 0,10360,10360,10360,10360,10360,10360,10360, 0, 0, 0, 0, 0,10360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10360, 0, 0, 0,10360,10360,10360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10360,10374,10374, 0,10374, 10374,10374,10374,10374,10374,10374,10374,10374, 0,10374, 10374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10374,10374,10374,10374,10374,10374,10374, 0, 0, 0, 0, 0,10374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10374,10374,10374,10375,10375, 0,10375,10375,10375,10375, 10375,10375,10375,10375,10375, 0,10375,10375, 0, 0, 0, 0, 0, 0, 0, 0, 0,10375,10375,10375, 10375,10375,10375,10375,10375, 0, 0, 0, 0,10375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10375,10375,10375, 10389,10389, 0,10389,10389,10389,10389,10389,10389,10389, 10389,10389, 0,10389,10389, 0, 0, 0, 0, 0, 0, 0, 0, 0,10389,10389,10389,10389,10389,10389, 10389, 0, 0, 0, 0, 0,10389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10389,10389,10389,10390,10390, 0, 10390,10390,10390,10390,10390,10390,10390,10390,10390, 0, 10390,10390, 0, 0, 0, 0, 0, 0, 0, 0, 0,10390,10390,10390,10390,10390,10390,10390,10390, 0, 0, 0, 0,10390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10390,10390,10390,10430,10430, 0,10430,10430,10430, 10430,10430,10430,10430,10430,10430, 0,10430,10430, 0, 0, 0, 0, 0, 0, 0, 0, 0,10430,10430, 10430,10430,10430,10430,10430, 0, 0, 0, 0, 0, 10430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10430,10430, 10430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10430, 10431,10431, 0,10431,10431,10431,10431,10431,10431,10431, 10431,10431, 0,10431,10431, 0, 0, 0, 0, 0, 0, 0, 0, 0,10431,10431,10431,10431,10431,10431, 10431, 0, 0, 0, 0, 0,10431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10431,10431,10431,10443,10443, 0, 10443,10443,10443,10443,10443,10443,10443, 0,10443,10443, 10443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10443,10443,10443,10443,10443,10443,10443, 0, 0, 0, 0, 0,10443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10443,10443,10443,10443,10444,10444, 0,10444,10444, 10444,10444,10444,10444,10444, 0,10444,10444,10444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10444, 10444,10444,10444,10444,10444,10444,10444, 0, 0, 0, 0,10444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10444, 10444,10444,10444,10446,10446,10446,10446,10446,10446,10446, 10446,10446, 0, 0, 0, 0, 0, 0, 0,10446, 10446,10446,10446,10446,10446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10446,10446,10446,10446, 10446,10446,10449,10449, 0,10449,10449,10449,10449,10449, 10449,10449,10449,10449,10449,10449,10449,10449,10449,10449, 10449,10449,10449,10449,10449,10449,10449,10449,10449,10449, 10449,10449,10449,10449,10449,10449,10449,10449,10449,10449, 10449,10449,10449,10449,10449,10449,10449,10449,10449,10449, 10449,10449,10449,10449,10449,10449,10449,10449,10449,10449, 10449,10449,10449,10449,10449,10449,10449,10449,10449,10449, 10449,10449,10449,10449,10449,10449,10449,10449,10449,10449, 10449,10449,10449,10449,10449,10457,10457,10457,10457,10457, 10457,10457,10457,10457,10457, 0, 0, 0, 0, 0, 0,10457,10457,10457,10457,10457,10457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10457,10457, 10457,10457,10457,10457,10459,10459,10459,10459,10459,10459, 10459,10459,10459,10459, 0, 0, 0, 0, 0, 0, 10459,10459,10459,10459,10459,10459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10459,10459,10459, 10459,10459,10459,10462,10462,10462,10462,10462,10462,10462, 10462,10462,10462, 0, 0, 0, 0, 0,10462,10462, 10462,10462,10462,10462,10462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10462,10462,10462,10462, 10462,10462,10468,10468,10468,10468,10468,10468,10468,10468, 10468,10468, 0, 0, 0, 0, 0, 0,10468,10468, 10468,10468,10468,10468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10468,10468,10468,10468,10468, 10468,10471,10471,10471,10471,10471,10471,10471,10471,10471, 10471, 0, 0, 0, 0, 0, 0,10471,10471,10471, 10471,10471,10471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10471,10471,10471,10471,10471,10471, 10479,10479,10479,10479,10479,10479,10479,10479,10479,10479, 0, 0, 0, 0, 0, 0,10479,10479,10479,10479, 10479,10479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10479,10479,10479,10479,10479,10479,10482, 10482,10482,10482,10482,10482,10482,10482,10482,10482, 0, 0, 0, 0, 0, 0,10482,10482,10482,10482,10482, 10482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10482,10482,10482,10482,10482,10482,10490,10490, 10490,10490,10490,10490,10490,10490,10490, 0, 0, 0, 0, 0, 0, 0,10490,10490,10490,10490,10490,10490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10490,10490,10490,10490,10490,10490,10495,10495,10495, 10495,10495,10495,10495,10495,10495,10495, 0, 0, 0, 0, 0, 0,10495,10495,10495,10495,10495,10495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10495,10495,10495,10495,10495,10495,10497,10497,10497,10497, 10497,10497,10497,10497,10497, 0, 0, 0, 0, 0, 0, 0,10497,10497,10497,10497,10497,10497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10497, 10497,10497,10497,10497,10497,10505, 0,10505,10505,10505, 10505,10505,10505,10505,10505,10505,10505, 0, 0, 0, 0, 0, 0,10505,10505,10505,10505,10505,10505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10505,10505,10505,10505,10505,10505,10509,10509, 0,10509, 10509,10509,10509,10509,10509,10509,10509,10509, 0,10509, 10509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10509,10509,10509,10509,10509,10509,10509, 0, 0, 0, 0, 0,10509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10509,10509,10509,10509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10509,10522,10522,10522,10522,10522,10522, 10522,10522,10522,10522, 0, 0, 0, 0, 0, 0, 10522,10522,10522,10522,10522,10522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10522,10522,10522, 10522,10522,10522,10525,10525,10525,10525,10525,10525,10525, 10525,10525,10525, 0, 0, 0, 0, 0, 0,10525, 10525,10525,10525,10525,10525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10525,10525,10525,10525, 10525,10525,10526,10526,10526,10526,10526,10526,10526,10526, 10526, 0, 0, 0, 0, 0, 0, 0,10526,10526, 10526,10526,10526,10526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10526, 0, 0, 0,10526,10526,10526,10526,10526, 10526,10531,10531,10531,10531,10531,10531,10531,10531,10531, 10531, 0, 0, 0, 0, 0, 0,10531,10531,10531, 10531,10531,10531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10531,10531,10531,10531,10531,10531, 10532,10532,10532,10532,10532,10532,10532,10532,10532, 0, 0, 0, 0, 0, 0, 0,10532,10532,10532,10532, 10532,10532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10532,10532,10532,10532,10532,10532,10541, 10541,10541,10541,10541,10541,10541,10541,10541,10541, 0, 0, 0, 0, 0, 0,10541,10541,10541,10541,10541, 10541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10541,10541,10541,10541,10541,10541,10542,10542, 10542,10542,10542,10542,10542,10542,10542, 0, 0, 0, 0, 0, 0, 0,10542,10542,10542,10542,10542,10542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10542,10542,10542,10542,10542,10542,10553,10553,10553, 10553,10553,10553,10553,10553,10553,10553, 0, 0, 0, 0, 0, 0,10553,10553,10553,10553,10553,10553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10553,10553,10553,10553,10553,10553,10554,10554,10554,10554, 10554,10554,10554,10554,10554, 0, 0, 0, 0, 0, 0, 0,10554,10554,10554,10554,10554,10554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10554, 10554,10554,10554,10554,10554,10561, 0,10561,10561,10561, 10561,10561,10561,10561,10561,10561,10561, 0, 0, 0, 0, 0, 0,10561,10561,10561,10561,10561,10561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10561,10561,10561,10561,10561,10561,10569,10569,10569,10569, 10569,10569,10569,10569,10569,10569, 0, 0, 0, 0, 0, 0,10569,10569,10569,10569,10569,10569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10569, 10569,10569,10569,10569,10569,10570,10570,10570,10570,10570, 10570,10570,10570,10570, 0, 0, 0, 0, 0, 0, 0,10570,10570,10570,10570,10570,10570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10570,10570, 10570,10570,10570,10570,10577,10577,10577,10577,10577,10577, 10577,10577,10577,10577, 0, 0, 0, 0, 0, 0, 10577,10577,10577,10577,10577,10577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10577,10577,10577, 10577,10577,10577,10581,10581,10581,10581,10581,10581,10581, 10581,10581,10581, 0, 0, 0, 0, 0, 0,10581, 10581,10581,10581,10581,10581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10581,10581,10581,10581, 10581,10581,10582,10582,10582,10582,10582,10582,10582,10582, 10582,10582, 0, 0, 0, 0, 0, 0,10582,10582, 10582,10582,10582,10582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10582,10582,10582,10582,10582, 10582,10585,10585,10585,10585,10585,10585,10585,10585,10585, 10585, 0, 0, 0, 0, 0, 0,10585,10585,10585, 10585,10585,10585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10585,10585,10585,10585,10585,10585, 10592,10592,10592,10592,10592,10592,10592,10592,10592, 0, 0, 0, 0, 0, 0, 0,10592,10592,10592,10592, 10592,10592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10592,10592,10592,10592,10592,10592,10593, 10593,10593,10593,10593,10593,10593,10593,10593,10593, 0, 0, 0, 0, 0, 0,10593,10593,10593,10593,10593, 10593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10593,10593,10593,10593,10593,10593,10622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10622, 10622,10622,10622,10622,10622,10622,10622,10622, 0,10622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10622,10622,10666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10666, 0, 0, 0, 0, 0, 0,10666, 0, 0, 0, 0, 0,10666, 0, 0, 0, 0, 0, 0, 0, 0, 10666, 0,10666, 0,10666, 0, 0,10666,10666, 0, 0, 0,10666, 0, 0,10666, 0,10666, 0,10666, 0,10666,10666,10666,10667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10667, 0, 0,10667, 0, 0, 0,10667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10667, 0, 10667, 0,10667, 0, 0,10667,10667, 0, 0, 0, 10667, 0, 0,10667, 0,10667, 0,10667, 0,10667, 10667,10667,10668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10668, 0, 0, 0, 0,10668, 0, 0, 0, 0, 0, 0,10668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10668, 0,10668, 0, 10668, 0, 0,10668,10668, 0, 0, 0,10668, 0, 0,10668, 0,10668, 0,10668, 0,10668,10668,10668, 10669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10669, 0, 0, 0, 0, 0, 0,10669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10669, 0,10669, 0,10669, 0, 0,10669,10669, 0, 0, 0,10669, 0, 0,10669, 0,10669, 0,10669, 0,10669,10669,10669,10670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10670, 0, 0, 0, 0, 0, 0,10670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10670, 0,10670, 0,10670, 0, 0,10670, 10670, 0, 0, 0,10670, 0, 0,10670, 0,10670, 0,10670, 0,10670,10670,10670,10671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10671, 0, 0, 0, 0, 0, 0,10671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10671, 0,10671, 0,10671, 0, 0,10671,10671, 0, 0, 0,10671, 0, 0,10671, 0,10671, 0,10671, 0,10671,10671,10671,10672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10672, 0, 0, 0, 0, 0, 0,10672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10672, 0, 10672, 0,10672, 0, 0,10672,10672, 0, 0, 0, 10672, 0, 0,10672, 0,10672, 0,10672, 0,10672, 10672,10672,10673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10673, 0, 0, 0, 0, 0, 0,10673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10673, 0,10673,10673, 10673, 0, 0,10673,10673, 0, 0, 0,10673, 0, 0,10673, 0,10673, 0,10673, 0,10673,10673,10673, 10674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10674, 0, 0, 0, 0, 0, 0,10674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10674, 0,10674,10674,10674, 0, 0,10674,10674, 0, 0, 0,10674, 0, 0,10674, 0,10674, 0,10674, 0,10674,10674,10674,10675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10675, 0, 0, 0, 0, 10675, 0, 0, 0, 0, 0, 0,10675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10675, 0,10675, 0,10675, 0, 0,10675, 10675, 0, 0, 0,10675, 0, 0,10675, 0,10675, 10675,10675, 0,10675,10675,10675,10684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10684, 0, 0, 0, 0, 0, 0,10684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10684, 0,10684, 0,10684, 0, 0,10684,10684, 0, 0, 0,10684, 0, 0,10684, 0,10684, 0,10684, 0,10684,10684,10684,10685, 0,10685, 0, 0, 0, 0, 0, 0,10685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10685, 0, 0, 0, 0, 0, 0,10685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10685, 0,10685, 0,10685, 0, 0,10685,10685, 0, 0, 0,10685, 0, 0,10685, 0,10685, 0,10685, 0,10685,10685,10685,10686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10686, 0, 0, 0, 0, 0, 0,10686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10686, 0, 10686, 0,10686, 0, 0,10686,10686, 0, 0, 0, 10686, 0, 0,10686, 0,10686, 0,10686, 0,10686, 10686,10686,10687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10687, 0, 0, 0, 0, 0, 0,10687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10687, 0,10687, 0, 10687, 0, 0,10687,10687, 0, 0, 0,10687,10687, 10687,10687, 0,10687, 0,10687, 0,10687,10687,10687, 10689, 0,10689, 0, 0, 0, 0, 0, 0,10689, 0, 0, 0,10689,10689,10689,10689,10689,10689,10689, 10689,10689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10689, 0, 0, 0, 0, 0, 0,10689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10689, 0,10689, 0, 10689, 0, 0,10689,10689, 0, 0, 0,10689, 0, 0,10689, 0,10689, 0,10689, 0,10689,10689,10689, 10694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10694, 0, 0, 0, 0, 0, 0,10694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10694, 0,10694, 0,10694, 0, 0,10694,10694, 0, 0, 0,10694, 0, 0,10694, 0,10694, 0,10694, 0,10694,10694,10694,10695, 0, 0, 0, 0, 0, 0, 0, 0, 0,10695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10695, 0,10695, 0, 0, 0, 0,10695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10695, 0,10695, 0,10695, 0, 0,10695, 10695, 0, 0, 0,10695, 0, 0,10695, 0,10695, 0,10695, 0,10695,10695,10695,10711, 0, 0, 0, 0, 0, 0, 0, 0, 0,10711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10711, 0, 0, 0, 0, 0, 0,10711, 0, 0, 0, 0, 0, 0,10711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10711, 0,10711,10711,10711, 0, 0,10711,10711, 0, 0, 0,10711, 0, 0,10711, 0,10711, 0,10711, 0,10711,10711,10711,10712, 0, 0, 0, 0, 0, 0, 0, 0, 0,10712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10712, 0, 0, 0, 0, 0, 0,10712, 0, 0,10712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10712, 0, 10712,10712,10712, 0, 0,10712,10712, 0, 0, 0, 10712, 0, 0,10712, 0,10712, 0,10712, 0,10712, 10712,10712,10713, 0, 0, 0, 0, 0, 0, 0, 0, 0,10713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10713, 0, 0, 0, 0, 0, 0,10713, 0, 0,10713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10713, 0,10713, 0, 10713, 0, 0,10713,10713, 0, 0, 0,10713, 0, 0,10713, 0,10713, 0,10713, 0,10713,10713,10713, 10714, 0,10714, 0, 0, 0, 0, 0, 0,10714, 0, 0,10714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10714, 0, 0, 0, 0, 0, 0,10714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10714, 0,10714, 0, 10714, 0, 0,10714,10714, 0, 0, 0,10714, 0, 0,10714, 0,10714, 0,10714, 0,10714,10714,10714, 10715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10715, 0, 0, 0, 0, 0, 0,10715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10715, 0,10715, 0,10715, 0, 0,10715,10715, 0, 0, 0,10715, 0, 0,10715, 0,10715, 0,10715, 0,10715,10715,10715,10716, 0, 0, 0, 0, 0, 0, 0, 0, 0,10716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10716, 0, 0, 0, 0, 0, 0,10716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10716, 0,10716, 0,10716, 0, 0,10716, 10716, 0, 0, 0,10716, 0,10716,10716, 0,10716, 0,10716, 0,10716,10716,10716,10725, 0,10725, 0, 0, 0, 0, 0, 0,10725, 0, 0,10725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10725, 0, 0, 0, 0, 0, 0,10725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10725, 0,10725, 0,10725, 0, 0,10725, 10725, 0, 0, 0,10725, 0, 0,10725, 0,10725, 0,10725, 0,10725,10725,10725,10754, 0,10754, 0, 0, 0, 0, 0, 0,10754, 0, 0,10754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10754, 0, 0, 0, 0, 0, 0,10754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10754, 0,10754, 0,10754, 0, 0,10754, 10754, 0, 0, 0,10754, 0,10754,10754, 0,10754, 0,10754, 0,10754,10754,10754,10754,10757, 0,10757, 0, 0, 0, 0, 0, 0,10757, 0, 0,10757, 10757,10757,10757,10757,10757,10757,10757,10757,10757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10757, 0, 0, 0, 0, 0, 0,10757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10757, 0,10757, 0,10757, 0, 0, 10757,10757, 0, 0, 0,10757, 0, 0,10757, 0, 10757, 0,10757, 0,10757,10757,10757,10775,10775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10775,10775,10775,10775,10775,10775,10775,10775,10775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10775, 10788,10788, 0,10788,10788,10788,10788,10788,10788,10788, 10788,10788, 0,10788,10788, 0, 0, 0, 0, 0, 0, 0, 0, 0,10788,10788,10788,10788,10788,10788, 10788, 0, 0, 0, 0, 0,10788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10788,10788,10788,10789,10789, 0, 10789,10789,10789,10789,10789,10789,10789,10789,10789, 0, 10789,10789, 0, 0, 0, 0, 0, 0, 0, 0, 0,10789,10789,10789,10789,10789,10789,10789,10789, 0, 0, 0, 0,10789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10789,10789,10789,10805,10805, 0,10805,10805,10805, 10805,10805,10805,10805,10805,10805, 0,10805,10805, 0, 0, 0, 0, 0, 0, 0, 0, 0,10805,10805, 10805,10805,10805,10805,10805, 0, 0, 0, 0, 0, 10805, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10805,10805, 10805,10806,10806, 0,10806,10806,10806,10806,10806,10806, 10806,10806,10806, 0,10806,10806, 0, 0, 0, 0, 0, 0, 0, 0, 0,10806,10806,10806,10806,10806, 10806,10806,10806, 0, 0, 0, 0,10806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10806,10806,10806,10808,10808, 0,10808,10808,10808,10808,10808,10808,10808,10808,10808, 10808,10808,10808,10808,10808,10808,10808,10808,10808,10808, 10808,10808,10808,10808,10808,10808,10808,10808,10808,10808, 10808,10808,10808,10808,10808,10808,10808,10808,10808,10808, 10808,10808,10808,10808,10808,10808,10808,10808,10808,10808, 10808,10808,10808,10808,10808,10808,10808,10808,10808,10808, 10808,10808,10808,10808,10808,10808,10808,10808,10808,10808, 10808,10808,10808,10808,10808,10808,10808,10808,10808,10808, 10808,10809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10809,10809,10809,10809,10809,10809,10809,10809, 10809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10809,10809,10809,10809,10809, 10809,10809,10809,10809,10809,10809,10809,10809,10809,10809, 10809,10809,10809,10809,10809,10809,10809,10809,10809,10809, 10813,10813, 0,10813,10813,10813,10813,10813,10813,10813, 10813,10813, 0,10813,10813, 0, 0, 0, 0, 0, 0, 0, 0, 0,10813,10813,10813,10813,10813,10813, 10813, 0, 0, 0, 0, 0,10813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10813,10813,10813,10813,10814,10814, 0,10814,10814,10814,10814,10814,10814,10814,10814,10814, 0,10814,10814, 0, 0, 0, 0, 0, 0, 0, 0, 0,10814,10814,10814,10814,10814,10814,10814, 0, 0, 0, 0, 0,10814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10814,10814,10814,10814,10815,10815, 0,10815, 10815,10815,10815,10815,10815,10815,10815,10815, 0,10815, 10815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10815,10815,10815,10815,10815,10815,10815,10815, 0, 0, 0, 0,10815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10815,10815,10815,10815,10816,10816, 0,10816,10816,10816, 10816,10816,10816,10816,10816,10816, 0,10816,10816, 0, 0, 0, 0, 0, 0, 0, 0, 0,10816,10816, 10816,10816,10816,10816,10816, 0, 0, 0, 0, 0, 10816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10816,10816, 10816,10817,10817, 0,10817,10817,10817,10817,10817,10817, 10817,10817,10817, 0,10817,10817, 0, 0, 0, 0, 0, 0, 0, 0, 0,10817,10817,10817,10817,10817, 10817,10817, 0, 0, 0, 0, 0,10817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10817,10817,10817,10817,10818, 10818, 0,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10818,10818,10818,10818,10818,10818,10818,10818, 10818,10818,10821,10821, 0,10821,10821,10821,10821,10821, 10821,10821,10821,10821, 0,10821,10821, 0, 0, 0, 0, 0, 0, 0, 0, 0,10821,10821,10821,10821, 10821,10821,10821,10821, 0, 0, 0, 0,10821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10821,10821,10821,10828, 10828, 0,10828,10828,10828,10828,10828,10828,10828,10828, 10828, 0,10828,10828, 0, 0, 0, 0, 0, 0, 0, 0, 0,10828,10828,10828,10828,10828,10828,10828, 0, 0, 0, 0, 0,10828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10828,10828,10828,10828,10833,10833, 0, 10833,10833,10833,10833,10833,10833,10833,10833,10833, 0, 10833,10833, 0, 0, 0, 0, 0, 0, 0, 0, 0,10833,10833,10833,10833,10833,10833,10833, 0, 0, 0, 0, 0,10833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10833,10833,10833,10833,10834,10834, 0,10834,10834, 10834,10834,10834,10834,10834,10834,10834, 0,10834,10834, 0, 0, 0, 0, 0, 0, 0, 0, 0,10834, 10834,10834,10834,10834,10834,10834,10834, 0, 0, 0, 0,10834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10834, 10834,10834,10834,10835,10835, 0,10835,10835,10835,10835, 10835,10835,10835,10835,10835, 0,10835,10835, 0, 0, 0, 0, 0, 0, 0, 0, 0,10835,10835,10835, 10835,10835,10835,10835, 0, 0, 0, 0, 0,10835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10835,10835,10835, 10837,10837, 0,10837,10837,10837,10837,10837,10837,10837, 10837,10837, 0,10837,10837, 0, 0, 0, 0, 0, 0, 0, 0, 0,10837,10837,10837,10837,10837,10837, 10837,10837, 0, 0, 0, 0,10837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10837,10837,10837,10839,10839, 0, 10839,10839,10839,10839,10839,10839,10839,10839,10839, 0, 10839,10839, 0, 0, 0, 0, 0, 0, 0, 0, 0,10839,10839,10839,10839,10839,10839,10839, 0, 0, 0, 0, 0,10839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10839,10839,10839,10839,10840,10840, 0,10840,10840, 10840,10840,10840,10840,10840,10840,10840, 0,10840,10840, 0, 0, 0, 0, 0, 0, 0, 0, 0,10840, 10840,10840,10840,10840,10840,10840,10840, 0, 0, 0, 0,10840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10840, 10840,10840,10840,10841,10841, 0,10841,10841,10841,10841, 10841,10841,10841,10841,10841, 0,10841,10841, 0, 0, 0, 0, 0, 0, 0, 0, 0,10841,10841,10841, 10841,10841,10841,10841, 0, 0, 0, 0, 0,10841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10841,10841,10841, 10843,10843, 0,10843,10843,10843,10843,10843,10843,10843, 10843,10843, 0,10843,10843, 0, 0, 0, 0, 0, 0, 0, 0, 0,10843,10843,10843,10843,10843,10843, 10843, 0, 0, 0, 0, 0,10843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10843,10843,10843,10843,10844,10844, 0,10844,10844,10844,10844,10844,10844,10844,10844,10844, 0,10844,10844, 0, 0, 0, 0, 0, 0, 0, 0, 0,10844,10844,10844,10844,10844,10844,10844,10844, 0, 0, 0, 0,10844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10844,10844,10844,10844,10845,10845, 0,10845, 10845,10845,10845,10845,10845,10845,10845,10845, 0,10845, 10845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10845,10845,10845,10845,10845,10845,10845, 0, 0, 0, 0, 0,10845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10845, 0, 0, 0, 10845,10845,10845,10845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10845,10846,10846, 0,10846,10846, 10846,10846,10846,10846,10846,10846,10846, 0,10846,10846, 0, 0, 0, 0, 0, 0, 0, 0, 0,10846, 10846,10846,10846,10846,10846,10846, 0, 0, 0, 0, 0,10846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10846, 10846,10846,10847,10847, 0,10847,10847,10847,10847,10847, 10847,10847,10847,10847, 0,10847,10847, 0, 0, 0, 0, 0, 0, 0, 0, 0,10847,10847,10847,10847, 10847,10847,10847,10847, 0, 0, 0, 0,10847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10847,10847,10847,10848, 10848, 0,10848,10848,10848,10848,10848,10848,10848,10848, 10848, 0,10848,10848, 0, 0, 0, 0, 0, 0, 0, 0, 0,10848,10848,10848,10848,10848,10848,10848, 0, 0, 0, 0, 0,10848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10848,10848,10848,10848,10849,10849, 0, 10849,10849,10849,10849,10849,10849,10849,10849,10849, 0, 10849,10849, 0, 0, 0, 0, 0, 0, 0, 0, 0,10849,10849,10849,10849,10849,10849,10849,10849, 0, 0, 0, 0,10849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10849,10849,10849,10849,10850,10850, 0,10850,10850, 10850,10850,10850,10850,10850,10850,10850, 0,10850,10850, 0, 0, 0, 0, 0, 0, 0, 0, 0,10850, 10850,10850,10850,10850,10850,10850, 0, 0, 0, 0, 0,10850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10850, 0, 0, 0,10850, 10850,10850,10850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10850,10851,10851, 0,10851,10851,10851, 10851,10851,10851,10851,10851,10851, 0,10851,10851, 0, 0, 0, 0, 0, 0, 0, 0, 0,10851,10851, 10851,10851,10851,10851,10851, 0, 0, 0, 0, 0, 10851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10851,10851, 10851,10855,10855, 0,10855,10855,10855,10855,10855,10855, 10855,10855,10855, 0,10855,10855, 0, 0, 0, 0, 0, 0, 0, 0, 0,10855,10855,10855,10855,10855, 10855,10855, 0, 0, 0, 0, 0,10855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10855,10855,10855,10855,10856, 10856, 0,10856,10856,10856,10856,10856,10856,10856,10856, 10856, 0,10856,10856, 0, 0, 0, 0, 0, 0, 0, 0, 0,10856,10856,10856,10856,10856,10856,10856, 10856, 0, 0, 0, 0,10856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10856,10856,10856,10856,10857,10857, 0, 10857,10857,10857,10857,10857,10857,10857,10857,10857, 0, 10857,10857, 0, 0, 0, 0, 0, 0, 0, 0, 0,10857,10857,10857,10857,10857,10857,10857, 0, 0, 0, 0, 0,10857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10857,10857,10857,10859,10859, 0,10859,10859,10859, 10859,10859,10859,10859,10859,10859, 0,10859,10859, 0, 0, 0, 0, 0, 0, 0, 0, 0,10859,10859, 10859,10859,10859,10859,10859,10859, 0, 0, 0, 0, 10859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10859,10859, 10859,10867,10867, 0,10867,10867,10867,10867,10867,10867, 10867,10867,10867, 0,10867,10867, 0, 0, 0, 0, 0, 0, 0, 0, 0,10867,10867,10867,10867,10867, 10867,10867, 0, 0, 0, 0, 0,10867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10867,10867,10867,10867,10868, 10868, 0,10868,10868,10868,10868,10868,10868,10868,10868, 10868, 0,10868,10868, 0, 0, 0, 0, 0, 0, 0, 0, 0,10868,10868,10868,10868,10868,10868,10868, 10868, 0, 0, 0, 0,10868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10868,10868,10868,10868,10869,10869, 0, 10869,10869,10869,10869,10869,10869,10869,10869,10869, 0, 10869,10869, 0, 0, 0, 0, 0, 0, 0, 0, 0,10869,10869,10869,10869,10869,10869,10869, 0, 0, 0, 0, 0,10869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10869,10869,10869,10871,10871, 0,10871,10871,10871, 10871,10871,10871,10871,10871,10871, 0,10871,10871, 0, 0, 0, 0, 0, 0, 0, 0, 0,10871,10871, 10871,10871,10871,10871,10871,10871, 0, 0, 0, 0, 10871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10871,10871, 10871,10873,10873, 0,10873,10873,10873,10873,10873,10873, 10873,10873,10873, 0,10873,10873, 0, 0, 0, 0, 0, 0, 0, 0, 0,10873,10873,10873,10873,10873, 10873,10873, 0, 0, 0, 0, 0,10873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10873,10873,10873,10873,10874, 10874, 0,10874,10874,10874,10874,10874,10874,10874,10874, 10874, 0,10874,10874, 0, 0, 0, 0, 0, 0, 0, 0, 0,10874,10874,10874,10874,10874,10874,10874, 10874, 0, 0, 0, 0,10874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10874,10874,10874,10874,10875,10875, 0, 10875,10875,10875,10875,10875,10875,10875,10875,10875, 0, 10875,10875, 0, 0, 0, 0, 0, 0, 0, 0, 0,10875,10875,10875,10875,10875,10875,10875, 0, 0, 0, 0, 0,10875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10875,10875,10875,10877,10877, 0,10877,10877,10877, 10877,10877,10877,10877,10877,10877, 0,10877,10877, 0, 0, 0, 0, 0, 0, 0, 0, 0,10877,10877, 10877,10877,10877,10877,10877, 0, 0, 0, 0, 0, 10877, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10877,10877, 10877,10877,10878,10878, 0,10878,10878,10878,10878,10878, 10878,10878,10878,10878, 0,10878,10878, 0, 0, 0, 0, 0, 0, 0, 0, 0,10878,10878,10878,10878, 10878,10878,10878,10878, 0, 0, 0, 0,10878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10878,10878,10878,10878, 10879,10879, 0,10879,10879,10879,10879,10879,10879,10879, 10879,10879, 0,10879,10879, 0, 0, 0, 0, 0, 0, 0, 0, 0,10879,10879,10879,10879,10879,10879, 10879, 0, 0, 0, 0, 0,10879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10879, 0, 0, 0,10879,10879,10879,10879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10879,10880, 10880, 0,10880,10880,10880,10880,10880,10880,10880,10880, 10880, 0,10880,10880, 0, 0, 0, 0, 0, 0, 0, 0, 0,10880,10880,10880,10880,10880,10880,10880, 0, 0, 0, 0, 0,10880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10880,10880,10880,10881,10881, 0,10881, 10881,10881,10881,10881,10881,10881,10881,10881, 0,10881, 10881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10881,10881,10881,10881,10881,10881,10881,10881, 0, 0, 0, 0,10881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10881,10881,10881,10882,10882, 0,10882,10882,10882,10882, 10882,10882,10882,10882,10882, 0,10882,10882, 0, 0, 0, 0, 0, 0, 0, 0, 0,10882,10882,10882, 10882,10882,10882,10882, 0, 0, 0, 0, 0,10882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10882,10882,10882, 10882,10883,10883, 0,10883,10883,10883,10883,10883,10883, 10883,10883,10883, 0,10883,10883, 0, 0, 0, 0, 0, 0, 0, 0, 0,10883,10883,10883,10883,10883, 10883,10883,10883, 0, 0, 0, 0,10883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10883,10883,10883,10883,10884, 10884, 0,10884,10884,10884,10884,10884,10884,10884,10884, 10884, 0,10884,10884, 0, 0, 0, 0, 0, 0, 0, 0, 0,10884,10884,10884,10884,10884,10884,10884, 0, 0, 0, 0, 0,10884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10884, 0, 0, 0,10884,10884,10884,10884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10884,10885,10885, 0,10885,10885,10885,10885,10885,10885,10885,10885,10885, 0,10885,10885, 0, 0, 0, 0, 0, 0, 0, 0, 0,10885,10885,10885,10885,10885,10885,10885, 0, 0, 0, 0, 0,10885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10885,10885,10885,10888,10888, 0,10888,10888, 10888,10888,10888,10888,10888,10888,10888, 0,10888,10888, 10888,10888,10888,10888,10888,10888, 0, 0, 0,10888, 10888,10888,10888,10888,10888,10888, 0, 0, 0, 0, 0,10888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10888, 10888,10888,10888,10890,10890, 0,10890,10890,10890,10890, 10890, 0, 0,10890,10890,10890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10890,10890, 10890,10890,10890,10890, 0, 0, 0, 0, 0,10890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10890,10890,10890, 10890, 0, 0, 0, 0, 0, 0, 0, 0,10890, 10891,10891, 0,10891,10891,10891,10891,10891,10891,10891, 10891,10891,10891,10891,10891,10891,10891,10891,10891,10891, 10891,10891,10891,10891,10891,10891,10891,10891,10891,10891, 10891,10891,10891,10891,10891,10891,10891,10891,10891,10891, 10891,10891,10891,10891,10891,10891,10891,10891,10891,10891, 10891,10891,10891,10891,10891,10891,10891,10891,10891,10891, 10891,10891,10891,10891,10891,10891,10891,10891,10891,10891, 10891,10891,10891,10891,10891,10891,10891,10891,10891,10891, 10891,10891,10891,10896,10896,10896,10896,10896,10896,10896, 10896,10896, 0, 0, 0, 0, 0, 0, 0,10896, 10896,10896,10896,10896,10896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10896,10896,10896,10896, 10896,10896,10899,10899, 0,10899,10899,10899,10899,10899, 10899,10899,10899,10899, 0,10899,10899, 0, 0, 0, 0, 0, 0, 0, 0, 0,10899,10899,10899,10899, 10899,10899,10899, 0, 0, 0, 0, 0,10899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10899,10899,10899,10899, 10900,10900, 0,10900,10900,10900,10900,10900,10900,10900, 10900,10900, 0,10900,10900, 0, 0, 0, 0, 0, 0, 0, 0, 0,10900,10900,10900,10900,10900,10900, 10900,10900, 0, 0, 0, 0,10900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10900,10900,10900,10900,10903,10903, 0,10903,10903,10903,10903,10903,10903,10903,10903,10903, 0,10903,10903, 0, 0, 0, 0, 0, 0, 0, 0, 0,10903,10903,10903,10903,10903,10903,10903, 0, 0, 0, 0, 0,10903, 0, 0,10903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10903,10903,10903,10903,10904,10904, 0,10904, 10904,10904,10904,10904,10904,10904,10904,10904,10904,10904, 10904,10904,10904,10904,10904,10904,10904,10904,10904,10904, 10904,10904,10904,10904,10904,10904,10904,10904,10904,10904, 10904,10904,10904,10904,10904,10904,10904,10904,10904,10904, 10904,10904,10904,10904,10904,10904,10904,10904,10904,10904, 10904,10904,10904,10904,10904,10904,10904,10904,10904,10904, 10904,10904,10904,10904,10904,10904,10904,10904,10904,10904, 10904,10904,10904,10904,10904,10904,10904,10904,10904,10906, 10906, 0,10906,10906,10906,10906,10906,10906,10906,10906, 10906, 0,10906,10906, 0, 0, 0, 0, 0, 0, 0, 0, 0,10906,10906,10906,10906,10906,10906,10906, 0, 0, 0, 0, 0,10906, 0, 0, 0, 0, 0,10906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10906,10906,10906,10907,10907, 0,10907, 10907,10907,10907,10907,10907,10907,10907,10907, 0,10907, 10907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10907,10907,10907,10907,10907,10907,10907, 0, 0, 0, 0, 0,10907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10907,10907,10907,10908,10908, 0,10908,10908,10908,10908, 10908,10908,10908,10908,10908, 0,10908,10908, 0, 0, 0, 0, 0, 0, 0, 0, 0,10908,10908,10908, 10908,10908,10908,10908,10908, 0, 0, 0, 0,10908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10908,10908,10908, 10910,10910, 0,10910,10910,10910,10910,10910,10910,10910, 10910,10910, 0,10910,10910, 0, 0, 0, 0, 0, 0, 0, 0, 0,10910,10910,10910,10910,10910,10910, 10910, 0, 0, 0, 0, 0,10910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10910,10910,10910,10911,10911, 0, 10911,10911,10911,10911,10911,10911,10911,10911,10911, 0, 10911,10911, 0, 0, 0, 0, 0, 0, 0, 0, 0,10911,10911,10911,10911,10911,10911,10911,10911, 0, 0, 0, 0,10911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10911,10911,10911,10912,10912, 0,10912,10912,10912, 10912,10912,10912,10912,10912,10912, 0,10912,10912, 0, 0, 0, 0, 0, 0, 0, 0, 0,10912,10912, 10912,10912,10912,10912,10912, 0, 0, 0, 0, 0, 10912,10912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10912,10912, 10912, 0, 0, 0, 0, 0, 0, 0,10912,10913, 10913, 0,10913,10913,10913,10913,10913,10913,10913,10913, 10913, 0,10913,10913, 0, 0, 0, 0, 0, 0, 0, 0, 0,10913,10913,10913,10913,10913,10913,10913, 0, 0, 0, 0, 0,10913,10913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10913,10913,10913, 0, 0, 0, 0, 0, 0, 0,10913,10914,10914, 0,10914,10914,10914, 10914,10914,10914,10914,10914,10914, 0,10914,10914, 0, 0, 0, 0, 0, 0, 0, 0, 0,10914,10914, 10914,10914,10914,10914,10914, 0, 0, 0, 0, 0, 10914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10914,10914, 10914,10914,10915,10915, 0,10915,10915,10915,10915,10915, 10915,10915,10915,10915, 0,10915,10915, 0, 0, 0, 0, 0, 0, 0, 0, 0,10915,10915,10915,10915, 10915,10915,10915,10915, 0, 0, 0, 0,10915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10915,10915,10915,10915, 10916,10916, 0,10916,10916,10916,10916,10916,10916,10916, 10916,10916, 0,10916,10916, 0, 0, 0, 0, 0, 0, 0, 0, 0,10916,10916,10916,10916,10916,10916, 10916, 0, 0, 0, 0, 0,10916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10916,10916,10916,10918,10918, 0, 10918,10918,10918,10918,10918,10918,10918,10918,10918, 0, 10918,10918, 0, 0, 0, 0, 0, 0, 0, 0, 0,10918,10918,10918,10918,10918,10918,10918,10918, 0, 0, 0, 0,10918, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10918,10918,10918,10921,10921, 0,10921,10921,10921, 10921,10921,10921,10921,10921,10921, 0,10921,10921, 0, 0, 0, 0, 0, 0, 0, 0, 0,10921,10921, 10921,10921,10921,10921,10921, 0, 0, 0, 0, 0, 10921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10921,10921, 10921,10921,10925,10925,10925,10925,10925,10925,10925,10925, 10925,10925, 0, 0, 0, 0, 0, 0,10925,10925, 10925,10925,10925,10925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10925,10925,10925,10925,10925, 10925,10928,10928,10928,10928,10928,10928,10928,10928,10928, 10928, 0, 0, 0, 0, 0, 0,10928,10928,10928, 10928,10928,10928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10928,10928,10928,10928,10928,10928, 10930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10930,10930,10930,10930,10930,10930,10930,10930,10930, 0, 0, 0, 0, 0, 0, 0,10930,10930,10930, 10930,10930,10930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10930,10930,10930,10930,10930,10930, 10934,10934,10934,10934,10934,10934,10934,10934,10934,10934, 0, 0, 0, 0, 0, 0,10934,10934,10934,10934, 10934,10934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10934,10934,10934,10934,10934,10934,10936, 10936,10936,10936,10936,10936,10936,10936,10936, 0, 0, 0, 0, 0, 0, 0,10936,10936,10936,10936,10936, 10936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10936,10936,10936,10936,10936,10936,10944,10944, 10944,10944,10944,10944,10944,10944,10944,10944, 0, 0, 0, 0, 0, 0,10944,10944,10944,10944,10944,10944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10944,10944,10944,10944,10944,10944,10947,10947,10947, 10947,10947,10947,10947,10947,10947,10947, 0, 0, 0, 0, 0, 0,10947,10947,10947,10947,10947,10947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10947,10947,10947,10947,10947,10947,10955,10955, 0,10955, 10955,10955,10955,10955,10955,10955,10955,10955, 0,10955, 10955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10955,10955,10955,10955,10955,10955,10955, 0, 0, 0, 0, 0,10955, 0, 0, 0, 0, 0,10955, 0, 0, 0, 0, 0,10955, 0, 0, 0, 0, 0, 10955,10955,10955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10955,10956,10956, 0,10956,10956,10956,10956, 10956,10956,10956,10956,10956, 0,10956,10956, 0, 0, 0, 0, 0, 0, 0, 0, 0,10956,10956,10956, 10956,10956,10956,10956, 0, 0, 0, 0, 0,10956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10956,10956,10956, 10956,10957,10957, 0,10957,10957,10957,10957,10957,10957, 10957,10957,10957, 0,10957,10957, 0, 0, 0, 0, 0, 0, 0, 0, 0,10957,10957,10957,10957,10957, 10957,10957,10957, 0, 0, 0, 0,10957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10957,10957,10957,10957,10958, 10958, 0,10958,10958,10958,10958,10958,10958,10958,10958, 10958, 0,10958,10958, 0, 0, 0, 0, 0, 0, 0, 0, 0,10958,10958,10958,10958,10958,10958,10958, 0, 0, 0, 0, 0,10958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10958,10958,10958,10960,10960, 0,10960, 10960,10960,10960,10960,10960,10960,10960,10960, 0,10960, 10960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10960,10960,10960,10960,10960,10960,10960,10960, 0, 0, 0, 0,10960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10960,10960,10960,10964,10964, 0,10964,10964,10964,10964, 10964,10964,10964,10964,10964, 0,10964,10964, 0, 0, 0, 0, 0, 0, 0, 0, 0,10964,10964,10964, 10964,10964,10964,10964, 0, 0, 0, 0, 0,10964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10964,10964,10964, 10964,10965,10965, 0,10965,10965,10965,10965,10965,10965, 10965,10965,10965, 0,10965,10965, 0, 0, 0, 0, 0, 0, 0, 0, 0,10965,10965,10965,10965,10965, 10965,10965,10965, 0, 0, 0, 0,10965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10965,10965,10965,10965,10966, 10966, 0,10966,10966,10966,10966,10966,10966,10966,10966, 10966, 0,10966,10966, 0, 0, 0, 0, 0, 0, 0, 0, 0,10966,10966,10966,10966,10966,10966,10966, 0, 0, 0, 0, 0,10966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10966,10966,10966,10968,10968, 0,10968, 10968,10968,10968,10968,10968,10968,10968,10968, 0,10968, 10968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10968,10968,10968,10968,10968,10968,10968,10968, 0, 0, 0, 0,10968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10968,10968,10968,10970,10970, 0,10970,10970,10970,10970, 10970,10970,10970,10970,10970, 0,10970,10970, 0, 0, 0, 0, 0, 0, 0, 0, 0,10970,10970,10970, 10970,10970,10970,10970, 0, 0, 0, 0, 0,10970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10970,10970,10970, 10970,10971,10971, 0,10971,10971,10971,10971,10971,10971, 10971,10971,10971, 0,10971,10971, 0, 0, 0, 0, 0, 0, 0, 0, 0,10971,10971,10971,10971,10971, 10971,10971,10971, 0, 0, 0, 0,10971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10971,10971,10971,10971,10972, 10972, 0,10972,10972,10972,10972,10972,10972,10972,10972, 10972, 0,10972,10972, 0, 0, 0, 0, 0, 0, 0, 0, 0,10972,10972,10972,10972,10972,10972,10972, 0, 0, 0, 0, 0,10972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10972,10972,10972,10974,10974, 0,10974, 10974,10974,10974,10974,10974,10974,10974,10974, 0,10974, 10974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10974,10974,10974,10974,10974,10974,10974, 0, 0, 0, 0, 0,10974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10974,10974,10974,10974,10975,10975, 0,10975,10975,10975, 10975,10975,10975,10975,10975,10975, 0,10975,10975, 0, 0, 0, 0, 0, 0, 0, 0, 0,10975,10975, 10975,10975,10975,10975,10975,10975, 0, 0, 0, 0, 10975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10975,10975, 10975,10975,10976,10976, 0,10976,10976,10976,10976,10976, 10976,10976,10976,10976,10976,10976,10976, 0, 0, 0, 0, 0, 0, 0, 0, 0,10976,10976,10976,10976, 10976,10976,10976,10976, 0, 0, 0, 0,10976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10976,10976,10976,10976, 10976,10977,10977, 0,10977,10977,10977,10977,10977,10977, 10977,10977,10977, 0,10977,10977, 0, 0, 0, 0, 0, 0, 0, 0, 0,10977,10977,10977,10977,10977, 10977,10977, 0, 0, 0, 0, 0,10977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10977,10977,10977,10978,10978, 0,10978,10978,10978,10978,10978,10978,10978,10978,10978, 0,10978,10978, 0, 0, 0, 0, 0, 0, 0, 0, 0,10978,10978,10978,10978,10978,10978,10978,10978, 0, 0, 0, 0,10978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10978,10978,10978,10980,10980, 0,10980,10980, 10980,10980,10980,10980,10980,10980,10980, 0,10980,10980, 0, 0, 0, 0, 0, 0, 0, 0, 0,10980, 10980,10980,10980,10980,10980,10980, 0, 0, 0, 0, 0,10980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10980, 10980,10980,10980,10981,10981, 0,10981,10981,10981,10981, 10981,10981,10981,10981,10981, 0,10981,10981, 0, 0, 0, 0, 0, 0, 0, 0, 0,10981,10981,10981, 10981,10981,10981,10981,10981, 0, 0, 0, 0,10981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10981,10981,10981, 10981,10982,10982, 0,10982,10982,10982,10982,10982,10982, 10982,10982,10982, 0,10982,10982, 0, 0, 0, 0, 0, 0, 0, 0, 0,10982,10982,10982,10982,10982, 10982,10982, 0, 0, 0, 0, 0,10982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10982,10982,10982,10984,10984, 0,10984,10984,10984,10984,10984,10984,10984,10984,10984, 0,10984,10984, 0, 0, 0, 0, 0, 0, 0, 0, 0,10984,10984,10984,10984,10984,10984,10984, 0, 0, 0, 0, 0,10984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10984,10984,10984,10984,10985,10985, 0,10985, 10985,10985,10985,10985,10985,10985,10985,10985, 0,10985, 10985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10985,10985,10985,10985,10985,10985,10985,10985, 0, 0, 0, 0,10985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10985,10985,10985,10985,10986,10986, 0,10986,10986,10986, 10986,10986,10986,10986,10986,10986,10986,10986,10986, 0, 0, 0, 0, 0, 0, 0, 0, 0,10986,10986, 10986,10986,10986,10986,10986,10986, 0, 0, 0, 0, 10986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10986,10986, 10986,10986,10986,10987,10987, 0,10987,10987,10987,10987, 10987,10987,10987,10987,10987, 0,10987,10987, 0, 0, 0, 0, 0, 0, 0, 0, 0,10987,10987,10987, 10987,10987,10987,10987, 0, 0, 0, 0, 0,10987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10987,10987,10987, 10988,10988, 0,10988,10988,10988,10988,10988,10988,10988, 10988,10988, 0,10988,10988, 0, 0, 0, 0, 0, 0, 0, 0, 0,10988,10988,10988,10988,10988,10988, 10988,10988, 0, 0, 0, 0,10988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10988,10988,10988,10990,10990, 0, 10990,10990,10990,10990,10990,10990,10990,10990,10990, 0, 10990,10990, 0, 0, 0, 0, 0, 0, 0, 0, 0,10990,10990,10990,10990,10990,10990,10990, 0, 0, 0, 0, 0,10990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10990,10990,10990,10990, 0, 0, 0, 0, 0, 0, 0,10990,10991,10991, 0,10991,10991,10991,10991, 10991,10991,10991,10991,10991, 0,10991,10991, 0, 0, 0, 0, 0, 0, 0, 0, 0,10991,10991,10991, 10991,10991,10991,10991, 0, 0, 0, 0, 0,10991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10991,10991,10991, 10991,10992,10992, 0,10992,10992,10992,10992,10992,10992, 10992,10992,10992, 0,10992,10992, 0, 0, 0, 0, 0, 0, 0, 0, 0,10992,10992,10992,10992,10992, 10992,10992,10992, 0, 0, 0, 0,10992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10992,10992,10992,10992,10993, 10993, 0,10993,10993,10993,10993,10993,10993,10993,10993, 10993, 0,10993,10993, 0, 0, 0, 0, 0, 0, 0, 0, 0,10993,10993,10993,10993,10993,10993,10993, 0, 0, 0, 0, 0,10993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10993,10993,10993,10995,10995, 0,10995, 10995,10995,10995,10995,10995,10995,10995,10995, 0,10995, 10995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10995,10995,10995,10995,10995,10995,10995,10995, 0, 0, 0, 0,10995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10995,10995,10995,10998,10998, 0,10998,10998,10998,10998, 10998,10998,10998,10998,10998, 0,10998,10998, 0, 0, 0, 0, 0, 0, 0, 0, 0,10998,10998,10998, 10998,10998,10998,10998, 0, 0, 0, 0, 0,10998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10998,10998,10998, 10999,10999, 0,10999,10999,10999,10999,10999,10999,10999, 10999,10999, 0,10999,10999, 0, 0, 0, 0, 0, 0, 0, 0, 0,10999,10999,10999,10999,10999,10999, 10999, 0, 0, 0, 0, 0,10999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10999, 0, 0, 0, 0, 0,10999,10999,10999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,10999,11000,11000, 0, 11000,11000,11000,11000,11000,11000,11000,11000,11000, 0, 11000,11000, 0, 0, 0, 0, 0, 0, 0, 0, 0,11000,11000,11000,11000,11000,11000,11000,11000, 0, 0, 0, 0,11000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11000,11000,11000,11003,11003, 0,11003,11003,11003, 11003,11003,11003,11003,11003,11003, 0,11003,11003, 0, 0, 0, 0, 0, 0, 0, 0, 0,11003,11003, 11003,11003,11003,11003,11003, 0, 0, 0, 0, 0, 11003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11003,11003, 11003,11004,11004, 0,11004,11004,11004,11004,11004,11004, 11004,11004,11004, 0,11004,11004, 0, 0, 0, 0, 0, 0, 0, 0, 0,11004,11004,11004,11004,11004, 11004,11004,11004, 0, 0, 0, 0,11004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11004,11004,11004,11006,11006, 0,11006,11006,11006,11006,11006,11006,11006,11006,11006, 0,11006,11006, 0, 0, 0, 0, 0, 0, 0, 0, 0,11006,11006,11006,11006,11006,11006,11006, 0, 0, 0, 0, 0,11006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11006,11006,11006,11007,11007, 0,11007,11007, 11007,11007,11007,11007,11007,11007,11007, 0,11007,11007, 0, 0, 0, 0, 0, 0, 0, 0, 0,11007, 11007,11007,11007,11007,11007,11007,11007, 0, 0, 0, 0,11007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11007, 11007,11007,11008,11008, 0,11008,11008,11008,11008,11008, 11008,11008,11008,11008, 0,11008,11008, 0, 0, 0, 0, 0, 0, 0, 0, 0,11008,11008,11008,11008, 11008,11008,11008, 0, 0, 0, 0, 0,11008,11008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11008,11008,11008, 0, 0, 0, 0, 0, 0, 0,11008,11009,11009, 0, 11009,11009,11009,11009,11009,11009,11009,11009,11009, 0, 11009,11009, 0,11009,11009,11009,11009,11009,11009,11009, 11009,11009,11009,11009,11009,11009,11009,11009, 0, 0, 0, 0, 0,11009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11009,11009,11009,11010,11010, 0,11010,11010,11010, 11010,11010,11010,11010,11010,11010, 0,11010,11010, 0, 0, 0, 0, 0, 0, 0, 0, 0,11010,11010, 11010,11010,11010,11010,11010, 0, 0, 0, 0, 0, 11010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11010,11010, 11010,11011,11011, 0,11011,11011,11011,11011,11011,11011, 11011,11011,11011, 0,11011,11011, 0, 0, 0, 0, 0, 0, 0, 0, 0,11011,11011,11011,11011,11011, 11011,11011, 0, 0, 0, 0, 0,11011,11011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11011,11011,11011, 0, 0, 0, 0, 0, 0, 0,11011,11015,11015, 0,11015, 11015,11015,11015,11015,11015,11015,11015,11015, 0,11015, 11015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11015,11015,11015,11015,11015,11015,11015, 0, 0, 0, 0, 0,11015, 0, 0, 0, 0, 0,11015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11015,11015,11015,11015,11016,11016, 0,11016,11016,11016, 11016,11016,11016,11016,11016,11016,11016,11016,11016,11016, 11016,11016,11016,11016,11016,11016,11016,11016,11016,11016, 11016,11016,11016,11016,11016,11016,11016,11016,11016,11016, 11016,11016,11016,11016,11016,11016,11016,11016,11016,11016, 11016,11016,11016,11016,11016,11016,11016,11016,11016,11016, 11016,11016,11016,11016,11016,11016,11016,11016,11016,11016, 11016,11016,11016,11016,11016,11016,11016,11016,11016,11016, 11016,11016,11016,11016,11016,11016,11016,11018,11018, 0, 11018,11018,11018,11018,11018,11018,11018,11018,11018, 0, 11018,11018, 0, 0, 0, 0, 0, 0, 0, 0, 0,11018,11018,11018,11018,11018,11018,11018, 0, 0, 0, 0, 0,11018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11018,11018,11018,11019,11019, 0,11019,11019,11019, 11019,11019,11019,11019,11019,11019, 0,11019,11019, 0, 0, 0, 0, 0, 0, 0, 0, 0,11019,11019, 11019,11019,11019,11019,11019,11019, 0, 0, 0, 0, 11019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11019,11019, 11019,11020,11020, 0,11020,11020,11020,11020,11020,11020, 11020,11020,11020, 0,11020,11020, 0, 0, 0, 0, 0, 0, 0, 0, 0,11020,11020,11020,11020,11020, 11020,11020, 0, 0, 0, 0, 0,11020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11020,11020,11020,11021,11021, 0,11021,11021,11021,11021,11021,11021,11021,11021,11021, 0,11021,11021, 0, 0, 0, 0, 0, 0, 0, 0, 0,11021,11021,11021,11021,11021,11021,11021,11021, 0, 0, 0, 0,11021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11021,11021,11021,11022,11022, 0,11022,11022, 11022,11022,11022,11022,11022,11022,11022, 0,11022,11022, 0, 0, 0, 0, 0, 0, 0, 0, 0,11022, 11022,11022,11022,11022,11022,11022, 0, 0, 0, 0, 0,11022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11022, 0, 0, 0, 0, 0,11022, 11022,11022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11022,11026,11026, 0,11026,11026,11026,11026,11026, 11026,11026,11026,11026, 0,11026,11026, 0, 0, 0, 0, 0, 0, 0, 0, 0,11026,11026,11026,11026, 11026,11026,11026, 0, 0, 0, 0, 0,11026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11026,11026,11026,11027, 11027, 0,11027,11027,11027,11027,11027,11027,11027,11027, 11027, 0,11027,11027, 0, 0, 0, 0, 0, 0, 0, 0, 0,11027,11027,11027,11027,11027,11027,11027, 11027, 0, 0, 0, 0,11027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11027,11027,11027,11028,11028, 0,11028, 11028,11028,11028,11028,11028,11028,11028,11028, 0,11028, 11028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11028,11028,11028,11028,11028,11028,11028, 0, 0, 0, 0, 0,11028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11028,11028,11028,11029,11029, 0,11029,11029,11029,11029, 11029,11029,11029,11029,11029, 0,11029,11029, 0, 0, 0, 0, 0, 0, 0, 0, 0,11029,11029,11029, 11029,11029,11029,11029,11029, 0, 0, 0, 0,11029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11029,11029,11029, 11033,11033, 0,11033,11033,11033,11033,11033,11033,11033, 11033,11033, 0,11033,11033, 0, 0, 0, 0, 0, 0, 0, 0, 0,11033,11033,11033,11033,11033,11033, 11033, 0, 0, 0, 0, 0,11033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11033,11033,11033,11034,11034, 0, 11034,11034,11034,11034,11034,11034,11034,11034,11034, 0, 11034,11034, 0, 0, 0, 0, 0, 0, 0, 0, 0,11034,11034,11034,11034,11034,11034,11034,11034, 0, 0, 0, 0,11034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11034,11034,11034,11037,11037, 0,11037,11037,11037, 11037,11037,11037,11037,11037,11037, 0,11037,11037, 0, 0, 0, 0, 0, 0, 0, 0, 0,11037,11037, 11037,11037,11037,11037,11037, 0, 0, 0, 0, 0, 11037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11037,11037, 11037,11038,11038, 0,11038,11038,11038,11038,11038,11038, 11038,11038,11038, 0,11038,11038, 0, 0, 0, 0, 0, 0, 0, 0, 0,11038,11038,11038,11038,11038, 11038,11038,11038, 0, 0, 0, 0,11038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11038,11038,11038,11040,11040, 0,11040,11040,11040,11040,11040,11040,11040,11040,11040, 0,11040,11040, 0, 0, 0, 0, 0, 0, 0, 0, 0,11040,11040,11040,11040,11040,11040,11040, 0, 0, 0, 0, 0,11040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11040,11040,11040,11041,11041, 0,11041,11041, 11041,11041,11041,11041,11041,11041,11041, 0,11041,11041, 0, 0, 0, 0, 0, 0, 0, 0, 0,11041, 11041,11041,11041,11041,11041,11041,11041, 0, 0, 0, 0,11041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11041, 11041,11041,11042,11042, 0,11042,11042,11042,11042,11042, 11042,11042,11042,11042, 0,11042,11042, 0, 0, 0, 0, 0, 0, 0, 0, 0,11042,11042,11042,11042, 11042,11042,11042, 0, 0, 0, 0, 0,11042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11042, 0, 0, 0,11042,11042,11042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11042,11043,11043, 0,11043,11043,11043,11043,11043,11043, 11043,11043,11043, 0,11043,11043, 0, 0, 0, 0, 0, 0, 0, 0, 0,11043,11043,11043,11043,11043, 11043,11043, 0, 0, 0, 0, 0,11043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11043,11043,11043,11044,11044, 0,11044,11044,11044,11044,11044,11044,11044,11044,11044, 0,11044,11044,11044,11044,11044,11044,11044,11044,11044, 11044,11044,11044,11044,11044,11044,11044,11044,11044, 0, 0, 0, 0, 0,11044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11044,11044,11044,11046,11046, 0,11046,11046, 11046,11046,11046,11046,11046,11046,11046, 0,11046,11046, 0, 0, 0, 0, 0, 0, 0, 0, 0,11046, 11046,11046,11046,11046,11046,11046, 0, 0, 0, 0, 0,11046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11046, 11046,11046,11047,11047, 0,11047,11047,11047,11047,11047, 11047,11047,11047,11047, 0,11047,11047, 0, 0, 0, 0, 0, 0, 0, 0, 0,11047,11047,11047,11047, 11047,11047,11047,11047, 0, 0, 0, 0,11047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11047,11047,11047,11048, 11048, 0,11048,11048,11048,11048,11048,11048,11048,11048, 11048, 0,11048,11048, 0, 0, 0, 0, 0, 0, 0, 0, 0,11048,11048,11048,11048,11048,11048,11048, 0, 0, 0, 0, 0,11048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11048, 0, 0, 0,11048,11048,11048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11048,11049,11049, 0,11049,11049,11049,11049,11049,11049,11049,11049,11049, 0,11049,11049, 0, 0, 0, 0, 0, 0, 0, 0, 0,11049,11049,11049,11049,11049,11049,11049, 0, 0, 0, 0, 0,11049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11049,11049,11049,11049,11050,11050, 0,11050, 11050,11050,11050,11050,11050,11050,11050,11050, 0,11050, 11050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11050,11050,11050,11050,11050,11050,11050,11050, 0, 0, 0, 0,11050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11050,11050,11050,11050,11051,11051, 0,11051,11051,11051, 11051,11051,11051,11051,11051,11051, 0,11051,11051, 0, 0, 0, 0, 0, 0, 0, 0, 0,11051,11051, 11051,11051,11051,11051,11051, 0, 0, 0, 0, 0, 11051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11051,11051, 11051,11053,11053, 0,11053,11053,11053,11053,11053,11053, 11053,11053,11053, 0,11053,11053, 0, 0, 0, 0, 0, 0, 0, 0, 0,11053,11053,11053,11053,11053, 11053,11053,11053, 0, 0, 0, 0,11053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11053,11053,11053,11058,11058, 0,11058,11058,11058,11058,11058,11058,11058,11058,11058, 11058,11058,11058,11058,11058,11058,11058,11058,11058,11058, 11058,11058,11058,11058,11058,11058,11058,11058,11058,11058, 11058,11058,11058,11058,11058,11058,11058,11058,11058,11058, 11058,11058,11058,11058,11058,11058,11058,11058,11058,11058, 11058,11058,11058,11058,11058,11058,11058,11058,11058,11058, 11058,11058,11058,11058,11058,11058,11058,11058,11058,11058, 11058,11058,11058,11058,11058,11058,11058,11058,11058,11058, 11058,11059,11059, 0,11059,11059,11059,11059,11059,11059, 11059,11059,11059,11059,11059,11059,11059,11059,11059,11059, 11059,11059,11059,11059,11059,11059,11059,11059,11059,11059, 11059,11059,11059,11059,11059,11059,11059,11059,11059,11059, 11059,11059,11059,11059,11059,11059,11059,11059,11059,11059, 11059,11059,11059,11059,11059,11059,11059,11059,11059,11059, 11059,11059,11059,11059,11059,11059,11059,11059,11059,11059, 11059,11059,11059,11059,11059,11059,11059,11059,11059,11059, 11059,11059,11059,11059,11067,11067,11067,11067,11067,11067, 11067,11067,11067,11067, 0, 0, 0, 0, 0, 0, 11067,11067,11067,11067,11067,11067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11067,11067,11067, 11067,11067,11067,11069,11069,11069,11069,11069,11069,11069, 11069,11069,11069, 0, 0, 0, 0, 0, 0,11069, 11069,11069,11069,11069,11069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11069,11069,11069,11069, 11069,11069,11072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11072,11072,11072,11072,11072,11072,11072, 11072,11072,11072, 0, 0, 0, 0, 0, 0,11072, 11072,11072,11072,11072,11072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11072,11072,11072,11072, 11072,11072,11078,11078,11078,11078,11078,11078,11078,11078, 11078,11078, 0, 0, 0, 0, 0, 0,11078,11078, 11078,11078,11078,11078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11078,11078,11078,11078,11078, 11078,11081,11081,11081,11081,11081,11081,11081,11081,11081, 11081, 0, 0, 0, 0, 0, 0,11081,11081,11081, 11081,11081,11081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11081,11081,11081,11081,11081,11081, 11094,11094,11094,11094,11094,11094,11094,11094,11094,11094, 0, 0, 0, 0, 0, 0,11094,11094,11094,11094, 11094,11094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11094,11094,11094,11094,11094,11094,11096, 11096,11096,11096,11096,11096,11096,11096,11096, 0, 0, 0, 0, 0, 0, 0,11096,11096,11096,11096,11096, 11096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11096,11096,11096,11096,11096,11096,11104,11104, 0,11104,11104,11104,11104,11104,11104,11104,11104,11104, 11104,11104,11104,11104,11104,11104,11104,11104,11104,11104, 11104,11104,11104,11104,11104,11104,11104,11104,11104,11104, 11104,11104,11104,11104,11104,11104,11104,11104,11104,11104, 11104,11104,11104,11104,11104,11104,11104,11104,11104,11104, 11104,11104,11104,11104,11104,11104,11104,11104,11104,11104, 11104,11104,11104,11104,11104,11104,11104,11104,11104,11104, 11104,11104,11104,11104,11104,11104,11104,11104,11104,11104, 11104,11105,11105, 0,11105,11105,11105,11105,11105,11105, 11105,11105,11105,11105,11105,11105,11105,11105,11105,11105, 11105,11105,11105,11105,11105,11105,11105,11105,11105,11105, 11105,11105,11105,11105,11105,11105,11105,11105,11105,11105, 11105,11105,11105,11105,11105,11105,11105,11105,11105,11105, 11105,11105,11105,11105,11105,11105,11105,11105,11105,11105, 11105,11105,11105,11105,11105,11105,11105,11105,11105,11105, 11105,11105,11105,11105,11105,11105,11105,11105,11105,11105, 11105,11105,11105,11105,11112, 0,11112,11112,11112,11112, 11112,11112,11112,11112,11112,11112, 0, 0, 0, 0, 0, 0,11112,11112,11112,11112,11112,11112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11112, 11112,11112,11112,11112,11112,11114,11114, 0,11114,11114, 11114,11114,11114,11114,11114,11114,11114,11114,11114,11114, 0, 0, 0, 0, 0, 0, 0, 0, 0,11114, 11114,11114,11114,11114,11114,11114, 0, 0, 0, 0, 0,11114, 0, 0, 0, 0, 0,11114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11114, 11114,11114,11114,11115,11115, 0,11115,11115,11115,11115, 11115,11115,11115,11115,11115, 0,11115,11115, 0, 0, 0, 0, 0, 0, 0, 0, 0,11115,11115,11115, 11115,11115,11115,11115, 0, 0, 0, 0, 0,11115, 0, 0, 0, 0, 0, 0, 0, 0,11115, 0, 0, 0, 0, 0, 0, 0, 0,11115,11115,11115, 11116,11116, 0,11116,11116,11116,11116,11116,11116,11116, 11116,11116, 0,11116,11116, 0, 0, 0, 0, 0, 0, 0, 0, 0,11116,11116,11116,11116,11116,11116, 11116, 0, 0, 0, 0, 0,11116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11116,11116,11116,11116,11117,11117, 0,11117,11117,11117,11117,11117,11117,11117,11117,11117, 0,11117,11117, 0, 0, 0, 0, 0, 0, 0, 0, 0,11117,11117,11117,11117,11117,11117,11117,11117, 0, 0, 0, 0,11117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11117,11117,11117,11117,11118,11118, 0,11118, 11118,11118,11118,11118,11118,11118,11118,11118, 0,11118, 11118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11118,11118,11118,11118,11118,11118,11118, 0, 0, 0, 0, 0,11118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11118,11118,11118,11120,11120, 0,11120,11120,11120,11120, 11120,11120,11120,11120,11120, 0,11120,11120, 0, 0, 0, 0, 0, 0, 0, 0, 0,11120,11120,11120, 11120,11120,11120,11120,11120, 0, 0, 0, 0,11120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11120,11120,11120, 11125,11125, 0,11125,11125,11125,11125,11125,11125,11125, 11125,11125, 0,11125,11125, 0, 0, 0, 0, 0, 0, 0, 0, 0,11125,11125,11125,11125,11125,11125, 11125, 0, 0, 0, 0, 0,11125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11125,11125,11125,11125,11126,11126, 0,11126,11126,11126,11126,11126,11126,11126,11126,11126, 0,11126,11126, 0, 0, 0, 0, 0, 0, 0, 0, 0,11126,11126,11126,11126,11126,11126,11126,11126, 0, 0, 0, 0,11126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11126,11126,11126,11126,11127,11127, 0,11127, 11127,11127,11127,11127,11127,11127,11127,11127, 0,11127, 11127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11127,11127,11127,11127,11127,11127,11127, 0, 0, 0, 0, 0,11127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11127,11127,11127,11129,11129, 0,11129,11129,11129,11129, 11129,11129,11129,11129,11129, 0,11129,11129, 0, 0, 0, 0, 0, 0, 0, 0, 0,11129,11129,11129, 11129,11129,11129,11129,11129, 0, 0, 0, 0,11129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11129,11129,11129, 11133,11133, 0,11133,11133,11133,11133,11133,11133,11133, 11133,11133, 0,11133,11133, 0, 0, 0, 0, 0, 0, 0, 0, 0,11133,11133,11133,11133,11133,11133, 11133, 0, 0, 0, 0, 0,11133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11133,11133,11133,11133,11134,11134, 0,11134,11134,11134,11134,11134,11134,11134,11134,11134, 0,11134,11134, 0, 0, 0, 0, 0, 0, 0, 0, 0,11134,11134,11134,11134,11134,11134,11134,11134, 0, 0, 0, 0,11134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11134,11134,11134,11134,11135,11135, 0,11135, 11135,11135,11135,11135,11135,11135,11135,11135, 0,11135, 11135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11135,11135,11135,11135,11135,11135,11135, 0, 0, 0, 0, 0,11135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11135,11135,11135,11137,11137, 0,11137,11137,11137,11137, 11137,11137,11137,11137,11137, 0,11137,11137, 0, 0, 0, 0, 0, 0, 0, 0, 0,11137,11137,11137, 11137,11137,11137,11137,11137, 0, 0, 0, 0,11137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11137,11137,11137, 11139,11139, 0,11139,11139,11139,11139,11139,11139,11139, 11139,11139, 0,11139,11139, 0, 0, 0, 0, 0, 0, 0, 0, 0,11139,11139,11139,11139,11139,11139, 11139, 0, 0, 0, 0, 0,11139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11139,11139,11139,11139,11140,11140, 0,11140,11140,11140,11140,11140,11140,11140,11140,11140, 0,11140,11140, 0, 0, 0, 0, 0, 0, 0, 0, 0,11140,11140,11140,11140,11140,11140,11140,11140, 0, 0, 0, 0,11140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11140,11140,11140,11140,11141,11141, 0,11141, 11141,11141,11141,11141,11141,11141,11141,11141, 0,11141, 11141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11141,11141,11141,11141,11141,11141,11141, 0, 0, 0, 0, 0,11141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11141,11141,11141,11143,11143, 0,11143,11143,11143,11143, 11143,11143,11143,11143,11143, 0,11143,11143, 0, 0, 0, 0, 0, 0, 0, 0, 0,11143,11143,11143, 11143,11143,11143,11143, 0, 0, 0, 0, 0,11143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11143, 0, 0, 0, 0, 0, 0,11143,11143,11143, 11143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11143,11144, 11144, 0,11144,11144,11144,11144,11144,11144,11144,11144, 11144, 0,11144,11144, 0, 0, 0, 0, 0, 0, 0, 0, 0,11144,11144,11144,11144,11144,11144,11144, 0, 0, 0, 0, 0,11144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11144,11144,11144,11144,11145,11145, 0, 11145,11145,11145,11145,11145,11145,11145,11145,11145, 0, 11145,11145, 0, 0, 0, 0, 0, 0, 0, 0, 0,11145,11145,11145,11145,11145,11145,11145,11145, 0, 0, 0, 0,11145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11145,11145,11145,11145,11146,11146, 0,11146,11146, 11146,11146,11146,11146,11146,11146,11146, 0,11146,11146, 0, 0, 0, 0, 0, 0, 0, 0, 0,11146, 11146,11146,11146,11146,11146,11146, 0, 0, 0, 0, 0,11146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11146, 0, 0, 0, 0, 0, 0,11146, 11146,11146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11146,11147,11147, 0,11147,11147,11147,11147,11147,11147, 11147,11147,11147, 0,11147,11147, 0, 0, 0, 0, 0, 0, 0, 0, 0,11147,11147,11147,11147,11147, 11147,11147,11147, 0, 0, 0, 0,11147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11147,11147,11147,11149,11149, 0,11149,11149,11149,11149,11149,11149,11149,11149,11149, 0,11149,11149, 0, 0, 0, 0, 0, 0, 0, 0, 0,11149,11149,11149,11149,11149,11149,11149, 0, 0, 0, 0, 0,11149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11149,11149,11149,11150,11150, 0,11150,11150, 11150,11150,11150,11150,11150,11150,11150, 0,11150,11150, 0, 0, 0, 0, 0, 0, 0, 0, 0,11150, 11150,11150,11150,11150,11150,11150,11150, 0, 0, 0, 0,11150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11150, 11150,11150,11155,11155, 0,11155,11155,11155,11155,11155, 11155,11155,11155,11155, 0,11155,11155, 0, 0, 0, 0, 0, 0, 0, 0, 0,11155,11155,11155,11155, 11155,11155,11155, 0, 0, 0, 0, 0,11155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11155,11155,11155,11155, 11156,11156, 0,11156,11156,11156,11156,11156,11156,11156, 11156,11156, 0,11156,11156, 0, 0, 0, 0, 0, 0, 0, 0, 0,11156,11156,11156,11156,11156,11156, 11156,11156, 0, 0, 0, 0,11156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11156,11156,11156,11156,11157,11157, 0,11157,11157,11157,11157,11157,11157,11157,11157,11157, 0,11157,11157, 0, 0, 0, 0, 0, 0, 0, 0, 0,11157,11157,11157,11157,11157,11157,11157, 0, 0, 0, 0, 0,11157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11157,11157,11157,11159,11159, 0,11159,11159, 11159,11159,11159,11159,11159,11159,11159, 0,11159,11159, 0, 0, 0, 0, 0, 0, 0, 0, 0,11159, 11159,11159,11159,11159,11159,11159,11159, 0, 0, 0, 0,11159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11159, 11159,11159,11161,11161, 0,11161,11161,11161,11161,11161, 11161,11161,11161,11161, 0,11161,11161, 0, 0, 0, 0, 0, 0, 0, 0, 0,11161,11161,11161,11161, 11161,11161,11161, 0, 0, 0, 0, 0,11161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11161,11161,11161,11161, 11162,11162, 0,11162,11162,11162,11162,11162,11162,11162, 11162,11162, 0,11162,11162, 0, 0, 0, 0, 0, 0, 0, 0, 0,11162,11162,11162,11162,11162,11162, 11162,11162, 0, 0, 0, 0,11162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11162,11162,11162,11162,11163,11163, 0,11163,11163,11163,11163,11163,11163,11163,11163,11163, 0,11163,11163, 0, 0, 0, 0, 0, 0, 0, 0, 0,11163,11163,11163,11163,11163,11163,11163, 0, 0, 0, 0, 0,11163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11163,11163,11163,11165,11165, 0,11165,11165, 11165,11165,11165,11165,11165,11165,11165, 0,11165,11165, 0, 0, 0, 0, 0, 0, 0, 0, 0,11165, 11165,11165,11165,11165,11165,11165, 0, 0, 0, 0, 0,11165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11165, 0, 0, 0, 0, 0, 0,11165, 11165,11165,11165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11165,11166,11166, 0,11166,11166,11166,11166,11166,11166, 11166,11166,11166, 0,11166,11166, 0, 0, 0, 0, 0, 0, 0, 0, 0,11166,11166,11166,11166,11166, 11166,11166, 0, 0, 0, 0, 0,11166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11166,11166,11166,11166,11167, 11167, 0,11167,11167,11167,11167,11167,11167,11167,11167, 11167, 0,11167,11167, 0, 0, 0, 0, 0, 0, 0, 0, 0,11167,11167,11167,11167,11167,11167,11167, 11167, 0, 0, 0, 0,11167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11167,11167,11167,11167,11168,11168, 0, 11168,11168,11168,11168,11168,11168,11168,11168,11168, 0, 11168,11168, 0, 0, 0, 0, 0, 0, 0, 0, 0,11168,11168,11168,11168,11168,11168,11168, 0, 0, 0, 0, 0,11168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11168, 0, 0, 0, 0, 0, 0,11168,11168,11168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11168,11169,11169, 0,11169,11169,11169,11169, 11169,11169,11169,11169,11169, 0,11169,11169, 0, 0, 0, 0, 0, 0, 0, 0, 0,11169,11169,11169, 11169,11169,11169,11169,11169, 0, 0, 0, 0,11169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11169,11169,11169, 11171,11171, 0,11171,11171,11171,11171,11171,11171,11171, 11171,11171, 0,11171,11171, 0, 0, 0, 0, 0, 0, 0, 0, 0,11171,11171,11171,11171,11171,11171, 11171, 0, 0, 0, 0, 0,11171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11171,11171,11171,11172,11172, 0, 11172,11172,11172,11172,11172,11172,11172,11172,11172, 0, 11172,11172, 0, 0, 0, 0, 0, 0, 0, 0, 0,11172,11172,11172,11172,11172,11172,11172, 0, 0, 0, 0, 0,11172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11172,11172,11172,11173,11173, 0,11173,11173,11173, 11173,11173,11173,11173,11173,11173, 0,11173,11173, 0, 0, 0, 0, 0, 0, 0, 0, 0,11173,11173, 11173,11173,11173,11173,11173,11173, 0, 0, 0, 0, 11173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11173,11173, 11173,11175,11175, 0,11175,11175,11175,11175,11175,11175, 11175,11175,11175, 0,11175,11175, 0, 0, 0, 0, 0, 0, 0, 0, 0,11175,11175,11175,11175,11175, 11175,11175, 0, 0, 0, 0, 0,11175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11175,11175,11175,11176,11176, 0,11176,11176,11176,11176,11176,11176,11176,11176,11176, 0,11176,11176, 0, 0, 0, 0, 0, 0, 0, 0, 0,11176,11176,11176,11176,11176,11176,11176,11176, 0, 0, 0, 0,11176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11176,11176,11176,11178,11178, 0,11178,11178, 11178,11178,11178,11178,11178,11178,11178, 0,11178,11178, 0, 0, 0, 0, 0, 0, 0, 0, 0,11178, 11178,11178,11178,11178,11178,11178, 0, 0, 0, 0, 0,11178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11178, 11178,11178,11179,11179, 0,11179,11179,11179,11179,11179, 11179,11179,11179,11179, 0,11179,11179, 0, 0, 0, 0, 0, 0, 0, 0, 0,11179,11179,11179,11179, 11179,11179,11179,11179, 0, 0, 0, 0,11179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11179,11179,11179,11180, 11180, 0,11180,11180,11180,11180,11180,11180,11180,11180, 11180, 0,11180,11180, 0, 0, 0, 0, 0, 0, 0, 0, 0,11180,11180,11180,11180,11180,11180,11180, 0, 0, 0, 0, 0,11180, 0,11180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11180,11180,11180, 0, 0, 0, 0, 0, 0, 0, 0,11180,11183,11183, 0,11183,11183, 11183,11183,11183,11183,11183,11183,11183, 0,11183,11183, 0, 0, 0, 0, 0, 0, 0, 0, 0,11183, 11183,11183,11183,11183,11183,11183, 0, 0, 0, 0, 0,11183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11183, 11183,11183,11184,11184, 0,11184,11184,11184,11184,11184, 11184,11184,11184,11184, 0,11184,11184, 0, 0, 0, 0, 0, 0, 0, 0, 0,11184,11184,11184,11184, 11184,11184,11184,11184, 0, 0, 0, 0,11184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11184,11184,11184,11188, 11188, 0,11188,11188,11188,11188,11188,11188,11188,11188, 11188, 0,11188,11188, 0, 0, 0, 0, 0, 0, 0, 0, 0,11188,11188,11188,11188,11188,11188,11188, 0, 0, 0, 0, 0,11188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11188,11188,11188,11189,11189, 0,11189, 11189,11189,11189,11189,11189,11189,11189,11189, 0,11189, 11189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11189,11189,11189,11189,11189,11189,11189,11189, 0, 0, 0, 0,11189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11189,11189,11189,11192,11192, 0,11192,11192,11192,11192, 11192,11192,11192,11192,11192, 0,11192,11192, 0, 0, 0, 0, 0, 0, 0, 0, 0,11192,11192,11192, 11192,11192,11192,11192, 0, 0, 0, 0, 0,11192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11192,11192,11192, 11193,11193, 0,11193,11193,11193,11193,11193,11193,11193, 11193,11193, 0,11193,11193, 0, 0, 0, 0, 0, 0, 0, 0, 0,11193,11193,11193,11193,11193,11193, 11193,11193, 0, 0, 0, 0,11193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11193,11193,11193,11195,11195, 0, 11195,11195,11195,11195,11195,11195,11195,11195,11195, 0, 11195,11195, 0, 0, 0, 0, 0, 0, 0, 0, 0,11195,11195,11195,11195,11195,11195,11195, 0, 0, 0, 0, 0,11195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11195,11195,11195,11196,11196, 0,11196,11196,11196, 11196,11196,11196,11196,11196,11196, 0,11196,11196, 0, 0, 0, 0, 0, 0, 0, 0, 0,11196,11196, 11196,11196,11196,11196,11196,11196, 0, 0, 0, 0, 11196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11196,11196, 11196,11197,11197, 0,11197,11197,11197,11197,11197,11197, 11197,11197,11197,11197,11197,11197, 0, 0, 0, 0, 0, 0, 0, 0, 0,11197,11197,11197,11197,11197, 11197,11197,11197, 0, 0, 0, 0,11197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11197,11197,11197,11197,11197, 11198,11198, 0,11198,11198,11198,11198,11198,11198,11198, 11198,11198, 0,11198,11198, 0, 0, 0, 0, 0, 0, 0, 0, 0,11198,11198,11198,11198,11198,11198, 11198, 0, 0, 0, 0, 0,11198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11198,11198,11198,11199,11199, 0, 11199,11199,11199,11199,11199,11199,11199,11199,11199, 0, 11199,11199, 0, 0, 0, 0, 0, 0, 0, 0, 0,11199,11199,11199,11199,11199,11199,11199,11199, 0, 0, 0, 0,11199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11199,11199,11199,11201,11201, 0,11201,11201,11201, 11201,11201,11201,11201,11201,11201, 0,11201,11201, 0, 0, 0, 0, 0, 0, 0, 0, 0,11201,11201, 11201,11201,11201,11201,11201, 0, 0, 0, 0, 0, 11201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11201,11201, 11201,11202,11202, 0,11202,11202,11202,11202,11202,11202, 11202,11202,11202, 0,11202,11202, 0, 0, 0, 0, 0, 0, 0, 0, 0,11202,11202,11202,11202,11202, 11202,11202,11202, 0, 0, 0, 0,11202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11202,11202,11202,11204,11204, 0,11204,11204,11204,11204,11204,11204,11204,11204,11204, 0,11204,11204, 0, 0, 0, 0, 0, 0, 0, 0, 0,11204,11204,11204,11204,11204,11204,11204, 0, 0, 0, 0, 0,11204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11204,11204,11204,11205,11205, 0,11205,11205, 11205,11205,11205,11205,11205,11205,11205, 0,11205,11205, 0, 0, 0, 0, 0, 0, 0, 0, 0,11205, 11205,11205,11205,11205,11205,11205,11205, 0, 0, 0, 0,11205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11205, 11205,11205,11206,11206, 0,11206,11206,11206,11206,11206, 11206,11206,11206,11206,11206,11206,11206, 0, 0, 0, 0, 0, 0, 0, 0, 0,11206,11206,11206,11206, 11206,11206,11206,11206, 0, 0, 0, 0,11206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11206,11206,11206,11206, 11206,11207,11207, 0,11207,11207,11207,11207,11207,11207, 11207,11207,11207, 0,11207,11207, 0, 0, 0, 0, 0, 0, 0, 0, 0,11207,11207,11207,11207,11207, 11207,11207, 0, 0, 0, 0, 0,11207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11207,11207,11207,11207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11207,11213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11213,11213,11213,11213,11213, 11213,11213,11213,11213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11213, 0, 0, 0, 0,11213,11221,11221, 0,11221,11221, 11221,11221,11221,11221,11221,11221,11221, 0,11221,11221, 0, 0, 0, 0, 0, 0, 0, 0, 0,11221, 11221,11221,11221,11221,11221,11221, 0, 0, 0, 0, 0,11221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11221, 11221,11221,11222,11222, 0,11222,11222,11222,11222,11222, 11222,11222,11222,11222, 0,11222,11222, 0, 0, 0, 0, 0, 0, 0, 0, 0,11222,11222,11222,11222, 11222,11222,11222,11222, 0, 0, 0, 0,11222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11222,11222,11222,11226, 11226, 0,11226,11226,11226,11226,11226,11226,11226,11226, 11226, 0,11226,11226, 0, 0, 0, 0, 0, 0, 0, 0, 0,11226,11226,11226,11226,11226,11226,11226, 0, 0, 0, 0, 0,11226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11226,11226,11226,11227,11227, 0,11227, 11227,11227,11227,11227,11227,11227,11227,11227, 0,11227, 11227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11227,11227,11227,11227,11227,11227,11227,11227, 0, 0, 0, 0,11227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11227,11227,11227,11231,11231, 0,11231,11231,11231,11231, 11231,11231,11231,11231,11231, 0,11231,11231, 0, 0, 0, 0, 0, 0, 0, 0, 0,11231,11231,11231, 11231,11231,11231,11231, 0, 0, 0, 0, 0,11231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11231,11231,11231, 11232,11232, 0,11232,11232,11232,11232,11232,11232,11232, 11232,11232, 0,11232,11232, 0, 0, 0, 0, 0, 0, 0, 0, 0,11232,11232,11232,11232,11232,11232, 11232,11232, 0, 0, 0, 0,11232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11232,11232,11232,11236,11236, 0, 11236,11236,11236,11236,11236,11236,11236,11236,11236, 0, 11236,11236, 0, 0, 0, 0, 0, 0, 0, 0, 0,11236,11236,11236,11236,11236,11236,11236, 0, 0, 0, 0, 0,11236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11236,11236,11236,11237,11237, 0,11237,11237,11237, 11237,11237,11237,11237,11237,11237, 0,11237,11237, 0, 0, 0, 0, 0, 0, 0, 0, 0,11237,11237, 11237,11237,11237,11237,11237,11237, 0, 0, 0, 0, 11237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11237,11237, 11237,11240,11240, 0,11240,11240,11240,11240,11240,11240, 11240,11240,11240, 0,11240,11240, 0, 0, 0, 0, 0, 0, 0, 0, 0,11240,11240,11240,11240,11240, 11240,11240, 0, 0, 0, 0, 0,11240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11240,11240,11240,11241,11241, 0,11241,11241,11241,11241,11241,11241,11241,11241,11241, 0,11241,11241, 0, 0, 0, 0, 0, 0, 0, 0, 0,11241,11241,11241,11241,11241,11241,11241,11241, 0, 0, 0, 0,11241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11241,11241,11241,11243,11243, 0,11243,11243, 11243,11243,11243,11243,11243,11243,11243, 0,11243,11243, 0, 0, 0, 0, 0, 0, 0, 0, 0,11243, 11243,11243,11243,11243,11243,11243, 0, 0, 0, 0, 0,11243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11243, 11243,11243,11244,11244, 0,11244,11244,11244,11244,11244, 11244,11244,11244,11244, 0,11244,11244, 0, 0, 0, 0, 0, 0, 0, 0, 0,11244,11244,11244,11244, 11244,11244,11244,11244, 0, 0, 0, 0,11244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11244,11244,11244,11245, 11245, 0,11245,11245,11245,11245,11245,11245,11245,11245, 11245,11245,11245,11245, 0, 0, 0, 0, 0, 0, 0, 0, 0,11245,11245,11245,11245,11245,11245,11245, 11245, 0, 0, 0, 0,11245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11245,11245,11245,11245,11245,11246,11246, 0,11246,11246,11246,11246,11246,11246,11246,11246,11246, 0,11246,11246, 0, 0, 0, 0, 0, 0, 0, 0, 0,11246,11246,11246,11246,11246,11246,11246, 0, 0, 0, 0, 0,11246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11246,11246,11246,11247,11247, 0,11247,11247, 11247,11247,11247,11247,11247,11247,11247, 0,11247,11247, 0, 0, 0, 0, 0, 0, 0, 0, 0,11247, 11247,11247,11247,11247,11247,11247,11247, 0, 0, 0, 0,11247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11247, 11247,11247,11250,11250, 0,11250,11250,11250,11250,11250, 11250,11250,11250,11250, 0,11250,11250, 0, 0, 0, 0, 0, 0, 0, 0, 0,11250,11250,11250,11250, 11250,11250,11250, 0, 0, 0, 0, 0,11250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11250,11250,11250,11251, 11251, 0,11251,11251,11251,11251,11251,11251,11251,11251, 11251, 0,11251,11251, 0, 0, 0, 0, 0, 0, 0, 0, 0,11251,11251,11251,11251,11251,11251,11251, 11251, 0, 0, 0, 0,11251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11251,11251,11251,11253,11253, 0,11253, 11253,11253,11253,11253,11253,11253,11253,11253, 0,11253, 11253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11253,11253,11253,11253,11253,11253,11253, 0, 0, 0, 0, 0,11253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11253,11253,11253,11254,11254, 0,11254,11254,11254,11254, 11254,11254,11254,11254,11254, 0,11254,11254, 0, 0, 0, 0, 0, 0, 0, 0, 0,11254,11254,11254, 11254,11254,11254,11254,11254, 0, 0, 0, 0,11254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11254,11254,11254, 11255,11255, 0,11255,11255,11255,11255,11255,11255,11255, 11255,11255,11255,11255,11255, 0, 0, 0, 0, 0, 0, 0, 0, 0,11255,11255,11255,11255,11255,11255, 11255,11255, 0, 0, 0, 0,11255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11255,11255,11255,11255,11255,11266, 11266,11266,11266,11266,11266,11266,11266,11266,11266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11266, 0,11266,11271,11271, 0,11271,11271,11271,11271,11271, 11271,11271,11271,11271, 0,11271,11271, 0, 0, 0, 0, 0, 0, 0, 0, 0,11271,11271,11271,11271, 11271,11271,11271, 0, 0, 0, 0, 0,11271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11271,11271,11271,11271, 11276,11276, 0,11276,11276,11276,11276,11276,11276,11276, 11276,11276, 0,11276,11276, 0, 0, 0, 0, 0, 0, 0, 0, 0,11276,11276,11276,11276,11276,11276, 11276, 0, 0, 0, 0, 0,11276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11276,11276,11276,11278,11278,11278, 11278,11278,11278,11278,11278,11278,11278,11278,11278, 0, 11278,11278, 0, 0, 0, 0, 0, 0, 0, 0, 0,11278,11278,11278,11278,11278,11278,11278, 0, 0, 0, 0, 0,11278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11278,11278,11278,11291,11291, 0,11291,11291,11291, 11291,11291,11291,11291,11291,11291, 0,11291,11291, 0, 0, 0, 0, 0, 0, 0, 0, 0,11291,11291, 11291,11291,11291,11291,11291, 0, 0, 0, 0, 0, 11291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11291,11291, 11291,11292,11292, 0,11292,11292,11292,11292,11292,11292, 11292,11292,11292, 0,11292,11292, 0, 0, 0, 0, 0, 0, 0, 0, 0,11292,11292,11292,11292,11292, 11292,11292,11292, 0, 0, 0, 0,11292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11292,11292,11292,11296,11296, 0,11296,11296,11296,11296,11296,11296,11296,11296,11296, 0,11296,11296, 0, 0, 0, 0, 0, 0, 0, 0, 0,11296,11296,11296,11296,11296,11296,11296, 0, 0, 0, 0, 0,11296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11296,11296,11296,11297,11297, 0,11297,11297, 11297,11297,11297,11297,11297,11297,11297, 0,11297,11297, 0, 0, 0, 0, 0, 0, 0, 0, 0,11297, 11297,11297,11297,11297,11297,11297,11297, 0, 0, 0, 0,11297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11297, 11297,11297,11301,11301, 0,11301,11301,11301,11301,11301, 11301,11301,11301,11301, 0,11301,11301, 0, 0, 0, 0, 0, 0, 0, 0, 0,11301,11301,11301,11301, 11301,11301,11301, 0, 0, 0, 0, 0,11301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11301,11301,11301,11302, 11302, 0,11302,11302,11302,11302,11302,11302,11302,11302, 11302, 0,11302,11302, 0, 0, 0, 0, 0, 0, 0, 0, 0,11302,11302,11302,11302,11302,11302,11302, 11302, 0, 0, 0, 0,11302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11302,11302,11302,11306,11306, 0,11306, 11306,11306,11306,11306,11306,11306,11306,11306, 0,11306, 11306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11306,11306,11306,11306,11306,11306,11306, 0, 0, 0, 0, 0,11306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11306,11306,11306,11307,11307, 0,11307,11307,11307,11307, 11307,11307,11307,11307,11307, 0,11307,11307, 0, 0, 0, 0, 0, 0, 0, 0, 0,11307,11307,11307, 11307,11307,11307,11307,11307, 0, 0, 0, 0,11307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11307,11307,11307, 11310,11310, 0,11310,11310,11310,11310,11310,11310,11310, 11310,11310, 0,11310,11310, 0, 0, 0, 0, 0, 0, 0, 0, 0,11310,11310,11310,11310,11310,11310, 11310, 0, 0, 0, 0, 0,11310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11310,11310,11310,11311,11311, 0, 11311,11311,11311,11311,11311,11311,11311,11311,11311, 0, 11311,11311, 0, 0, 0, 0, 0, 0, 0, 0, 0,11311,11311,11311,11311,11311,11311,11311,11311, 0, 0, 0, 0,11311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11311,11311,11311,11313,11313, 0,11313,11313,11313, 11313,11313,11313,11313,11313,11313, 0,11313,11313, 0, 0, 0, 0, 0, 0, 0, 0, 0,11313,11313, 11313,11313,11313,11313,11313, 0, 0, 0, 0, 0, 11313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11313,11313, 11313,11314,11314, 0,11314,11314,11314,11314,11314,11314, 11314,11314,11314, 0,11314,11314, 0, 0, 0, 0, 0, 0, 0, 0, 0,11314,11314,11314,11314,11314, 11314,11314,11314, 0, 0, 0, 0,11314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11314,11314,11314,11315,11315, 0,11315,11315,11315,11315,11315,11315,11315,11315,11315, 0,11315,11315, 0, 0, 0, 0, 0, 0, 0, 0, 0,11315,11315,11315,11315,11315,11315,11315, 0, 0, 0, 0, 0,11315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11315, 0, 0, 0,11315,11315,11315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11315,11316,11316, 0, 11316,11316,11316,11316,11316,11316,11316,11316,11316, 0, 11316,11316, 0, 0, 0, 0, 0, 0, 0, 0, 0,11316,11316,11316,11316,11316,11316,11316, 0, 0, 0, 0, 0,11316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11316,11316,11316,11317,11317, 0,11317,11317,11317, 11317,11317,11317,11317,11317,11317, 0,11317,11317,11317, 11317,11317,11317,11317,11317,11317,11317,11317,11317,11317, 11317,11317,11317,11317,11317, 0, 0, 0, 0, 0, 11317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11317,11317, 11317,11319,11319, 0,11319,11319,11319,11319,11319,11319, 11319,11319,11319, 0,11319,11319, 0, 0, 0, 0, 0, 0, 0, 0, 0,11319,11319,11319,11319,11319, 11319,11319, 0, 0, 0, 0, 0,11319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11319,11319,11319,11320,11320, 0,11320,11320,11320,11320,11320,11320,11320,11320,11320, 0,11320,11320, 0, 0, 0, 0, 0, 0, 0, 0, 0,11320,11320,11320,11320,11320,11320,11320,11320, 0, 0, 0, 0,11320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11320,11320,11320,11321,11321, 0,11321,11321, 11321,11321,11321,11321,11321,11321,11321, 0,11321,11321, 0, 0, 0, 0, 0, 0, 0, 0, 0,11321, 11321,11321,11321,11321,11321,11321, 0, 0, 0, 0, 0,11321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11321, 0, 0, 0,11321, 11321,11321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11321,11332,11332, 0,11332,11332,11332, 11332,11332,11332,11332,11332,11332, 0,11332,11332, 0, 0, 0, 0, 0, 0, 0, 0, 0,11332,11332, 11332,11332,11332,11332,11332, 0, 0, 0, 0, 0, 11332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11332,11332, 11332,11333,11333, 0,11333,11333,11333,11333,11333,11333, 11333,11333,11333, 0,11333,11333, 0, 0, 0, 0, 0, 0, 0, 0, 0,11333,11333,11333,11333,11333, 11333,11333,11333, 0, 0, 0, 0,11333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11333,11333,11333,11347,11347, 0,11347,11347,11347,11347,11347,11347,11347,11347,11347, 0,11347,11347, 0, 0, 0, 0, 0, 0, 0, 0, 0,11347,11347,11347,11347,11347,11347,11347, 0, 0, 0, 0, 0,11347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11347,11347,11347,11348,11348, 0,11348,11348, 11348,11348,11348,11348,11348,11348,11348, 0,11348,11348, 0, 0, 0, 0, 0, 0, 0, 0, 0,11348, 11348,11348,11348,11348,11348,11348,11348, 0, 0, 0, 0,11348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11348, 11348,11348,11390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11390,11390,11390,11390,11390,11390,11390, 11390,11390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11390, 0, 0, 0, 0,11390,11394,11394, 0,11394,11394,11394,11394, 11394,11394,11394,11394,11394, 0,11394,11394, 0, 0, 0, 0, 0, 0, 0, 0, 0,11394,11394,11394, 11394,11394,11394,11394, 0, 0, 0, 0, 0,11394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11394,11394,11394, 11395,11395, 0,11395,11395,11395,11395,11395,11395,11395, 11395,11395, 0,11395,11395, 0, 0, 0, 0, 0, 0, 0, 0, 0,11395,11395,11395,11395,11395,11395, 11395,11395, 0, 0, 0, 0,11395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11395,11395,11395,11399,11399, 0, 11399,11399,11399,11399,11399,11399,11399,11399,11399, 0, 11399,11399, 0, 0, 0, 0, 0, 0, 0, 0, 0,11399,11399,11399,11399,11399,11399,11399, 0, 0, 0, 0, 0,11399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11399,11399,11399,11400,11400, 0,11400,11400,11400, 11400,11400,11400,11400,11400,11400, 0,11400,11400, 0, 0, 0, 0, 0, 0, 0, 0, 0,11400,11400, 11400,11400,11400,11400,11400,11400, 0, 0, 0, 0, 11400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11400,11400, 11400,11402,11402, 0,11402,11402,11402,11402,11402,11402, 11402,11402,11402, 0,11402,11402, 0, 0, 0, 0, 0, 0, 0, 0, 0,11402,11402,11402,11402,11402, 11402,11402, 0, 0, 0, 0, 0,11402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11402,11402,11402,11403,11403, 0,11403,11403,11403,11403,11403,11403,11403,11403,11403, 0,11403,11403, 0, 0, 0, 0, 0, 0, 0, 0, 0,11403,11403,11403,11403,11403,11403,11403,11403, 0, 0, 0, 0,11403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11403,11403,11403,11405,11405, 0,11405,11405, 11405,11405,11405,11405,11405,11405,11405, 0,11405,11405, 0, 0, 0, 0, 0, 0, 0, 0, 0,11405, 11405,11405,11405,11405,11405,11405, 0, 0, 0, 0, 0,11405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11405, 11405,11405,11406,11406, 0,11406,11406,11406,11406,11406, 11406,11406,11406,11406, 0,11406,11406, 0, 0, 0, 0, 0, 0, 0, 0, 0,11406,11406,11406,11406, 11406,11406,11406,11406, 0, 0, 0, 0,11406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11406,11406,11406,11407, 11407, 0,11407,11407,11407,11407,11407,11407,11407,11407, 11407, 0,11407,11407, 0, 0, 0, 0, 0, 0, 0, 0, 0,11407,11407,11407,11407,11407,11407,11407, 0, 0, 0, 0, 0,11407, 0,11407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11407,11407,11407, 0, 0, 0, 0, 0, 0, 0, 0,11407,11410,11410, 0,11410,11410, 11410,11410,11410,11410,11410,11410,11410, 0,11410,11410, 0, 0, 0, 0, 0, 0, 0, 0, 0,11410, 11410,11410,11410,11410,11410,11410, 0, 0, 0, 0, 0,11410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11410, 11410,11410,11411,11411, 0,11411,11411,11411,11411,11411, 11411,11411,11411,11411, 0,11411,11411, 0, 0, 0, 0, 0, 0, 0, 0, 0,11411,11411,11411,11411, 11411,11411,11411,11411, 0, 0, 0, 0,11411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11411,11411,11411,11415, 11415, 0,11415,11415,11415,11415,11415,11415,11415,11415, 11415, 0,11415,11415, 0, 0, 0, 0, 0, 0, 0, 0, 0,11415,11415,11415,11415,11415,11415,11415, 0, 0, 0, 0, 0,11415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11415,11415,11415,11416,11416, 0,11416, 11416,11416,11416,11416,11416,11416,11416,11416, 0,11416, 11416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11416,11416,11416,11416,11416,11416,11416,11416, 0, 0, 0, 0,11416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11416,11416,11416,11419,11419, 0,11419,11419,11419,11419, 11419,11419,11419,11419,11419, 0,11419,11419, 0, 0, 0, 0, 0, 0, 0, 0, 0,11419,11419,11419, 11419,11419,11419,11419, 0, 0, 0, 0, 0,11419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11419,11419,11419, 11420,11420, 0,11420,11420,11420,11420,11420,11420,11420, 11420,11420, 0,11420,11420, 0, 0, 0, 0, 0, 0, 0, 0, 0,11420,11420,11420,11420,11420,11420, 11420,11420, 0, 0, 0, 0,11420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11420,11420,11420,11422,11422, 0, 11422,11422,11422,11422,11422,11422,11422,11422,11422, 0, 11422,11422, 0, 0, 0, 0, 0, 0, 0, 0, 0,11422,11422,11422,11422,11422,11422,11422, 0, 0, 0, 0, 0,11422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11422,11422,11422,11423,11423, 0,11423,11423,11423, 11423,11423,11423,11423,11423,11423, 0,11423,11423, 0, 0, 0, 0, 0, 0, 0, 0, 0,11423,11423, 11423,11423,11423,11423,11423,11423, 0, 0, 0, 0, 11423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11423,11423, 11423,11424,11424, 0,11424,11424,11424,11424,11424,11424, 11424,11424,11424,11424,11424,11424, 0, 0, 0, 0, 0, 0, 0, 0, 0,11424,11424,11424,11424,11424, 11424,11424,11424, 0, 0, 0, 0,11424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11424,11424,11424,11424,11424, 11425,11425, 0,11425,11425,11425,11425,11425,11425,11425, 11425,11425, 0,11425,11425, 0, 0, 0, 0, 0, 0, 0, 0, 0,11425,11425,11425,11425,11425,11425, 11425, 0, 0, 0, 0, 0,11425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11425,11425,11425,11426,11426, 0, 11426,11426,11426,11426,11426,11426,11426,11426,11426, 0, 11426,11426, 0, 0, 0, 0, 0, 0, 0, 0, 0,11426,11426,11426,11426,11426,11426,11426,11426, 0, 0, 0, 0,11426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11426,11426,11426,11429,11429, 0,11429,11429,11429, 11429,11429,11429,11429,11429,11429, 0,11429,11429, 0, 0, 0, 0, 0, 0, 0, 0, 0,11429,11429, 11429,11429,11429,11429,11429, 0, 0, 0, 0, 0, 11429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11429,11429, 11429,11430,11430, 0,11430,11430,11430,11430,11430,11430, 11430,11430,11430, 0,11430,11430, 0, 0, 0, 0, 0, 0, 0, 0, 0,11430,11430,11430,11430,11430, 11430,11430,11430, 0, 0, 0, 0,11430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11430,11430,11430,11432,11432, 0,11432,11432,11432,11432,11432,11432,11432,11432,11432, 0,11432,11432, 0, 0, 0, 0, 0, 0, 0, 0, 0,11432,11432,11432,11432,11432,11432,11432, 0, 0, 0, 0, 0,11432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11432,11432,11432,11433,11433, 0,11433,11433, 11433,11433,11433,11433,11433,11433,11433, 0,11433,11433, 0, 0, 0, 0, 0, 0, 0, 0, 0,11433, 11433,11433,11433,11433,11433,11433,11433, 0, 0, 0, 0,11433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11433, 11433,11433,11434,11434, 0,11434,11434,11434,11434,11434, 11434,11434,11434,11434,11434,11434,11434, 0, 0, 0, 0, 0, 0, 0, 0, 0,11434,11434,11434,11434, 11434,11434,11434,11434, 0, 0, 0, 0,11434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11434,11434,11434,11434, 11434,11437,11437, 0,11437,11437,11437,11437,11437,11437, 11437,11437,11437, 0,11437,11437, 0, 0, 0, 0, 0, 0, 0, 0, 0,11437,11437,11437,11437,11437, 11437,11437, 0, 0, 0, 0, 0,11437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11437,11437,11437,11438,11438, 0,11438,11438,11438,11438,11438,11438,11438,11438,11438, 0,11438,11438, 0, 0, 0, 0, 0, 0, 0, 0, 0,11438,11438,11438,11438,11438,11438,11438,11438, 0, 0, 0, 0,11438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11438,11438,11438,11447,11447,11447,11447,11447, 11447,11447,11447,11447,11447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11447, 0,11447,11471,11471, 0,11471,11471,11471,11471,11471,11471,11471,11471,11471, 0,11471,11471, 0, 0, 0, 0, 0, 0, 0, 0, 0,11471,11471,11471,11471,11471,11471,11471, 0, 0, 0, 0, 0,11471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11471,11471,11471, 0, 0, 0, 0, 0, 11471,11482,11482, 0,11482,11482,11482,11482,11482,11482, 11482,11482,11482, 0,11482,11482, 0, 0, 0, 0, 0, 0, 0, 0, 0,11482,11482,11482,11482,11482, 11482,11482, 0, 0, 0, 0, 0,11482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11482,11482,11482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11482,11484,11484, 0,11484,11484,11484,11484, 11484,11484,11484, 0,11484,11484,11484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11484,11484,11484, 11484,11484,11484,11484, 0, 0, 0, 0, 0,11484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11484,11484,11484, 11484,11485,11485, 0,11485,11485,11485,11485,11485,11485, 11485, 0,11485,11485,11485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11485,11485,11485,11485,11485, 11485,11485,11485, 0, 0, 0, 0,11485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11485,11485,11485,11485,11488, 11488,11488,11488,11488,11488,11488,11488,11488, 0, 0, 0, 0, 0, 0, 0,11488,11488,11488,11488,11488, 11488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11488,11488,11488,11488,11488,11488,11492,11492, 11492,11492,11492,11492,11492,11492,11492,11492, 0, 0, 0, 0, 0, 0,11492,11492,11492,11492,11492,11492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11492,11492,11492,11492,11492,11492,11495,11495,11495, 11495,11495,11495,11495,11495,11495,11495, 0, 0, 0, 0, 0, 0,11495,11495,11495,11495,11495,11495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11495,11495,11495,11495,11495,11495,11497,11497,11497,11497, 11497,11497,11497,11497,11497, 0, 0, 0, 0, 0, 0,11497,11497,11497,11497,11497,11497,11497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11497, 11497,11497,11497,11497,11497,11501,11501,11501,11501,11501, 11501,11501,11501,11501,11501, 0, 0, 0, 0, 0, 0,11501,11501,11501,11501,11501,11501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11501,11501, 11501,11501,11501,11501,11503,11503,11503,11503,11503,11503, 11503,11503,11503, 0, 0, 0, 0, 0, 0, 0, 11503,11503,11503,11503,11503,11503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11503,11503,11503, 11503,11503,11503,11513,11513,11513,11513,11513,11513,11513, 11513,11513,11513, 0, 0, 0, 0, 0, 0,11513, 11513,11513,11513,11513,11513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11513,11513,11513,11513, 11513,11513,11515,11515,11515,11515,11515,11515,11515,11515, 11515, 0, 0, 0, 0, 0, 0, 0,11515,11515, 11515,11515,11515,11515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11515,11515,11515,11515,11515, 11515,11527,11527,11527,11527,11527,11527,11527,11527,11527, 11527, 0, 0, 0, 0, 0, 0,11527,11527,11527, 11527,11527,11527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11527,11527,11527,11527,11527,11527, 11529,11529,11529,11529,11529,11529,11529,11529,11529, 0, 0, 0, 0, 0, 0, 0,11529,11529,11529,11529, 11529,11529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11529,11529,11529,11529,11529,11529,11537, 0,11537,11537,11537,11537,11537,11537,11537,11537,11537, 11537, 0, 0, 0, 0, 0, 0,11537,11537,11537, 11537,11537,11537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11537,11537,11537,11537,11537,11537, 11541,11541,11541,11541,11541,11541,11541,11541,11541,11541, 0, 0, 0, 0, 0, 0,11541,11541,11541,11541, 11541,11541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11541,11541,11541,11541,11541,11541,11544, 11544,11544,11544,11544,11544,11544,11544,11544,11544, 0, 0, 0, 0, 0, 0,11544,11544,11544,11544,11544, 11544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11544,11544,11544,11544,11544,11544,11552,11552, 11552,11552,11552,11552,11552,11552,11552, 0, 0, 0, 0, 0, 0, 0,11552,11552,11552,11552,11552,11552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11552,11552,11552,11552,11552,11552,11554,11554,11554, 11554,11554,11554,11554,11554,11554,11554, 0, 0, 0, 0, 0, 0,11554,11554,11554,11554,11554,11554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11554,11554,11554,11554,11554,11554,11557,11557, 0,11557, 11557,11557,11557,11557,11557,11557,11557,11557, 0,11557, 11557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11557,11557,11557,11557,11557,11557,11557, 0, 0, 0, 0, 0,11557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11557,11557,11557,11557,11573,11573,11573,11573,11573,11573, 11573,11573,11573,11573, 0, 0, 0, 0, 0, 0, 11573,11573,11573,11573,11573,11573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11573,11573,11573, 11573,11573,11573,11574,11574,11574,11574,11574,11574,11574, 11574,11574,11574, 0, 0, 0, 0, 0, 0,11574, 11574,11574,11574,11574,11574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11574,11574,11574,11574, 11574,11574,11576,11576,11576,11576,11576,11576,11576,11576, 11576,11576, 0, 0, 0, 0, 0, 0,11576,11576, 11576,11576,11576,11576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11576, 0, 0, 0,11576,11576,11576,11576,11576, 11576,11581,11581,11581,11581,11581,11581,11581,11581,11581, 11581, 0, 0, 0, 0, 0, 0,11581,11581,11581, 11581,11581,11581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11581,11581,11581,11581,11581,11581, 11583,11583,11583,11583,11583,11583,11583,11583,11583,11583, 0, 0, 0, 0, 0, 0,11583,11583,11583,11583, 11583,11583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11583,11583,11583,11583,11583,11583,11588, 11588,11588,11588,11588,11588,11588,11588,11588,11588, 0, 0, 0, 0, 0, 0,11588,11588,11588,11588,11588, 11588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11588,11588,11588,11588,11588,11588,11590,11590, 11590,11590,11590,11590,11590,11590,11590,11590, 0, 0, 0, 0, 0, 0,11590,11590,11590,11590,11590,11590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11590,11590,11590,11590,11590,11590,11595,11595,11595, 11595,11595,11595,11595,11595,11595, 0, 0, 0, 0, 0, 0, 0,11595,11595,11595,11595,11595,11595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11595,11595,11595,11595,11595,11595,11596,11596,11596,11596, 11596,11596,11596,11596,11596,11596, 0, 0, 0, 0, 0, 0,11596,11596,11596,11596,11596,11596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11596, 11596,11596,11596,11596,11596,11598,11598,11598,11598,11598, 11598,11598,11598,11598,11598, 0, 0, 0, 0, 0, 0,11598,11598,11598,11598,11598,11598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11598,11598, 11598,11598,11598,11598,11603,11603,11603,11603,11603,11603, 11603,11603,11603, 0, 0, 0, 0, 0, 0, 0, 11603,11603,11603,11603,11603,11603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11603,11603,11603, 11603,11603,11603,11604, 0,11604,11604,11604,11604,11604, 11604,11604,11604,11604,11604, 0, 0, 0, 0, 0, 0,11604,11604,11604,11604,11604,11604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11604,11604, 11604,11604,11604,11604,11607,11607,11607,11607,11607,11607, 11607,11607,11607,11607, 0, 0, 0, 0, 0, 0, 11607,11607,11607,11607,11607,11607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11607,11607,11607, 11607,11607,11607,11609,11609,11609,11609,11609,11609,11609, 11609,11609,11609, 0, 0, 0, 0, 0, 0,11609, 11609,11609,11609,11609,11609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11609,11609,11609,11609, 11609,11609,11614,11614,11614,11614,11614,11614,11614,11614, 11614, 0, 0, 0, 0, 0, 0, 0,11614,11614, 11614,11614,11614,11614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11614,11614,11614,11614,11614, 11614,11615,11615,11615,11615,11615,11615,11615,11615,11615, 11615, 0, 0, 0, 0, 0, 0,11615,11615,11615, 11615,11615,11615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11615,11615,11615,11615,11615,11615, 11622,11622,11622,11622,11622,11622,11622,11622,11622,11622, 0, 0, 0, 0, 0, 0,11622,11622,11622,11622, 11622,11622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11622,11622,11622,11622,11622,11622,11623, 11623,11623,11623,11623,11623,11623,11623,11623, 0, 0, 0, 0, 0, 0, 0,11623,11623,11623,11623,11623, 11623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11623,11623,11623,11623,11623,11623,11630,11630, 11630,11630,11630,11630,11630,11630,11630,11630, 0, 0, 0, 0, 0, 0,11630,11630,11630,11630,11630,11630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11630,11630,11630,11630,11630,11630,11634,11634,11634, 11634,11634,11634,11634,11634,11634,11634, 0, 0, 0, 0, 0, 0,11634,11634,11634,11634,11634,11634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11634,11634,11634,11634,11634,11634,11706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11706, 0, 0, 0, 0, 0, 0,11706, 0, 0, 0, 0, 0,11706, 0, 0, 0, 0, 0, 0, 0, 0, 11706, 0,11706, 0,11706, 0, 0,11706,11706, 0, 0, 0,11706, 0, 0,11706, 0,11706, 0,11706, 0,11706,11706,11706,11707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11707, 0, 0, 0, 0, 0,11707,11707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11707, 0, 11707, 0,11707, 0, 0,11707,11707, 0, 0, 0, 11707, 0, 0,11707, 0,11707, 0,11707, 0,11707, 11707,11707,11708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11708, 0, 0, 0, 0, 0, 0,11708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11708, 0,11708,11708, 11708, 0, 0,11708,11708, 0, 0, 0,11708, 0, 0,11708, 0,11708, 0,11708, 0,11708,11708,11708, 11709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11709, 0, 0, 0, 0, 0, 0,11709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11709, 0,11709,11709,11709, 0, 0,11709,11709, 0, 0, 0,11709, 0, 0,11709, 0,11709, 0,11709, 0,11709,11709,11709,11710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11710, 0, 0, 0, 0, 0, 0,11710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11710, 0,11710, 0,11710, 0, 0,11710, 11710, 0, 0, 0,11710, 0, 0,11710, 0,11710, 0,11710, 0,11710,11710,11710,11710,11711, 0, 0, 0, 0, 0, 0, 0,11711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11711, 0, 0, 0, 0, 0, 0,11711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11711, 0,11711, 0,11711, 0, 0,11711,11711, 0, 0, 0,11711,11711, 0,11711, 0,11711, 0, 11711, 0,11711,11711,11711,11718, 0,11718, 0, 0, 0, 0, 0, 0,11718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11718, 0, 0, 0, 0, 0, 0,11718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11718, 0,11718,11718,11718, 0, 0,11718,11718, 0, 0, 0,11718, 0, 0,11718, 0,11718, 0, 11718, 0,11718,11718,11718,11724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11724, 0, 0, 0, 0, 0, 0,11724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11724, 0,11724, 0,11724, 0, 0,11724,11724, 0, 0, 0,11724,11724, 0,11724, 0,11724, 0,11724, 0, 11724,11724,11724,11725, 0,11725, 0, 0, 0, 0, 0, 0,11725, 0, 0,11725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11725, 0, 0, 0, 0, 0, 0,11725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11725, 0,11725, 0,11725, 0, 0,11725,11725, 0, 0, 0,11725, 0,11725,11725, 0,11725, 0,11725, 0, 11725,11725,11725,11726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11726, 0, 0, 0, 0, 0, 0,11726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11726, 0,11726, 0,11726, 0, 0,11726,11726, 0, 0, 0,11726, 11726, 0,11726, 0,11726, 0,11726, 0,11726,11726, 11726,11728, 0,11728, 0, 0, 0, 0, 0, 0, 11728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11728, 0, 0, 0, 0, 0, 0,11728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11728, 0,11728, 0,11728, 0, 0,11728,11728, 0, 0, 0,11728, 0, 0,11728, 0,11728, 0,11728, 0,11728,11728, 11728,11729, 0,11729, 0, 0, 0, 0, 0, 0, 11729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11729, 0, 0, 0, 0, 0, 0,11729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11729, 0,11729, 0,11729, 0, 0,11729,11729, 0, 0, 0,11729, 0, 0,11729, 0,11729, 0,11729, 0,11729,11729, 11729,11730, 0,11730, 0, 0, 0, 0, 0, 0, 11730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11730, 0, 0,11730, 0,11730, 0, 0, 0, 0,11730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11730, 0,11730, 0,11730, 0, 0,11730,11730, 0, 0, 0,11730, 0, 0,11730, 0,11730, 0,11730, 0,11730,11730, 11730,11733, 0, 0, 0, 0, 0, 0, 0, 0, 0,11733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11733, 0, 0, 0, 0, 0, 0, 11733, 0, 0, 0, 0, 0,11733, 0, 0, 0, 0, 0, 0, 0, 0,11733, 0,11733, 0,11733, 0, 0,11733,11733, 0, 0, 0,11733, 0, 0, 11733, 0,11733, 0,11733, 0,11733,11733,11733,11734, 0, 0, 0, 0, 0, 0, 0, 0, 0,11734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11734, 0, 0, 0, 0, 0, 0,11734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11734, 0,11734, 0,11734, 0,11734, 11734,11734, 0, 0, 0,11734, 0,11734,11734, 0, 11734, 0,11734, 0,11734,11734,11734,11754, 0, 0, 0, 0, 0, 0, 0, 0, 0,11754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11754, 0, 0, 0, 0, 0, 0,11754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11754,11754, 0,11754, 0,11754, 0, 0,11754,11754, 0, 0, 0,11754, 0, 0,11754, 0,11754, 0, 11754, 0,11754,11754,11754,11755, 0, 0, 0, 0, 0, 0, 0, 0, 0,11755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11755, 0, 0, 0, 0, 0, 0,11755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11755, 0,11755, 0,11755, 0, 0,11755,11755, 0, 0, 0,11755, 0, 0,11755, 0,11755, 0,11755, 0, 11755,11755,11755,11756, 0, 0, 0, 0, 0, 0, 0, 0, 0,11756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11756, 0, 0, 0, 0, 0, 0,11756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11756, 0,11756, 0,11756, 0, 0,11756,11756, 0, 0, 0,11756, 0, 0,11756, 0,11756, 0,11756, 0,11756,11756, 11756,11757, 0,11757, 0, 0, 0, 0, 0, 0, 11757, 0, 0,11757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11757, 0, 0, 0, 0, 0, 0,11757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11757, 0,11757, 0,11757, 0, 0,11757,11757, 0, 0, 0,11757, 0,11757,11757, 0,11757, 0,11757, 0,11757,11757, 11757,11758, 0,11758, 0, 0, 0, 0, 0, 0, 11758, 0, 0,11758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11758, 0, 0, 0, 0, 0, 0,11758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11758, 0,11758, 0,11758, 0, 0,11758,11758, 0, 0, 0,11758, 0, 0,11758, 0,11758, 0,11758, 0,11758,11758, 11758,11758,11759, 0, 0, 0, 0, 0, 0, 0, 0, 0,11759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11759, 0, 0, 0, 0, 0, 0,11759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11759, 0,11759, 0, 11759, 0, 0,11759,11759, 0, 0, 0,11759, 0, 0,11759, 0,11759, 0,11759, 0,11759,11759,11759, 11759,11798, 0, 0, 0, 0, 0, 0, 0, 0, 0,11798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11798, 0, 0, 0, 0, 0, 0, 11798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11798, 0,11798, 0,11798, 0, 0,11798,11798, 0, 0, 0,11798, 0, 0, 11798, 0,11798, 0,11798, 0,11798,11798,11798,11799, 0,11799, 0, 0, 0, 0, 0, 0,11799, 0, 0,11799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11799, 0, 0, 0, 0, 0, 0, 11799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11799, 0,11799, 0,11799, 0, 0,11799,11799, 0, 0, 0,11799, 0, 0, 11799, 0,11799, 0,11799, 0,11799,11799,11799,11800, 0, 0, 0, 0, 0, 0, 0, 0, 0,11800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11800, 0, 0, 0, 0, 0, 0,11800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11800, 0,11800, 0,11800, 0, 0, 11800,11800, 0, 0, 0,11800, 0, 0,11800, 0, 11800, 0,11800, 0,11800,11800,11800,11801, 0, 0, 0, 0, 0, 0, 0, 0, 0,11801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11801, 0, 0, 0, 0, 0, 0,11801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11801, 0,11801, 0,11801, 0, 0,11801,11801, 0, 0, 0,11801,11801,11801,11801, 0,11801, 0, 11801, 0,11801,11801,11801,11802, 0,11802, 0, 0, 0, 0, 0, 0,11802, 0, 0,11802,11802,11802, 11802,11802,11802,11802,11802,11802,11802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11802, 0, 0, 0, 0, 0, 0,11802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11802, 0,11802, 0,11802, 0, 0,11802,11802, 0, 0, 0,11802, 0, 0,11802, 0,11802, 0, 11802, 0,11802,11802,11802,11833,11833, 0,11833,11833, 11833,11833,11833,11833,11833,11833,11833, 0,11833,11833, 0, 0, 0, 0, 0, 0, 0, 0, 0,11833, 11833,11833,11833,11833,11833,11833, 0, 0, 0, 0, 0,11833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11833, 11833,11833,11834,11834, 0,11834,11834,11834,11834,11834, 11834,11834,11834,11834, 0,11834,11834, 0, 0, 0, 0, 0, 0, 0, 0, 0,11834,11834,11834,11834, 11834,11834,11834,11834, 0, 0, 0, 0,11834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11834,11834,11834,11838, 11838, 0,11838,11838,11838,11838,11838,11838,11838,11838, 11838, 0,11838,11838, 0, 0, 0, 0, 0, 0, 0, 0, 0,11838,11838,11838,11838,11838,11838,11838, 0, 0, 0, 0, 0,11838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11838,11838,11838,11839,11839, 0,11839, 11839,11839,11839,11839,11839,11839,11839,11839, 0,11839, 11839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11839,11839,11839,11839,11839,11839,11839,11839, 0, 0, 0, 0,11839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11839,11839,11839,11841,11841, 0,11841,11841,11841,11841, 11841,11841,11841,11841,11841, 0,11841,11841, 0, 0, 0, 0, 0, 0, 0, 0, 0,11841,11841,11841, 11841,11841,11841,11841, 0, 0, 0, 0, 0,11841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11841, 0, 0, 0, 0, 0,11841,11841,11841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11841, 11842,11842, 0,11842,11842,11842,11842,11842,11842,11842, 11842,11842,11842,11842,11842,11842,11842,11842,11842,11842, 11842,11842,11842,11842,11842,11842,11842,11842,11842,11842, 11842,11842,11842,11842,11842,11842,11842,11842,11842,11842, 11842,11842,11842,11842,11842,11842,11842,11842,11842,11842, 11842,11842,11842,11842,11842,11842,11842,11842,11842,11842, 11842,11842,11842,11842,11842,11842,11842,11842,11842,11842, 11842,11842,11842,11842,11842,11842,11842,11842,11842,11842, 11842,11842,11842,11843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11843,11843,11843,11843,11843,11843, 11843,11843,11843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11843,11843,11843, 11843,11843,11843,11843,11843,11843,11843,11843,11843,11843, 11843,11843,11843,11843,11843,11843,11843,11843,11843,11843, 11843,11843,11848,11848, 0,11848,11848,11848,11848,11848, 11848,11848,11848,11848, 0,11848,11848, 0, 0, 0, 0, 0, 0, 0, 0, 0,11848,11848,11848,11848, 11848,11848,11848, 0, 0, 0, 0, 0,11848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11848,11848,11848,11848, 11849,11849, 0,11849,11849,11849,11849,11849,11849,11849, 11849,11849, 0,11849,11849, 0, 0, 0, 0, 0, 0, 0, 0, 0,11849,11849,11849,11849,11849,11849, 11849,11849, 0, 0, 0, 0,11849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11849,11849,11849,11849,11850,11850, 0,11850,11850,11850,11850,11850,11850,11850,11850,11850, 0,11850,11850, 0, 0, 0, 0, 0, 0, 0, 0, 0,11850,11850,11850,11850,11850,11850,11850, 0, 0, 0, 0, 0,11850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11850,11850,11850,11852,11852, 0,11852,11852, 11852,11852,11852,11852,11852,11852,11852, 0,11852,11852, 0, 0, 0, 0, 0, 0, 0, 0, 0,11852, 11852,11852,11852,11852,11852,11852,11852, 0, 0, 0, 0,11852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11852, 11852,11852,11853,11853, 0,11853,11853,11853,11853,11853, 11853,11853,11853,11853, 0,11853,11853, 0, 0, 0, 0, 0, 0, 0, 0, 0,11853,11853,11853,11853, 11853,11853,11853, 0, 0, 0, 0, 0,11853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11853,11853,11853,11853, 11854,11854, 0,11854,11854,11854,11854,11854,11854,11854, 11854,11854, 0,11854,11854, 0, 0, 0, 0, 0, 0, 0, 0, 0,11854,11854,11854,11854,11854,11854, 11854,11854, 0, 0, 0, 0,11854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11854,11854,11854,11854,11855,11855, 0,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11855,11855,11855,11855,11855,11855,11855,11855,11855, 11855,11866,11866, 0,11866,11866,11866,11866,11866,11866, 11866,11866,11866, 0,11866,11866, 0, 0, 0, 0, 0, 0, 0, 0, 0,11866,11866,11866,11866,11866, 11866,11866, 0, 0, 0, 0, 0,11866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11866,11866,11866,11866,11867, 11867, 0,11867,11867,11867,11867,11867,11867,11867,11867, 11867, 0,11867,11867, 0, 0, 0, 0, 0, 0, 0, 0, 0,11867,11867,11867,11867,11867,11867,11867, 11867, 0, 0, 0, 0,11867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11867,11867,11867,11867,11868,11868, 0, 11868,11868,11868,11868,11868,11868,11868,11868,11868, 0, 11868,11868, 0, 0, 0, 0, 0, 0, 0, 0, 0,11868,11868,11868,11868,11868,11868,11868, 0, 0, 0, 0, 0,11868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11868,11868,11868,11870,11870, 0,11870,11870,11870, 11870,11870,11870,11870,11870,11870, 0,11870,11870, 0, 0, 0, 0, 0, 0, 0, 0, 0,11870,11870, 11870,11870,11870,11870,11870,11870, 0, 0, 0, 0, 11870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11870,11870, 11870,11874,11874, 0,11874,11874,11874,11874,11874,11874, 11874,11874,11874, 0,11874,11874, 0, 0, 0, 0, 0, 0, 0, 0, 0,11874,11874,11874,11874,11874, 11874,11874, 0, 0, 0, 0, 0,11874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11874,11874,11874,11874,11875, 11875, 0,11875,11875,11875,11875,11875,11875,11875,11875, 11875, 0,11875,11875, 0, 0, 0, 0, 0, 0, 0, 0, 0,11875,11875,11875,11875,11875,11875,11875, 11875, 0, 0, 0, 0,11875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11875,11875,11875,11875,11876,11876, 0, 11876,11876,11876,11876,11876,11876,11876,11876,11876, 0, 11876,11876, 0, 0, 0, 0, 0, 0, 0, 0, 0,11876,11876,11876,11876,11876,11876,11876, 0, 0, 0, 0, 0,11876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11876,11876,11876,11878,11878, 0,11878,11878,11878, 11878,11878,11878,11878,11878,11878, 0,11878,11878, 0, 0, 0, 0, 0, 0, 0, 0, 0,11878,11878, 11878,11878,11878,11878,11878,11878, 0, 0, 0, 0, 11878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11878,11878, 11878,11880,11880, 0,11880,11880,11880,11880,11880,11880, 11880,11880,11880, 0,11880,11880, 0, 0, 0, 0, 0, 0, 0, 0, 0,11880,11880,11880,11880,11880, 11880,11880, 0, 0, 0, 0, 0,11880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11880,11880,11880,11880,11881, 11881, 0,11881,11881,11881,11881,11881,11881,11881,11881, 11881, 0,11881,11881, 0, 0, 0, 0, 0, 0, 0, 0, 0,11881,11881,11881,11881,11881,11881,11881, 11881, 0, 0, 0, 0,11881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11881,11881,11881,11881,11882,11882, 0, 11882,11882,11882,11882,11882,11882,11882,11882,11882, 0, 11882,11882, 0, 0, 0, 0, 0, 0, 0, 0, 0,11882,11882,11882,11882,11882,11882,11882, 0, 0, 0, 0, 0,11882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11882,11882,11882,11884,11884, 0,11884,11884,11884, 11884,11884,11884,11884,11884,11884, 0,11884,11884, 0, 0, 0, 0, 0, 0, 0, 0, 0,11884,11884, 11884,11884,11884,11884,11884, 0, 0, 0, 0, 0, 11884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11884,11884, 11884,11884,11885,11885, 0,11885,11885,11885,11885,11885, 11885,11885,11885,11885, 0,11885,11885, 0, 0, 0, 0, 0, 0, 0, 0, 0,11885,11885,11885,11885, 11885,11885,11885,11885, 0, 0, 0, 0,11885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11885,11885,11885,11885, 11886,11886, 0,11886,11886,11886,11886,11886,11886,11886, 11886,11886,11886,11886,11886, 0, 0, 0, 0, 0, 0, 0, 0, 0,11886,11886,11886,11886,11886,11886, 11886,11886, 0, 0, 0, 0,11886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11886,11886,11886,11886,11886,11887, 11887, 0,11887,11887,11887,11887,11887,11887,11887,11887, 11887, 0,11887,11887, 0, 0, 0, 0, 0, 0, 0, 0, 0,11887,11887,11887,11887,11887,11887,11887, 0, 0, 0, 0, 0,11887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11887,11887,11887,11888,11888, 0,11888, 11888,11888,11888,11888,11888,11888,11888,11888, 0,11888, 11888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11888,11888,11888,11888,11888,11888,11888,11888, 0, 0, 0, 0,11888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11888,11888,11888,11890,11890, 0,11890,11890,11890,11890, 11890,11890,11890,11890,11890, 0,11890,11890, 0, 0, 0, 0, 0, 0, 0, 0, 0,11890,11890,11890, 11890,11890,11890,11890, 0, 0, 0, 0, 0,11890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11890,11890,11890, 11890,11891,11891, 0,11891,11891,11891,11891,11891,11891, 11891,11891,11891, 0,11891,11891, 0, 0, 0, 0, 0, 0, 0, 0, 0,11891,11891,11891,11891,11891, 11891,11891,11891, 0, 0, 0, 0,11891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11891,11891,11891,11891,11892, 11892, 0,11892,11892,11892,11892,11892,11892,11892,11892, 11892, 0,11892,11892, 0, 0, 0, 0, 0, 0, 0, 0, 0,11892,11892,11892,11892,11892,11892,11892, 0, 0, 0, 0, 0,11892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11892,11892,11892,11894,11894, 0,11894, 11894,11894,11894,11894,11894,11894,11894,11894, 0,11894, 11894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11894,11894,11894,11894,11894,11894,11894, 0, 0, 0, 0, 0,11894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11894,11894,11894,11894,11895,11895, 0,11895,11895,11895, 11895,11895,11895,11895,11895,11895, 0,11895,11895, 0, 0, 0, 0, 0, 0, 0, 0, 0,11895,11895, 11895,11895,11895,11895,11895,11895, 0, 0, 0, 0, 11895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11895,11895, 11895,11895,11896,11896, 0,11896,11896,11896,11896,11896, 11896,11896,11896,11896,11896,11896,11896, 0, 0, 0, 0, 0, 0, 0, 0, 0,11896,11896,11896,11896, 11896,11896,11896,11896, 0, 0, 0, 0,11896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11896,11896,11896,11896, 11896,11897,11897, 0,11897,11897,11897,11897,11897,11897, 11897,11897,11897, 0,11897,11897, 0, 0, 0, 0, 0, 0, 0, 0, 0,11897,11897,11897,11897,11897, 11897,11897, 0, 0, 0, 0, 0,11897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11897,11897,11897,11898,11898, 0,11898,11898,11898,11898,11898,11898,11898,11898,11898, 0,11898,11898, 0, 0, 0, 0, 0, 0, 0, 0, 0,11898,11898,11898,11898,11898,11898,11898,11898, 0, 0, 0, 0,11898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11898,11898,11898,11901,11901, 0,11901,11901, 11901,11901,11901,11901,11901,11901,11901, 0,11901,11901, 0, 0, 0, 0, 0, 0, 0, 0, 0,11901, 11901,11901,11901,11901,11901,11901, 0, 0, 0, 0, 0,11901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11901, 11901,11901,11901, 0, 0, 0, 0, 0, 0, 0, 11901,11902,11902, 0,11902,11902,11902,11902,11902,11902, 11902,11902,11902, 0,11902,11902, 0, 0, 0, 0, 0, 0, 0, 0, 0,11902,11902,11902,11902,11902, 11902,11902, 0, 0, 0, 0, 0,11902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11902,11902,11902,11902,11903, 11903, 0,11903,11903,11903,11903,11903,11903,11903,11903, 11903, 0,11903,11903, 0, 0, 0, 0, 0, 0, 0, 0, 0,11903,11903,11903,11903,11903,11903,11903, 11903, 0, 0, 0, 0,11903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11903,11903,11903,11903,11904,11904, 0, 11904,11904,11904,11904,11904,11904,11904,11904,11904, 0, 11904,11904, 0, 0, 0, 0, 0, 0, 0, 0, 0,11904,11904,11904,11904,11904,11904,11904, 0, 0, 0, 0, 0,11904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11904,11904,11904,11906,11906, 0,11906,11906,11906, 11906,11906,11906,11906,11906,11906, 0,11906,11906, 0, 0, 0, 0, 0, 0, 0, 0, 0,11906,11906, 11906,11906,11906,11906,11906,11906, 0, 0, 0, 0, 11906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11906,11906, 11906,11911,11911, 0,11911,11911,11911,11911,11911,11911, 11911,11911,11911, 0,11911,11911, 0, 0, 0, 0, 0, 0, 0, 0, 0,11911,11911,11911,11911,11911, 11911,11911, 0, 0, 0, 0, 0,11911, 0, 0, 0, 0, 0,11911, 0, 0, 0, 0, 0,11911, 0, 0, 0, 0, 0,11911,11911,11911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11911,11912,11912, 0,11912,11912,11912,11912,11912,11912,11912,11912,11912, 0,11912,11912, 0, 0, 0, 0, 0, 0, 0, 0, 0,11912,11912,11912,11912,11912,11912,11912, 0, 0, 0, 0, 0,11912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11912,11912,11912,11912,11913,11913, 0,11913, 11913,11913,11913,11913,11913,11913,11913,11913, 0,11913, 11913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11913,11913,11913,11913,11913,11913,11913,11913, 0, 0, 0, 0,11913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11913,11913,11913,11913,11914,11914, 0,11914,11914,11914, 11914,11914,11914,11914,11914,11914, 0,11914,11914, 0, 0, 0, 0, 0, 0, 0, 0, 0,11914,11914, 11914,11914,11914,11914,11914, 0, 0, 0, 0, 0, 11914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11914,11914, 11914,11916,11916, 0,11916,11916,11916,11916,11916,11916, 11916,11916,11916, 0,11916,11916, 0, 0, 0, 0, 0, 0, 0, 0, 0,11916,11916,11916,11916,11916, 11916,11916,11916, 0, 0, 0, 0,11916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11916,11916,11916,11920,11920, 0,11920,11920,11920,11920,11920,11920,11920,11920,11920, 0,11920,11920, 0, 0, 0, 0, 0, 0, 0, 0, 0,11920,11920,11920,11920,11920,11920,11920, 0, 0, 0, 0, 0,11920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11920,11920,11920,11920,11921,11921, 0,11921, 11921,11921,11921,11921,11921,11921,11921,11921, 0,11921, 11921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11921,11921,11921,11921,11921,11921,11921,11921, 0, 0, 0, 0,11921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11921,11921,11921,11921,11922,11922, 0,11922,11922,11922, 11922,11922,11922,11922,11922,11922, 0,11922,11922, 0, 0, 0, 0, 0, 0, 0, 0, 0,11922,11922, 11922,11922,11922,11922,11922, 0, 0, 0, 0, 0, 11922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11922,11922, 11922,11924,11924, 0,11924,11924,11924,11924,11924,11924, 11924,11924,11924, 0,11924,11924, 0, 0, 0, 0, 0, 0, 0, 0, 0,11924,11924,11924,11924,11924, 11924,11924,11924, 0, 0, 0, 0,11924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11924,11924,11924,11926,11926, 0,11926,11926,11926,11926,11926,11926,11926,11926,11926, 0,11926,11926, 0, 0, 0, 0, 0, 0, 0, 0, 0,11926,11926,11926,11926,11926,11926,11926, 0, 0, 0, 0, 0,11926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11926,11926,11926,11926,11927,11927, 0,11927, 11927,11927,11927,11927,11927,11927,11927,11927, 0,11927, 11927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11927,11927,11927,11927,11927,11927,11927,11927, 0, 0, 0, 0,11927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11927,11927,11927,11927,11928,11928, 0,11928,11928,11928, 11928,11928,11928,11928,11928,11928, 0,11928,11928, 0, 0, 0, 0, 0, 0, 0, 0, 0,11928,11928, 11928,11928,11928,11928,11928, 0, 0, 0, 0, 0, 11928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11928,11928, 11928,11930,11930, 0,11930,11930,11930,11930,11930,11930, 11930,11930,11930, 0,11930,11930, 0, 0, 0, 0, 0, 0, 0, 0, 0,11930,11930,11930,11930,11930, 11930,11930, 0, 0, 0, 0, 0,11930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11930,11930,11930,11930,11931, 11931, 0,11931,11931,11931,11931,11931,11931,11931,11931, 11931, 0,11931,11931, 0, 0, 0, 0, 0, 0, 0, 0, 0,11931,11931,11931,11931,11931,11931,11931, 11931, 0, 0, 0, 0,11931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11931,11931,11931,11931,11932,11932, 0, 11932,11932,11932,11932,11932,11932,11932,11932,11932,11932, 11932,11932, 0, 0, 0, 0, 0, 0, 0, 0, 0,11932,11932,11932,11932,11932,11932,11932,11932, 0, 0, 0, 0,11932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11932,11932,11932,11932,11932,11933,11933, 0,11933, 11933,11933,11933,11933,11933,11933,11933,11933, 0,11933, 11933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11933,11933,11933,11933,11933,11933,11933, 0, 0, 0, 0, 0,11933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11933,11933,11933,11934,11934, 0,11934,11934,11934,11934, 11934,11934,11934,11934,11934, 0,11934,11934, 0, 0, 0, 0, 0, 0, 0, 0, 0,11934,11934,11934, 11934,11934,11934,11934,11934, 0, 0, 0, 0,11934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11934,11934,11934, 11936,11936, 0,11936,11936,11936,11936,11936,11936,11936, 11936,11936, 0,11936,11936, 0, 0, 0, 0, 0, 0, 0, 0, 0,11936,11936,11936,11936,11936,11936, 11936, 0, 0, 0, 0, 0,11936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11936,11936,11936,11936,11937,11937, 0,11937,11937,11937,11937,11937,11937,11937,11937,11937, 0,11937,11937, 0, 0, 0, 0, 0, 0, 0, 0, 0,11937,11937,11937,11937,11937,11937,11937,11937, 0, 0, 0, 0,11937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11937,11937,11937,11937,11938,11938, 0,11938, 11938,11938,11938,11938,11938,11938,11938,11938, 0,11938, 11938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11938,11938,11938,11938,11938,11938,11938, 0, 0, 0, 0, 0,11938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11938,11938,11938,11940,11940, 0,11940,11940,11940,11940, 11940,11940,11940,11940,11940, 0,11940,11940, 0, 0, 0, 0, 0, 0, 0, 0, 0,11940,11940,11940, 11940,11940,11940,11940, 0, 0, 0, 0, 0,11940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11940,11940,11940, 11940,11941,11941, 0,11941,11941,11941,11941,11941,11941, 11941,11941,11941, 0,11941,11941, 0, 0, 0, 0, 0, 0, 0, 0, 0,11941,11941,11941,11941,11941, 11941,11941,11941, 0, 0, 0, 0,11941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11941,11941,11941,11941,11942, 11942, 0,11942,11942,11942,11942,11942,11942,11942,11942, 11942,11942,11942,11942, 0, 0, 0, 0, 0, 0, 0, 0, 0,11942,11942,11942,11942,11942,11942,11942, 11942, 0, 0, 0, 0,11942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11942,11942,11942,11942,11942,11943,11943, 0,11943,11943,11943,11943,11943,11943,11943,11943,11943, 0,11943,11943, 0, 0, 0, 0, 0, 0, 0, 0, 0,11943,11943,11943,11943,11943,11943,11943, 0, 0, 0, 0, 0,11943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11943,11943,11943,11944,11944, 0,11944,11944, 11944,11944,11944,11944,11944,11944,11944, 0,11944,11944, 0, 0, 0, 0, 0, 0, 0, 0, 0,11944, 11944,11944,11944,11944,11944,11944,11944, 0, 0, 0, 0,11944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11944, 11944,11944,11946,11946, 0,11946,11946,11946,11946,11946, 11946,11946,11946,11946, 0,11946,11946, 0, 0, 0, 0, 0, 0, 0, 0, 0,11946,11946,11946,11946, 11946,11946,11946, 0, 0, 0, 0, 0,11946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11946,11946,11946,11946, 0, 0, 0, 0, 0, 0, 0,11946,11947,11947, 0,11947,11947,11947,11947,11947,11947,11947,11947,11947, 11947,11947,11947,11947,11947,11947,11947,11947,11947,11947, 11947,11947,11947,11947,11947,11947,11947,11947,11947,11947, 11947,11947,11947,11947,11947,11947,11947,11947,11947,11947, 11947,11947,11947,11947,11947,11947,11947,11947,11947,11947, 11947,11947,11947,11947,11947,11947,11947,11947,11947,11947, 11947,11947,11947,11947,11947,11947,11947,11947,11947,11947, 11947,11947,11947,11947,11947,11947,11947,11947,11947,11947, 11947,11950,11950, 0,11950,11950,11950,11950,11950, 0, 0,11950,11950,11950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11950,11950,11950,11950, 11950,11950, 0, 0, 0, 0, 0,11950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11950,11950,11950,11950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11950,11951,11951, 0,11951,11951,11951,11951,11951,11951, 11951,11951,11951,11951,11951,11951,11951,11951,11951,11951, 11951,11951,11951,11951,11951,11951,11951,11951,11951,11951, 11951,11951,11951,11951,11951,11951,11951,11951,11951,11951, 11951,11951,11951,11951,11951,11951,11951,11951,11951,11951, 11951,11951,11951,11951,11951,11951,11951,11951,11951,11951, 11951,11951,11951,11951,11951,11951,11951,11951,11951,11951, 11951,11951,11951,11951,11951,11951,11951,11951,11951,11951, 11951,11951,11951,11951,11955,11955, 0,11955,11955,11955, 11955,11955,11955,11955,11955,11955, 0,11955,11955, 0, 0, 0, 0, 0, 0, 0, 0, 0,11955,11955, 11955,11955,11955,11955,11955, 0, 0, 0, 0, 0, 11955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11955,11955, 11955,11955,11959,11959,11959,11959,11959,11959,11959,11959, 11959, 0, 0, 0, 0, 0, 0, 0,11959,11959, 11959,11959,11959,11959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11959,11959,11959,11959,11959, 11959,11962,11962, 0,11962,11962,11962,11962,11962,11962, 11962,11962,11962, 0,11962,11962, 0, 0, 0, 0, 0, 0, 0, 0, 0,11962,11962,11962,11962,11962, 11962,11962, 0, 0, 0, 0, 0,11962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11962,11962,11962,11962,11963, 11963, 0,11963,11963,11963,11963,11963,11963,11963,11963, 11963, 0,11963,11963, 0, 0, 0, 0, 0, 0, 0, 0, 0,11963,11963,11963,11963,11963,11963,11963, 11963, 0, 0, 0, 0,11963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11963,11963,11963,11963,11967,11967, 0, 11967,11967,11967,11967,11967,11967,11967,11967,11967, 0, 11967,11967, 0, 0, 0, 0, 0, 0, 0, 0, 0,11967,11967,11967,11967,11967,11967,11967, 0, 0, 0, 0, 0,11967, 0, 0, 0, 0, 0,11967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11967,11967,11967,11967,11968,11968, 0,11968,11968, 11968,11968,11968,11968,11968,11968,11968,11968,11968,11968, 11968,11968,11968,11968,11968,11968,11968,11968,11968,11968, 11968,11968,11968,11968,11968,11968,11968,11968,11968,11968, 11968,11968,11968,11968,11968,11968,11968,11968,11968,11968, 11968,11968,11968,11968,11968,11968,11968,11968,11968,11968, 11968,11968,11968,11968,11968,11968,11968,11968,11968,11968, 11968,11968,11968,11968,11968,11968,11968,11968,11968,11968, 11968,11968,11968,11968,11968,11968,11968,11968,11969,11969, 0,11969,11969,11969,11969,11969,11969,11969,11969,11969, 0,11969,11969, 0, 0, 0, 0, 0, 0, 0, 0, 0,11969,11969,11969,11969,11969,11969,11969, 0, 0, 0, 0, 0,11969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11969,11969,11969,11970,11970, 0,11970,11970, 11970,11970,11970,11970,11970,11970,11970, 0,11970,11970, 0, 0, 0, 0, 0, 0, 0, 0, 0,11970, 11970,11970,11970,11970,11970,11970, 0, 0, 0, 0, 0,11970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11970, 11970,11970,11971,11971, 0,11971,11971,11971,11971,11971, 11971,11971,11971,11971, 0,11971,11971, 0, 0, 0, 0, 0, 0, 0, 0, 0,11971,11971,11971,11971, 11971,11971,11971,11971, 0, 0, 0, 0,11971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11971,11971,11971,11974, 11974, 0,11974,11974,11974,11974,11974,11974,11974,11974, 11974, 0,11974,11974, 0, 0, 0, 0, 0, 0, 0, 0, 0,11974,11974,11974,11974,11974,11974,11974, 0, 0, 0, 0, 0,11974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11974,11974,11974,11975,11975, 0,11975, 11975,11975,11975,11975,11975,11975,11975,11975, 0,11975, 11975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11975,11975,11975,11975,11975,11975,11975,11975, 0, 0, 0, 0,11975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11975,11975,11975,11977,11977, 0,11977,11977,11977,11977, 11977,11977,11977,11977,11977, 0,11977,11977, 0, 0, 0, 0, 0, 0, 0, 0, 0,11977,11977,11977, 11977,11977,11977,11977, 0, 0, 0, 0, 0,11977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11977,11977,11977, 11978,11978, 0,11978,11978,11978,11978,11978,11978,11978, 11978,11978, 0,11978,11978, 0, 0, 0, 0, 0, 0, 0, 0, 0,11978,11978,11978,11978,11978,11978, 11978,11978, 0, 0, 0, 0,11978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11978,11978,11978,11979,11979, 0, 11979,11979,11979,11979,11979,11979,11979,11979,11979, 0, 11979,11979, 0, 0, 0, 0, 0, 0, 0, 0, 0,11979,11979,11979,11979,11979,11979,11979, 0, 0, 0, 0, 0,11979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11979, 0, 0, 0,11979,11979,11979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11979,11980,11980, 0,11980, 11980,11980,11980,11980,11980,11980,11980,11980, 0,11980, 11980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11980,11980,11980,11980,11980,11980,11980, 0, 0, 0, 0, 0,11980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11980,11980,11980,11981,11981, 0,11981,11981,11981,11981, 11981,11981,11981,11981,11981, 0,11981,11981, 0, 0, 0, 0, 0, 0, 0, 0, 0,11981,11981,11981, 11981,11981,11981,11981,11981, 0, 0, 0, 0,11981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11981,11981,11981, 11982,11982, 0,11982,11982,11982,11982,11982,11982,11982, 11982,11982, 0,11982,11982, 0, 0, 0, 0, 0, 0, 0, 0, 0,11982,11982,11982,11982,11982,11982, 11982, 0, 0, 0, 0, 0,11982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11982, 0, 0, 0,11982,11982,11982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11982,11983, 11983, 0,11983,11983,11983,11983,11983,11983,11983,11983, 11983, 0,11983,11983, 0, 0, 0, 0, 0, 0, 0, 0, 0,11983,11983,11983,11983,11983,11983,11983, 0, 0, 0, 0, 0,11983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11983,11983,11983,11983,11984,11984, 0, 11984,11984,11984,11984,11984,11984,11984,11984,11984, 0, 11984,11984, 0, 0, 0, 0, 0, 0, 0, 0, 0,11984,11984,11984,11984,11984,11984,11984,11984, 0, 0, 0, 0,11984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11984,11984,11984,11984,11985,11985, 0,11985,11985, 11985,11985,11985,11985,11985,11985,11985, 0,11985,11985, 0, 0, 0, 0, 0, 0, 0, 0, 0,11985, 11985,11985,11985,11985,11985,11985, 0, 0, 0, 0, 0,11985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11985, 11985,11985,11987,11987, 0,11987,11987,11987,11987,11987, 11987,11987,11987,11987, 0,11987,11987, 0, 0, 0, 0, 0, 0, 0, 0, 0,11987,11987,11987,11987, 11987,11987,11987,11987, 0, 0, 0, 0,11987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11987,11987,11987,11993, 11993, 0,11993,11993,11993,11993,11993,11993,11993,11993, 11993, 0,11993,11993,11993,11993,11993,11993,11993,11993, 11993,11993,11993,11993,11993,11993,11993,11993,11993,11993, 0, 0, 0, 0, 0,11993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,11993,11993,11993,11993,12001,12001,12001, 12001,12001,12001,12001,12001,12001,12001, 0, 0, 0, 0, 0, 0,12001,12001,12001,12001,12001,12001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12001,12001,12001,12001,12001,12001,12003,12003,12003,12003, 12003,12003,12003,12003,12003,12003, 0, 0, 0, 0, 0, 0,12003,12003,12003,12003,12003,12003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12003, 12003,12003,12003,12003,12003,12006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12006,12006,12006,12006, 12006,12006,12006,12006,12006,12006, 0, 0, 0, 0, 0, 0,12006,12006,12006,12006,12006,12006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12006, 12006,12006,12006,12006,12006,12012,12012,12012,12012,12012, 12012,12012,12012,12012,12012, 0, 0, 0, 0, 0, 0,12012,12012,12012,12012,12012,12012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12012,12012, 12012,12012,12012,12012,12015,12015,12015,12015,12015,12015, 12015,12015,12015,12015, 0, 0, 0, 0, 0, 0, 12015,12015,12015,12015,12015,12015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12015,12015,12015, 12015,12015,12015,12028,12028,12028,12028,12028,12028,12028, 12028,12028,12028, 0, 0, 0, 0, 0, 0,12028, 12028,12028,12028,12028,12028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12028,12028,12028,12028, 12028,12028,12030,12030,12030,12030,12030,12030,12030,12030, 12030, 0, 0, 0, 0, 0, 0, 0,12030,12030, 12030,12030,12030,12030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12030,12030,12030,12030,12030, 12030,12038,12038, 0,12038,12038,12038,12038,12038,12038, 12038,12038,12038, 0,12038,12038, 0, 0, 0, 0, 0, 0, 0, 0, 0,12038,12038,12038,12038,12038, 12038,12038, 0, 0, 0, 0, 0,12038, 0, 0, 0, 0, 0, 0, 0, 0,12038, 0, 0, 0, 0, 0, 0, 0, 0,12038,12038,12038,12039,12039, 0,12039,12039,12039,12039,12039,12039,12039,12039,12039, 0,12039,12039, 0, 0, 0, 0, 0, 0, 0, 0, 0,12039,12039,12039,12039,12039,12039,12039, 0, 0, 0, 0, 0,12039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12039,12039,12039,12039,12040,12040, 0,12040, 12040,12040,12040,12040,12040,12040,12040,12040, 0,12040, 12040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12040,12040,12040,12040,12040,12040,12040,12040, 0, 0, 0, 0,12040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12040,12040,12040,12040,12041,12041, 0,12041,12041,12041, 12041,12041,12041,12041,12041,12041, 0,12041,12041, 0, 0, 0, 0, 0, 0, 0, 0, 0,12041,12041, 12041,12041,12041,12041,12041, 0, 0, 0, 0, 0, 12041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12041,12041, 12041,12043,12043, 0,12043,12043,12043,12043,12043,12043, 12043,12043,12043, 0,12043,12043, 0, 0, 0, 0, 0, 0, 0, 0, 0,12043,12043,12043,12043,12043, 12043,12043,12043, 0, 0, 0, 0,12043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12043,12043,12043,12048,12048, 0,12048,12048,12048,12048,12048,12048,12048,12048,12048, 0,12048,12048, 0, 0, 0, 0, 0, 0, 0, 0, 0,12048,12048,12048,12048,12048,12048,12048, 0, 0, 0, 0, 0,12048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12048,12048,12048,12048,12049,12049, 0,12049, 12049,12049,12049,12049,12049,12049,12049,12049, 0,12049, 12049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12049,12049,12049,12049,12049,12049,12049,12049, 0, 0, 0, 0,12049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12049,12049,12049,12049,12050,12050, 0,12050,12050,12050, 12050,12050,12050,12050,12050,12050, 0,12050,12050, 0, 0, 0, 0, 0, 0, 0, 0, 0,12050,12050, 12050,12050,12050,12050,12050, 0, 0, 0, 0, 0, 12050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12050,12050, 12050,12052,12052, 0,12052,12052,12052,12052,12052,12052, 12052,12052,12052, 0,12052,12052, 0, 0, 0, 0, 0, 0, 0, 0, 0,12052,12052,12052,12052,12052, 12052,12052,12052, 0, 0, 0, 0,12052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12052,12052,12052,12056,12056, 0,12056,12056,12056,12056,12056,12056,12056,12056,12056, 0,12056,12056, 0, 0, 0, 0, 0, 0, 0, 0, 0,12056,12056,12056,12056,12056,12056,12056, 0, 0, 0, 0, 0,12056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12056,12056,12056,12056,12057,12057, 0,12057, 12057,12057,12057,12057,12057,12057,12057,12057, 0,12057, 12057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12057,12057,12057,12057,12057,12057,12057,12057, 0, 0, 0, 0,12057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12057,12057,12057,12057,12058,12058, 0,12058,12058,12058, 12058,12058,12058,12058,12058,12058, 0,12058,12058, 0, 0, 0, 0, 0, 0, 0, 0, 0,12058,12058, 12058,12058,12058,12058,12058, 0, 0, 0, 0, 0, 12058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12058,12058, 12058,12060,12060, 0,12060,12060,12060,12060,12060,12060, 12060,12060,12060, 0,12060,12060, 0, 0, 0, 0, 0, 0, 0, 0, 0,12060,12060,12060,12060,12060, 12060,12060,12060, 0, 0, 0, 0,12060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12060,12060,12060,12062,12062, 0,12062,12062,12062,12062,12062,12062,12062,12062,12062, 0,12062,12062, 0, 0, 0, 0, 0, 0, 0, 0, 0,12062,12062,12062,12062,12062,12062,12062, 0, 0, 0, 0, 0,12062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12062,12062,12062,12062,12063,12063, 0,12063, 12063,12063,12063,12063,12063,12063,12063,12063, 0,12063, 12063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12063,12063,12063,12063,12063,12063,12063,12063, 0, 0, 0, 0,12063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12063,12063,12063,12063,12064,12064, 0,12064,12064,12064, 12064,12064,12064,12064,12064,12064, 0,12064,12064, 0, 0, 0, 0, 0, 0, 0, 0, 0,12064,12064, 12064,12064,12064,12064,12064, 0, 0, 0, 0, 0, 12064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12064,12064, 12064,12066,12066, 0,12066,12066,12066,12066,12066,12066, 12066,12066,12066, 0,12066,12066, 0, 0, 0, 0, 0, 0, 0, 0, 0,12066,12066,12066,12066,12066, 12066,12066, 0, 0, 0, 0, 0,12066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12066, 0, 0, 0, 0, 0, 0,12066,12066,12066,12066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12066,12067,12067, 0, 12067,12067,12067,12067,12067,12067,12067,12067,12067, 0, 12067,12067, 0, 0, 0, 0, 0, 0, 0, 0, 0,12067,12067,12067,12067,12067,12067,12067, 0, 0, 0, 0, 0,12067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12067,12067,12067,12067,12068,12068, 0,12068,12068, 12068,12068,12068,12068,12068,12068,12068, 0,12068,12068, 0, 0, 0, 0, 0, 0, 0, 0, 0,12068, 12068,12068,12068,12068,12068,12068,12068, 0, 0, 0, 0,12068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12068, 12068,12068,12068,12069,12069, 0,12069,12069,12069,12069, 12069,12069,12069,12069,12069, 0,12069,12069, 0, 0, 0, 0, 0, 0, 0, 0, 0,12069,12069,12069, 12069,12069,12069,12069, 0, 0, 0, 0, 0,12069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12069, 0, 0, 0, 0, 0, 0,12069,12069,12069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12069,12070, 12070, 0,12070,12070,12070,12070,12070,12070,12070,12070, 12070, 0,12070,12070, 0, 0, 0, 0, 0, 0, 0, 0, 0,12070,12070,12070,12070,12070,12070,12070, 12070, 0, 0, 0, 0,12070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12070,12070,12070,12073,12073, 0,12073, 12073,12073,12073,12073,12073,12073,12073,12073, 0,12073, 12073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12073,12073,12073,12073,12073,12073,12073, 0, 0, 0, 0, 0,12073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12073,12073,12073,12073,12074,12074, 0,12074,12074,12074, 12074,12074,12074,12074,12074,12074, 0,12074,12074, 0, 0, 0, 0, 0, 0, 0, 0, 0,12074,12074, 12074,12074,12074,12074,12074,12074, 0, 0, 0, 0, 12074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12074,12074, 12074,12074,12075,12075, 0,12075,12075,12075,12075,12075, 12075,12075,12075,12075, 0,12075,12075, 0, 0, 0, 0, 0, 0, 0, 0, 0,12075,12075,12075,12075, 12075,12075,12075, 0, 0, 0, 0, 0,12075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12075,12075,12075,12077, 12077, 0,12077,12077,12077,12077,12077,12077,12077,12077, 12077, 0,12077,12077, 0, 0, 0, 0, 0, 0, 0, 0, 0,12077,12077,12077,12077,12077,12077,12077, 12077, 0, 0, 0, 0,12077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12077,12077,12077,12079,12079, 0,12079, 12079,12079,12079,12079,12079,12079,12079,12079, 0,12079, 12079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12079,12079,12079,12079,12079,12079,12079, 0, 0, 0, 0, 0,12079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12079,12079,12079,12079,12080,12080, 0,12080,12080,12080, 12080,12080,12080,12080,12080,12080, 0,12080,12080, 0, 0, 0, 0, 0, 0, 0, 0, 0,12080,12080, 12080,12080,12080,12080,12080,12080, 0, 0, 0, 0, 12080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12080,12080, 12080,12080,12081,12081, 0,12081,12081,12081,12081,12081, 12081,12081,12081,12081, 0,12081,12081, 0, 0, 0, 0, 0, 0, 0, 0, 0,12081,12081,12081,12081, 12081,12081,12081, 0, 0, 0, 0, 0,12081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12081,12081,12081,12083, 12083, 0,12083,12083,12083,12083,12083,12083,12083,12083, 12083, 0,12083,12083, 0, 0, 0, 0, 0, 0, 0, 0, 0,12083,12083,12083,12083,12083,12083,12083, 0, 0, 0, 0, 0,12083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12083, 0, 0, 0, 0, 0, 0,12083,12083,12083,12083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12083,12084,12084, 0,12084,12084, 12084,12084,12084,12084,12084,12084,12084, 0,12084,12084, 0, 0, 0, 0, 0, 0, 0, 0, 0,12084, 12084,12084,12084,12084,12084,12084, 0, 0, 0, 0, 0,12084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12084, 12084,12084,12084,12085,12085, 0,12085,12085,12085,12085, 12085,12085,12085,12085,12085, 0,12085,12085, 0, 0, 0, 0, 0, 0, 0, 0, 0,12085,12085,12085, 12085,12085,12085,12085,12085, 0, 0, 0, 0,12085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12085,12085,12085, 12085,12086,12086, 0,12086,12086,12086,12086,12086,12086, 12086,12086,12086, 0,12086,12086, 0, 0, 0, 0, 0, 0, 0, 0, 0,12086,12086,12086,12086,12086, 12086,12086, 0, 0, 0, 0, 0,12086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12086, 0, 0, 0, 0, 0, 0,12086,12086,12086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12086,12087,12087, 0, 12087,12087,12087,12087,12087,12087,12087,12087,12087, 0, 12087,12087, 0, 0, 0, 0, 0, 0, 0, 0, 0,12087,12087,12087,12087,12087,12087,12087,12087, 0, 0, 0, 0,12087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12087,12087,12087,12089,12089, 0,12089,12089,12089, 12089,12089,12089,12089,12089,12089, 0,12089,12089, 0, 0, 0, 0, 0, 0, 0, 0, 0,12089,12089, 12089,12089,12089,12089,12089, 0, 0, 0, 0, 0, 12089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12089,12089, 12089,12090,12090, 0,12090,12090,12090,12090,12090,12090, 12090,12090,12090, 0,12090,12090, 0, 0, 0, 0, 0, 0, 0, 0, 0,12090,12090,12090,12090,12090, 12090,12090, 0, 0, 0, 0, 0,12090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12090,12090,12090,12090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12090,12091,12091, 0,12091,12091,12091, 12091,12091,12091,12091,12091,12091, 0,12091,12091, 0, 0, 0, 0, 0, 0, 0, 0, 0,12091,12091, 12091,12091,12091,12091,12091, 0, 0, 0, 0, 0, 12091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12091,12091, 12091,12091,12092,12092, 0,12092,12092,12092,12092,12092, 12092,12092,12092,12092, 0,12092,12092, 0, 0, 0, 0, 0, 0, 0, 0, 0,12092,12092,12092,12092, 12092,12092,12092,12092, 0, 0, 0, 0,12092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12092,12092,12092,12092, 12093,12093, 0,12093,12093,12093,12093,12093,12093,12093, 12093,12093, 0,12093,12093, 0, 0, 0, 0, 0, 0, 0, 0, 0,12093,12093,12093,12093,12093,12093, 12093, 0, 0, 0, 0, 0,12093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12093,12093,12093,12095,12095, 0, 12095,12095,12095,12095,12095,12095,12095,12095,12095, 0, 12095,12095, 0, 0, 0, 0, 0, 0, 0, 0, 0,12095,12095,12095,12095,12095,12095,12095,12095, 0, 0, 0, 0,12095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12095,12095,12095,12100,12100, 0,12100,12100,12100, 12100,12100,12100,12100,12100,12100, 0,12100,12100, 0, 0, 0, 0, 0, 0, 0, 0, 0,12100,12100, 12100,12100,12100,12100,12100, 0, 0, 0, 0, 0, 12100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12100,12100, 12100,12101,12101, 0,12101,12101,12101,12101,12101,12101, 12101,12101,12101, 0,12101,12101, 0, 0, 0, 0, 0, 0, 0, 0, 0,12101,12101,12101,12101,12101, 12101,12101,12101, 0, 0, 0, 0,12101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12101,12101,12101,12102,12102, 0,12102,12102,12102,12102,12102,12102,12102,12102,12102, 0,12102,12102, 0, 0, 0, 0, 0, 0, 0, 0, 0,12102,12102,12102,12102,12102,12102,12102, 0, 0, 0, 0, 0,12102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12102,12102,12102,12103,12103, 0,12103,12103, 12103,12103,12103,12103,12103,12103,12103, 0,12103,12103, 0, 0, 0, 0, 0, 0, 0, 0, 0,12103, 12103,12103,12103,12103,12103,12103,12103, 0, 0, 0, 0,12103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12103, 12103,12103,12104,12104, 0,12104,12104,12104,12104,12104, 12104,12104,12104,12104, 0,12104,12104, 0, 0, 0, 0, 0, 0, 0, 0, 0,12104,12104,12104,12104, 12104,12104,12104, 0, 0, 0, 0, 0,12104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12104, 0, 0, 0, 0, 0,12104,12104,12104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12104,12108, 12108, 0,12108,12108,12108,12108,12108,12108,12108,12108, 12108, 0,12108,12108, 0, 0, 0, 0, 0, 0, 0, 0, 0,12108,12108,12108,12108,12108,12108,12108, 0, 0, 0, 0, 0,12108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12108,12108,12108,12109,12109, 0,12109, 12109,12109,12109,12109,12109,12109,12109,12109, 0,12109, 12109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12109,12109,12109,12109,12109,12109,12109,12109, 0, 0, 0, 0,12109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12109,12109,12109,12112,12112, 0,12112,12112,12112,12112, 12112,12112,12112,12112,12112, 0,12112,12112, 0, 0, 0, 0, 0, 0, 0, 0, 0,12112,12112,12112, 12112,12112,12112,12112, 0, 0, 0, 0, 0,12112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12112,12112,12112, 12113,12113, 0,12113,12113,12113,12113,12113,12113,12113, 12113,12113, 0,12113,12113, 0, 0, 0, 0, 0, 0, 0, 0, 0,12113,12113,12113,12113,12113,12113, 12113,12113, 0, 0, 0, 0,12113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12113,12113,12113,12115,12115, 0, 12115,12115,12115,12115,12115,12115,12115,12115,12115, 0, 12115,12115, 0, 0, 0, 0, 0, 0, 0, 0, 0,12115,12115,12115,12115,12115,12115,12115, 0, 0, 0, 0, 0,12115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12115,12115,12115,12116,12116, 0,12116,12116,12116, 12116,12116,12116,12116,12116,12116, 0,12116,12116, 0, 0, 0, 0, 0, 0, 0, 0, 0,12116,12116, 12116,12116,12116,12116,12116,12116, 0, 0, 0, 0, 12116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12116,12116, 12116,12117,12117, 0,12117,12117,12117,12117,12117,12117, 12117,12117,12117, 0,12117,12117, 0, 0, 0, 0, 0, 0, 0, 0, 0,12117,12117,12117,12117,12117, 12117,12117, 0, 0, 0, 0, 0,12117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12117, 0, 0, 0,12117,12117,12117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12117, 12118,12118, 0,12118,12118,12118,12118,12118,12118,12118, 12118,12118, 0,12118,12118, 0, 0, 0, 0, 0, 0, 0, 0, 0,12118,12118,12118,12118,12118,12118, 12118, 0, 0, 0, 0, 0,12118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12118,12118,12118,12119,12119, 0, 12119,12119,12119,12119,12119,12119,12119,12119,12119, 0, 12119,12119,12119,12119,12119,12119,12119,12119,12119,12119, 12119,12119,12119,12119,12119,12119,12119,12119, 0, 0, 0, 0, 0,12119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12119,12119,12119,12121,12121, 0,12121,12121,12121, 12121,12121,12121,12121,12121,12121, 0,12121,12121, 0, 0, 0, 0, 0, 0, 0, 0, 0,12121,12121, 12121,12121,12121,12121,12121, 0, 0, 0, 0, 0, 12121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12121,12121, 12121,12122,12122, 0,12122,12122,12122,12122,12122,12122, 12122,12122,12122, 0,12122,12122, 0, 0, 0, 0, 0, 0, 0, 0, 0,12122,12122,12122,12122,12122, 12122,12122,12122, 0, 0, 0, 0,12122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12122,12122,12122,12123,12123, 0,12123,12123,12123,12123,12123,12123,12123,12123,12123, 0,12123,12123, 0, 0, 0, 0, 0, 0, 0, 0, 0,12123,12123,12123,12123,12123,12123,12123, 0, 0, 0, 0, 0,12123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12123, 0, 0, 0,12123,12123,12123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12123,12125,12125, 0, 12125,12125,12125,12125,12125,12125,12125,12125,12125, 0, 12125,12125, 0, 0, 0, 0, 0, 0, 0, 0, 0,12125,12125,12125,12125,12125,12125,12125, 0, 0, 0, 0, 0,12125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12125,12125,12125,12125,12126,12126, 0,12126,12126, 12126,12126,12126,12126,12126,12126,12126, 0,12126,12126, 0, 0, 0, 0, 0, 0, 0, 0, 0,12126, 12126,12126,12126,12126,12126,12126, 0, 0, 0, 0, 0,12126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12126, 12126,12126,12127,12127, 0,12127,12127,12127,12127,12127, 12127,12127,12127,12127, 0,12127,12127, 0, 0, 0, 0, 0, 0, 0, 0, 0,12127,12127,12127,12127, 12127,12127,12127,12127, 0, 0, 0, 0,12127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12127,12127,12127,12129, 12129, 0,12129,12129,12129,12129,12129,12129,12129,12129, 12129, 0,12129,12129, 0, 0, 0, 0, 0, 0, 0, 0, 0,12129,12129,12129,12129,12129,12129,12129, 0, 0, 0, 0, 0,12129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12129,12129,12129,12130,12130, 0,12130, 12130,12130,12130,12130,12130,12130,12130,12130, 0,12130, 12130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12130,12130,12130,12130,12130,12130,12130,12130, 0, 0, 0, 0,12130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12130,12130,12130,12132,12132, 0,12132,12132,12132,12132, 12132,12132,12132,12132,12132, 0,12132,12132, 0, 0, 0, 0, 0, 0, 0, 0, 0,12132,12132,12132, 12132,12132,12132,12132, 0, 0, 0, 0, 0,12132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12132,12132,12132, 12133,12133, 0,12133,12133,12133,12133,12133,12133,12133, 12133,12133, 0,12133,12133, 0, 0, 0, 0, 0, 0, 0, 0, 0,12133,12133,12133,12133,12133,12133, 12133,12133, 0, 0, 0, 0,12133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12133,12133,12133,12134,12134, 0, 12134,12134,12134,12134,12134,12134,12134,12134,12134, 0, 12134,12134, 0, 0, 0, 0, 0, 0, 0, 0, 0,12134,12134,12134,12134,12134,12134,12134, 0, 0, 0, 0, 0,12134, 0,12134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12134,12134,12134, 0, 0, 0, 0, 0, 0, 0, 0,12134,12139,12139, 0,12139,12139,12139,12139, 12139,12139,12139,12139,12139, 0,12139,12139, 0, 0, 0, 0, 0, 0, 0, 0, 0,12139,12139,12139, 12139,12139,12139,12139, 0, 0, 0, 0, 0,12139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12139,12139,12139, 12140,12140, 0,12140,12140,12140,12140,12140,12140,12140, 12140,12140, 0,12140,12140, 0, 0, 0, 0, 0, 0, 0, 0, 0,12140,12140,12140,12140,12140,12140, 12140,12140, 0, 0, 0, 0,12140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12140,12140,12140,12142,12142, 0, 12142,12142,12142,12142,12142,12142,12142,12142,12142, 0, 12142,12142, 0, 0, 0, 0, 0, 0, 0, 0, 0,12142,12142,12142,12142,12142,12142,12142, 0, 0, 0, 0, 0,12142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12142,12142,12142,12143,12143, 0,12143,12143,12143, 12143,12143,12143,12143,12143,12143, 0,12143,12143, 0, 0, 0, 0, 0, 0, 0, 0, 0,12143,12143, 12143,12143,12143,12143,12143,12143, 0, 0, 0, 0, 12143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12143,12143, 12143,12147,12147, 0,12147,12147,12147,12147,12147,12147, 12147,12147,12147, 0,12147,12147, 0, 0, 0, 0, 0, 0, 0, 0, 0,12147,12147,12147,12147,12147, 12147,12147, 0, 0, 0, 0, 0,12147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12147,12147,12147,12148,12148, 0,12148,12148,12148,12148,12148,12148,12148,12148,12148, 0,12148,12148, 0, 0, 0, 0, 0, 0, 0, 0, 0,12148,12148,12148,12148,12148,12148,12148,12148, 0, 0, 0, 0,12148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12148,12148,12148,12152,12152, 0,12152,12152, 12152,12152,12152,12152,12152,12152,12152, 0,12152,12152, 0, 0, 0, 0, 0, 0, 0, 0, 0,12152, 12152,12152,12152,12152,12152,12152, 0, 0, 0, 0, 0,12152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12152, 12152,12152,12153,12153, 0,12153,12153,12153,12153,12153, 12153,12153,12153,12153, 0,12153,12153, 0, 0, 0, 0, 0, 0, 0, 0, 0,12153,12153,12153,12153, 12153,12153,12153,12153, 0, 0, 0, 0,12153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12153,12153,12153,12156, 12156, 0,12156,12156,12156,12156,12156,12156,12156,12156, 12156, 0,12156,12156, 0, 0, 0, 0, 0, 0, 0, 0, 0,12156,12156,12156,12156,12156,12156,12156, 0, 0, 0, 0, 0,12156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12156,12156,12156,12157,12157, 0,12157, 12157,12157,12157,12157,12157,12157,12157,12157, 0,12157, 12157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12157,12157,12157,12157,12157,12157,12157,12157, 0, 0, 0, 0,12157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12157,12157,12157,12159,12159, 0,12159,12159,12159,12159, 12159,12159,12159,12159,12159, 0,12159,12159, 0, 0, 0, 0, 0, 0, 0, 0, 0,12159,12159,12159, 12159,12159,12159,12159, 0, 0, 0, 0, 0,12159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12159,12159,12159, 12160,12160, 0,12160,12160,12160,12160,12160,12160,12160, 12160,12160, 0,12160,12160, 0, 0, 0, 0, 0, 0, 0, 0, 0,12160,12160,12160,12160,12160,12160, 12160,12160, 0, 0, 0, 0,12160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12160,12160,12160,12161,12161, 0, 12161,12161,12161,12161,12161,12161,12161,12161,12161,12161, 12161,12161, 0, 0, 0, 0, 0, 0, 0, 0, 0,12161,12161,12161,12161,12161,12161,12161,12161, 0, 0, 0, 0,12161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12161,12161,12161,12161,12161,12162,12162, 0,12162, 12162,12162,12162,12162,12162,12162,12162,12162, 0,12162, 12162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12162,12162,12162,12162,12162,12162,12162, 0, 0, 0, 0, 0,12162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12162,12162,12162,12163,12163, 0,12163,12163,12163,12163, 12163,12163,12163,12163,12163, 0,12163,12163, 0, 0, 0, 0, 0, 0, 0, 0, 0,12163,12163,12163, 12163,12163,12163,12163,12163, 0, 0, 0, 0,12163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12163,12163,12163, 12166,12166, 0,12166,12166,12166,12166,12166,12166,12166, 12166,12166, 0,12166,12166, 0, 0, 0, 0, 0, 0, 0, 0, 0,12166,12166,12166,12166,12166,12166, 12166, 0, 0, 0, 0, 0,12166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12166,12166,12166,12167,12167, 0, 12167,12167,12167,12167,12167,12167,12167,12167,12167, 0, 12167,12167, 0, 0, 0, 0, 0, 0, 0, 0, 0,12167,12167,12167,12167,12167,12167,12167,12167, 0, 0, 0, 0,12167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12167,12167,12167,12169,12169, 0,12169,12169,12169, 12169,12169,12169,12169,12169,12169, 0,12169,12169, 0, 0, 0, 0, 0, 0, 0, 0, 0,12169,12169, 12169,12169,12169,12169,12169, 0, 0, 0, 0, 0, 12169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12169,12169, 12169,12170,12170, 0,12170,12170,12170,12170,12170,12170, 12170,12170,12170, 0,12170,12170, 0, 0, 0, 0, 0, 0, 0, 0, 0,12170,12170,12170,12170,12170, 12170,12170,12170, 0, 0, 0, 0,12170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12170,12170,12170,12171,12171, 0,12171,12171,12171,12171,12171,12171,12171,12171,12171, 12171,12171,12171, 0, 0, 0, 0, 0, 0, 0, 0, 0,12171,12171,12171,12171,12171,12171,12171,12171, 0, 0, 0, 0,12171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12171,12171,12171,12171,12171,12172,12172, 0, 12172,12172,12172,12172,12172,12172,12172,12172,12172, 0, 12172,12172, 0, 0, 0, 0, 0, 0, 0, 0, 0,12172,12172,12172,12172,12172,12172,12172, 0, 0, 0, 0, 0,12172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12172,12172,12172,12172,12173,12173, 0,12173,12173, 12173,12173,12173,12173,12173,12173,12173, 0,12173,12173, 0, 0, 0, 0, 0, 0, 0, 0, 0,12173, 12173,12173,12173,12173,12173,12173,12173, 0, 0, 0, 0,12173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12173, 12173,12173,12173,12174,12174, 0,12174,12174,12174,12174, 12174,12174,12174,12174,12174, 0,12174,12174, 0, 0, 0, 0, 0, 0, 0, 0, 0,12174,12174,12174, 12174,12174,12174,12174, 0, 0, 0, 0, 0,12174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12174,12174,12174, 12176,12176, 0,12176,12176,12176,12176,12176,12176,12176, 12176,12176, 0,12176,12176, 0, 0, 0, 0, 0, 0, 0, 0, 0,12176,12176,12176,12176,12176,12176, 12176,12176, 0, 0, 0, 0,12176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12176,12176,12176,12182,12182, 0, 12182,12182,12182,12182,12182,12182,12182,12182,12182, 0, 12182,12182, 0, 0, 0, 0, 0, 0, 0, 0, 0,12182,12182,12182,12182,12182,12182,12182, 0, 0, 0, 0, 0,12182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12182,12182,12182,12182,12183,12183, 0,12183,12183, 12183,12183,12183,12183,12183,12183,12183, 0,12183,12183, 12183,12183,12183,12183,12183,12183,12183,12183,12183,12183, 12183,12183,12183,12183,12183,12183, 0, 0, 0, 0, 0,12183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12183, 12183,12183,12183,12186,12186,12186,12186,12186,12186,12186, 12186,12186,12186, 0, 0, 0, 0, 0, 0,12186, 12186,12186,12186,12186,12186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12186,12186,12186,12186, 12186,12186,12187,12187,12187,12187,12187,12187,12187,12187, 12187,12187, 0, 0, 0, 0, 0, 0,12187,12187, 12187,12187,12187,12187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12187,12187,12187,12187,12187, 12187,12189,12189,12189,12189,12189,12189,12189,12189,12189, 12189, 0, 0, 0, 0, 0, 0,12189,12189,12189, 12189,12189,12189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12189,12189,12189,12189,12189,12189, 12191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12191,12191,12191,12191,12191,12191,12191,12191,12191, 0, 0, 0, 0, 0, 0, 0,12191,12191,12191, 12191,12191,12191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12191,12191,12191,12191,12191,12191, 12195,12195,12195,12195,12195,12195,12195,12195,12195,12195, 0, 0, 0, 0, 0, 0,12195,12195,12195,12195, 12195,12195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12195,12195,12195,12195,12195,12195,12197, 12197,12197,12197,12197,12197,12197,12197,12197, 0, 0, 0, 0, 0, 0, 0,12197,12197,12197,12197,12197, 12197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12197,12197,12197,12197,12197,12197,12207,12207, 12207,12207,12207,12207,12207,12207,12207,12207, 0, 0, 0, 0, 0, 0,12207,12207,12207,12207,12207,12207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12207,12207,12207,12207,12207,12207,12209,12209,12209, 12209,12209,12209,12209,12209,12209, 0, 0, 0, 0, 0, 0, 0,12209,12209,12209,12209,12209,12209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12209,12209,12209,12209,12209,12209,12217,12217,12217,12217, 12217,12217,12217,12217,12217,12217, 0, 0, 0, 0, 0, 0,12217,12217,12217,12217,12217,12217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12217, 12217,12217,12217,12217,12217,12220,12220,12220,12220,12220, 12220,12220,12220,12220,12220, 0, 0, 0, 0, 0, 0,12220,12220,12220,12220,12220,12220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12220,12220, 12220,12220,12220,12220,12228,12228,12228,12228,12228,12228, 12228,12228,12228, 0, 0, 0, 0, 0, 0, 0, 12228,12228,12228,12228,12228,12228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12228,12228,12228, 12228,12228,12228,12229,12229, 0,12229,12229,12229,12229, 12229,12229,12229,12229,12229, 0,12229,12229, 0, 0, 0, 0, 0, 0, 0, 0, 0,12229,12229,12229, 12229,12229,12229,12229, 0, 0, 0, 0, 0,12229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12229,12229,12229, 12229,12230,12230, 0,12230,12230,12230,12230,12230,12230, 12230,12230,12230,12230,12230,12230,12230,12230,12230,12230, 12230,12230,12230,12230,12230,12230,12230,12230,12230,12230, 12230,12230,12230,12230,12230,12230,12230,12230,12230,12230, 12230,12230,12230,12230,12230,12230,12230,12230,12230,12230, 12230,12230,12230,12230,12230,12230,12230,12230,12230,12230, 12230,12230,12230,12230,12230,12230,12230,12230,12230,12230, 12230,12230,12230,12230,12230,12230,12230,12230,12230,12230, 12230,12230,12230,12230,12233,12233, 0,12233,12233,12233, 12233,12233,12233,12233,12233,12233, 0,12233,12233, 0, 0, 0, 0, 0, 0, 0, 0, 0,12233,12233, 12233,12233,12233,12233,12233, 0, 0, 0, 0, 0, 12233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12233,12233, 12233,12239,12239, 0,12239,12239,12239,12239,12239,12239, 12239,12239,12239, 0,12239,12239, 0, 0, 0, 0, 0, 0, 0, 0, 0,12239,12239,12239,12239,12239, 12239,12239,12239, 0, 0, 0, 0,12239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12239,12239,12239,12239,12241, 12241, 0,12241,12241,12241,12241,12241,12241,12241,12241, 12241,12241,12241,12241, 0, 0, 0, 0, 0, 0, 0, 0, 0,12241,12241,12241,12241,12241,12241,12241, 0, 0, 0, 0, 0,12241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12241,12241,12241,12241,12242,12242, 0, 12242,12242,12242,12242,12242,12242,12242,12242,12242, 0, 12242,12242, 0, 0, 0, 0, 0, 0, 0, 0, 0,12242,12242,12242,12242,12242,12242,12242, 0, 0, 0, 0, 0,12242,12242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12242,12242,12242,12262,12262, 0,12262,12262,12262, 12262,12262,12262,12262,12262,12262, 0,12262,12262, 0, 0, 0, 0, 0, 0, 0, 0, 0,12262,12262, 12262,12262,12262,12262,12262, 0, 0, 0, 0, 0, 12262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12262,12262, 12262,12262,12263,12263, 0,12263,12263,12263,12263,12263, 12263,12263,12263,12263, 0,12263,12263, 0, 0, 0, 0, 0, 0, 0, 0, 0,12263,12263,12263,12263, 12263,12263,12263,12263, 0, 0, 0, 0,12263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12263,12263,12263,12263, 12264,12264, 0,12264,12264,12264,12264,12264,12264,12264, 12264,12264, 0,12264,12264, 0, 0, 0, 0, 0, 0, 0, 0, 0,12264,12264,12264,12264,12264,12264, 12264, 0, 0, 0, 0, 0,12264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12264,12264,12264,12266,12266, 0, 12266,12266,12266,12266,12266,12266,12266,12266,12266, 0, 12266,12266, 0, 0, 0, 0, 0, 0, 0, 0, 0,12266,12266,12266,12266,12266,12266,12266,12266, 0, 0, 0, 0,12266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12266,12266,12266,12288,12288, 0,12288,12288,12288, 12288,12288,12288,12288,12288,12288, 0,12288,12288, 0, 0, 0, 0, 0, 0, 0, 0, 0,12288,12288, 12288,12288,12288,12288,12288, 0, 0, 0, 0, 0, 12288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12288,12288, 12288,12289,12289, 0,12289,12289,12289,12289,12289,12289, 12289,12289,12289, 0,12289,12289, 0, 0, 0, 0, 0, 0, 0, 0, 0,12289,12289,12289,12289,12289, 12289,12289,12289, 0, 0, 0, 0,12289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12289,12289,12289,12321,12321, 0,12321,12321,12321,12321,12321,12321,12321,12321,12321, 0,12321,12321, 0, 0, 0, 0, 0, 0, 0, 0, 0,12321,12321,12321,12321,12321,12321,12321, 0, 0, 0, 0, 0,12321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12321,12321,12321,12322,12322, 0,12322,12322, 12322,12322,12322,12322,12322,12322,12322, 0,12322,12322, 0, 0, 0, 0, 0, 0, 0, 0, 0,12322, 12322,12322,12322,12322,12322,12322,12322, 0, 0, 0, 0,12322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12322, 12322,12322,12325,12325, 0,12325,12325,12325,12325,12325, 12325,12325,12325,12325, 0,12325,12325, 0, 0, 0, 0, 0, 0, 0, 0, 0,12325,12325,12325,12325, 12325,12325,12325, 0, 0, 0, 0, 0,12325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12325,12325,12325,12326, 12326, 0,12326,12326,12326,12326,12326,12326,12326,12326, 12326, 0,12326,12326, 0, 0, 0, 0, 0, 0, 0, 0, 0,12326,12326,12326,12326,12326,12326,12326, 0, 0, 0, 0, 0,12326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12326, 0, 0, 0, 0, 0,12326,12326,12326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12326,12327,12327, 0,12327, 12327,12327,12327,12327,12327,12327,12327,12327, 0,12327, 12327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12327,12327,12327,12327,12327,12327,12327,12327, 0, 0, 0, 0,12327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12327,12327,12327,12330,12330, 0,12330,12330,12330,12330, 12330,12330,12330,12330,12330, 0,12330,12330, 0, 0, 0, 0, 0, 0, 0, 0, 0,12330,12330,12330, 12330,12330,12330,12330, 0, 0, 0, 0, 0,12330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12330,12330,12330, 12331,12331, 0,12331,12331,12331,12331,12331,12331,12331, 12331,12331, 0,12331,12331, 0, 0, 0, 0, 0, 0, 0, 0, 0,12331,12331,12331,12331,12331,12331, 12331,12331, 0, 0, 0, 0,12331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12331,12331,12331,12333,12333, 0, 12333,12333,12333,12333,12333,12333,12333,12333,12333, 0, 12333,12333, 0, 0, 0, 0, 0, 0, 0, 0, 0,12333,12333,12333,12333,12333,12333,12333, 0, 0, 0, 0, 0,12333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12333,12333,12333,12334,12334, 0,12334,12334,12334, 12334,12334,12334,12334,12334,12334, 0,12334,12334, 0, 0, 0, 0, 0, 0, 0, 0, 0,12334,12334, 12334,12334,12334,12334,12334,12334, 0, 0, 0, 0, 12334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12334,12334, 12334,12335,12335, 0,12335,12335,12335,12335,12335,12335, 12335,12335,12335, 0,12335,12335, 0, 0, 0, 0, 0, 0, 0, 0, 0,12335,12335,12335,12335,12335, 12335,12335, 0, 0, 0, 0, 0,12335,12335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12335,12335,12335, 0, 0, 0, 0, 0, 0, 0,12335,12336,12336, 0,12336, 12336,12336,12336,12336,12336,12336,12336,12336, 0,12336, 12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336,12336,12336,12336,12336,12336,12336, 0, 0, 0, 0, 0,12336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12336,12336,12336,12337,12337, 0,12337,12337,12337,12337, 12337,12337,12337,12337,12337, 0,12337,12337, 0, 0, 0, 0, 0, 0, 0, 0, 0,12337,12337,12337, 12337,12337,12337,12337, 0, 0, 0, 0, 0,12337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12337,12337,12337, 12338,12338, 0,12338,12338,12338,12338,12338,12338,12338, 12338,12338, 0,12338,12338, 0, 0, 0, 0, 0, 0, 0, 0, 0,12338,12338,12338,12338,12338,12338, 12338, 0, 0, 0, 0, 0,12338,12338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12338,12338,12338, 0, 0, 0, 0, 0, 0, 0,12338,12340,12340, 0,12340,12340, 12340,12340,12340,12340,12340,12340,12340, 0,12340,12340, 0, 0, 0, 0, 0, 0, 0, 0, 0,12340, 12340,12340,12340,12340,12340,12340, 0, 0, 0, 0, 0,12340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12340, 12340,12340,12341,12341, 0,12341,12341,12341,12341,12341, 12341,12341,12341,12341, 0,12341,12341, 0, 0, 0, 0, 0, 0, 0, 0, 0,12341,12341,12341,12341, 12341,12341,12341,12341, 0, 0, 0, 0,12341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12341,12341,12341,12345, 12345, 0,12345,12345,12345,12345,12345,12345,12345,12345, 12345, 0,12345,12345, 0, 0, 0, 0, 0, 0, 0, 0, 0,12345,12345,12345,12345,12345,12345,12345, 0, 0, 0, 0, 0,12345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12345,12345,12345,12346,12346, 0,12346, 12346,12346,12346,12346,12346,12346,12346,12346, 0,12346, 12346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12346,12346,12346,12346,12346,12346,12346,12346, 0, 0, 0, 0,12346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12346,12346,12346,12350,12350, 0,12350,12350,12350,12350, 12350,12350,12350,12350,12350, 0,12350,12350, 0, 0, 0, 0, 0, 0, 0, 0, 0,12350,12350,12350, 12350,12350,12350,12350, 0, 0, 0, 0, 0,12350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12350,12350,12350, 12351,12351, 0,12351,12351,12351,12351,12351,12351,12351, 12351,12351, 0,12351,12351, 0, 0, 0, 0, 0, 0, 0, 0, 0,12351,12351,12351,12351,12351,12351, 12351,12351, 0, 0, 0, 0,12351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12351,12351,12351,12354,12354, 0, 12354,12354,12354,12354,12354,12354,12354,12354,12354, 0, 12354,12354, 0, 0, 0, 0, 0, 0, 0, 0, 0,12354,12354,12354,12354,12354,12354,12354, 0, 0, 0, 0, 0,12354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12354,12354,12354,12355,12355, 0,12355,12355,12355, 12355,12355,12355,12355,12355,12355, 0,12355,12355, 0, 0, 0, 0, 0, 0, 0, 0, 0,12355,12355, 12355,12355,12355,12355,12355,12355, 0, 0, 0, 0, 12355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12355,12355, 12355,12357,12357, 0,12357,12357,12357,12357,12357,12357, 12357,12357,12357, 0,12357,12357, 0, 0, 0, 0, 0, 0, 0, 0, 0,12357,12357,12357,12357,12357, 12357,12357, 0, 0, 0, 0, 0,12357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12357, 0, 0, 0, 0, 0, 0,12357,12357,12357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12357,12358,12358, 0, 12358,12358,12358,12358,12358,12358,12358,12358,12358, 0, 12358,12358, 0, 0, 0, 0, 0, 0, 0, 0, 0,12358,12358,12358,12358,12358,12358,12358, 0, 0, 0, 0, 0,12358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12358,12358,12358,12359,12359, 0,12359,12359,12359, 12359,12359,12359,12359,12359,12359, 0,12359,12359, 0, 0, 0, 0, 0, 0, 0, 0, 0,12359,12359, 12359,12359,12359,12359,12359,12359, 0, 0, 0, 0, 12359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12359,12359, 12359,12360,12360, 0,12360,12360,12360,12360,12360,12360, 12360,12360,12360, 0,12360,12360, 0, 0, 0, 0, 0, 0, 0, 0, 0,12360,12360,12360,12360,12360, 12360,12360, 0, 0, 0, 0, 0,12360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12360,12360,12360,12361,12361, 0,12361,12361,12361,12361,12361,12361,12361,12361,12361, 0,12361,12361, 0, 0, 0, 0, 0, 0, 0, 0, 0,12361,12361,12361,12361,12361,12361,12361,12361, 0, 0, 0, 0,12361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12361,12361,12361,12364,12364, 0,12364,12364, 12364,12364,12364,12364,12364,12364,12364, 0,12364,12364, 0, 0, 0, 0, 0, 0, 0, 0, 0,12364, 12364,12364,12364,12364,12364,12364, 0, 0, 0, 0, 0,12364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12364, 12364,12364,12365,12365, 0,12365,12365,12365,12365,12365, 12365,12365,12365,12365, 0,12365,12365, 0, 0, 0, 0, 0, 0, 0, 0, 0,12365,12365,12365,12365, 12365,12365,12365,12365, 0, 0, 0, 0,12365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12365,12365,12365,12368, 12368, 0,12368,12368,12368,12368,12368,12368,12368,12368, 12368, 0,12368,12368, 0, 0, 0, 0, 0, 0, 0, 0, 0,12368,12368,12368,12368,12368,12368,12368, 0, 0, 0, 0, 0,12368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12368,12368,12368,12369,12369, 0,12369, 12369,12369,12369,12369,12369,12369,12369,12369, 0,12369, 12369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12369,12369,12369,12369,12369,12369,12369,12369, 0, 0, 0, 0,12369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12369,12369,12369,12371,12371, 0,12371,12371,12371,12371, 12371,12371,12371,12371,12371, 0,12371,12371, 0, 0, 0, 0, 0, 0, 0, 0, 0,12371,12371,12371, 12371,12371,12371,12371, 0, 0, 0, 0, 0,12371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12371, 0, 0, 0, 0, 0, 0,12371,12371,12371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12371,12372, 12372, 0,12372,12372,12372,12372,12372,12372,12372,12372, 12372, 0,12372,12372, 0, 0, 0, 0, 0, 0, 0, 0, 0,12372,12372,12372,12372,12372,12372,12372, 0, 0, 0, 0, 0,12372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12372,12372,12372,12373,12373, 0,12373, 12373,12373,12373,12373,12373,12373,12373,12373, 0,12373, 12373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12373,12373,12373,12373,12373,12373,12373,12373, 0, 0, 0, 0,12373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12373,12373,12373,12374,12374, 0,12374,12374,12374,12374, 12374,12374,12374,12374,12374, 0,12374,12374, 0, 0, 0, 0, 0, 0, 0, 0, 0,12374,12374,12374, 12374,12374,12374,12374, 0, 0, 0, 0, 0,12374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12374,12374,12374, 12374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12374, 12389,12389, 0,12389,12389,12389,12389,12389,12389,12389, 12389,12389, 0,12389,12389, 0, 0, 0, 0, 0, 0, 0, 0, 0,12389,12389,12389,12389,12389,12389, 12389, 0, 0, 0, 0, 0,12389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12389,12389,12389,12390,12390, 0, 12390,12390,12390,12390,12390,12390,12390,12390,12390, 0, 12390,12390, 0, 0, 0, 0, 0, 0, 0, 0, 0,12390,12390,12390,12390,12390,12390,12390,12390, 0, 0, 0, 0,12390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12390,12390,12390,12394,12394, 0,12394,12394,12394, 12394,12394,12394,12394,12394,12394, 0,12394,12394, 0, 0, 0, 0, 0, 0, 0, 0, 0,12394,12394, 12394,12394,12394,12394,12394, 0, 0, 0, 0, 0, 12394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12394,12394, 12394,12395,12395, 0,12395,12395,12395,12395,12395,12395, 12395,12395,12395, 0,12395,12395, 0, 0, 0, 0, 0, 0, 0, 0, 0,12395,12395,12395,12395,12395, 12395,12395,12395, 0, 0, 0, 0,12395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12395,12395,12395,12399,12399, 0,12399,12399,12399,12399,12399,12399,12399,12399,12399, 0,12399,12399, 0, 0, 0, 0, 0, 0, 0, 0, 0,12399,12399,12399,12399,12399,12399,12399, 0, 0, 0, 0, 0,12399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12399,12399,12399,12400,12400, 0,12400,12400, 12400,12400,12400,12400,12400,12400,12400, 0,12400,12400, 0, 0, 0, 0, 0, 0, 0, 0, 0,12400, 12400,12400,12400,12400,12400,12400,12400, 0, 0, 0, 0,12400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12400, 12400,12400,12404,12404, 0,12404,12404,12404,12404,12404, 12404,12404,12404,12404, 0,12404,12404, 0, 0, 0, 0, 0, 0, 0, 0, 0,12404,12404,12404,12404, 12404,12404,12404, 0, 0, 0, 0, 0,12404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12404,12404,12404,12405, 12405, 0,12405,12405,12405,12405,12405,12405,12405,12405, 12405, 0,12405,12405, 0, 0, 0, 0, 0, 0, 0, 0, 0,12405,12405,12405,12405,12405,12405,12405, 12405, 0, 0, 0, 0,12405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12405,12405,12405,12409,12409, 0,12409, 12409,12409,12409,12409,12409,12409,12409,12409, 0,12409, 12409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12409,12409,12409,12409,12409,12409,12409, 0, 0, 0, 0, 0,12409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12409,12409,12409,12410,12410, 0,12410,12410,12410,12410, 12410,12410,12410,12410,12410, 0,12410,12410, 0, 0, 0, 0, 0, 0, 0, 0, 0,12410,12410,12410, 12410,12410,12410,12410,12410, 0, 0, 0, 0,12410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12410,12410,12410, 12413,12413, 0,12413,12413,12413,12413,12413,12413,12413, 12413,12413, 0,12413,12413, 0, 0, 0, 0, 0, 0, 0, 0, 0,12413,12413,12413,12413,12413,12413, 12413, 0, 0, 0, 0, 0,12413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12413,12413,12413,12414,12414, 0, 12414,12414,12414,12414,12414,12414,12414,12414,12414, 0, 12414,12414, 0, 0, 0, 0, 0, 0, 0, 0, 0,12414,12414,12414,12414,12414,12414,12414,12414, 0, 0, 0, 0,12414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12414,12414,12414,12416,12416, 0,12416,12416,12416, 12416,12416,12416,12416,12416,12416, 0,12416,12416, 0, 0, 0, 0, 0, 0, 0, 0, 0,12416,12416, 12416,12416,12416,12416,12416, 0, 0, 0, 0, 0, 12416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12416, 0, 0, 0, 0, 0, 0,12416,12416, 12416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12416, 12417,12417, 0,12417,12417,12417,12417,12417,12417,12417, 12417,12417, 0,12417,12417, 0, 0, 0, 0, 0, 0, 0, 0, 0,12417,12417,12417,12417,12417,12417, 12417, 0, 0, 0, 0, 0,12417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12417,12417,12417,12418,12418, 0, 12418,12418,12418,12418,12418,12418,12418,12418,12418, 0, 12418,12418, 0, 0, 0, 0, 0, 0, 0, 0, 0,12418,12418,12418,12418,12418,12418,12418,12418, 0, 0, 0, 0,12418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12418,12418,12418,12419,12419, 0,12419,12419,12419, 12419,12419,12419,12419,12419,12419, 0,12419,12419, 0, 0, 0, 0, 0, 0, 0, 0, 0,12419,12419, 12419,12419,12419,12419,12419, 0, 0, 0, 0, 0, 12419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12419,12419, 12419,12420,12420, 0,12420,12420,12420,12420,12420,12420, 12420,12420,12420, 0,12420,12420, 0, 0, 0, 0, 0, 0, 0, 0, 0,12420,12420,12420,12420,12420, 12420,12420,12420, 0, 0, 0, 0,12420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12420,12420,12420,12424,12424, 0,12424,12424,12424,12424,12424,12424,12424,12424,12424, 0,12424,12424, 0, 0, 0, 0, 0, 0, 0, 0, 0,12424,12424,12424,12424,12424,12424,12424, 0, 0, 0, 0, 0,12424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12424,12424,12424,12425,12425, 0,12425,12425, 12425,12425,12425,12425,12425,12425,12425, 0,12425,12425, 0, 0, 0, 0, 0, 0, 0, 0, 0,12425, 12425,12425,12425,12425,12425,12425,12425, 0, 0, 0, 0,12425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12425, 12425,12425,12428,12428, 0,12428,12428,12428,12428,12428, 12428,12428,12428,12428, 0,12428,12428, 0, 0, 0, 0, 0, 0, 0, 0, 0,12428,12428,12428,12428, 12428,12428,12428, 0, 0, 0, 0, 0,12428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12428,12428,12428,12429, 12429, 0,12429,12429,12429,12429,12429,12429,12429,12429, 12429, 0,12429,12429, 0, 0, 0, 0, 0, 0, 0, 0, 0,12429,12429,12429,12429,12429,12429,12429, 12429, 0, 0, 0, 0,12429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12429,12429,12429,12431,12431, 0,12431, 12431,12431,12431,12431,12431,12431,12431,12431, 0,12431, 12431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12431,12431,12431,12431,12431,12431,12431, 0, 0, 0, 0, 0,12431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12431, 0, 0, 0, 0, 0, 0, 12431,12431,12431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12431,12432,12432, 0,12432,12432,12432,12432,12432, 12432,12432,12432,12432, 0,12432,12432, 0, 0, 0, 0, 0, 0, 0, 0, 0,12432,12432,12432,12432, 12432,12432,12432, 0, 0, 0, 0, 0,12432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12432,12432,12432,12433, 12433, 0,12433,12433,12433,12433,12433,12433,12433,12433, 12433, 0,12433,12433, 0, 0, 0, 0, 0, 0, 0, 0, 0,12433,12433,12433,12433,12433,12433,12433, 12433, 0, 0, 0, 0,12433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12433,12433,12433,12437,12437, 0,12437, 12437,12437,12437,12437,12437,12437,12437,12437, 0,12437, 12437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12437,12437,12437,12437,12437,12437,12437, 0, 0, 0, 0, 0,12437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12437,12437,12437,12437,12438,12438, 0,12438,12438,12438, 12438,12438,12438,12438,12438,12438, 0,12438,12438, 0, 0, 0, 0, 0, 0, 0, 0, 0,12438,12438, 12438,12438,12438,12438,12438,12438, 0, 0, 0, 0, 12438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12438,12438, 12438,12438,12450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12450,12450,12450,12450,12450,12450,12450, 12450,12450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12450, 0, 0, 0, 0,12450,12458,12458, 0,12458,12458,12458,12458, 12458,12458,12458,12458,12458, 0,12458,12458, 0, 0, 0, 0, 0, 0, 0, 0, 0,12458,12458,12458, 12458,12458,12458,12458, 0, 0, 0, 0, 0,12458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12458,12458,12458, 12459,12459, 0,12459,12459,12459,12459,12459,12459,12459, 12459,12459, 0,12459,12459, 0, 0, 0, 0, 0, 0, 0, 0, 0,12459,12459,12459,12459,12459,12459, 12459,12459, 0, 0, 0, 0,12459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12459,12459,12459,12463,12463, 0, 12463,12463,12463,12463,12463,12463,12463,12463,12463, 0, 12463,12463, 0, 0, 0, 0, 0, 0, 0, 0, 0,12463,12463,12463,12463,12463,12463,12463, 0, 0, 0, 0, 0,12463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12463,12463,12463,12464,12464, 0,12464,12464,12464, 12464,12464,12464,12464,12464,12464, 0,12464,12464, 0, 0, 0, 0, 0, 0, 0, 0, 0,12464,12464, 12464,12464,12464,12464,12464,12464, 0, 0, 0, 0, 12464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12464,12464, 12464,12468,12468, 0,12468,12468,12468,12468,12468,12468, 12468,12468,12468, 0,12468,12468, 0, 0, 0, 0, 0, 0, 0, 0, 0,12468,12468,12468,12468,12468, 12468,12468, 0, 0, 0, 0, 0,12468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12468,12468,12468,12469,12469, 0,12469,12469,12469,12469,12469,12469,12469,12469,12469, 0,12469,12469, 0, 0, 0, 0, 0, 0, 0, 0, 0,12469,12469,12469,12469,12469,12469,12469,12469, 0, 0, 0, 0,12469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12469,12469,12469,12473,12473, 0,12473,12473, 12473,12473,12473,12473,12473,12473,12473, 0,12473,12473, 0, 0, 0, 0, 0, 0, 0, 0, 0,12473, 12473,12473,12473,12473,12473,12473, 0, 0, 0, 0, 0,12473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12473, 12473,12473,12474,12474, 0,12474,12474,12474,12474,12474, 12474,12474,12474,12474, 0,12474,12474, 0, 0, 0, 0, 0, 0, 0, 0, 0,12474,12474,12474,12474, 12474,12474,12474,12474, 0, 0, 0, 0,12474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12474,12474,12474,12477, 12477, 0,12477,12477,12477,12477,12477,12477,12477,12477, 12477, 0,12477,12477, 0, 0, 0, 0, 0, 0, 0, 0, 0,12477,12477,12477,12477,12477,12477,12477, 0, 0, 0, 0, 0,12477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12477,12477,12477,12478,12478, 0,12478, 12478,12478,12478,12478,12478,12478,12478,12478, 0,12478, 12478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12478,12478,12478,12478,12478,12478,12478,12478, 0, 0, 0, 0,12478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12478,12478,12478,12480,12480, 0,12480,12480,12480,12480, 12480,12480,12480,12480,12480, 0,12480,12480, 0, 0, 0, 0, 0, 0, 0, 0, 0,12480,12480,12480, 12480,12480,12480,12480, 0, 0, 0, 0, 0,12480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12480,12480,12480, 12481,12481, 0,12481,12481,12481,12481,12481,12481,12481, 12481,12481, 0,12481,12481, 0, 0, 0, 0, 0, 0, 0, 0, 0,12481,12481,12481,12481,12481,12481, 12481,12481, 0, 0, 0, 0,12481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12481,12481,12481,12482,12482, 0, 12482,12482,12482,12482,12482,12482,12482,12482,12482,12482, 12482,12482, 0, 0, 0, 0, 0, 0, 0, 0, 0,12482,12482,12482,12482,12482,12482,12482,12482, 0, 0, 0, 0,12482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12482,12482,12482,12482,12482,12483,12483, 0,12483, 12483,12483,12483,12483,12483,12483,12483,12483, 0,12483, 12483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12483,12483,12483,12483,12483,12483,12483, 0, 0, 0, 0, 0,12483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12483,12483,12483,12484,12484, 0,12484,12484,12484,12484, 12484,12484,12484,12484,12484, 0,12484,12484, 0, 0, 0, 0, 0, 0, 0, 0, 0,12484,12484,12484, 12484,12484,12484,12484,12484, 0, 0, 0, 0,12484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12484,12484,12484, 12487,12487, 0,12487,12487,12487,12487,12487,12487,12487, 12487,12487, 0,12487,12487, 0, 0, 0, 0, 0, 0, 0, 0, 0,12487,12487,12487,12487,12487,12487, 12487, 0, 0, 0, 0, 0,12487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12487,12487,12487,12488,12488, 0, 12488,12488,12488,12488,12488,12488,12488,12488,12488, 0, 12488,12488, 0, 0, 0, 0, 0, 0, 0, 0, 0,12488,12488,12488,12488,12488,12488,12488,12488, 0, 0, 0, 0,12488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12488,12488,12488,12490,12490, 0,12490,12490,12490, 12490,12490,12490,12490,12490,12490, 0,12490,12490, 0, 0, 0, 0, 0, 0, 0, 0, 0,12490,12490, 12490,12490,12490,12490,12490, 0, 0, 0, 0, 0, 12490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12490,12490, 12490,12491,12491, 0,12491,12491,12491,12491,12491,12491, 12491,12491,12491, 0,12491,12491, 0, 0, 0, 0, 0, 0, 0, 0, 0,12491,12491,12491,12491,12491, 12491,12491,12491, 0, 0, 0, 0,12491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12491,12491,12491,12492,12492, 0,12492,12492,12492,12492,12492,12492,12492,12492,12492, 12492,12492,12492, 0, 0, 0, 0, 0, 0, 0, 0, 0,12492,12492,12492,12492,12492,12492,12492,12492, 0, 0, 0, 0,12492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12492,12492,12492,12492,12492,12503,12503,12503, 12503,12503,12503,12503,12503,12503,12503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12503, 0,12503, 12508,12508, 0,12508,12508,12508,12508,12508,12508,12508, 12508,12508, 0,12508,12508, 0, 0, 0, 0, 0, 0, 0, 0, 0,12508,12508,12508,12508,12508,12508, 12508, 0, 0, 0, 0, 0,12508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12508,12508,12508,12508,12529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12529, 12529,12529,12529,12529,12529,12529,12529,12529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12529, 0, 0, 0, 0,12529,12531, 12531, 0,12531,12531,12531,12531,12531,12531,12531,12531, 12531, 0,12531,12531, 0, 0, 0, 0, 0, 0, 0, 0, 0,12531,12531,12531,12531,12531,12531,12531, 0, 0, 0, 0, 0,12531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12531,12531,12531,12532,12532, 0,12532, 12532,12532,12532,12532,12532,12532,12532,12532, 0,12532, 12532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12532,12532,12532,12532,12532,12532,12532,12532, 0, 0, 0, 0,12532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12532,12532,12532,12536,12536, 0,12536,12536,12536,12536, 12536,12536,12536,12536,12536, 0,12536,12536, 0, 0, 0, 0, 0, 0, 0, 0, 0,12536,12536,12536, 12536,12536,12536,12536, 0, 0, 0, 0, 0,12536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12536,12536,12536, 12537,12537, 0,12537,12537,12537,12537,12537,12537,12537, 12537,12537, 0,12537,12537, 0, 0, 0, 0, 0, 0, 0, 0, 0,12537,12537,12537,12537,12537,12537, 12537,12537, 0, 0, 0, 0,12537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12537,12537,12537,12540,12540, 0, 12540,12540,12540,12540,12540,12540,12540,12540,12540, 0, 12540,12540, 0, 0, 0, 0, 0, 0, 0, 0, 0,12540,12540,12540,12540,12540,12540,12540, 0, 0, 0, 0, 0,12540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12540,12540,12540,12541,12541, 0,12541,12541,12541, 12541,12541,12541,12541,12541,12541, 0,12541,12541, 0, 0, 0, 0, 0, 0, 0, 0, 0,12541,12541, 12541,12541,12541,12541,12541,12541, 0, 0, 0, 0, 12541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12541,12541, 12541,12544,12544, 0,12544,12544,12544,12544,12544,12544, 12544,12544,12544, 0,12544,12544, 0, 0, 0, 0, 0, 0, 0, 0, 0,12544,12544,12544,12544,12544, 12544,12544, 0, 0, 0, 0, 0,12544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12544,12544,12544,12545,12545, 0,12545,12545,12545,12545,12545,12545,12545,12545,12545, 0,12545,12545, 0, 0, 0, 0, 0, 0, 0, 0, 0,12545,12545,12545,12545,12545,12545,12545,12545, 0, 0, 0, 0,12545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12545,12545,12545,12547,12547, 0,12547,12547, 12547,12547,12547,12547,12547,12547,12547, 0,12547,12547, 0, 0, 0, 0, 0, 0, 0, 0, 0,12547, 12547,12547,12547,12547,12547,12547, 0, 0, 0, 0, 0,12547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12547, 12547,12547,12548,12548, 0,12548,12548,12548,12548,12548, 12548,12548,12548,12548, 0,12548,12548, 0, 0, 0, 0, 0, 0, 0, 0, 0,12548,12548,12548,12548, 12548,12548,12548,12548, 0, 0, 0, 0,12548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12548,12548,12548,12549, 12549, 0,12549,12549,12549,12549,12549,12549,12549,12549, 12549, 0,12549,12549, 0, 0, 0, 0, 0, 0, 0, 0, 0,12549,12549,12549,12549,12549,12549,12549, 0, 0, 0, 0, 0,12549,12549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12549,12549,12549, 0, 0, 0, 0, 0, 0, 0,12549,12550,12550, 0,12550,12550,12550, 12550,12550,12550,12550,12550,12550, 0,12550,12550, 0, 12550,12550,12550,12550,12550,12550,12550,12550,12550,12550, 12550,12550,12550,12550,12550, 0, 0, 0, 0, 0, 12550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12550,12550, 12550,12551,12551, 0,12551,12551,12551,12551,12551,12551, 12551,12551,12551, 0,12551,12551, 0, 0, 0, 0, 0, 0, 0, 0, 0,12551,12551,12551,12551,12551, 12551,12551, 0, 0, 0, 0, 0,12551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12551,12551,12551,12552,12552, 0,12552,12552,12552,12552,12552,12552,12552,12552,12552, 0,12552,12552, 0, 0, 0, 0, 0, 0, 0, 0, 0,12552,12552,12552,12552,12552,12552,12552, 0, 0, 0, 0, 0,12552,12552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12552,12552,12552, 0, 0, 0, 0, 0, 0, 0,12552,12554,12554, 0,12554,12554,12554,12554, 12554,12554,12554,12554,12554, 0,12554,12554, 0, 0, 0, 0, 0, 0, 0, 0, 0,12554,12554,12554, 12554,12554,12554,12554, 0, 0, 0, 0, 0,12554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12554,12554,12554, 12555,12555, 0,12555,12555,12555,12555,12555,12555,12555, 12555,12555, 0,12555,12555, 0, 0, 0, 0, 0, 0, 0, 0, 0,12555,12555,12555,12555,12555,12555, 12555,12555, 0, 0, 0, 0,12555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12555,12555,12555,12559,12559, 0, 12559,12559,12559,12559,12559,12559,12559,12559,12559, 0, 12559,12559, 0, 0, 0, 0, 0, 0, 0, 0, 0,12559,12559,12559,12559,12559,12559,12559, 0, 0, 0, 0, 0,12559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12559,12559,12559,12560,12560, 0,12560,12560,12560, 12560,12560,12560,12560,12560,12560, 0,12560,12560, 0, 0, 0, 0, 0, 0, 0, 0, 0,12560,12560, 12560,12560,12560,12560,12560,12560, 0, 0, 0, 0, 12560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12560,12560, 12560,12564,12564, 0,12564,12564,12564,12564,12564,12564, 12564,12564,12564, 0,12564,12564, 0, 0, 0, 0, 0, 0, 0, 0, 0,12564,12564,12564,12564,12564, 12564,12564, 0, 0, 0, 0, 0,12564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12564,12564,12564,12565,12565, 0,12565,12565,12565,12565,12565,12565,12565,12565,12565, 0,12565,12565, 0, 0, 0, 0, 0, 0, 0, 0, 0,12565,12565,12565,12565,12565,12565,12565,12565, 0, 0, 0, 0,12565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12565,12565,12565,12568,12568, 0,12568,12568, 12568,12568,12568,12568,12568,12568,12568, 0,12568,12568, 0, 0, 0, 0, 0, 0, 0, 0, 0,12568, 12568,12568,12568,12568,12568,12568, 0, 0, 0, 0, 0,12568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12568, 12568,12568,12569,12569, 0,12569,12569,12569,12569,12569, 12569,12569,12569,12569, 0,12569,12569, 0, 0, 0, 0, 0, 0, 0, 0, 0,12569,12569,12569,12569, 12569,12569,12569,12569, 0, 0, 0, 0,12569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12569,12569,12569,12571, 12571, 0,12571,12571,12571,12571,12571,12571,12571,12571, 12571, 0,12571,12571, 0, 0, 0, 0, 0, 0, 0, 0, 0,12571,12571,12571,12571,12571,12571,12571, 0, 0, 0, 0, 0,12571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12571, 0, 0, 0, 0, 0, 0,12571,12571,12571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12571,12572,12572, 0,12572,12572, 12572,12572,12572,12572,12572,12572,12572, 0,12572,12572, 0, 0, 0, 0, 0, 0, 0, 0, 0,12572, 12572,12572,12572,12572,12572,12572, 0, 0, 0, 0, 0,12572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12572, 12572,12572,12573,12573, 0,12573,12573,12573,12573,12573, 12573,12573,12573,12573, 0,12573,12573, 0, 0, 0, 0, 0, 0, 0, 0, 0,12573,12573,12573,12573, 12573,12573,12573,12573, 0, 0, 0, 0,12573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12573,12573,12573,12574, 12574, 0,12574,12574,12574,12574,12574,12574,12574,12574, 12574, 0,12574,12574, 0, 0, 0, 0, 0, 0, 0, 0, 0,12574,12574,12574,12574,12574,12574,12574, 0, 0, 0, 0, 0,12574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12574,12574,12574,12575,12575, 0,12575, 12575,12575,12575,12575,12575,12575,12575,12575, 0,12575, 12575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12575,12575,12575,12575,12575,12575,12575,12575, 0, 0, 0, 0,12575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12575,12575,12575,12579,12579, 0,12579,12579,12579,12579, 12579,12579,12579,12579,12579, 0,12579,12579, 0, 0, 0, 0, 0, 0, 0, 0, 0,12579,12579,12579, 12579,12579,12579,12579, 0, 0, 0, 0, 0,12579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12579,12579,12579, 12580,12580, 0,12580,12580,12580,12580,12580,12580,12580, 12580,12580, 0,12580,12580, 0, 0, 0, 0, 0, 0, 0, 0, 0,12580,12580,12580,12580,12580,12580, 12580,12580, 0, 0, 0, 0,12580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12580,12580,12580,12583,12583, 0, 12583,12583,12583,12583,12583,12583,12583,12583,12583, 0, 12583,12583, 0, 0, 0, 0, 0, 0, 0, 0, 0,12583,12583,12583,12583,12583,12583,12583, 0, 0, 0, 0, 0,12583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12583,12583,12583,12584,12584, 0,12584,12584,12584, 12584,12584,12584,12584,12584,12584, 0,12584,12584, 0, 0, 0, 0, 0, 0, 0, 0, 0,12584,12584, 12584,12584,12584,12584,12584,12584, 0, 0, 0, 0, 12584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12584,12584, 12584,12586,12586, 0,12586,12586,12586,12586,12586,12586, 12586,12586,12586, 0,12586,12586, 0, 0, 0, 0, 0, 0, 0, 0, 0,12586,12586,12586,12586,12586, 12586,12586, 0, 0, 0, 0, 0,12586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12586, 0, 0, 0, 0, 0, 0,12586,12586,12586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12586,12587,12587, 0, 12587,12587,12587,12587,12587,12587,12587,12587,12587, 0, 12587,12587, 0, 0, 0, 0, 0, 0, 0, 0, 0,12587,12587,12587,12587,12587,12587,12587, 0, 0, 0, 0, 0,12587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12587,12587,12587,12588,12588, 0,12588,12588,12588, 12588,12588,12588,12588,12588,12588, 0,12588,12588, 0, 0, 0, 0, 0, 0, 0, 0, 0,12588,12588, 12588,12588,12588,12588,12588,12588, 0, 0, 0, 0, 12588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12588,12588, 12588,12611,12611, 0,12611,12611,12611,12611,12611,12611, 12611,12611,12611, 0,12611,12611, 0, 0, 0, 0, 0, 0, 0, 0, 0,12611,12611,12611,12611,12611, 12611,12611, 0, 0, 0, 0, 0,12611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12611,12611,12611,12622,12622, 0,12622,12622,12622,12622,12622,12622,12622,12622,12622, 0,12622,12622, 0, 0, 0, 0, 0, 0, 0, 0, 0,12622,12622,12622,12622,12622,12622,12622, 0, 0, 0, 0, 0,12622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12622,12622,12622,12624,12624, 0,12624,12624, 12624,12624,12624,12624,12624, 0,12624,12624,12624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12624, 12624,12624,12624,12624,12624,12624, 0, 0, 0, 0, 0,12624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12624, 12624,12624,12624,12625,12625, 0,12625,12625,12625,12625, 12625,12625,12625, 0,12625,12625,12625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12625,12625,12625, 12625,12625,12625,12625,12625, 0, 0, 0, 0,12625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12625,12625,12625, 12625,12637,12637,12637,12637,12637,12637,12637,12637,12637, 12637, 0, 0, 0, 0, 0, 0,12637,12637,12637, 12637,12637,12637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12637,12637,12637,12637,12637,12637, 12639,12639,12639,12639,12639,12639,12639,12639,12639,12639, 0, 0, 0, 0, 0, 0,12639,12639,12639,12639, 12639,12639, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12639,12639,12639,12639,12639,12639,12642, 12642,12642,12642,12642,12642,12642,12642,12642,12642, 0, 0, 0, 0, 0,12642,12642,12642,12642,12642,12642, 12642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12642,12642,12642,12642,12642,12642,12647,12647, 12647,12647,12647,12647,12647,12647,12647,12647, 0, 0, 0, 0, 0, 0,12647,12647,12647,12647,12647,12647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12647,12647,12647,12647,12647,12647,12650,12650,12650, 12650,12650,12650,12650,12650,12650,12650, 0, 0, 0, 0, 0, 0,12650,12650,12650,12650,12650,12650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12650,12650,12650,12650,12650,12650,12657,12657,12657,12657, 12657,12657,12657,12657,12657,12657, 0, 0, 0, 0, 0, 0,12657,12657,12657,12657,12657,12657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12657, 12657,12657,12657,12657,12657,12660,12660,12660,12660,12660, 12660,12660,12660,12660,12660, 0, 0, 0, 0, 0, 0,12660,12660,12660,12660,12660,12660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12660,12660, 12660,12660,12660,12660,12667,12667,12667,12667,12667,12667, 12667,12667,12667, 0, 0, 0, 0, 0, 0, 0, 12667,12667,12667,12667,12667,12667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12667,12667,12667, 12667,12667,12667,12668,12668,12668,12668,12668,12668,12668, 12668,12668,12668, 0, 0, 0, 0, 0, 0,12668, 12668,12668,12668,12668,12668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12668,12668,12668,12668, 12668,12668,12671,12671,12671,12671,12671,12671,12671,12671, 12671,12671, 0, 0, 0, 0, 0, 0,12671,12671, 12671,12671,12671,12671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12671,12671,12671,12671,12671, 12671,12678,12678,12678,12678,12678,12678,12678,12678,12678, 0, 0, 0, 0, 0, 0, 0,12678,12678,12678, 12678,12678,12678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12678,12678,12678,12678,12678,12678, 12679, 0,12679,12679,12679,12679,12679,12679,12679,12679, 12679,12679, 0, 0, 0, 0, 0, 0,12679,12679, 12679,12679,12679,12679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12679,12679,12679,12679,12679, 12679,12686,12686,12686,12686,12686,12686,12686,12686,12686, 12686, 0, 0, 0, 0, 0, 0,12686,12686,12686, 12686,12686,12686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12686,12686,12686,12686,12686,12686, 12688,12688,12688,12688,12688,12688,12688,12688,12688, 0, 0, 0, 0, 0, 0, 0,12688,12688,12688,12688, 12688,12688, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12688,12688,12688,12688,12688,12688,12696, 12696,12696,12696,12696,12696,12696,12696,12696,12696, 0, 0, 0, 0, 0, 0,12696,12696,12696,12696,12696, 12696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12696,12696,12696,12696,12696,12696,12704,12704, 12704,12704,12704,12704,12704,12704,12704,12704, 0, 0, 0, 0, 0, 0,12704,12704,12704,12704,12704,12704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12704,12704,12704,12704,12704,12704,12716,12716,12716, 12716,12716,12716,12716,12716,12716,12716, 0, 0, 0, 0, 0, 0,12716,12716,12716,12716,12716,12716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12716,12716,12716,12716,12716,12716,12718,12718,12718,12718, 12718,12718,12718,12718,12718,12718, 0, 0, 0, 0, 0, 0,12718,12718,12718,12718,12718,12718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12718, 12718,12718,12718,12718,12718,12719,12719,12719,12719,12719, 12719,12719,12719,12719, 0, 0, 0, 0, 0, 0, 0,12719,12719,12719,12719,12719,12719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12719, 0, 0, 0,12719,12719, 12719,12719,12719,12719,12722,12722,12722,12722,12722,12722, 12722,12722,12722,12722, 0, 0, 0, 0, 0, 0, 12722,12722,12722,12722,12722,12722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12722,12722,12722, 12722,12722,12722,12723,12723,12723,12723,12723,12723,12723, 12723,12723, 0, 0, 0, 0, 0, 0, 0,12723, 12723,12723,12723,12723,12723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12723,12723,12723,12723, 12723,12723,12731,12731,12731,12731,12731,12731,12731,12731, 12731,12731, 0, 0, 0, 0, 0, 0,12731,12731, 12731,12731,12731,12731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12731,12731,12731,12731,12731, 12731,12732,12732,12732,12732,12732,12732,12732,12732,12732, 0, 0, 0, 0, 0, 0, 0,12732,12732,12732, 12732,12732,12732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12732,12732,12732,12732,12732,12732, 12740,12740,12740,12740,12740,12740,12740,12740,12740,12740, 0, 0, 0, 0, 0, 0,12740,12740,12740,12740, 12740,12740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12740,12740,12740,12740,12740,12740,12741, 12741,12741,12741,12741,12741,12741,12741,12741, 0, 0, 0, 0, 0, 0, 0,12741,12741,12741,12741,12741, 12741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12741,12741,12741,12741,12741,12741,12746, 0, 12746,12746,12746,12746,12746,12746,12746,12746,12746,12746, 0, 0, 0, 0, 0, 0,12746,12746,12746,12746, 12746,12746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12746,12746,12746,12746,12746,12746,12753, 12753,12753,12753,12753,12753,12753,12753,12753,12753, 0, 0, 0, 0, 0, 0,12753,12753,12753,12753,12753, 12753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12753,12753,12753,12753,12753,12753,12754,12754, 12754,12754,12754,12754,12754,12754,12754, 0, 0, 0, 0, 0, 0, 0,12754,12754,12754,12754,12754,12754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12754,12754,12754,12754,12754,12754,12759,12759,12759, 12759,12759,12759,12759,12759,12759,12759, 0, 0, 0, 0, 0, 0,12759,12759,12759,12759,12759,12759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12759,12759,12759,12759,12759,12759,12763,12763,12763,12763, 12763,12763,12763,12763,12763,12763, 0, 0, 0, 0, 0, 0,12763,12763,12763,12763,12763,12763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12763, 12763,12763,12763,12763,12763,12767,12767,12767,12767,12767, 12767,12767,12767,12767,12767, 0, 0, 0, 0, 0, 0,12767,12767,12767,12767,12767,12767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12767,12767, 12767,12767,12767,12767,12768,12768,12768,12768,12768,12768, 12768,12768,12768, 0, 0, 0, 0, 0, 0, 0, 12768,12768,12768,12768,12768,12768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12768,12768,12768, 12768,12768,12768,12773,12773,12773,12773,12773,12773,12773, 12773,12773,12773, 0, 0, 0, 0, 0, 0,12773, 12773,12773,12773,12773,12773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12773,12773,12773,12773, 12773,12773,12777,12777,12777,12777,12777,12777,12777,12777, 12777,12777, 0, 0, 0, 0, 0, 0,12777,12777, 12777,12777,12777,12777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12777,12777,12777,12777,12777, 12777,12778,12778,12778,12778,12778,12778,12778,12778,12778, 12778, 0, 0, 0, 0, 0, 0,12778,12778,12778, 12778,12778,12778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12778,12778,12778,12778,12778,12778, 12780,12780,12780,12780,12780,12780,12780,12780,12780,12780, 0, 0, 0, 0, 0, 0,12780,12780,12780,12780, 12780,12780, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12780,12780,12780,12780,12780,12780,12785, 12785,12785,12785,12785,12785,12785,12785,12785, 0, 0, 0, 0, 0, 0, 0,12785,12785,12785,12785,12785, 12785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12785,12785,12785,12785,12785,12785,12786,12786, 12786,12786,12786,12786,12786,12786,12786,12786, 0, 0, 0, 0, 0, 0,12786,12786,12786,12786,12786,12786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12786,12786,12786,12786,12786,12786,12855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12855, 0, 0, 0, 0, 0, 0,12855, 0, 0,12855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12855, 0,12855, 0,12855, 0, 0,12855,12855, 0, 0, 0,12855, 0, 0,12855, 0,12855, 0, 12855, 0,12855,12855,12855,12856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12856, 0, 0, 0, 0, 0, 0,12856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12856, 0,12856, 0,12856, 0, 0,12856,12856, 0, 0, 0,12856, 0, 0,12856, 0,12856, 0,12856, 0, 12856,12856,12856,12857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12857, 0, 0, 0, 0, 0, 0,12857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12857, 0,12857, 0,12857, 0, 0,12857,12857, 0, 0, 0,12857, 0, 0,12857, 0,12857, 0,12857, 0,12857,12857, 12857,12858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12858, 0, 0, 0, 0, 0, 0, 12858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12858, 0,12858, 0,12858, 0, 0,12858,12858, 0, 0, 0,12858, 0, 0, 12858, 0,12858, 0,12858, 0,12858,12858,12858,12859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12859, 0, 0, 0, 0, 0, 0,12859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12859, 0,12859, 0,12859, 0, 0, 12859,12859, 0, 0, 0,12859,12859, 0,12859, 0, 12859, 0,12859, 0,12859,12859,12859,12860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12860, 0, 0, 0, 0, 0, 0,12860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12860,12860,12860, 0,12860, 0, 0,12860,12860, 0, 0, 0,12860, 0, 0,12860, 0,12860, 0, 12860, 0,12860,12860,12860,12861, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12861, 0, 0, 0, 0, 0, 0,12861, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12861, 0,12861, 0,12861, 0, 0,12861,12861, 0, 0, 0,12861, 0, 0,12861, 0,12861, 0,12861, 0, 12861,12861,12861,12862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12862, 0, 0, 0, 0, 0, 0,12862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12862, 0,12862, 0,12862, 0, 0,12862,12862, 0, 0, 0,12862, 0, 0,12862, 0,12862, 0,12862, 0,12862,12862, 12862,12863, 0,12863, 0, 0, 0, 0, 0, 0, 12863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12863, 0, 0, 0, 0, 0, 0,12863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12863, 0,12863, 0,12863, 0, 0,12863,12863, 0, 0, 0,12863, 0, 0,12863, 0,12863, 0,12863, 0,12863,12863, 12863,12864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12864, 0, 0, 0, 0, 0, 0, 12864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12864, 0,12864, 0,12864, 0, 0,12864,12864, 0, 0,12864,12864, 0, 0, 12864, 0,12864, 0,12864, 0,12864,12864,12864,12865, 0,12865, 0, 0, 0, 0, 0, 0,12865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12865, 0, 0, 0, 0, 0, 0, 12865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12865, 0,12865, 0,12865, 0, 0,12865,12865, 0, 0, 0,12865, 0, 0, 12865, 0,12865, 0,12865, 0,12865,12865,12865,12882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12882, 0, 0, 0, 0, 0, 0,12882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12882, 0,12882,12882,12882, 0, 0, 12882,12882, 0, 0, 0,12882, 0, 0,12882, 0, 12882, 0,12882, 0,12882,12882,12882,12883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12883, 0, 0, 0, 0, 0, 0,12883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12883, 0,12883, 0,12883, 0, 0,12883,12883, 0, 0, 0,12883, 0, 0,12883, 0,12883, 0, 12883, 0,12883,12883,12883,12884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12884, 0, 0, 0, 0, 0, 0,12884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12884, 0,12884, 0,12884, 0, 0,12884,12884, 0, 0, 0,12884, 0, 0,12884, 0,12884, 0,12884, 0, 12884,12884,12884,12884,12885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12885, 0, 0, 0, 0, 0, 0,12885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12885, 0, 12885,12885,12885, 0, 0,12885,12885, 0, 0, 0, 12885, 0, 0,12885, 0,12885, 0,12885, 0,12885, 12885,12885,12886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12886, 0, 0, 0, 0, 0, 0,12886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12886, 0,12886, 0, 12886, 0,12886,12886,12886, 0, 0, 0,12886, 0, 12886,12886, 0,12886, 0,12886, 0,12886,12886,12886, 12890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12890, 0, 0, 0, 0, 0, 0,12890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12890, 0,12890, 0,12890, 0, 0,12890,12890, 0, 0, 0,12890,12890, 0,12890, 0,12890, 0,12890, 0,12890,12890,12890,12891, 0, 12891, 0, 0, 0, 0, 0, 0,12891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12891, 0, 0, 0, 0, 0, 0,12891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12891, 0,12891, 0,12891, 0, 0,12891,12891, 0, 0, 0,12891, 0, 0,12891, 0,12891, 0,12891, 0,12891,12891,12891,12892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12892, 0, 0, 0, 0, 0, 0, 0, 0, 12892, 0, 0, 0, 0, 0, 0,12892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12892, 0,12892, 0,12892, 0, 0,12892, 12892, 0, 0, 0,12892, 0, 0,12892, 0,12892, 0,12892, 0,12892,12892,12892,12894, 0,12894, 0, 0, 0, 0, 0, 0,12894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12894, 0, 0, 0, 0, 0, 0,12894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12894, 0,12894, 0,12894, 0, 0,12894, 12894, 0, 0, 0,12894, 0, 0,12894, 0,12894, 0,12894, 0,12894,12894,12894,12895, 0,12895, 0, 0, 0, 0, 0, 0,12895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12895, 0,12895, 0, 0, 0, 0,12895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12895, 0,12895, 0,12895, 0, 0,12895, 12895, 0, 0, 0,12895, 0, 0,12895, 0,12895, 0,12895, 0,12895,12895,12895,12896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12896, 0, 0, 0, 0, 0, 0,12896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12896, 0,12896, 0,12896, 0, 0,12896,12896, 0, 0, 0,12896, 0, 0,12896, 0,12896, 0,12896, 0,12896,12896,12896,12911, 0,12911, 0, 0, 0, 0, 0, 0,12911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12911, 0, 0, 0, 0, 0, 0,12911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12911, 0,12911, 0,12911, 0, 0,12911,12911, 0, 0, 0,12911, 0, 0,12911, 0,12911, 0,12911, 0,12911,12911,12911,12912, 0,12912, 0, 0, 0, 0, 0, 0,12912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12912, 0, 12912, 0, 0, 0, 0,12912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12912, 0,12912, 0,12912, 0, 0,12912,12912, 0, 0, 0,12912, 0, 0,12912, 0,12912, 0,12912, 0,12912,12912,12912,12913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12913, 0, 0, 0, 0, 0, 0,12913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12913, 0, 12913, 0,12913, 0, 0,12913,12913, 0, 0, 0, 12913, 0, 0,12913, 0,12913, 0,12913, 0,12913, 12913,12913,12928, 0,12928, 0, 0, 0, 0, 0, 0,12928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12928, 0, 0, 0, 0, 0, 0,12928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12928, 0, 12928, 0,12928, 0, 0,12928,12928, 0, 0,12928, 12928, 0, 0,12928, 0,12928, 0,12928, 0,12928, 12928,12928,12930, 0, 0, 0, 0, 0, 0, 0, 0, 0,12930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12930, 0, 0, 0, 0, 0, 0,12930, 0, 0, 0, 0, 0,12930, 0, 0, 0, 0, 0, 0, 0, 0,12930, 0,12930, 0, 12930, 0, 0,12930,12930, 0, 0, 0,12930, 0, 0,12930, 0,12930, 0,12930, 0,12930,12930,12930, 12931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12931, 0, 0, 0, 0, 0, 0,12931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12931, 0,12931, 0,12931, 0, 0,12931,12931, 0, 0, 0,12931,12931, 0,12931, 0,12931, 0,12931, 0,12931,12931,12931,12945, 0, 12945, 0, 0, 0, 0, 0, 0,12945, 0, 0, 12945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12945, 0, 0, 0, 0, 0, 0,12945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12945, 0,12945,12945,12945, 0, 0,12945,12945, 0, 0, 0,12945, 0, 0,12945, 0,12945, 0,12945, 0,12945,12945,12945,12951, 0, 0, 0, 0, 0, 0, 0, 0, 0,12951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12951, 0, 0, 0, 0, 0, 0,12951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12951, 0,12951, 0,12951, 0, 0,12951, 12951, 0, 0, 0,12951, 0, 0,12951, 0,12951, 0,12951, 0,12951,12951,12951,12952, 0, 0, 0, 0, 0, 0, 0, 0, 0,12952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12952, 0, 0, 0, 0, 0, 0,12952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12952, 0,12952, 0,12952, 0, 0,12952,12952, 0, 0, 0,12952, 0,12952,12952, 0,12952, 0,12952, 0,12952,12952,12952,12953, 0, 0, 0, 0, 0, 0, 0, 0, 0,12953,12953,12953,12953,12953,12953, 12953,12953,12953,12953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12953, 0, 0, 0, 0, 0, 0,12953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12953, 0, 12953, 0,12953, 0, 0,12953,12953, 0, 0, 0, 12953, 0, 0,12953, 0,12953, 0,12953, 0,12953, 12953,12953,12954, 0,12954, 0, 0, 0, 0, 0, 0,12954, 0, 0,12954, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12954, 0, 0, 0, 0, 0, 0,12954, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12954, 0, 12954, 0,12954, 0, 0,12954,12954, 0, 0, 0, 12954, 0, 0,12954, 0,12954, 0,12954, 0,12954, 12954,12954,12955, 0,12955, 0, 0, 0, 0, 0, 0,12955, 0, 0,12955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12955, 0, 0, 0, 0, 0, 0,12955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12955, 0, 12955,12955,12955, 0, 0,12955,12955, 0, 0, 0, 12955, 0, 0,12955, 0,12955, 0,12955, 0,12955, 12955,12955,12956, 0, 0, 0, 0, 0, 0, 0, 0, 0,12956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12956, 0, 0, 0, 0, 0, 0,12956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12956, 0,12956,12956, 12956, 0, 0,12956,12956, 0, 0, 0,12956, 0, 12956,12956, 0,12956, 0,12956, 0,12956,12956,12956, 12991, 0,12991, 0, 0, 0, 0, 0, 0,12991, 0, 0,12991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12991, 0, 0, 0, 0, 0, 0,12991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12991, 0,12991, 0, 12991, 0, 0,12991,12991, 0, 0, 0,12991, 0, 12991,12991, 0,12991, 0,12991, 0,12991,12991,12991, 12993, 0,12993, 0, 0, 0, 0, 0, 0,12993, 0, 0,12993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12993, 0, 0, 0, 0, 0, 0,12993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12993, 0,12993, 0, 12993, 0, 0,12993,12993, 0, 0, 0,12993, 0, 0,12993, 0,12993, 0,12993, 0,12993,12993,12993, 12994, 0,12994, 0, 0, 0, 0, 0, 0,12994, 0, 0,12994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12994, 0, 0, 0, 0, 0, 0,12994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12994, 0,12994, 0, 12994, 0, 0,12994,12994, 0, 0, 0,12994, 0, 0,12994, 0,12994, 0,12994, 0,12994,12994,12994, 12995, 0,12995, 0, 0, 0, 0, 0, 0,12995, 0, 0,12995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12995, 0, 0, 0, 0, 0, 0,12995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,12995, 0,12995, 0, 12995, 0, 0,12995,12995, 0, 0, 0,12995,12995, 0,12995, 0,12995, 0,12995, 0,12995,12995,12995, 13008,13008,13008,13008,13008,13008,13008,13008, 0, 0, 13008,13008,13008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13008,13008,13008,13008,13008, 13008, 0, 0, 0, 0, 0,13008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13008,13008,13008,13008,13020, 0, 13020, 0, 0,13020,13020,13020,13020,13020,13020,13020, 13020,13020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13020, 0, 0,13020,13027,13027, 0,13027,13027, 13027,13027,13027,13027,13027,13027,13027, 0,13027,13027, 0, 0, 0, 0, 0, 0, 0, 0, 0,13027, 13027,13027,13027,13027,13027,13027, 0, 0, 0, 0, 0,13027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13027, 13027,13027,13028,13028, 0,13028,13028,13028,13028,13028, 13028,13028,13028,13028, 0,13028,13028, 0, 0, 0, 0, 0, 0, 0, 0, 0,13028,13028,13028,13028, 13028,13028,13028,13028, 0, 0, 0, 0,13028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13028,13028,13028,13032, 13032, 0,13032,13032,13032,13032,13032,13032,13032,13032, 13032,13032,13032,13032, 0, 0, 0, 0, 0, 0, 0, 0, 0,13032,13032,13032,13032,13032,13032,13032, 0, 0, 0, 0, 0,13032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13032,13032,13032,13032,13033,13033, 0, 13033,13033,13033,13033,13033,13033,13033,13033,13033, 0, 13033,13033, 0, 0, 0, 0, 0, 0, 0, 0, 0,13033,13033,13033,13033,13033,13033,13033, 0, 0, 0, 0, 0,13033, 0, 0, 0, 0, 0,13033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13033,13033,13033,13034,13034, 0,13034,13034,13034, 13034,13034,13034,13034,13034,13034, 0,13034,13034, 0, 0, 0, 0, 0, 0, 0, 0, 0,13034,13034, 13034,13034,13034,13034,13034,13034, 0, 0, 0, 0, 13034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13034,13034, 13034,13035,13035, 0,13035,13035,13035,13035,13035,13035, 13035,13035,13035,13035,13035,13035,13035,13035,13035,13035, 13035,13035,13035,13035,13035,13035,13035,13035,13035,13035, 13035,13035,13035,13035,13035,13035,13035,13035,13035,13035, 13035,13035,13035,13035,13035,13035,13035,13035,13035,13035, 13035,13035,13035,13035,13035,13035,13035,13035,13035,13035, 13035,13035,13035,13035,13035,13035,13035,13035,13035,13035, 13035,13035,13035,13035,13035,13035,13035,13035,13035,13035, 13035,13035,13035,13035,13036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13036,13036,13036,13036,13036, 13036,13036,13036,13036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13036,13036, 13036,13036,13036,13036,13036,13036,13036,13036,13036,13036, 13036,13036,13036,13036,13036,13036,13036,13036,13036,13036, 13036,13036,13036,13041,13041, 0,13041,13041,13041,13041, 13041,13041,13041,13041,13041, 0,13041,13041, 0, 0, 0, 0, 0, 0, 0, 0, 0,13041,13041,13041, 13041,13041,13041,13041, 0, 0, 0, 0, 0,13041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13041,13041,13041, 13041,13042,13042, 0,13042,13042,13042,13042,13042,13042, 13042,13042,13042, 0,13042,13042, 0, 0, 0, 0, 0, 0, 0, 0, 0,13042,13042,13042,13042,13042, 13042,13042,13042, 0, 0, 0, 0,13042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13042,13042,13042,13042,13043, 13043, 0,13043,13043,13043,13043,13043,13043,13043,13043, 13043, 0,13043,13043, 0, 0, 0, 0, 0, 0, 0, 0, 0,13043,13043,13043,13043,13043,13043,13043, 0, 0, 0, 0, 0,13043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13043,13043,13043,13045,13045, 0,13045, 13045,13045,13045,13045,13045,13045,13045,13045, 0,13045, 13045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13045,13045,13045,13045,13045,13045,13045,13045, 0, 0, 0, 0,13045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13045,13045,13045,13048,13048, 0,13048,13048,13048,13048, 13048,13048,13048,13048,13048, 0,13048,13048, 0, 0, 0, 0, 0, 0, 0, 0, 0,13048,13048,13048, 13048,13048,13048,13048, 0, 0, 0, 0, 0,13048, 0, 0,13048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13048,13048,13048, 13048,13049,13049, 0,13049,13049,13049,13049,13049,13049, 13049,13049,13049,13049,13049,13049,13049,13049,13049,13049, 13049,13049,13049,13049,13049,13049,13049,13049,13049,13049, 13049,13049,13049,13049,13049,13049,13049,13049,13049,13049, 13049,13049,13049,13049,13049,13049,13049,13049,13049,13049, 13049,13049,13049,13049,13049,13049,13049,13049,13049,13049, 13049,13049,13049,13049,13049,13049,13049,13049,13049,13049, 13049,13049,13049,13049,13049,13049,13049,13049,13049,13049, 13049,13049,13049,13049,13053,13053, 0,13053,13053,13053, 13053,13053,13053,13053,13053,13053, 0,13053,13053, 0, 0, 0, 0, 0, 0, 0, 0, 0,13053,13053, 13053,13053,13053,13053,13053, 0, 0, 0, 0, 0, 13053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13053,13053, 13053,13053,13054,13054, 0,13054,13054,13054,13054,13054, 13054,13054,13054,13054, 0,13054,13054, 0, 0, 0, 0, 0, 0, 0, 0, 0,13054,13054,13054,13054, 13054,13054,13054, 0, 0, 0, 0, 0,13054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13054,13054,13054,13054, 13055,13055, 0,13055,13055,13055,13055,13055,13055,13055, 13055,13055, 0,13055,13055, 0, 0, 0, 0, 0, 0, 0, 0, 0,13055,13055,13055,13055,13055,13055, 13055,13055, 0, 0, 0, 0,13055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13055,13055,13055,13055,13056,13056, 0,13056,13056,13056,13056,13056,13056,13056,13056,13056, 0,13056,13056, 0, 0, 0, 0, 0, 0, 0, 0, 0,13056,13056,13056,13056,13056,13056,13056, 0, 0, 0, 0, 0,13056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13056,13056,13056,13058,13058, 0,13058,13058, 13058,13058,13058,13058,13058,13058,13058, 0,13058,13058, 0, 0, 0, 0, 0, 0, 0, 0, 0,13058, 13058,13058,13058,13058,13058,13058,13058, 0, 0, 0, 0,13058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13058, 13058,13058,13063,13063, 0,13063,13063,13063,13063,13063, 13063,13063,13063,13063, 0,13063,13063, 0, 0, 0, 0, 0, 0, 0, 0, 0,13063,13063,13063,13063, 13063,13063,13063, 0, 0, 0, 0, 0,13063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13063,13063,13063,13063, 13064,13064, 0,13064,13064,13064,13064,13064,13064,13064, 13064,13064, 0,13064,13064, 0, 0, 0, 0, 0, 0, 0, 0, 0,13064,13064,13064,13064,13064,13064, 13064,13064, 0, 0, 0, 0,13064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13064,13064,13064,13064,13065,13065, 0,13065,13065,13065,13065,13065,13065,13065,13065,13065, 0,13065,13065, 0, 0, 0, 0, 0, 0, 0, 0, 0,13065,13065,13065,13065,13065,13065,13065, 0, 0, 0, 0, 0,13065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13065,13065,13065,13067,13067, 0,13067,13067, 13067,13067,13067,13067,13067,13067,13067, 0,13067,13067, 0, 0, 0, 0, 0, 0, 0, 0, 0,13067, 13067,13067,13067,13067,13067,13067,13067, 0, 0, 0, 0,13067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13067, 13067,13067,13071,13071, 0,13071,13071,13071,13071,13071, 13071,13071,13071,13071, 0,13071,13071, 0, 0, 0, 0, 0, 0, 0, 0, 0,13071,13071,13071,13071, 13071,13071,13071, 0, 0, 0, 0, 0,13071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13071,13071,13071,13071, 13072,13072, 0,13072,13072,13072,13072,13072,13072,13072, 13072,13072, 0,13072,13072, 0, 0, 0, 0, 0, 0, 0, 0, 0,13072,13072,13072,13072,13072,13072, 13072,13072, 0, 0, 0, 0,13072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13072,13072,13072,13072,13073,13073, 0,13073,13073,13073,13073,13073,13073,13073,13073,13073, 0,13073,13073, 0, 0, 0, 0, 0, 0, 0, 0, 0,13073,13073,13073,13073,13073,13073,13073, 0, 0, 0, 0, 0,13073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13073,13073,13073,13075,13075, 0,13075,13075, 13075,13075,13075,13075,13075,13075,13075, 0,13075,13075, 0, 0, 0, 0, 0, 0, 0, 0, 0,13075, 13075,13075,13075,13075,13075,13075,13075, 0, 0, 0, 0,13075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13075, 13075,13075,13077,13077, 0,13077,13077,13077,13077,13077, 13077,13077,13077,13077, 0,13077,13077, 0, 0, 0, 0, 0, 0, 0, 0, 0,13077,13077,13077,13077, 13077,13077,13077, 0, 0, 0, 0, 0,13077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13077,13077,13077,13077, 13078,13078, 0,13078,13078,13078,13078,13078,13078,13078, 13078,13078, 0,13078,13078, 0, 0, 0, 0, 0, 0, 0, 0, 0,13078,13078,13078,13078,13078,13078, 13078,13078, 0, 0, 0, 0,13078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13078,13078,13078,13078,13079,13079, 0,13079,13079,13079,13079,13079,13079,13079,13079,13079, 0,13079,13079, 0, 0, 0, 0, 0, 0, 0, 0, 0,13079,13079,13079,13079,13079,13079,13079, 0, 0, 0, 0, 0,13079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13079,13079,13079,13081,13081, 0,13081,13081, 13081,13081,13081,13081,13081,13081,13081, 0,13081,13081, 0, 0, 0, 0, 0, 0, 0, 0, 0,13081, 13081,13081,13081,13081,13081,13081, 0, 0, 0, 0, 0,13081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13081, 0, 0, 0, 0, 0, 0,13081, 13081,13081,13081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13081,13082,13082, 0,13082,13082,13082,13082,13082,13082, 13082,13082,13082, 0,13082,13082, 0, 0, 0, 0, 0, 0, 0, 0, 0,13082,13082,13082,13082,13082, 13082,13082, 0, 0, 0, 0, 0,13082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13082,13082,13082,13082,13083, 13083, 0,13083,13083,13083,13083,13083,13083,13083,13083, 13083, 0,13083,13083, 0, 0, 0, 0, 0, 0, 0, 0, 0,13083,13083,13083,13083,13083,13083,13083, 13083, 0, 0, 0, 0,13083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13083,13083,13083,13083,13084,13084, 0, 13084,13084,13084,13084,13084,13084,13084,13084,13084, 0, 13084,13084, 0, 0, 0, 0, 0, 0, 0, 0, 0,13084,13084,13084,13084,13084,13084,13084, 0, 0, 0, 0, 0,13084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13084, 0, 0, 0, 0, 0, 0,13084,13084,13084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13084,13085,13085, 0,13085,13085,13085,13085, 13085,13085,13085,13085,13085, 0,13085,13085, 0, 0, 0, 0, 0, 0, 0, 0, 0,13085,13085,13085, 13085,13085,13085,13085,13085, 0, 0, 0, 0,13085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13085,13085,13085, 13088,13088, 0,13088,13088,13088,13088,13088,13088,13088, 13088,13088, 0,13088,13088, 0, 0, 0, 0, 0, 0, 0, 0, 0,13088,13088,13088,13088,13088,13088, 13088, 0, 0, 0, 0, 0,13088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13088,13088,13088,13088,13089,13089, 0,13089,13089,13089,13089,13089,13089,13089,13089,13089, 0,13089,13089, 0, 0, 0, 0, 0, 0, 0, 0, 0,13089,13089,13089,13089,13089,13089,13089,13089, 0, 0, 0, 0,13089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13089,13089,13089,13089,13090,13090, 0,13090, 13090,13090,13090,13090,13090,13090,13090,13090, 0,13090, 13090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13090,13090,13090,13090,13090,13090,13090, 0, 0, 0, 0, 0,13090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13090,13090,13090,13092,13092, 0,13092,13092,13092,13092, 13092,13092,13092,13092,13092, 0,13092,13092, 0, 0, 0, 0, 0, 0, 0, 0, 0,13092,13092,13092, 13092,13092,13092,13092,13092, 0, 0, 0, 0,13092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13092,13092,13092, 13094,13094, 0,13094,13094,13094,13094,13094,13094,13094, 13094,13094, 0,13094,13094, 0, 0, 0, 0, 0, 0, 0, 0, 0,13094,13094,13094,13094,13094,13094, 13094, 0, 0, 0, 0, 0,13094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13094,13094,13094,13094,13095,13095, 0,13095,13095,13095,13095,13095,13095,13095,13095,13095, 0,13095,13095, 0, 0, 0, 0, 0, 0, 0, 0, 0,13095,13095,13095,13095,13095,13095,13095,13095, 0, 0, 0, 0,13095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13095,13095,13095,13095,13096,13096, 0,13096, 13096,13096,13096,13096,13096,13096,13096,13096, 0,13096, 13096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13096,13096,13096,13096,13096,13096,13096, 0, 0, 0, 0, 0,13096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13096,13096,13096,13098,13098, 0,13098,13098,13098,13098, 13098,13098,13098,13098,13098, 0,13098,13098, 0, 0, 0, 0, 0, 0, 0, 0, 0,13098,13098,13098, 13098,13098,13098,13098, 0, 0, 0, 0, 0,13098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13098, 0, 0, 0, 0, 0, 0,13098,13098,13098, 13098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13098,13099, 13099, 0,13099,13099,13099,13099,13099,13099,13099,13099, 13099, 0,13099,13099, 0, 0, 0, 0, 0, 0, 0, 0, 0,13099,13099,13099,13099,13099,13099,13099, 0, 0, 0, 0, 0,13099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13099,13099,13099,13099,13100,13100, 0, 13100,13100,13100,13100,13100,13100,13100,13100,13100, 0, 13100,13100, 0, 0, 0, 0, 0, 0, 0, 0, 0,13100,13100,13100,13100,13100,13100,13100,13100, 0, 0, 0, 0,13100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13100,13100,13100,13100,13101,13101, 0,13101,13101, 13101,13101,13101,13101,13101,13101,13101, 0,13101,13101, 0, 0, 0, 0, 0, 0, 0, 0, 0,13101, 13101,13101,13101,13101,13101,13101, 0, 0, 0, 0, 0,13101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13101, 0, 0, 0, 0, 0, 0,13101, 13101,13101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13101,13102,13102, 0,13102,13102,13102,13102,13102,13102, 13102,13102,13102, 0,13102,13102, 0, 0, 0, 0, 0, 0, 0, 0, 0,13102,13102,13102,13102,13102, 13102,13102,13102, 0, 0, 0, 0,13102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13102,13102,13102,13104,13104, 0,13104,13104,13104,13104,13104,13104,13104,13104,13104, 0,13104,13104, 0, 0, 0, 0, 0, 0, 0, 0, 0,13104,13104,13104,13104,13104,13104,13104, 0, 0, 0, 0, 0,13104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13104,13104,13104,13106,13106, 0,13106,13106, 13106,13106,13106,13106,13106,13106,13106, 0,13106,13106, 0, 0, 0, 0, 0, 0, 0, 0, 0,13106, 13106,13106,13106,13106,13106,13106, 0, 0, 0, 0, 0,13106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13106, 13106,13106,13106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13106,13107,13107, 0,13107,13107,13107,13107,13107,13107,13107,13107,13107, 0,13107,13107, 0, 0, 0, 0, 0, 0, 0, 0, 0,13107,13107,13107,13107,13107,13107,13107, 0, 0, 0, 0, 0,13107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13107,13107,13107,13107,13108,13108, 0,13108, 13108,13108,13108,13108,13108,13108,13108,13108, 0,13108, 13108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13108,13108,13108,13108,13108,13108,13108,13108, 0, 0, 0, 0,13108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13108,13108,13108,13108,13109,13109, 0,13109,13109,13109, 13109,13109,13109,13109,13109,13109, 0,13109,13109, 0, 0, 0, 0, 0, 0, 0, 0, 0,13109,13109, 13109,13109,13109,13109,13109, 0, 0, 0, 0, 0, 13109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13109,13109, 13109,13111,13111, 0,13111,13111,13111,13111,13111,13111, 13111,13111,13111, 0,13111,13111, 0, 0, 0, 0, 0, 0, 0, 0, 0,13111,13111,13111,13111,13111, 13111,13111,13111, 0, 0, 0, 0,13111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13111,13111,13111,13117,13117, 0,13117,13117,13117,13117,13117,13117,13117,13117,13117, 0,13117,13117, 0, 0, 0, 0, 0, 0, 0, 0, 0,13117,13117,13117,13117,13117,13117,13117, 0, 0, 0, 0, 0,13117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13117,13117,13117,13117,13118,13118, 0,13118, 13118,13118,13118,13118,13118,13118,13118,13118, 0,13118, 13118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13118,13118,13118,13118,13118,13118,13118,13118, 0, 0, 0, 0,13118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13118,13118,13118,13118,13119,13119, 0,13119,13119,13119, 13119,13119,13119,13119,13119,13119, 0,13119,13119, 0, 0, 0, 0, 0, 0, 0, 0, 0,13119,13119, 13119,13119,13119,13119,13119, 0, 0, 0, 0, 0, 13119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13119,13119, 13119,13121,13121, 0,13121,13121,13121,13121,13121,13121, 13121,13121,13121, 0,13121,13121, 0, 0, 0, 0, 0, 0, 0, 0, 0,13121,13121,13121,13121,13121, 13121,13121,13121, 0, 0, 0, 0,13121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13121,13121,13121,13126,13126, 0,13126,13126,13126,13126,13126,13126,13126,13126,13126, 0,13126,13126, 0, 0, 0, 0, 0, 0, 0, 0, 0,13126,13126,13126,13126,13126,13126,13126, 0, 0, 0, 0, 0,13126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13126,13126,13126,13126,13127,13127, 0,13127, 13127,13127,13127,13127,13127,13127,13127,13127, 0,13127, 13127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13127,13127,13127,13127,13127,13127,13127,13127, 0, 0, 0, 0,13127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13127,13127,13127,13127,13128,13128, 0,13128,13128,13128, 13128,13128,13128,13128,13128,13128, 0,13128,13128, 0, 0, 0, 0, 0, 0, 0, 0, 0,13128,13128, 13128,13128,13128,13128,13128, 0, 0, 0, 0, 0, 13128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13128,13128, 13128,13130,13130, 0,13130,13130,13130,13130,13130,13130, 13130,13130,13130, 0,13130,13130, 0, 0, 0, 0, 0, 0, 0, 0, 0,13130,13130,13130,13130,13130, 13130,13130,13130, 0, 0, 0, 0,13130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13130,13130,13130,13134,13134, 0,13134,13134,13134,13134,13134,13134,13134,13134,13134, 0,13134,13134, 0, 0, 0, 0, 0, 0, 0, 0, 0,13134,13134,13134,13134,13134,13134,13134, 0, 0, 0, 0, 0,13134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13134,13134,13134,13134,13135,13135, 0,13135, 13135,13135,13135,13135,13135,13135,13135,13135, 0,13135, 13135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13135,13135,13135,13135,13135,13135,13135,13135, 0, 0, 0, 0,13135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13135,13135,13135,13135,13136,13136, 0,13136,13136,13136, 13136,13136,13136,13136,13136,13136, 0,13136,13136, 0, 0, 0, 0, 0, 0, 0, 0, 0,13136,13136, 13136,13136,13136,13136,13136, 0, 0, 0, 0, 0, 13136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13136,13136, 13136,13138,13138, 0,13138,13138,13138,13138,13138,13138, 13138,13138,13138, 0,13138,13138, 0, 0, 0, 0, 0, 0, 0, 0, 0,13138,13138,13138,13138,13138, 13138,13138,13138, 0, 0, 0, 0,13138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13138,13138,13138,13140,13140, 0,13140,13140,13140,13140,13140,13140,13140,13140,13140, 0,13140,13140, 0, 0, 0, 0, 0, 0, 0, 0, 0,13140,13140,13140,13140,13140,13140,13140, 0, 0, 0, 0, 0,13140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13140,13140,13140,13140,13141,13141, 0,13141, 13141,13141,13141,13141,13141,13141,13141,13141, 0,13141, 13141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13141,13141,13141,13141,13141,13141,13141,13141, 0, 0, 0, 0,13141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13141,13141,13141,13141,13142,13142, 0,13142,13142,13142, 13142,13142,13142,13142,13142,13142, 0,13142,13142, 0, 0, 0, 0, 0, 0, 0, 0, 0,13142,13142, 13142,13142,13142,13142,13142, 0, 0, 0, 0, 0, 13142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13142,13142, 13142,13144,13144, 0,13144,13144,13144,13144,13144,13144, 13144,13144,13144, 0,13144,13144, 0, 0, 0, 0, 0, 0, 0, 0, 0,13144,13144,13144,13144,13144, 13144,13144, 0, 0, 0, 0, 0,13144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13144, 0, 0, 0, 0, 0, 0,13144,13144,13144,13144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13144,13145,13145, 0, 13145,13145,13145,13145,13145,13145,13145,13145,13145, 0, 13145,13145, 0, 0, 0, 0, 0, 0, 0, 0, 0,13145,13145,13145,13145,13145,13145,13145, 0, 0, 0, 0, 0,13145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13145,13145,13145,13145,13146,13146, 0,13146,13146, 13146,13146,13146,13146,13146,13146,13146, 0,13146,13146, 0, 0, 0, 0, 0, 0, 0, 0, 0,13146, 13146,13146,13146,13146,13146,13146,13146, 0, 0, 0, 0,13146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13146, 13146,13146,13146,13147,13147, 0,13147,13147,13147,13147, 13147,13147,13147,13147,13147, 0,13147,13147, 0, 0, 0, 0, 0, 0, 0, 0, 0,13147,13147,13147, 13147,13147,13147,13147, 0, 0, 0, 0, 0,13147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13147, 0, 0, 0, 0, 0, 0,13147,13147,13147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13147,13148, 13148, 0,13148,13148,13148,13148,13148,13148,13148,13148, 13148, 0,13148,13148, 0, 0, 0, 0, 0, 0, 0, 0, 0,13148,13148,13148,13148,13148,13148,13148, 13148, 0, 0, 0, 0,13148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13148,13148,13148,13151,13151, 0,13151, 13151,13151,13151,13151,13151,13151,13151,13151, 0,13151, 13151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13151,13151,13151,13151,13151,13151,13151, 0, 0, 0, 0, 0,13151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13151,13151,13151,13151,13152,13152, 0,13152,13152,13152, 13152,13152,13152,13152,13152,13152, 0,13152,13152, 0, 0, 0, 0, 0, 0, 0, 0, 0,13152,13152, 13152,13152,13152,13152,13152,13152, 0, 0, 0, 0, 13152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13152,13152, 13152,13152,13153,13153, 0,13153,13153,13153,13153,13153, 13153,13153,13153,13153, 0,13153,13153, 0, 0, 0, 0, 0, 0, 0, 0, 0,13153,13153,13153,13153, 13153,13153,13153, 0, 0, 0, 0, 0,13153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13153,13153,13153,13155, 13155, 0,13155,13155,13155,13155,13155,13155,13155,13155, 13155, 0,13155,13155, 0, 0, 0, 0, 0, 0, 0, 0, 0,13155,13155,13155,13155,13155,13155,13155, 13155, 0, 0, 0, 0,13155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13155,13155,13155,13157,13157, 0,13157, 13157,13157,13157,13157,13157,13157,13157,13157, 0,13157, 13157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13157,13157,13157,13157,13157,13157,13157, 0, 0, 0, 0, 0,13157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13157,13157,13157,13157,13158,13158, 0,13158,13158,13158, 13158,13158,13158,13158,13158,13158, 0,13158,13158, 0, 0, 0, 0, 0, 0, 0, 0, 0,13158,13158, 13158,13158,13158,13158,13158,13158, 0, 0, 0, 0, 13158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13158,13158, 13158,13158,13159,13159, 0,13159,13159,13159,13159,13159, 13159,13159,13159,13159, 0,13159,13159, 0, 0, 0, 0, 0, 0, 0, 0, 0,13159,13159,13159,13159, 13159,13159,13159, 0, 0, 0, 0, 0,13159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13159,13159,13159,13161, 13161, 0,13161,13161,13161,13161,13161,13161,13161,13161, 13161, 0,13161,13161, 0, 0, 0, 0, 0, 0, 0, 0, 0,13161,13161,13161,13161,13161,13161,13161, 0, 0, 0, 0, 0,13161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13161, 0, 0, 0, 0, 0, 0,13161,13161,13161,13161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13161,13162,13162, 0,13162,13162, 13162,13162,13162,13162,13162,13162,13162, 0,13162,13162, 0, 0, 0, 0, 0, 0, 0, 0, 0,13162, 13162,13162,13162,13162,13162,13162, 0, 0, 0, 0, 0,13162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13162, 13162,13162,13162,13163,13163, 0,13163,13163,13163,13163, 13163,13163,13163,13163,13163, 0,13163,13163, 0, 0, 0, 0, 0, 0, 0, 0, 0,13163,13163,13163, 13163,13163,13163,13163,13163, 0, 0, 0, 0,13163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13163,13163,13163, 13163,13164,13164, 0,13164,13164,13164,13164,13164,13164, 13164,13164,13164, 0,13164,13164, 0, 0, 0, 0, 0, 0, 0, 0, 0,13164,13164,13164,13164,13164, 13164,13164, 0, 0, 0, 0, 0,13164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13164, 0, 0, 0, 0, 0, 0,13164,13164,13164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13164,13165,13165, 0, 13165,13165,13165,13165,13165,13165,13165,13165,13165, 0, 13165,13165, 0, 0, 0, 0, 0, 0, 0, 0, 0,13165,13165,13165,13165,13165,13165,13165,13165, 0, 0, 0, 0,13165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13165,13165,13165,13167,13167, 0,13167,13167,13167, 13167,13167,13167,13167,13167,13167, 0,13167,13167, 0, 0, 0, 0, 0, 0, 0, 0, 0,13167,13167, 13167,13167,13167,13167,13167, 0, 0, 0, 0, 0, 13167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13167,13167, 13167,13168,13168, 0,13168,13168,13168,13168,13168,13168, 13168,13168,13168, 0,13168,13168, 0, 0, 0, 0, 0, 0, 0, 0, 0,13168,13168,13168,13168,13168, 13168,13168, 0, 0, 0, 0, 0,13168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13168,13168,13168,13168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13168,13169,13169,13169,13169,13169,13169, 13169,13169, 0, 0,13169,13169,13169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13169, 13169,13169,13169,13169,13169, 0, 0, 0, 0, 0, 13169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13169,13169, 13169,13169,13170,13170, 0,13170,13170,13170,13170,13170, 0, 0,13170,13170,13170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13170,13170,13170, 13170,13170,13170, 0, 0, 0, 0, 0,13170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13170,13170,13170,13170, 0, 0, 0, 0,13170,13171,13171, 0,13171,13171, 13171,13171,13171,13171,13171,13171,13171,13171,13171,13171, 13171,13171,13171,13171,13171,13171,13171,13171,13171,13171, 13171,13171,13171,13171,13171,13171,13171,13171,13171,13171, 13171,13171,13171,13171,13171,13171,13171,13171,13171,13171, 13171,13171,13171,13171,13171,13171,13171,13171,13171,13171, 13171,13171,13171,13171,13171,13171,13171,13171,13171,13171, 13171,13171,13171,13171,13171,13171,13171,13171,13171,13171, 13171,13171,13171,13171,13171,13171,13171,13171,13175,13175, 0,13175,13175,13175,13175,13175,13175,13175,13175,13175, 0,13175,13175, 0, 0, 0, 0, 0, 0, 0, 0, 0,13175,13175,13175,13175,13175,13175,13175, 0, 0, 0, 0, 0,13175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13175,13175,13175,13175,13176,13176, 0,13176, 13176,13176,13176,13176,13176,13176,13176,13176, 0,13176, 13176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13176,13176,13176,13176,13176,13176,13176,13176, 0, 0, 0, 0,13176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13176,13176,13176,13176,13179, 0, 0, 0, 0, 0, 13179, 0,13179, 0, 0,13179,13179,13179,13179,13179, 13179,13179,13179,13179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13179,13180,13180,13180,13180,13180,13180, 13180,13180,13180, 0, 0, 0, 0, 0, 0, 0, 13180,13180,13180,13180,13180,13180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13180,13180,13180, 13180,13180,13180,13183,13183, 0,13183,13183,13183,13183, 13183,13183,13183,13183,13183, 0,13183,13183, 0, 0, 0, 0, 0, 0, 0, 0, 0,13183,13183,13183, 13183,13183,13183,13183, 0, 0, 0, 0, 0,13183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13183,13183,13183, 13183,13184,13184, 0,13184,13184,13184,13184,13184,13184, 13184,13184,13184, 0,13184,13184, 0, 0, 0, 0, 0, 0, 0, 0, 0,13184,13184,13184,13184,13184, 13184,13184,13184, 0, 0, 0, 0,13184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13184,13184,13184,13184,13188, 13188, 0,13188,13188,13188,13188,13188,13188,13188,13188, 13188, 0,13188,13188, 0, 0, 0, 0, 0, 0, 0, 0, 0,13188,13188,13188,13188,13188,13188,13188, 0, 0, 0, 0, 0,13188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13188,13188,13188,13188,13189,13189, 0, 13189,13189,13189,13189,13189,13189,13189,13189,13189, 0, 13189,13189, 0, 0, 0, 0, 0, 0, 0, 0, 0,13189,13189,13189,13189,13189,13189,13189, 0, 0, 0, 0, 0,13189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13189,13189,13189,13190,13190, 0,13190,13190,13190, 13190,13190,13190,13190,13190,13190, 0,13190,13190, 0, 0, 0, 0, 0, 0, 0, 0, 0,13190,13190, 13190,13190,13190,13190,13190,13190, 0, 0, 0, 0, 13190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13190,13190, 13190,13194,13194, 0,13194,13194,13194,13194,13194,13194, 13194,13194,13194, 0,13194,13194, 0, 0, 0, 0, 0, 0, 0, 0, 0,13194,13194,13194,13194,13194, 13194,13194, 0, 0, 0, 0, 0,13194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13194,13194,13194,13195,13195, 0,13195,13195,13195,13195,13195,13195,13195,13195,13195, 0,13195,13195, 0, 0, 0, 0, 0, 0, 0, 0, 0,13195,13195,13195,13195,13195,13195,13195,13195, 0, 0, 0, 0,13195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13195,13195,13195,13198,13198, 0,13198,13198, 13198,13198,13198,13198,13198,13198,13198, 0,13198,13198, 0, 0, 0, 0, 0, 0, 0, 0, 0,13198, 13198,13198,13198,13198,13198,13198, 0, 0, 0, 0, 0,13198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13198, 13198,13198,13199,13199, 0,13199,13199,13199,13199,13199, 13199,13199,13199,13199, 0,13199,13199, 0, 0, 0, 0, 0, 0, 0, 0, 0,13199,13199,13199,13199, 13199,13199,13199,13199, 0, 0, 0, 0,13199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13199,13199,13199,13201, 13201, 0,13201,13201,13201,13201,13201,13201,13201,13201, 13201, 0,13201,13201, 0, 0, 0, 0, 0, 0, 0, 0, 0,13201,13201,13201,13201,13201,13201,13201, 0, 0, 0, 0, 0,13201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13201,13201,13201,13202,13202, 0,13202, 13202,13202,13202,13202,13202,13202,13202,13202, 0,13202, 13202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13202,13202,13202,13202,13202,13202,13202,13202, 0, 0, 0, 0,13202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13202,13202,13202,13203,13203, 0,13203,13203,13203,13203, 13203,13203,13203,13203,13203,13203,13203,13203, 0, 0, 0, 0, 0, 0, 0, 0, 0,13203,13203,13203, 13203,13203,13203,13203,13203, 0, 0, 0, 0,13203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13203,13203,13203, 13203,13203,13204,13204, 0,13204,13204,13204,13204,13204, 13204,13204,13204,13204, 0,13204,13204, 0, 0, 0, 0, 0, 0, 0, 0, 0,13204,13204,13204,13204, 13204,13204,13204, 0, 0, 0, 0, 0,13204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13204,13204,13204,13205, 13205, 0,13205,13205,13205,13205,13205,13205,13205,13205, 13205, 0,13205,13205, 0, 0, 0, 0, 0, 0, 0, 0, 0,13205,13205,13205,13205,13205,13205,13205, 13205, 0, 0, 0, 0,13205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13205,13205,13205,13207,13207, 0,13207, 13207,13207,13207,13207,13207,13207,13207,13207, 0,13207, 13207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13207,13207,13207,13207,13207,13207,13207, 0, 0, 0, 0, 0,13207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13207,13207,13207,13208,13208, 0,13208,13208,13208,13208, 13208,13208,13208,13208,13208, 0,13208,13208, 0, 0, 0, 0, 0, 0, 0, 0, 0,13208,13208,13208, 13208,13208,13208,13208,13208, 0, 0, 0, 0,13208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13208,13208,13208, 13209,13209, 0,13209,13209,13209,13209,13209,13209,13209, 13209,13209,13209,13209,13209, 0, 0, 0, 0, 0, 0, 0, 0, 0,13209,13209,13209,13209,13209,13209, 13209,13209, 0, 0, 0, 0,13209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13209,13209,13209,13209,13209,13210, 13210, 0,13210,13210,13210,13210,13210,13210,13210,13210, 13210, 0,13210,13210, 0, 0, 0, 0, 0, 0, 0, 0, 0,13210,13210,13210,13210,13210,13210,13210, 0, 0, 0, 0, 0,13210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13210,13210,13210,13210,13211,13211, 0, 13211,13211,13211,13211,13211,13211,13211,13211,13211, 0, 13211,13211, 0, 0, 0, 0, 0, 0, 0, 0, 0,13211,13211,13211,13211,13211,13211,13211,13211, 0, 0, 0, 0,13211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13211,13211,13211,13211,13212,13212, 0,13212,13212, 13212,13212,13212,13212,13212,13212,13212, 0,13212,13212, 0, 0, 0, 0, 0, 0, 0, 0, 0,13212, 13212,13212,13212,13212,13212,13212, 0, 0, 0, 0, 0,13212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13212, 13212,13212,13214,13214, 0,13214,13214,13214,13214,13214, 13214,13214,13214,13214, 0,13214,13214, 0, 0, 0, 0, 0, 0, 0, 0, 0,13214,13214,13214,13214, 13214,13214,13214,13214, 0, 0, 0, 0,13214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13214,13214,13214,13220, 13220, 0,13220,13220,13220,13220,13220,13220,13220,13220, 13220, 0,13220,13220, 0, 0, 0, 0, 0, 0, 0, 0, 0,13220,13220,13220,13220,13220,13220,13220, 0, 0, 0, 0, 0,13220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13220,13220,13220,13220,13224,13224,13224, 13224,13224,13224,13224,13224,13224,13224, 0, 0, 0, 0, 0, 0,13224,13224,13224,13224,13224,13224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13224,13224,13224,13224,13224,13224,13227,13227,13227,13227, 13227,13227,13227,13227,13227,13227, 0, 0, 0, 0, 0, 0,13227,13227,13227,13227,13227,13227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13227, 13227,13227,13227,13227,13227,13229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13229,13229,13229,13229, 13229,13229,13229,13229,13229, 0, 0, 0, 0, 0, 0, 0,13229,13229,13229,13229,13229,13229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13229, 13229,13229,13229,13229,13229,13233,13233,13233,13233,13233, 13233,13233,13233,13233,13233, 0, 0, 0, 0, 0, 0,13233,13233,13233,13233,13233,13233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13233,13233, 13233,13233,13233,13233,13235,13235,13235,13235,13235,13235, 13235,13235,13235, 0, 0, 0, 0, 0, 0, 0, 13235,13235,13235,13235,13235,13235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13235,13235,13235, 13235,13235,13235,13241,13241,13241,13241,13241,13241,13241, 13241,13241,13241, 0, 0, 0, 0, 0, 0,13241, 13241,13241,13241,13241,13241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13241,13241,13241,13241, 13241,13241,13245,13245,13245,13245,13245,13245,13245,13245, 13245,13245, 0, 0, 0, 0, 0, 0,13245,13245, 13245,13245,13245,13245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13245,13245,13245,13245,13245, 13245,13247,13247,13247,13247,13247,13247,13247,13247,13247, 0, 0, 0, 0, 0, 0, 0,13247,13247,13247, 13247,13247,13247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13247,13247,13247,13247,13247,13247, 13255,13255,13255,13255,13255,13255,13255,13255,13255,13255, 0, 0, 0, 0, 0, 0,13255,13255,13255,13255, 13255,13255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13255,13255,13255,13255,13255,13255,13258, 13258,13258,13258,13258,13258,13258,13258,13258,13258, 0, 0, 0, 0, 0, 0,13258,13258,13258,13258,13258, 13258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13258,13258,13258,13258,13258,13258,13266,13266, 13266,13266,13266,13266,13266,13266,13266, 0, 0, 0, 0, 0, 0, 0,13266,13266,13266,13266,13266,13266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13266,13266,13266,13266,13266,13266,13267,13267, 0, 13267,13267,13267,13267,13267,13267,13267,13267,13267, 0, 13267,13267, 0, 0, 0, 0, 0, 0, 0, 0, 0,13267,13267,13267,13267,13267,13267,13267, 0, 0, 0, 0, 0,13267,13267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13267,13267,13267,13287,13287, 0,13287,13287,13287, 13287,13287,13287,13287,13287,13287, 0,13287,13287, 0, 0, 0, 0, 0, 0, 0, 0, 0,13287,13287, 13287,13287,13287,13287,13287, 0, 0, 0, 0, 0, 13287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13287,13287, 13287,13287,13288,13288, 0,13288,13288,13288,13288,13288, 13288,13288,13288,13288, 0,13288,13288, 0, 0, 0, 0, 0, 0, 0, 0, 0,13288,13288,13288,13288, 13288,13288,13288,13288, 0, 0, 0, 0,13288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13288,13288,13288,13288, 13289,13289, 0,13289,13289,13289,13289,13289,13289,13289, 13289,13289, 0,13289,13289, 0, 0, 0, 0, 0, 0, 0, 0, 0,13289,13289,13289,13289,13289,13289, 13289, 0, 0, 0, 0, 0,13289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13289,13289,13289,13291,13291, 0, 13291,13291,13291,13291,13291,13291,13291,13291,13291, 0, 13291,13291, 0, 0, 0, 0, 0, 0, 0, 0, 0,13291,13291,13291,13291,13291,13291,13291,13291, 0, 0, 0, 0,13291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13291,13291,13291,13341,13341, 0,13341,13341,13341, 13341,13341,13341,13341,13341,13341, 0,13341,13341, 0, 0, 0, 0, 0, 0, 0, 0, 0,13341,13341, 13341,13341,13341,13341,13341, 0, 0, 0, 0, 0, 13341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13341,13341, 13341,13341,13342,13342, 0,13342,13342,13342,13342,13342, 13342,13342,13342,13342, 0,13342,13342, 0, 0, 0, 0, 0, 0, 0, 0, 0,13342,13342,13342,13342, 13342,13342,13342,13342, 0, 0, 0, 0,13342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13342,13342,13342,13342, 13343,13343, 0,13343,13343,13343,13343,13343,13343,13343, 13343,13343, 0,13343,13343, 0, 0, 0, 0, 0, 0, 0, 0, 0,13343,13343,13343,13343,13343,13343, 13343, 0, 0, 0, 0, 0,13343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13343,13343,13343,13345,13345, 0, 13345,13345,13345,13345,13345,13345,13345,13345,13345, 0, 13345,13345, 0, 0, 0, 0, 0, 0, 0, 0, 0,13345,13345,13345,13345,13345,13345,13345,13345, 0, 0, 0, 0,13345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13345,13345,13345,13351,13351, 0,13351,13351,13351, 13351,13351,13351,13351,13351,13351, 0,13351,13351, 0, 0, 0, 0, 0, 0, 0, 0, 0,13351,13351, 13351,13351,13351,13351,13351, 0, 0, 0, 0, 0, 13351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13351,13351, 13351,13352,13352, 0,13352,13352,13352,13352,13352,13352, 13352,13352,13352, 0,13352,13352, 0, 0, 0, 0, 0, 0, 0, 0, 0,13352,13352,13352,13352,13352, 13352,13352,13352, 0, 0, 0, 0,13352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13352,13352,13352,13354,13354, 0,13354,13354,13354,13354,13354,13354,13354,13354,13354, 0,13354,13354, 0, 0, 0, 0, 0, 0, 0, 0, 0,13354,13354,13354,13354,13354,13354,13354, 0, 0, 0, 0, 0,13354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13354,13354,13354,13355,13355, 0,13355,13355, 13355,13355,13355,13355,13355,13355,13355, 0,13355,13355, 0, 0, 0, 0, 0, 0, 0, 0, 0,13355, 13355,13355,13355,13355,13355,13355,13355, 0, 0, 0, 0,13355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13355, 13355,13355,13357,13357, 0,13357,13357,13357,13357,13357, 13357,13357,13357,13357, 0,13357,13357, 0, 0, 0, 0, 0, 0, 0, 0, 0,13357,13357,13357,13357, 13357,13357,13357, 0, 0, 0, 0, 0,13357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13357,13357,13357,13358, 13358, 0,13358,13358,13358,13358,13358,13358,13358,13358, 13358, 0,13358,13358, 0, 0, 0, 0, 0, 0, 0, 0, 0,13358,13358,13358,13358,13358,13358,13358, 13358, 0, 0, 0, 0,13358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13358,13358,13358,13359,13359, 0,13359, 13359,13359,13359,13359,13359,13359,13359,13359, 0,13359, 13359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13359,13359,13359,13359,13359,13359,13359, 0, 0, 0, 0, 0,13359, 0,13359, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13359,13359,13359, 0, 0, 0, 0, 0, 0, 0, 0,13359,13362,13362, 0,13362,13362,13362,13362,13362, 13362,13362,13362,13362, 0,13362,13362, 0, 0, 0, 0, 0, 0, 0, 0, 0,13362,13362,13362,13362, 13362,13362,13362, 0, 0, 0, 0, 0,13362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13362,13362,13362,13363, 13363, 0,13363,13363,13363,13363,13363,13363,13363,13363, 13363, 0,13363,13363, 0, 0, 0, 0, 0, 0, 0, 0, 0,13363,13363,13363,13363,13363,13363,13363, 13363, 0, 0, 0, 0,13363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13363,13363,13363,13367,13367, 0,13367, 13367,13367,13367,13367,13367,13367,13367,13367, 0,13367, 13367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13367,13367,13367,13367,13367,13367,13367, 0, 0, 0, 0, 0,13367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13367,13367,13367,13368,13368, 0,13368,13368,13368,13368, 13368,13368,13368,13368,13368, 0,13368,13368, 0, 0, 0, 0, 0, 0, 0, 0, 0,13368,13368,13368, 13368,13368,13368,13368,13368, 0, 0, 0, 0,13368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13368,13368,13368, 13371,13371, 0,13371,13371,13371,13371,13371,13371,13371, 13371,13371, 0,13371,13371, 0, 0, 0, 0, 0, 0, 0, 0, 0,13371,13371,13371,13371,13371,13371, 13371, 0, 0, 0, 0, 0,13371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13371,13371,13371,13372,13372, 0, 13372,13372,13372,13372,13372,13372,13372,13372,13372, 0, 13372,13372, 0, 0, 0, 0, 0, 0, 0, 0, 0,13372,13372,13372,13372,13372,13372,13372,13372, 0, 0, 0, 0,13372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13372,13372,13372,13374,13374, 0,13374,13374,13374, 13374,13374,13374,13374,13374,13374, 0,13374,13374, 0, 0, 0, 0, 0, 0, 0, 0, 0,13374,13374, 13374,13374,13374,13374,13374, 0, 0, 0, 0, 0, 13374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13374,13374, 13374,13375,13375, 0,13375,13375,13375,13375,13375,13375, 13375,13375,13375, 0,13375,13375, 0, 0, 0, 0, 0, 0, 0, 0, 0,13375,13375,13375,13375,13375, 13375,13375,13375, 0, 0, 0, 0,13375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13375,13375,13375,13376,13376, 0,13376,13376,13376,13376,13376,13376,13376,13376,13376, 13376,13376,13376, 0, 0, 0, 0, 0, 0, 0, 0, 0,13376,13376,13376,13376,13376,13376,13376,13376, 0, 0, 0, 0,13376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13376,13376,13376,13376,13376,13377,13377, 0, 13377,13377,13377,13377,13377,13377,13377,13377,13377, 0, 13377,13377, 0, 0, 0, 0, 0, 0, 0, 0, 0,13377,13377,13377,13377,13377,13377,13377, 0, 0, 0, 0, 0,13377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13377,13377,13377,13378,13378, 0,13378,13378,13378, 13378,13378,13378,13378,13378,13378, 0,13378,13378, 0, 0, 0, 0, 0, 0, 0, 0, 0,13378,13378, 13378,13378,13378,13378,13378,13378, 0, 0, 0, 0, 13378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13378,13378, 13378,13381,13381, 0,13381,13381,13381,13381,13381,13381, 13381,13381,13381, 0,13381,13381, 0, 0, 0, 0, 0, 0, 0, 0, 0,13381,13381,13381,13381,13381, 13381,13381, 0, 0, 0, 0, 0,13381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13381,13381,13381,13382,13382, 0,13382,13382,13382,13382,13382,13382,13382,13382,13382, 0,13382,13382, 0, 0, 0, 0, 0, 0, 0, 0, 0,13382,13382,13382,13382,13382,13382,13382,13382, 0, 0, 0, 0,13382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13382,13382,13382,13384,13384, 0,13384,13384, 13384,13384,13384,13384,13384,13384,13384, 0,13384,13384, 0, 0, 0, 0, 0, 0, 0, 0, 0,13384, 13384,13384,13384,13384,13384,13384, 0, 0, 0, 0, 0,13384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13384, 13384,13384,13385,13385, 0,13385,13385,13385,13385,13385, 13385,13385,13385,13385, 0,13385,13385, 0, 0, 0, 0, 0, 0, 0, 0, 0,13385,13385,13385,13385, 13385,13385,13385,13385, 0, 0, 0, 0,13385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13385,13385,13385,13386, 13386, 0,13386,13386,13386,13386,13386,13386,13386,13386, 13386,13386,13386,13386, 0, 0, 0, 0, 0, 0, 0, 0, 0,13386,13386,13386,13386,13386,13386,13386, 13386, 0, 0, 0, 0,13386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13386,13386,13386,13386,13386,13387,13387, 0,13387,13387,13387,13387,13387,13387,13387,13387,13387, 0,13387,13387, 0, 0, 0, 0, 0, 0, 0, 0, 0,13387,13387,13387,13387,13387,13387,13387, 0, 0, 0, 0, 0,13387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13387,13387,13387,13388,13388, 0,13388,13388, 13388,13388,13388,13388,13388,13388,13388, 0,13388,13388, 0, 0, 0, 0, 0, 0, 0, 0, 0,13388, 13388,13388,13388,13388,13388,13388,13388, 0, 0, 0, 0,13388, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13388, 13388,13388,13391,13391, 0,13391,13391,13391,13391,13391, 13391,13391,13391,13391, 0,13391,13391, 0, 0, 0, 0, 0, 0, 0, 0, 0,13391,13391,13391,13391, 13391,13391,13391, 0, 0, 0, 0, 0,13391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13391,13391,13391,13392, 13392, 0,13392,13392,13392,13392,13392,13392,13392,13392, 13392, 0,13392,13392, 0, 0, 0, 0, 0, 0, 0, 0, 0,13392,13392,13392,13392,13392,13392,13392, 0, 0, 0, 0, 0,13392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13392, 0, 0, 0, 0, 0,13392,13392,13392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13392,13393,13393, 0,13393, 13393,13393,13393,13393,13393,13393,13393,13393, 0,13393, 13393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13393,13393,13393,13393,13393,13393,13393,13393, 0, 0, 0, 0,13393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13393,13393,13393,13396,13396, 0,13396,13396,13396,13396, 13396,13396,13396,13396,13396, 0,13396,13396, 0, 0, 0, 0, 0, 0, 0, 0, 0,13396,13396,13396, 13396,13396,13396,13396, 0, 0, 0, 0, 0,13396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13396,13396,13396, 13397,13397, 0,13397,13397,13397,13397,13397,13397,13397, 13397,13397, 0,13397,13397, 0, 0, 0, 0, 0, 0, 0, 0, 0,13397,13397,13397,13397,13397,13397, 13397,13397, 0, 0, 0, 0,13397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13397,13397,13397,13399,13399, 0, 13399,13399,13399,13399,13399,13399,13399,13399,13399, 0, 13399,13399, 0, 0, 0, 0, 0, 0, 0, 0, 0,13399,13399,13399,13399,13399,13399,13399, 0, 0, 0, 0, 0,13399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13399,13399,13399,13400,13400, 0,13400,13400,13400, 13400,13400,13400,13400,13400,13400, 0,13400,13400, 0, 0, 0, 0, 0, 0, 0, 0, 0,13400,13400, 13400,13400,13400,13400,13400,13400, 0, 0, 0, 0, 13400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13400,13400, 13400,13401,13401, 0,13401,13401,13401,13401,13401,13401, 13401,13401,13401, 0,13401,13401, 0, 0, 0, 0, 0, 0, 0, 0, 0,13401,13401,13401,13401,13401, 13401,13401, 0, 0, 0, 0, 0,13401,13401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13401,13401,13401, 0, 0, 0, 0, 0, 0, 0,13401,13402,13402, 0,13402, 13402,13402,13402,13402,13402,13402,13402,13402, 0,13402, 13402, 0,13402,13402,13402,13402,13402,13402,13402,13402, 13402,13402,13402,13402,13402,13402,13402, 0, 0, 0, 0, 0,13402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13402,13402,13402,13403,13403, 0,13403,13403,13403,13403, 13403,13403,13403,13403,13403, 0,13403,13403, 0, 0, 0, 0, 0, 0, 0, 0, 0,13403,13403,13403, 13403,13403,13403,13403, 0, 0, 0, 0, 0,13403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13403,13403,13403, 13404,13404, 0,13404,13404,13404,13404,13404,13404,13404, 13404,13404, 0,13404,13404, 0, 0, 0, 0, 0, 0, 0, 0, 0,13404,13404,13404,13404,13404,13404, 13404, 0, 0, 0, 0, 0,13404,13404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13404,13404,13404, 0, 0, 0, 0, 0, 0, 0,13404,13408,13408, 0,13408,13408, 13408,13408,13408,13408,13408,13408,13408, 0,13408,13408, 0, 0, 0, 0, 0, 0, 0, 0, 0,13408, 13408,13408,13408,13408,13408,13408, 0, 0, 0, 0, 0,13408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13408, 13408,13408,13409,13409, 0,13409,13409,13409,13409,13409, 13409,13409,13409,13409, 0,13409,13409, 0, 0, 0, 0, 0, 0, 0, 0, 0,13409,13409,13409,13409, 13409,13409,13409,13409, 0, 0, 0, 0,13409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13409,13409,13409,13412, 13412, 0,13412,13412,13412,13412,13412,13412,13412,13412, 13412, 0,13412,13412, 0, 0, 0, 0, 0, 0, 0, 0, 0,13412,13412,13412,13412,13412,13412,13412, 0, 0, 0, 0, 0,13412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13412, 0, 0, 0, 0, 0,13412,13412,13412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13412,13413,13413, 0,13413, 13413,13413,13413,13413,13413,13413,13413,13413, 0,13413, 13413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13413,13413,13413,13413,13413,13413,13413, 0, 0, 0, 0, 0,13413, 0, 0, 0, 0, 0,13413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13413,13413,13413,13415,13415, 0,13415,13415,13415,13415, 13415,13415,13415,13415,13415, 0,13415,13415, 0, 0, 0, 0, 0, 0, 0, 0, 0,13415,13415,13415, 13415,13415,13415,13415, 0, 0, 0, 0, 0,13415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13415,13415,13415, 13416,13416, 0,13416,13416,13416,13416,13416,13416,13416, 13416,13416, 0,13416,13416, 0, 0, 0, 0, 0, 0, 0, 0, 0,13416,13416,13416,13416,13416,13416, 13416,13416, 0, 0, 0, 0,13416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13416,13416,13416,13420,13420, 0, 13420,13420,13420,13420,13420,13420,13420,13420,13420, 0, 13420,13420, 0, 0, 0, 0, 0, 0, 0, 0, 0,13420,13420,13420,13420,13420,13420,13420, 0, 0, 0, 0, 0,13420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13420,13420,13420,13421,13421, 0,13421,13421,13421, 13421,13421,13421,13421,13421,13421, 0,13421,13421, 0, 0, 0, 0, 0, 0, 0, 0, 0,13421,13421, 13421,13421,13421,13421,13421,13421, 0, 0, 0, 0, 13421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13421,13421, 13421,13425,13425, 0,13425,13425,13425,13425,13425,13425, 13425,13425,13425, 0,13425,13425, 0, 0, 0, 0, 0, 0, 0, 0, 0,13425,13425,13425,13425,13425, 13425,13425, 0, 0, 0, 0, 0,13425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13425,13425,13425,13426,13426, 0,13426,13426,13426,13426,13426,13426,13426,13426,13426, 0,13426,13426, 0, 0, 0, 0, 0, 0, 0, 0, 0,13426,13426,13426,13426,13426,13426,13426,13426, 0, 0, 0, 0,13426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13426,13426,13426,13429,13429, 0,13429,13429, 13429,13429,13429,13429,13429,13429,13429, 0,13429,13429, 0, 0, 0, 0, 0, 0, 0, 0, 0,13429, 13429,13429,13429,13429,13429,13429, 0, 0, 0, 0, 0,13429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13429, 13429,13429,13430,13430, 0,13430,13430,13430,13430,13430, 13430,13430,13430,13430, 0,13430,13430, 0, 0, 0, 0, 0, 0, 0, 0, 0,13430,13430,13430,13430, 13430,13430,13430,13430, 0, 0, 0, 0,13430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13430,13430,13430,13432, 13432, 0,13432,13432,13432,13432,13432,13432,13432,13432, 13432, 0,13432,13432, 0, 0, 0, 0, 0, 0, 0, 0, 0,13432,13432,13432,13432,13432,13432,13432, 0, 0, 0, 0, 0,13432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13432, 0, 0, 0, 0, 0, 0,13432,13432,13432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13432,13433,13433, 0,13433,13433, 13433,13433,13433,13433,13433,13433,13433, 0,13433,13433, 0, 0, 0, 0, 0, 0, 0, 0, 0,13433, 13433,13433,13433,13433,13433,13433, 0, 0, 0, 0, 0,13433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13433, 13433,13433,13434,13434, 0,13434,13434,13434,13434,13434, 13434,13434,13434,13434, 0,13434,13434, 0, 0, 0, 0, 0, 0, 0, 0, 0,13434,13434,13434,13434, 13434,13434,13434,13434, 0, 0, 0, 0,13434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13434,13434,13434,13435, 13435, 0,13435,13435,13435,13435,13435,13435,13435,13435, 13435, 0,13435,13435, 0, 0, 0, 0, 0, 0, 0, 0, 0,13435,13435,13435,13435,13435,13435,13435, 0, 0, 0, 0, 0,13435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13435,13435,13435,13436,13436, 0,13436, 13436,13436,13436,13436,13436,13436,13436,13436, 0,13436, 13436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13436,13436,13436,13436,13436,13436,13436,13436, 0, 0, 0, 0,13436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13436,13436,13436,13440,13440, 0,13440,13440,13440,13440, 13440,13440,13440,13440,13440, 0,13440,13440, 0, 0, 0, 0, 0, 0, 0, 0, 0,13440,13440,13440, 13440,13440,13440,13440, 0, 0, 0, 0, 0,13440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13440,13440,13440, 13441,13441, 0,13441,13441,13441,13441,13441,13441,13441, 13441,13441, 0,13441,13441, 0, 0, 0, 0, 0, 0, 0, 0, 0,13441,13441,13441,13441,13441,13441, 13441,13441, 0, 0, 0, 0,13441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13441,13441,13441,13444,13444, 0, 13444,13444,13444,13444,13444,13444,13444,13444,13444, 0, 13444,13444, 0, 0, 0, 0, 0, 0, 0, 0, 0,13444,13444,13444,13444,13444,13444,13444, 0, 0, 0, 0, 0,13444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13444,13444,13444,13445,13445, 0,13445,13445,13445, 13445,13445,13445,13445,13445,13445, 0,13445,13445, 0, 0, 0, 0, 0, 0, 0, 0, 0,13445,13445, 13445,13445,13445,13445,13445,13445, 0, 0, 0, 0, 13445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13445,13445, 13445,13447,13447, 0,13447,13447,13447,13447,13447,13447, 13447,13447,13447, 0,13447,13447, 0, 0, 0, 0, 0, 0, 0, 0, 0,13447,13447,13447,13447,13447, 13447,13447, 0, 0, 0, 0, 0,13447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13447, 0, 0, 0, 0, 0, 0,13447,13447,13447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13447,13448,13448, 0, 13448,13448,13448,13448,13448,13448,13448,13448,13448, 0, 13448,13448, 0, 0, 0, 0, 0, 0, 0, 0, 0,13448,13448,13448,13448,13448,13448,13448, 0, 0, 0, 0, 0,13448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13448,13448,13448,13449,13449, 0,13449,13449,13449, 13449,13449,13449,13449,13449,13449, 0,13449,13449, 0, 0, 0, 0, 0, 0, 0, 0, 0,13449,13449, 13449,13449,13449,13449,13449,13449, 0, 0, 0, 0, 13449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13449,13449, 13449,13450,13450, 0,13450,13450,13450,13450,13450,13450, 13450,13450,13450, 0,13450,13450, 0, 0, 0, 0, 0, 0, 0, 0, 0,13450,13450,13450,13450,13450, 13450,13450, 0, 0, 0, 0, 0,13450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13450,13450,13450,13450,13451, 13451, 0,13451,13451,13451,13451,13451,13451,13451,13451, 13451, 0,13451,13451, 0, 0, 0, 0, 0, 0, 0, 0, 0,13451,13451,13451,13451,13451,13451,13451, 13451, 0, 0, 0, 0,13451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13451,13451,13451,13451,13452,13452, 0, 13452,13452,13452,13452,13452,13452,13452,13452,13452, 0, 13452,13452, 0, 0, 0, 0, 0, 0, 0, 0, 0,13452,13452,13452,13452,13452,13452,13452, 0, 0, 0, 0, 0,13452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13452,13452,13452,13454,13454, 0,13454,13454,13454, 13454,13454,13454,13454,13454,13454, 0,13454,13454, 0, 0, 0, 0, 0, 0, 0, 0, 0,13454,13454, 13454,13454,13454,13454,13454,13454, 0, 0, 0, 0, 13454, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13454,13454, 13454,13460,13460, 0,13460,13460,13460,13460,13460,13460, 13460,13460,13460,13460,13460,13460,13460,13460,13460,13460, 13460,13460,13460,13460,13460,13460,13460,13460,13460,13460, 13460,13460,13460,13460,13460,13460,13460,13460,13460,13460, 13460,13460,13460,13460,13460,13460,13460,13460,13460,13460, 13460,13460,13460,13460,13460,13460,13460,13460,13460,13460, 13460,13460,13460,13460,13460,13460,13460,13460,13460,13460, 13460,13460,13460,13460,13460,13460,13460,13460,13460,13460, 13460,13460,13460,13460,13468,13468,13468,13468,13468,13468, 13468,13468,13468,13468, 0, 0, 0, 0, 0, 0, 13468,13468,13468,13468,13468,13468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13468,13468,13468, 13468,13468,13468,13470,13470,13470,13470,13470,13470,13470, 13470,13470,13470, 0, 0, 0, 0, 0, 0,13470, 13470,13470,13470,13470,13470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13470,13470,13470,13470, 13470,13470,13473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13473,13473,13473,13473,13473,13473,13473, 13473,13473,13473, 0, 0, 0, 0, 0, 0,13473, 13473,13473,13473,13473,13473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13473,13473,13473,13473, 13473,13473,13479,13479,13479,13479,13479,13479,13479,13479, 13479,13479, 0, 0, 0, 0, 0, 0,13479,13479, 13479,13479,13479,13479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13479,13479,13479,13479,13479, 13479,13482,13482,13482,13482,13482,13482,13482,13482,13482, 13482, 0, 0, 0, 0, 0, 0,13482,13482,13482, 13482,13482,13482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13482,13482,13482,13482,13482,13482, 13490,13490,13490,13490,13490,13490,13490,13490,13490,13490, 0, 0, 0, 0, 0, 0,13490,13490,13490,13490, 13490,13490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13490,13490,13490,13490,13490,13490,13493, 13493,13493,13493,13493,13493,13493,13493,13493,13493, 0, 0, 0, 0, 0, 0,13493,13493,13493,13493,13493, 13493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13493,13493,13493,13493,13493,13493,13501,13501, 13501,13501,13501,13501,13501,13501,13501, 0, 0, 0, 0, 0, 0, 0,13501,13501,13501,13501,13501,13501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13501,13501,13501,13501,13501,13501,13506,13506,13506, 13506,13506,13506,13506,13506,13506,13506, 0, 0, 0, 0, 0, 0,13506,13506,13506,13506,13506,13506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13506,13506,13506,13506,13506,13506,13508,13508,13508,13508, 13508,13508,13508,13508,13508, 0, 0, 0, 0, 0, 0, 0,13508,13508,13508,13508,13508,13508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13508, 13508,13508,13508,13508,13508,13516, 0,13516,13516,13516, 13516,13516,13516,13516,13516,13516,13516, 0, 0, 0, 0, 0, 0,13516,13516,13516,13516,13516,13516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13516,13516,13516,13516,13516,13516,13520,13520, 0,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13520, 13520,13520,13520,13520,13520,13520,13520,13520,13520,13524, 13524, 0,13524,13524,13524,13524,13524,13524,13524,13524, 13524, 0,13524,13524, 0, 0, 0, 0, 0, 0, 0, 0, 0,13524,13524,13524,13524,13524,13524,13524, 13524, 0, 0, 0, 0,13524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13524,13524,13524,13526,13526,13526,13526, 13526,13526,13526,13526,13526,13526, 0, 0, 0, 0, 0, 0,13526,13526,13526,13526,13526,13526, 0, 0, 0, 0, 0,13526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13526, 13526,13526,13526,13526,13526,13529,13529, 0,13529,13529, 13529,13529,13529,13529,13529,13529,13529, 0,13529,13529, 0, 0, 0, 0, 0, 0, 0, 0, 0,13529, 13529,13529,13529,13529,13529,13529, 0, 0, 0, 0, 0,13529, 0, 0,13529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13529, 13529,13529,13545,13545,13545,13545,13545,13545,13545,13545, 13545,13545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13545, 0,13545,13548,13548, 0,13548,13548, 13548,13548,13548,13548,13548,13548,13548, 0,13548,13548, 0, 0, 0, 0, 0, 0, 0, 0, 0,13548, 13548,13548,13548,13548,13548,13548, 0, 0, 0, 0, 0,13548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13548, 13548,13548,13549,13549, 0,13549,13549,13549,13549,13549, 13549,13549,13549,13549, 0,13549,13549, 0, 0, 0, 0, 0, 0, 0, 0, 0,13549,13549,13549,13549, 13549,13549,13549,13549, 0, 0, 0, 0,13549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13549,13549,13549,13553, 13553, 0,13553,13553,13553,13553,13553,13553,13553,13553, 13553, 0,13553,13553, 0, 0, 0, 0, 0, 0, 0, 0, 0,13553,13553,13553,13553,13553,13553,13553, 0, 0, 0, 0, 0,13553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13553,13553,13553,13554,13554, 0,13554, 13554,13554,13554,13554,13554,13554,13554,13554, 0,13554, 13554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13554,13554,13554,13554,13554,13554,13554,13554, 0, 0, 0, 0,13554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13554,13554,13554,13555,13555, 0,13555,13555,13555,13555, 13555,13555,13555,13555,13555, 0,13555,13555, 0, 0, 0, 0, 0, 0, 0, 0, 0,13555,13555,13555, 13555,13555,13555,13555, 0, 0, 0, 0, 0,13555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13555,13555,13555, 13556,13556, 0,13556,13556,13556,13556,13556,13556,13556, 13556,13556, 0,13556,13556, 0, 0, 0, 0, 0, 0, 0, 0, 0,13556,13556,13556,13556,13556,13556, 13556,13556, 0, 0, 0, 0,13556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13556,13556,13556,13557,13557, 0, 13557,13557,13557,13557,13557,13557,13557,13557,13557, 0, 13557,13557, 0, 0, 0, 0, 0, 0, 0, 0, 0,13557,13557,13557,13557,13557,13557,13557, 0, 0, 0, 0, 0,13557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13557, 0, 0, 0, 0, 0,13557,13557,13557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13557,13561,13561, 0,13561,13561,13561, 13561,13561,13561,13561,13561,13561, 0,13561,13561, 0, 0, 0, 0, 0, 0, 0, 0, 0,13561,13561, 13561,13561,13561,13561,13561, 0, 0, 0, 0, 0, 13561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13561,13561, 13561,13562,13562, 0,13562,13562,13562,13562,13562,13562, 13562,13562,13562, 0,13562,13562, 0, 0, 0, 0, 0, 0, 0, 0, 0,13562,13562,13562,13562,13562, 13562,13562,13562, 0, 0, 0, 0,13562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13562,13562,13562,13565,13565, 0,13565,13565,13565,13565,13565,13565,13565,13565,13565, 0,13565,13565, 0, 0, 0, 0, 0, 0, 0, 0, 0,13565,13565,13565,13565,13565,13565,13565, 0, 0, 0, 0, 0,13565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13565,13565,13565,13566,13566, 0,13566,13566, 13566,13566,13566,13566,13566,13566,13566, 0,13566,13566, 0, 0, 0, 0, 0, 0, 0, 0, 0,13566, 13566,13566,13566,13566,13566,13566,13566, 0, 0, 0, 0,13566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13566, 13566,13566,13568,13568, 0,13568,13568,13568,13568,13568, 13568,13568,13568,13568, 0,13568,13568, 0, 0, 0, 0, 0, 0, 0, 0, 0,13568,13568,13568,13568, 13568,13568,13568, 0, 0, 0, 0, 0,13568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13568,13568,13568,13569, 13569, 0,13569,13569,13569,13569,13569,13569,13569,13569, 13569, 0,13569,13569, 0, 0, 0, 0, 0, 0, 0, 0, 0,13569,13569,13569,13569,13569,13569,13569, 13569, 0, 0, 0, 0,13569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13569,13569,13569,13570,13570, 0,13570, 13570,13570,13570,13570,13570,13570,13570,13570, 0,13570, 13570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13570,13570,13570,13570,13570,13570,13570, 0, 0, 0, 0, 0,13570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13570, 0, 0, 0, 13570,13570,13570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13570,13571,13571, 0,13571,13571, 13571,13571,13571,13571,13571,13571,13571, 0,13571,13571, 0, 0, 0, 0, 0, 0, 0, 0, 0,13571, 13571,13571,13571,13571,13571,13571, 0, 0, 0, 0, 0,13571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13571, 13571,13571,13572,13572, 0,13572,13572,13572,13572,13572, 13572,13572,13572,13572, 0,13572,13572, 0, 0, 0, 0, 0, 0, 0, 0, 0,13572,13572,13572,13572, 13572,13572,13572,13572, 0, 0, 0, 0,13572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13572,13572,13572,13573, 13573, 0,13573,13573,13573,13573,13573,13573,13573,13573, 13573, 0,13573,13573, 0, 0, 0, 0, 0, 0, 0, 0, 0,13573,13573,13573,13573,13573,13573,13573, 0, 0, 0, 0, 0,13573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13573,13573,13573,13574,13574, 0,13574, 13574,13574,13574,13574,13574,13574,13574,13574, 0,13574, 13574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13574,13574,13574,13574,13574,13574,13574,13574, 0, 0, 0, 0,13574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13574,13574,13574,13575,13575, 0,13575,13575,13575,13575, 13575,13575,13575,13575,13575, 0,13575,13575, 0, 0, 0, 0, 0, 0, 0, 0, 0,13575,13575,13575, 13575,13575,13575,13575, 0, 0, 0, 0, 0,13575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13575, 0, 0, 0,13575,13575,13575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13575,13586,13586, 0,13586,13586,13586,13586,13586, 13586,13586,13586,13586, 0,13586,13586, 0, 0, 0, 0, 0, 0, 0, 0, 0,13586,13586,13586,13586, 13586,13586,13586, 0, 0, 0, 0, 0,13586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13586,13586,13586,13587, 13587, 0,13587,13587,13587,13587,13587,13587,13587,13587, 13587, 0,13587,13587, 0, 0, 0, 0, 0, 0, 0, 0, 0,13587,13587,13587,13587,13587,13587,13587, 13587, 0, 0, 0, 0,13587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13587,13587,13587,13601,13601, 0,13601, 13601,13601,13601,13601,13601,13601,13601,13601, 0,13601, 13601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13601,13601,13601,13601,13601,13601,13601, 0, 0, 0, 0, 0,13601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13601,13601,13601,13602,13602, 0,13602,13602,13602,13602, 13602,13602,13602,13602,13602, 0,13602,13602, 0, 0, 0, 0, 0, 0, 0, 0, 0,13602,13602,13602, 13602,13602,13602,13602,13602, 0, 0, 0, 0,13602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13602,13602,13602, 13621,13621, 0,13621,13621,13621,13621,13621,13621,13621, 13621,13621, 0,13621,13621, 0, 0, 0, 0, 0, 0, 0, 0, 0,13621,13621,13621,13621,13621,13621, 13621, 0, 0, 0, 0, 0,13621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13621,13621,13621,13621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13621,13635,13635, 0,13635,13635,13635,13635,13635,13635,13635,13635,13635, 0,13635,13635, 0, 0, 0, 0, 0, 0, 0, 0, 0,13635,13635,13635,13635,13635,13635,13635, 0, 0, 0, 0, 0,13635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13635,13635,13635,13636,13636, 0,13636,13636, 13636,13636,13636,13636,13636,13636,13636, 0,13636,13636, 0, 0, 0, 0, 0, 0, 0, 0, 0,13636, 13636,13636,13636,13636,13636,13636,13636, 0, 0, 0, 0,13636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13636, 13636,13636,13640,13640, 0,13640,13640,13640,13640,13640, 13640,13640,13640,13640, 0,13640,13640, 0, 0, 0, 0, 0, 0, 0, 0, 0,13640,13640,13640,13640, 13640,13640,13640, 0, 0, 0, 0, 0,13640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13640,13640,13640,13641, 13641, 0,13641,13641,13641,13641,13641,13641,13641,13641, 13641, 0,13641,13641, 0, 0, 0, 0, 0, 0, 0, 0, 0,13641,13641,13641,13641,13641,13641,13641, 13641, 0, 0, 0, 0,13641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13641,13641,13641,13655,13655, 0,13655, 13655,13655,13655,13655,13655,13655,13655,13655, 0,13655, 13655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13655,13655,13655,13655,13655,13655,13655, 0, 0, 0, 0, 0,13655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13655,13655,13655,13656,13656, 0,13656,13656,13656,13656, 13656,13656,13656,13656,13656, 0,13656,13656, 0, 0, 0, 0, 0, 0, 0, 0, 0,13656,13656,13656, 13656,13656,13656,13656,13656, 0, 0, 0, 0,13656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13656,13656,13656, 13670,13670, 0,13670,13670,13670,13670,13670,13670,13670, 13670,13670, 0,13670,13670, 0, 0, 0, 0, 0, 0, 0, 0, 0,13670,13670,13670,13670,13670,13670, 13670, 0, 0, 0, 0, 0,13670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13670,13670,13670,13671,13671, 0, 13671,13671,13671,13671,13671,13671,13671,13671,13671, 0, 13671,13671, 0, 0, 0, 0, 0, 0, 0, 0, 0,13671,13671,13671,13671,13671,13671,13671,13671, 0, 0, 0, 0,13671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13671,13671,13671,13691,13691, 0,13691,13691,13691, 13691,13691,13691,13691,13691,13691,13691,13691,13691, 0, 0, 0, 0, 0, 0, 0, 0, 0,13691,13691, 13691,13691,13691,13691,13691, 0, 0, 0, 0, 0, 13691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13691,13691, 13691,13691,13695,13695, 0,13695,13695,13695,13695,13695, 13695,13695,13695,13695, 0,13695,13695, 0, 0, 0, 0, 0, 0, 0, 0, 0,13695,13695,13695,13695, 13695,13695,13695, 0, 0, 0, 0, 0,13695, 0, 0,13695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13695,13695,13695,13695, 13715,13715, 0,13715,13715,13715,13715,13715,13715,13715, 13715,13715, 0,13715,13715, 0, 0, 0, 0, 0, 0, 0, 0, 0,13715,13715,13715,13715,13715,13715, 13715, 0, 0, 0, 0, 0,13715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13715,13715,13715,13716,13716, 0, 13716,13716,13716,13716,13716,13716,13716,13716,13716, 0, 13716,13716, 0, 0, 0, 0, 0, 0, 0, 0, 0,13716,13716,13716,13716,13716,13716,13716,13716, 0, 0, 0, 0,13716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13716,13716,13716,13720,13720, 0,13720,13720,13720, 13720,13720,13720,13720,13720,13720, 0,13720,13720, 0, 0, 0, 0, 0, 0, 0, 0, 0,13720,13720, 13720,13720,13720,13720,13720, 0, 0, 0, 0, 0, 13720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13720,13720, 13720,13721,13721, 0,13721,13721,13721,13721,13721,13721, 13721,13721,13721, 0,13721,13721, 0, 0, 0, 0, 0, 0, 0, 0, 0,13721,13721,13721,13721,13721, 13721,13721,13721, 0, 0, 0, 0,13721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13721,13721,13721,13725,13725, 0,13725,13725,13725,13725,13725,13725,13725,13725,13725, 0,13725,13725, 0, 0, 0, 0, 0, 0, 0, 0, 0,13725,13725,13725,13725,13725,13725,13725, 0, 0, 0, 0, 0,13725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13725,13725,13725,13726,13726, 0,13726,13726, 13726,13726,13726,13726,13726,13726,13726, 0,13726,13726, 0, 0, 0, 0, 0, 0, 0, 0, 0,13726, 13726,13726,13726,13726,13726,13726,13726, 0, 0, 0, 0,13726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13726, 13726,13726,13730,13730, 0,13730,13730,13730,13730,13730, 13730,13730,13730,13730, 0,13730,13730, 0, 0, 0, 0, 0, 0, 0, 0, 0,13730,13730,13730,13730, 13730,13730,13730, 0, 0, 0, 0, 0,13730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13730,13730,13730,13731, 13731, 0,13731,13731,13731,13731,13731,13731,13731,13731, 13731, 0,13731,13731, 0, 0, 0, 0, 0, 0, 0, 0, 0,13731,13731,13731,13731,13731,13731,13731, 13731, 0, 0, 0, 0,13731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13731,13731,13731,13735,13735, 0,13735, 13735,13735,13735,13735,13735,13735,13735,13735, 0,13735, 13735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13735,13735,13735,13735,13735,13735,13735, 0, 0, 0, 0, 0,13735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13735,13735,13735,13736,13736, 0,13736,13736,13736,13736, 13736,13736,13736,13736,13736, 0,13736,13736, 0, 0, 0, 0, 0, 0, 0, 0, 0,13736,13736,13736, 13736,13736,13736,13736,13736, 0, 0, 0, 0,13736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13736,13736,13736, 13739,13739, 0,13739,13739,13739,13739,13739,13739,13739, 13739,13739, 0,13739,13739, 0, 0, 0, 0, 0, 0, 0, 0, 0,13739,13739,13739,13739,13739,13739, 13739, 0, 0, 0, 0, 0,13739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13739,13739,13739,13740,13740, 0, 13740,13740,13740,13740,13740,13740,13740,13740,13740, 0, 13740,13740, 0, 0, 0, 0, 0, 0, 0, 0, 0,13740,13740,13740,13740,13740,13740,13740,13740, 0, 0, 0, 0,13740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13740,13740,13740,13742,13742, 0,13742,13742,13742, 13742,13742,13742,13742,13742,13742, 0,13742,13742, 0, 0, 0, 0, 0, 0, 0, 0, 0,13742,13742, 13742,13742,13742,13742,13742, 0, 0, 0, 0, 0, 13742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13742, 0, 0, 0, 0, 0, 0,13742,13742, 13742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13742, 13743,13743, 0,13743,13743,13743,13743,13743,13743,13743, 13743,13743, 0,13743,13743, 0, 0, 0, 0, 0, 0, 0, 0, 0,13743,13743,13743,13743,13743,13743, 13743, 0, 0, 0, 0, 0,13743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13743,13743,13743,13744,13744, 0, 13744,13744,13744,13744,13744,13744,13744,13744,13744, 0, 13744,13744, 0, 0, 0, 0, 0, 0, 0, 0, 0,13744,13744,13744,13744,13744,13744,13744,13744, 0, 0, 0, 0,13744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13744,13744,13744,13745,13745, 0,13745,13745,13745, 13745,13745,13745,13745,13745,13745, 0,13745,13745, 0, 0, 0, 0, 0, 0, 0, 0, 0,13745,13745, 13745,13745,13745,13745,13745, 0, 0, 0, 0, 0, 13745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13745,13745, 13745,13746,13746, 0,13746,13746,13746,13746,13746,13746, 13746,13746,13746, 0,13746,13746, 0, 0, 0, 0, 0, 0, 0, 0, 0,13746,13746,13746,13746,13746, 13746,13746,13746, 0, 0, 0, 0,13746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13746,13746,13746,13750,13750, 0,13750,13750,13750,13750,13750,13750,13750,13750,13750, 0,13750,13750, 0, 0, 0, 0, 0, 0, 0, 0, 0,13750,13750,13750,13750,13750,13750,13750, 0, 0, 0, 0, 0,13750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13750,13750,13750,13751,13751, 0,13751,13751, 13751,13751,13751,13751,13751,13751,13751, 0,13751,13751, 0, 0, 0, 0, 0, 0, 0, 0, 0,13751, 13751,13751,13751,13751,13751,13751,13751, 0, 0, 0, 0,13751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13751, 13751,13751,13754,13754, 0,13754,13754,13754,13754,13754, 13754,13754,13754,13754, 0,13754,13754, 0, 0, 0, 0, 0, 0, 0, 0, 0,13754,13754,13754,13754, 13754,13754,13754, 0, 0, 0, 0, 0,13754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13754,13754,13754,13755, 13755, 0,13755,13755,13755,13755,13755,13755,13755,13755, 13755, 0,13755,13755, 0, 0, 0, 0, 0, 0, 0, 0, 0,13755,13755,13755,13755,13755,13755,13755, 13755, 0, 0, 0, 0,13755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13755,13755,13755,13757,13757, 0,13757, 13757,13757,13757,13757,13757,13757,13757,13757, 0,13757, 13757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13757,13757,13757,13757,13757,13757,13757, 0, 0, 0, 0, 0,13757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13757, 0, 0, 0, 0, 0, 0, 13757,13757,13757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13757,13758,13758, 0,13758,13758,13758,13758,13758, 13758,13758,13758,13758, 0,13758,13758, 0, 0, 0, 0, 0, 0, 0, 0, 0,13758,13758,13758,13758, 13758,13758,13758, 0, 0, 0, 0, 0,13758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13758,13758,13758,13759, 13759, 0,13759,13759,13759,13759,13759,13759,13759,13759, 13759, 0,13759,13759, 0, 0, 0, 0, 0, 0, 0, 0, 0,13759,13759,13759,13759,13759,13759,13759, 13759, 0, 0, 0, 0,13759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13759,13759,13759,13763,13763, 0,13763, 13763,13763,13763,13763,13763,13763,13763,13763, 0,13763, 13763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13763,13763,13763,13763,13763,13763,13763, 0, 0, 0, 0, 0,13763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13763,13763,13763,13763,13764,13764, 0,13764,13764,13764, 13764,13764,13764,13764,13764,13764, 0,13764,13764, 0, 0, 0, 0, 0, 0, 0, 0, 0,13764,13764, 13764,13764,13764,13764,13764,13764, 0, 0, 0, 0, 13764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13764,13764, 13764,13764,13773,13773, 0,13773,13773,13773,13773,13773, 13773,13773,13773,13773,13773,13773,13773, 0, 0, 0, 0, 0, 0, 0, 0, 0,13773,13773,13773,13773, 13773,13773,13773, 0, 0, 0, 0, 0,13773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13773,13773,13773,13773, 13788,13788, 0,13788,13788,13788,13788,13788,13788,13788, 13788,13788, 0,13788,13788, 0, 0, 0, 0, 0, 0, 0, 0, 0,13788,13788,13788,13788,13788,13788, 13788, 0, 0, 0, 0, 0,13788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13788,13788,13788,13789,13789, 0, 13789,13789,13789,13789,13789,13789,13789,13789,13789, 0, 13789,13789, 0, 0, 0, 0, 0, 0, 0, 0, 0,13789,13789,13789,13789,13789,13789,13789,13789, 0, 0, 0, 0,13789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13789,13789,13789,13793,13793, 0,13793,13793,13793, 13793,13793,13793,13793,13793,13793, 0,13793,13793, 0, 0, 0, 0, 0, 0, 0, 0, 0,13793,13793, 13793,13793,13793,13793,13793, 0, 0, 0, 0, 0, 13793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13793,13793, 13793,13794,13794, 0,13794,13794,13794,13794,13794,13794, 13794,13794,13794, 0,13794,13794, 0, 0, 0, 0, 0, 0, 0, 0, 0,13794,13794,13794,13794,13794, 13794,13794,13794, 0, 0, 0, 0,13794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13794,13794,13794,13798,13798, 0,13798,13798,13798,13798,13798,13798,13798,13798,13798, 0,13798,13798, 0, 0, 0, 0, 0, 0, 0, 0, 0,13798,13798,13798,13798,13798,13798,13798, 0, 0, 0, 0, 0,13798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13798,13798,13798,13799,13799, 0,13799,13799, 13799,13799,13799,13799,13799,13799,13799, 0,13799,13799, 0, 0, 0, 0, 0, 0, 0, 0, 0,13799, 13799,13799,13799,13799,13799,13799,13799, 0, 0, 0, 0,13799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13799, 13799,13799,13803,13803, 0,13803,13803,13803,13803,13803, 13803,13803,13803,13803, 0,13803,13803, 0, 0, 0, 0, 0, 0, 0, 0, 0,13803,13803,13803,13803, 13803,13803,13803, 0, 0, 0, 0, 0,13803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13803,13803,13803,13804, 13804, 0,13804,13804,13804,13804,13804,13804,13804,13804, 13804, 0,13804,13804, 0, 0, 0, 0, 0, 0, 0, 0, 0,13804,13804,13804,13804,13804,13804,13804, 13804, 0, 0, 0, 0,13804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13804,13804,13804,13807,13807, 0,13807, 13807,13807,13807,13807,13807,13807,13807,13807, 0,13807, 13807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13807,13807,13807,13807,13807,13807,13807, 0, 0, 0, 0, 0,13807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13807,13807,13807,13808,13808, 0,13808,13808,13808,13808, 13808,13808,13808,13808,13808, 0,13808,13808, 0, 0, 0, 0, 0, 0, 0, 0, 0,13808,13808,13808, 13808,13808,13808,13808,13808, 0, 0, 0, 0,13808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13808,13808,13808, 13810,13810, 0,13810,13810,13810,13810,13810,13810,13810, 13810,13810, 0,13810,13810, 0, 0, 0, 0, 0, 0, 0, 0, 0,13810,13810,13810,13810,13810,13810, 13810, 0, 0, 0, 0, 0,13810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13810,13810,13810,13811,13811, 0, 13811,13811,13811,13811,13811,13811,13811,13811,13811, 0, 13811,13811, 0, 0, 0, 0, 0, 0, 0, 0, 0,13811,13811,13811,13811,13811,13811,13811,13811, 0, 0, 0, 0,13811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13811,13811,13811,13812,13812, 0,13812,13812,13812, 13812,13812,13812,13812,13812,13812, 0,13812,13812, 0, 0, 0, 0, 0, 0, 0, 0, 0,13812,13812, 13812,13812,13812,13812,13812, 0, 0, 0, 0, 0, 13812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13812, 0, 0, 0,13812,13812, 13812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13812,13813,13813, 0,13813,13813,13813,13813, 13813,13813,13813,13813,13813, 0,13813,13813, 0, 0, 0, 0, 0, 0, 0, 0, 0,13813,13813,13813, 13813,13813,13813,13813, 0, 0, 0, 0, 0,13813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13813,13813,13813, 13814,13814, 0,13814,13814,13814,13814,13814,13814,13814, 13814,13814, 0,13814,13814,13814,13814,13814,13814,13814, 13814,13814,13814,13814,13814,13814,13814,13814,13814,13814, 13814, 0, 0, 0, 0, 0,13814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13814,13814,13814,13816,13816, 0, 13816,13816,13816,13816,13816,13816,13816,13816,13816, 0, 13816,13816, 0, 0, 0, 0, 0, 0, 0, 0, 0,13816,13816,13816,13816,13816,13816,13816, 0, 0, 0, 0, 0,13816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13816,13816,13816,13817,13817, 0,13817,13817,13817, 13817,13817,13817,13817,13817,13817, 0,13817,13817, 0, 0, 0, 0, 0, 0, 0, 0, 0,13817,13817, 13817,13817,13817,13817,13817,13817, 0, 0, 0, 0, 13817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13817,13817, 13817,13818,13818, 0,13818,13818,13818,13818,13818,13818, 13818,13818,13818, 0,13818,13818, 0, 0, 0, 0, 0, 0, 0, 0, 0,13818,13818,13818,13818,13818, 13818,13818, 0, 0, 0, 0, 0,13818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13818, 0, 0, 0,13818,13818,13818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13818, 13829,13829, 0,13829,13829,13829,13829,13829,13829,13829, 13829,13829, 0,13829,13829, 0, 0, 0, 0, 0, 0, 0, 0, 0,13829,13829,13829,13829,13829,13829, 13829, 0, 0, 0, 0, 0,13829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13829,13829,13829,13830,13830, 0, 13830,13830,13830,13830,13830,13830,13830,13830,13830, 0, 13830,13830, 0, 0, 0, 0, 0, 0, 0, 0, 0,13830,13830,13830,13830,13830,13830,13830,13830, 0, 0, 0, 0,13830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13830,13830,13830,13844,13844, 0,13844,13844,13844, 13844,13844,13844,13844,13844,13844, 0,13844,13844, 0, 0, 0, 0, 0, 0, 0, 0, 0,13844,13844, 13844,13844,13844,13844,13844, 0, 0, 0, 0, 0, 13844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13844,13844, 13844,13845,13845, 0,13845,13845,13845,13845,13845,13845, 13845,13845,13845, 0,13845,13845, 0, 0, 0, 0, 0, 0, 0, 0, 0,13845,13845,13845,13845,13845, 13845,13845,13845, 0, 0, 0, 0,13845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13845,13845,13845,13901,13901, 0,13901,13901,13901,13901,13901,13901,13901, 0,13901, 13901,13901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13901,13901,13901,13901,13901,13901,13901, 0, 0, 0, 0, 0,13901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13901,13901,13901,13901,13902,13902, 0,13902, 13902,13902,13902,13902,13902,13902, 0,13902,13902,13902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13902,13902,13902,13902,13902,13902,13902,13902, 0, 0, 0, 0,13902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13902,13902,13902,13902,13906,13906,13906,13906,13906,13906, 13906,13906,13906, 0, 0, 0, 0, 0, 0, 0, 13906,13906,13906,13906,13906,13906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13906,13906,13906, 13906,13906,13906,13908,13908,13908,13908,13908,13908,13908, 13908,13908,13908, 0, 0, 0, 0, 0, 0,13908, 13908,13908,13908,13908,13908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13908,13908,13908,13908, 13908,13908,13911,13911,13911,13911,13911,13911,13911,13911, 13911,13911, 0, 0, 0, 0, 0, 0,13911,13911, 13911,13911,13911,13911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13911,13911,13911,13911,13911, 13911,13912,13912,13912,13912,13912,13912,13912,13912,13912, 0, 0, 0, 0, 0, 0,13912,13912,13912,13912, 13912,13912,13912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13912,13912,13912,13912,13912,13912, 13917,13917,13917,13917,13917,13917,13917,13917,13917,13917, 0, 0, 0, 0, 0, 0,13917,13917,13917,13917, 13917,13917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13917,13917,13917,13917,13917,13917,13918, 13918,13918,13918,13918,13918,13918,13918,13918, 0, 0, 0, 0, 0, 0, 0,13918,13918,13918,13918,13918, 13918, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13918,13918,13918,13918,13918,13918,13927,13927, 13927,13927,13927,13927,13927,13927,13927,13927, 0, 0, 0, 0, 0, 0,13927,13927,13927,13927,13927,13927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13927,13927,13927,13927,13927,13927,13928,13928,13928, 13928,13928,13928,13928,13928,13928, 0, 0, 0, 0, 0, 0, 0,13928,13928,13928,13928,13928,13928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13928,13928,13928,13928,13928,13928,13939,13939,13939,13939, 13939,13939,13939,13939,13939,13939, 0, 0, 0, 0, 0, 0,13939,13939,13939,13939,13939,13939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13939, 13939,13939,13939,13939,13939,13940,13940,13940,13940,13940, 13940,13940,13940,13940, 0, 0, 0, 0, 0, 0, 0,13940,13940,13940,13940,13940,13940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13940,13940, 13940,13940,13940,13940,13947, 0,13947,13947,13947,13947, 13947,13947,13947,13947,13947,13947, 0, 0, 0, 0, 0, 0,13947,13947,13947,13947,13947,13947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13947, 13947,13947,13947,13947,13947,13955,13955,13955,13955,13955, 13955,13955,13955,13955,13955, 0, 0, 0, 0, 0, 0,13955,13955,13955,13955,13955,13955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13955,13955, 13955,13955,13955,13955,13956,13956,13956,13956,13956,13956, 13956,13956,13956, 0, 0, 0, 0, 0, 0, 0, 13956,13956,13956,13956,13956,13956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13956,13956,13956, 13956,13956,13956,13963,13963,13963,13963,13963,13963,13963, 13963,13963,13963, 0, 0, 0, 0, 0, 0,13963, 13963,13963,13963,13963,13963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13963,13963,13963,13963, 13963,13963,13967,13967,13967,13967,13967,13967,13967,13967, 13967,13967, 0, 0, 0, 0, 0, 0,13967,13967, 13967,13967,13967,13967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13967,13967,13967,13967,13967, 13967,13968,13968,13968,13968,13968,13968,13968,13968,13968, 13968, 0, 0, 0, 0, 0, 0,13968,13968,13968, 13968,13968,13968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13968,13968,13968,13968,13968,13968, 13971,13971,13971,13971,13971,13971,13971,13971,13971,13971, 0, 0, 0, 0, 0, 0,13971,13971,13971,13971, 13971,13971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13971,13971,13971,13971,13971,13971,13978, 13978,13978,13978,13978,13978,13978,13978,13978, 0, 0, 0, 0, 0, 0, 0,13978,13978,13978,13978,13978, 13978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13978,13978,13978,13978,13978,13978,13979,13979, 13979,13979,13979,13979,13979,13979,13979,13979, 0, 0, 0, 0, 0, 0,13979,13979,13979,13979,13979,13979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13979,13979,13979,13979,13979,13979,13998,13998,13998, 13998,13998,13998,13998,13998,13998,13998, 0, 0, 0, 0, 0, 0,13998,13998,13998,13998,13998,13998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13998,13998,13998,13998,13998,13998,13999,13999,13999,13999, 13999,13999,13999,13999,13999,13999, 0, 0, 0, 0, 0, 0,13999,13999,13999,13999,13999,13999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13999, 13999,13999,13999,13999,13999,14001,14001,14001,14001,14001, 14001,14001,14001,14001, 0, 0, 0, 0, 0, 0, 0,14001,14001,14001,14001,14001,14001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14001, 0, 0, 0,14001,14001, 14001,14001,14001,14001,14004,14004,14004,14004,14004,14004, 14004,14004,14004,14004, 0, 0, 0, 0, 0, 0, 14004,14004,14004,14004,14004,14004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14004,14004,14004, 14004,14004,14004,14006,14006,14006,14006,14006,14006,14006, 14006,14006, 0, 0, 0, 0, 0, 0, 0,14006, 14006,14006,14006,14006,14006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14006,14006,14006,14006, 14006,14006,14011,14011,14011,14011,14011,14011,14011,14011, 14011,14011, 0, 0, 0, 0, 0, 0,14011,14011, 14011,14011,14011,14011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14011,14011,14011,14011,14011, 14011,14013,14013,14013,14013,14013,14013,14013,14013,14013, 0, 0, 0, 0, 0, 0, 0,14013,14013,14013, 14013,14013,14013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14013,14013,14013,14013,14013,14013, 14016,14016,14016,14016,14016,14016,14016,14016,14016, 0, 0, 0, 0, 0, 0, 0,14016,14016,14016,14016, 14016,14016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14016,14016,14016,14016,14016,14016,14017, 14017,14017,14017,14017,14017,14017,14017,14017,14017, 0, 0, 0, 0, 0, 0,14017,14017,14017,14017,14017, 14017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14017,14017,14017,14017,14017,14017,14019,14019, 14019,14019,14019,14019,14019,14019,14019, 0, 0, 0, 0, 0, 0, 0,14019,14019,14019,14019,14019,14019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14019,14019,14019,14019,14019,14019,14022,14022,14022, 14022,14022,14022,14022,14022,14022, 0, 0, 0, 0, 0, 0, 0,14022,14022,14022,14022,14022,14022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14022,14022,14022,14022,14022,14022,14023, 0,14023,14023, 14023,14023,14023,14023,14023,14023,14023,14023, 0, 0, 0, 0, 0, 0,14023,14023,14023,14023,14023,14023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14023,14023,14023,14023,14023,14023,14026,14026,14026, 14026,14026,14026,14026,14026,14026,14026, 0, 0, 0, 0, 0, 0,14026,14026,14026,14026,14026,14026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14026,14026,14026,14026,14026,14026,14028,14028,14028,14028, 14028,14028,14028,14028,14028, 0, 0, 0, 0, 0, 0, 0,14028,14028,14028,14028,14028,14028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14028, 14028,14028,14028,14028,14028,14031,14031,14031,14031,14031, 14031,14031,14031,14031, 0, 0, 0, 0, 0, 0, 0,14031,14031,14031,14031,14031,14031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14031,14031, 14031,14031,14031,14031,14032,14032,14032,14032,14032,14032, 14032,14032,14032,14032, 0, 0, 0, 0, 0, 0, 14032,14032,14032,14032,14032,14032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14032,14032,14032, 14032,14032,14032,14035,14035,14035,14035,14035,14035,14035, 14035,14035,14035, 0, 0, 0, 0, 0, 0,14035, 14035,14035,14035,14035,14035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14035,14035,14035,14035, 14035,14035,14037,14037,14037,14037,14037,14037,14037,14037, 14037, 0, 0, 0, 0, 0, 0, 0,14037,14037, 14037,14037,14037,14037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14037,14037,14037,14037,14037, 14037,14040,14040,14040,14040,14040,14040,14040,14040,14040, 0, 0, 0, 0, 0, 0, 0,14040,14040,14040, 14040,14040,14040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14040,14040,14040,14040,14040,14040, 14041,14041,14041,14041,14041,14041,14041,14041,14041,14041, 0, 0, 0, 0, 0, 0,14041,14041,14041,14041, 14041,14041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14041,14041,14041,14041,14041,14041,14047, 14047,14047,14047,14047,14047,14047,14047,14047,14047, 0, 0, 0, 0, 0, 0,14047,14047,14047,14047,14047, 14047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14047,14047,14047,14047,14047,14047,14048,14048, 14048,14048,14048,14048,14048,14048,14048, 0, 0, 0, 0, 0, 0, 0,14048,14048,14048,14048,14048,14048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14048,14048,14048,14048,14048,14048,14053,14053,14053, 14053,14053,14053,14053,14053,14053,14053, 0, 0, 0, 0, 0, 0,14053,14053,14053,14053,14053,14053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14053,14053,14053,14053,14053,14053,14057,14057,14057,14057, 14057,14057,14057,14057,14057,14057, 0, 0, 0, 0, 0, 0,14057,14057,14057,14057,14057,14057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14057, 14057,14057,14057,14057,14057,14084,14084, 0,14084,14084, 14084,14084,14084,14084,14084,14084,14084,14084,14084,14084, 14084,14084,14084,14084,14084,14084,14084,14084,14084,14084, 14084,14084,14084,14084,14084,14084,14084,14084,14084,14084, 14084,14084,14084,14084,14084,14084,14084,14084,14084,14084, 14084,14084,14084,14084,14084,14084,14084,14084,14084,14084, 14084,14084,14084,14084,14084,14084,14084,14084,14084,14084, 14084,14084,14084,14084,14084,14084,14084,14084,14084,14084, 14084,14084,14084,14084,14084,14084,14084,14084,14125, 0, 0, 0, 0, 0, 0, 0, 0, 0,14125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14125, 0, 0, 0, 0, 0, 0,14125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14125, 0,14125, 0,14125, 0, 0,14125, 14125, 0, 0, 0,14125, 0, 0,14125, 0,14125, 0,14125, 0,14125,14125,14125,14126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14126, 0, 14126, 0, 0, 0,14126,14126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14126, 0,14126, 0,14126, 0, 0,14126,14126, 0, 0, 0,14126, 0, 0,14126, 0,14126, 0,14126, 0,14126,14126,14126,14131, 0,14131, 0, 0, 0, 0, 0, 0,14131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14131, 0, 0, 0, 0, 0, 0,14131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14131, 0,14131, 0,14131, 0, 0,14131,14131, 0, 0, 0,14131, 0, 0,14131, 0,14131, 0,14131, 0,14131,14131,14131,14133, 0,14133, 0, 0, 0, 0, 0, 0,14133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14133, 0, 0, 0, 0, 0, 0,14133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14133, 0,14133, 0,14133, 0, 0,14133,14133, 0, 0, 0,14133,14133, 0,14133, 0,14133, 0,14133, 0,14133,14133,14133,14162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14162, 0, 0, 0, 0, 0, 0,14162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14162, 0, 14162, 0,14162, 0, 0,14162,14162, 0, 0, 0, 14162, 0, 0,14162, 0,14162, 0,14162, 0,14162, 14162,14162,14163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14163, 0, 0, 0, 0, 0, 0,14163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14163, 0,14163, 0, 14163, 0, 0,14163,14163, 0, 0, 0,14163, 0, 0,14163, 0,14163, 0,14163, 0,14163,14163,14163, 14167, 0,14167, 0, 0, 0, 0, 0, 0,14167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14167, 0, 0, 0, 0, 0, 0,14167, 0, 0, 0, 0, 0,14167, 0, 0, 0, 0, 0, 0, 0, 0,14167, 0,14167, 0, 14167, 0, 0,14167,14167, 0, 0, 0,14167, 0, 0,14167, 0,14167, 0,14167, 0,14167,14167,14167, 14168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14168, 0,14168, 0, 0, 0, 0,14168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14168, 0,14168, 0,14168, 0, 0,14168,14168, 0, 0, 0,14168, 0, 0,14168, 0,14168, 0,14168, 0,14168,14168,14168,14169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14169, 0, 0, 0, 0, 14169, 0, 0, 0, 0, 0, 0,14169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14169, 0,14169, 0,14169, 0, 0,14169, 14169, 0, 0, 0,14169, 0, 0,14169, 0,14169, 0,14169, 0,14169,14169,14169,14170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14170, 0, 0, 0, 0, 0, 0,14170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14170, 0,14170, 0,14170, 0, 0,14170,14170, 0, 0, 0,14170, 0, 0,14170, 0,14170, 0,14170, 0,14170,14170,14170,14170,14171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14171, 0, 0, 0, 0, 0, 0,14171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14171, 0,14171,14171,14171, 0, 0,14171,14171, 0, 0, 0,14171, 0, 0,14171, 0,14171, 0,14171, 0, 14171,14171,14171,14172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14172, 0, 0, 0, 0, 0, 0,14172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14172, 0,14172, 0,14172, 0,14172,14172,14172, 0, 0, 0,14172, 0, 0,14172, 0,14172, 0,14172, 0,14172,14172, 14172,14173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14173, 0, 0, 0, 0, 0, 0, 14173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14173, 0,14173, 0,14173, 0, 0,14173,14173, 0, 0, 0,14173, 0, 0, 14173, 0,14173, 0,14173, 0,14173,14173,14173,14174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14174, 0, 0, 0, 0, 0, 0,14174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14174, 0,14174, 0,14174, 0, 0, 14174,14174, 0, 0, 0,14174, 0,14174,14174, 0, 14174, 0,14174, 0,14174,14174,14174,14175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14175, 0, 0, 0, 0, 0, 0,14175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14175, 0,14175, 0,14175, 0, 0,14175,14175, 0, 0, 0,14175,14175, 0,14175, 0,14175, 0, 14175, 0,14175,14175,14175,14176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14176, 0, 0, 0, 0, 0, 0,14176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14176, 0,14176, 0,14176, 0, 0,14176,14176, 0, 0, 0,14176, 0, 0,14176, 0,14176, 0,14176, 0, 14176,14176,14176,14176,14177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14177, 0, 0, 0, 0, 0, 0,14177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14177, 0, 14177, 0,14177, 0, 0,14177,14177, 0, 0, 0, 14177, 0, 0,14177, 0,14177, 0,14177, 0,14177, 14177,14177,14178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14178, 0, 0, 0, 0, 0, 0,14178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14178, 0,14178, 0, 14178, 0, 0,14178,14178, 0, 0, 0,14178, 0, 14178,14178, 0,14178, 0,14178, 0,14178,14178,14178, 14179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14179, 0, 0, 0, 0, 0, 0,14179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14179, 0,14179, 0,14179, 0, 0,14179,14179, 0, 0, 0,14179, 0, 0,14179, 0,14179, 0,14179, 0,14179,14179,14179,14179,14180, 0, 0, 0, 0, 0, 0, 0,14180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14180, 0, 0, 0, 0, 0, 0,14180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14180, 0,14180, 0,14180, 0, 0, 14180,14180, 0, 0, 0,14180, 0, 0,14180, 0, 14180, 0,14180, 0,14180,14180,14180,14181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14181, 0, 0, 0, 0, 0, 0,14181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14181, 0,14181, 0,14181, 0, 0,14181,14181, 0, 0, 0,14181, 0, 0,14181, 0,14181, 0, 14181, 0,14181,14181,14181,14182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14182, 0, 0, 0, 0, 0, 0,14182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14182, 0,14182, 0,14182, 0, 0,14182,14182, 0, 0, 0,14182, 0, 0,14182, 0,14182, 0,14182, 0, 14182,14182,14182,14183, 0,14183, 0, 0, 0, 0, 0, 0,14183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14183, 0, 0, 14183, 0, 0, 0,14183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14183, 0,14183, 0,14183, 0, 0,14183,14183, 0, 0, 0,14183, 0, 0,14183, 0,14183, 0,14183, 0, 14183,14183,14183,14200, 0,14200, 0, 0, 0, 0, 0, 0,14200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14200, 0, 0, 0, 0, 0, 0,14200, 0, 0, 0, 0, 0, 14200, 0, 0, 0, 0, 0, 0, 0, 0,14200, 0,14200, 0,14200, 0, 0,14200,14200, 0, 0, 0,14200, 0, 0,14200, 0,14200, 0,14200, 0, 14200,14200,14200,14201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14201, 0,14201, 0, 0, 0, 0,14201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14201, 0,14201, 0,14201, 0, 0,14201,14201, 0, 0, 0,14201, 0, 0,14201, 0,14201, 0,14201, 0,14201,14201, 14201,14202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14202, 0, 0, 0, 0,14202, 0, 0, 0, 0, 0, 0, 14202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14202, 0,14202, 0,14202, 0, 0,14202,14202, 0, 0, 0,14202, 0, 0, 14202, 0,14202, 0,14202, 0,14202,14202,14202,14203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14203, 0, 0, 0, 0, 0, 0,14203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14203, 0,14203, 0,14203, 0, 0, 14203,14203, 0, 0, 0,14203, 0, 0,14203, 0, 14203, 0,14203, 0,14203,14203,14203,14203,14204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14204, 0, 0, 0, 0, 0, 0,14204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14204, 0,14204,14204,14204, 0, 0,14204, 14204, 0, 0, 0,14204, 0, 0,14204, 0,14204, 0,14204, 0,14204,14204,14204,14205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14205, 0, 0, 0, 0, 0, 0,14205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14205, 0,14205, 0,14205, 0,14205,14205,14205, 0, 0, 0,14205, 0, 0,14205, 0,14205, 0,14205, 0,14205,14205,14205,14206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14206, 0, 0, 0, 0, 0, 0,14206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14206, 0, 14206, 0,14206, 0, 0,14206,14206, 0, 0, 0, 14206, 0, 0,14206, 0,14206, 0,14206, 0,14206, 14206,14206,14207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14207, 0, 0, 0, 0, 0, 0,14207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14207, 0,14207, 0, 14207, 0, 0,14207,14207, 0, 0, 0,14207, 0, 14207,14207, 0,14207, 0,14207, 0,14207,14207,14207, 14208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14208, 0, 0, 0, 0, 0, 0,14208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14208, 0,14208, 0,14208, 0, 0,14208,14208, 0, 0, 0,14208,14208, 0,14208, 0,14208, 0,14208, 0,14208,14208,14208,14209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14209, 0, 0, 0, 0, 0, 0,14209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14209, 0,14209, 0,14209, 0, 0,14209, 14209, 0, 0, 0,14209, 0, 0,14209, 0,14209, 0,14209, 0,14209,14209,14209,14209,14210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14210, 0, 0, 0, 0, 0, 0,14210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14210, 0,14210, 0,14210, 0, 0,14210,14210, 0, 0, 0,14210, 0, 0,14210, 0,14210, 0, 14210, 0,14210,14210,14210,14211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14211, 0, 0, 0, 0, 0, 0,14211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14211, 0,14211, 0,14211, 0, 0,14211,14211, 0, 0, 0,14211, 0,14211,14211, 0,14211, 0,14211, 0, 14211,14211,14211,14212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14212, 0, 0, 0, 0, 0, 0,14212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14212, 0,14212, 0,14212, 0, 0,14212,14212, 0, 0, 0,14212, 0, 0,14212, 0,14212, 0,14212, 0,14212,14212, 14212,14212,14213, 0, 0, 0, 0, 0, 0, 0, 14213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14213, 0, 0, 0, 0, 0, 0,14213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14213, 0,14213, 0, 14213, 0, 0,14213,14213, 0, 0, 0,14213, 0, 0,14213, 0,14213, 0,14213, 0,14213,14213,14213, 14214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14214, 0, 0, 0, 0, 0, 0,14214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14214, 0,14214, 0,14214, 0, 0,14214,14214, 0, 0, 0,14214, 0, 0,14214, 0,14214, 0,14214, 0,14214,14214,14214,14215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14215, 0, 0, 0, 0, 0, 0,14215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14215, 0,14215, 0,14215, 0, 0,14215, 14215, 0, 0, 0,14215, 0, 0,14215, 0,14215, 0,14215, 0,14215,14215,14215,14216, 0,14216, 0, 0, 0, 0, 0, 0,14216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14216, 0, 0,14216, 0, 0, 0,14216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14216, 0,14216, 0,14216, 0, 0,14216, 14216, 0, 0, 0,14216, 0, 0,14216, 0,14216, 0,14216, 0,14216,14216,14216,14233, 0,14233, 0, 0, 0, 0, 0, 0,14233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14233, 0, 0, 0, 0, 0, 0,14233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14233, 0,14233, 0,14233, 0, 0,14233, 14233, 0, 0, 0,14233, 0, 0,14233, 0,14233, 0,14233, 0,14233,14233,14233,14234, 0,14234, 0, 0, 0, 0, 0, 0,14234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14234, 0, 0, 0, 0, 0, 0,14234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14234, 0,14234, 0,14234, 0, 0,14234, 14234, 0, 0, 0,14234,14234,14234,14234, 0,14234, 0,14234, 0,14234,14234,14234,14235, 0, 0, 0, 0, 0, 0, 0, 0, 0,14235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14235, 0, 0, 0, 0, 0, 0,14235, 0, 0,14235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14235, 0,14235, 0,14235, 0, 0,14235,14235, 0, 0, 0,14235, 0, 0,14235, 0,14235, 0,14235, 0,14235,14235,14235,14236, 0, 0, 0, 0, 0, 0, 0, 0, 0,14236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14236, 0, 0, 0, 0, 0, 0,14236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14236, 0, 14236, 0,14236, 0, 0,14236,14236, 0, 0, 0, 14236, 0, 0,14236, 0,14236, 0,14236, 0,14236, 14236,14236,14237, 0, 0, 0, 0, 0, 0, 0, 0, 0,14237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14237, 0, 0, 0, 0, 0, 0,14237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14237, 0,14237, 0, 14237, 0, 0,14237,14237, 0, 0, 0,14237, 0, 14237,14237, 0,14237, 0,14237, 0,14237,14237,14237, 14246, 0,14246, 0, 0, 0, 0, 0, 0,14246, 0, 0,14246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14246, 0, 0, 0, 0, 0, 0,14246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14246, 0,14246, 0, 14246, 0, 0,14246,14246, 0, 0, 0,14246, 0, 0,14246, 0,14246, 0,14246, 0,14246,14246,14246, 14248, 0,14248, 0, 0, 0, 0, 0, 0,14248, 0, 0,14248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14248, 0, 0, 0, 0, 0, 0,14248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14248, 0,14248, 0, 14248, 0, 0,14248,14248, 0, 0, 0,14248, 0, 0,14248, 0,14248, 0,14248, 0,14248,14248,14248, 14274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14274, 0, 0, 0, 0, 0, 0,14274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14274, 0,14274, 0,14274, 0, 0,14274,14274, 0, 0, 0,14274, 0,14274,14274, 0,14274, 0,14274, 0,14274,14274,14274,14275, 0, 0, 0, 0, 0, 0, 0, 0, 0,14275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14275, 0, 0, 0, 0, 0, 0,14275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14275, 0,14275, 0,14275, 0, 0,14275, 14275, 0, 0, 0,14275, 0, 0,14275, 0,14275, 0,14275,14275,14275,14275,14275,14276,14276, 0, 0, 0, 0, 0, 0, 0,14276,14276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14276, 0, 0, 0, 0, 0, 0,14276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14276, 0,14276, 0,14276, 0, 0,14276,14276, 0, 0, 0,14276, 0, 0,14276, 0,14276, 0,14276, 0,14276,14276,14276,14277, 0, 0, 0, 0, 0, 0, 0, 0, 0,14277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14277, 0, 0, 0, 0, 0, 0,14277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14277, 0, 14277, 0,14277, 0, 0,14277,14277, 0, 0, 0, 14277, 0, 0,14277, 0,14277, 0,14277, 0,14277, 14277,14277,14278, 0, 0, 0, 0, 0, 0, 0, 0, 0,14278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14278, 0, 0, 0, 0, 0, 0,14278, 0, 0, 0, 0, 0, 0,14278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14278, 0,14278, 0, 14278, 0, 0,14278,14278, 0, 0, 0,14278, 0, 0,14278, 0,14278, 0,14278, 0,14278,14278,14278, 14281, 0,14281, 0, 0, 0, 0, 0, 0,14281, 0, 0,14281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14281, 0, 0, 0, 0, 0, 0,14281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14281, 0,14281,14281, 14281, 0, 0,14281,14281, 0, 0, 0,14281, 0, 0,14281, 0,14281, 0,14281, 0,14281,14281,14281, 14282, 0,14282, 0, 0, 0, 0, 0, 0,14282, 0, 0,14282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14282, 0, 0, 0, 0, 0, 0,14282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14282, 0,14282,14282, 14282, 0, 0,14282,14282, 0, 0, 0,14282, 0, 0,14282, 0,14282, 0,14282, 0,14282,14282,14282, 14313, 0,14313, 0, 0, 0, 0, 0, 0,14313, 0, 0,14313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14313, 0, 0, 0, 0, 0, 0,14313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14313, 0,14313, 0, 14313, 0, 0,14313,14313, 0, 0, 0,14313, 0, 0,14313, 0,14313, 0,14313, 0,14313,14313,14313, 14315, 0,14315, 0, 0, 0, 0, 0, 0,14315, 0, 0,14315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14315, 0, 0, 0, 0, 0, 0,14315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14315, 0,14315, 0, 14315, 0, 0,14315,14315, 0, 0, 0,14315, 0, 0,14315, 0,14315, 0,14315, 0,14315,14315,14315, 14316, 0,14316, 0, 0, 0, 0, 0, 0,14316, 0, 0,14316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14316, 0,14316, 0, 0, 0, 0,14316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14316, 0,14316, 0, 14316, 0, 0,14316,14316, 0, 0, 0,14316, 0, 0,14316, 0,14316, 0,14316, 0,14316,14316,14316, 14317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14317, 0, 0, 0, 0, 0, 0,14317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14317, 0,14317, 0,14317, 0, 0,14317,14317, 0, 0, 0,14317, 0, 0,14317, 0,14317, 0,14317, 0,14317,14317,14317,14333, 0, 14333, 0, 0, 0, 0, 0, 0,14333, 0, 0, 14333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14333, 0, 0, 0, 0, 0, 0,14333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14333, 0,14333, 0,14333, 0, 0,14333,14333, 0, 0, 0,14333, 0, 0,14333, 0,14333, 0,14333, 0,14333,14333,14333,14334, 0, 14334, 0, 0, 0, 0, 0, 0,14334, 0, 0, 14334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14334, 0,14334, 0, 0, 0, 0,14334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14334, 0,14334, 0,14334, 0, 0,14334,14334, 0, 0, 0,14334, 0, 0,14334, 0,14334, 0,14334, 0,14334,14334,14334,14335, 0, 0, 0, 0, 0, 0, 0, 0, 0,14335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14335, 0, 0, 0, 0, 0, 0,14335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14335, 0,14335, 0,14335, 0, 0,14335, 14335, 0, 0, 0,14335, 0, 0,14335, 0,14335, 0,14335, 0,14335,14335,14335,14351, 0,14351, 0, 0, 0, 0, 0, 0,14351, 0, 0,14351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14351, 0, 0, 0, 0, 0, 0, 14351, 0, 0, 0, 0, 0, 0,14351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14351, 0,14351,14351,14351, 0, 0,14351, 14351, 0, 0, 0,14351, 0, 0,14351, 0,14351, 0,14351, 0,14351,14351,14351,14364,14364,14364,14364, 14364,14364,14364,14364, 0, 0,14364,14364,14364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14364,14364,14364,14364,14364,14364,14364, 0, 0, 0, 0,14364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14364,14364,14364,14364,14364,14376, 0,14376, 0, 0, 14376,14376,14376,14376,14376,14376,14376,14376,14376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14376, 0, 0,14376,14378,14378, 0,14378,14378,14378,14378,14378, 14378,14378,14378,14378, 0,14378,14378, 0, 0, 0, 0, 0, 0, 0, 0, 0,14378,14378,14378,14378, 14378,14378,14378, 0, 0, 0, 0, 0,14378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14378,14378,14378,14379, 14379, 0,14379,14379,14379,14379,14379,14379,14379,14379, 14379, 0,14379,14379, 0, 0, 0, 0, 0, 0, 0, 0, 0,14379,14379,14379,14379,14379,14379,14379, 14379, 0, 0, 0, 0,14379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14379,14379,14379,14380,14380, 0,14380, 14380,14380,14380,14380,14380,14380,14380,14380, 0,14380, 14380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14380,14380,14380,14380,14380,14380,14380, 0, 0, 0, 0, 0,14380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14380,14380,14380,14381,14381, 0,14381,14381,14381,14381, 14381,14381,14381,14381,14381,14381,14381,14381,14381,14381, 14381,14381,14381,14381,14381,14381,14381,14381,14381,14381, 14381,14381,14381,14381,14381,14381,14381,14381,14381,14381, 14381,14381,14381,14381,14381,14381,14381,14381,14381,14381, 14381,14381,14381,14381,14381,14381,14381,14381,14381,14381, 14381,14381,14381,14381,14381,14381,14381,14381,14381,14381, 14381,14381,14381,14381,14381,14381,14381,14381,14381,14381, 14381,14381,14381,14381,14381,14381,14382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14382,14382,14382, 14382,14382,14382,14382,14382,14382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14382,14382,14382,14382,14382,14382,14382,14382,14382,14382, 14382,14382,14382,14382,14382,14382,14382,14382,14382,14382, 14382,14382,14382,14382,14382,14387,14387, 0,14387,14387, 14387,14387,14387,14387,14387,14387,14387, 0,14387,14387, 0, 0, 0, 0, 0, 0, 0, 0, 0,14387, 14387,14387,14387,14387,14387,14387, 0, 0, 0, 0, 0,14387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14387, 14387,14387,14387,14388,14388, 0,14388,14388,14388,14388, 14388,14388,14388,14388,14388, 0,14388,14388, 0, 0, 0, 0, 0, 0, 0, 0, 0,14388,14388,14388, 14388,14388,14388,14388,14388, 0, 0, 0, 0,14388, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14388,14388,14388, 14388,14389,14389, 0,14389,14389,14389,14389,14389,14389, 14389,14389,14389, 0,14389,14389, 0, 0, 0, 0, 0, 0, 0, 0, 0,14389,14389,14389,14389,14389, 14389,14389, 0, 0, 0, 0, 0,14389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14389,14389,14389,14391,14391, 0,14391,14391,14391,14391,14391,14391,14391,14391,14391, 0,14391,14391, 0, 0, 0, 0, 0, 0, 0, 0, 0,14391,14391,14391,14391,14391,14391,14391,14391, 0, 0, 0, 0,14391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14391,14391,14391,14396,14396, 0,14396,14396, 14396,14396,14396,14396,14396,14396,14396, 0,14396,14396, 0, 0, 0, 0, 0, 0, 0, 0, 0,14396, 14396,14396,14396,14396,14396,14396, 0, 0, 0, 0, 0,14396, 0, 0, 0, 0, 0,14396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14396, 14396,14396,14396,14397,14397, 0,14397,14397,14397,14397, 14397,14397,14397,14397,14397,14397,14397,14397,14397,14397, 14397,14397,14397,14397,14397,14397,14397,14397,14397,14397, 14397,14397,14397,14397,14397,14397,14397,14397,14397,14397, 14397,14397,14397,14397,14397,14397,14397,14397,14397,14397, 14397,14397,14397,14397,14397,14397,14397,14397,14397,14397, 14397,14397,14397,14397,14397,14397,14397,14397,14397,14397, 14397,14397,14397,14397,14397,14397,14397,14397,14397,14397, 14397,14397,14397,14397,14397,14397,14418,14418, 0,14418, 14418,14418,14418,14418,14418,14418,14418,14418, 0,14418, 14418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14418,14418,14418,14418,14418,14418,14418, 0, 0, 0, 0, 0,14418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14418,14418,14418,14418,14419,14419, 0,14419,14419,14419, 14419,14419,14419,14419,14419,14419, 0,14419,14419, 0, 0, 0, 0, 0, 0, 0, 0, 0,14419,14419, 14419,14419,14419,14419,14419,14419, 0, 0, 0, 0, 14419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14419,14419, 14419,14419,14420,14420, 0,14420,14420,14420,14420,14420, 14420,14420,14420,14420, 0,14420,14420, 0, 0, 0, 0, 0, 0, 0, 0, 0,14420,14420,14420,14420, 14420,14420,14420, 0, 0, 0, 0, 0,14420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14420,14420,14420,14422, 14422, 0,14422,14422,14422,14422,14422,14422,14422,14422, 14422, 0,14422,14422, 0, 0, 0, 0, 0, 0, 0, 0, 0,14422,14422,14422,14422,14422,14422,14422, 14422, 0, 0, 0, 0,14422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14422,14422,14422,14473,14473, 0,14473, 14473,14473,14473,14473,14473,14473,14473,14473, 0,14473, 14473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14473,14473,14473,14473,14473,14473,14473, 0, 0, 0, 0, 0,14473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14473,14473,14473,14473,14474,14474, 0,14474,14474,14474, 14474,14474,14474,14474,14474,14474, 0,14474,14474, 0, 0, 0, 0, 0, 0, 0, 0, 0,14474,14474, 14474,14474,14474,14474,14474,14474, 0, 0, 0, 0, 14474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14474,14474, 14474,14474,14475,14475, 0,14475,14475,14475,14475,14475, 14475,14475,14475,14475, 0,14475,14475, 0, 0, 0, 0, 0, 0, 0, 0, 0,14475,14475,14475,14475, 14475,14475,14475, 0, 0, 0, 0, 0,14475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14475,14475,14475,14477, 14477, 0,14477,14477,14477,14477,14477,14477,14477,14477, 14477, 0,14477,14477, 0, 0, 0, 0, 0, 0, 0, 0, 0,14477,14477,14477,14477,14477,14477,14477, 14477, 0, 0, 0, 0,14477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14477,14477,14477,14502,14502, 0,14502, 14502,14502,14502,14502,14502,14502,14502,14502, 0,14502, 14502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14502,14502,14502,14502,14502,14502,14502, 0, 0, 0, 0, 0,14502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14502,14502,14502,14502,14503,14503, 0,14503,14503,14503, 14503,14503,14503,14503,14503,14503, 0,14503,14503, 0, 0, 0, 0, 0, 0, 0, 0, 0,14503,14503, 14503,14503,14503,14503,14503,14503, 0, 0, 0, 0, 14503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14503,14503, 14503,14503,14504,14504, 0,14504,14504,14504,14504,14504, 14504,14504,14504,14504, 0,14504,14504, 0, 0, 0, 0, 0, 0, 0, 0, 0,14504,14504,14504,14504, 14504,14504,14504, 0, 0, 0, 0, 0,14504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14504,14504,14504,14506, 14506, 0,14506,14506,14506,14506,14506,14506,14506,14506, 14506, 0,14506,14506, 0, 0, 0, 0, 0, 0, 0, 0, 0,14506,14506,14506,14506,14506,14506,14506, 14506, 0, 0, 0, 0,14506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14506,14506,14506,14557,14557, 0,14557, 14557,14557,14557,14557, 0, 0,14557,14557,14557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14557,14557,14557,14557,14557,14557, 0, 0, 0, 0, 0,14557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14557,14557,14557,14557, 0, 0, 0,14557,14562,14562, 0,14562,14562,14562,14562,14562,14562,14562,14562,14562, 0,14562,14562, 0, 0, 0, 0, 0, 0, 0, 0, 0,14562,14562,14562,14562,14562,14562,14562, 0, 0, 0, 0, 0,14562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14562, 0, 0, 0, 0, 0,14562,14562,14562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14562,14563,14563, 0,14563,14563, 14563,14563,14563,14563,14563,14563,14563, 0,14563,14563, 0, 0, 0, 0, 0, 0, 0, 0, 0,14563, 14563,14563,14563,14563,14563,14563, 0, 0, 0, 0, 0,14563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14563, 14563,14563,14563,14564,14564, 0,14564,14564,14564,14564, 14564,14564,14564,14564,14564, 0,14564,14564, 0, 0, 0, 0, 0, 0, 0, 0, 0,14564,14564,14564, 14564,14564,14564,14564, 0, 0, 0, 0, 0,14564, 0, 0,14564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14564,14564,14564, 14564,14566,14566,14566,14566,14566,14566,14566,14566,14566, 0, 0, 0, 0, 0, 0, 0,14566,14566,14566, 14566,14566,14566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14566,14566,14566,14566,14566,14566, 14569,14569, 0,14569,14569,14569,14569,14569,14569,14569, 14569,14569, 0,14569,14569, 0, 0, 0, 0, 0, 0, 0, 0, 0,14569,14569,14569,14569,14569,14569, 14569, 0, 0, 0, 0, 0,14569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14569,14569,14569,14569,14570,14570, 0,14570,14570,14570,14570,14570,14570,14570,14570,14570, 0,14570,14570, 0, 0, 0, 0, 0, 0, 0, 0, 0,14570,14570,14570,14570,14570,14570,14570,14570, 0, 0, 0, 0,14570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14570,14570,14570,14570,14574,14574, 0,14574, 14574,14574,14574,14574,14574,14574,14574,14574, 0,14574, 14574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14574,14574,14574,14574,14574,14574,14574, 0, 0, 0, 0, 0,14574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14574,14574,14574,14575,14575, 0,14575,14575,14575,14575, 14575,14575,14575,14575,14575, 0,14575,14575, 0, 0, 0, 0, 0, 0, 0, 0, 0,14575,14575,14575, 14575,14575,14575,14575,14575, 0, 0, 0, 0,14575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14575,14575,14575, 14579,14579, 0,14579,14579,14579,14579,14579,14579,14579, 14579,14579, 0,14579,14579, 0, 0, 0, 0, 0, 0, 0, 0, 0,14579,14579,14579,14579,14579,14579, 14579, 0, 0, 0, 0, 0,14579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14579,14579,14579,14580,14580, 0, 14580,14580,14580,14580,14580,14580,14580,14580,14580, 0, 14580,14580, 0, 0, 0, 0, 0, 0, 0, 0, 0,14580,14580,14580,14580,14580,14580,14580,14580, 0, 0, 0, 0,14580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14580,14580,14580,14584,14584, 0,14584,14584,14584, 14584,14584,14584,14584,14584,14584, 0,14584,14584, 0, 0, 0, 0, 0, 0, 0, 0, 0,14584,14584, 14584,14584,14584,14584,14584, 0, 0, 0, 0, 0, 14584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14584,14584, 14584,14585,14585, 0,14585,14585,14585,14585,14585,14585, 14585,14585,14585, 0,14585,14585, 0, 0, 0, 0, 0, 0, 0, 0, 0,14585,14585,14585,14585,14585, 14585,14585,14585, 0, 0, 0, 0,14585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14585,14585,14585,14588,14588, 0,14588,14588,14588,14588,14588,14588,14588,14588,14588, 0,14588,14588, 0, 0, 0, 0, 0, 0, 0, 0, 0,14588,14588,14588,14588,14588,14588,14588, 0, 0, 0, 0, 0,14588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14588,14588,14588,14589,14589, 0,14589,14589, 14589,14589,14589,14589,14589,14589,14589, 0,14589,14589, 0, 0, 0, 0, 0, 0, 0, 0, 0,14589, 14589,14589,14589,14589,14589,14589,14589, 0, 0, 0, 0,14589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14589, 14589,14589,14591,14591, 0,14591,14591,14591,14591,14591, 14591,14591,14591,14591, 0,14591,14591, 0, 0, 0, 0, 0, 0, 0, 0, 0,14591,14591,14591,14591, 14591,14591,14591, 0, 0, 0, 0, 0,14591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14591, 0, 0, 0, 0, 0, 0,14591,14591,14591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14591,14592,14592, 0,14592,14592,14592,14592,14592,14592,14592,14592,14592, 0,14592,14592, 0, 0, 0, 0, 0, 0, 0, 0, 0,14592,14592,14592,14592,14592,14592,14592, 0, 0, 0, 0, 0,14592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14592,14592,14592,14593,14593, 0,14593,14593, 14593,14593,14593,14593,14593,14593,14593, 0,14593,14593, 0, 0, 0, 0, 0, 0, 0, 0, 0,14593, 14593,14593,14593,14593,14593,14593,14593, 0, 0, 0, 0,14593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14593, 14593,14593,14594,14594, 0,14594,14594,14594,14594,14594, 14594,14594,14594,14594, 0,14594,14594, 0, 0, 0, 0, 0, 0, 0, 0, 0,14594,14594,14594,14594, 14594,14594,14594, 0, 0, 0, 0, 0,14594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14594,14594,14594,14595, 14595, 0,14595,14595,14595,14595,14595,14595,14595,14595, 14595, 0,14595,14595, 0, 0, 0, 0, 0, 0, 0, 0, 0,14595,14595,14595,14595,14595,14595,14595, 14595, 0, 0, 0, 0,14595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14595,14595,14595,14598,14598, 0,14598, 14598,14598,14598,14598,14598,14598,14598,14598, 0,14598, 14598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14598,14598,14598,14598,14598,14598,14598, 0, 0, 0, 0, 0,14598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14598,14598,14598,14599,14599, 0,14599,14599,14599,14599, 14599,14599,14599,14599,14599, 0,14599,14599, 0, 0, 0, 0, 0, 0, 0, 0, 0,14599,14599,14599, 14599,14599,14599,14599,14599, 0, 0, 0, 0,14599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14599,14599,14599, 14601,14601, 0,14601,14601,14601,14601,14601,14601,14601, 14601,14601, 0,14601,14601, 0, 0, 0, 0, 0, 0, 0, 0, 0,14601,14601,14601,14601,14601,14601, 14601, 0, 0, 0, 0, 0,14601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14601, 0, 0, 0, 0, 0, 0,14601,14601,14601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14601,14602,14602, 0,14602, 14602,14602,14602,14602,14602,14602,14602,14602, 0,14602, 14602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14602,14602,14602,14602,14602,14602,14602, 0, 0, 0, 0, 0,14602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14602,14602,14602,14603,14603, 0,14603,14603,14603,14603, 14603,14603,14603,14603,14603, 0,14603,14603, 0, 0, 0, 0, 0, 0, 0, 0, 0,14603,14603,14603, 14603,14603,14603,14603,14603, 0, 0, 0, 0,14603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14603,14603,14603, 14604,14604, 0,14604,14604,14604,14604,14604,14604,14604, 14604,14604, 0,14604,14604, 0, 0, 0, 0, 0, 0, 0, 0, 0,14604,14604,14604,14604,14604,14604, 14604, 0, 0, 0, 0, 0,14604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14604,14604,14604,14604,14605,14605, 0,14605,14605,14605,14605,14605,14605,14605,14605,14605, 0,14605,14605, 0, 0, 0, 0, 0, 0, 0, 0, 0,14605,14605,14605,14605,14605,14605,14605,14605, 0, 0, 0, 0,14605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14605,14605,14605,14605,14606,14606, 0,14606, 14606,14606,14606,14606,14606,14606,14606,14606, 0,14606, 14606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14606,14606,14606,14606,14606,14606,14606, 0, 0, 0, 0, 0,14606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14606,14606,14606,14608,14608, 0,14608,14608,14608,14608, 14608,14608,14608,14608,14608, 0,14608,14608, 0, 0, 0, 0, 0, 0, 0, 0, 0,14608,14608,14608, 14608,14608,14608,14608,14608, 0, 0, 0, 0,14608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14608,14608,14608, 14614,14614, 0,14614,14614,14614,14614,14614,14614,14614, 14614,14614,14614,14614,14614,14614,14614,14614,14614,14614, 14614,14614,14614,14614,14614,14614,14614,14614,14614,14614, 14614,14614,14614,14614,14614,14614,14614,14614,14614,14614, 14614,14614,14614,14614,14614,14614,14614,14614,14614,14614, 14614,14614,14614,14614,14614,14614,14614,14614,14614,14614, 14614,14614,14614,14614,14614,14614,14614,14614,14614,14614, 14614,14614,14614,14614,14614,14614,14614,14614,14614,14614, 14614,14614,14614,14622,14622,14622,14622,14622,14622,14622, 14622,14622,14622, 0, 0, 0, 0, 0, 0,14622, 14622,14622,14622,14622,14622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14622,14622,14622,14622, 14622,14622,14624,14624,14624,14624,14624,14624,14624,14624, 14624,14624, 0, 0, 0, 0, 0, 0,14624,14624, 14624,14624,14624,14624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14624,14624,14624,14624,14624, 14624,14627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14627,14627,14627,14627,14627,14627,14627,14627, 14627,14627, 0, 0, 0, 0, 0, 0,14627,14627, 14627,14627,14627,14627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14627,14627,14627,14627,14627, 14627,14633,14633,14633,14633,14633,14633,14633,14633,14633, 14633, 0, 0, 0, 0, 0, 0,14633,14633,14633, 14633,14633,14633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14633,14633,14633,14633,14633,14633, 14636,14636,14636,14636,14636,14636,14636,14636,14636,14636, 0, 0, 0, 0, 0, 0,14636,14636,14636,14636, 14636,14636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14636,14636,14636,14636,14636,14636,14644, 14644,14644,14644,14644,14644,14644,14644,14644,14644, 0, 0, 0, 0, 0, 0,14644,14644,14644,14644,14644, 14644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14644,14644,14644,14644,14644,14644,14647,14647, 14647,14647,14647,14647,14647,14647,14647,14647, 0, 0, 0, 0, 0, 0,14647,14647,14647,14647,14647,14647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14647,14647,14647,14647,14647,14647,14655,14655,14655, 14655,14655,14655,14655,14655,14655, 0, 0, 0, 0, 0, 0, 0,14655,14655,14655,14655,14655,14655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14655,14655,14655,14655,14655,14655,14660,14660,14660,14660, 14660,14660,14660,14660,14660,14660, 0, 0, 0, 0, 0, 0,14660,14660,14660,14660,14660,14660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14660, 14660,14660,14660,14660,14660,14662,14662,14662,14662,14662, 14662,14662,14662,14662, 0, 0, 0, 0, 0, 0, 0,14662,14662,14662,14662,14662,14662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14662,14662, 14662,14662,14662,14662,14670, 0,14670,14670,14670,14670, 14670,14670,14670,14670,14670,14670, 0, 0, 0, 0, 0, 0,14670,14670,14670,14670,14670,14670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14670, 14670,14670,14670,14670,14670,14674,14674, 0,14674,14674, 14674,14674,14674,14674,14674,14674,14674, 0,14674,14674, 0, 0, 0, 0, 0, 0, 0, 0, 0,14674, 14674,14674,14674,14674,14674,14674, 0, 0, 0, 0, 0,14674, 0, 0,14674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14674, 14674,14674,14688,14688, 0,14688,14688,14688,14688,14688, 14688,14688,14688,14688, 0,14688,14688, 0, 0, 0, 0, 0, 0, 0, 0, 0,14688,14688,14688,14688, 14688,14688,14688, 0, 0, 0, 0, 0,14688, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14688,14688,14688,14688, 14689,14689, 0,14689,14689,14689,14689,14689,14689,14689, 14689,14689, 0,14689,14689, 0, 0, 0, 0, 0, 0, 0, 0, 0,14689,14689,14689,14689,14689,14689, 14689,14689, 0, 0, 0, 0,14689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14689,14689,14689,14689,14690,14690, 0,14690,14690,14690,14690,14690,14690,14690,14690,14690, 0,14690,14690, 0, 0, 0, 0, 0, 0, 0, 0, 0,14690,14690,14690,14690,14690,14690,14690, 0, 0, 0, 0, 0,14690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14690,14690,14690,14692,14692, 0,14692,14692, 14692,14692,14692,14692,14692,14692,14692, 0,14692,14692, 0, 0, 0, 0, 0, 0, 0, 0, 0,14692, 14692,14692,14692,14692,14692,14692,14692, 0, 0, 0, 0,14692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14692, 14692,14692,14698,14698, 0,14698,14698,14698,14698,14698, 14698,14698,14698,14698, 0,14698,14698, 0, 0, 0, 0, 0, 0, 0, 0, 0,14698,14698,14698,14698, 14698,14698,14698, 0, 0, 0, 0, 0,14698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14698,14698,14698,14699, 14699, 0,14699,14699,14699,14699,14699,14699,14699,14699, 14699, 0,14699,14699, 0, 0, 0, 0, 0, 0, 0, 0, 0,14699,14699,14699,14699,14699,14699,14699, 14699, 0, 0, 0, 0,14699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14699,14699,14699,14702,14702, 0,14702, 14702,14702,14702,14702,14702,14702,14702,14702, 0,14702, 14702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14702,14702,14702,14702,14702,14702,14702, 0, 0, 0, 0, 0,14702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14702,14702,14702,14703,14703, 0,14703,14703,14703,14703, 14703,14703,14703,14703,14703, 0,14703,14703, 0, 0, 0, 0, 0, 0, 0, 0, 0,14703,14703,14703, 14703,14703,14703,14703,14703, 0, 0, 0, 0,14703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14703,14703,14703, 14706,14706, 0,14706,14706,14706,14706,14706,14706,14706, 14706,14706, 0,14706,14706, 0, 0, 0, 0, 0, 0, 0, 0, 0,14706,14706,14706,14706,14706,14706, 14706, 0, 0, 0, 0, 0,14706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14706,14706,14706,14707,14707, 0, 14707,14707,14707,14707,14707,14707,14707,14707,14707, 0, 14707,14707, 0, 0, 0, 0, 0, 0, 0, 0, 0,14707,14707,14707,14707,14707,14707,14707,14707, 0, 0, 0, 0,14707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14707,14707,14707,14709,14709, 0,14709,14709,14709, 14709,14709,14709,14709,14709,14709, 0,14709,14709, 0, 0, 0, 0, 0, 0, 0, 0, 0,14709,14709, 14709,14709,14709,14709,14709, 0, 0, 0, 0, 0, 14709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14709,14709, 14709,14710,14710, 0,14710,14710,14710,14710,14710,14710, 14710,14710,14710, 0,14710,14710, 0, 0, 0, 0, 0, 0, 0, 0, 0,14710,14710,14710,14710,14710, 14710,14710,14710, 0, 0, 0, 0,14710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14710,14710,14710,14711,14711, 0,14711,14711,14711,14711,14711,14711,14711,14711,14711, 0,14711,14711, 0, 0, 0, 0, 0, 0, 0, 0, 0,14711,14711,14711,14711,14711,14711,14711, 0, 0, 0, 0, 0,14711,14711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14711,14711,14711, 0, 0, 0, 0, 0, 0, 0,14711,14712,14712, 0,14712,14712,14712,14712, 14712,14712,14712,14712,14712, 0,14712,14712, 0,14712, 14712,14712,14712,14712,14712,14712,14712,14712,14712,14712, 14712,14712,14712,14712, 0, 0, 0, 0, 0,14712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14712,14712,14712, 14713,14713, 0,14713,14713,14713,14713,14713,14713,14713, 14713,14713, 0,14713,14713, 0, 0, 0, 0, 0, 0, 0, 0, 0,14713,14713,14713,14713,14713,14713, 14713, 0, 0, 0, 0, 0,14713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14713,14713,14713,14714,14714, 0, 14714,14714,14714,14714,14714,14714,14714,14714,14714, 0, 14714,14714, 0, 0, 0, 0, 0, 0, 0, 0, 0,14714,14714,14714,14714,14714,14714,14714, 0, 0, 0, 0, 0,14714,14714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14714,14714,14714, 0, 0, 0, 0, 0, 0, 0,14714,14716,14716, 0,14716,14716,14716,14716,14716, 14716,14716,14716,14716, 0,14716,14716, 0, 0, 0, 0, 0, 0, 0, 0, 0,14716,14716,14716,14716, 14716,14716,14716, 0, 0, 0, 0, 0,14716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14716,14716,14716,14717, 14717, 0,14717,14717,14717,14717,14717,14717,14717,14717, 14717, 0,14717,14717, 0, 0, 0, 0, 0, 0, 0, 0, 0,14717,14717,14717,14717,14717,14717,14717, 14717, 0, 0, 0, 0,14717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14717,14717,14717,14721,14721, 0,14721, 14721,14721,14721,14721,14721,14721,14721,14721, 0,14721, 14721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14721,14721,14721,14721,14721,14721,14721, 0, 0, 0, 0, 0,14721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14721,14721,14721,14722,14722, 0,14722,14722,14722,14722, 14722,14722,14722,14722,14722, 0,14722,14722, 0, 0, 0, 0, 0, 0, 0, 0, 0,14722,14722,14722, 14722,14722,14722,14722,14722, 0, 0, 0, 0,14722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14722,14722,14722, 14726,14726, 0,14726,14726,14726,14726,14726,14726,14726, 14726,14726, 0,14726,14726, 0, 0, 0, 0, 0, 0, 0, 0, 0,14726,14726,14726,14726,14726,14726, 14726, 0, 0, 0, 0, 0,14726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14726,14726,14726,14727,14727, 0, 14727,14727,14727,14727,14727,14727,14727,14727,14727, 0, 14727,14727, 0, 0, 0, 0, 0, 0, 0, 0, 0,14727,14727,14727,14727,14727,14727,14727,14727, 0, 0, 0, 0,14727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14727,14727,14727,14730,14730, 0,14730,14730,14730, 14730,14730,14730,14730,14730,14730, 0,14730,14730, 0, 0, 0, 0, 0, 0, 0, 0, 0,14730,14730, 14730,14730,14730,14730,14730, 0, 0, 0, 0, 0, 14730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14730,14730, 14730,14731,14731, 0,14731,14731,14731,14731,14731,14731, 14731,14731,14731, 0,14731,14731, 0, 0, 0, 0, 0, 0, 0, 0, 0,14731,14731,14731,14731,14731, 14731,14731,14731, 0, 0, 0, 0,14731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14731,14731,14731,14733,14733, 0,14733,14733,14733,14733,14733,14733,14733,14733,14733, 0,14733,14733, 0, 0, 0, 0, 0, 0, 0, 0, 0,14733,14733,14733,14733,14733,14733,14733, 0, 0, 0, 0, 0,14733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14733, 0, 0, 0, 0, 0, 0,14733,14733,14733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14733,14734,14734, 0,14734,14734,14734, 14734,14734,14734,14734,14734,14734, 0,14734,14734, 0, 0, 0, 0, 0, 0, 0, 0, 0,14734,14734, 14734,14734,14734,14734,14734, 0, 0, 0, 0, 0, 14734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14734,14734, 14734,14735,14735, 0,14735,14735,14735,14735,14735,14735, 14735,14735,14735, 0,14735,14735, 0, 0, 0, 0, 0, 0, 0, 0, 0,14735,14735,14735,14735,14735, 14735,14735,14735, 0, 0, 0, 0,14735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14735,14735,14735,14736,14736, 0,14736,14736,14736,14736,14736,14736,14736,14736,14736, 0,14736,14736, 0, 0, 0, 0, 0, 0, 0, 0, 0,14736,14736,14736,14736,14736,14736,14736, 0, 0, 0, 0, 0,14736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14736,14736,14736,14737,14737, 0,14737,14737, 14737,14737,14737,14737,14737,14737,14737, 0,14737,14737, 0, 0, 0, 0, 0, 0, 0, 0, 0,14737, 14737,14737,14737,14737,14737,14737,14737, 0, 0, 0, 0,14737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14737, 14737,14737,14741,14741, 0,14741,14741,14741,14741,14741, 14741,14741,14741,14741, 0,14741,14741, 0, 0, 0, 0, 0, 0, 0, 0, 0,14741,14741,14741,14741, 14741,14741,14741, 0, 0, 0, 0, 0,14741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14741,14741,14741,14742, 14742, 0,14742,14742,14742,14742,14742,14742,14742,14742, 14742, 0,14742,14742, 0, 0, 0, 0, 0, 0, 0, 0, 0,14742,14742,14742,14742,14742,14742,14742, 14742, 0, 0, 0, 0,14742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14742,14742,14742,14745,14745, 0,14745, 14745,14745,14745,14745,14745,14745,14745,14745, 0,14745, 14745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14745,14745,14745,14745,14745,14745,14745, 0, 0, 0, 0, 0,14745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14745,14745,14745,14746,14746, 0,14746,14746,14746,14746, 14746,14746,14746,14746,14746, 0,14746,14746, 0, 0, 0, 0, 0, 0, 0, 0, 0,14746,14746,14746, 14746,14746,14746,14746,14746, 0, 0, 0, 0,14746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14746,14746,14746, 14748,14748, 0,14748,14748,14748,14748,14748,14748,14748, 14748,14748, 0,14748,14748, 0, 0, 0, 0, 0, 0, 0, 0, 0,14748,14748,14748,14748,14748,14748, 14748, 0, 0, 0, 0, 0,14748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14748, 0, 0, 0, 0, 0, 0,14748,14748,14748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14748,14749,14749, 0,14749, 14749,14749,14749,14749,14749,14749,14749,14749, 0,14749, 14749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14749,14749,14749,14749,14749,14749,14749, 0, 0, 0, 0, 0,14749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14749,14749,14749,14750,14750, 0,14750,14750,14750,14750, 14750,14750,14750,14750,14750, 0,14750,14750, 0, 0, 0, 0, 0, 0, 0, 0, 0,14750,14750,14750, 14750,14750,14750,14750,14750, 0, 0, 0, 0,14750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14750,14750,14750, 14751,14751, 0,14751,14751,14751,14751,14751,14751,14751, 14751,14751, 0,14751,14751, 0, 0, 0, 0, 0, 0, 0, 0, 0,14751,14751,14751,14751,14751,14751, 14751, 0, 0, 0, 0, 0,14751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14751,14751,14751,14752,14752, 0, 14752,14752,14752,14752,14752,14752,14752,14752,14752, 0, 14752,14752, 0, 0, 0, 0, 0, 0, 0, 0, 0,14752,14752,14752,14752,14752,14752,14752,14752, 0, 0, 0, 0,14752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14752,14752,14752,14756,14756, 0,14756,14756,14756, 14756,14756,14756,14756,14756,14756, 0,14756,14756, 0, 0, 0, 0, 0, 0, 0, 0, 0,14756,14756, 14756,14756,14756,14756,14756, 0, 0, 0, 0, 0, 14756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14756,14756, 14756,14757,14757, 0,14757,14757,14757,14757,14757,14757, 14757,14757,14757, 0,14757,14757, 0, 0, 0, 0, 0, 0, 0, 0, 0,14757,14757,14757,14757,14757, 14757,14757,14757, 0, 0, 0, 0,14757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14757,14757,14757,14758,14758, 0,14758,14758,14758,14758,14758,14758,14758,14758,14758, 0,14758,14758, 0, 0, 0, 0, 0, 0, 0, 0, 0,14758,14758,14758,14758,14758,14758,14758, 0, 0, 0, 0, 0,14758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14758,14758,14758,14759,14759, 0,14759,14759, 14759,14759,14759,14759,14759,14759,14759, 0,14759,14759, 0, 0, 0, 0, 0, 0, 0, 0, 0,14759, 14759,14759,14759,14759,14759,14759,14759, 0, 0, 0, 0,14759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14759, 14759,14759,14760,14760, 0,14760,14760,14760,14760,14760, 14760,14760,14760,14760, 0,14760,14760, 0, 0, 0, 0, 0, 0, 0, 0, 0,14760,14760,14760,14760, 14760,14760,14760, 0, 0, 0, 0, 0,14760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14760, 0, 0, 0, 0, 0,14760,14760,14760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14760,14764, 14764, 0,14764,14764,14764,14764,14764,14764,14764,14764, 14764, 0,14764,14764, 0, 0, 0, 0, 0, 0, 0, 0, 0,14764,14764,14764,14764,14764,14764,14764, 0, 0, 0, 0, 0,14764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14764,14764,14764,14765,14765, 0,14765, 14765,14765,14765,14765,14765,14765,14765,14765, 0,14765, 14765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14765,14765,14765,14765,14765,14765,14765,14765, 0, 0, 0, 0,14765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14765,14765,14765,14768,14768, 0,14768,14768,14768,14768, 14768,14768,14768,14768,14768, 0,14768,14768, 0, 0, 0, 0, 0, 0, 0, 0, 0,14768,14768,14768, 14768,14768,14768,14768, 0, 0, 0, 0, 0,14768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14768,14768,14768, 14769,14769, 0,14769,14769,14769,14769,14769,14769,14769, 14769,14769, 0,14769,14769, 0, 0, 0, 0, 0, 0, 0, 0, 0,14769,14769,14769,14769,14769,14769, 14769,14769, 0, 0, 0, 0,14769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14769,14769,14769,14771,14771, 0, 14771,14771,14771,14771,14771,14771,14771,14771,14771, 0, 14771,14771, 0, 0, 0, 0, 0, 0, 0, 0, 0,14771,14771,14771,14771,14771,14771,14771, 0, 0, 0, 0, 0,14771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14771,14771,14771,14772,14772, 0,14772,14772,14772, 14772,14772,14772,14772,14772,14772, 0,14772,14772, 0, 0, 0, 0, 0, 0, 0, 0, 0,14772,14772, 14772,14772,14772,14772,14772,14772, 0, 0, 0, 0, 14772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14772,14772, 14772,14773,14773, 0,14773,14773,14773,14773,14773,14773, 14773,14773,14773, 0,14773,14773, 0, 0, 0, 0, 0, 0, 0, 0, 0,14773,14773,14773,14773,14773, 14773,14773, 0, 0, 0, 0, 0,14773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14773, 0, 0, 0,14773,14773,14773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14773, 14774,14774, 0,14774,14774,14774,14774,14774,14774,14774, 14774,14774, 0,14774,14774, 0, 0, 0, 0, 0, 0, 0, 0, 0,14774,14774,14774,14774,14774,14774, 14774, 0, 0, 0, 0, 0,14774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14774,14774,14774,14775,14775, 0, 14775,14775,14775,14775,14775,14775,14775,14775,14775, 0, 14775,14775,14775,14775,14775,14775,14775,14775,14775,14775, 14775,14775,14775,14775,14775,14775,14775,14775, 0, 0, 0, 0, 0,14775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14775,14775,14775,14777,14777, 0,14777,14777,14777, 14777,14777,14777,14777,14777,14777, 0,14777,14777, 0, 0, 0, 0, 0, 0, 0, 0, 0,14777,14777, 14777,14777,14777,14777,14777, 0, 0, 0, 0, 0, 14777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14777,14777, 14777,14778,14778, 0,14778,14778,14778,14778,14778,14778, 14778,14778,14778, 0,14778,14778, 0, 0, 0, 0, 0, 0, 0, 0, 0,14778,14778,14778,14778,14778, 14778,14778,14778, 0, 0, 0, 0,14778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14778,14778,14778,14779,14779, 0,14779,14779,14779,14779,14779,14779,14779,14779,14779, 0,14779,14779, 0, 0, 0, 0, 0, 0, 0, 0, 0,14779,14779,14779,14779,14779,14779,14779, 0, 0, 0, 0, 0,14779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14779, 0, 0, 0,14779,14779,14779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14779,14781,14781, 0, 14781,14781,14781,14781,14781,14781,14781,14781,14781, 0, 14781,14781, 0, 0, 0, 0, 0, 0, 0, 0, 0,14781,14781,14781,14781,14781,14781,14781, 0, 0, 0, 0, 0,14781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14781,14781,14781,14782,14782, 0,14782,14782,14782, 14782,14782,14782,14782,14782,14782, 0,14782,14782, 0, 0, 0, 0, 0, 0, 0, 0, 0,14782,14782, 14782,14782,14782,14782,14782,14782, 0, 0, 0, 0, 14782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14782,14782, 14782,14786,14786, 0,14786,14786,14786,14786,14786,14786, 14786,14786,14786, 0,14786,14786, 0, 0, 0, 0, 0, 0, 0, 0, 0,14786,14786,14786,14786,14786, 14786,14786, 0, 0, 0, 0, 0,14786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14786,14786,14786,14787,14787, 0,14787,14787,14787,14787,14787,14787,14787,14787,14787, 0,14787,14787, 0, 0, 0, 0, 0, 0, 0, 0, 0,14787,14787,14787,14787,14787,14787,14787,14787, 0, 0, 0, 0,14787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14787,14787,14787,14788,14788, 0,14788,14788, 14788,14788,14788,14788,14788,14788,14788, 0,14788,14788, 0, 0, 0, 0, 0, 0, 0, 0, 0,14788, 14788,14788,14788,14788,14788,14788, 0, 0, 0, 0, 0,14788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14788, 0, 0, 0, 0, 0,14788, 14788,14788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14788,14789,14789, 0,14789,14789,14789,14789,14789, 14789,14789,14789,14789, 0,14789,14789, 0, 0, 0, 0, 0, 0, 0, 0, 0,14789,14789,14789,14789, 14789,14789,14789, 0, 0, 0, 0, 0,14789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14789,14789,14789,14800, 14800, 0,14800,14800,14800,14800,14800,14800,14800,14800, 14800, 0,14800,14800, 0, 0, 0, 0, 0, 0, 0, 0, 0,14800,14800,14800,14800,14800,14800,14800, 0, 0, 0, 0, 0,14800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14800,14800,14800,14801,14801, 0,14801, 14801,14801,14801,14801,14801,14801,14801,14801, 0,14801, 14801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14801,14801,14801,14801,14801,14801,14801,14801, 0, 0, 0, 0,14801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14801,14801,14801,14815,14815, 0,14815,14815,14815,14815, 14815,14815,14815,14815,14815, 0,14815,14815, 0, 0, 0, 0, 0, 0, 0, 0, 0,14815,14815,14815, 14815,14815,14815,14815, 0, 0, 0, 0, 0,14815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14815,14815,14815, 14816,14816, 0,14816,14816,14816,14816,14816,14816,14816, 14816,14816, 0,14816,14816, 0, 0, 0, 0, 0, 0, 0, 0, 0,14816,14816,14816,14816,14816,14816, 14816,14816, 0, 0, 0, 0,14816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14816,14816,14816,14836,14836, 0, 14836,14836,14836,14836,14836,14836,14836,14836,14836, 0, 14836,14836, 0, 0, 0, 0, 0, 0, 0, 0, 0,14836,14836,14836,14836,14836,14836,14836, 0, 0, 0, 0, 0,14836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14836,14836,14836,14836,14837,14837, 0,14837,14837, 14837,14837,14837,14837,14837,14837,14837, 0,14837,14837, 0, 0, 0, 0, 0, 0, 0, 0, 0,14837, 14837,14837,14837,14837,14837,14837,14837, 0, 0, 0, 0,14837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14837, 14837,14837,14837,14838,14838, 0,14838,14838,14838,14838, 14838,14838,14838,14838,14838, 0,14838,14838, 0, 0, 0, 0, 0, 0, 0, 0, 0,14838,14838,14838, 14838,14838,14838,14838, 0, 0, 0, 0, 0,14838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14838,14838,14838, 14840,14840, 0,14840,14840,14840,14840,14840,14840,14840, 14840,14840, 0,14840,14840, 0, 0, 0, 0, 0, 0, 0, 0, 0,14840,14840,14840,14840,14840,14840, 14840,14840, 0, 0, 0, 0,14840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14840,14840,14840,14846,14846,14846, 14846,14846,14846,14846,14846,14846,14846, 0, 0, 0, 0, 0, 0,14846,14846,14846,14846,14846,14846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14846,14846,14846,14846,14846,14846,14849,14849,14849,14849, 14849,14849,14849,14849,14849,14849, 0, 0, 0, 0, 0, 0,14849,14849,14849,14849,14849,14849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14849, 14849,14849,14849,14849,14849,14851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14851,14851,14851,14851, 14851,14851,14851,14851,14851, 0, 0, 0, 0, 0, 0, 0,14851,14851,14851,14851,14851,14851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14851, 14851,14851,14851,14851,14851,14855,14855,14855,14855,14855, 14855,14855,14855,14855,14855, 0, 0, 0, 0, 0, 0,14855,14855,14855,14855,14855,14855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14855,14855, 14855,14855,14855,14855,14857,14857,14857,14857,14857,14857, 14857,14857,14857, 0, 0, 0, 0, 0, 0, 0, 14857,14857,14857,14857,14857,14857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14857,14857,14857, 14857,14857,14857,14867,14867,14867,14867,14867,14867,14867, 14867,14867,14867, 0, 0, 0, 0, 0, 0,14867, 14867,14867,14867,14867,14867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14867,14867,14867,14867, 14867,14867,14869,14869,14869,14869,14869,14869,14869,14869, 14869, 0, 0, 0, 0, 0, 0, 0,14869,14869, 14869,14869,14869,14869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14869,14869,14869,14869,14869, 14869,14881,14881,14881,14881,14881,14881,14881,14881,14881, 14881, 0, 0, 0, 0, 0, 0,14881,14881,14881, 14881,14881,14881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14881,14881,14881,14881,14881,14881, 14883,14883,14883,14883,14883,14883,14883,14883,14883, 0, 0, 0, 0, 0, 0, 0,14883,14883,14883,14883, 14883,14883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14883,14883,14883,14883,14883,14883,14891, 0,14891,14891,14891,14891,14891,14891,14891,14891,14891, 14891, 0, 0, 0, 0, 0, 0,14891,14891,14891, 14891,14891,14891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14891,14891,14891,14891,14891,14891, 14895,14895,14895,14895,14895,14895,14895,14895,14895,14895, 0, 0, 0, 0, 0, 0,14895,14895,14895,14895, 14895,14895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14895,14895,14895,14895,14895,14895,14898, 14898,14898,14898,14898,14898,14898,14898,14898,14898, 0, 0, 0, 0, 0, 0,14898,14898,14898,14898,14898, 14898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14898,14898,14898,14898,14898,14898,14906,14906, 14906,14906,14906,14906,14906,14906,14906, 0, 0, 0, 0, 0, 0, 0,14906,14906,14906,14906,14906,14906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14906,14906,14906,14906,14906,14906,14908,14908,14908, 14908,14908,14908,14908,14908,14908,14908, 0, 0, 0, 0, 0, 0,14908,14908,14908,14908,14908,14908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14908,14908,14908,14908,14908,14908,14911,14911, 0,14911, 14911,14911,14911,14911,14911,14911,14911,14911, 0,14911, 14911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14911,14911,14911,14911,14911,14911,14911, 0, 0, 0, 0, 0,14911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14911,14911,14911,14911,14912,14912, 0,14912,14912,14912, 14912,14912,14912,14912,14912,14912, 0,14912,14912, 0, 0, 0, 0, 0, 0, 0, 0, 0,14912,14912, 14912,14912,14912,14912,14912, 0, 0, 0, 0, 0, 14912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14912,14912, 14912,14912,14915,14915, 0,14915,14915,14915,14915,14915, 14915,14915,14915,14915, 0,14915,14915, 0, 0, 0, 0, 0, 0, 0, 0, 0,14915,14915,14915,14915, 14915,14915,14915, 0, 0, 0, 0, 0,14915, 0, 0,14915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14915,14915,14915,14918, 14918, 0,14918,14918,14918,14918,14918,14918,14918,14918, 14918, 0,14918,14918, 0, 0, 0, 0, 0, 0, 0, 0, 0,14918,14918,14918,14918,14918,14918,14918, 0, 0, 0, 0, 0,14918, 0, 0, 0, 0, 0, 0, 0,14918, 0, 0, 0, 0, 0, 0, 0, 0, 0,14918,14918,14918,14919,14919, 0,14919, 14919,14919,14919,14919,14919,14919,14919,14919, 0,14919, 14919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14919,14919,14919,14919,14919,14919,14919, 0, 0, 0, 0, 0,14919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14919,14919,14919,14920,14920, 0,14920,14920,14920,14920, 14920,14920,14920,14920,14920, 0,14920,14920, 0, 0, 0, 0, 0, 0, 0, 0, 0,14920,14920,14920, 14920,14920,14920,14920,14920, 0, 0, 0, 0,14920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14920,14920,14920, 14924,14924, 0,14924,14924,14924,14924,14924,14924,14924, 14924,14924, 0,14924,14924, 0, 0, 0, 0, 0, 0, 0, 0, 0,14924,14924,14924,14924,14924,14924, 14924, 0, 0, 0, 0, 0,14924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14924,14924,14924,14925,14925, 0, 14925,14925,14925,14925,14925,14925,14925,14925,14925, 0, 14925,14925, 0, 0, 0, 0, 0, 0, 0, 0, 0,14925,14925,14925,14925,14925,14925,14925,14925, 0, 0, 0, 0,14925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14925,14925,14925,14927,14927, 0,14927,14927,14927, 14927,14927,14927,14927,14927,14927, 0,14927,14927, 0, 0, 0, 0, 0, 0, 0, 0, 0,14927,14927, 14927,14927,14927,14927,14927, 0, 0, 0, 0, 0, 14927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14927,14927, 14927,14928,14928, 0,14928,14928,14928,14928,14928,14928, 14928,14928,14928, 0,14928,14928, 0, 0, 0, 0, 0, 0, 0, 0, 0,14928,14928,14928,14928,14928, 14928,14928,14928, 0, 0, 0, 0,14928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14928,14928,14928,14930,14930, 0,14930,14930,14930,14930,14930,14930,14930,14930,14930, 0,14930,14930, 0, 0, 0, 0, 0, 0, 0, 0, 0,14930,14930,14930,14930,14930,14930,14930, 0, 0, 0, 0, 0,14930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14930,14930,14930,14931,14931, 0,14931,14931, 14931,14931,14931,14931,14931,14931,14931, 0,14931,14931, 0, 0, 0, 0, 0, 0, 0, 0, 0,14931, 14931,14931,14931,14931,14931,14931,14931, 0, 0, 0, 0,14931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14931, 14931,14931,14932,14932, 0,14932,14932,14932,14932,14932, 14932,14932,14932,14932, 0,14932,14932, 0, 0, 0, 0, 0, 0, 0, 0, 0,14932,14932,14932,14932, 14932,14932,14932, 0, 0, 0, 0, 0,14932, 0, 14932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14932,14932,14932, 0, 0, 0, 0, 0, 0, 0, 0,14932,14935,14935, 0,14935,14935,14935,14935,14935,14935,14935,14935,14935, 0,14935,14935, 0, 0, 0, 0, 0, 0, 0, 0, 0,14935,14935,14935,14935,14935,14935,14935, 0, 0, 0, 0, 0,14935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14935,14935,14935,14936,14936, 0,14936,14936, 14936,14936,14936,14936,14936,14936,14936, 0,14936,14936, 0, 0, 0, 0, 0, 0, 0, 0, 0,14936, 14936,14936,14936,14936,14936,14936,14936, 0, 0, 0, 0,14936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14936, 14936,14936,14940,14940, 0,14940,14940,14940,14940,14940, 14940,14940,14940,14940, 0,14940,14940, 0, 0, 0, 0, 0, 0, 0, 0, 0,14940,14940,14940,14940, 14940,14940,14940, 0, 0, 0, 0, 0,14940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14940,14940,14940,14941, 14941, 0,14941,14941,14941,14941,14941,14941,14941,14941, 14941, 0,14941,14941, 0, 0, 0, 0, 0, 0, 0, 0, 0,14941,14941,14941,14941,14941,14941,14941, 14941, 0, 0, 0, 0,14941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14941,14941,14941,14944,14944, 0,14944, 14944,14944,14944,14944,14944,14944,14944,14944, 0,14944, 14944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14944,14944,14944,14944,14944,14944,14944, 0, 0, 0, 0, 0,14944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14944,14944,14944,14945,14945, 0,14945,14945,14945,14945, 14945,14945,14945,14945,14945, 0,14945,14945, 0, 0, 0, 0, 0, 0, 0, 0, 0,14945,14945,14945, 14945,14945,14945,14945,14945, 0, 0, 0, 0,14945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14945,14945,14945, 14947,14947, 0,14947,14947,14947,14947,14947,14947,14947, 14947,14947, 0,14947,14947, 0, 0, 0, 0, 0, 0, 0, 0, 0,14947,14947,14947,14947,14947,14947, 14947, 0, 0, 0, 0, 0,14947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14947,14947,14947,14948,14948, 0, 14948,14948,14948,14948,14948,14948,14948,14948,14948, 0, 14948,14948, 0, 0, 0, 0, 0, 0, 0, 0, 0,14948,14948,14948,14948,14948,14948,14948,14948, 0, 0, 0, 0,14948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14948,14948,14948,14949,14949, 0,14949,14949,14949, 14949,14949,14949,14949,14949,14949,14949,14949,14949, 0, 0, 0, 0, 0, 0, 0, 0, 0,14949,14949, 14949,14949,14949,14949,14949,14949, 0, 0, 0, 0, 14949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14949,14949, 14949,14949,14949,14950,14950, 0,14950,14950,14950,14950, 14950,14950,14950,14950,14950, 0,14950,14950, 0, 0, 0, 0, 0, 0, 0, 0, 0,14950,14950,14950, 14950,14950,14950,14950, 0, 0, 0, 0, 0,14950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14950,14950,14950, 14951,14951, 0,14951,14951,14951,14951,14951,14951,14951, 14951,14951, 0,14951,14951, 0, 0, 0, 0, 0, 0, 0, 0, 0,14951,14951,14951,14951,14951,14951, 14951,14951, 0, 0, 0, 0,14951, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14951,14951,14951,14953,14953, 0, 14953,14953,14953,14953,14953,14953,14953,14953,14953, 0, 14953,14953, 0, 0, 0, 0, 0, 0, 0, 0, 0,14953,14953,14953,14953,14953,14953,14953, 0, 0, 0, 0, 0,14953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14953,14953,14953,14954,14954, 0,14954,14954,14954, 14954,14954,14954,14954,14954,14954, 0,14954,14954, 0, 0, 0, 0, 0, 0, 0, 0, 0,14954,14954, 14954,14954,14954,14954,14954,14954, 0, 0, 0, 0, 14954, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14954,14954, 14954,14956,14956, 0,14956,14956,14956,14956,14956,14956, 14956,14956,14956, 0,14956,14956, 0, 0, 0, 0, 0, 0, 0, 0, 0,14956,14956,14956,14956,14956, 14956,14956, 0, 0, 0, 0, 0,14956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14956,14956,14956,14957,14957, 0,14957,14957,14957,14957,14957,14957,14957,14957,14957, 0,14957,14957, 0, 0, 0, 0, 0, 0, 0, 0, 0,14957,14957,14957,14957,14957,14957,14957,14957, 0, 0, 0, 0,14957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14957,14957,14957,14958,14958, 0,14958,14958, 14958,14958,14958,14958,14958,14958,14958,14958,14958,14958, 0, 0, 0, 0, 0, 0, 0, 0, 0,14958, 14958,14958,14958,14958,14958,14958,14958, 0, 0, 0, 0,14958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14958, 14958,14958,14958,14958,14970,14970, 0,14970,14970,14970, 14970,14970,14970,14970,14970,14970, 0,14970,14970, 0, 0, 0, 0, 0, 0, 0, 0, 0,14970,14970, 14970,14970,14970,14970,14970, 0, 0, 0, 0, 0, 14970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14970,14970, 14970,14970,14984,14984, 0,14984,14984,14984,14984,14984, 14984,14984,14984,14984, 0,14984,14984, 0, 0, 0, 0, 0, 0, 0, 0, 0,14984,14984,14984,14984, 14984,14984,14984, 0, 0, 0, 0, 0,14984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14984,14984,14984,14985, 14985, 0,14985,14985,14985,14985,14985,14985,14985,14985, 14985, 0,14985,14985, 0, 0, 0, 0, 0, 0, 0, 0, 0,14985,14985,14985,14985,14985,14985,14985, 14985, 0, 0, 0, 0,14985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,14985,14985,14985,15001,15001, 0,15001, 15001,15001,15001,15001,15001,15001,15001,15001, 0,15001, 15001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15001,15001,15001,15001,15001,15001,15001, 0, 0, 0, 0, 0,15001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15001,15001,15001,15002,15002, 0,15002,15002,15002,15002, 15002,15002,15002,15002,15002, 0,15002,15002, 0, 0, 0, 0, 0, 0, 0, 0, 0,15002,15002,15002, 15002,15002,15002,15002,15002, 0, 0, 0, 0,15002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15002,15002,15002, 15006,15006, 0,15006,15006,15006,15006,15006,15006,15006, 15006,15006, 0,15006,15006, 0, 0, 0, 0, 0, 0, 0, 0, 0,15006,15006,15006,15006,15006,15006, 15006, 0, 0, 0, 0, 0,15006, 0, 0, 0, 0, 0,15006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15006,15006,15006,15006,15025,15025, 0,15025,15025,15025,15025,15025,15025,15025,15025,15025, 0,15025,15025, 0, 0, 0, 0, 0, 0, 0, 0, 0,15025,15025,15025,15025,15025,15025,15025, 0, 0, 0, 0, 0,15025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15025,15025,15025,15026,15026, 0,15026,15026, 15026,15026,15026,15026,15026,15026,15026, 0,15026,15026, 0, 0, 0, 0, 0, 0, 0, 0, 0,15026, 15026,15026,15026,15026,15026,15026,15026, 0, 0, 0, 0,15026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15026, 15026,15026,15030,15030, 0,15030,15030,15030,15030,15030, 15030,15030,15030,15030, 0,15030,15030, 0, 0, 0, 0, 0, 0, 0, 0, 0,15030,15030,15030,15030, 15030,15030,15030, 0, 0, 0, 0, 0,15030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15030,15030,15030,15031, 15031, 0,15031,15031,15031,15031,15031,15031,15031,15031, 15031, 0,15031,15031, 0, 0, 0, 0, 0, 0, 0, 0, 0,15031,15031,15031,15031,15031,15031,15031, 15031, 0, 0, 0, 0,15031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15031,15031,15031,15045,15045, 0,15045, 15045,15045,15045,15045,15045,15045,15045,15045, 0,15045, 15045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15045,15045,15045,15045,15045,15045,15045, 0, 0, 0, 0, 0,15045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15045,15045,15045,15046,15046, 0,15046,15046,15046,15046, 15046,15046,15046,15046,15046, 0,15046,15046, 0, 0, 0, 0, 0, 0, 0, 0, 0,15046,15046,15046, 15046,15046,15046,15046,15046, 0, 0, 0, 0,15046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15046,15046,15046, 15060,15060, 0,15060,15060,15060,15060,15060,15060,15060, 15060,15060, 0,15060,15060, 0, 0, 0, 0, 0, 0, 0, 0, 0,15060,15060,15060,15060,15060,15060, 15060, 0, 0, 0, 0, 0,15060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15060,15060,15060,15061,15061, 0, 15061,15061,15061,15061,15061,15061,15061,15061,15061, 0, 15061,15061, 0, 0, 0, 0, 0, 0, 0, 0, 0,15061,15061,15061,15061,15061,15061,15061,15061, 0, 0, 0, 0,15061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15061,15061,15061,15081,15081, 0,15081,15081,15081, 15081,15081,15081,15081,15081,15081,15081,15081,15081, 0, 0, 0, 0, 0, 0, 0, 0, 0,15081,15081, 15081,15081,15081,15081,15081, 0, 0, 0, 0, 0, 15081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15081,15081, 15081,15081,15085,15085, 0,15085,15085,15085,15085,15085, 15085,15085,15085,15085, 0,15085,15085, 0, 0, 0, 0, 0, 0, 0, 0, 0,15085,15085,15085,15085, 15085,15085,15085, 0, 0, 0, 0, 0,15085, 0, 0,15085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15085,15085,15085,15085, 15095,15095, 0,15095,15095,15095,15095,15095,15095,15095, 15095,15095, 0,15095,15095, 0, 0, 0, 0, 0, 0, 0, 0, 0,15095,15095,15095,15095,15095,15095, 15095, 0, 0, 0, 0, 0,15095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15095,15095,15095,15096,15096, 0, 15096,15096,15096,15096,15096,15096,15096,15096,15096, 0, 15096,15096, 0, 0, 0, 0, 0, 0, 0, 0, 0,15096,15096,15096,15096,15096,15096,15096,15096, 0, 0, 0, 0,15096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15096,15096,15096,15102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15102,15102,15102,15102,15102, 15102,15102,15102,15102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15102, 0, 0, 0, 0,15102,15110,15110, 0,15110,15110, 15110,15110,15110,15110,15110,15110,15110, 0,15110,15110, 0, 0, 0, 0, 0, 0, 0, 0, 0,15110, 15110,15110,15110,15110,15110,15110, 0, 0, 0, 0, 0,15110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15110, 15110,15110,15111,15111, 0,15111,15111,15111,15111,15111, 15111,15111,15111,15111, 0,15111,15111, 0, 0, 0, 0, 0, 0, 0, 0, 0,15111,15111,15111,15111, 15111,15111,15111,15111, 0, 0, 0, 0,15111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15111,15111,15111,15115, 15115, 0,15115,15115,15115,15115,15115,15115,15115,15115, 15115, 0,15115,15115, 0, 0, 0, 0, 0, 0, 0, 0, 0,15115,15115,15115,15115,15115,15115,15115, 0, 0, 0, 0, 0,15115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15115,15115,15115,15116,15116, 0,15116, 15116,15116,15116,15116,15116,15116,15116,15116, 0,15116, 15116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15116,15116,15116,15116,15116,15116,15116,15116, 0, 0, 0, 0,15116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15116,15116,15116,15120,15120, 0,15120,15120,15120,15120, 15120,15120,15120,15120,15120, 0,15120,15120, 0, 0, 0, 0, 0, 0, 0, 0, 0,15120,15120,15120, 15120,15120,15120,15120, 0, 0, 0, 0, 0,15120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15120,15120,15120, 15121,15121, 0,15121,15121,15121,15121,15121,15121,15121, 15121,15121, 0,15121,15121, 0, 0, 0, 0, 0, 0, 0, 0, 0,15121,15121,15121,15121,15121,15121, 15121,15121, 0, 0, 0, 0,15121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15121,15121,15121,15125,15125, 0, 15125,15125,15125,15125,15125,15125,15125,15125,15125, 0, 15125,15125, 0, 0, 0, 0, 0, 0, 0, 0, 0,15125,15125,15125,15125,15125,15125,15125, 0, 0, 0, 0, 0,15125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15125,15125,15125,15126,15126, 0,15126,15126,15126, 15126,15126,15126,15126,15126,15126, 0,15126,15126, 0, 0, 0, 0, 0, 0, 0, 0, 0,15126,15126, 15126,15126,15126,15126,15126,15126, 0, 0, 0, 0, 15126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15126,15126, 15126,15129,15129, 0,15129,15129,15129,15129,15129,15129, 15129,15129,15129, 0,15129,15129, 0, 0, 0, 0, 0, 0, 0, 0, 0,15129,15129,15129,15129,15129, 15129,15129, 0, 0, 0, 0, 0,15129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15129,15129,15129,15130,15130, 0,15130,15130,15130,15130,15130,15130,15130,15130,15130, 0,15130,15130, 0, 0, 0, 0, 0, 0, 0, 0, 0,15130,15130,15130,15130,15130,15130,15130,15130, 0, 0, 0, 0,15130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15130,15130,15130,15132,15132, 0,15132,15132, 15132,15132,15132,15132,15132,15132,15132, 0,15132,15132, 0, 0, 0, 0, 0, 0, 0, 0, 0,15132, 15132,15132,15132,15132,15132,15132, 0, 0, 0, 0, 0,15132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15132, 15132,15132,15133,15133, 0,15133,15133,15133,15133,15133, 15133,15133,15133,15133, 0,15133,15133, 0, 0, 0, 0, 0, 0, 0, 0, 0,15133,15133,15133,15133, 15133,15133,15133,15133, 0, 0, 0, 0,15133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15133,15133,15133,15134, 15134, 0,15134,15134,15134,15134,15134,15134,15134,15134, 15134,15134,15134,15134, 0, 0, 0, 0, 0, 0, 0, 0, 0,15134,15134,15134,15134,15134,15134,15134, 15134, 0, 0, 0, 0,15134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15134,15134,15134,15134,15134,15135,15135, 0,15135,15135,15135,15135,15135,15135,15135,15135,15135, 0,15135,15135, 0, 0, 0, 0, 0, 0, 0, 0, 0,15135,15135,15135,15135,15135,15135,15135, 0, 0, 0, 0, 0,15135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15135,15135,15135,15136,15136, 0,15136,15136, 15136,15136,15136,15136,15136,15136,15136, 0,15136,15136, 0, 0, 0, 0, 0, 0, 0, 0, 0,15136, 15136,15136,15136,15136,15136,15136,15136, 0, 0, 0, 0,15136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15136, 15136,15136,15139,15139, 0,15139,15139,15139,15139,15139, 15139,15139,15139,15139, 0,15139,15139, 0, 0, 0, 0, 0, 0, 0, 0, 0,15139,15139,15139,15139, 15139,15139,15139, 0, 0, 0, 0, 0,15139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15139,15139,15139,15140, 15140, 0,15140,15140,15140,15140,15140,15140,15140,15140, 15140, 0,15140,15140, 0, 0, 0, 0, 0, 0, 0, 0, 0,15140,15140,15140,15140,15140,15140,15140, 15140, 0, 0, 0, 0,15140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15140,15140,15140,15142,15142, 0,15142, 15142,15142,15142,15142,15142,15142,15142,15142, 0,15142, 15142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15142,15142,15142,15142,15142,15142,15142, 0, 0, 0, 0, 0,15142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15142,15142,15142,15143,15143, 0,15143,15143,15143,15143, 15143,15143,15143,15143,15143, 0,15143,15143, 0, 0, 0, 0, 0, 0, 0, 0, 0,15143,15143,15143, 15143,15143,15143,15143,15143, 0, 0, 0, 0,15143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15143,15143,15143, 15144,15144, 0,15144,15144,15144,15144,15144,15144,15144, 15144,15144,15144,15144,15144, 0, 0, 0, 0, 0, 0, 0, 0, 0,15144,15144,15144,15144,15144,15144, 15144,15144, 0, 0, 0, 0,15144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15144,15144,15144,15144,15144,15155, 15155,15155,15155,15155,15155,15155,15155,15155,15155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15155, 0,15155,15160,15160, 0,15160,15160,15160,15160,15160, 15160,15160,15160,15160, 0,15160,15160, 0, 0, 0, 0, 0, 0, 0, 0, 0,15160,15160,15160,15160, 15160,15160,15160, 0, 0, 0, 0, 0,15160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15160,15160,15160,15160, 15185,15185,15185,15185,15185,15185,15185,15185,15185,15185, 15185,15185, 0,15185,15185, 0, 0, 0, 0, 0, 0, 0, 0, 0,15185,15185,15185,15185,15185,15185, 15185, 0, 0, 0, 0, 0,15185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15185,15185,15185,15185,15196,15196, 0,15196,15196,15196,15196,15196,15196,15196, 0,15196, 15196,15196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15196,15196,15196,15196,15196,15196,15196, 0, 0, 0, 0, 0,15196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15196,15196,15196,15196,15197,15197, 0,15197, 15197,15197,15197,15197,15197,15197, 0,15197,15197,15197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15197,15197,15197,15197,15197,15197,15197,15197, 0, 0, 0, 0,15197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15197,15197,15197,15197,15201,15201,15201,15201,15201,15201, 15201,15201,15201, 0, 0, 0, 0, 0, 0, 0, 15201,15201,15201,15201,15201,15201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15201,15201,15201, 15201,15201,15201,15208,15208,15208,15208,15208,15208,15208, 15208,15208,15208, 0, 0, 0, 0, 0, 0,15208, 15208,15208,15208,15208,15208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15208,15208,15208,15208, 15208,15208,15209,15209,15209,15209,15209,15209,15209,15209, 15209,15209, 0, 0, 0, 0, 0, 0,15209,15209, 15209,15209,15209,15209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15209,15209,15209,15209,15209, 15209,15211,15211,15211,15211,15211,15211,15211,15211,15211, 15211, 0, 0, 0, 0, 0,15211,15211,15211,15211, 15211,15211,15211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15211,15211,15211,15211,15211,15211, 15216,15216,15216,15216,15216,15216,15216,15216,15216,15216, 0, 0, 0, 0, 0, 0,15216,15216,15216,15216, 15216,15216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15216,15216,15216,15216,15216,15216,15218, 15218,15218,15218,15218,15218,15218,15218,15218,15218, 0, 0, 0, 0, 0, 0,15218,15218,15218,15218,15218, 15218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15218,15218,15218,15218,15218,15218,15223,15223, 15223,15223,15223,15223,15223,15223,15223,15223, 0, 0, 0, 0, 0, 0,15223,15223,15223,15223,15223,15223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15223,15223,15223,15223,15223,15223,15225,15225,15225, 15225,15225,15225,15225,15225,15225,15225, 0, 0, 0, 0, 0, 0,15225,15225,15225,15225,15225,15225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15225,15225,15225,15225,15225,15225,15230,15230,15230,15230, 15230,15230,15230,15230,15230, 0, 0, 0, 0, 0, 0, 0,15230,15230,15230,15230,15230,15230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15230, 15230,15230,15230,15230,15230,15231,15231,15231,15231,15231, 15231,15231,15231,15231,15231, 0, 0, 0, 0, 0, 0,15231,15231,15231,15231,15231,15231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15231,15231, 15231,15231,15231,15231,15233,15233,15233,15233,15233,15233, 15233,15233,15233,15233, 0, 0, 0, 0, 0, 0, 15233,15233,15233,15233,15233,15233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15233,15233,15233, 15233,15233,15233,15238,15238,15238,15238,15238,15238,15238, 15238,15238, 0, 0, 0, 0, 0, 0, 0,15238, 15238,15238,15238,15238,15238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15238,15238,15238,15238, 15238,15238,15239, 0,15239,15239,15239,15239,15239,15239, 15239,15239,15239,15239, 0, 0, 0, 0, 0, 0, 15239,15239,15239,15239,15239,15239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15239,15239,15239, 15239,15239,15239,15242,15242,15242,15242,15242,15242,15242, 15242,15242,15242, 0, 0, 0, 0, 0, 0,15242, 15242,15242,15242,15242,15242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15242,15242,15242,15242, 15242,15242,15244,15244,15244,15244,15244,15244,15244,15244, 15244,15244, 0, 0, 0, 0, 0, 0,15244,15244, 15244,15244,15244,15244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15244,15244,15244,15244,15244, 15244,15249,15249,15249,15249,15249,15249,15249,15249,15249, 0, 0, 0, 0, 0, 0, 0,15249,15249,15249, 15249,15249,15249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15249,15249,15249,15249,15249,15249, 15250,15250,15250,15250,15250,15250,15250,15250,15250,15250, 0, 0, 0, 0, 0, 0,15250,15250,15250,15250, 15250,15250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15250,15250,15250,15250,15250,15250,15257, 15257,15257,15257,15257,15257,15257,15257,15257,15257, 0, 0, 0, 0, 0, 0,15257,15257,15257,15257,15257, 15257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15257,15257,15257,15257,15257,15257,15258,15258, 15258,15258,15258,15258,15258,15258,15258, 0, 0, 0, 0, 0, 0, 0,15258,15258,15258,15258,15258,15258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15258,15258,15258,15258,15258,15258,15265,15265,15265, 15265,15265,15265,15265,15265,15265,15265, 0, 0, 0, 0, 0, 0,15265,15265,15265,15265,15265,15265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15265,15265,15265,15265,15265,15265,15269,15269,15269,15269, 15269,15269,15269,15269,15269,15269, 0, 0, 0, 0, 0, 0,15269,15269,15269,15269,15269,15269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15269, 15269,15269,15269,15269,15269,15286,15286,15286,15286,15286, 15286,15286,15286,15286,15286, 0, 0, 0, 0, 0, 0,15286,15286,15286,15286,15286,15286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15286,15286, 15286,15286,15286,15286,15290,15290,15290,15290,15290,15290, 15290,15290,15290, 0, 0, 0, 0, 0, 0, 0, 15290,15290,15290,15290,15290,15290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15290, 0, 0, 0,15290,15290,15290, 15290,15290,15290,15296,15296,15296,15296,15296,15296,15296, 15296,15296, 0, 0, 0, 0, 0, 0, 0,15296, 15296,15296,15296,15296,15296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15296,15296,15296,15296, 15296,15296,15299,15299,15299,15299,15299,15299,15299,15299, 15299,15299, 0, 0, 0, 0, 0, 0,15299,15299, 15299,15299,15299,15299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15299,15299,15299,15299,15299, 15299,15303,15303,15303,15303,15303,15303,15303,15303,15303, 0, 0, 0, 0, 0, 0, 0,15303,15303,15303, 15303,15303,15303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15303,15303,15303,15303,15303,15303, 15306, 0,15306,15306,15306,15306,15306,15306,15306,15306, 15306,15306, 0, 0, 0, 0, 0, 0,15306,15306, 15306,15306,15306,15306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15306,15306,15306,15306,15306, 15306,15313,15313,15313,15313,15313,15313,15313,15313,15313, 0, 0, 0, 0, 0, 0, 0,15313,15313,15313, 15313,15313,15313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15313,15313,15313,15313,15313,15313, 15316,15316,15316,15316,15316,15316,15316,15316,15316,15316, 0, 0, 0, 0, 0, 0,15316,15316,15316,15316, 15316,15316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15316,15316,15316,15316,15316,15316,15320, 15320,15320,15320,15320,15320,15320,15320,15320,15320, 0, 0, 0, 0, 0, 0,15320,15320,15320,15320,15320, 15320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15320,15320,15320,15320,15320,15320,15324,15324, 15324,15324,15324,15324,15324,15324,15324, 0, 0, 0, 0, 0, 0, 0,15324,15324,15324,15324,15324,15324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15324,15324,15324,15324,15324,15324,15327,15327,15327, 15327,15327,15327,15327,15327,15327,15327, 0, 0, 0, 0, 0, 0,15327,15327,15327,15327,15327,15327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15327,15327,15327,15327,15327,15327,15331,15331,15331,15331, 15331,15331,15331,15331,15331,15331, 0, 0, 0, 0, 0, 0,15331,15331,15331,15331,15331,15331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15331, 15331,15331,15331,15331,15331,15335,15335,15335,15335,15335, 15335,15335,15335,15335, 0, 0, 0, 0, 0, 0, 0,15335,15335,15335,15335,15335,15335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15335,15335, 15335,15335,15335,15335,15338,15338,15338,15338,15338,15338, 15338,15338,15338,15338, 0, 0, 0, 0, 0, 0, 15338,15338,15338,15338,15338,15338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15338,15338,15338, 15338,15338,15338,15342,15342,15342,15342,15342,15342,15342, 15342,15342,15342, 0, 0, 0, 0, 0, 0,15342, 15342,15342,15342,15342,15342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15342,15342,15342,15342, 15342,15342,15343,15343,15343,15343,15343,15343,15343,15343, 15343,15343, 0, 0, 0, 0, 0, 0,15343,15343, 15343,15343,15343,15343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15343,15343,15343,15343,15343, 15343,15345,15345,15345,15345,15345,15345,15345,15345,15345, 0, 0, 0, 0, 0, 0, 0,15345,15345,15345, 15345,15345,15345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15345,15345,15345,15345,15345,15345, 15348,15348,15348,15348,15348,15348,15348,15348,15348, 0, 0, 0, 0, 0, 0, 0,15348,15348,15348,15348, 15348,15348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15348,15348,15348,15348,15348,15348,15349, 15349,15349,15349,15349,15349,15349,15349,15349,15349, 0, 0, 0, 0, 0, 0,15349,15349,15349,15349,15349, 15349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15349,15349,15349,15349,15349,15349,15373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15373, 15373,15373,15373,15373,15373,15373,15373,15373, 0,15373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15373,15376,15376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15376,15376, 15376,15376,15376,15376,15376,15376,15376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15376, 0,15376,15376,15376,15376,15376,15376, 0, 0, 0, 0, 0, 0, 0,15376,15422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15422,15422,15422,15422, 15422,15422,15422,15422,15422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15422, 0, 0, 0, 0, 0, 0,15422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15422, 0,15422, 0,15422, 0, 0,15422,15422, 0, 0, 0,15422, 0, 0,15422, 0,15422, 0,15422, 0, 15422,15422,15422,15423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15423, 0, 0, 0, 0, 0, 0,15423, 0,15423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15423, 0,15423, 0,15423, 0, 0,15423,15423, 0, 0, 0,15423, 0, 0,15423, 0,15423, 0,15423, 0,15423,15423, 15423,15424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15424, 0, 0, 0, 0, 0, 0, 15424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15424, 0,15424, 0,15424, 0, 0,15424,15424, 0, 0, 0,15424,15424, 0, 15424, 0,15424, 0,15424, 0,15424,15424,15424,15425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15425, 0, 0, 0, 0, 0, 0,15425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15425, 0,15425, 0,15425, 0, 0, 15425,15425, 0, 0, 0,15425,15425, 0,15425, 0, 15425, 0,15425, 0,15425,15425,15425,15426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15426, 0, 0, 0, 0, 0, 0,15426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15426, 0,15426, 0,15426, 0, 0,15426,15426, 0, 0, 0,15426, 0, 0,15426, 0,15426, 0, 15426, 0,15426,15426,15426,15427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15427, 0, 0, 0, 0, 0, 0,15427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15427, 0,15427, 0,15427, 0, 0,15427,15427, 0, 0, 0,15427,15427, 0,15427, 0,15427,15427,15427, 0, 15427,15427,15427,15431, 0,15431, 0, 0, 0, 0, 0, 0,15431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15431, 0, 0, 0, 0, 0, 0,15431, 0, 0, 0, 0, 0, 15431, 0, 0, 0, 0, 0, 0, 0, 0,15431, 0,15431, 0,15431, 0, 0,15431,15431, 0, 0, 0,15431, 0, 0,15431, 0,15431, 0,15431, 0, 15431,15431,15431,15432, 0,15432, 0, 0, 0, 0, 0, 0,15432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15432, 0, 0, 0, 0, 0,15432,15432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15432, 0,15432, 0,15432, 0, 0,15432,15432, 0, 0, 0,15432, 0, 0,15432, 0,15432, 0,15432, 0, 15432,15432,15432,15454, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15454, 0, 0, 0, 0, 0, 0,15454, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15454, 0,15454, 0,15454, 0, 0,15454,15454, 0, 0, 0,15454, 0, 0,15454, 0,15454, 0,15454, 0,15454,15454, 15454,15454,15455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15455, 0, 0, 0, 0, 0, 0,15455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15455, 0,15455, 0, 15455, 0,15455,15455,15455, 0, 0, 0,15455, 0, 15455,15455, 0,15455, 0,15455, 0,15455,15455,15455, 15457, 0,15457, 0, 0, 0, 0, 0, 0,15457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15457, 0, 0, 0, 0, 0, 0,15457, 0, 0, 0, 0, 0,15457, 0, 0, 0, 0, 0, 0, 0, 0,15457, 0,15457, 0, 15457, 0, 0,15457,15457, 0, 0, 0,15457, 0, 0,15457, 0,15457, 0,15457, 0,15457,15457,15457, 15458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15458, 0, 0, 0, 0, 0, 0,15458, 0, 0, 0, 0, 0,15458, 0, 0, 0, 0, 0, 0, 0, 0,15458, 0,15458, 0,15458, 0, 0,15458,15458, 0, 0, 0,15458, 0, 0,15458, 0,15458, 0,15458, 0,15458,15458,15458,15459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15459, 0, 0,15459, 0, 0, 0,15459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15459, 0,15459, 0,15459, 0, 0,15459, 15459, 0, 0, 0,15459, 0, 0,15459, 0,15459, 0,15459, 0,15459,15459,15459,15460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15460, 0, 0, 0, 0,15460, 0, 0, 0, 0, 0, 0,15460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15460, 0,15460, 0,15460, 0, 0,15460,15460, 0, 0, 0,15460, 0, 0,15460, 0,15460, 0,15460, 0,15460,15460,15460,15461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15461, 0, 0, 0, 0, 0, 0,15461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15461, 0, 15461, 0,15461, 0, 0,15461,15461, 0, 0, 0, 15461, 0, 0,15461, 0,15461, 0,15461, 0,15461, 15461,15461,15462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15462, 0, 0, 0, 0, 0, 0,15462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15462, 0,15462, 0, 15462, 0, 0,15462,15462, 0, 0, 0,15462, 0, 0,15462, 0,15462, 0,15462, 0,15462,15462,15462, 15463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15463, 0, 0, 0, 0, 0, 0,15463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15463, 0,15463, 0,15463, 0, 0,15463,15463, 0, 0, 0,15463, 0, 0,15463, 0,15463, 0,15463, 0,15463,15463,15463,15464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15464, 0, 0, 0, 0, 0, 0,15464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15464, 0,15464, 0,15464, 0, 0,15464, 15464, 0, 0, 0,15464, 0, 0,15464, 0,15464, 0,15464, 0,15464,15464,15464,15465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15465, 0, 0, 0, 0, 0, 0,15465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15465, 0,15465,15465,15465, 0, 0,15465,15465, 0, 0, 0,15465, 0, 0,15465, 0,15465, 0,15465, 0,15465,15465,15465,15466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15466, 0, 0, 0, 0, 0, 0,15466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15466, 0, 15466,15466,15466, 0, 0,15466,15466, 0, 0, 0, 15466, 0, 0,15466, 0,15466, 0,15466, 0,15466, 15466,15466,15467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15467, 0, 0, 0, 0,15467, 0, 0, 0, 0, 0, 0,15467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15467, 0,15467, 0, 15467, 0, 0,15467,15467, 0, 0, 0,15467, 0, 0,15467, 0,15467,15467,15467, 0,15467,15467,15467, 15476, 0,15476, 0, 0, 0, 0, 0, 0,15476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15476, 0, 0, 0, 0, 0, 15476,15476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15476, 0,15476, 0, 15476, 0, 0,15476,15476, 0, 0, 0,15476, 0, 0,15476, 0,15476, 0,15476, 0,15476,15476,15476, 15493, 0,15493, 0, 0, 0, 0, 0, 0,15493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15493, 0, 0, 0, 0, 0, 0,15493, 0, 0, 0, 0, 0,15493, 0, 0, 0, 0, 0, 0, 0, 0,15493, 0,15493, 0, 15493, 0, 0,15493,15493, 0, 0, 0,15493, 0, 0,15493, 0,15493, 0,15493, 0,15493,15493,15493, 15494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15494, 0, 0, 0, 0, 0, 0,15494, 0, 0, 0, 0, 0,15494, 0, 0, 0, 0, 0, 0, 0, 0,15494, 0,15494, 0,15494, 0, 0,15494,15494, 0, 0, 0,15494, 0, 0,15494, 0,15494, 0,15494, 0,15494,15494,15494,15495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15495, 0, 0,15495, 0, 0, 0,15495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15495, 0,15495, 0,15495, 0, 0,15495, 15495, 0, 0, 0,15495, 0, 0,15495, 0,15495, 0,15495, 0,15495,15495,15495,15496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15496, 0, 0, 0, 0,15496, 0, 0, 0, 0, 0, 0,15496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15496, 0,15496, 0,15496, 0, 0,15496,15496, 0, 0, 0,15496, 0, 0,15496, 0,15496, 0,15496, 0,15496,15496,15496,15497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15497, 0, 0, 0, 0, 0, 0,15497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15497, 0, 15497, 0,15497, 0, 0,15497,15497, 0, 0, 0, 15497, 0, 0,15497, 0,15497, 0,15497, 0,15497, 15497,15497,15498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15498, 0, 0, 0, 0, 0, 0,15498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15498, 0,15498, 0, 15498, 0, 0,15498,15498, 0, 0, 0,15498, 0, 0,15498, 0,15498, 0,15498, 0,15498,15498,15498, 15499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15499, 0, 0, 0, 0, 0, 0,15499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15499, 0,15499, 0,15499, 0, 0,15499,15499, 0, 0, 0,15499, 0, 0,15499, 0,15499, 0,15499, 0,15499,15499,15499,15500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15500, 0, 0, 0, 0, 0, 0,15500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15500, 0,15500, 0,15500, 0, 0,15500, 15500, 0, 0, 0,15500, 0, 0,15500, 0,15500, 0,15500, 0,15500,15500,15500,15501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15501, 0, 0, 0, 0, 0, 0,15501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15501, 0,15501,15501,15501, 0, 0,15501,15501, 0, 0, 0,15501, 0, 0,15501, 0,15501, 0,15501, 0,15501,15501,15501,15502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15502, 0, 0, 0, 0, 0, 0,15502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15502, 0, 15502,15502,15502, 0, 0,15502,15502, 0, 0, 0, 15502, 0, 0,15502, 0,15502, 0,15502, 0,15502, 15502,15502,15503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15503, 0, 0, 0, 0,15503, 0, 0, 0, 0, 0, 0,15503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15503, 0,15503, 0, 15503, 0, 0,15503,15503, 0, 0, 0,15503, 0, 0,15503, 0,15503,15503,15503, 0,15503,15503,15503, 15512, 0,15512, 0, 0, 0, 0, 0, 0,15512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15512, 0, 0, 0, 0, 0, 15512,15512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15512, 0,15512, 0, 15512, 0, 0,15512,15512, 0, 0, 0,15512, 0, 0,15512, 0,15512, 0,15512, 0,15512,15512,15512, 15529, 0,15529, 0, 0, 0, 0, 0, 0,15529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15529, 0, 0, 0, 0, 0, 0,15529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15529, 0,15529, 0, 15529, 0, 0,15529,15529, 0, 0, 0,15529,15529, 0,15529, 0,15529, 0,15529, 0,15529,15529,15529, 15530, 0,15530, 0, 0, 0, 0, 0, 0,15530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15530, 0, 0, 0, 0, 0, 0,15530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15530, 0,15530, 0, 15530, 0, 0,15530,15530, 0, 0, 0,15530,15530, 0,15530, 0,15530, 0,15530, 0,15530,15530,15530, 15531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15531, 0, 0, 0, 0, 0, 0,15531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15531, 0,15531, 0,15531, 0, 0,15531,15531, 0, 0, 0,15531, 0, 0,15531, 0,15531, 0,15531, 0,15531,15531,15531,15532, 0, 0, 0, 0, 0, 0, 0, 0, 0,15532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15532, 0, 0, 0, 0, 0, 0,15532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15532, 0,15532, 0,15532, 0, 0,15532, 15532, 0, 0, 0,15532, 0, 0,15532, 0,15532, 0,15532, 0,15532,15532,15532,15532,15540, 0,15540, 0, 0, 0, 0, 0, 0,15540, 0, 0,15540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15540, 0, 0, 0, 0, 0, 0,15540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15540, 0,15540, 0,15540, 0, 0, 15540,15540, 0, 0, 0,15540, 0, 0,15540, 0, 15540, 0,15540, 0,15540,15540,15540,15542, 0,15542, 0, 0, 0, 0, 0, 0,15542, 0, 0,15542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15542, 0, 0, 0, 0, 0, 0,15542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15542, 0,15542, 0,15542, 0, 0, 15542,15542, 0, 0, 0,15542,15542, 0,15542, 0, 15542, 0,15542, 0,15542,15542,15542,15574, 0, 0, 0, 0, 0, 0, 0, 0, 0,15574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15574, 0, 0, 0, 0, 0, 0,15574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15574, 0,15574,15574,15574, 0, 0,15574,15574, 0, 0, 0,15574, 0, 0,15574, 0,15574,15574, 15574, 0,15574,15574,15574,15575, 0, 0, 0, 0, 0, 0, 0,15575, 0,15575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15575, 0, 0, 0, 0, 0, 0,15575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15575, 0,15575, 0,15575, 0, 0,15575,15575, 0, 0, 0,15575, 0, 0,15575, 0,15575, 0,15575, 0, 15575,15575,15575,15576, 0, 0, 0, 0, 0, 0, 0, 0, 0,15576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15576, 0, 0, 0, 0, 0, 0,15576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15576, 0,15576, 0,15576, 0, 0,15576,15576, 0, 0, 0,15576, 0, 0,15576, 0,15576, 0,15576, 0,15576,15576, 15576,15577, 0, 0, 0, 0, 0, 0, 0, 0, 0,15577,15577,15577,15577,15577,15577,15577,15577,15577, 15577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15577, 0, 0, 0, 0, 0, 0, 15577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15577, 0,15577, 0,15577, 0, 0,15577,15577, 0, 0, 0,15577, 0, 0, 15577, 0,15577, 0,15577, 0,15577,15577,15577,15578, 15578,15578,15578,15578,15578,15578,15578,15578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15578, 0, 0, 0, 0, 0, 0, 0, 0,15578, 0, 0, 0, 0, 0, 0, 0,15578, 0, 0,15578,15582, 0,15582, 0, 0, 0, 0, 0, 0,15582, 0, 0,15582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15582, 0, 0, 0, 0, 0, 0,15582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15582, 0,15582, 0,15582, 0, 0,15582,15582, 0, 0, 0,15582, 0, 0,15582, 0,15582, 0, 15582, 0,15582,15582,15582,15583, 0,15583, 0, 0, 0, 0, 0, 0,15583, 0, 0,15583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15583, 0, 0, 0, 0, 0, 0,15583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15583, 0,15583, 0,15583, 0, 0,15583,15583, 0, 0, 0,15583,15583, 0,15583, 0,15583,15583, 15583, 0,15583,15583,15583,15606,15606,15606,15606,15606, 15606,15606,15606,15606,15606,15606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15606, 0, 0, 0, 0,15606,15612, 0,15612, 0, 0, 0, 0, 0, 0,15612, 0, 0,15612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15612, 0, 0, 0, 0, 0, 0, 15612, 0, 0, 0, 0, 0,15612, 0, 0, 0, 0, 0, 0, 0, 0,15612, 0,15612, 0,15612, 0, 0,15612,15612, 0, 0, 0,15612, 0, 0, 15612, 0,15612, 0,15612, 0,15612,15612,15612,15613, 0, 0, 0, 0, 0, 0, 0, 0, 0,15613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15613, 0,15613, 0, 0, 0, 0,15613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15613, 0,15613, 0,15613, 0, 0, 15613,15613, 0, 0, 0,15613, 0, 0,15613, 0, 15613, 0,15613, 0,15613,15613,15613,15614, 0, 0, 0, 0, 0, 0, 0, 0, 0,15614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15614, 0, 0, 0, 0, 0, 0,15614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15614, 0,15614, 0,15614, 0, 0,15614,15614, 0, 0, 0,15614, 0, 0,15614, 0,15614, 0, 15614, 0,15614,15614,15614,15615, 0, 0, 0, 0, 0, 0, 0, 0, 0,15615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15615, 0, 0, 0, 0,15615, 0, 0, 0, 0, 0, 0,15615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15615, 0,15615, 0,15615, 0, 0,15615,15615, 0, 0, 0,15615, 0, 0,15615, 0,15615, 0,15615, 0, 15615,15615,15615,15629, 0,15629, 0, 0, 0, 0, 0, 0,15629, 0, 0,15629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15629, 0, 0, 0, 0, 0, 0,15629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15629, 0,15629, 0,15629, 0,15629,15629,15629, 0, 0, 0,15629, 0,15629,15629, 0,15629, 0,15629, 0, 15629,15629,15629,15649, 0,15649, 0, 0, 0, 0, 0, 0,15649, 0, 0,15649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15649, 0, 0, 0, 0, 0, 0,15649, 0, 0, 0, 0, 0, 15649, 0, 0, 0, 0, 0, 0, 0, 0,15649, 0,15649, 0,15649, 0, 0,15649,15649, 0, 0, 0,15649, 0, 0,15649, 0,15649, 0,15649, 0, 15649,15649,15649,15650, 0, 0, 0, 0, 0, 0, 0, 0, 0,15650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15650, 0,15650, 0, 0, 0, 0,15650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15650, 0,15650, 0,15650, 0, 0,15650,15650, 0, 0, 0,15650, 0, 0,15650, 0,15650, 0,15650, 0,15650,15650, 15650,15651, 0, 0, 0, 0, 0, 0, 0, 0, 0,15651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15651, 0, 0, 0, 0, 0, 0, 15651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15651, 0,15651, 0,15651, 0, 0,15651,15651, 0, 0, 0,15651, 0, 0, 15651, 0,15651, 0,15651, 0,15651,15651,15651,15652, 0, 0, 0, 0, 0, 0, 0, 0, 0,15652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15652, 0, 0, 0, 0,15652, 0, 0, 0, 0, 0, 0,15652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15652, 0,15652, 0,15652, 0, 0, 15652,15652, 0, 0, 0,15652, 0, 0,15652, 0, 15652, 0,15652, 0,15652,15652,15652,15666, 0,15666, 0, 0, 0, 0, 0, 0,15666, 0, 0,15666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15666, 0, 0, 0, 0, 0, 0,15666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15666, 0,15666, 0,15666, 0,15666, 15666,15666, 0, 0, 0,15666, 0,15666,15666, 0, 15666, 0,15666, 0,15666,15666,15666,15686, 0,15686, 0, 0, 0, 0, 0, 0,15686, 0, 0,15686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15686, 0, 0, 0, 0, 0, 0,15686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15686,15686, 0,15686, 0,15686, 0, 0, 15686,15686, 0, 0, 0,15686, 0, 0,15686, 0, 15686, 0,15686, 0,15686,15686,15686,15687, 0,15687, 0, 0, 0, 0, 0, 0,15687, 0, 0,15687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15687, 0, 0, 0, 0, 0, 0,15687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15687, 0,15687, 0,15687, 0, 0, 15687,15687, 0, 0, 0,15687, 0, 0,15687, 0, 15687, 0,15687, 0,15687,15687,15687,15697,15697,15697, 15697,15697,15697,15697,15697, 0, 0,15697,15697,15697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15697,15697,15697,15697,15697,15697, 0, 0, 0, 0, 0,15697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15697,15697,15697,15697, 0, 0, 0, 0, 0, 0, 0, 0,15697,15711,15711, 0,15711,15711,15711, 15711,15711,15711,15711,15711,15711, 0,15711,15711, 0, 0, 0, 0, 0, 0, 0, 0, 0,15711,15711, 15711,15711,15711,15711,15711, 0, 0, 0, 0, 0, 15711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15711,15711, 15711,15712,15712, 0,15712,15712,15712,15712,15712,15712, 15712,15712,15712, 0,15712,15712, 0, 0, 0, 0, 0, 0, 0, 0, 0,15712,15712,15712,15712,15712, 15712,15712,15712, 0, 0, 0, 0,15712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15712,15712,15712,15716,15716, 0,15716,15716,15716,15716,15716,15716,15716,15716,15716, 0,15716,15716, 0, 0, 0, 0, 0, 0, 0, 0, 0,15716,15716,15716,15716,15716,15716,15716, 0, 0, 0, 0, 0,15716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15716,15716,15716,15716,15717,15717, 0,15717, 15717,15717,15717,15717,15717,15717,15717,15717, 0,15717, 15717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15717,15717,15717,15717,15717,15717,15717,15717, 0, 0, 0, 0,15717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15717,15717,15717,15717,15718,15718, 0,15718,15718,15718, 15718,15718,15718,15718,15718,15718, 0,15718,15718, 0, 0, 0, 0, 0, 0, 0, 0, 0,15718,15718, 15718,15718,15718,15718,15718, 0, 0, 0, 0, 0, 15718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15718,15718, 15718,15720,15720, 0,15720,15720,15720,15720,15720,15720, 15720,15720,15720, 0,15720,15720, 0, 0, 0, 0, 0, 0, 0, 0, 0,15720,15720,15720,15720,15720, 15720,15720,15720, 0, 0, 0, 0,15720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15720,15720,15720,15726,15726, 0,15726,15726,15726,15726,15726,15726,15726,15726,15726, 0,15726,15726, 0, 0, 0, 0, 0, 0, 0, 0, 0,15726,15726,15726,15726,15726,15726,15726, 0, 0, 0, 0, 0,15726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15726,15726,15726,15726,15741,15741, 0,15741, 15741,15741,15741,15741,15741,15741,15741,15741, 0,15741, 15741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15741,15741,15741,15741,15741,15741,15741, 0, 0, 0, 0, 0,15741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15741,15741,15741,15741,15742,15742, 0,15742,15742,15742, 15742,15742,15742,15742,15742,15742, 0,15742,15742, 0, 0, 0, 0, 0, 0, 0, 0, 0,15742,15742, 15742,15742,15742,15742,15742,15742, 0, 0, 0, 0, 15742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15742,15742, 15742,15742,15743,15743, 0,15743,15743,15743,15743,15743, 15743,15743,15743,15743, 0,15743,15743, 0, 0, 0, 0, 0, 0, 0, 0, 0,15743,15743,15743,15743, 15743,15743,15743, 0, 0, 0, 0, 0,15743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15743,15743,15743,15745, 15745, 0,15745,15745,15745,15745,15745,15745,15745,15745, 15745, 0,15745,15745, 0, 0, 0, 0, 0, 0, 0, 0, 0,15745,15745,15745,15745,15745,15745,15745, 15745, 0, 0, 0, 0,15745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15745,15745,15745,15765,15765, 0,15765, 15765,15765,15765,15765, 0, 0,15765,15765,15765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15765,15765,15765,15765,15765,15765, 0, 0, 0, 0, 0,15765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15765,15765,15765,15765,15766,15766, 0,15766,15766,15766, 15766,15766,15766,15766,15766,15766,15766,15766,15766,15766, 15766,15766,15766,15766,15766,15766,15766,15766,15766,15766, 15766,15766,15766,15766,15766,15766,15766,15766,15766,15766, 15766,15766,15766,15766,15766,15766,15766,15766,15766,15766, 15766,15766,15766,15766,15766,15766,15766,15766,15766,15766, 15766,15766,15766,15766,15766,15766,15766,15766,15766,15766, 15766,15766,15766,15766,15766,15766,15766,15766,15766,15766, 15766,15766,15766,15766,15766,15766,15766,15769,15769, 0, 15769,15769,15769,15769,15769,15769,15769,15769,15769, 0, 15769,15769, 0, 0, 0, 0, 0, 0, 0, 0, 0,15769,15769,15769,15769,15769,15769,15769, 0, 0, 0, 0, 0,15769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15769,15769,15769,15770,15770, 0,15770,15770,15770, 15770,15770,15770,15770,15770,15770, 0,15770,15770, 0, 0, 0, 0, 0, 0, 0, 0, 0,15770,15770, 15770,15770,15770,15770,15770,15770, 0, 0, 0, 0, 15770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15770,15770, 15770,15771,15771, 0,15771,15771,15771,15771,15771,15771, 15771,15771,15771, 0,15771,15771, 0, 0, 0, 0, 0, 0, 0, 0, 0,15771,15771,15771,15771,15771, 15771,15771, 0, 0, 0, 0, 0,15771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15771, 0, 0, 0, 0, 0,15771,15771,15771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15771,15772,15772, 0,15772,15772,15772,15772,15772,15772,15772,15772,15772, 0,15772,15772, 0, 0, 0, 0, 0, 0, 0, 0, 0,15772,15772,15772,15772,15772,15772,15772, 0, 0, 0, 0, 0,15772, 0, 0, 0, 0, 0, 15772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15772,15772,15772,15772,15778,15778, 0,15778, 15778,15778,15778,15778,15778,15778,15778,15778, 0,15778, 15778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15778,15778,15778,15778,15778,15778,15778, 0, 0, 0, 0, 0,15778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15778,15778,15778,15778,15779,15779, 0,15779,15779,15779, 15779,15779,15779,15779,15779,15779, 0,15779,15779, 0, 0, 0, 0, 0, 0, 0, 0, 0,15779,15779, 15779,15779,15779,15779,15779,15779, 0, 0, 0, 0, 15779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15779,15779, 15779,15779,15783,15783, 0,15783,15783,15783,15783,15783, 15783,15783,15783,15783, 0,15783,15783, 0, 0, 0, 0, 0, 0, 0, 0, 0,15783,15783,15783,15783, 15783,15783,15783, 0, 0, 0, 0, 0,15783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15783,15783,15783,15784, 15784, 0,15784,15784,15784,15784,15784,15784,15784,15784, 15784, 0,15784,15784, 0, 0, 0, 0, 0, 0, 0, 0, 0,15784,15784,15784,15784,15784,15784,15784, 15784, 0, 0, 0, 0,15784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15784,15784,15784,15793,15793, 0,15793, 15793,15793,15793,15793,15793,15793,15793,15793, 0,15793, 15793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15793,15793,15793,15793,15793,15793,15793, 0, 0, 0, 0, 0,15793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15793,15793,15793,15794,15794, 0,15794,15794,15794,15794, 15794,15794,15794,15794,15794, 0,15794,15794, 0, 0, 0, 0, 0, 0, 0, 0, 0,15794,15794,15794, 15794,15794,15794,15794,15794, 0, 0, 0, 0,15794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15794,15794,15794, 15823,15823, 0,15823,15823,15823,15823,15823,15823,15823, 15823,15823, 0,15823,15823, 0, 0, 0, 0, 0, 0, 0, 0, 0,15823,15823,15823,15823,15823,15823, 15823, 0, 0, 0, 0, 0,15823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15823,15823,15823,15823,15824,15824, 0,15824,15824,15824,15824,15824,15824,15824,15824,15824, 0,15824,15824, 0, 0, 0, 0, 0, 0, 0, 0, 0,15824,15824,15824,15824,15824,15824,15824,15824, 0, 0, 0, 0,15824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15824,15824,15824,15824,15825,15825, 0,15825, 15825,15825,15825,15825,15825,15825,15825,15825, 0,15825, 15825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15825,15825,15825,15825,15825,15825,15825, 0, 0, 0, 0, 0,15825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15825,15825,15825,15827,15827, 0,15827,15827,15827,15827, 15827,15827,15827,15827,15827, 0,15827,15827, 0, 0, 0, 0, 0, 0, 0, 0, 0,15827,15827,15827, 15827,15827,15827,15827,15827, 0, 0, 0, 0,15827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15827,15827,15827, 15833,15833,15833,15833,15833,15833,15833,15833,15833,15833, 0, 0, 0, 0, 0, 0,15833,15833,15833,15833, 15833,15833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15833,15833,15833,15833,15833,15833,15836, 15836,15836,15836,15836,15836,15836,15836,15836,15836, 0, 0, 0, 0, 0, 0,15836,15836,15836,15836,15836, 15836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15836,15836,15836,15836,15836,15836,15838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15838, 15838,15838,15838,15838,15838,15838,15838,15838, 0, 0, 0, 0, 0, 0, 0,15838,15838,15838,15838,15838, 15838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15838,15838,15838,15838,15838,15838,15842,15842, 15842,15842,15842,15842,15842,15842,15842,15842, 0, 0, 0, 0, 0, 0,15842,15842,15842,15842,15842,15842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15842,15842,15842,15842,15842,15842,15844,15844,15844, 15844,15844,15844,15844,15844,15844, 0, 0, 0, 0, 0, 0, 0,15844,15844,15844,15844,15844,15844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15844,15844,15844,15844,15844,15844,15854,15854,15854,15854, 15854,15854,15854,15854,15854,15854, 0, 0, 0, 0, 0, 0,15854,15854,15854,15854,15854,15854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15854, 15854,15854,15854,15854,15854,15856,15856,15856,15856,15856, 15856,15856,15856,15856, 0, 0, 0, 0, 0, 0, 0,15856,15856,15856,15856,15856,15856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15856,15856, 15856,15856,15856,15856,15868,15868,15868,15868,15868,15868, 15868,15868,15868,15868, 0, 0, 0, 0, 0, 0, 15868,15868,15868,15868,15868,15868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15868,15868,15868, 15868,15868,15868,15870,15870,15870,15870,15870,15870,15870, 15870,15870, 0, 0, 0, 0, 0, 0, 0,15870, 15870,15870,15870,15870,15870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15870,15870,15870,15870, 15870,15870,15878, 0,15878,15878,15878,15878,15878,15878, 15878,15878,15878,15878, 0, 0, 0, 0, 0, 0, 15878,15878,15878,15878,15878,15878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15878,15878,15878, 15878,15878,15878,15882,15882,15882,15882,15882,15882,15882, 15882,15882,15882, 0, 0, 0, 0, 0, 0,15882, 15882,15882,15882,15882,15882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15882,15882,15882,15882, 15882,15882,15885,15885,15885,15885,15885,15885,15885,15885, 15885,15885, 0, 0, 0, 0, 0, 0,15885,15885, 15885,15885,15885,15885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15885,15885,15885,15885,15885, 15885,15893,15893,15893,15893,15893,15893,15893,15893,15893, 0, 0, 0, 0, 0, 0, 0,15893,15893,15893, 15893,15893,15893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15893,15893,15893,15893,15893,15893, 15895,15895,15895,15895,15895,15895,15895,15895,15895,15895, 0, 0, 0, 0, 0, 0,15895,15895,15895,15895, 15895,15895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15895,15895,15895,15895,15895,15895,15898, 15898, 0,15898,15898,15898,15898,15898,15898,15898,15898, 15898, 0,15898,15898, 0, 0, 0, 0, 0, 0, 0, 0, 0,15898,15898,15898,15898,15898,15898,15898, 0, 0, 0, 0, 0,15898, 0, 0, 0, 0, 0, 0, 0,15898, 0, 0, 0, 0, 0, 0, 0, 0, 0,15898,15898,15898,15900,15900, 0,15900, 15900,15900,15900,15900,15900,15900,15900,15900, 0,15900, 15900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15900,15900,15900,15900,15900,15900,15900, 0, 0, 0, 0, 0,15900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15900,15900,15900,15900,15901,15901, 0,15901,15901,15901, 15901,15901,15901,15901,15901,15901, 0,15901,15901, 0, 0, 0, 0, 0, 0, 0, 0, 0,15901,15901, 15901,15901,15901,15901,15901,15901, 0, 0, 0, 0, 15901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15901,15901, 15901,15901,15902,15902, 0,15902,15902,15902,15902,15902, 15902,15902,15902,15902, 0,15902,15902, 0, 0, 0, 0, 0, 0, 0, 0, 0,15902,15902,15902,15902, 15902,15902,15902, 0, 0, 0, 0, 0,15902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15902,15902,15902,15904, 15904, 0,15904,15904,15904,15904,15904,15904,15904,15904, 15904, 0,15904,15904, 0, 0, 0, 0, 0, 0, 0, 0, 0,15904,15904,15904,15904,15904,15904,15904, 15904, 0, 0, 0, 0,15904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15904,15904,15904,15910,15910, 0,15910, 15910,15910,15910,15910,15910,15910,15910,15910, 0,15910, 15910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15910,15910,15910,15910,15910,15910,15910, 0, 0, 0, 0, 0,15910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15910,15910,15910,15911,15911, 0,15911,15911,15911,15911, 15911,15911,15911,15911,15911, 0,15911,15911, 0, 0, 0, 0, 0, 0, 0, 0, 0,15911,15911,15911, 15911,15911,15911,15911,15911, 0, 0, 0, 0,15911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15911,15911,15911, 15915,15915, 0,15915,15915,15915,15915,15915,15915,15915, 15915,15915, 0,15915,15915, 0, 0, 0, 0, 0, 0, 0, 0, 0,15915,15915,15915,15915,15915,15915, 15915, 0, 0, 0, 0, 0,15915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15915,15915,15915,15916,15916, 0, 15916,15916,15916,15916,15916,15916,15916,15916,15916, 0, 15916,15916, 0, 0, 0, 0, 0, 0, 0, 0, 0,15916,15916,15916,15916,15916,15916,15916,15916, 0, 0, 0, 0,15916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15916,15916,15916,15920,15920, 0,15920,15920,15920, 15920,15920,15920,15920,15920,15920, 0,15920,15920, 0, 0, 0, 0, 0, 0, 0, 0, 0,15920,15920, 15920,15920,15920,15920,15920, 0, 0, 0, 0, 0, 15920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15920,15920, 15920,15921,15921, 0,15921,15921,15921,15921,15921,15921, 15921,15921,15921, 0,15921,15921, 0, 0, 0, 0, 0, 0, 0, 0, 0,15921,15921,15921,15921,15921, 15921,15921,15921, 0, 0, 0, 0,15921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15921,15921,15921,15924,15924, 0,15924,15924,15924,15924,15924,15924,15924,15924,15924, 0,15924,15924, 0, 0, 0, 0, 0, 0, 0, 0, 0,15924,15924,15924,15924,15924,15924,15924, 0, 0, 0, 0, 0,15924, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15924,15924,15924,15925,15925, 0,15925,15925, 15925,15925,15925,15925,15925,15925,15925, 0,15925,15925, 0, 0, 0, 0, 0, 0, 0, 0, 0,15925, 15925,15925,15925,15925,15925,15925,15925, 0, 0, 0, 0,15925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15925, 15925,15925,15927,15927, 0,15927,15927,15927,15927,15927, 15927,15927,15927,15927, 0,15927,15927, 0, 0, 0, 0, 0, 0, 0, 0, 0,15927,15927,15927,15927, 15927,15927,15927, 0, 0, 0, 0, 0,15927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15927,15927,15927,15928, 15928, 0,15928,15928,15928,15928,15928,15928,15928,15928, 15928, 0,15928,15928, 0, 0, 0, 0, 0, 0, 0, 0, 0,15928,15928,15928,15928,15928,15928,15928, 15928, 0, 0, 0, 0,15928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15928,15928,15928,15929,15929, 0,15929, 15929,15929,15929,15929,15929,15929,15929,15929, 0,15929, 15929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15929,15929,15929,15929,15929,15929,15929, 0, 0, 0, 0, 0,15929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15929, 0, 0, 0, 15929,15929,15929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15929,15930,15930, 0,15930,15930, 15930,15930,15930,15930,15930,15930,15930, 0,15930,15930, 0, 0, 0, 0, 0, 0, 0, 0, 0,15930, 15930,15930,15930,15930,15930,15930, 0, 0, 0, 0, 0,15930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15930, 15930,15930,15931,15931, 0,15931,15931,15931,15931,15931, 15931,15931,15931,15931, 0,15931,15931,15931,15931,15931, 15931,15931,15931,15931,15931,15931,15931,15931,15931,15931, 15931,15931,15931, 0, 0, 0, 0, 0,15931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15931,15931,15931,15933, 15933, 0,15933,15933,15933,15933,15933,15933,15933,15933, 15933, 0,15933,15933, 0, 0, 0, 0, 0, 0, 0, 0, 0,15933,15933,15933,15933,15933,15933,15933, 0, 0, 0, 0, 0,15933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15933,15933,15933,15934,15934, 0,15934, 15934,15934,15934,15934,15934,15934,15934,15934, 0,15934, 15934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15934,15934,15934,15934,15934,15934,15934,15934, 0, 0, 0, 0,15934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15934,15934,15934,15935,15935, 0,15935,15935,15935,15935, 15935,15935,15935,15935,15935, 0,15935,15935, 0, 0, 0, 0, 0, 0, 0, 0, 0,15935,15935,15935, 15935,15935,15935,15935, 0, 0, 0, 0, 0,15935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15935, 0, 0, 0,15935,15935,15935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15935,15946,15946, 0,15946,15946,15946,15946,15946, 15946,15946,15946,15946, 0,15946,15946, 0, 0, 0, 0, 0, 0, 0, 0, 0,15946,15946,15946,15946, 15946,15946,15946, 0, 0, 0, 0, 0,15946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15946,15946,15946,15947, 15947, 0,15947,15947,15947,15947,15947,15947,15947,15947, 15947, 0,15947,15947, 0, 0, 0, 0, 0, 0, 0, 0, 0,15947,15947,15947,15947,15947,15947,15947, 15947, 0, 0, 0, 0,15947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15947,15947,15947,15961,15961, 0,15961, 15961,15961,15961,15961,15961,15961,15961,15961, 0,15961, 15961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15961,15961,15961,15961,15961,15961,15961, 0, 0, 0, 0, 0,15961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15961,15961,15961,15962,15962, 0,15962,15962,15962,15962, 15962,15962,15962,15962,15962, 0,15962,15962, 0, 0, 0, 0, 0, 0, 0, 0, 0,15962,15962,15962, 15962,15962,15962,15962,15962, 0, 0, 0, 0,15962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15962,15962,15962, 15982,15982, 0,15982,15982,15982,15982,15982,15982,15982, 15982,15982, 0,15982,15982, 0, 0, 0, 0, 0, 0, 0, 0, 0,15982,15982,15982,15982,15982,15982, 15982, 0, 0, 0, 0, 0,15982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15982,15982,15982,15983,15983, 0, 15983,15983,15983,15983,15983,15983,15983,15983,15983, 0, 15983,15983, 0, 0, 0, 0, 0, 0, 0, 0, 0,15983,15983,15983,15983,15983,15983,15983,15983, 0, 0, 0, 0,15983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15983,15983,15983,15987,15987, 0,15987,15987,15987, 15987,15987,15987,15987,15987,15987, 0,15987,15987, 0, 0, 0, 0, 0, 0, 0, 0, 0,15987,15987, 15987,15987,15987,15987,15987, 0, 0, 0, 0, 0, 15987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15987,15987, 15987,15988,15988, 0,15988,15988,15988,15988,15988,15988, 15988,15988,15988, 0,15988,15988, 0, 0, 0, 0, 0, 0, 0, 0, 0,15988,15988,15988,15988,15988, 15988,15988,15988, 0, 0, 0, 0,15988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15988,15988,15988,15990,15990, 0,15990,15990,15990,15990,15990,15990,15990,15990,15990, 0,15990,15990, 0, 0, 0, 0, 0, 0, 0, 0, 0,15990,15990,15990,15990,15990,15990,15990, 0, 0, 0, 0, 0,15990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15990,15990,15990,15991,15991, 0,15991,15991, 15991,15991,15991,15991,15991,15991,15991, 0,15991,15991, 0, 0, 0, 0, 0, 0, 0, 0, 0,15991, 15991,15991,15991,15991,15991,15991,15991, 0, 0, 0, 0,15991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15991, 15991,15991,15993,15993, 0,15993,15993,15993,15993,15993, 15993,15993,15993,15993, 0,15993,15993, 0, 0, 0, 0, 0, 0, 0, 0, 0,15993,15993,15993,15993, 15993,15993,15993, 0, 0, 0, 0, 0,15993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15993,15993,15993,15994, 15994, 0,15994,15994,15994,15994,15994,15994,15994,15994, 15994, 0,15994,15994, 0, 0, 0, 0, 0, 0, 0, 0, 0,15994,15994,15994,15994,15994,15994,15994, 15994, 0, 0, 0, 0,15994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15994,15994,15994,15995,15995, 0,15995, 15995,15995,15995,15995,15995,15995,15995,15995, 0,15995, 15995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15995,15995,15995,15995,15995,15995,15995, 0, 0, 0, 0, 0,15995, 0,15995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15995,15995,15995, 0, 0, 0, 0, 0, 0, 0, 0,15995,15998,15998, 0,15998,15998,15998,15998,15998, 15998,15998,15998,15998, 0,15998,15998, 0, 0, 0, 0, 0, 0, 0, 0, 0,15998,15998,15998,15998, 15998,15998,15998, 0, 0, 0, 0, 0,15998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15998,15998,15998,15999, 15999, 0,15999,15999,15999,15999,15999,15999,15999,15999, 15999, 0,15999,15999, 0, 0, 0, 0, 0, 0, 0, 0, 0,15999,15999,15999,15999,15999,15999,15999, 15999, 0, 0, 0, 0,15999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,15999,15999,15999,16003,16003, 0,16003, 16003,16003,16003,16003,16003,16003,16003,16003, 0,16003, 16003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16003,16003,16003,16003,16003,16003,16003, 0, 0, 0, 0, 0,16003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16003,16003,16003,16004,16004, 0,16004,16004,16004,16004, 16004,16004,16004,16004,16004, 0,16004,16004, 0, 0, 0, 0, 0, 0, 0, 0, 0,16004,16004,16004, 16004,16004,16004,16004,16004, 0, 0, 0, 0,16004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16004,16004,16004, 16007,16007, 0,16007,16007,16007,16007,16007,16007,16007, 16007,16007, 0,16007,16007, 0, 0, 0, 0, 0, 0, 0, 0, 0,16007,16007,16007,16007,16007,16007, 16007, 0, 0, 0, 0, 0,16007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16007,16007,16007,16008,16008, 0, 16008,16008,16008,16008,16008,16008,16008,16008,16008, 0, 16008,16008, 0, 0, 0, 0, 0, 0, 0, 0, 0,16008,16008,16008,16008,16008,16008,16008,16008, 0, 0, 0, 0,16008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16008,16008,16008,16010,16010, 0,16010,16010,16010, 16010,16010,16010,16010,16010,16010, 0,16010,16010, 0, 0, 0, 0, 0, 0, 0, 0, 0,16010,16010, 16010,16010,16010,16010,16010, 0, 0, 0, 0, 0, 16010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16010,16010, 16010,16011,16011, 0,16011,16011,16011,16011,16011,16011, 16011,16011,16011, 0,16011,16011, 0, 0, 0, 0, 0, 0, 0, 0, 0,16011,16011,16011,16011,16011, 16011,16011,16011, 0, 0, 0, 0,16011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16011,16011,16011,16012,16012, 0,16012,16012,16012,16012,16012,16012,16012,16012,16012, 16012,16012,16012, 0, 0, 0, 0, 0, 0, 0, 0, 0,16012,16012,16012,16012,16012,16012,16012,16012, 0, 0, 0, 0,16012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16012,16012,16012,16012,16012,16013,16013, 0, 16013,16013,16013,16013,16013,16013,16013,16013,16013, 0, 16013,16013, 0, 0, 0, 0, 0, 0, 0, 0, 0,16013,16013,16013,16013,16013,16013,16013, 0, 0, 0, 0, 0,16013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16013,16013,16013,16014,16014, 0,16014,16014,16014, 16014,16014,16014,16014,16014,16014, 0,16014,16014, 0, 0, 0, 0, 0, 0, 0, 0, 0,16014,16014, 16014,16014,16014,16014,16014,16014, 0, 0, 0, 0, 16014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16014,16014, 16014,16017,16017, 0,16017,16017,16017,16017,16017,16017, 16017,16017,16017, 0,16017,16017, 0, 0, 0, 0, 0, 0, 0, 0, 0,16017,16017,16017,16017,16017, 16017,16017, 0, 0, 0, 0, 0,16017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16017,16017,16017,16018,16018, 0,16018,16018,16018,16018,16018,16018,16018,16018,16018, 0,16018,16018, 0, 0, 0, 0, 0, 0, 0, 0, 0,16018,16018,16018,16018,16018,16018,16018,16018, 0, 0, 0, 0,16018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16018,16018,16018,16020,16020, 0,16020,16020, 16020,16020,16020,16020,16020,16020,16020, 0,16020,16020, 0, 0, 0, 0, 0, 0, 0, 0, 0,16020, 16020,16020,16020,16020,16020,16020, 0, 0, 0, 0, 0,16020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16020, 16020,16020,16021,16021, 0,16021,16021,16021,16021,16021, 16021,16021,16021,16021, 0,16021,16021, 0, 0, 0, 0, 0, 0, 0, 0, 0,16021,16021,16021,16021, 16021,16021,16021,16021, 0, 0, 0, 0,16021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16021,16021,16021,16022, 16022, 0,16022,16022,16022,16022,16022,16022,16022,16022, 16022,16022,16022,16022, 0, 0, 0, 0, 0, 0, 0, 0, 0,16022,16022,16022,16022,16022,16022,16022, 16022, 0, 0, 0, 0,16022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16022,16022,16022,16022,16022,16024,16024, 0,16024,16024,16024,16024,16024,16024,16024,16024,16024, 0,16024,16024, 0, 0, 0, 0, 0, 0, 0, 0, 0,16024,16024,16024,16024,16024,16024,16024, 0, 0, 0, 0, 0,16024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16024,16024,16024,16025,16025, 0,16025,16025, 16025,16025,16025,16025,16025,16025,16025, 0,16025,16025, 0, 0, 0, 0, 0, 0, 0, 0, 0,16025, 16025,16025,16025,16025,16025,16025,16025, 0, 0, 0, 0,16025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16025, 16025,16025,16029,16029, 0,16029,16029,16029,16029,16029, 16029,16029,16029,16029, 0,16029,16029, 0, 0, 0, 0, 0, 0, 0, 0, 0,16029,16029,16029,16029, 16029,16029,16029, 0, 0, 0, 0, 0,16029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16029,16029,16029,16030, 16030, 0,16030,16030,16030,16030,16030,16030,16030,16030, 16030, 0,16030,16030, 0, 0, 0, 0, 0, 0, 0, 0, 0,16030,16030,16030,16030,16030,16030,16030, 16030, 0, 0, 0, 0,16030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16030,16030,16030,16032,16032, 0,16032, 16032,16032,16032,16032,16032,16032,16032,16032, 0,16032, 16032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16032,16032,16032,16032,16032,16032,16032, 0, 0, 0, 0, 0,16032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16032,16032,16032,16033,16033, 0,16033,16033,16033,16033, 16033,16033,16033,16033,16033, 0,16033,16033, 0, 0, 0, 0, 0, 0, 0, 0, 0,16033,16033,16033, 16033,16033,16033,16033,16033, 0, 0, 0, 0,16033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16033,16033,16033, 16034,16034, 0,16034,16034,16034,16034,16034,16034,16034, 16034,16034, 0,16034,16034, 0, 0, 0, 0, 0, 0, 0, 0, 0,16034,16034,16034,16034,16034,16034, 16034, 0, 0, 0, 0, 0,16034, 0,16034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16034,16034,16034, 0, 0, 0, 0, 0, 0, 0, 0,16034,16035,16035, 0,16035, 16035,16035,16035,16035,16035,16035,16035,16035, 0,16035, 16035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16035,16035,16035,16035,16035,16035,16035, 0, 0, 0, 0, 0,16035, 0, 0, 0, 0, 0,16035, 0, 0, 0, 0, 0,16035, 0, 0, 0, 0, 0, 16035,16035,16035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16035,16046,16046,16046,16046,16046,16046,16046, 16046,16046,16046,16046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16046, 0,16046,16048,16048, 0,16048, 16048,16048,16048,16048,16048,16048,16048,16048, 0,16048, 16048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16048,16048,16048,16048,16048,16048,16048, 0, 0, 0, 0, 0,16048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16048,16048,16048,16048,16049,16049, 0,16049,16049,16049, 16049,16049,16049,16049,16049,16049, 0,16049,16049, 0, 0, 0, 0, 0, 0, 0, 0, 0,16049,16049, 16049,16049,16049,16049,16049,16049, 0, 0, 0, 0, 16049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16049,16049, 16049,16049,16050,16050, 0,16050,16050,16050,16050,16050, 16050,16050,16050,16050, 0,16050,16050, 0, 0, 0, 0, 0, 0, 0, 0, 0,16050,16050,16050,16050, 16050,16050,16050, 0, 0, 0, 0, 0,16050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16050,16050,16050,16052, 16052, 0,16052,16052,16052,16052,16052,16052,16052,16052, 16052, 0,16052,16052, 0, 0, 0, 0, 0, 0, 0, 0, 0,16052,16052,16052,16052,16052,16052,16052, 16052, 0, 0, 0, 0,16052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16052,16052,16052,16062,16062,16062,16062, 16062,16062,16062,16062,16062,16062, 0, 0, 0, 0, 0, 0,16062,16062,16062,16062,16062,16062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16062, 16062,16062,16062,16062,16062,16064,16064,16064,16064,16064, 16064,16064,16064,16064,16064, 0, 0, 0, 0, 0, 0,16064,16064,16064,16064,16064,16064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16064,16064, 16064,16064,16064,16064,16067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16067,16067,16067,16067,16067, 16067,16067,16067,16067,16067, 0, 0, 0, 0, 0, 0,16067,16067,16067,16067,16067,16067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16067,16067, 16067,16067,16067,16067,16072,16072,16072,16072,16072,16072, 16072,16072,16072,16072, 0, 0, 0, 0, 0, 0, 16072,16072,16072,16072,16072,16072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16072,16072,16072, 16072,16072,16072,16075,16075,16075,16075,16075,16075,16075, 16075,16075,16075, 0, 0, 0, 0, 0, 0,16075, 16075,16075,16075,16075,16075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16075,16075,16075,16075, 16075,16075,16082,16082,16082,16082,16082,16082,16082,16082, 16082,16082, 0, 0, 0, 0, 0, 0,16082,16082, 16082,16082,16082,16082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16082,16082,16082,16082,16082, 16082,16085,16085,16085,16085,16085,16085,16085,16085,16085, 16085, 0, 0, 0, 0, 0, 0,16085,16085,16085, 16085,16085,16085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16085,16085,16085,16085,16085,16085, 16092,16092,16092,16092,16092,16092,16092,16092,16092, 0, 0, 0, 0, 0, 0, 0,16092,16092,16092,16092, 16092,16092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16092,16092,16092,16092,16092,16092,16093, 16093,16093,16093,16093,16093,16093,16093,16093,16093, 0, 0, 0, 0, 0, 0,16093,16093,16093,16093,16093, 16093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16093,16093,16093,16093,16093,16093,16096,16096, 16096,16096,16096,16096,16096,16096,16096,16096, 0, 0, 0, 0, 0, 0,16096,16096,16096,16096,16096,16096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16096,16096,16096,16096,16096,16096,16103,16103,16103, 16103,16103,16103,16103,16103,16103, 0, 0, 0, 0, 0, 0, 0,16103,16103,16103,16103,16103,16103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16103,16103,16103,16103,16103,16103,16104, 0,16104,16104, 16104,16104,16104,16104,16104,16104,16104,16104, 0, 0, 0, 0, 0, 0,16104,16104,16104,16104,16104,16104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16104,16104,16104,16104,16104,16104,16111,16111,16111, 16111,16111,16111,16111,16111,16111,16111, 0, 0, 0, 0, 0, 0,16111,16111,16111,16111,16111,16111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16111,16111,16111,16111,16111,16111,16113,16113,16113,16113, 16113,16113,16113,16113,16113, 0, 0, 0, 0, 0, 0, 0,16113,16113,16113,16113,16113,16113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16113, 16113,16113,16113,16113,16113,16121,16121,16121,16121,16121, 16121,16121,16121,16121,16121, 0, 0, 0, 0, 0, 0,16121,16121,16121,16121,16121,16121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16121,16121, 16121,16121,16121,16121,16129,16129,16129,16129,16129,16129, 16129,16129,16129,16129, 0, 0, 0, 0, 0, 0, 16129,16129,16129,16129,16129,16129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16129,16129,16129, 16129,16129,16129,16130,16130, 0,16130,16130,16130,16130, 16130,16130,16130,16130,16130, 0,16130,16130, 0, 0, 0, 0, 0, 0, 0, 0, 0,16130,16130,16130, 16130,16130,16130,16130, 0, 0, 0, 0, 0,16130, 0, 0, 0, 0, 0,16130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16130,16130,16130, 16131,16131, 0,16131,16131,16131,16131,16131,16131,16131, 16131,16131, 0,16131,16131, 0, 0, 0, 0, 0, 0, 0, 0, 0,16131,16131,16131,16131,16131,16131, 16131, 0, 0, 0, 0, 0,16131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16131,16131,16131,16131, 0, 0, 0, 0, 0, 0, 0,16131,16132,16132, 0,16132, 16132,16132,16132,16132,16132,16132,16132,16132, 0,16132, 16132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16132,16132,16132,16132,16132,16132,16132, 0, 0, 0, 0, 0,16132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16132,16132,16132,16133,16133, 0,16133,16133,16133,16133, 16133,16133,16133,16133,16133, 0,16133,16133, 0, 0, 0, 0, 0, 0, 0, 0, 0,16133,16133,16133, 16133,16133,16133,16133, 0, 0, 0, 0, 0,16133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16133,16133,16133, 16134,16134, 0,16134,16134,16134,16134,16134,16134,16134, 16134,16134, 0,16134,16134, 0, 0, 0, 0, 0, 0, 0, 0, 0,16134,16134,16134,16134,16134,16134, 16134,16134, 0, 0, 0, 0,16134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16134,16134,16134,16138,16138, 0, 16138,16138,16138,16138,16138,16138,16138,16138,16138, 0, 16138,16138, 0, 0, 0, 0, 0, 0, 0, 0, 0,16138,16138,16138,16138,16138,16138,16138, 0, 0, 0, 0, 0,16138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16138,16138,16138,16139,16139, 0,16139,16139,16139, 16139,16139,16139,16139,16139,16139, 0,16139,16139, 0, 0, 0, 0, 0, 0, 0, 0, 0,16139,16139, 16139,16139,16139,16139,16139,16139, 0, 0, 0, 0, 16139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16139,16139, 16139,16142,16142, 0,16142,16142,16142,16142,16142,16142, 16142,16142,16142, 0,16142,16142, 0, 0, 0, 0, 0, 0, 0, 0, 0,16142,16142,16142,16142,16142, 16142,16142, 0, 0, 0, 0, 0,16142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16142,16142,16142,16143,16143, 0,16143,16143,16143,16143,16143,16143,16143,16143,16143, 0,16143,16143, 0, 0, 0, 0, 0, 0, 0, 0, 0,16143,16143,16143,16143,16143,16143,16143,16143, 0, 0, 0, 0,16143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16143,16143,16143,16146,16146, 0,16146,16146, 16146,16146,16146,16146,16146,16146,16146, 0,16146,16146, 0, 0, 0, 0, 0, 0, 0, 0, 0,16146, 16146,16146,16146,16146,16146,16146, 0, 0, 0, 0, 0,16146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16146, 16146,16146,16147,16147, 0,16147,16147,16147,16147,16147, 16147,16147,16147,16147, 0,16147,16147, 0, 0, 0, 0, 0, 0, 0, 0, 0,16147,16147,16147,16147, 16147,16147,16147,16147, 0, 0, 0, 0,16147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16147,16147,16147,16149, 16149, 0,16149,16149,16149,16149,16149,16149,16149,16149, 16149, 0,16149,16149, 0, 0, 0, 0, 0, 0, 0, 0, 0,16149,16149,16149,16149,16149,16149,16149, 0, 0, 0, 0, 0,16149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16149,16149,16149,16150,16150, 0,16150, 16150,16150,16150,16150,16150,16150,16150,16150, 0,16150, 16150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16150,16150,16150,16150,16150,16150,16150,16150, 0, 0, 0, 0,16150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16150,16150,16150,16151,16151, 0,16151,16151,16151,16151, 16151,16151,16151,16151,16151, 0,16151,16151, 0, 0, 0, 0, 0, 0, 0, 0, 0,16151,16151,16151, 16151,16151,16151,16151, 0, 0, 0, 0, 0,16151, 16151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16151,16151,16151, 0, 0, 0, 0, 0, 0, 0,16151,16152,16152, 0,16152,16152,16152,16152,16152,16152,16152,16152,16152, 0,16152,16152, 0, 0, 0, 0, 0, 0, 0, 0, 0,16152,16152,16152,16152,16152,16152,16152, 0, 0, 0, 0, 0,16152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16152,16152,16152,16153,16153, 0,16153,16153, 16153,16153,16153,16153,16153,16153,16153, 0,16153,16153, 0, 0, 0, 0, 0, 0, 0, 0, 0,16153, 16153,16153,16153,16153,16153,16153, 0, 0, 0, 0, 0,16153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16153, 16153,16153,16154,16154, 0,16154,16154,16154,16154,16154, 16154,16154,16154,16154, 0,16154,16154, 0, 0, 0, 0, 0, 0, 0, 0, 0,16154,16154,16154,16154, 16154,16154,16154, 0, 0, 0, 0, 0,16154,16154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16154,16154,16154, 0, 0, 0, 0, 0, 0, 0,16154,16156,16156, 0, 16156,16156,16156,16156,16156,16156,16156,16156,16156, 0, 16156,16156, 0, 0, 0, 0, 0, 0, 0, 0, 0,16156,16156,16156,16156,16156,16156,16156, 0, 0, 0, 0, 0,16156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16156,16156,16156,16157,16157, 0,16157,16157,16157, 16157,16157,16157,16157,16157,16157, 0,16157,16157, 0, 0, 0, 0, 0, 0, 0, 0, 0,16157,16157, 16157,16157,16157,16157,16157,16157, 0, 0, 0, 0, 16157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16157,16157, 16157,16161,16161, 0,16161,16161,16161,16161,16161,16161, 16161,16161,16161, 0,16161,16161, 0, 0, 0, 0, 0, 0, 0, 0, 0,16161,16161,16161,16161,16161, 16161,16161, 0, 0, 0, 0, 0,16161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16161,16161,16161,16162,16162, 0,16162,16162,16162,16162,16162,16162,16162,16162,16162, 0,16162,16162, 0, 0, 0, 0, 0, 0, 0, 0, 0,16162,16162,16162,16162,16162,16162,16162,16162, 0, 0, 0, 0,16162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16162,16162,16162,16166,16166, 0,16166,16166, 16166,16166,16166,16166,16166,16166,16166, 0,16166,16166, 0, 0, 0, 0, 0, 0, 0, 0, 0,16166, 16166,16166,16166,16166,16166,16166, 0, 0, 0, 0, 0,16166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16166, 16166,16166,16167,16167, 0,16167,16167,16167,16167,16167, 16167,16167,16167,16167, 0,16167,16167, 0, 0, 0, 0, 0, 0, 0, 0, 0,16167,16167,16167,16167, 16167,16167,16167,16167, 0, 0, 0, 0,16167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16167,16167,16167,16170, 16170, 0,16170,16170,16170,16170,16170,16170,16170,16170, 16170, 0,16170,16170, 0, 0, 0, 0, 0, 0, 0, 0, 0,16170,16170,16170,16170,16170,16170,16170, 0, 0, 0, 0, 0,16170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16170,16170,16170,16171,16171, 0,16171, 16171,16171,16171,16171,16171,16171,16171,16171, 0,16171, 16171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16171,16171,16171,16171,16171,16171,16171,16171, 0, 0, 0, 0,16171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16171,16171,16171,16173,16173, 0,16173,16173,16173,16173, 16173,16173,16173,16173,16173, 0,16173,16173, 0, 0, 0, 0, 0, 0, 0, 0, 0,16173,16173,16173, 16173,16173,16173,16173, 0, 0, 0, 0, 0,16173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16173, 0, 0, 0, 0, 0, 0,16173,16173,16173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16173,16174, 16174, 0,16174,16174,16174,16174,16174,16174,16174,16174, 16174, 0,16174,16174, 0, 0, 0, 0, 0, 0, 0, 0, 0,16174,16174,16174,16174,16174,16174,16174, 0, 0, 0, 0, 0,16174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16174,16174,16174,16175,16175, 0,16175, 16175,16175,16175,16175,16175,16175,16175,16175, 0,16175, 16175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16175,16175,16175,16175,16175,16175,16175,16175, 0, 0, 0, 0,16175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16175,16175,16175,16176,16176, 0,16176,16176,16176,16176, 16176,16176,16176,16176,16176, 0,16176,16176, 0, 0, 0, 0, 0, 0, 0, 0, 0,16176,16176,16176, 16176,16176,16176,16176, 0, 0, 0, 0, 0,16176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16176,16176,16176, 16177,16177, 0,16177,16177,16177,16177,16177,16177,16177, 16177,16177, 0,16177,16177, 0, 0, 0, 0, 0, 0, 0, 0, 0,16177,16177,16177,16177,16177,16177, 16177,16177, 0, 0, 0, 0,16177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16177,16177,16177,16180,16180, 0, 16180,16180,16180,16180,16180,16180,16180,16180,16180, 0, 16180,16180, 0, 0, 0, 0, 0, 0, 0, 0, 0,16180,16180,16180,16180,16180,16180,16180, 0, 0, 0, 0, 0,16180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16180,16180,16180,16181,16181, 0,16181,16181,16181, 16181,16181,16181,16181,16181,16181, 0,16181,16181, 0, 0, 0, 0, 0, 0, 0, 0, 0,16181,16181, 16181,16181,16181,16181,16181,16181, 0, 0, 0, 0, 16181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16181,16181, 16181,16184,16184, 0,16184,16184,16184,16184,16184,16184, 16184,16184,16184, 0,16184,16184, 0, 0, 0, 0, 0, 0, 0, 0, 0,16184,16184,16184,16184,16184, 16184,16184, 0, 0, 0, 0, 0,16184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16184,16184,16184,16185,16185, 0,16185,16185,16185,16185,16185,16185,16185,16185,16185, 0,16185,16185, 0, 0, 0, 0, 0, 0, 0, 0, 0,16185,16185,16185,16185,16185,16185,16185,16185, 0, 0, 0, 0,16185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16185,16185,16185,16187,16187, 0,16187,16187, 16187,16187,16187,16187,16187,16187,16187, 0,16187,16187, 0, 0, 0, 0, 0, 0, 0, 0, 0,16187, 16187,16187,16187,16187,16187,16187, 0, 0, 0, 0, 0,16187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16187, 0, 0, 0, 0, 0, 0,16187, 16187,16187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16187,16188,16188, 0,16188,16188,16188,16188,16188,16188, 16188,16188,16188, 0,16188,16188, 0, 0, 0, 0, 0, 0, 0, 0, 0,16188,16188,16188,16188,16188, 16188,16188, 0, 0, 0, 0, 0,16188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16188,16188,16188,16189,16189, 0,16189,16189,16189,16189,16189,16189,16189,16189,16189, 0,16189,16189, 0, 0, 0, 0, 0, 0, 0, 0, 0,16189,16189,16189,16189,16189,16189,16189,16189, 0, 0, 0, 0,16189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16189,16189,16189,16203,16203, 0,16203,16203, 16203,16203,16203,16203,16203,16203,16203, 0,16203,16203, 0, 0, 0, 0, 0, 0, 0, 0, 0,16203, 16203,16203,16203,16203,16203,16203, 0, 0, 0, 0, 0,16203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16203, 16203,16203,16204,16204, 0,16204,16204,16204,16204,16204, 16204,16204,16204,16204, 0,16204,16204, 0, 0, 0, 0, 0, 0, 0, 0, 0,16204,16204,16204,16204, 16204,16204,16204,16204, 0, 0, 0, 0,16204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16204,16204,16204,16208, 16208, 0,16208,16208,16208,16208,16208,16208,16208,16208, 16208, 0,16208,16208, 0, 0, 0, 0, 0, 0, 0, 0, 0,16208,16208,16208,16208,16208,16208,16208, 0, 0, 0, 0, 0,16208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16208,16208,16208,16209,16209, 0,16209, 16209,16209,16209,16209,16209,16209,16209,16209, 0,16209, 16209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16209,16209,16209,16209,16209,16209,16209,16209, 0, 0, 0, 0,16209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16209,16209,16209,16211,16211, 0,16211,16211,16211,16211, 16211,16211,16211,16211,16211, 0,16211,16211, 0, 0, 0, 0, 0, 0, 0, 0, 0,16211,16211,16211, 16211,16211,16211,16211, 0, 0, 0, 0, 0,16211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16211, 0, 0, 0, 0, 0,16211,16211,16211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16211, 16214,16214, 0,16214,16214,16214,16214,16214,16214,16214, 16214,16214, 0,16214,16214, 0, 0, 0, 0, 0, 0, 0, 0, 0,16214,16214,16214,16214,16214,16214, 16214, 0, 0, 0, 0, 0,16214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16214,16214,16214,16214,16233,16233, 0,16233,16233,16233,16233,16233,16233,16233,16233,16233, 0,16233,16233, 0, 0, 0, 0, 0, 0, 0, 0, 0,16233,16233,16233,16233,16233,16233,16233, 0, 0, 0, 0, 0,16233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16233,16233,16233,16234,16234, 0,16234,16234, 16234,16234,16234,16234,16234,16234,16234, 0,16234,16234, 0, 0, 0, 0, 0, 0, 0, 0, 0,16234, 16234,16234,16234,16234,16234,16234,16234, 0, 0, 0, 0,16234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16234, 16234,16234,16250,16250, 0,16250,16250,16250,16250,16250, 16250,16250,16250,16250, 0,16250,16250, 0, 0, 0, 0, 0, 0, 0, 0, 0,16250,16250,16250,16250, 16250,16250,16250, 0, 0, 0, 0, 0,16250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16250,16250,16250,16251, 16251, 0,16251,16251,16251,16251,16251,16251,16251,16251, 16251, 0,16251,16251, 0, 0, 0, 0, 0, 0, 0, 0, 0,16251,16251,16251,16251,16251,16251,16251, 16251, 0, 0, 0, 0,16251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16251,16251,16251,16255,16255, 0,16255, 16255,16255,16255,16255,16255,16255,16255,16255, 0,16255, 16255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16255,16255,16255,16255,16255,16255,16255, 0, 0, 0, 0, 0,16255, 0, 0, 0, 0, 0,16255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16255,16255,16255,16255,16264,16264, 0,16264,16264,16264, 16264,16264,16264,16264,16264,16264, 0,16264,16264, 0, 0, 0, 0, 0, 0, 0, 0, 0,16264,16264, 16264,16264,16264,16264,16264, 0, 0, 0, 0, 0, 16264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16264,16264, 16264,16265,16265, 0,16265,16265,16265,16265,16265,16265, 16265,16265,16265, 0,16265,16265, 0, 0, 0, 0, 0, 0, 0, 0, 0,16265,16265,16265,16265,16265, 16265,16265,16265, 0, 0, 0, 0,16265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16265,16265,16265,16281,16281, 0,16281,16281,16281,16281,16281,16281,16281,16281,16281, 0,16281,16281, 0, 0, 0, 0, 0, 0, 0, 0, 0,16281,16281,16281,16281,16281,16281,16281, 0, 0, 0, 0, 0,16281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16281,16281,16281,16282,16282, 0,16282,16282, 16282,16282,16282,16282,16282,16282,16282, 0,16282,16282, 0, 0, 0, 0, 0, 0, 0, 0, 0,16282, 16282,16282,16282,16282,16282,16282,16282, 0, 0, 0, 0,16282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16282, 16282,16282,16286,16286, 0,16286,16286,16286,16286,16286, 16286,16286,16286,16286, 0,16286,16286, 0, 0, 0, 0, 0, 0, 0, 0, 0,16286,16286,16286,16286, 16286,16286,16286, 0, 0, 0, 0, 0,16286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16286,16286,16286,16287, 16287, 0,16287,16287,16287,16287,16287,16287,16287,16287, 16287, 0,16287,16287, 0, 0, 0, 0, 0, 0, 0, 0, 0,16287,16287,16287,16287,16287,16287,16287, 16287, 0, 0, 0, 0,16287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16287,16287,16287,16291,16291, 0,16291, 16291,16291,16291,16291,16291,16291,16291,16291, 0,16291, 16291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16291,16291,16291,16291,16291,16291,16291, 0, 0, 0, 0, 0,16291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16291,16291,16291,16292,16292, 0,16292,16292,16292,16292, 16292,16292,16292,16292,16292, 0,16292,16292, 0, 0, 0, 0, 0, 0, 0, 0, 0,16292,16292,16292, 16292,16292,16292,16292,16292, 0, 0, 0, 0,16292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16292,16292,16292, 16296,16296, 0,16296,16296,16296,16296,16296,16296,16296, 16296,16296, 0,16296,16296, 0, 0, 0, 0, 0, 0, 0, 0, 0,16296,16296,16296,16296,16296,16296, 16296, 0, 0, 0, 0, 0,16296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16296,16296,16296,16297,16297, 0, 16297,16297,16297,16297,16297,16297,16297,16297,16297, 0, 16297,16297, 0, 0, 0, 0, 0, 0, 0, 0, 0,16297,16297,16297,16297,16297,16297,16297,16297, 0, 0, 0, 0,16297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16297,16297,16297,16301,16301, 0,16301,16301,16301, 16301,16301,16301,16301,16301,16301, 0,16301,16301, 0, 0, 0, 0, 0, 0, 0, 0, 0,16301,16301, 16301,16301,16301,16301,16301, 0, 0, 0, 0, 0, 16301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16301,16301, 16301,16302,16302, 0,16302,16302,16302,16302,16302,16302, 16302,16302,16302, 0,16302,16302, 0, 0, 0, 0, 0, 0, 0, 0, 0,16302,16302,16302,16302,16302, 16302,16302,16302, 0, 0, 0, 0,16302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16302,16302,16302,16305,16305, 0,16305,16305,16305,16305,16305,16305,16305,16305,16305, 0,16305,16305, 0, 0, 0, 0, 0, 0, 0, 0, 0,16305,16305,16305,16305,16305,16305,16305, 0, 0, 0, 0, 0,16305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16305,16305,16305,16306,16306, 0,16306,16306, 16306,16306,16306,16306,16306,16306,16306, 0,16306,16306, 0, 0, 0, 0, 0, 0, 0, 0, 0,16306, 16306,16306,16306,16306,16306,16306,16306, 0, 0, 0, 0,16306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16306, 16306,16306,16308,16308, 0,16308,16308,16308,16308,16308, 16308,16308,16308,16308, 0,16308,16308, 0, 0, 0, 0, 0, 0, 0, 0, 0,16308,16308,16308,16308, 16308,16308,16308, 0, 0, 0, 0, 0,16308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16308, 0, 0, 0, 0, 0, 0,16308,16308,16308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16308,16309,16309, 0,16309,16309,16309,16309,16309,16309,16309,16309,16309, 0,16309,16309, 0, 0, 0, 0, 0, 0, 0, 0, 0,16309,16309,16309,16309,16309,16309,16309, 0, 0, 0, 0, 0,16309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16309,16309,16309,16310,16310, 0,16310,16310, 16310,16310,16310,16310,16310,16310,16310, 0,16310,16310, 0, 0, 0, 0, 0, 0, 0, 0, 0,16310, 16310,16310,16310,16310,16310,16310,16310, 0, 0, 0, 0,16310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16310, 16310,16310,16311,16311, 0,16311,16311,16311,16311,16311, 16311,16311,16311,16311, 0,16311,16311, 0, 0, 0, 0, 0, 0, 0, 0, 0,16311,16311,16311,16311, 16311,16311,16311, 0, 0, 0, 0, 0,16311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16311,16311,16311,16312, 16312, 0,16312,16312,16312,16312,16312,16312,16312,16312, 16312, 0,16312,16312, 0, 0, 0, 0, 0, 0, 0, 0, 0,16312,16312,16312,16312,16312,16312,16312, 16312, 0, 0, 0, 0,16312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16312,16312,16312,16316,16316, 0,16316, 16316,16316,16316,16316,16316,16316,16316,16316, 0,16316, 16316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16316,16316,16316,16316,16316,16316,16316, 0, 0, 0, 0, 0,16316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16316,16316,16316,16317,16317, 0,16317,16317,16317,16317, 16317,16317,16317,16317,16317, 0,16317,16317, 0, 0, 0, 0, 0, 0, 0, 0, 0,16317,16317,16317, 16317,16317,16317,16317,16317, 0, 0, 0, 0,16317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16317,16317,16317, 16320,16320, 0,16320,16320,16320,16320,16320,16320,16320, 16320,16320, 0,16320,16320, 0, 0, 0, 0, 0, 0, 0, 0, 0,16320,16320,16320,16320,16320,16320, 16320, 0, 0, 0, 0, 0,16320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16320,16320,16320,16321,16321, 0, 16321,16321,16321,16321,16321,16321,16321,16321,16321, 0, 16321,16321, 0, 0, 0, 0, 0, 0, 0, 0, 0,16321,16321,16321,16321,16321,16321,16321,16321, 0, 0, 0, 0,16321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16321,16321,16321,16323,16323, 0,16323,16323,16323, 16323,16323,16323,16323,16323,16323, 0,16323,16323, 0, 0, 0, 0, 0, 0, 0, 0, 0,16323,16323, 16323,16323,16323,16323,16323, 0, 0, 0, 0, 0, 16323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16323, 0, 0, 0, 0, 0, 0,16323,16323, 16323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16323, 16324,16324, 0,16324,16324,16324,16324,16324,16324,16324, 16324,16324, 0,16324,16324, 0, 0, 0, 0, 0, 0, 0, 0, 0,16324,16324,16324,16324,16324,16324, 16324, 0, 0, 0, 0, 0,16324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16324,16324,16324,16325,16325, 0, 16325,16325,16325,16325,16325,16325,16325,16325,16325, 0, 16325,16325, 0, 0, 0, 0, 0, 0, 0, 0, 0,16325,16325,16325,16325,16325,16325,16325,16325, 0, 0, 0, 0,16325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16325,16325,16325,16329,16329, 0,16329,16329,16329, 16329,16329,16329,16329,16329,16329, 0,16329,16329, 0, 0, 0, 0, 0, 0, 0, 0, 0,16329,16329, 16329,16329,16329,16329,16329, 0, 0, 0, 0, 0, 16329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16329,16329, 16329,16329,16330,16330, 0,16330,16330,16330,16330,16330, 16330,16330,16330,16330, 0,16330,16330, 0, 0, 0, 0, 0, 0, 0, 0, 0,16330,16330,16330,16330, 16330,16330,16330,16330, 0, 0, 0, 0,16330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16330,16330,16330,16330, 16352,16352,16352,16352,16352,16352,16352,16352,16352,16352, 16352,16352, 0,16352,16352, 0, 0, 0, 0, 0, 0, 0, 0, 0,16352,16352,16352,16352,16352,16352, 16352, 0, 0, 0, 0, 0,16352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16352,16352,16352,16352,16353,16353, 16353,16353,16353,16353,16353,16353,16353,16353,16353,16353, 0,16353,16353, 0, 0, 0, 0, 0, 0, 0, 0, 0,16353,16353,16353,16353,16353,16353,16353,16353, 0, 0, 0, 0,16353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16353,16353,16353,16353,16365,16365, 0,16365, 16365,16365,16365,16365,16365,16365, 0,16365,16365,16365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16365,16365,16365,16365,16365,16365,16365, 0, 0, 0, 0, 0,16365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16365,16365,16365,16365,16366,16366, 0,16366,16366,16366, 16366,16366,16366,16366, 0,16366,16366,16366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16366,16366, 16366,16366,16366,16366,16366,16366, 0, 0, 0, 0, 16366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16366,16366, 16366,16366,16374,16374,16374,16374,16374,16374,16374,16374, 16374,16374, 0, 0, 0, 0, 0, 0,16374,16374, 16374,16374,16374,16374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16374,16374,16374,16374,16374, 16374,16376,16376,16376,16376,16376,16376,16376,16376,16376, 16376, 0, 0, 0, 0, 0, 0,16376,16376,16376, 16376,16376,16376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16376,16376,16376,16376,16376,16376, 16377,16377,16377,16377,16377,16377,16377,16377,16377, 0, 0, 0, 0, 0, 0,16377,16377,16377,16377,16377, 16377,16377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16377,16377,16377,16377,16377,16377,16380, 16380,16380,16380,16380,16380,16380,16380,16380,16380, 0, 0, 0, 0, 0, 0,16380,16380,16380,16380,16380, 16380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16380,16380,16380,16380,16380,16380,16381,16381, 16381,16381,16381,16381,16381,16381,16381, 0, 0, 0, 0, 0, 0, 0,16381,16381,16381,16381,16381,16381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16381,16381,16381,16381,16381,16381,16389,16389,16389, 16389,16389,16389,16389,16389,16389,16389, 0, 0, 0, 0, 0, 0,16389,16389,16389,16389,16389,16389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16389,16389,16389,16389,16389,16389,16390,16390,16390,16390, 16390,16390,16390,16390,16390, 0, 0, 0, 0, 0, 0, 0,16390,16390,16390,16390,16390,16390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16390, 16390,16390,16390,16390,16390,16398,16398,16398,16398,16398, 16398,16398,16398,16398,16398, 0, 0, 0, 0, 0, 0,16398,16398,16398,16398,16398,16398, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16398,16398, 16398,16398,16398,16398,16399,16399,16399,16399,16399,16399, 16399,16399,16399, 0, 0, 0, 0, 0, 0, 0, 16399,16399,16399,16399,16399,16399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16399,16399,16399, 16399,16399,16399,16404, 0,16404,16404,16404,16404,16404, 16404,16404,16404,16404,16404, 0, 0, 0, 0, 0, 0,16404,16404,16404,16404,16404,16404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16404,16404, 16404,16404,16404,16404,16411,16411,16411,16411,16411,16411, 16411,16411,16411,16411, 0, 0, 0, 0, 0, 0, 16411,16411,16411,16411,16411,16411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16411,16411,16411, 16411,16411,16411,16412,16412,16412,16412,16412,16412,16412, 16412,16412, 0, 0, 0, 0, 0, 0, 0,16412, 16412,16412,16412,16412,16412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16412,16412,16412,16412, 16412,16412,16417,16417,16417,16417,16417,16417,16417,16417, 16417,16417, 0, 0, 0, 0, 0, 0,16417,16417, 16417,16417,16417,16417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16417,16417,16417,16417,16417, 16417,16421,16421,16421,16421,16421,16421,16421,16421,16421, 16421, 0, 0, 0, 0, 0, 0,16421,16421,16421, 16421,16421,16421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16421,16421,16421,16421,16421,16421, 16425,16425,16425,16425,16425,16425,16425,16425,16425,16425, 0, 0, 0, 0, 0, 0,16425,16425,16425,16425, 16425,16425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16425,16425,16425,16425,16425,16425,16426, 16426,16426,16426,16426,16426,16426,16426,16426, 0, 0, 0, 0, 0, 0, 0,16426,16426,16426,16426,16426, 16426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16426,16426,16426,16426,16426,16426,16431,16431, 16431,16431,16431,16431,16431,16431,16431,16431, 0, 0, 0, 0, 0, 0,16431,16431,16431,16431,16431,16431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16431,16431,16431,16431,16431,16431,16435,16435,16435, 16435,16435,16435,16435,16435,16435,16435, 0, 0, 0, 0, 0, 0,16435,16435,16435,16435,16435,16435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16435,16435,16435,16435,16435,16435,16436,16436,16436,16436, 16436,16436,16436,16436,16436,16436, 0, 0, 0, 0, 0, 0,16436,16436,16436,16436,16436,16436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16436, 16436,16436,16436,16436,16436,16438,16438,16438,16438,16438, 16438,16438,16438,16438,16438, 0, 0, 0, 0, 0, 0,16438,16438,16438,16438,16438,16438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16438,16438, 16438,16438,16438,16438,16443,16443,16443,16443,16443,16443, 16443,16443,16443, 0, 0, 0, 0, 0, 0, 0, 16443,16443,16443,16443,16443,16443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16443,16443,16443, 16443,16443,16443,16444,16444,16444,16444,16444,16444,16444, 16444,16444,16444, 0, 0, 0, 0, 0, 0,16444, 16444,16444,16444,16444,16444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16444,16444,16444,16444, 16444,16444,16455, 0,16455, 0, 0,16455,16455,16455, 16455,16455,16455,16455,16455,16455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16455, 0, 0,16455,16466, 16466,16466,16466,16466,16466,16466,16466,16466, 0, 0, 0, 0, 0, 0, 0,16466,16466,16466,16466,16466, 16466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16466, 0, 0, 0,16466,16466,16466,16466,16466,16466,16469,16469, 16469,16469,16469,16469,16469,16469,16469, 0, 0, 0, 0, 0, 0, 0,16469,16469,16469,16469,16469,16469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16469,16469,16469,16469,16469,16469,16472, 0,16472, 16472,16472,16472,16472,16472,16472,16472,16472,16472, 0, 0, 0, 0, 0, 0,16472,16472,16472,16472,16472, 16472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16472,16472,16472,16472,16472,16472,16476,16476, 16476,16476,16476,16476,16476,16476,16476, 0, 0, 0, 0, 0, 0, 0,16476,16476,16476,16476,16476,16476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16476,16476,16476,16476,16476,16476,16479, 0,16479, 16479,16479,16479,16479,16479,16479,16479,16479,16479, 0, 0, 0, 0, 0, 0,16479,16479,16479,16479,16479, 16479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16479,16479,16479,16479,16479,16479,16482,16482, 16482,16482,16482,16482,16482,16482,16482, 0, 0, 0, 0, 0, 0, 0,16482,16482,16482,16482,16482,16482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16482,16482,16482,16482,16482,16482,16485,16485,16485, 16485,16485,16485,16485,16485,16485,16485, 0, 0, 0, 0, 0, 0,16485,16485,16485,16485,16485,16485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16485,16485,16485,16485,16485,16485,16488,16488,16488,16488, 16488,16488,16488,16488,16488, 0, 0, 0, 0, 0, 0, 0,16488,16488,16488,16488,16488,16488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16488, 16488,16488,16488,16488,16488,16491,16491,16491,16491,16491, 16491,16491,16491,16491,16491, 0, 0, 0, 0, 0, 0,16491,16491,16491,16491,16491,16491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16491,16491, 16491,16491,16491,16491,16494,16494,16494,16494,16494,16494, 16494,16494,16494, 0, 0, 0, 0, 0, 0, 0, 16494,16494,16494,16494,16494,16494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16494,16494,16494, 16494,16494,16494,16497,16497,16497,16497,16497,16497,16497, 16497,16497,16497, 0, 0, 0, 0, 0, 0,16497, 16497,16497,16497,16497,16497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16497,16497,16497,16497, 16497,16497,16503,16503,16503,16503,16503,16503,16503,16503, 16503, 0, 0, 0, 0, 0, 0, 0,16503,16503, 16503,16503,16503,16503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16503,16503,16503,16503,16503, 16503,16506,16506,16506,16506,16506,16506,16506,16506,16506, 16506, 0, 0, 0, 0, 0, 0,16506,16506,16506, 16506,16506,16506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16506,16506,16506,16506,16506,16506, 16510,16510,16510,16510,16510,16510,16510,16510,16510,16510, 0, 0, 0, 0, 0, 0,16510,16510,16510,16510, 16510,16510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16510,16510,16510,16510,16510,16510,16534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16534,16534,16534,16534,16534,16534,16534,16534,16534, 0, 16534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16534,16534,16536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16536,16536, 16536,16536,16536,16536,16536,16536,16536, 0,16536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16536,16540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16540,16540,16540,16540, 16540,16540,16540,16540,16540, 0,16540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16540,16578,16578, 0, 0, 0, 0, 0, 0, 0,16578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16578, 0, 0, 0, 0, 0, 0,16578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16578, 0,16578, 0,16578, 0, 0,16578,16578, 0, 0, 0,16578, 0, 0,16578, 0,16578, 0,16578, 0,16578,16578, 16578,16579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16579,16579, 0, 0, 0, 0, 0, 16579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16579, 0,16579, 0,16579, 0, 0,16579,16579, 0, 0, 0,16579, 0, 0, 16579, 0,16579, 0,16579, 0,16579,16579,16579,16580, 0,16580, 0, 0, 0, 0, 0, 0,16580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16580, 0, 0, 0, 0, 0, 0, 16580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16580, 0,16580,16580,16580, 0, 0,16580,16580, 0, 0, 0,16580, 0, 0, 16580, 0,16580, 0,16580, 0,16580,16580,16580,16581, 0,16581, 0, 0, 0, 0, 0, 0,16581, 0, 0,16581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16581, 0, 0, 0, 0, 0, 0, 16581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16581, 0,16581,16581,16581, 0, 0,16581,16581, 0, 0, 0,16581, 0, 0, 16581, 0,16581, 0,16581, 0,16581,16581,16581,16582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16582, 0, 0, 0, 0, 0, 0,16582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16582, 0,16582, 0,16582, 0, 0, 16582,16582, 0, 0, 0,16582, 0, 0,16582, 0, 16582, 0,16582, 0,16582,16582,16582,16584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16584, 0, 0, 0, 0, 0, 0,16584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16584, 0,16584, 0,16584, 0, 0,16584,16584, 0, 0, 0,16584, 0, 0,16584, 0,16584, 0, 16584, 0,16584,16584,16584,16585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16585, 0, 0, 0, 0, 0, 0,16585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16585, 0,16585, 0,16585, 0, 0,16585,16585, 0, 0, 0,16585, 0, 0,16585, 0,16585, 0,16585, 0, 16585,16585,16585,16603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16603, 0, 0, 0, 0, 0, 0,16603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16603,16603,16603, 0,16603, 0, 0,16603,16603, 0, 0, 0,16603, 0, 0,16603, 0,16603, 0,16603, 0,16603,16603, 16603,16605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16605, 0, 0, 0, 0, 0, 0, 16605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16605, 0,16605, 0,16605, 0, 0,16605,16605, 0, 0, 0,16605,16605, 0, 16605, 0,16605, 0,16605, 0,16605,16605,16605,16606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16606, 0, 0, 0, 0, 0, 0,16606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16606, 0,16606, 0,16606, 0, 0, 16606,16606, 0, 0, 0,16606, 0, 0,16606, 0, 16606, 0,16606, 0,16606,16606,16606,16607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16607, 0, 0, 0, 0, 0, 0,16607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16607, 0,16607, 0,16607, 0, 0,16607,16607, 0, 0, 0,16607,16607, 0,16607, 0,16607, 0, 16607, 0,16607,16607,16607,16608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16608, 0, 0, 0, 0, 0, 0,16608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16608, 0,16608, 0,16608, 0, 0,16608,16608, 0, 0, 0,16608, 0, 0,16608, 0,16608, 0,16608,16608, 16608,16608,16608,16609,16609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16609, 0,16609, 0, 0, 0, 0,16609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16609, 0,16609, 0,16609, 0, 0,16609,16609, 0, 0, 0,16609, 0, 0,16609, 0,16609, 0,16609, 0,16609,16609, 16609,16610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16610, 0, 0, 0, 0, 0, 0, 16610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16610, 0,16610, 0,16610, 0, 0,16610,16610, 0, 0, 0,16610, 0, 0, 16610, 0,16610, 0,16610, 0,16610,16610,16610,16612, 0,16612, 0, 0, 0, 0, 0, 0,16612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16612, 0, 0, 0, 0, 0, 0, 16612, 0, 0,16612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16612, 0,16612, 0,16612, 0, 0,16612,16612, 0, 0, 0,16612, 0, 0, 16612, 0,16612, 0,16612, 0,16612,16612,16612,16613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16613, 0, 0, 0, 0, 0, 0,16613, 0, 0, 0, 0, 0,16613, 0, 0, 0, 0, 0, 0, 0, 0,16613, 0,16613, 0,16613, 0, 0, 16613,16613, 0, 0, 0,16613, 0, 0,16613, 0, 16613, 0,16613, 0,16613,16613,16613,16614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16614, 0, 0, 0, 0, 0,16614,16614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16614, 0,16614, 0,16614, 0, 0,16614,16614, 0, 0, 0,16614, 0, 0,16614, 0,16614, 0, 16614, 0,16614,16614,16614,16615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16615, 0, 0, 0, 0, 0, 0,16615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16615, 0,16615,16615,16615, 0, 0,16615,16615, 0, 0, 0,16615, 0, 0,16615, 0,16615, 0,16615, 0, 16615,16615,16615,16616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16616, 0, 0, 0, 0, 0, 0,16616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16616, 0,16616, 16616,16616, 0, 0,16616,16616, 0, 0, 0,16616, 0, 0,16616, 0,16616, 0,16616, 0,16616,16616, 16616,16617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16617, 0, 0, 0, 0, 0, 0, 16617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16617, 0,16617, 0,16617, 0, 0,16617,16617, 0, 0, 0,16617, 0, 0, 16617, 0,16617, 0,16617, 0,16617,16617,16617,16617, 16618, 0, 0, 0, 0, 0, 0, 0,16618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16618, 0, 0, 0, 0, 0, 0,16618, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16618, 0,16618, 0,16618, 0, 0,16618,16618, 0, 0, 0,16618,16618, 0,16618, 0,16618, 0,16618, 0,16618,16618,16618,16625, 0, 16625, 0, 0, 0, 0, 0, 0,16625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16625, 0, 0, 0, 0, 0, 0,16625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16625, 0,16625,16625,16625, 0, 0,16625,16625, 0, 0, 0,16625, 0, 0,16625, 0,16625, 0,16625, 0,16625,16625,16625,16648, 0, 16648, 0, 0, 0, 0, 0, 0,16648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16648, 0, 0, 0, 0, 0, 0,16648, 0, 0,16648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16648, 0,16648, 0,16648, 0, 0,16648,16648, 0, 0, 0,16648, 0, 0,16648, 0,16648, 0,16648, 0,16648,16648,16648,16649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16649, 0, 0, 0, 0, 0, 0,16649, 0, 0, 0, 0, 0,16649, 0, 0, 0, 0, 0, 0, 0, 0,16649, 0,16649, 0,16649, 0, 0,16649, 16649, 0, 0, 0,16649, 0, 0,16649, 0,16649, 0,16649, 0,16649,16649,16649,16650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16650, 0, 0, 0, 0, 0,16650,16650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16650, 0,16650, 0,16650, 0, 0,16650,16650, 0, 0, 0,16650, 0, 0,16650, 0,16650, 0,16650, 0,16650,16650,16650,16651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16651, 0, 0, 0, 0, 0, 0,16651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16651, 0, 16651,16651,16651, 0, 0,16651,16651, 0, 0, 0, 16651, 0, 0,16651, 0,16651, 0,16651, 0,16651, 16651,16651,16652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16652, 0, 0, 0, 0, 0, 0,16652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16652, 0,16652,16652, 16652, 0, 0,16652,16652, 0, 0, 0,16652, 0, 0,16652, 0,16652, 0,16652, 0,16652,16652,16652, 16653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16653, 0, 0, 0, 0, 0, 0,16653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16653, 0,16653, 0,16653, 0, 0,16653,16653, 0, 0, 0,16653, 0, 0,16653, 0,16653, 0,16653, 0,16653,16653,16653,16653,16654, 0, 0, 0, 0, 0, 0, 0,16654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16654, 0, 0, 0, 0, 0, 0,16654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16654, 0,16654, 0,16654, 0, 0, 16654,16654, 0, 0, 0,16654,16654, 0,16654, 0, 16654, 0,16654, 0,16654,16654,16654,16661, 0,16661, 0, 0, 0, 0, 0, 0,16661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16661, 0, 0, 0, 0, 0, 0,16661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16661, 0,16661,16661,16661, 0, 0, 16661,16661, 0, 0, 0,16661, 0, 0,16661, 0, 16661, 0,16661, 0,16661,16661,16661,16684, 0,16684, 0, 0, 0, 0, 0, 0,16684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16684, 0, 0, 0, 0, 0, 0,16684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16684, 0,16684, 0,16684, 0, 0, 16684,16684, 0, 0, 0,16684,16684, 0,16684, 0, 16684, 0,16684, 0,16684,16684,16684,16685, 0,16685, 0, 0, 0, 0, 0, 0,16685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16685, 0, 0, 0, 0, 0, 0, 0, 0,16685, 0, 0, 0, 0, 0, 0,16685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16685, 0,16685, 0,16685, 0, 0, 16685,16685, 0, 0, 0,16685, 0, 0,16685, 0, 16685, 0,16685, 0,16685,16685,16685,16686, 0, 0, 0, 0, 0, 0, 0, 0, 0,16686,16686,16686, 16686,16686,16686,16686,16686,16686,16686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16686, 0, 0, 0, 0, 0, 0,16686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16686, 0,16686, 0,16686, 0, 0,16686,16686, 0, 0, 0,16686, 0, 0,16686, 0,16686, 0, 16686, 0,16686,16686,16686,16687, 0, 0, 0, 0, 0, 0, 0, 0, 0,16687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16687, 0, 0, 0, 0, 0, 0,16687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16687, 0,16687,16687,16687, 0, 0,16687,16687, 0, 0, 0,16687, 0,16687,16687, 0,16687, 0,16687, 0, 16687,16687,16687,16698, 0,16698, 0, 0, 0, 0, 0, 0,16698, 0, 0,16698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16698, 0, 0, 0, 0, 0, 0,16698, 0, 0, 0, 0, 0, 16698, 0, 0, 0, 0, 0, 0, 0, 0,16698, 0,16698, 0,16698, 0, 0,16698,16698, 0, 0, 0,16698, 0, 0,16698, 0,16698, 0,16698, 0, 16698,16698,16698,16699, 0,16699, 0, 0, 0, 0, 0, 0,16699, 0, 0,16699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16699, 0, 0, 0, 0, 0, 0,16699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16699, 0,16699, 0,16699, 0, 0,16699,16699, 0, 0, 0,16699,16699, 0,16699, 0,16699, 0,16699, 0, 16699,16699,16699,16724, 0, 0, 0, 0, 0, 0, 0, 0, 0,16724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16724, 0, 0, 0, 0, 0, 0,16724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16724, 0,16724, 0,16724, 0, 0,16724,16724, 0, 0, 0,16724, 0, 0,16724, 0,16724, 0,16724, 0,16724,16724, 16724,16725, 0, 0, 0, 0, 0, 0, 0, 0, 0,16725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16725, 0, 0, 0, 0, 0, 0, 16725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16725, 0,16725,16725,16725, 0, 0,16725,16725, 0, 0, 0,16725,16725, 0, 16725, 0,16725, 0,16725, 0,16725,16725,16725,16726, 0, 0, 0, 0, 0, 0, 0, 0, 0,16726, 0, 0,16726, 0,16726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16726, 0,16726, 0, 0, 0, 0,16726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16726, 0,16726, 0,16726, 0, 0, 16726,16726, 0, 0, 0,16726, 0, 0,16726, 0, 16726, 0,16726, 0,16726,16726,16726,16727,16727, 0, 0, 0, 0, 0, 0, 0, 0,16727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16727, 0, 0, 0, 0, 0, 0,16727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16727, 0,16727, 0,16727, 0, 0,16727,16727, 0, 0, 0,16727, 0, 0,16727, 0,16727, 0, 16727, 0,16727,16727,16727,16732, 0,16732, 0, 0, 0, 0, 0, 0,16732, 0, 0,16732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16732, 0, 0, 0, 0, 0, 0,16732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16732, 0,16732, 0,16732, 0, 0,16732,16732, 0, 0, 0,16732, 0, 0,16732, 0,16732, 0, 16732, 0,16732,16732,16732,16736, 0,16736, 0, 0, 0, 0, 0, 0,16736, 0, 0,16736,16736,16736, 16736,16736,16736,16736,16736,16736,16736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16736, 0, 0, 0, 0, 0, 0,16736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16736, 0,16736, 0,16736, 0, 0,16736,16736, 0, 0, 0,16736, 0, 0,16736, 0,16736, 0, 16736, 0,16736,16736,16736,16737,16737,16737,16737,16737, 16737,16737,16737,16737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16737,16737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16737, 0, 0, 0, 0,16737, 0, 0, 16737,16738,16738,16738,16738,16738,16738,16738,16738,16738, 16738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16738, 0, 0,16738,16739,16739, 16739,16739,16739,16739,16739,16739,16739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16739, 0, 0, 0,16739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16739, 0, 0,16739,16740,16740,16740,16740,16740,16740, 16740,16740,16740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16740, 0, 0,16740, 16741,16741,16741,16741,16741,16741,16741,16741,16741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16741, 0, 0, 0, 0, 0,16741, 0, 0,16741,16742,16742,16742,16742, 16742,16742,16742,16742,16742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16742, 0, 0, 0, 0, 0,16742, 0, 0,16742,16743,16743,16743,16743,16743,16743,16743,16743, 16743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16743, 0, 0, 0, 0, 0,16743, 0, 0,16743,16744,16744, 16744,16744,16744,16744,16744,16744,16744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16744,16744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16744, 0, 0,16744,16745,16745,16745,16745,16745,16745, 16745,16745,16745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16745, 0, 0, 0,16745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16745,16745, 0,16745, 16746,16746,16746,16746,16746,16746,16746,16746,16746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16746, 0, 0, 0, 0, 0, 0, 0, 0,16746, 0,16746, 0, 0, 0, 0, 0,16746, 0, 0,16746,16747,16747,16747,16747, 16747,16747,16747,16747,16747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16747, 0,16747, 0, 0, 0, 0, 0,16747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16747, 0, 0,16747, 0,16747,16748,16748,16748,16748,16748,16748, 16748,16748,16748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16748, 0, 0,16748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16748, 0, 0,16748, 16749,16749,16749,16749,16749,16749,16749,16749,16749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16749, 0, 0, 0, 0, 0,16749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16749, 0, 0,16749,16750,16750,16750,16750, 16750,16750,16750,16750,16750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16750, 0, 0, 0, 0, 0,16750, 0, 0,16750,16756, 0,16756, 0, 0, 0, 0, 0, 0,16756, 0, 0,16756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16756, 0, 0, 0, 0, 0, 0,16756, 0, 0, 0, 0, 0,16756, 0, 0, 0, 0, 0, 0, 0, 0,16756, 0, 16756, 0,16756, 0, 0,16756,16756, 0, 0, 0, 16756, 0, 0,16756, 0,16756, 0,16756, 0,16756, 16756,16756,16757, 0, 0, 0, 0, 0, 0, 0, 0, 0,16757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16757, 0, 0, 0, 0, 0, 0,16757, 0, 0, 0, 0, 0,16757, 0, 0, 0, 0, 0, 0, 0, 0,16757, 0,16757, 0, 16757, 0, 0,16757,16757, 0, 0, 0,16757, 0, 0,16757, 0,16757, 0,16757, 0,16757,16757,16757, 16758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16758, 0, 0, 0, 0, 0, 0,16758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16758, 0,16758, 0,16758, 0, 16758,16758,16758, 0, 0, 0,16758, 0,16758,16758, 0,16758, 0,16758, 0,16758,16758,16758,16778, 0, 16778, 0, 0, 0, 0, 0, 0,16778, 0, 0, 16778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16778, 0, 0, 0, 0, 0, 0,16778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16778, 0,16778, 0,16778, 0, 0,16778,16778, 0, 0, 0,16778,16778, 0,16778, 0,16778, 0,16778, 0,16778,16778,16778,16798, 0, 16798, 0, 0, 0, 0, 0, 0,16798, 0, 0, 16798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16798, 0, 0, 0, 0, 0, 0,16798, 0, 0, 0, 0, 0,16798, 0, 0, 0, 0, 0, 0, 0, 0,16798, 0,16798, 0,16798, 0, 0,16798,16798, 0, 0, 0,16798, 0, 0,16798, 0,16798, 0,16798, 0,16798,16798,16798,16799, 0, 0, 0, 0, 0, 0, 0, 0, 0,16799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16799, 0, 0, 0, 0, 0, 0,16799, 0, 0, 0, 0, 0,16799, 0, 0, 0, 0, 0, 0, 0, 0,16799, 0,16799, 0,16799, 0, 0,16799, 16799, 0, 0, 0,16799, 0, 0,16799, 0,16799, 0,16799, 0,16799,16799,16799,16800, 0, 0, 0, 0, 0, 0, 0, 0, 0,16800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16800, 0, 0, 0, 0, 0, 0,16800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16800, 0,16800, 0,16800, 0,16800,16800,16800, 0, 0, 0,16800, 0,16800,16800, 0,16800, 0,16800, 0,16800,16800,16800,16820, 0,16820, 0, 0, 0, 0, 0, 0,16820, 0, 0,16820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16820, 0, 0, 0, 0, 0, 0,16820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16820, 0,16820, 0,16820, 0, 0,16820,16820, 0, 0, 0,16820,16820, 0,16820, 0,16820, 0,16820, 0,16820,16820,16820,16840, 0,16840, 0, 0, 0, 0, 0, 0,16840, 0, 0,16840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16840, 0, 0, 0, 0, 0, 0,16840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16840, 0,16840, 0,16840, 0, 0,16840,16840, 0, 0, 0,16840, 0, 0,16840, 0,16840, 0,16840, 0,16840,16840,16840,16841, 0,16841, 0, 0, 0, 0, 0, 0,16841, 0, 0,16841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16841, 0, 0, 0, 0, 0, 0,16841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16841, 0,16841, 0,16841, 0, 0,16841,16841, 0, 0, 0,16841, 0,16841,16841, 0,16841, 0,16841, 0,16841,16841,16841,16842,16842,16842,16842,16842,16842, 16842,16842,16842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16842,16842, 0, 0, 0,16842, 0, 0,16842, 16851,16851,16851,16851,16851,16851,16851,16851, 0, 0, 16851,16851,16851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16851,16851,16851,16851,16851, 16851, 0, 0, 0, 0, 0,16851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16851,16851,16851,16851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16851, 16857, 0,16857, 0, 0,16857,16857,16857,16857,16857, 16857,16857,16857,16857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16857, 0, 0,16857,16865,16865, 0, 16865,16865,16865,16865,16865,16865,16865,16865,16865, 0, 16865,16865, 0, 0, 0, 0, 0, 0, 0, 0, 0,16865,16865,16865,16865,16865,16865,16865, 0, 0, 0, 0, 0,16865, 0, 0, 0, 0, 0,16865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16865,16865,16865,16868,16868, 0,16868,16868,16868, 16868,16868,16868,16868,16868,16868, 0,16868,16868, 0, 0, 0, 0, 0, 0, 0, 0, 0,16868,16868, 16868,16868,16868,16868,16868, 0, 0, 0, 0, 0, 16868, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16868,16868, 16868,16868,16869,16869, 0,16869,16869,16869,16869,16869, 16869,16869,16869,16869, 0,16869,16869, 0, 0, 0, 0, 0, 0, 0, 0, 0,16869,16869,16869,16869, 16869,16869,16869,16869, 0, 0, 0, 0,16869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16869,16869,16869,16869, 16870,16870, 0,16870,16870,16870,16870,16870,16870,16870, 16870,16870, 0,16870,16870, 0, 0, 0, 0, 0, 0, 0, 0, 0,16870,16870,16870,16870,16870,16870, 16870, 0, 0, 0, 0, 0,16870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16870,16870,16870,16872,16872, 0, 16872,16872,16872,16872,16872,16872,16872,16872,16872, 0, 16872,16872, 0, 0, 0, 0, 0, 0, 0, 0, 0,16872,16872,16872,16872,16872,16872,16872,16872, 0, 0, 0, 0,16872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16872,16872,16872,16880,16880, 0,16880,16880,16880, 16880,16880,16880,16880,16880,16880, 0,16880,16880, 0, 0, 0, 0, 0, 0, 0, 0, 0,16880,16880, 16880,16880,16880,16880,16880, 0, 0, 0, 0, 0, 16880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16880,16880, 16880,16880,16881,16881, 0,16881,16881,16881,16881,16881, 16881,16881,16881,16881, 0,16881,16881, 0, 0, 0, 0, 0, 0, 0, 0, 0,16881,16881,16881,16881, 16881,16881,16881,16881, 0, 0, 0, 0,16881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16881,16881,16881,16881, 16882,16882, 0,16882,16882,16882,16882,16882,16882,16882, 16882,16882, 0,16882,16882, 0, 0, 0, 0, 0, 0, 0, 0, 0,16882,16882,16882,16882,16882,16882, 16882, 0, 0, 0, 0, 0,16882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16882,16882,16882,16884,16884, 0, 16884,16884,16884,16884,16884,16884,16884,16884,16884, 0, 16884,16884, 0, 0, 0, 0, 0, 0, 0, 0, 0,16884,16884,16884,16884,16884,16884,16884,16884, 0, 0, 0, 0,16884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16884,16884,16884,16895,16895, 0,16895,16895,16895, 16895,16895,16895,16895,16895,16895, 0,16895,16895, 0, 0, 0, 0, 0, 0, 0, 0, 0,16895,16895, 16895,16895,16895,16895,16895, 0, 0, 0, 0, 0, 16895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16895,16895, 16895,16896,16896, 0,16896,16896,16896,16896,16896,16896, 16896,16896,16896, 0,16896,16896, 0, 0, 0, 0, 0, 0, 0, 0, 0,16896,16896,16896,16896,16896, 16896,16896,16896, 0, 0, 0, 0,16896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16896,16896,16896,16898,16898, 0,16898,16898,16898,16898,16898,16898,16898,16898,16898, 0,16898,16898, 0, 0, 0, 0, 0, 0, 0, 0, 0,16898,16898,16898,16898,16898,16898,16898, 0, 0, 0, 0, 0,16898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16898,16898,16898,16899,16899, 0,16899,16899, 16899,16899,16899,16899,16899,16899,16899, 0,16899,16899, 0, 0, 0, 0, 0, 0, 0, 0, 0,16899, 16899,16899,16899,16899,16899,16899,16899, 0, 0, 0, 0,16899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16899, 16899,16899,16900,16900, 0,16900,16900,16900,16900,16900, 16900,16900,16900,16900, 0,16900,16900, 0, 0, 0, 0, 0, 0, 0, 0, 0,16900,16900,16900,16900, 16900,16900,16900, 0, 0, 0, 0, 0,16900, 0, 16900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16900,16900,16900, 0, 0, 0, 0, 0, 0, 0, 0,16900,16901,16901, 0,16901,16901,16901,16901,16901,16901,16901,16901,16901, 0,16901,16901, 0, 0, 0, 0, 0, 0, 0, 0, 0,16901,16901,16901,16901,16901,16901,16901, 0, 0, 0, 0, 0,16901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16901,16901,16901,16901,16902,16902, 0,16902, 16902,16902,16902,16902,16902,16902,16902,16902, 0,16902, 16902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16902,16902,16902,16902,16902,16902,16902, 0, 0, 0, 0, 0,16902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16902,16902,16902,16902,16903,16903, 0,16903,16903,16903, 16903,16903,16903,16903,16903,16903, 0,16903,16903, 0, 0, 0, 0, 0, 0, 0, 0, 0,16903,16903, 16903,16903,16903,16903,16903,16903, 0, 0, 0, 0, 16903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16903,16903, 16903,16903,16907,16907, 0,16907,16907,16907,16907,16907, 16907,16907,16907,16907, 0,16907,16907, 0, 0, 0, 0, 0, 0, 0, 0, 0,16907,16907,16907,16907, 16907,16907,16907, 0, 0, 0, 0, 0,16907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16907,16907,16907,16908, 16908, 0,16908,16908,16908,16908,16908,16908,16908,16908, 16908, 0,16908,16908, 0, 0, 0, 0, 0, 0, 0, 0, 0,16908,16908,16908,16908,16908,16908,16908, 16908, 0, 0, 0, 0,16908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16908,16908,16908,16913,16913, 0,16913, 16913,16913,16913,16913,16913,16913,16913,16913, 0,16913, 16913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16913,16913,16913,16913,16913,16913,16913, 0, 0, 0, 0, 0,16913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16913,16913,16913,16913,16914,16914, 0,16914,16914,16914, 16914,16914,16914,16914,16914,16914, 0,16914,16914, 0, 0, 0, 0, 0, 0, 0, 0, 0,16914,16914, 16914,16914,16914,16914,16914,16914, 0, 0, 0, 0, 16914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16914,16914, 16914,16914,16915,16915, 0,16915,16915,16915,16915,16915, 16915,16915,16915,16915, 0,16915,16915, 0, 0, 0, 0, 0, 0, 0, 0, 0,16915,16915,16915,16915, 16915,16915,16915, 0, 0, 0, 0, 0,16915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16915,16915,16915,16917, 16917, 0,16917,16917,16917,16917,16917,16917,16917,16917, 16917, 0,16917,16917, 0, 0, 0, 0, 0, 0, 0, 0, 0,16917,16917,16917,16917,16917,16917,16917, 16917, 0, 0, 0, 0,16917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16917,16917,16917,16927,16927,16927,16927, 16927,16927,16927,16927,16927,16927, 0, 0, 0, 0, 0, 0,16927,16927,16927,16927,16927,16927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16927, 16927,16927,16927,16927,16927,16929,16929,16929,16929,16929, 16929,16929,16929,16929,16929, 0, 0, 0, 0, 0, 0,16929,16929,16929,16929,16929,16929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16929,16929, 16929,16929,16929,16929,16932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16932,16932,16932,16932,16932, 16932,16932,16932,16932,16932, 0, 0, 0, 0, 0, 0,16932,16932,16932,16932,16932,16932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16932,16932, 16932,16932,16932,16932,16937,16937,16937,16937,16937,16937, 16937,16937,16937,16937, 0, 0, 0, 0, 0, 0, 16937,16937,16937,16937,16937,16937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16937,16937,16937, 16937,16937,16937,16940,16940,16940,16940,16940,16940,16940, 16940,16940,16940, 0, 0, 0, 0, 0, 0,16940, 16940,16940,16940,16940,16940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16940,16940,16940,16940, 16940,16940,16947,16947,16947,16947,16947,16947,16947,16947, 16947,16947, 0, 0, 0, 0, 0, 0,16947,16947, 16947,16947,16947,16947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16947,16947,16947,16947,16947, 16947,16950,16950,16950,16950,16950,16950,16950,16950,16950, 16950, 0, 0, 0, 0, 0, 0,16950,16950,16950, 16950,16950,16950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16950,16950,16950,16950,16950,16950, 16957,16957,16957,16957,16957,16957,16957,16957,16957, 0, 0, 0, 0, 0, 0, 0,16957,16957,16957,16957, 16957,16957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16957,16957,16957,16957,16957,16957,16958, 16958,16958,16958,16958,16958,16958,16958,16958,16958, 0, 0, 0, 0, 0, 0,16958,16958,16958,16958,16958, 16958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16958,16958,16958,16958,16958,16958,16961,16961, 16961,16961,16961,16961,16961,16961,16961,16961, 0, 0, 0, 0, 0, 0,16961,16961,16961,16961,16961,16961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16961,16961,16961,16961,16961,16961,16968,16968,16968, 16968,16968,16968,16968,16968,16968, 0, 0, 0, 0, 0, 0, 0,16968,16968,16968,16968,16968,16968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16968,16968,16968,16968,16968,16968,16969, 0,16969,16969, 16969,16969,16969,16969,16969,16969,16969,16969, 0, 0, 0, 0, 0, 0,16969,16969,16969,16969,16969,16969, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16969,16969,16969,16969,16969,16969,16976,16976,16976, 16976,16976,16976,16976,16976,16976,16976, 0, 0, 0, 0, 0, 0,16976,16976,16976,16976,16976,16976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16976,16976,16976,16976,16976,16976,16978,16978,16978,16978, 16978,16978,16978,16978,16978, 0, 0, 0, 0, 0, 0, 0,16978,16978,16978,16978,16978,16978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16978, 16978,16978,16978,16978,16978,16986,16986,16986,16986,16986, 16986,16986,16986,16986,16986, 0, 0, 0, 0, 0, 0,16986,16986,16986,16986,16986,16986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16986,16986, 16986,16986,16986,16986,16994,16994,16994,16994,16994,16994, 16994,16994,16994,16994, 0, 0, 0, 0, 0, 0, 16994,16994,16994,16994,16994,16994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16994,16994,16994, 16994,16994,16994,16995,16995, 0,16995,16995,16995,16995, 16995,16995,16995,16995,16995, 0,16995,16995, 0, 0, 0, 0, 0, 0, 0, 0, 0,16995,16995,16995, 16995,16995,16995,16995, 0, 0, 0, 0, 0,16995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16995,16995,16995, 16996,16996, 0,16996,16996,16996,16996,16996,16996,16996, 16996,16996, 0,16996,16996, 0, 0, 0, 0, 0, 0, 0, 0, 0,16996,16996,16996,16996,16996,16996, 16996, 0, 0, 0, 0, 0,16996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16996,16996,16996,16997,16997, 0, 16997,16997,16997,16997,16997,16997,16997,16997,16997, 0, 16997,16997, 0, 0, 0, 0, 0, 0, 0, 0, 0,16997,16997,16997,16997,16997,16997,16997,16997, 0, 0, 0, 0,16997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,16997,16997,16997,17001,17001, 0,17001,17001,17001, 17001,17001,17001,17001,17001,17001, 0,17001,17001, 0, 0, 0, 0, 0, 0, 0, 0, 0,17001,17001, 17001,17001,17001,17001,17001, 0, 0, 0, 0, 0, 17001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17001,17001, 17001,17002,17002, 0,17002,17002,17002,17002,17002,17002, 17002,17002,17002, 0,17002,17002, 0, 0, 0, 0, 0, 0, 0, 0, 0,17002,17002,17002,17002,17002, 17002,17002,17002, 0, 0, 0, 0,17002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17002,17002,17002,17006,17006, 0,17006,17006,17006,17006,17006,17006,17006,17006,17006, 0,17006,17006, 0, 0, 0, 0, 0, 0, 0, 0, 0,17006,17006,17006,17006,17006,17006,17006, 0, 0, 0, 0, 0,17006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17006,17006,17006,17007,17007, 0,17007,17007, 17007,17007,17007,17007,17007,17007,17007, 0,17007,17007, 0, 0, 0, 0, 0, 0, 0, 0, 0,17007, 17007,17007,17007,17007,17007,17007,17007, 0, 0, 0, 0,17007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17007, 17007,17007,17011,17011, 0,17011,17011,17011,17011,17011, 17011,17011,17011,17011, 0,17011,17011, 0, 0, 0, 0, 0, 0, 0, 0, 0,17011,17011,17011,17011, 17011,17011,17011, 0, 0, 0, 0, 0,17011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17011,17011,17011,17012, 17012, 0,17012,17012,17012,17012,17012,17012,17012,17012, 17012, 0,17012,17012, 0, 0, 0, 0, 0, 0, 0, 0, 0,17012,17012,17012,17012,17012,17012,17012, 17012, 0, 0, 0, 0,17012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17012,17012,17012,17015,17015, 0,17015, 17015,17015,17015,17015,17015,17015,17015,17015, 0,17015, 17015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17015,17015,17015,17015,17015,17015,17015, 0, 0, 0, 0, 0,17015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17015,17015,17015,17016,17016, 0,17016,17016,17016,17016, 17016,17016,17016,17016,17016, 0,17016,17016, 0, 0, 0, 0, 0, 0, 0, 0, 0,17016,17016,17016, 17016,17016,17016,17016,17016, 0, 0, 0, 0,17016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17016,17016,17016, 17018,17018, 0,17018,17018,17018,17018,17018,17018,17018, 17018,17018, 0,17018,17018, 0, 0, 0, 0, 0, 0, 0, 0, 0,17018,17018,17018,17018,17018,17018, 17018, 0, 0, 0, 0, 0,17018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17018,17018,17018,17019,17019, 0, 17019,17019,17019,17019,17019,17019,17019,17019,17019, 0, 17019,17019, 0, 0, 0, 0, 0, 0, 0, 0, 0,17019,17019,17019,17019,17019,17019,17019,17019, 0, 0, 0, 0,17019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17019,17019,17019,17020,17020, 0,17020,17020,17020, 17020,17020,17020,17020,17020,17020,17020,17020,17020, 0, 0, 0, 0, 0, 0, 0, 0, 0,17020,17020, 17020,17020,17020,17020,17020,17020, 0, 0, 0, 0, 17020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17020,17020, 17020,17020,17020,17021,17021, 0,17021,17021,17021,17021, 17021,17021,17021,17021,17021, 0,17021,17021, 0, 0, 0, 0, 0, 0, 0, 0, 0,17021,17021,17021, 17021,17021,17021,17021, 0, 0, 0, 0, 0,17021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17021,17021,17021, 17022,17022, 0,17022,17022,17022,17022,17022,17022,17022, 17022,17022, 0,17022,17022, 0, 0, 0, 0, 0, 0, 0, 0, 0,17022,17022,17022,17022,17022,17022, 17022,17022, 0, 0, 0, 0,17022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17022,17022,17022,17025,17025, 0, 17025,17025,17025,17025,17025,17025,17025,17025,17025, 0, 17025,17025, 0, 0, 0, 0, 0, 0, 0, 0, 0,17025,17025,17025,17025,17025,17025,17025, 0, 0, 0, 0, 0,17025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17025,17025,17025,17026,17026, 0,17026,17026,17026, 17026,17026,17026,17026,17026,17026, 0,17026,17026, 0, 0, 0, 0, 0, 0, 0, 0, 0,17026,17026, 17026,17026,17026,17026,17026,17026, 0, 0, 0, 0, 17026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17026,17026, 17026,17028,17028, 0,17028,17028,17028,17028,17028,17028, 17028,17028,17028, 0,17028,17028, 0, 0, 0, 0, 0, 0, 0, 0, 0,17028,17028,17028,17028,17028, 17028,17028, 0, 0, 0, 0, 0,17028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17028,17028,17028,17029,17029, 0,17029,17029,17029,17029,17029,17029,17029,17029,17029, 0,17029,17029, 0, 0, 0, 0, 0, 0, 0, 0, 0,17029,17029,17029,17029,17029,17029,17029,17029, 0, 0, 0, 0,17029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17029,17029,17029,17030,17030, 0,17030,17030, 17030,17030,17030,17030,17030,17030,17030,17030,17030,17030, 0, 0, 0, 0, 0, 0, 0, 0, 0,17030, 17030,17030,17030,17030,17030,17030,17030, 0, 0, 0, 0,17030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17030, 17030,17030,17030,17030,17041,17041,17041,17041,17041,17041, 17041,17041,17041,17041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17041, 0,17041,17043,17043, 0, 17043,17043,17043,17043,17043,17043,17043,17043,17043, 0, 17043,17043, 0, 0, 0, 0, 0, 0, 0, 0, 0,17043,17043,17043,17043,17043,17043,17043, 0, 0, 0, 0, 0,17043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17043,17043,17043,17044,17044, 0,17044,17044,17044, 17044,17044,17044,17044,17044,17044, 0,17044,17044, 0, 0, 0, 0, 0, 0, 0, 0, 0,17044,17044, 17044,17044,17044,17044,17044,17044, 0, 0, 0, 0, 17044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17044,17044, 17044,17048,17048, 0,17048,17048,17048,17048,17048,17048, 17048,17048,17048, 0,17048,17048, 0, 0, 0, 0, 0, 0, 0, 0, 0,17048,17048,17048,17048,17048, 17048,17048, 0, 0, 0, 0, 0,17048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17048,17048,17048,17049,17049, 0,17049,17049,17049,17049,17049,17049,17049,17049,17049, 0,17049,17049, 0, 0, 0, 0, 0, 0, 0, 0, 0,17049,17049,17049,17049,17049,17049,17049,17049, 0, 0, 0, 0,17049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17049,17049,17049,17052,17052, 0,17052,17052, 17052,17052,17052,17052,17052,17052,17052, 0,17052,17052, 0, 0, 0, 0, 0, 0, 0, 0, 0,17052, 17052,17052,17052,17052,17052,17052, 0, 0, 0, 0, 0,17052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17052, 17052,17052,17053,17053, 0,17053,17053,17053,17053,17053, 17053,17053,17053,17053, 0,17053,17053, 0, 0, 0, 0, 0, 0, 0, 0, 0,17053,17053,17053,17053, 17053,17053,17053,17053, 0, 0, 0, 0,17053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17053,17053,17053,17056, 17056, 0,17056,17056,17056,17056,17056,17056,17056,17056, 17056, 0,17056,17056, 0, 0, 0, 0, 0, 0, 0, 0, 0,17056,17056,17056,17056,17056,17056,17056, 0, 0, 0, 0, 0,17056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17056,17056,17056,17057,17057, 0,17057, 17057,17057,17057,17057,17057,17057,17057,17057, 0,17057, 17057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17057,17057,17057,17057,17057,17057,17057,17057, 0, 0, 0, 0,17057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17057,17057,17057,17059,17059, 0,17059,17059,17059,17059, 17059,17059,17059,17059,17059, 0,17059,17059, 0, 0, 0, 0, 0, 0, 0, 0, 0,17059,17059,17059, 17059,17059,17059,17059, 0, 0, 0, 0, 0,17059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17059,17059,17059, 17060,17060, 0,17060,17060,17060,17060,17060,17060,17060, 17060,17060, 0,17060,17060, 0, 0, 0, 0, 0, 0, 0, 0, 0,17060,17060,17060,17060,17060,17060, 17060,17060, 0, 0, 0, 0,17060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17060,17060,17060,17061,17061, 0, 17061,17061,17061,17061,17061,17061,17061,17061,17061, 0, 17061,17061, 0, 0, 0, 0, 0, 0, 0, 0, 0,17061,17061,17061,17061,17061,17061,17061, 0, 0, 0, 0, 0,17061,17061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17061,17061,17061, 0, 0, 0, 0, 0, 0, 0,17061,17062,17062, 0,17062,17062,17062,17062,17062, 17062,17062,17062,17062, 0,17062,17062, 0,17062,17062, 17062,17062,17062,17062,17062,17062,17062,17062,17062,17062, 17062,17062,17062, 0, 0, 0, 0, 0,17062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17062,17062,17062,17063, 17063, 0,17063,17063,17063,17063,17063,17063,17063,17063, 17063, 0,17063,17063, 0, 0, 0, 0, 0, 0, 0, 0, 0,17063,17063,17063,17063,17063,17063,17063, 0, 0, 0, 0, 0,17063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17063,17063,17063,17064,17064, 0,17064, 17064,17064,17064,17064,17064,17064,17064,17064, 0,17064, 17064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17064,17064,17064,17064,17064,17064,17064, 0, 0, 0, 0, 0,17064,17064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17064,17064,17064, 0, 0, 0, 0, 0, 0, 0, 17064,17066,17066, 0,17066,17066,17066,17066,17066,17066, 17066,17066,17066, 0,17066,17066, 0, 0, 0, 0, 0, 0, 0, 0, 0,17066,17066,17066,17066,17066, 17066,17066, 0, 0, 0, 0, 0,17066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17066,17066,17066,17067,17067, 0,17067,17067,17067,17067,17067,17067,17067,17067,17067, 0,17067,17067, 0, 0, 0, 0, 0, 0, 0, 0, 0,17067,17067,17067,17067,17067,17067,17067,17067, 0, 0, 0, 0,17067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17067,17067,17067,17071,17071, 0,17071,17071, 17071,17071,17071,17071,17071,17071,17071, 0,17071,17071, 0, 0, 0, 0, 0, 0, 0, 0, 0,17071, 17071,17071,17071,17071,17071,17071, 0, 0, 0, 0, 0,17071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17071, 17071,17071,17072,17072, 0,17072,17072,17072,17072,17072, 17072,17072,17072,17072, 0,17072,17072, 0, 0, 0, 0, 0, 0, 0, 0, 0,17072,17072,17072,17072, 17072,17072,17072,17072, 0, 0, 0, 0,17072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17072,17072,17072,17076, 17076, 0,17076,17076,17076,17076,17076,17076,17076,17076, 17076, 0,17076,17076, 0, 0, 0, 0, 0, 0, 0, 0, 0,17076,17076,17076,17076,17076,17076,17076, 0, 0, 0, 0, 0,17076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17076,17076,17076,17077,17077, 0,17077, 17077,17077,17077,17077,17077,17077,17077,17077, 0,17077, 17077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17077,17077,17077,17077,17077,17077,17077,17077, 0, 0, 0, 0,17077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17077,17077,17077,17080,17080, 0,17080,17080,17080,17080, 17080,17080,17080,17080,17080, 0,17080,17080, 0, 0, 0, 0, 0, 0, 0, 0, 0,17080,17080,17080, 17080,17080,17080,17080, 0, 0, 0, 0, 0,17080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17080,17080,17080, 17081,17081, 0,17081,17081,17081,17081,17081,17081,17081, 17081,17081, 0,17081,17081, 0, 0, 0, 0, 0, 0, 0, 0, 0,17081,17081,17081,17081,17081,17081, 17081,17081, 0, 0, 0, 0,17081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17081,17081,17081,17083,17083, 0, 17083,17083,17083,17083,17083,17083,17083,17083,17083, 0, 17083,17083, 0, 0, 0, 0, 0, 0, 0, 0, 0,17083,17083,17083,17083,17083,17083,17083, 0, 0, 0, 0, 0,17083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17083, 0, 0, 0, 0, 0, 0,17083,17083,17083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17083,17084,17084, 0,17084,17084,17084,17084, 17084,17084,17084,17084,17084, 0,17084,17084, 0, 0, 0, 0, 0, 0, 0, 0, 0,17084,17084,17084, 17084,17084,17084,17084, 0, 0, 0, 0, 0,17084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17084,17084,17084, 17085,17085, 0,17085,17085,17085,17085,17085,17085,17085, 17085,17085, 0,17085,17085, 0, 0, 0, 0, 0, 0, 0, 0, 0,17085,17085,17085,17085,17085,17085, 17085,17085, 0, 0, 0, 0,17085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17085,17085,17085,17086,17086, 0, 17086,17086,17086,17086,17086,17086,17086,17086,17086, 0, 17086,17086, 0, 0, 0, 0, 0, 0, 0, 0, 0,17086,17086,17086,17086,17086,17086,17086, 0, 0, 0, 0, 0,17086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17086,17086,17086,17087,17087, 0,17087,17087,17087, 17087,17087,17087,17087,17087,17087, 0,17087,17087, 0, 0, 0, 0, 0, 0, 0, 0, 0,17087,17087, 17087,17087,17087,17087,17087,17087, 0, 0, 0, 0, 17087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17087,17087, 17087,17091,17091, 0,17091,17091,17091,17091,17091,17091, 17091,17091,17091, 0,17091,17091, 0, 0, 0, 0, 0, 0, 0, 0, 0,17091,17091,17091,17091,17091, 17091,17091, 0, 0, 0, 0, 0,17091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17091,17091,17091,17092,17092, 0,17092,17092,17092,17092,17092,17092,17092,17092,17092, 0,17092,17092, 0, 0, 0, 0, 0, 0, 0, 0, 0,17092,17092,17092,17092,17092,17092,17092,17092, 0, 0, 0, 0,17092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17092,17092,17092,17095,17095, 0,17095,17095, 17095,17095,17095,17095,17095,17095,17095, 0,17095,17095, 0, 0, 0, 0, 0, 0, 0, 0, 0,17095, 17095,17095,17095,17095,17095,17095, 0, 0, 0, 0, 0,17095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17095, 17095,17095,17096,17096, 0,17096,17096,17096,17096,17096, 17096,17096,17096,17096, 0,17096,17096, 0, 0, 0, 0, 0, 0, 0, 0, 0,17096,17096,17096,17096, 17096,17096,17096,17096, 0, 0, 0, 0,17096, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17096,17096,17096,17098, 17098, 0,17098,17098,17098,17098,17098,17098,17098,17098, 17098, 0,17098,17098, 0, 0, 0, 0, 0, 0, 0, 0, 0,17098,17098,17098,17098,17098,17098,17098, 0, 0, 0, 0, 0,17098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17098, 0, 0, 0, 0, 0, 0,17098,17098,17098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17098,17099,17099, 0,17099,17099, 17099,17099,17099,17099,17099,17099,17099, 0,17099,17099, 0, 0, 0, 0, 0, 0, 0, 0, 0,17099, 17099,17099,17099,17099,17099,17099, 0, 0, 0, 0, 0,17099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17099, 17099,17099,17100,17100, 0,17100,17100,17100,17100,17100, 17100,17100,17100,17100, 0,17100,17100, 0, 0, 0, 0, 0, 0, 0, 0, 0,17100,17100,17100,17100, 17100,17100,17100,17100, 0, 0, 0, 0,17100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17100,17100,17100,17102, 17102, 0,17102,17102,17102,17102,17102,17102,17102,17102, 17102, 0,17102,17102, 0, 0, 0, 0, 0, 0, 0, 0, 0,17102,17102,17102,17102,17102,17102,17102, 0, 0, 0, 0, 0,17102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17102,17102,17102,17103,17103, 0,17103, 17103,17103,17103,17103,17103,17103,17103,17103, 0,17103, 17103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17103,17103,17103,17103,17103,17103,17103,17103, 0, 0, 0, 0,17103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17103,17103,17103,17107,17107, 0,17107,17107,17107,17107, 17107,17107,17107,17107,17107, 0,17107,17107, 0, 0, 0, 0, 0, 0, 0, 0, 0,17107,17107,17107, 17107,17107,17107,17107, 0, 0, 0, 0, 0,17107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17107,17107,17107, 17108,17108, 0,17108,17108,17108,17108,17108,17108,17108, 17108,17108, 0,17108,17108, 0, 0, 0, 0, 0, 0, 0, 0, 0,17108,17108,17108,17108,17108,17108, 17108, 0, 0, 0, 0, 0,17108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17108, 0, 0, 0, 0, 0,17108,17108,17108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17108,17109,17109, 0, 17109,17109,17109,17109,17109,17109,17109,17109,17109, 0, 17109,17109, 0, 0, 0, 0, 0, 0, 0, 0, 0,17109,17109,17109,17109,17109,17109,17109,17109, 0, 0, 0, 0,17109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17109,17109,17109,17113,17113, 0,17113,17113,17113, 17113,17113,17113,17113,17113,17113, 0,17113,17113, 0, 0, 0, 0, 0, 0, 0, 0, 0,17113,17113, 17113,17113,17113,17113,17113, 0, 0, 0, 0, 0, 17113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17113,17113, 17113,17114,17114, 0,17114,17114,17114,17114,17114,17114, 17114,17114,17114, 0,17114,17114, 0, 0, 0, 0, 0, 0, 0, 0, 0,17114,17114,17114,17114,17114, 17114,17114,17114, 0, 0, 0, 0,17114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17114,17114,17114,17116,17116, 0,17116,17116,17116,17116,17116,17116,17116,17116,17116, 0,17116,17116, 0, 0, 0, 0, 0, 0, 0, 0, 0,17116,17116,17116,17116,17116,17116,17116, 0, 0, 0, 0, 0,17116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17116,17116,17116,17117,17117, 0,17117,17117, 17117,17117,17117,17117,17117,17117,17117, 0,17117,17117, 0, 0, 0, 0, 0, 0, 0, 0, 0,17117, 17117,17117,17117,17117,17117,17117,17117, 0, 0, 0, 0,17117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17117, 17117,17117,17118,17118, 0,17118,17118,17118,17118,17118, 17118,17118,17118,17118, 0,17118,17118, 0, 0, 0, 0, 0, 0, 0, 0, 0,17118,17118,17118,17118, 17118,17118,17118, 0, 0, 0, 0, 0,17118,17118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17118,17118,17118, 0, 0, 0, 0, 0, 0, 0,17118,17119,17119, 0, 17119,17119,17119,17119,17119,17119,17119,17119,17119, 0, 17119,17119, 0,17119,17119,17119,17119,17119,17119,17119, 17119,17119,17119,17119,17119,17119,17119,17119, 0, 0, 0, 0, 0,17119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17119,17119,17119,17120,17120, 0,17120,17120,17120, 17120,17120,17120,17120,17120,17120, 0,17120,17120, 0, 0, 0, 0, 0, 0, 0, 0, 0,17120,17120, 17120,17120,17120,17120,17120, 0, 0, 0, 0, 0, 17120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17120,17120, 17120,17121,17121, 0,17121,17121,17121,17121,17121,17121, 17121,17121,17121, 0,17121,17121, 0, 0, 0, 0, 0, 0, 0, 0, 0,17121,17121,17121,17121,17121, 17121,17121, 0, 0, 0, 0, 0,17121,17121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17121,17121,17121, 0, 0, 0, 0, 0, 0, 0,17121,17122,17122, 0,17122, 17122,17122,17122,17122,17122,17122,17122,17122, 0,17122, 17122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17122,17122,17122,17122,17122,17122,17122, 0, 0, 0, 0, 0,17122, 0, 0, 0, 0, 0, 0, 0, 0,17122, 0, 0, 0, 0, 0, 0, 0, 0, 17122,17122,17122,17123,17123,17123,17123,17123,17123,17123, 17123,17123,17123, 0, 0, 0, 0, 0, 0,17123, 17123,17123,17123,17123,17123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17123,17123,17123,17123, 17123,17123,17126,17126,17126,17126,17126,17126,17126,17126, 17126,17126, 0, 0, 0, 0, 0, 0,17126,17126, 17126,17126,17126,17126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17126,17126,17126,17126,17126, 17126,17127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17127,17127,17127,17127,17127,17127,17127,17127, 17127, 0, 0, 0, 0, 0, 0, 0,17127,17127, 17127,17127,17127,17127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17127,17127,17127,17127,17127, 17127,17132,17132,17132,17132,17132,17132,17132,17132,17132, 17132, 0, 0, 0, 0, 0, 0,17132,17132,17132, 17132,17132,17132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17132,17132,17132,17132,17132,17132, 17133,17133,17133,17133,17133,17133,17133,17133,17133, 0, 0, 0, 0, 0, 0, 0,17133,17133,17133,17133, 17133,17133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17133,17133,17133,17133,17133,17133,17142, 17142,17142,17142,17142,17142,17142,17142,17142,17142, 0, 0, 0, 0, 0, 0,17142,17142,17142,17142,17142, 17142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17142,17142,17142,17142,17142,17142,17143,17143, 17143,17143,17143,17143,17143,17143,17143, 0, 0, 0, 0, 0, 0, 0,17143,17143,17143,17143,17143,17143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17143,17143,17143,17143,17143,17143,17154,17154,17154, 17154,17154,17154,17154,17154,17154,17154, 0, 0, 0, 0, 0, 0,17154,17154,17154,17154,17154,17154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17154,17154,17154,17154,17154,17154,17155,17155,17155,17155, 17155,17155,17155,17155,17155, 0, 0, 0, 0, 0, 0, 0,17155,17155,17155,17155,17155,17155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17155, 17155,17155,17155,17155,17155,17162, 0,17162,17162,17162, 17162,17162,17162,17162,17162,17162,17162, 0, 0, 0, 0, 0, 0,17162,17162,17162,17162,17162,17162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17162,17162,17162,17162,17162,17162,17170,17170,17170,17170, 17170,17170,17170,17170,17170,17170, 0, 0, 0, 0, 0, 0,17170,17170,17170,17170,17170,17170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17170, 17170,17170,17170,17170,17170,17171,17171,17171,17171,17171, 17171,17171,17171,17171, 0, 0, 0, 0, 0, 0, 0,17171,17171,17171,17171,17171,17171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17171,17171, 17171,17171,17171,17171,17178,17178,17178,17178,17178,17178, 17178,17178,17178,17178, 0, 0, 0, 0, 0, 0, 17178,17178,17178,17178,17178,17178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17178,17178,17178, 17178,17178,17178,17182,17182,17182,17182,17182,17182,17182, 17182,17182,17182, 0, 0, 0, 0, 0, 0,17182, 17182,17182,17182,17182,17182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17182,17182,17182,17182, 17182,17182,17183,17183,17183,17183,17183,17183,17183,17183, 17183,17183, 0, 0, 0, 0, 0, 0,17183,17183, 17183,17183,17183,17183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17183,17183,17183,17183,17183, 17183,17186,17186,17186,17186,17186,17186,17186,17186,17186, 17186, 0, 0, 0, 0, 0, 0,17186,17186,17186, 17186,17186,17186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17186,17186,17186,17186,17186,17186, 17193,17193,17193,17193,17193,17193,17193,17193,17193, 0, 0, 0, 0, 0, 0, 0,17193,17193,17193,17193, 17193,17193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17193,17193,17193,17193,17193,17193,17194, 17194,17194,17194,17194,17194,17194,17194,17194,17194, 0, 0, 0, 0, 0, 0,17194,17194,17194,17194,17194, 17194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17194,17194,17194,17194,17194,17194,17199,17199, 0,17199,17199,17199,17199,17199,17199,17199,17199,17199, 0,17199,17199, 0, 0, 0, 0, 0, 0, 0, 0, 0,17199,17199,17199,17199,17199,17199,17199, 0, 0, 0, 0, 0,17199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17199,17199,17199,17200,17200, 0,17200,17200, 17200,17200,17200,17200,17200,17200,17200, 0,17200,17200, 0, 0, 0, 0, 0, 0, 0, 0, 0,17200, 17200,17200,17200,17200,17200,17200, 0, 0, 0, 0, 0,17200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17200, 17200,17200,17200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17200,17202,17202, 0,17202,17202,17202,17202,17202,17202,17202,17202,17202, 0,17202,17202, 0, 0, 0, 0, 0, 0, 0, 0, 0,17202,17202,17202,17202,17202,17202,17202, 0, 0, 0, 0, 0,17202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17202,17202,17202,17203,17203, 0,17203,17203, 17203,17203,17203,17203,17203,17203,17203, 0,17203,17203, 0, 0, 0, 0, 0, 0, 0, 0, 0,17203, 17203,17203,17203,17203,17203,17203,17203, 0, 0, 0, 0,17203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17203, 17203,17203,17207,17207, 0,17207,17207,17207,17207,17207, 17207,17207,17207,17207, 0,17207,17207, 0, 0, 0, 0, 0, 0, 0, 0, 0,17207,17207,17207,17207, 17207,17207,17207, 0, 0, 0, 0, 0,17207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17207,17207,17207,17208, 17208, 0,17208,17208,17208,17208,17208,17208,17208,17208, 17208, 0,17208,17208, 0, 0, 0, 0, 0, 0, 0, 0, 0,17208,17208,17208,17208,17208,17208,17208, 17208, 0, 0, 0, 0,17208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17208,17208,17208,17212,17212, 0,17212, 17212,17212,17212,17212,17212,17212,17212,17212, 0,17212, 17212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17212,17212,17212,17212,17212,17212,17212, 0, 0, 0, 0, 0,17212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17212,17212,17212,17213,17213, 0,17213,17213,17213,17213, 17213,17213,17213,17213,17213, 0,17213,17213, 0, 0, 0, 0, 0, 0, 0, 0, 0,17213,17213,17213, 17213,17213,17213,17213,17213, 0, 0, 0, 0,17213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17213,17213,17213, 17217,17217, 0,17217,17217,17217,17217,17217,17217,17217, 17217,17217, 0,17217,17217, 0, 0, 0, 0, 0, 0, 0, 0, 0,17217,17217,17217,17217,17217,17217, 17217, 0, 0, 0, 0, 0,17217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17217,17217,17217,17218,17218, 0, 17218,17218,17218,17218,17218,17218,17218,17218,17218, 0, 17218,17218, 0, 0, 0, 0, 0, 0, 0, 0, 0,17218,17218,17218,17218,17218,17218,17218,17218, 0, 0, 0, 0,17218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17218,17218,17218,17221,17221, 0,17221,17221,17221, 17221,17221,17221,17221,17221,17221, 0,17221,17221, 0, 0, 0, 0, 0, 0, 0, 0, 0,17221,17221, 17221,17221,17221,17221,17221, 0, 0, 0, 0, 0, 17221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17221,17221, 17221,17222,17222, 0,17222,17222,17222,17222,17222,17222, 17222,17222,17222, 0,17222,17222, 0, 0, 0, 0, 0, 0, 0, 0, 0,17222,17222,17222,17222,17222, 17222,17222,17222, 0, 0, 0, 0,17222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17222,17222,17222,17224,17224, 0,17224,17224,17224,17224,17224,17224,17224,17224,17224, 0,17224,17224, 0, 0, 0, 0, 0, 0, 0, 0, 0,17224,17224,17224,17224,17224,17224,17224, 0, 0, 0, 0, 0,17224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17224,17224,17224,17225,17225, 0,17225,17225, 17225,17225,17225,17225,17225,17225,17225, 0,17225,17225, 0, 0, 0, 0, 0, 0, 0, 0, 0,17225, 17225,17225,17225,17225,17225,17225,17225, 0, 0, 0, 0,17225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17225, 17225,17225,17226,17226, 0,17226,17226,17226,17226,17226, 17226,17226,17226,17226, 0,17226,17226, 0, 0, 0, 0, 0, 0, 0, 0, 0,17226,17226,17226,17226, 17226,17226,17226, 0, 0, 0, 0, 0,17226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17226, 0, 0, 0,17226,17226,17226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17226,17227,17227, 0,17227,17227,17227,17227,17227,17227, 17227,17227,17227, 0,17227,17227, 0, 0, 0, 0, 0, 0, 0, 0, 0,17227,17227,17227,17227,17227, 17227,17227, 0, 0, 0, 0, 0,17227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17227,17227,17227,17228,17228, 0,17228,17228,17228,17228,17228,17228,17228,17228,17228, 0,17228,17228, 0, 0, 0, 0, 0, 0, 0, 0, 0,17228,17228,17228,17228,17228,17228,17228,17228, 0, 0, 0, 0,17228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17228,17228,17228,17229,17229, 0,17229,17229, 17229,17229,17229,17229,17229,17229,17229, 0,17229,17229, 0, 0, 0, 0, 0, 0, 0, 0, 0,17229, 17229,17229,17229,17229,17229,17229, 0, 0, 0, 0, 0,17229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17229, 17229,17229,17230,17230, 0,17230,17230,17230,17230,17230, 17230,17230,17230,17230, 0,17230,17230, 0, 0, 0, 0, 0, 0, 0, 0, 0,17230,17230,17230,17230, 17230,17230,17230,17230, 0, 0, 0, 0,17230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17230,17230,17230,17231, 17231, 0,17231,17231,17231,17231,17231,17231,17231,17231, 17231, 0,17231,17231, 0, 0, 0, 0, 0, 0, 0, 0, 0,17231,17231,17231,17231,17231,17231,17231, 0, 0, 0, 0, 0,17231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17231, 0, 0, 0,17231,17231,17231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17231,17242,17242, 0,17242,17242,17242,17242,17242,17242,17242,17242,17242, 0,17242,17242, 0, 0, 0, 0, 0, 0, 0, 0, 0,17242,17242,17242,17242,17242,17242,17242, 0, 0, 0, 0, 0,17242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17242,17242,17242,17243,17243, 0,17243,17243, 17243,17243,17243,17243,17243,17243,17243, 0,17243,17243, 0, 0, 0, 0, 0, 0, 0, 0, 0,17243, 17243,17243,17243,17243,17243,17243,17243, 0, 0, 0, 0,17243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17243, 17243,17243,17257,17257, 0,17257,17257,17257,17257,17257, 17257,17257,17257,17257, 0,17257,17257, 0, 0, 0, 0, 0, 0, 0, 0, 0,17257,17257,17257,17257, 17257,17257,17257, 0, 0, 0, 0, 0,17257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17257,17257,17257,17258, 17258, 0,17258,17258,17258,17258,17258,17258,17258,17258, 17258, 0,17258,17258, 0, 0, 0, 0, 0, 0, 0, 0, 0,17258,17258,17258,17258,17258,17258,17258, 17258, 0, 0, 0, 0,17258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17258,17258,17258,17291,17291, 0,17291, 17291,17291,17291,17291,17291,17291,17291,17291, 0,17291, 17291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17291,17291,17291,17291,17291,17291,17291, 0, 0, 0, 0, 0,17291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17291,17291,17291,17292,17292, 0,17292,17292,17292,17292, 17292,17292,17292,17292,17292, 0,17292,17292, 0, 0, 0, 0, 0, 0, 0, 0, 0,17292,17292,17292, 17292,17292,17292,17292,17292, 0, 0, 0, 0,17292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17292,17292,17292, 17296,17296, 0,17296,17296,17296,17296,17296,17296,17296, 17296,17296,17296,17296,17296, 0, 0, 0, 0, 0, 0, 0, 0, 0,17296,17296,17296,17296,17296,17296, 17296, 0, 0, 0, 0, 0,17296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17296,17296,17296,17296,17297,17297, 0,17297,17297,17297,17297,17297,17297,17297,17297,17297, 0,17297,17297, 0, 0, 0, 0, 0, 0, 0, 0, 0,17297,17297,17297,17297,17297,17297,17297, 0, 0, 0, 0, 0,17297, 0, 0, 0, 0, 0, 17297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17297,17297,17297,17298,17298, 0,17298,17298, 17298,17298,17298,17298,17298,17298,17298, 0,17298,17298, 0, 0, 0, 0, 0, 0, 0, 0, 0,17298, 17298,17298,17298,17298,17298,17298,17298, 0, 0, 0, 0,17298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17298, 17298,17298,17320,17320, 0,17320,17320,17320,17320,17320, 17320,17320,17320,17320, 0,17320,17320, 0, 0, 0, 0, 0, 0, 0, 0, 0,17320,17320,17320,17320, 17320,17320,17320, 0, 0, 0, 0, 0,17320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17320,17320,17320,17321, 17321, 0,17321,17321,17321,17321,17321,17321,17321,17321, 17321, 0,17321,17321, 0, 0, 0, 0, 0, 0, 0, 0, 0,17321,17321,17321,17321,17321,17321,17321, 17321, 0, 0, 0, 0,17321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17321,17321,17321,17325,17325, 0,17325, 17325,17325,17325,17325,17325,17325,17325,17325, 0,17325, 17325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17325,17325,17325,17325,17325,17325,17325, 0, 0, 0, 0, 0,17325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17325,17325,17325,17326,17326, 0,17326,17326,17326,17326, 17326,17326,17326,17326,17326, 0,17326,17326, 0, 0, 0, 0, 0, 0, 0, 0, 0,17326,17326,17326, 17326,17326,17326,17326,17326, 0, 0, 0, 0,17326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17326,17326,17326, 17328,17328, 0,17328,17328,17328,17328,17328,17328,17328, 17328,17328, 0,17328,17328, 0, 0, 0, 0, 0, 0, 0, 0, 0,17328,17328,17328,17328,17328,17328, 17328, 0, 0, 0, 0, 0,17328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17328, 0, 0, 0, 0, 0,17328,17328,17328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17328,17331,17331, 0, 17331,17331,17331,17331,17331,17331,17331,17331,17331, 0, 17331,17331, 0, 0, 0, 0, 0, 0, 0, 0, 0,17331,17331,17331,17331,17331,17331,17331, 0, 0, 0, 0, 0,17331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17331,17331,17331,17331,17339,17339, 0,17339,17339, 17339,17339,17339,17339,17339,17339,17339, 0,17339,17339, 0, 0, 0, 0, 0, 0, 0, 0, 0,17339, 17339,17339,17339,17339,17339,17339, 0, 0, 0, 0, 0,17339, 0, 0, 0, 0, 0,17339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17339, 17339,17339,17356,17356, 0,17356,17356,17356,17356,17356, 17356,17356,17356,17356, 0,17356,17356, 0, 0, 0, 0, 0, 0, 0, 0, 0,17356,17356,17356,17356, 17356,17356,17356, 0, 0, 0, 0, 0,17356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17356,17356,17356,17357, 17357, 0,17357,17357,17357,17357,17357,17357,17357,17357, 17357, 0,17357,17357, 0, 0, 0, 0, 0, 0, 0, 0, 0,17357,17357,17357,17357,17357,17357,17357, 17357, 0, 0, 0, 0,17357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17357,17357,17357,17361,17361, 0,17361, 17361,17361,17361,17361,17361,17361,17361,17361, 0,17361, 17361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17361,17361,17361,17361,17361,17361,17361, 0, 0, 0, 0, 0,17361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17361,17361,17361,17362,17362, 0,17362,17362,17362,17362, 17362,17362,17362,17362,17362, 0,17362,17362, 0, 0, 0, 0, 0, 0, 0, 0, 0,17362,17362,17362, 17362,17362,17362,17362,17362, 0, 0, 0, 0,17362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17362,17362,17362, 17376,17376, 0,17376,17376,17376,17376,17376,17376,17376, 17376,17376, 0,17376,17376, 0, 0, 0, 0, 0, 0, 0, 0, 0,17376,17376,17376,17376,17376,17376, 17376, 0, 0, 0, 0, 0,17376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17376,17376,17376,17377,17377, 0, 17377,17377,17377,17377,17377,17377,17377,17377,17377, 0, 17377,17377, 0, 0, 0, 0, 0, 0, 0, 0, 0,17377,17377,17377,17377,17377,17377,17377,17377, 0, 0, 0, 0,17377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17377,17377,17377,17391,17391, 0,17391,17391,17391, 17391,17391,17391,17391,17391,17391, 0,17391,17391, 0, 0, 0, 0, 0, 0, 0, 0, 0,17391,17391, 17391,17391,17391,17391,17391, 0, 0, 0, 0, 0, 17391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17391,17391, 17391,17392,17392, 0,17392,17392,17392,17392,17392,17392, 17392,17392,17392, 0,17392,17392, 0, 0, 0, 0, 0, 0, 0, 0, 0,17392,17392,17392,17392,17392, 17392,17392,17392, 0, 0, 0, 0,17392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17392,17392,17392,17412,17412, 0,17412,17412,17412,17412,17412,17412,17412,17412,17412, 17412,17412,17412, 0, 0, 0, 0, 0, 0, 0, 0, 0,17412,17412,17412,17412,17412,17412,17412, 0, 0, 0, 0, 0,17412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17412,17412,17412,17412,17416,17416, 0,17416, 17416,17416,17416,17416,17416,17416,17416,17416, 0,17416, 17416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17416,17416,17416,17416,17416,17416,17416, 0, 0, 0, 0, 0,17416, 0, 0,17416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17416,17416,17416,17416,17426, 0, 0, 0, 0, 0, 17426, 0,17426, 0, 0,17426,17426,17426,17426,17426, 17426,17426,17426,17426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17426, 0, 0,17426,17441,17441,17441, 17441,17441,17441,17441,17441,17441,17441,17441,17441, 0, 17441,17441, 0, 0, 0, 0, 0, 0, 0, 0, 0,17441,17441,17441,17441,17441,17441,17441, 0, 0, 0, 0, 0,17441, 0, 0,17441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17441,17441,17441,17441,17452,17452, 0,17452,17452, 17452,17452,17452,17452,17452, 0,17452,17452,17452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17452, 17452,17452,17452,17452,17452,17452, 0, 0, 0, 0, 0,17452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17452, 17452,17452,17452,17453,17453, 0,17453,17453,17453,17453, 17453,17453,17453, 0,17453,17453,17453, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17453,17453,17453, 17453,17453,17453,17453,17453, 0, 0, 0, 0,17453, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17453,17453,17453, 17453,17457,17457,17457,17457,17457,17457,17457,17457,17457, 0, 0, 0, 0, 0, 0, 0,17457,17457,17457, 17457,17457,17457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17457,17457,17457,17457,17457,17457, 17462,17462,17462,17462,17462,17462,17462,17462,17462,17462, 0, 0, 0, 0, 0, 0,17462,17462,17462,17462, 17462,17462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17462,17462,17462,17462,17462,17462,17463, 17463,17463,17463,17463,17463,17463,17463,17463,17463, 0, 0, 0, 0, 0, 0,17463,17463,17463,17463,17463, 17463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17463,17463,17463,17463,17463,17463,17465,17465, 17465,17465,17465,17465,17465,17465,17465, 0, 0, 0, 0, 0, 0,17465,17465,17465,17465,17465,17465,17465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17465,17465,17465,17465,17465,17465,17468,17468,17468, 17468,17468,17468,17468,17468,17468,17468, 0, 0, 0, 0, 0, 0,17468,17468,17468,17468,17468,17468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17468,17468,17468,17468,17468,17468,17470,17470,17470,17470, 17470,17470,17470,17470,17470, 0, 0, 0, 0, 0, 0, 0,17470,17470,17470,17470,17470,17470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17470, 17470,17470,17470,17470,17470,17475,17475,17475,17475,17475, 17475,17475,17475,17475,17475, 0, 0, 0, 0, 0, 0,17475,17475,17475,17475,17475,17475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17475,17475, 17475,17475,17475,17475,17477,17477,17477,17477,17477,17477, 17477,17477,17477, 0, 0, 0, 0, 0, 0, 0, 17477,17477,17477,17477,17477,17477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17477,17477,17477, 17477,17477,17477,17480,17480,17480,17480,17480,17480,17480, 17480,17480, 0, 0, 0, 0, 0, 0, 0,17480, 17480,17480,17480,17480,17480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17480,17480,17480,17480, 17480,17480,17481,17481,17481,17481,17481,17481,17481,17481, 17481,17481, 0, 0, 0, 0, 0, 0,17481,17481, 17481,17481,17481,17481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17481,17481,17481,17481,17481, 17481,17483,17483,17483,17483,17483,17483,17483,17483,17483, 0, 0, 0, 0, 0, 0, 0,17483,17483,17483, 17483,17483,17483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17483,17483,17483,17483,17483,17483, 17486,17486,17486,17486,17486,17486,17486,17486,17486, 0, 0, 0, 0, 0, 0, 0,17486,17486,17486,17486, 17486,17486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17486,17486,17486,17486,17486,17486,17487, 0,17487,17487,17487,17487,17487,17487,17487,17487,17487, 17487, 0, 0, 0, 0, 0, 0,17487,17487,17487, 17487,17487,17487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17487,17487,17487,17487,17487,17487, 17490,17490,17490,17490,17490,17490,17490,17490,17490,17490, 0, 0, 0, 0, 0, 0,17490,17490,17490,17490, 17490,17490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17490,17490,17490,17490,17490,17490,17492, 17492,17492,17492,17492,17492,17492,17492,17492, 0, 0, 0, 0, 0, 0, 0,17492,17492,17492,17492,17492, 17492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17492,17492,17492,17492,17492,17492,17495,17495, 17495,17495,17495,17495,17495,17495,17495, 0, 0, 0, 0, 0, 0, 0,17495,17495,17495,17495,17495,17495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17495,17495,17495,17495,17495,17495,17496,17496,17496, 17496,17496,17496,17496,17496,17496,17496, 0, 0, 0, 0, 0, 0,17496,17496,17496,17496,17496,17496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17496,17496,17496,17496,17496,17496,17499,17499,17499,17499, 17499,17499,17499,17499,17499,17499, 0, 0, 0, 0, 0, 0,17499,17499,17499,17499,17499,17499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17499, 17499,17499,17499,17499,17499,17501,17501,17501,17501,17501, 17501,17501,17501,17501, 0, 0, 0, 0, 0, 0, 0,17501,17501,17501,17501,17501,17501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17501,17501, 17501,17501,17501,17501,17504,17504,17504,17504,17504,17504, 17504,17504,17504, 0, 0, 0, 0, 0, 0, 0, 17504,17504,17504,17504,17504,17504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17504,17504,17504, 17504,17504,17504,17505,17505,17505,17505,17505,17505,17505, 17505,17505,17505, 0, 0, 0, 0, 0, 0,17505, 17505,17505,17505,17505,17505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17505,17505,17505,17505, 17505,17505,17511,17511,17511,17511,17511,17511,17511,17511, 17511,17511, 0, 0, 0, 0, 0, 0,17511,17511, 17511,17511,17511,17511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17511,17511,17511,17511,17511, 17511,17512,17512,17512,17512,17512,17512,17512,17512,17512, 0, 0, 0, 0, 0, 0, 0,17512,17512,17512, 17512,17512,17512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17512,17512,17512,17512,17512,17512, 17517,17517,17517,17517,17517,17517,17517,17517,17517,17517, 0, 0, 0, 0, 0, 0,17517,17517,17517,17517, 17517,17517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17517,17517,17517,17517,17517,17517,17521, 17521,17521,17521,17521,17521,17521,17521,17521,17521, 0, 0, 0, 0, 0, 0,17521,17521,17521,17521,17521, 17521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17521,17521,17521,17521,17521,17521,17533, 0, 17533, 0, 0,17533,17533,17533,17533,17533,17533,17533, 17533,17533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17533, 0, 0,17533,17542, 0,17542,17542,17542, 17542,17542,17542,17542,17542,17542,17542, 0, 0, 0, 0, 0, 0,17542,17542,17542,17542,17542,17542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17542,17542,17542,17542,17542,17542,17548,17548,17548,17548, 17548,17548,17548,17548,17548,17548, 0, 0, 0, 0, 0, 0,17548,17548,17548,17548,17548,17548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17548, 0, 0, 0,17548, 17548,17548,17548,17548,17548,17552,17552,17552,17552,17552, 17552,17552,17552,17552,17552, 0, 0, 0, 0, 0, 0,17552,17552,17552,17552,17552,17552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17552,17552, 17552,17552,17552,17552,17556,17556,17556,17556,17556,17556, 17556,17556,17556,17556, 0, 0, 0, 0, 0, 0, 17556,17556,17556,17556,17556,17556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17556,17556,17556, 17556,17556,17556,17560,17560,17560,17560,17560,17560,17560, 17560,17560,17560, 0, 0, 0, 0, 0, 0,17560, 17560,17560,17560,17560,17560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17560,17560,17560,17560, 17560,17560,17561,17561,17561,17561,17561,17561,17561,17561, 17561, 0, 0, 0, 0, 0, 0, 0,17561,17561, 17561,17561,17561,17561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17561, 0, 0, 0,17561,17561,17561,17561,17561, 17561,17564,17564,17564,17564,17564,17564,17564,17564,17564, 17564, 0, 0, 0, 0, 0, 0,17564,17564,17564, 17564,17564,17564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17564,17564,17564,17564,17564,17564, 17586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17586,17586,17586,17586,17586,17586,17586,17586,17586, 0,17586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17586,17586,17587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17587, 17587,17587,17587,17587,17587,17587,17587,17587, 0,17587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17587,17590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17590,17590,17590, 17590,17590,17590,17590,17590,17590, 0,17590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17590,17590,17628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17628, 0, 0, 0, 0, 0, 0,17628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17628, 0, 17628, 0,17628, 0, 0,17628,17628, 0, 0, 0, 17628, 0, 0,17628, 0,17628, 0,17628, 0,17628, 17628,17628,17629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17629,17629,17629,17629,17629,17629,17629, 17629,17629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17629, 0, 0, 0, 0, 0, 0,17629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17629, 0,17629, 0, 17629, 0, 0,17629,17629, 0, 0, 0,17629, 0, 0,17629, 0,17629, 0,17629, 0,17629,17629,17629, 17631, 0,17631, 0, 0, 0, 0, 0, 0,17631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17631, 0, 0, 0, 0, 0, 0,17631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17631, 0,17631, 0, 17631, 0, 0,17631,17631, 0, 0, 0,17631, 0, 0,17631, 0,17631, 0,17631, 0,17631,17631,17631, 17632, 0,17632, 0, 0, 0, 0, 0, 0,17632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17632, 0, 0, 0, 0, 0, 0,17632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17632, 0,17632, 0, 17632, 0, 0,17632,17632, 0, 0, 0,17632,17632, 0,17632, 0,17632,17632,17632, 0,17632,17632,17632, 17653,17653,17653,17653,17653,17653,17653,17653,17653,17653, 17653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17653, 0, 0, 0, 0,17653,17657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17657, 0, 0, 0, 0, 0, 0,17657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17657, 0, 17657, 0,17657, 0, 0,17657,17657, 0, 0, 0, 17657, 0, 0,17657, 0,17657, 0,17657, 0,17657, 17657,17657,17658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17658, 0, 0, 0, 0, 0, 0,17658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17658,17658, 0,17658, 0, 17658, 0, 0,17658,17658, 0, 0, 0,17658, 0, 0,17658, 0,17658, 0,17658, 0,17658,17658,17658, 17658,17660, 0,17660, 0, 0, 0, 0, 0, 0, 17660, 0, 0,17660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17660, 0, 0, 0, 0, 0, 0,17660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17660, 0,17660, 0,17660, 0, 0,17660,17660, 0, 0, 0,17660, 0, 0,17660, 0,17660, 0,17660, 0,17660,17660, 17660,17661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17661, 0, 0, 0, 0, 0, 0, 17661, 0, 0,17661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17661, 0,17661, 0,17661, 0, 0,17661,17661, 0, 0, 0,17661, 0, 0, 17661, 0,17661, 0,17661, 0,17661,17661,17661,17662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17662, 0, 0, 0, 0, 0, 0,17662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17662, 0,17662, 0,17662, 0, 0, 17662,17662, 0, 0, 0,17662, 0, 0,17662, 0, 17662, 0,17662, 0,17662,17662,17662,17663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17663, 0, 0, 0, 0, 0, 0,17663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17663, 0,17663, 0,17663, 0, 0,17663,17663, 0, 0, 0,17663, 0, 0,17663, 0,17663, 0, 17663, 0,17663,17663,17663,17664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17664, 0, 0, 0, 0, 0, 0,17664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17664, 0,17664, 0,17664, 0, 0,17664,17664, 0, 0, 0,17664, 0, 0,17664, 0,17664, 0,17664, 0, 17664,17664,17664,17665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17665, 0, 0, 0, 0, 0, 0,17665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17665, 0,17665, 0,17665, 0, 0,17665,17665, 0, 0, 0,17665, 17665, 0,17665, 0,17665, 0,17665, 0,17665,17665, 17665,17666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17666, 0, 0, 0, 0, 0, 0, 17666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17666,17666,17666, 0,17666, 0, 0,17666,17666, 0, 0, 0,17666, 0, 0, 17666, 0,17666, 0,17666, 0,17666,17666,17666,17667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17667, 0, 0, 0, 0, 0, 0,17667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17667, 0,17667, 0,17667, 0, 0, 17667,17667, 0, 0, 0,17667, 0, 0,17667, 0, 17667, 0,17667, 0,17667,17667,17667,17668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17668, 0, 0, 0, 0, 0, 0,17668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17668, 0,17668, 0,17668, 0, 0,17668,17668, 0, 0, 0,17668, 0, 0,17668, 0,17668, 0, 17668, 0,17668,17668,17668,17669, 0,17669, 0, 0, 0, 0, 0, 0,17669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17669, 0, 0, 0, 0, 0, 0,17669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17669, 0,17669, 0,17669, 0, 0,17669,17669, 0, 0, 0,17669, 0, 0,17669, 0,17669, 0, 17669, 0,17669,17669,17669,17670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17670, 0, 0, 0, 0, 0, 0,17670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17670, 0,17670, 0,17670, 0, 0,17670,17670, 0, 0, 17670,17670, 0, 0,17670, 0,17670, 0,17670, 0, 17670,17670,17670,17671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17671, 0, 0, 0, 0, 0, 0,17671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17671, 0,17671, 17671,17671, 0, 0,17671,17671, 0, 0, 0,17671, 0, 0,17671, 0,17671, 0,17671, 0,17671,17671, 17671,17672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17672, 0, 0, 0, 0, 0, 0, 17672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17672, 0,17672, 0,17672, 0, 0,17672,17672, 0, 0, 0,17672, 0, 0, 17672, 0,17672, 0,17672, 0,17672,17672,17672,17673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17673, 0, 0, 0, 0, 0, 0,17673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17673, 0,17673, 0,17673, 0, 0, 17673,17673, 0, 0, 0,17673, 0, 0,17673, 0, 17673, 0,17673, 0,17673,17673,17673,17673,17674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17674, 0, 0, 0, 0, 0, 0,17674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17674, 0,17674,17674,17674, 0, 0,17674, 17674, 0, 0, 0,17674, 0, 0,17674, 0,17674, 0,17674, 0,17674,17674,17674,17675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17675, 0, 0, 0, 0, 0, 0,17675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17675, 0,17675, 0,17675, 0,17675,17675,17675, 0, 0, 0,17675, 0,17675,17675, 0,17675, 0,17675, 0,17675,17675,17675,17695, 0,17695, 0, 0, 0, 0, 0, 0,17695, 0, 0,17695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17695, 0, 0, 0, 0, 0, 0,17695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17695, 0,17695, 0,17695, 0, 0,17695,17695, 0, 0, 0,17695, 0, 0,17695, 0,17695, 0,17695, 0,17695,17695,17695,17696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17696, 0, 0, 0, 0, 0, 0,17696, 0, 0,17696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17696, 0, 17696, 0,17696, 0, 0,17696,17696, 0, 0, 0, 17696, 0, 0,17696, 0,17696, 0,17696, 0,17696, 17696,17696,17697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17697, 0, 0, 0, 0, 0, 0,17697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17697, 0,17697, 0, 17697, 0, 0,17697,17697, 0, 0, 0,17697, 0, 0,17697, 0,17697, 0,17697, 0,17697,17697,17697, 17698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17698, 0, 0, 0, 0, 0, 0,17698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17698, 0,17698, 0,17698, 0, 0,17698,17698, 0, 0, 0,17698, 0, 0,17698, 0,17698, 0,17698, 0,17698,17698,17698,17699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17699, 0, 0, 0, 0, 0, 0,17699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17699, 0,17699, 0,17699, 0, 0,17699, 17699, 0, 0, 0,17699, 0, 0,17699, 0,17699, 0,17699, 0,17699,17699,17699,17700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17700, 0, 0, 0, 0, 0, 0,17700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17700, 0,17700, 0,17700, 0, 0,17700,17700, 0, 0, 0,17700,17700, 0,17700, 0,17700, 0,17700, 0,17700,17700,17700,17701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17701, 0, 0, 0, 0, 0, 0,17701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17701,17701, 17701, 0,17701, 0, 0,17701,17701, 0, 0, 0, 17701, 0, 0,17701, 0,17701, 0,17701, 0,17701, 17701,17701,17702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17702, 0, 0, 0, 0, 0, 0,17702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17702, 0,17702, 0, 17702, 0, 0,17702,17702, 0, 0, 0,17702, 0, 0,17702, 0,17702, 0,17702, 0,17702,17702,17702, 17703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17703, 0, 0, 0, 0, 0, 0,17703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17703, 0,17703, 0,17703, 0, 0,17703,17703, 0, 0, 0,17703, 0, 0,17703, 0,17703, 0,17703, 0,17703,17703,17703,17704, 0, 17704, 0, 0, 0, 0, 0, 0,17704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17704, 0, 0, 0, 0, 0, 0,17704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17704, 0,17704, 0,17704, 0, 0,17704,17704, 0, 0, 0,17704, 0, 0,17704, 0,17704, 0,17704, 0,17704,17704,17704,17705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17705, 0, 0, 0, 0, 0, 0,17705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17705, 0,17705, 0,17705, 0, 0,17705, 17705, 0, 0,17705,17705, 0, 0,17705, 0,17705, 0,17705, 0,17705,17705,17705,17706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17706, 0, 0, 0, 0, 0, 0,17706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17706, 0,17706,17706,17706, 0, 0,17706,17706, 0, 0, 0,17706, 0, 0,17706, 0,17706, 0,17706, 0,17706,17706,17706,17707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17707, 0, 0, 0, 0, 0, 0,17707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17707, 0, 17707, 0,17707, 0, 0,17707,17707, 0, 0, 0, 17707, 0, 0,17707, 0,17707, 0,17707, 0,17707, 17707,17707,17708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17708, 0, 0, 0, 0, 0, 0,17708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17708, 0,17708, 0, 17708, 0, 0,17708,17708, 0, 0, 0,17708, 0, 0,17708, 0,17708, 0,17708, 0,17708,17708,17708, 17708,17709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17709, 0, 0, 0, 0, 0, 0, 17709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17709, 0,17709,17709,17709, 0, 0,17709,17709, 0, 0, 0,17709, 0, 0, 17709, 0,17709, 0,17709, 0,17709,17709,17709,17710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17710, 0, 0, 0, 0, 0, 0,17710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17710, 0,17710, 0,17710, 0,17710, 17710,17710, 0, 0, 0,17710, 0,17710,17710, 0, 17710, 0,17710, 0,17710,17710,17710,17730, 0,17730, 0, 0, 0, 0, 0, 0,17730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17730, 0, 0, 0, 0, 0, 0,17730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17730, 0,17730, 0,17730, 0, 0, 17730,17730, 0, 0, 0,17730, 0, 0,17730, 0, 17730, 0,17730, 0,17730,17730,17730,17731, 0,17731, 0, 0, 0, 0, 0, 0,17731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17731, 0, 0, 0, 0, 0, 0,17731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17731, 0,17731, 0,17731, 0, 0, 17731,17731, 0, 0, 0,17731, 0, 0,17731, 0, 17731, 0,17731, 0,17731,17731,17731,17732,17732, 0, 0, 0, 0, 0, 0, 0,17732,17732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17732, 0, 0, 0, 0, 0, 0,17732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17732, 0,17732, 0,17732, 0, 0,17732,17732, 0, 0, 0,17732, 0, 0,17732, 0,17732, 0, 17732, 0,17732,17732,17732,17733, 0, 0, 0, 0, 0, 0, 0, 0, 0,17733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17733, 0, 0, 0, 0, 0, 0,17733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17733, 0,17733, 0,17733, 0, 0,17733,17733, 0, 0, 0,17733, 0, 0,17733, 0,17733, 0,17733, 0, 17733,17733,17733,17734, 0, 0, 0, 0, 0, 0, 0, 0, 0,17734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17734, 0, 0, 0, 0, 0, 0,17734, 0, 0, 0, 0, 0, 0,17734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17734, 0,17734, 0,17734, 0, 0,17734,17734, 0, 0, 0,17734, 0, 0,17734, 0,17734, 0,17734, 0,17734,17734, 17734,17737, 0,17737, 0, 0, 0, 0, 0, 0, 17737, 0, 0,17737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17737, 0, 0, 0, 0, 0, 0,17737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17737, 0,17737, 17737,17737, 0, 0,17737,17737, 0, 0, 0,17737, 0, 0,17737, 0,17737, 0,17737, 0,17737,17737, 17737,17738, 0,17738, 0, 0, 0, 0, 0, 0, 17738, 0, 0,17738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17738, 0, 0, 0, 0, 0, 0,17738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17738, 0,17738, 17738,17738, 0, 0,17738,17738, 0, 0, 0,17738, 0, 0,17738, 0,17738, 0,17738, 0,17738,17738, 17738,17769, 0, 0, 0, 0, 0, 0, 0, 0, 0,17769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17769, 0, 0, 0, 0, 0, 0, 0, 0,17769, 0, 0, 0, 0, 0, 0, 17769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17769, 0,17769, 0,17769, 0, 0,17769,17769, 0, 0, 0,17769, 0,17769, 17769, 0,17769, 0,17769, 0,17769,17769,17769,17770, 0, 0, 0, 0, 0, 0, 0, 0, 0,17770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17770, 0, 0, 0, 0, 0, 0,17770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17770, 0,17770, 0,17770, 0, 0, 17770,17770, 0, 0, 0,17770, 0, 0,17770, 0, 17770, 0,17770, 0,17770,17770,17770,17771, 0, 0, 0, 0, 0, 0, 0, 0, 0,17771,17771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17771, 0, 0, 0, 0, 0, 0,17771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17771, 0,17771, 0,17771, 0, 0,17771,17771, 0, 0, 0,17771, 0, 0,17771, 0,17771, 0, 17771, 0,17771,17771,17771,17772, 0, 0, 0, 0, 0, 0, 0, 0, 0,17772, 0, 0, 0, 0, 17772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17772, 0, 0, 0, 0, 0, 0,17772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17772, 0,17772, 0,17772, 0, 0,17772,17772, 0, 0, 0,17772, 0, 0,17772, 0,17772, 0,17772, 0, 17772,17772,17772,17776, 0,17776, 0, 0, 0, 0, 0, 0,17776, 0, 0,17776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17776, 0, 0, 0, 0, 0, 0,17776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17776, 0,17776, 0,17776, 0, 0,17776,17776, 0, 0, 0,17776, 0, 0,17776, 0,17776, 0,17776, 0, 17776,17776,17776,17776,17779, 0,17779, 0, 0, 0, 0, 0, 0,17779, 0, 0,17779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17779, 0, 0, 0, 0, 0, 0,17779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17779, 0,17779,17779,17779, 0, 0,17779,17779, 0, 0, 0,17779, 0, 0,17779, 0,17779, 0,17779, 0,17779,17779,17779,17796,17796, 0, 0, 0, 0, 0, 0, 0, 0,17796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17796, 0,17796, 0, 0, 0, 0,17796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17796, 0, 17796, 0,17796, 0, 0,17796,17796, 0, 0, 0, 17796, 0, 0,17796, 0,17796, 0,17796, 0,17796, 17796,17796,17798, 0,17798, 0, 0, 0, 0, 0, 0,17798, 0, 0,17798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17798, 0, 0, 0, 0, 0, 0,17798, 0, 0,17798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17798, 0, 17798, 0,17798, 0, 0,17798,17798, 0, 0, 0, 17798, 0, 0,17798, 0,17798, 0,17798, 0,17798, 17798,17798,17799, 0, 0, 0, 0, 0, 0, 0, 0, 0,17799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17799, 0, 0, 0, 0, 0, 0,17799, 0, 0, 0, 0, 0,17799, 0, 0, 0, 0, 0, 0, 0, 0,17799, 0,17799, 0, 17799, 0, 0,17799,17799, 0, 0, 0,17799, 0, 0,17799, 0,17799, 0,17799, 0,17799,17799,17799, 17800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17800, 0, 0, 0, 0, 0, 0,17800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17800, 0,17800, 0,17800, 0, 0,17800,17800, 0, 0, 0,17800,17800, 0,17800, 0,17800, 0,17800, 0,17800,17800,17800,17814, 0, 17814, 0, 0, 0, 0, 0, 0,17814, 0, 0, 17814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17814, 0, 0, 0, 0, 0, 0,17814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17814, 0,17814,17814,17814, 0, 0,17814,17814, 0, 0, 0,17814, 0, 0,17814, 0,17814, 0,17814, 0,17814,17814,17814,17840, 0, 17840, 0, 0, 0, 0, 0, 0,17840, 0, 0, 17840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17840, 0, 0, 0, 0, 0, 0,17840, 0, 0,17840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17840, 0,17840, 0,17840, 0, 0,17840,17840, 0, 0, 0,17840, 0, 0,17840, 0,17840, 0,17840, 0,17840,17840,17840,17841, 0, 0, 0, 0, 0, 0, 0, 0, 0,17841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17841, 0, 0, 0, 0, 0, 0,17841, 0, 0, 0, 0, 0,17841, 0, 0, 0, 0, 0, 0, 0, 0,17841, 0,17841, 0,17841, 0, 0,17841, 17841, 0, 0, 0,17841, 0, 0,17841, 0,17841, 0,17841, 0,17841,17841,17841,17842, 0, 0, 0, 0, 0, 0, 0, 0, 0,17842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17842, 0, 0, 0, 0, 0, 0,17842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17842, 0,17842, 0,17842, 0, 0,17842,17842, 0, 0, 0,17842,17842, 0,17842, 0,17842, 0,17842, 0,17842,17842,17842,17856, 0,17856, 0, 0, 0, 0, 0, 0,17856, 0, 0,17856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17856, 0, 0, 0, 0, 0, 0,17856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17856, 0,17856,17856,17856, 0, 0,17856,17856, 0, 0, 0,17856, 0, 0,17856, 0,17856, 0,17856, 0,17856,17856,17856,17882, 0,17882, 0, 0, 0, 0, 0, 0,17882, 0, 0,17882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17882, 0, 0, 0, 0, 0, 0,17882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17882, 0,17882, 0,17882, 0, 0,17882,17882, 0, 0, 0,17882, 0,17882,17882, 0,17882, 0,17882, 0,17882,17882,17882,17883, 0,17883, 0, 0, 0, 0, 0, 0,17883, 0, 0,17883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17883, 0, 0, 0, 0, 0, 0,17883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17883, 0,17883, 0,17883, 0, 0,17883,17883, 0, 0, 0,17883, 0, 0,17883, 0,17883, 0,17883, 17883,17883,17883,17883,17892,17892,17892,17892,17892,17892, 17892,17892, 0, 0,17892,17892,17892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17892, 17892,17892,17892,17892,17892, 0, 0, 0, 0, 0, 17892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17892,17892, 17892,17892,17893,17893,17893,17893,17893,17893,17893,17893, 0, 0,17893,17893,17893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17893,17893,17893, 17893,17893,17893, 0, 0, 0, 0, 0,17893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17893,17893,17893,17893, 0, 0, 0, 0,17893,17903,17903, 0,17903,17903, 17903,17903,17903,17903,17903,17903,17903, 0,17903,17903, 0, 0, 0, 0, 0, 0, 0, 0, 0,17903, 17903,17903,17903,17903,17903,17903, 0, 0, 0, 0, 0,17903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17903, 17903,17903,17906,17906, 0,17906,17906,17906,17906,17906, 17906,17906,17906,17906, 0,17906,17906, 0, 0, 0, 0, 0, 0, 0, 0, 0,17906,17906,17906,17906, 17906,17906,17906, 0, 0, 0, 0, 0,17906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17906,17906,17906,17906, 17907,17907, 0,17907,17907,17907,17907,17907,17907,17907, 17907,17907, 0,17907,17907, 0, 0, 0, 0, 0, 0, 0, 0, 0,17907,17907,17907,17907,17907,17907, 17907,17907, 0, 0, 0, 0,17907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17907,17907,17907,17907,17908,17908, 0,17908,17908,17908,17908,17908,17908,17908,17908,17908, 0,17908,17908, 0, 0, 0, 0, 0, 0, 0, 0, 0,17908,17908,17908,17908,17908,17908,17908, 0, 0, 0, 0, 0,17908, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17908,17908,17908,17910,17910, 0,17910,17910, 17910,17910,17910,17910,17910,17910,17910, 0,17910,17910, 0, 0, 0, 0, 0, 0, 0, 0, 0,17910, 17910,17910,17910,17910,17910,17910,17910, 0, 0, 0, 0,17910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17910, 17910,17910,17917,17917, 0,17917,17917,17917,17917,17917, 17917,17917,17917,17917, 0,17917,17917, 0, 0, 0, 0, 0, 0, 0, 0, 0,17917,17917,17917,17917, 17917,17917,17917, 0, 0, 0, 0, 0,17917, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17917,17917,17917,17917, 17918,17918, 0,17918,17918,17918,17918,17918,17918,17918, 17918,17918, 0,17918,17918, 0, 0, 0, 0, 0, 0, 0, 0, 0,17918,17918,17918,17918,17918,17918, 17918,17918, 0, 0, 0, 0,17918, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17918,17918,17918,17918,17919,17919, 0,17919,17919,17919,17919,17919,17919,17919,17919,17919, 0,17919,17919, 0, 0, 0, 0, 0, 0, 0, 0, 0,17919,17919,17919,17919,17919,17919,17919, 0, 0, 0, 0, 0,17919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17919,17919,17919,17921,17921, 0,17921,17921, 17921,17921,17921,17921,17921,17921,17921, 0,17921,17921, 0, 0, 0, 0, 0, 0, 0, 0, 0,17921, 17921,17921,17921,17921,17921,17921,17921, 0, 0, 0, 0,17921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17921, 17921,17921,17931,17931, 0,17931,17931,17931,17931,17931, 17931,17931,17931,17931, 0,17931,17931, 0, 0, 0, 0, 0, 0, 0, 0, 0,17931,17931,17931,17931, 17931,17931,17931, 0, 0, 0, 0, 0,17931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17931,17931,17931,17932, 17932, 0,17932,17932,17932,17932,17932,17932,17932,17932, 17932, 0,17932,17932, 0, 0, 0, 0, 0, 0, 0, 0, 0,17932,17932,17932,17932,17932,17932,17932, 17932, 0, 0, 0, 0,17932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17932,17932,17932,17935,17935, 0,17935, 17935,17935,17935,17935,17935,17935,17935,17935, 0,17935, 17935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17935,17935,17935,17935,17935,17935,17935, 0, 0, 0, 0, 0,17935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17935,17935,17935,17936,17936, 0,17936,17936,17936,17936, 17936,17936,17936,17936,17936, 0,17936,17936, 0, 0, 0, 0, 0, 0, 0, 0, 0,17936,17936,17936, 17936,17936,17936,17936,17936, 0, 0, 0, 0,17936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17936,17936,17936, 17938,17938, 0,17938,17938,17938,17938,17938,17938,17938, 17938,17938, 0,17938,17938, 0, 0, 0, 0, 0, 0, 0, 0, 0,17938,17938,17938,17938,17938,17938, 17938, 0, 0, 0, 0, 0,17938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17938,17938,17938,17939,17939, 0, 17939,17939,17939,17939,17939,17939,17939,17939,17939, 0, 17939,17939, 0, 0, 0, 0, 0, 0, 0, 0, 0,17939,17939,17939,17939,17939,17939,17939,17939, 0, 0, 0, 0,17939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17939,17939,17939,17940,17940, 0,17940,17940,17940, 17940,17940,17940,17940,17940,17940, 0,17940,17940, 0, 0, 0, 0, 0, 0, 0, 0, 0,17940,17940, 17940,17940,17940,17940,17940, 0, 0, 0, 0, 0, 17940,17940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17940,17940, 17940, 0, 0, 0, 0, 0, 0, 0,17940,17941, 17941, 0,17941,17941,17941,17941,17941,17941,17941,17941, 17941, 0,17941,17941, 0, 0, 0, 0, 0, 0, 0, 0, 0,17941,17941,17941,17941,17941,17941,17941, 0, 0, 0, 0, 0,17941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17941,17941,17941,17942,17942, 0,17942, 17942,17942,17942,17942,17942,17942,17942,17942, 0,17942, 17942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17942,17942,17942,17942,17942,17942,17942, 0, 0, 0, 0, 0,17942,17942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17942,17942,17942, 0, 0, 0, 0, 0, 0, 0, 17942,17943,17943, 0,17943,17943,17943,17943,17943,17943, 17943,17943,17943, 0,17943,17943, 0, 0, 0, 0, 0, 0, 0, 0, 0,17943,17943,17943,17943,17943, 17943,17943, 0, 0, 0, 0, 0,17943, 0, 0, 0, 0, 0,17943, 0, 0, 0, 0, 0,17943, 0, 0, 0, 0, 0,17943,17943,17943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17943,17944,17944, 17944,17944,17944,17944,17944,17944,17944,17944, 0, 0, 0, 0, 0, 0,17944,17944,17944,17944,17944,17944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17944,17944,17944,17944,17944,17944,17947,17947,17947, 17947,17947,17947,17947,17947,17947,17947, 0, 0, 0, 0, 0, 0,17947,17947,17947,17947,17947,17947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17947,17947,17947,17947,17947,17947,17948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17948,17948,17948, 17948,17948,17948,17948,17948,17948, 0, 0, 0, 0, 0, 0, 0,17948,17948,17948,17948,17948,17948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17948,17948,17948,17948,17948,17948,17953,17953,17953,17953, 17953,17953,17953,17953,17953,17953, 0, 0, 0, 0, 0, 0,17953,17953,17953,17953,17953,17953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17953, 17953,17953,17953,17953,17953,17954,17954,17954,17954,17954, 17954,17954,17954,17954, 0, 0, 0, 0, 0, 0, 0,17954,17954,17954,17954,17954,17954, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17954,17954, 17954,17954,17954,17954,17963,17963,17963,17963,17963,17963, 17963,17963,17963,17963, 0, 0, 0, 0, 0, 0, 17963,17963,17963,17963,17963,17963, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17963,17963,17963, 17963,17963,17963,17964,17964,17964,17964,17964,17964,17964, 17964,17964, 0, 0, 0, 0, 0, 0, 0,17964, 17964,17964,17964,17964,17964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17964,17964,17964,17964, 17964,17964,17975,17975,17975,17975,17975,17975,17975,17975, 17975,17975, 0, 0, 0, 0, 0, 0,17975,17975, 17975,17975,17975,17975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17975,17975,17975,17975,17975, 17975,17976,17976,17976,17976,17976,17976,17976,17976,17976, 0, 0, 0, 0, 0, 0, 0,17976,17976,17976, 17976,17976,17976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17976,17976,17976,17976,17976,17976, 17983, 0,17983,17983,17983,17983,17983,17983,17983,17983, 17983,17983, 0, 0, 0, 0, 0, 0,17983,17983, 17983,17983,17983,17983, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17983,17983,17983,17983,17983, 17983,17991,17991,17991,17991,17991,17991,17991,17991,17991, 17991, 0, 0, 0, 0, 0, 0,17991,17991,17991, 17991,17991,17991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17991,17991,17991,17991,17991,17991, 17992,17992,17992,17992,17992,17992,17992,17992,17992, 0, 0, 0, 0, 0, 0, 0,17992,17992,17992,17992, 17992,17992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17992,17992,17992,17992,17992,17992,17999, 17999,17999,17999,17999,17999,17999,17999,17999,17999, 0, 0, 0, 0, 0, 0,17999,17999,17999,17999,17999, 17999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,17999,17999,17999,17999,17999,17999,18003,18003, 18003,18003,18003,18003,18003,18003,18003,18003, 0, 0, 0, 0, 0, 0,18003,18003,18003,18003,18003,18003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18003,18003,18003,18003,18003,18003,18004,18004,18004, 18004,18004,18004,18004,18004,18004,18004, 0, 0, 0, 0, 0, 0,18004,18004,18004,18004,18004,18004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18004,18004,18004,18004,18004,18004,18007,18007,18007,18007, 18007,18007,18007,18007,18007,18007, 0, 0, 0, 0, 0, 0,18007,18007,18007,18007,18007,18007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18007, 18007,18007,18007,18007,18007,18014,18014,18014,18014,18014, 18014,18014,18014,18014, 0, 0, 0, 0, 0, 0, 0,18014,18014,18014,18014,18014,18014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18014,18014, 18014,18014,18014,18014,18015,18015,18015,18015,18015,18015, 18015,18015,18015,18015, 0, 0, 0, 0, 0, 0, 18015,18015,18015,18015,18015,18015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18015,18015,18015, 18015,18015,18015,18020,18020, 0,18020,18020,18020,18020, 18020,18020,18020,18020,18020, 0,18020,18020, 0, 0, 0, 0, 0, 0, 0, 0, 0,18020,18020,18020, 18020,18020,18020,18020, 0, 0, 0, 0, 0,18020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18020,18020,18020, 18021,18021, 0,18021,18021,18021,18021,18021,18021,18021, 18021,18021, 0,18021,18021, 0, 0, 0, 0, 0, 0, 0, 0, 0,18021,18021,18021,18021,18021,18021, 18021,18021, 0, 0, 0, 0,18021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18021,18021,18021,18025,18025, 0, 18025,18025,18025,18025,18025,18025,18025,18025,18025, 0, 18025,18025, 0, 0, 0, 0, 0, 0, 0, 0, 0,18025,18025,18025,18025,18025,18025,18025, 0, 0, 0, 0, 0,18025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18025,18025,18025,18026,18026, 0,18026,18026,18026, 18026,18026,18026,18026,18026,18026, 0,18026,18026, 0, 0, 0, 0, 0, 0, 0, 0, 0,18026,18026, 18026,18026,18026,18026,18026,18026, 0, 0, 0, 0, 18026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18026,18026, 18026,18030,18030, 0,18030,18030,18030,18030,18030,18030, 18030,18030,18030, 0,18030,18030, 0, 0, 0, 0, 0, 0, 0, 0, 0,18030,18030,18030,18030,18030, 18030,18030, 0, 0, 0, 0, 0,18030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18030,18030,18030,18031,18031, 0,18031,18031,18031,18031,18031,18031,18031,18031,18031, 0,18031,18031, 0, 0, 0, 0, 0, 0, 0, 0, 0,18031,18031,18031,18031,18031,18031,18031,18031, 0, 0, 0, 0,18031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18031,18031,18031,18035,18035, 0,18035,18035, 18035,18035,18035,18035,18035,18035,18035, 0,18035,18035, 0, 0, 0, 0, 0, 0, 0, 0, 0,18035, 18035,18035,18035,18035,18035,18035, 0, 0, 0, 0, 0,18035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18035, 18035,18035,18036,18036, 0,18036,18036,18036,18036,18036, 18036,18036,18036,18036, 0,18036,18036, 0, 0, 0, 0, 0, 0, 0, 0, 0,18036,18036,18036,18036, 18036,18036,18036,18036, 0, 0, 0, 0,18036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18036,18036,18036,18040, 18040, 0,18040,18040,18040,18040,18040,18040,18040,18040, 18040, 0,18040,18040, 0, 0, 0, 0, 0, 0, 0, 0, 0,18040,18040,18040,18040,18040,18040,18040, 0, 0, 0, 0, 0,18040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18040,18040,18040,18041,18041, 0,18041, 18041,18041,18041,18041,18041,18041,18041,18041, 0,18041, 18041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18041,18041,18041,18041,18041,18041,18041,18041, 0, 0, 0, 0,18041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18041,18041,18041,18044,18044, 0,18044,18044,18044,18044, 18044,18044,18044,18044,18044, 0,18044,18044, 0, 0, 0, 0, 0, 0, 0, 0, 0,18044,18044,18044, 18044,18044,18044,18044, 0, 0, 0, 0, 0,18044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18044,18044,18044, 18045,18045, 0,18045,18045,18045,18045,18045,18045,18045, 18045,18045, 0,18045,18045, 0, 0, 0, 0, 0, 0, 0, 0, 0,18045,18045,18045,18045,18045,18045, 18045,18045, 0, 0, 0, 0,18045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18045,18045,18045,18047,18047, 0, 18047,18047,18047,18047,18047,18047,18047,18047,18047, 0, 18047,18047, 0, 0, 0, 0, 0, 0, 0, 0, 0,18047,18047,18047,18047,18047,18047,18047, 0, 0, 0, 0, 0,18047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18047, 0, 0, 0, 0, 0, 0,18047,18047,18047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18047,18048,18048, 0,18048,18048,18048,18048, 18048,18048,18048,18048,18048, 0,18048,18048, 0, 0, 0, 0, 0, 0, 0, 0, 0,18048,18048,18048, 18048,18048,18048,18048, 0, 0, 0, 0, 0,18048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18048,18048,18048, 18049,18049, 0,18049,18049,18049,18049,18049,18049,18049, 18049,18049, 0,18049,18049, 0, 0, 0, 0, 0, 0, 0, 0, 0,18049,18049,18049,18049,18049,18049, 18049,18049, 0, 0, 0, 0,18049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18049,18049,18049,18050,18050, 0, 18050,18050,18050,18050,18050,18050,18050,18050,18050, 0, 18050,18050, 0, 0, 0, 0, 0, 0, 0, 0, 0,18050,18050,18050,18050,18050,18050,18050, 0, 0, 0, 0, 0,18050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18050,18050,18050,18051,18051, 0,18051,18051,18051, 18051,18051,18051,18051,18051,18051, 0,18051,18051, 0, 0, 0, 0, 0, 0, 0, 0, 0,18051,18051, 18051,18051,18051,18051,18051,18051, 0, 0, 0, 0, 18051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18051,18051, 18051,18055,18055, 0,18055,18055,18055,18055,18055,18055, 18055,18055,18055, 0,18055,18055, 0, 0, 0, 0, 0, 0, 0, 0, 0,18055,18055,18055,18055,18055, 18055,18055, 0, 0, 0, 0, 0,18055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18055,18055,18055,18056,18056, 0,18056,18056,18056,18056,18056,18056,18056,18056,18056, 0,18056,18056, 0, 0, 0, 0, 0, 0, 0, 0, 0,18056,18056,18056,18056,18056,18056,18056,18056, 0, 0, 0, 0,18056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18056,18056,18056,18059,18059, 0,18059,18059, 18059,18059,18059,18059,18059,18059,18059, 0,18059,18059, 0, 0, 0, 0, 0, 0, 0, 0, 0,18059, 18059,18059,18059,18059,18059,18059, 0, 0, 0, 0, 0,18059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18059, 18059,18059,18060,18060, 0,18060,18060,18060,18060,18060, 18060,18060,18060,18060, 0,18060,18060, 0, 0, 0, 0, 0, 0, 0, 0, 0,18060,18060,18060,18060, 18060,18060,18060,18060, 0, 0, 0, 0,18060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18060,18060,18060,18062, 18062, 0,18062,18062,18062,18062,18062,18062,18062,18062, 18062, 0,18062,18062, 0, 0, 0, 0, 0, 0, 0, 0, 0,18062,18062,18062,18062,18062,18062,18062, 0, 0, 0, 0, 0,18062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18062, 0, 0, 0, 0, 0, 0,18062,18062,18062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18062,18063,18063, 0,18063,18063, 18063,18063,18063,18063,18063,18063,18063, 0,18063,18063, 0, 0, 0, 0, 0, 0, 0, 0, 0,18063, 18063,18063,18063,18063,18063,18063, 0, 0, 0, 0, 0,18063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18063, 18063,18063,18064,18064, 0,18064,18064,18064,18064,18064, 18064,18064,18064,18064, 0,18064,18064, 0, 0, 0, 0, 0, 0, 0, 0, 0,18064,18064,18064,18064, 18064,18064,18064,18064, 0, 0, 0, 0,18064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18064,18064,18064,18065, 18065, 0,18065,18065,18065,18065,18065,18065,18065,18065, 18065, 0,18065,18065, 0, 0, 0, 0, 0, 0, 0, 0, 0,18065,18065,18065,18065,18065,18065,18065, 0, 0, 0, 0, 0,18065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18065,18065,18065,18066,18066, 0,18066, 18066,18066,18066,18066,18066,18066,18066,18066, 0,18066, 18066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18066,18066,18066,18066,18066,18066,18066,18066, 0, 0, 0, 0,18066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18066,18066,18066,18070,18070, 0,18070,18070,18070,18070, 18070,18070,18070,18070,18070, 0,18070,18070, 0, 0, 0, 0, 0, 0, 0, 0, 0,18070,18070,18070, 18070,18070,18070,18070, 0, 0, 0, 0, 0,18070, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18070,18070,18070, 18071,18071, 0,18071,18071,18071,18071,18071,18071,18071, 18071,18071, 0,18071,18071, 0, 0, 0, 0, 0, 0, 0, 0, 0,18071,18071,18071,18071,18071,18071, 18071,18071, 0, 0, 0, 0,18071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18071,18071,18071,18075,18075, 0, 18075,18075,18075,18075,18075,18075,18075,18075,18075, 0, 18075,18075, 0, 0, 0, 0, 0, 0, 0, 0, 0,18075,18075,18075,18075,18075,18075,18075, 0, 0, 0, 0, 0,18075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18075,18075,18075,18076,18076, 0,18076,18076,18076, 18076,18076,18076,18076,18076,18076, 0,18076,18076, 0, 0, 0, 0, 0, 0, 0, 0, 0,18076,18076, 18076,18076,18076,18076,18076,18076, 0, 0, 0, 0, 18076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18076,18076, 18076,18080,18080, 0,18080,18080,18080,18080,18080,18080, 18080,18080,18080, 0,18080,18080, 0, 0, 0, 0, 0, 0, 0, 0, 0,18080,18080,18080,18080,18080, 18080,18080, 0, 0, 0, 0, 0,18080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18080,18080,18080,18081,18081, 0,18081,18081,18081,18081,18081,18081,18081,18081,18081, 0,18081,18081, 0, 0, 0, 0, 0, 0, 0, 0, 0,18081,18081,18081,18081,18081,18081,18081,18081, 0, 0, 0, 0,18081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18081,18081,18081,18084,18084, 0,18084,18084, 18084,18084,18084,18084,18084,18084,18084, 0,18084,18084, 0, 0, 0, 0, 0, 0, 0, 0, 0,18084, 18084,18084,18084,18084,18084,18084, 0, 0, 0, 0, 0,18084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18084, 18084,18084,18085,18085, 0,18085,18085,18085,18085,18085, 18085,18085,18085,18085, 0,18085,18085, 0, 0, 0, 0, 0, 0, 0, 0, 0,18085,18085,18085,18085, 18085,18085,18085,18085, 0, 0, 0, 0,18085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18085,18085,18085,18087, 18087, 0,18087,18087,18087,18087,18087,18087,18087,18087, 18087, 0,18087,18087, 0, 0, 0, 0, 0, 0, 0, 0, 0,18087,18087,18087,18087,18087,18087,18087, 0, 0, 0, 0, 0,18087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18087,18087,18087,18088,18088, 0,18088, 18088,18088,18088,18088,18088,18088,18088,18088, 0,18088, 18088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18088,18088,18088,18088,18088,18088,18088,18088, 0, 0, 0, 0,18088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18088,18088,18088,18089,18089, 0,18089,18089,18089,18089, 18089,18089,18089,18089,18089, 0,18089,18089, 0, 0, 0, 0, 0, 0, 0, 0, 0,18089,18089,18089, 18089,18089,18089,18089, 0, 0, 0, 0, 0,18089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18089, 0, 0, 0,18089,18089,18089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18089,18090,18090, 0,18090,18090,18090,18090,18090, 18090,18090,18090,18090, 0,18090,18090, 0, 0, 0, 0, 0, 0, 0, 0, 0,18090,18090,18090,18090, 18090,18090,18090, 0, 0, 0, 0, 0,18090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18090,18090,18090,18091, 18091, 0,18091,18091,18091,18091,18091,18091,18091,18091, 18091, 0,18091,18091,18091,18091,18091,18091,18091,18091, 18091,18091,18091,18091,18091,18091,18091,18091,18091,18091, 0, 0, 0, 0, 0,18091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18091,18091,18091,18093,18093, 0,18093, 18093,18093,18093,18093,18093,18093,18093,18093, 0,18093, 18093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18093,18093,18093,18093,18093,18093,18093, 0, 0, 0, 0, 0,18093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18093,18093,18093,18094,18094, 0,18094,18094,18094,18094, 18094,18094,18094,18094,18094, 0,18094,18094, 0, 0, 0, 0, 0, 0, 0, 0, 0,18094,18094,18094, 18094,18094,18094,18094,18094, 0, 0, 0, 0,18094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18094,18094,18094, 18095,18095, 0,18095,18095,18095,18095,18095,18095,18095, 18095,18095, 0,18095,18095, 0, 0, 0, 0, 0, 0, 0, 0, 0,18095,18095,18095,18095,18095,18095, 18095, 0, 0, 0, 0, 0,18095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18095, 0, 0, 0,18095,18095,18095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18095,18106, 18106, 0,18106,18106,18106,18106,18106,18106,18106,18106, 18106, 0,18106,18106, 0, 0, 0, 0, 0, 0, 0, 0, 0,18106,18106,18106,18106,18106,18106,18106, 0, 0, 0, 0, 0,18106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18106,18106,18106,18107,18107, 0,18107, 18107,18107,18107,18107,18107,18107,18107,18107, 0,18107, 18107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18107,18107,18107,18107,18107,18107,18107,18107, 0, 0, 0, 0,18107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18107,18107,18107,18121,18121, 0,18121,18121,18121,18121, 18121,18121,18121,18121,18121, 0,18121,18121, 0, 0, 0, 0, 0, 0, 0, 0, 0,18121,18121,18121, 18121,18121,18121,18121, 0, 0, 0, 0, 0,18121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18121,18121,18121, 18122,18122, 0,18122,18122,18122,18122,18122,18122,18122, 18122,18122, 0,18122,18122, 0, 0, 0, 0, 0, 0, 0, 0, 0,18122,18122,18122,18122,18122,18122, 18122,18122, 0, 0, 0, 0,18122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18122,18122,18122,18143,18143, 0, 18143,18143,18143,18143,18143,18143,18143,18143,18143, 0, 18143,18143, 0, 0, 0, 0, 0, 0, 0, 0, 0,18143,18143,18143,18143,18143,18143,18143, 0, 0, 0, 0, 0,18143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18143,18143,18143,18144,18144, 0,18144,18144,18144, 18144,18144,18144,18144,18144,18144, 0,18144,18144, 0, 0, 0, 0, 0, 0, 0, 0, 0,18144,18144, 18144,18144,18144,18144,18144,18144, 0, 0, 0, 0, 18144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18144,18144, 18144,18148,18148, 0,18148,18148,18148,18148,18148,18148, 18148,18148,18148, 0,18148,18148, 0, 0, 0, 0, 0, 0, 0, 0, 0,18148,18148,18148,18148,18148, 18148,18148, 0, 0, 0, 0, 0,18148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18148,18148,18148,18149,18149, 0,18149,18149,18149,18149,18149,18149,18149,18149,18149, 0,18149,18149, 0, 0, 0, 0, 0, 0, 0, 0, 0,18149,18149,18149,18149,18149,18149,18149,18149, 0, 0, 0, 0,18149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18149,18149,18149,18150,18150, 0,18150,18150, 18150,18150,18150,18150,18150,18150,18150, 0,18150,18150, 0, 0, 0, 0, 0, 0, 0, 0, 0,18150, 18150,18150,18150,18150,18150,18150, 0, 0, 0, 0, 0,18150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18150, 18150,18150,18151,18151, 0,18151,18151,18151,18151,18151, 18151,18151,18151,18151, 0,18151,18151, 0, 0, 0, 0, 0, 0, 0, 0, 0,18151,18151,18151,18151, 18151,18151,18151,18151, 0, 0, 0, 0,18151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18151,18151,18151,18152, 18152, 0,18152,18152,18152,18152,18152,18152,18152,18152, 18152, 0,18152,18152, 0, 0, 0, 0, 0, 0, 0, 0, 0,18152,18152,18152,18152,18152,18152,18152, 0, 0, 0, 0, 0,18152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18152, 0, 0, 0, 0, 0,18152,18152,18152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18152,18157,18157, 0,18157, 18157,18157,18157,18157,18157,18157,18157,18157, 0,18157, 18157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18157,18157,18157,18157,18157,18157,18157, 0, 0, 0, 0, 0,18157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18157,18157,18157,18158,18158, 0,18158,18158,18158,18158, 18158,18158,18158,18158,18158, 0,18158,18158, 0, 0, 0, 0, 0, 0, 0, 0, 0,18158,18158,18158, 18158,18158,18158,18158,18158, 0, 0, 0, 0,18158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18158,18158,18158, 18161,18161, 0,18161,18161,18161,18161,18161,18161,18161, 18161,18161, 0,18161,18161, 0, 0, 0, 0, 0, 0, 0, 0, 0,18161,18161,18161,18161,18161,18161, 18161, 0, 0, 0, 0, 0,18161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18161,18161,18161,18162,18162, 0, 18162,18162,18162,18162,18162,18162,18162,18162,18162, 0, 18162,18162, 0, 0, 0, 0, 0, 0, 0, 0, 0,18162,18162,18162,18162,18162,18162,18162,18162, 0, 0, 0, 0,18162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18162,18162,18162,18164,18164, 0,18164,18164,18164, 18164,18164,18164,18164,18164,18164, 0,18164,18164, 0, 0, 0, 0, 0, 0, 0, 0, 0,18164,18164, 18164,18164,18164,18164,18164, 0, 0, 0, 0, 0, 18164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18164,18164, 18164,18165,18165, 0,18165,18165,18165,18165,18165,18165, 18165,18165,18165, 0,18165,18165, 0, 0, 0, 0, 0, 0, 0, 0, 0,18165,18165,18165,18165,18165, 18165,18165,18165, 0, 0, 0, 0,18165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18165,18165,18165,18166,18166, 0,18166,18166,18166,18166,18166,18166,18166,18166,18166, 0,18166,18166, 0, 0, 0, 0, 0, 0, 0, 0, 0,18166,18166,18166,18166,18166,18166,18166, 0, 0, 0, 0, 0,18166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18166, 0, 0, 0,18166,18166,18166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18166,18167,18167, 0, 18167,18167,18167,18167,18167,18167,18167,18167,18167, 0, 18167,18167, 0, 0, 0, 0, 0, 0, 0, 0, 0,18167,18167,18167,18167,18167,18167,18167, 0, 0, 0, 0, 0,18167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18167,18167,18167,18168,18168, 0,18168,18168,18168, 18168,18168,18168,18168,18168,18168, 0,18168,18168,18168, 18168,18168,18168,18168,18168,18168,18168,18168,18168,18168, 18168,18168,18168,18168,18168, 0, 0, 0, 0, 0, 18168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18168,18168, 18168,18170,18170, 0,18170,18170,18170,18170,18170,18170, 18170,18170,18170, 0,18170,18170, 0, 0, 0, 0, 0, 0, 0, 0, 0,18170,18170,18170,18170,18170, 18170,18170, 0, 0, 0, 0, 0,18170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18170,18170,18170,18171,18171, 0,18171,18171,18171,18171,18171,18171,18171,18171,18171, 0,18171,18171, 0, 0, 0, 0, 0, 0, 0, 0, 0,18171,18171,18171,18171,18171,18171,18171,18171, 0, 0, 0, 0,18171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18171,18171,18171,18172,18172, 0,18172,18172, 18172,18172,18172,18172,18172,18172,18172, 0,18172,18172, 0, 0, 0, 0, 0, 0, 0, 0, 0,18172, 18172,18172,18172,18172,18172,18172, 0, 0, 0, 0, 0,18172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18172, 0, 0, 0,18172, 18172,18172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18172,18173,18173, 0,18173,18173,18173, 18173,18173,18173,18173,18173,18173, 0,18173,18173, 0, 0, 0, 0, 0, 0, 0, 0, 0,18173,18173, 18173,18173,18173,18173,18173, 0, 0, 0, 0, 0, 18173,18173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18173,18173, 18173,18178,18178,18178,18178,18178,18178,18178,18178,18178, 18178, 0, 0, 0, 0, 0, 0,18178,18178,18178, 18178,18178,18178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18178,18178,18178,18178,18178,18178, 18179,18179,18179,18179,18179,18179,18179,18179,18179,18179, 0, 0, 0, 0, 0, 0,18179,18179,18179,18179, 18179,18179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18179,18179,18179,18179,18179,18179,18181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18181,18181,18181,18181,18181,18181,18181,18181,18181,18181, 0, 0, 0, 0, 0, 0,18181,18181,18181,18181, 18181,18181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18181,18181,18181,18181,18181,18181,18186, 18186,18186,18186,18186,18186,18186,18186,18186,18186, 0, 0, 0, 0, 0, 0,18186,18186,18186,18186,18186, 18186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18186,18186,18186,18186,18186,18186,18188,18188, 18188,18188,18188,18188,18188,18188,18188,18188, 0, 0, 0, 0, 0, 0,18188,18188,18188,18188,18188,18188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18188,18188,18188,18188,18188,18188,18193,18193,18193, 18193,18193,18193,18193,18193,18193,18193, 0, 0, 0, 0, 0, 0,18193,18193,18193,18193,18193,18193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18193,18193,18193,18193,18193,18193,18195,18195,18195,18195, 18195,18195,18195,18195,18195,18195, 0, 0, 0, 0, 0, 0,18195,18195,18195,18195,18195,18195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18195, 18195,18195,18195,18195,18195,18200,18200,18200,18200,18200, 18200,18200,18200,18200, 0, 0, 0, 0, 0, 0, 0,18200,18200,18200,18200,18200,18200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18200,18200, 18200,18200,18200,18200,18201,18201,18201,18201,18201,18201, 18201,18201,18201,18201, 0, 0, 0, 0, 0, 0, 18201,18201,18201,18201,18201,18201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18201,18201,18201, 18201,18201,18201,18203,18203,18203,18203,18203,18203,18203, 18203,18203,18203, 0, 0, 0, 0, 0, 0,18203, 18203,18203,18203,18203,18203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18203,18203,18203,18203, 18203,18203,18208,18208,18208,18208,18208,18208,18208,18208, 18208, 0, 0, 0, 0, 0, 0, 0,18208,18208, 18208,18208,18208,18208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18208,18208,18208,18208,18208, 18208,18209, 0,18209,18209,18209,18209,18209,18209,18209, 18209,18209,18209, 0, 0, 0, 0, 0, 0,18209, 18209,18209,18209,18209,18209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18209,18209,18209,18209, 18209,18209,18212,18212,18212,18212,18212,18212,18212,18212, 18212,18212, 0, 0, 0, 0, 0, 0,18212,18212, 18212,18212,18212,18212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18212,18212,18212,18212,18212, 18212,18214,18214,18214,18214,18214,18214,18214,18214,18214, 18214, 0, 0, 0, 0, 0, 0,18214,18214,18214, 18214,18214,18214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18214,18214,18214,18214,18214,18214, 18219,18219,18219,18219,18219,18219,18219,18219,18219, 0, 0, 0, 0, 0, 0, 0,18219,18219,18219,18219, 18219,18219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18219,18219,18219,18219,18219,18219,18220, 18220,18220,18220,18220,18220,18220,18220,18220,18220, 0, 0, 0, 0, 0, 0,18220,18220,18220,18220,18220, 18220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18220,18220,18220,18220,18220,18220,18227,18227, 18227,18227,18227,18227,18227,18227,18227,18227, 0, 0, 0, 0, 0, 0,18227,18227,18227,18227,18227,18227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18227,18227,18227,18227,18227,18227,18228,18228,18228, 18228,18228,18228,18228,18228,18228, 0, 0, 0, 0, 0, 0, 0,18228,18228,18228,18228,18228,18228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18228,18228,18228,18228,18228,18228,18235,18235,18235,18235, 18235,18235,18235,18235,18235,18235, 0, 0, 0, 0, 0, 0,18235,18235,18235,18235,18235,18235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18235, 18235,18235,18235,18235,18235,18239,18239,18239,18239,18239, 18239,18239,18239,18239,18239, 0, 0, 0, 0, 0, 0,18239,18239,18239,18239,18239,18239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18239,18239, 18239,18239,18239,18239,18244,18244, 0,18244,18244,18244, 18244,18244,18244,18244,18244,18244, 0,18244,18244, 0, 0, 0, 0, 0, 0, 0, 0, 0,18244,18244, 18244,18244,18244,18244,18244, 0, 0, 0, 0, 0, 18244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18244,18244, 18244,18244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18244,18245,18245, 0,18245,18245,18245,18245,18245,18245, 18245,18245,18245, 0,18245,18245, 0, 0, 0, 0, 0, 0, 0, 0, 0,18245,18245,18245,18245,18245, 18245,18245, 0, 0, 0, 0, 0,18245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18245,18245,18245,18246,18246, 0,18246,18246,18246,18246,18246,18246,18246,18246,18246, 0,18246,18246, 0, 0, 0, 0, 0, 0, 0, 0, 0,18246,18246,18246,18246,18246,18246,18246,18246, 0, 0, 0, 0,18246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18246,18246,18246,18250,18250, 0,18250,18250, 18250,18250,18250,18250,18250,18250,18250, 0,18250,18250, 0, 0, 0, 0, 0, 0, 0, 0, 0,18250, 18250,18250,18250,18250,18250,18250, 0, 0, 0, 0, 0,18250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18250, 18250,18250,18251,18251, 0,18251,18251,18251,18251,18251, 18251,18251,18251,18251, 0,18251,18251, 0, 0, 0, 0, 0, 0, 0, 0, 0,18251,18251,18251,18251, 18251,18251,18251,18251, 0, 0, 0, 0,18251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18251,18251,18251,18255, 18255, 0,18255,18255,18255,18255,18255,18255,18255,18255, 18255, 0,18255,18255, 0, 0, 0, 0, 0, 0, 0, 0, 0,18255,18255,18255,18255,18255,18255,18255, 0, 0, 0, 0, 0,18255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18255,18255,18255,18256,18256, 0,18256, 18256,18256,18256,18256,18256,18256,18256,18256, 0,18256, 18256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18256,18256,18256,18256,18256,18256,18256,18256, 0, 0, 0, 0,18256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18256,18256,18256,18260,18260, 0,18260,18260,18260,18260, 18260,18260,18260,18260,18260, 0,18260,18260, 0, 0, 0, 0, 0, 0, 0, 0, 0,18260,18260,18260, 18260,18260,18260,18260, 0, 0, 0, 0, 0,18260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18260,18260,18260, 18261,18261, 0,18261,18261,18261,18261,18261,18261,18261, 18261,18261, 0,18261,18261, 0, 0, 0, 0, 0, 0, 0, 0, 0,18261,18261,18261,18261,18261,18261, 18261,18261, 0, 0, 0, 0,18261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18261,18261,18261,18264,18264, 0, 18264,18264,18264,18264,18264,18264,18264,18264,18264, 0, 18264,18264, 0, 0, 0, 0, 0, 0, 0, 0, 0,18264,18264,18264,18264,18264,18264,18264, 0, 0, 0, 0, 0,18264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18264,18264,18264,18265,18265, 0,18265,18265,18265, 18265,18265,18265,18265,18265,18265, 0,18265,18265, 0, 0, 0, 0, 0, 0, 0, 0, 0,18265,18265, 18265,18265,18265,18265,18265,18265, 0, 0, 0, 0, 18265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18265,18265, 18265,18267,18267, 0,18267,18267,18267,18267,18267,18267, 18267,18267,18267, 0,18267,18267, 0, 0, 0, 0, 0, 0, 0, 0, 0,18267,18267,18267,18267,18267, 18267,18267, 0, 0, 0, 0, 0,18267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18267,18267,18267,18268,18268, 0,18268,18268,18268,18268,18268,18268,18268,18268,18268, 0,18268,18268, 0, 0, 0, 0, 0, 0, 0, 0, 0,18268,18268,18268,18268,18268,18268,18268,18268, 0, 0, 0, 0,18268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18268,18268,18268,18269,18269, 0,18269,18269, 18269,18269,18269,18269,18269,18269,18269,18269,18269,18269, 0, 0, 0, 0, 0, 0, 0, 0, 0,18269, 18269,18269,18269,18269,18269,18269,18269, 0, 0, 0, 0,18269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18269, 18269,18269,18269,18269,18270,18270, 0,18270,18270,18270, 18270,18270,18270,18270,18270,18270, 0,18270,18270, 0, 0, 0, 0, 0, 0, 0, 0, 0,18270,18270, 18270,18270,18270,18270,18270, 0, 0, 0, 0, 0, 18270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18270,18270, 18270,18271,18271, 0,18271,18271,18271,18271,18271,18271, 18271,18271,18271, 0,18271,18271, 0, 0, 0, 0, 0, 0, 0, 0, 0,18271,18271,18271,18271,18271, 18271,18271,18271, 0, 0, 0, 0,18271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18271,18271,18271,18273,18273, 0,18273,18273,18273,18273,18273,18273,18273,18273,18273, 0,18273,18273, 0, 0, 0, 0, 0, 0, 0, 0, 0,18273,18273,18273,18273,18273,18273,18273, 0, 0, 0, 0, 0,18273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18273,18273,18273,18274,18274, 0,18274,18274, 18274,18274,18274,18274,18274,18274,18274, 0,18274,18274, 0, 0, 0, 0, 0, 0, 0, 0, 0,18274, 18274,18274,18274,18274,18274,18274,18274, 0, 0, 0, 0,18274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18274, 18274,18274,18276,18276, 0,18276,18276,18276,18276,18276, 18276,18276,18276,18276, 0,18276,18276, 0, 0, 0, 0, 0, 0, 0, 0, 0,18276,18276,18276,18276, 18276,18276,18276, 0, 0, 0, 0, 0,18276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18276,18276,18276,18277, 18277, 0,18277,18277,18277,18277,18277,18277,18277,18277, 18277, 0,18277,18277, 0, 0, 0, 0, 0, 0, 0, 0, 0,18277,18277,18277,18277,18277,18277,18277, 18277, 0, 0, 0, 0,18277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18277,18277,18277,18278,18278, 0,18278, 18278,18278,18278,18278,18278,18278,18278,18278,18278,18278, 18278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18278,18278,18278,18278,18278,18278,18278,18278, 0, 0, 0, 0,18278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18278,18278,18278,18278,18278,18300, 0,18300, 0, 0, 18300,18300,18300,18300,18300,18300,18300,18300,18300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18300,18300, 0,18300,18307,18307, 0,18307,18307,18307,18307,18307, 18307,18307,18307,18307, 0,18307,18307, 0, 0, 0, 0, 0, 0, 0, 0, 0,18307,18307,18307,18307, 18307,18307,18307, 0, 0, 0, 0, 0,18307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18307,18307,18307,18308, 18308, 0,18308,18308,18308,18308,18308,18308,18308,18308, 18308, 0,18308,18308, 0, 0, 0, 0, 0, 0, 0, 0, 0,18308,18308,18308,18308,18308,18308,18308, 18308, 0, 0, 0, 0,18308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18308,18308,18308,18309,18309, 0,18309, 18309,18309,18309,18309,18309,18309,18309,18309, 0,18309, 18309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18309,18309,18309,18309,18309,18309,18309, 0, 0, 0, 0, 0,18309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18309,18309,18309,18331,18331, 0,18331,18331,18331,18331, 18331,18331,18331,18331,18331, 0,18331,18331, 0, 0, 0, 0, 0, 0, 0, 0, 0,18331,18331,18331, 18331,18331,18331,18331, 0, 0, 0, 0, 0,18331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18331,18331,18331, 18332,18332, 0,18332,18332,18332,18332,18332,18332,18332, 18332,18332, 0,18332,18332, 0, 0, 0, 0, 0, 0, 0, 0, 0,18332,18332,18332,18332,18332,18332, 18332,18332, 0, 0, 0, 0,18332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18332,18332,18332,18336,18336, 0, 18336,18336,18336,18336,18336,18336,18336,18336,18336,18336, 18336,18336, 0, 0, 0, 0, 0, 0, 0, 0, 0,18336,18336,18336,18336,18336,18336,18336, 0, 0, 0, 0, 0,18336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18336,18336,18336,18336,18337,18337, 0,18337,18337, 18337,18337,18337,18337,18337,18337,18337, 0,18337,18337, 0, 0, 0, 0, 0, 0, 0, 0, 0,18337, 18337,18337,18337,18337,18337,18337, 0, 0, 0, 0, 0,18337, 0, 0, 0, 0, 0,18337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18337, 18337,18337,18338,18338, 0,18338,18338,18338,18338,18338, 18338,18338,18338,18338, 0,18338,18338, 0, 0, 0, 0, 0, 0, 0, 0, 0,18338,18338,18338,18338, 18338,18338,18338,18338, 0, 0, 0, 0,18338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18338,18338,18338,18349, 18349, 0,18349,18349,18349,18349,18349,18349,18349,18349, 18349, 0,18349,18349, 0, 0, 0, 0, 0, 0, 0, 0, 0,18349,18349,18349,18349,18349,18349,18349, 0, 0, 0, 0, 0,18349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18349,18349,18349,18364,18364, 0,18364, 18364,18364,18364,18364,18364,18364,18364,18364, 0,18364, 18364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18364,18364,18364,18364,18364,18364,18364, 0, 0, 0, 0, 0,18364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18364,18364,18364,18365,18365, 0,18365,18365,18365,18365, 18365,18365,18365,18365,18365, 0,18365,18365, 0, 0, 0, 0, 0, 0, 0, 0, 0,18365,18365,18365, 18365,18365,18365,18365,18365, 0, 0, 0, 0,18365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18365,18365,18365, 18381,18381, 0,18381,18381,18381,18381,18381,18381,18381, 18381,18381, 0,18381,18381, 0, 0, 0, 0, 0, 0, 0, 0, 0,18381,18381,18381,18381,18381,18381, 18381, 0, 0, 0, 0, 0,18381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18381,18381,18381,18382,18382, 0, 18382,18382,18382,18382,18382,18382,18382,18382,18382, 0, 18382,18382, 0, 0, 0, 0, 0, 0, 0, 0, 0,18382,18382,18382,18382,18382,18382,18382,18382, 0, 0, 0, 0,18382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18382,18382,18382,18386,18386, 0,18386,18386,18386, 18386,18386,18386,18386,18386,18386, 0,18386,18386, 0, 0, 0, 0, 0, 0, 0, 0, 0,18386,18386, 18386,18386,18386,18386,18386, 0, 0, 0, 0, 0, 18386, 0, 0, 0, 0, 0,18386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18386,18386, 18386,18386,18397, 0, 0, 0, 0, 0,18397, 0, 18397, 0, 0,18397,18397,18397,18397,18397,18397,18397, 18397,18397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18397, 0, 0,18397,18407,18407,18407,18407,18407, 18407,18407,18407,18407,18407,18407,18407, 0,18407,18407, 0, 0, 0, 0, 0, 0, 0, 0, 0,18407, 18407,18407,18407,18407,18407,18407, 0, 0, 0, 0, 0,18407, 0, 0, 0, 0, 0,18407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18407, 18407,18407,18407,18418,18418, 0,18418,18418,18418,18418, 18418,18418,18418, 0,18418,18418,18418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18418,18418,18418, 18418,18418,18418,18418, 0, 0, 0, 0, 0,18418, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18418,18418,18418, 18418,18419,18419, 0,18419,18419,18419,18419,18419,18419, 18419, 0,18419,18419,18419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18419,18419,18419,18419,18419, 18419,18419,18419, 0, 0, 0, 0,18419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18419,18419,18419,18419,18423, 18423,18423,18423,18423,18423,18423,18423,18423, 0, 0, 0, 0, 0, 0, 0,18423,18423,18423,18423,18423, 18423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18423,18423,18423,18423,18423,18423,18426,18426, 18426,18426,18426,18426,18426,18426,18426,18426, 0, 0, 0, 0, 0, 0,18426,18426,18426,18426,18426,18426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18426,18426,18426,18426,18426,18426,18430,18430,18430, 18430,18430,18430,18430,18430,18430, 0, 0, 0, 0, 0, 0,18430,18430,18430,18430,18430,18430,18430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18430,18430,18430,18430,18430,18430,18436,18436,18436,18436, 18436,18436,18436,18436,18436, 0, 0, 0, 0, 0, 0, 0,18436,18436,18436,18436,18436,18436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18436, 18436,18436,18436,18436,18436,18439,18439,18439,18439,18439, 18439,18439,18439,18439,18439, 0, 0, 0, 0, 0, 0,18439,18439,18439,18439,18439,18439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18439,18439, 18439,18439,18439,18439,18443,18443,18443,18443,18443,18443, 18443,18443,18443, 0, 0, 0, 0, 0, 0, 0, 18443,18443,18443,18443,18443,18443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18443,18443,18443, 18443,18443,18443,18446, 0,18446,18446,18446,18446,18446, 18446,18446,18446,18446,18446, 0, 0, 0, 0, 0, 0,18446,18446,18446,18446,18446,18446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18446,18446, 18446,18446,18446,18446,18453,18453,18453,18453,18453,18453, 18453,18453,18453, 0, 0, 0, 0, 0, 0, 0, 18453,18453,18453,18453,18453,18453, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18453,18453,18453, 18453,18453,18453,18456,18456,18456,18456,18456,18456,18456, 18456,18456,18456, 0, 0, 0, 0, 0, 0,18456, 18456,18456,18456,18456,18456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18456,18456,18456,18456, 18456,18456,18460,18460,18460,18460,18460,18460,18460,18460, 18460,18460, 0, 0, 0, 0, 0, 0,18460,18460, 18460,18460,18460,18460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18460,18460,18460,18460,18460, 18460,18464,18464,18464,18464,18464,18464,18464,18464,18464, 0, 0, 0, 0, 0, 0, 0,18464,18464,18464, 18464,18464,18464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18464,18464,18464,18464,18464,18464, 18467,18467,18467,18467,18467,18467,18467,18467,18467,18467, 0, 0, 0, 0, 0, 0,18467,18467,18467,18467, 18467,18467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18467,18467,18467,18467,18467,18467,18471, 18471,18471,18471,18471,18471,18471,18471,18471,18471, 0, 0, 0, 0, 0, 0,18471,18471,18471,18471,18471, 18471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18471,18471,18471,18471,18471,18471,18475,18475, 18475,18475,18475,18475,18475,18475,18475, 0, 0, 0, 0, 0, 0, 0,18475,18475,18475,18475,18475,18475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18475,18475,18475,18475,18475,18475,18478,18478,18478, 18478,18478,18478,18478,18478,18478,18478, 0, 0, 0, 0, 0, 0,18478,18478,18478,18478,18478,18478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18478,18478,18478,18478,18478,18478,18482,18482,18482,18482, 18482,18482,18482,18482,18482,18482, 0, 0, 0, 0, 0, 0,18482,18482,18482,18482,18482,18482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18482, 18482,18482,18482,18482,18482,18483,18483,18483,18483,18483, 18483,18483,18483,18483,18483, 0, 0, 0, 0, 0, 0,18483,18483,18483,18483,18483,18483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18483,18483, 18483,18483,18483,18483,18485,18485,18485,18485,18485,18485, 18485,18485,18485, 0, 0, 0, 0, 0, 0, 0, 18485,18485,18485,18485,18485,18485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18485,18485,18485, 18485,18485,18485,18488,18488,18488,18488,18488,18488,18488, 18488,18488, 0, 0, 0, 0, 0, 0, 0,18488, 18488,18488,18488,18488,18488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18488,18488,18488,18488, 18488,18488,18489,18489,18489,18489,18489,18489,18489,18489, 18489,18489, 0, 0, 0, 0, 0, 0,18489,18489, 18489,18489,18489,18489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18489,18489,18489,18489,18489, 18489,18505, 0,18505,18505,18505,18505,18505,18505,18505, 18505,18505,18505, 0, 0, 0, 0, 0, 0,18505, 18505,18505,18505,18505,18505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18505,18505,18505,18505, 18505,18505,18509,18509,18509,18509,18509,18509,18509,18509, 18509,18509, 0, 0, 0, 0, 0, 0,18509,18509, 18509,18509,18509,18509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18509, 0, 0, 0,18509,18509,18509,18509,18509, 18509,18525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18525,18525, 18525,18525,18525,18525,18525,18525,18525,18525,18525,18525, 18525,18525,18525,18525,18525,18525,18525,18525,18525,18525, 18525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18525,18527, 18527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18527,18527,18527,18527,18527,18527,18527,18527,18527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18527, 0,18527,18527,18527,18527,18527,18527, 0, 0, 0, 0, 0, 0, 0,18527,18528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18528, 18528,18528,18528,18528,18528,18528,18528,18528, 0,18528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18528,18528,18529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18529,18529,18529, 18529,18529,18529,18529,18529,18529, 0,18529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18529,18565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18565, 0,18565, 0, 0, 0, 0,18565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18565, 0, 18565, 0,18565, 0, 0,18565,18565, 0, 0, 0, 18565, 0, 0,18565, 0,18565, 0,18565, 0,18565, 18565,18565,18566,18566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18566, 0, 0, 0, 0, 0, 0,18566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18566, 0,18566, 0, 18566, 0, 0,18566,18566, 0, 0, 0,18566, 0, 0,18566, 0,18566, 0,18566, 0,18566,18566,18566, 18567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18567, 0, 0, 0, 0, 0, 0,18567, 18567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18567, 0,18567, 0,18567, 0, 0,18567,18567, 0, 0, 0,18567, 0, 0,18567, 0,18567, 0,18567, 0,18567,18567,18567,18568, 0, 18568, 0, 0, 0, 0, 0, 0,18568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18568, 0, 0, 0, 0, 0, 0,18568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18568, 0,18568, 0,18568, 0, 0,18568,18568, 0, 0, 0,18568, 0, 0,18568, 0,18568, 0,18568, 0,18568,18568,18568,18569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18569, 0, 0, 0, 0, 0, 0,18569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18569, 0,18569, 0,18569, 0, 0,18569, 18569, 0, 0, 0,18569, 0,18569,18569, 0,18569, 0,18569, 0,18569,18569,18569,18570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18570, 0, 0, 0, 0, 0, 0,18570, 0, 0, 0, 0, 0, 0,18570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18570, 0,18570, 0,18570, 0, 0,18570,18570, 0, 0, 0,18570, 0, 0,18570, 0,18570, 0,18570, 0,18570,18570,18570,18571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18571, 0, 0, 0, 0, 0, 0,18571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18571, 0, 18571, 0,18571, 0, 0,18571,18571, 0, 0, 0, 18571,18571, 0,18571, 0,18571, 0,18571, 0,18571, 18571,18571,18572, 0,18572, 0, 0, 0, 0, 0, 0,18572, 0, 0, 0,18572,18572,18572,18572,18572, 18572,18572,18572,18572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18572, 0, 0, 0, 0, 0, 0,18572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18572, 0, 18572, 0,18572, 0, 0,18572,18572, 0, 0, 0, 18572, 0, 0,18572, 0,18572, 0,18572, 0,18572, 18572,18572,18585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18585, 0, 0, 0, 0, 0, 0,18585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18585, 0,18585, 0, 18585, 0, 0,18585,18585, 0, 0, 0,18585, 0, 0,18585, 0,18585, 0,18585, 0,18585,18585,18585, 18586, 0, 0, 0, 0, 0, 0, 0, 0,18586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18586, 0, 0, 0, 0, 0, 0,18586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18586, 0,18586, 0,18586, 0, 0,18586,18586, 0, 0, 0,18586, 0, 0,18586, 0,18586, 0,18586, 0,18586,18586,18586,18587, 0, 0, 0, 0, 0, 0, 0, 0,18587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18587, 0, 0, 0, 0, 0, 0,18587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18587, 0,18587, 0,18587, 0, 0,18587, 18587, 0, 0, 0,18587, 0, 0,18587, 0,18587, 0,18587, 0,18587,18587,18587,18589, 0,18589, 0, 0, 0, 0, 0, 0,18589, 0, 0, 0,18589, 18589,18589,18589,18589,18589,18589,18589,18589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18589, 0, 0, 0, 0, 0, 0,18589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18589, 0,18589, 0,18589, 0, 0,18589, 18589, 0, 0, 0,18589, 0, 0,18589, 0,18589, 0,18589, 0,18589,18589,18589,18590, 0, 0, 0, 0, 0, 0, 0, 0, 0,18590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18590, 0, 0, 0, 0, 0, 0,18590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18590, 0,18590, 0,18590, 0, 0,18590,18590, 0, 0, 0,18590, 0, 0,18590, 0,18590, 0,18590, 0,18590,18590,18590,18591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18591, 0,18591, 0, 0, 0,18591,18591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18591, 0, 18591, 0,18591, 0, 0,18591,18591, 0, 0, 0, 18591, 0, 0,18591, 0,18591, 0,18591, 0,18591, 18591,18591,18596, 0,18596, 0, 0, 0, 0, 0, 0,18596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18596, 0, 0, 0, 0, 0, 0,18596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18596, 0, 18596, 0,18596, 0, 0,18596,18596, 0, 0, 0, 18596, 0, 0,18596, 0,18596, 0,18596, 0,18596, 18596,18596,18621, 0,18621, 0, 0, 0, 0, 0, 0,18621, 0, 0, 0,18621,18621,18621,18621,18621, 18621,18621,18621,18621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18621, 0, 0, 0, 0, 0, 0,18621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18621, 0, 18621, 0,18621, 0, 0,18621,18621, 0, 0, 0, 18621, 0, 0,18621, 0,18621, 0,18621, 0,18621, 18621,18621,18622, 0, 0, 0, 0, 0, 0, 0, 0, 0,18622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18622, 0, 0, 0, 0, 0, 0,18622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18622, 0,18622, 0, 18622, 0, 0,18622,18622, 0, 0, 0,18622, 0, 0,18622, 0,18622, 0,18622, 0,18622,18622,18622, 18623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18623, 0,18623, 0, 0, 0,18623,18623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18623, 0,18623, 0,18623, 0, 0,18623,18623, 0, 0, 0,18623, 0, 0,18623, 0,18623, 0,18623, 0,18623,18623,18623,18628, 0, 18628, 0, 0, 0, 0, 0, 0,18628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18628, 0, 0, 0, 0, 0, 0,18628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18628, 0,18628, 0,18628, 0, 0,18628,18628, 0, 0, 0,18628, 0, 0,18628, 0,18628, 0,18628, 0,18628,18628,18628,18653, 0, 18653, 0, 0, 0, 0, 0, 0,18653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18653, 0, 0, 0, 0, 0, 0,18653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18653, 0,18653, 0,18653, 0, 0,18653,18653, 0, 0, 0,18653, 0, 0,18653, 0,18653, 0,18653, 0,18653,18653,18653,18653,18654, 0,18654, 0, 0, 0, 0, 0, 0,18654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18654, 0, 0, 0, 0, 0, 0, 18654, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18654, 0,18654, 0,18654, 0,18654,18654,18654, 0, 0, 0,18654, 0,18654, 18654, 0,18654, 0,18654, 0,18654,18654,18654,18655, 0, 0, 0, 0, 0, 0, 0, 0, 0,18655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18655, 0, 0, 0, 0, 0, 0,18655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18655, 0,18655, 0,18655, 0, 0, 18655,18655, 0, 0, 0,18655, 0, 0,18655, 0, 18655, 0,18655, 0,18655,18655,18655,18656, 0, 0, 0, 0, 0, 0, 0, 0, 0,18656,18656,18656, 18656,18656,18656,18656,18656,18656,18656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18656, 0, 0, 0, 0, 0, 0,18656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18656, 0,18656, 0,18656, 0, 0,18656,18656, 0, 0, 0,18656, 0, 0,18656, 0,18656, 0, 18656, 0,18656,18656,18656,18657,18657,18657,18657,18657, 18657,18657,18657,18657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18657, 0, 0, 0, 0, 0, 0, 0, 0,18657, 0, 0, 0, 0, 0, 0, 0,18657, 0, 0, 18657,18661, 0,18661, 0, 0, 0, 0, 0, 0, 18661, 0, 0,18661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18661, 0, 0, 0, 0, 0, 0,18661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18661, 0,18661, 0,18661, 0, 0,18661,18661, 0, 0, 0,18661, 0, 0,18661, 0,18661, 0,18661, 0,18661,18661, 18661,18662, 0,18662, 0, 0, 0, 0, 0, 0, 18662, 0, 0,18662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18662, 0, 0, 0, 0, 0, 0,18662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18662, 0,18662, 0,18662, 0, 0,18662,18662, 0, 0, 0,18662, 18662, 0,18662, 0,18662,18662,18662, 0,18662,18662, 18662,18686,18686,18686,18686,18686,18686,18686,18686,18686, 18686,18686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18686, 0, 0, 0, 0,18686,18690, 0, 0, 0, 0, 0, 0, 0, 0, 0,18690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18690, 0, 0, 0, 0, 0, 0,18690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18690, 0,18690, 0,18690, 0, 0,18690,18690, 0, 0, 0,18690, 0, 0,18690, 0,18690, 0,18690, 0, 18690,18690,18690,18691, 0, 0, 0, 0, 0, 0, 0, 0, 0,18691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18691, 0, 0, 0, 0, 0, 0,18691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18691, 0,18691, 0,18691, 0, 0,18691,18691, 0, 0, 0,18691, 0, 0,18691, 0,18691, 0,18691, 0,18691,18691, 18691,18692, 0, 0, 0, 0, 0, 0, 0, 0, 0,18692,18692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18692, 0, 0, 0, 0, 0, 0, 18692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18692, 0,18692, 0,18692, 0, 0,18692,18692, 0, 0, 0,18692, 0, 0, 18692, 0,18692, 0,18692, 0,18692,18692,18692,18697, 0,18697, 0, 0, 0, 0, 0, 0,18697, 0, 0,18697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18697, 0, 0, 0, 0, 0, 0, 18697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18697, 0,18697, 0,18697, 0, 0,18697,18697, 0, 0, 0,18697, 0,18697, 18697, 0,18697, 0,18697, 0,18697,18697,18697,18700, 0,18700, 0, 0, 0, 0, 0, 0,18700, 0, 0,18700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18700, 0, 0, 0, 0, 0, 0, 18700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18700, 0,18700, 0,18700, 0, 0,18700,18700, 0, 0, 0,18700, 0, 0, 18700, 0,18700, 0,18700, 0,18700,18700,18700,18713, 0, 0, 0, 0, 0, 0, 0, 0, 0,18713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18713, 0, 0, 0, 0, 0, 0,18713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18713, 0,18713, 0,18713, 0, 0, 18713,18713, 0, 0, 0,18713, 0, 0,18713, 0, 18713, 0,18713, 0,18713,18713,18713,18714, 0, 0, 0, 0, 0, 0, 0, 0, 0,18714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18714, 0, 0, 0, 0, 0, 0,18714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18714,18714, 0,18714, 0,18714, 0, 0,18714,18714, 0, 0, 0,18714, 0, 0,18714, 0,18714, 0, 18714, 0,18714,18714,18714,18714,18715, 0,18715, 0, 0, 0, 0, 0, 0,18715, 0, 0,18715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18715, 0, 0, 0, 0, 0, 0,18715, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18715, 0,18715, 0,18715, 0, 0,18715, 18715, 0, 0, 0,18715, 0, 0,18715, 0,18715, 0,18715, 0,18715,18715,18715,18716, 0, 0, 0, 0, 0, 0, 0, 0, 0,18716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18716, 0, 0, 0, 0, 0, 0,18716, 0, 0,18716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18716, 0,18716, 0,18716, 0, 0,18716,18716, 0, 0, 0,18716, 0, 0,18716, 0,18716, 0,18716, 0,18716,18716,18716,18717, 0, 0, 0, 0, 0, 0, 0, 0, 0,18717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18717, 0, 0, 0, 0, 0, 0,18717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18717, 0, 18717, 0,18717, 0, 0,18717,18717, 0, 0, 0, 18717, 0, 0,18717, 0,18717, 0,18717, 0,18717, 18717,18717,18718, 0, 0, 0, 0, 0, 0, 0, 0, 0,18718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18718, 0, 0, 0, 0, 0, 0,18718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18718, 0,18718, 0, 18718, 0, 0,18718,18718, 0, 0, 0,18718, 0, 18718,18718, 0,18718, 0,18718, 0,18718,18718,18718, 18727, 0,18727, 0, 0, 0, 0, 0, 0,18727, 0, 0,18727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18727, 0, 0, 0, 0, 0, 0,18727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18727, 0,18727, 0, 18727, 0, 0,18727,18727, 0, 0, 0,18727, 0, 0,18727, 0,18727, 0,18727, 0,18727,18727,18727, 18756, 0,18756, 0, 0, 0, 0, 0, 0,18756, 0, 0,18756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18756, 0, 0, 0, 0, 0, 0,18756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18756, 0,18756, 0, 18756, 0, 0,18756,18756, 0, 0, 0,18756, 0, 0,18756, 0,18756, 0,18756, 0,18756,18756,18756, 18757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18757, 0, 0, 0, 0, 0, 0,18757, 0, 0,18757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18757, 0,18757, 0,18757, 0, 0,18757,18757, 0, 0, 0,18757, 0, 0,18757, 0,18757, 0,18757, 0,18757,18757,18757,18758, 0, 0, 0, 0, 0, 0, 0, 0, 0,18758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18758, 0, 0, 0, 0, 0, 0,18758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18758, 0,18758, 0,18758, 0, 0,18758, 18758, 0, 0, 0,18758, 0, 0,18758, 0,18758, 0,18758, 0,18758,18758,18758,18759, 0, 0, 0, 0, 0, 0, 0, 0, 0,18759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18759, 0, 0, 0, 0, 0, 0,18759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18759, 0,18759, 0,18759, 0, 0,18759,18759, 0, 0, 0,18759, 0,18759,18759, 0,18759, 0,18759, 0,18759,18759,18759,18768, 0,18768, 0, 0, 0, 0, 0, 0,18768, 0, 0,18768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18768, 0, 0, 0, 0, 0, 0,18768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18768, 0,18768, 0,18768, 0, 0,18768,18768, 0, 0, 0,18768, 0, 0,18768, 0,18768, 0,18768, 0,18768,18768,18768,18797, 0,18797, 0, 0, 0, 0, 0, 0,18797, 0, 0,18797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18797, 0, 0, 0, 0, 0, 0,18797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18797, 0,18797,18797,18797, 0, 0,18797,18797, 0, 0, 0,18797, 0, 0,18797, 0,18797,18797,18797, 0,18797,18797,18797,18798, 0,18798, 0, 0, 0, 0, 0, 0,18798,18798, 0,18798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18798, 0, 0, 0, 0, 0, 0,18798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18798, 0,18798, 0,18798, 0, 0,18798,18798, 0, 0, 0,18798, 0, 0,18798, 0,18798, 0,18798, 0,18798,18798,18798,18807,18807,18807,18807,18807,18807, 18807,18807, 0, 0,18807,18807,18807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18807, 18807,18807,18807,18807,18807, 0, 0, 0, 0, 0, 18807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18807,18807, 18807,18807, 0, 0, 0,18807,18823,18823, 0,18823, 18823,18823,18823,18823,18823,18823,18823,18823, 0,18823, 18823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18823,18823,18823,18823,18823,18823,18823, 0, 0, 0, 0, 0,18823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18823,18823,18823,18824,18824, 0,18824,18824,18824,18824, 18824,18824,18824,18824,18824, 0,18824,18824, 0, 0, 0, 0, 0, 0, 0, 0, 0,18824,18824,18824, 18824,18824,18824,18824,18824, 0, 0, 0, 0,18824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18824,18824,18824, 18828,18828, 0,18828,18828,18828,18828,18828,18828,18828, 18828,18828, 0,18828,18828, 0, 0, 0, 0, 0, 0, 0, 0, 0,18828,18828,18828,18828,18828,18828, 18828, 0, 0, 0, 0, 0,18828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18828,18828,18828,18829,18829, 0, 18829,18829,18829,18829,18829,18829,18829,18829,18829, 0, 18829,18829, 0, 0, 0, 0, 0, 0, 0, 0, 0,18829,18829,18829,18829,18829,18829,18829,18829, 0, 0, 0, 0,18829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18829,18829,18829,18832,18832, 0,18832,18832,18832, 18832,18832,18832,18832,18832,18832, 0,18832,18832, 0, 0, 0, 0, 0, 0, 0, 0, 0,18832,18832, 18832,18832,18832,18832,18832, 0, 0, 0, 0, 0, 18832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18832,18832, 18832,18833,18833, 0,18833,18833,18833,18833,18833,18833, 18833,18833,18833, 0,18833,18833, 0, 0, 0, 0, 0, 0, 0, 0, 0,18833,18833,18833,18833,18833, 18833,18833,18833, 0, 0, 0, 0,18833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18833,18833,18833,18835,18835, 0,18835,18835,18835,18835,18835,18835,18835,18835,18835, 0,18835,18835, 0, 0, 0, 0, 0, 0, 0, 0, 0,18835,18835,18835,18835,18835,18835,18835, 0, 0, 0, 0, 0,18835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18835,18835,18835,18836,18836, 0,18836,18836, 18836,18836,18836,18836,18836,18836,18836, 0,18836,18836, 0, 0, 0, 0, 0, 0, 0, 0, 0,18836, 18836,18836,18836,18836,18836,18836,18836, 0, 0, 0, 0,18836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18836, 18836,18836,18837,18837, 0,18837,18837,18837,18837,18837, 18837,18837,18837,18837, 0,18837,18837, 0, 0, 0, 0, 0, 0, 0, 0, 0,18837,18837,18837,18837, 18837,18837,18837, 0, 0, 0, 0, 0,18837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18837, 0, 0, 0,18837,18837,18837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18837,18838,18838, 0,18838,18838,18838,18838,18838,18838, 18838,18838,18838, 0,18838,18838, 0, 0, 0, 0, 0, 0, 0, 0, 0,18838,18838,18838,18838,18838, 18838,18838, 0, 0, 0, 0, 0,18838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18838,18838,18838,18839,18839, 0,18839,18839,18839,18839,18839,18839,18839,18839,18839, 0,18839,18839, 0, 0, 0, 0, 0, 0, 0, 0, 0,18839,18839,18839,18839,18839,18839,18839,18839, 0, 0, 0, 0,18839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18839,18839,18839,18840,18840, 0,18840,18840, 18840,18840,18840,18840,18840,18840,18840, 0,18840,18840, 0, 0, 0, 0, 0, 0, 0, 0, 0,18840, 18840,18840,18840,18840,18840,18840, 0, 0, 0, 0, 0,18840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18840, 18840,18840,18841,18841, 0,18841,18841,18841,18841,18841, 18841,18841,18841,18841, 0,18841,18841, 0, 0, 0, 0, 0, 0, 0, 0, 0,18841,18841,18841,18841, 18841,18841,18841,18841, 0, 0, 0, 0,18841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18841,18841,18841,18842, 18842, 0,18842,18842,18842,18842,18842,18842,18842,18842, 18842, 0,18842,18842, 0, 0, 0, 0, 0, 0, 0, 0, 0,18842,18842,18842,18842,18842,18842,18842, 0, 0, 0, 0, 0,18842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18842, 0, 0, 0,18842,18842,18842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18842,18843,18843, 0,18843,18843,18843,18843,18843,18843,18843,18843,18843, 0,18843,18843, 0, 0, 0, 0, 0, 0, 0, 0, 0,18843,18843,18843,18843,18843,18843,18843, 0, 0, 0, 0, 0,18843, 0, 0, 0, 0, 0, 0, 0, 0,18843, 0, 0, 0, 0, 0, 0, 0, 0,18843,18843,18843,18848,18848,18848,18848,18848, 18848,18848,18848,18848,18848, 0, 0, 0, 0, 0, 0,18848,18848,18848,18848,18848,18848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18848,18848, 18848,18848,18848,18848,18849,18849,18849,18849,18849,18849, 18849,18849,18849,18849, 0, 0, 0, 0, 0, 0, 18849,18849,18849,18849,18849,18849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18849,18849,18849, 18849,18849,18849,18851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18851,18851,18851,18851,18851,18851, 18851,18851,18851,18851, 0, 0, 0, 0, 0, 0, 18851,18851,18851,18851,18851,18851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18851,18851,18851, 18851,18851,18851,18856,18856,18856,18856,18856,18856,18856, 18856,18856,18856, 0, 0, 0, 0, 0, 0,18856, 18856,18856,18856,18856,18856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18856,18856,18856,18856, 18856,18856,18858,18858,18858,18858,18858,18858,18858,18858, 18858,18858, 0, 0, 0, 0, 0, 0,18858,18858, 18858,18858,18858,18858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18858,18858,18858,18858,18858, 18858,18863,18863,18863,18863,18863,18863,18863,18863,18863, 18863, 0, 0, 0, 0, 0, 0,18863,18863,18863, 18863,18863,18863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18863,18863,18863,18863,18863,18863, 18865,18865,18865,18865,18865,18865,18865,18865,18865,18865, 0, 0, 0, 0, 0, 0,18865,18865,18865,18865, 18865,18865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18865,18865,18865,18865,18865,18865,18870, 18870,18870,18870,18870,18870,18870,18870,18870, 0, 0, 0, 0, 0, 0, 0,18870,18870,18870,18870,18870, 18870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18870,18870,18870,18870,18870,18870,18871,18871, 18871,18871,18871,18871,18871,18871,18871,18871, 0, 0, 0, 0, 0, 0,18871,18871,18871,18871,18871,18871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18871,18871,18871,18871,18871,18871,18873,18873,18873, 18873,18873,18873,18873,18873,18873,18873, 0, 0, 0, 0, 0, 0,18873,18873,18873,18873,18873,18873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18873,18873,18873,18873,18873,18873,18878,18878,18878,18878, 18878,18878,18878,18878,18878, 0, 0, 0, 0, 0, 0, 0,18878,18878,18878,18878,18878,18878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18878, 18878,18878,18878,18878,18878,18879, 0,18879,18879,18879, 18879,18879,18879,18879,18879,18879,18879, 0, 0, 0, 0, 0, 0,18879,18879,18879,18879,18879,18879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18879,18879,18879,18879,18879,18879,18882,18882,18882,18882, 18882,18882,18882,18882,18882,18882, 0, 0, 0, 0, 0, 0,18882,18882,18882,18882,18882,18882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18882, 18882,18882,18882,18882,18882,18884,18884,18884,18884,18884, 18884,18884,18884,18884,18884, 0, 0, 0, 0, 0, 0,18884,18884,18884,18884,18884,18884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18884,18884, 18884,18884,18884,18884,18889,18889,18889,18889,18889,18889, 18889,18889,18889, 0, 0, 0, 0, 0, 0, 0, 18889,18889,18889,18889,18889,18889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18889,18889,18889, 18889,18889,18889,18890,18890,18890,18890,18890,18890,18890, 18890,18890,18890, 0, 0, 0, 0, 0, 0,18890, 18890,18890,18890,18890,18890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18890,18890,18890,18890, 18890,18890,18897,18897,18897,18897,18897,18897,18897,18897, 18897,18897, 0, 0, 0, 0, 0, 0,18897,18897, 18897,18897,18897,18897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18897,18897,18897,18897,18897, 18897,18898,18898,18898,18898,18898,18898,18898,18898,18898, 0, 0, 0, 0, 0, 0, 0,18898,18898,18898, 18898,18898,18898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18898,18898,18898,18898,18898,18898, 18905,18905,18905,18905,18905,18905,18905,18905,18905,18905, 0, 0, 0, 0, 0, 0,18905,18905,18905,18905, 18905,18905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18905,18905,18905,18905,18905,18905,18909, 18909,18909,18909,18909,18909,18909,18909,18909,18909, 0, 0, 0, 0, 0, 0,18909,18909,18909,18909,18909, 18909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18909,18909,18909,18909,18909,18909,18914,18914, 0,18914,18914,18914,18914,18914,18914,18914,18914,18914, 0,18914,18914, 0, 0, 0, 0, 0, 0, 0, 0, 0,18914,18914,18914,18914,18914,18914,18914, 0, 0, 0, 0, 0,18914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18914,18914,18914,18915,18915, 0,18915,18915, 18915,18915,18915,18915,18915,18915,18915, 0,18915,18915, 0, 0, 0, 0, 0, 0, 0, 0, 0,18915, 18915,18915,18915,18915,18915,18915,18915, 0, 0, 0, 0,18915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18915, 18915,18915,18919,18919, 0,18919,18919,18919,18919,18919, 18919,18919,18919,18919, 0,18919,18919, 0, 0, 0, 0, 0, 0, 0, 0, 0,18919,18919,18919,18919, 18919,18919,18919, 0, 0, 0, 0, 0,18919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18919,18919,18919,18920, 18920, 0,18920,18920,18920,18920,18920,18920,18920,18920, 18920, 0,18920,18920, 0, 0, 0, 0, 0, 0, 0, 0, 0,18920,18920,18920,18920,18920,18920,18920, 18920, 0, 0, 0, 0,18920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18920,18920,18920,18934,18934, 0,18934, 18934,18934,18934,18934,18934,18934,18934,18934, 0,18934, 18934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18934,18934,18934,18934,18934,18934,18934, 0, 0, 0, 0, 0,18934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18934,18934,18934,18935,18935, 0,18935,18935,18935,18935, 18935,18935,18935,18935,18935, 0,18935,18935, 0, 0, 0, 0, 0, 0, 0, 0, 0,18935,18935,18935, 18935,18935,18935,18935,18935, 0, 0, 0, 0,18935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18935,18935,18935, 18949,18949, 0,18949,18949,18949,18949,18949,18949,18949, 18949,18949, 0,18949,18949, 0, 0, 0, 0, 0, 0, 0, 0, 0,18949,18949,18949,18949,18949,18949, 18949, 0, 0, 0, 0, 0,18949, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18949,18949,18949,18950,18950, 0, 18950,18950,18950,18950,18950,18950,18950,18950,18950, 0, 18950,18950, 0, 0, 0, 0, 0, 0, 0, 0, 0,18950,18950,18950,18950,18950,18950,18950,18950, 0, 0, 0, 0,18950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18950,18950,18950,18970,18970, 0,18970,18970,18970, 18970,18970,18970,18970,18970,18970, 0,18970,18970, 0, 0, 0, 0, 0, 0, 0, 0, 0,18970,18970, 18970,18970,18970,18970,18970, 0, 0, 0, 0, 0, 18970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18970,18970, 18970,18971,18971, 0,18971,18971,18971,18971,18971,18971, 18971,18971,18971, 0,18971,18971, 0, 0, 0, 0, 0, 0, 0, 0, 0,18971,18971,18971,18971,18971, 18971,18971,18971, 0, 0, 0, 0,18971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18971,18971,18971,18975,18975, 0,18975,18975,18975,18975,18975,18975,18975,18975,18975, 0,18975,18975, 0, 0, 0, 0, 0, 0, 0, 0, 0,18975,18975,18975,18975,18975,18975,18975, 0, 0, 0, 0, 0,18975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18975,18975,18975,18976,18976, 0,18976,18976, 18976,18976,18976,18976,18976,18976,18976, 0,18976,18976, 0, 0, 0, 0, 0, 0, 0, 0, 0,18976, 18976,18976,18976,18976,18976,18976,18976, 0, 0, 0, 0,18976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18976, 18976,18976,18980,18980, 0,18980,18980,18980,18980,18980, 18980,18980,18980,18980, 0,18980,18980, 0, 0, 0, 0, 0, 0, 0, 0, 0,18980,18980,18980,18980, 18980,18980,18980, 0, 0, 0, 0, 0,18980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18980,18980,18980,18981, 18981, 0,18981,18981,18981,18981,18981,18981,18981,18981, 18981, 0,18981,18981, 0, 0, 0, 0, 0, 0, 0, 0, 0,18981,18981,18981,18981,18981,18981,18981, 18981, 0, 0, 0, 0,18981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18981,18981,18981,18985,18985, 0,18985, 18985,18985,18985,18985,18985,18985,18985,18985, 0,18985, 18985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18985,18985,18985,18985,18985,18985,18985, 0, 0, 0, 0, 0,18985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18985,18985,18985,18986,18986, 0,18986,18986,18986,18986, 18986,18986,18986,18986,18986, 0,18986,18986, 0, 0, 0, 0, 0, 0, 0, 0, 0,18986,18986,18986, 18986,18986,18986,18986,18986, 0, 0, 0, 0,18986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18986,18986,18986, 18989,18989, 0,18989,18989,18989,18989,18989,18989,18989, 18989,18989, 0,18989,18989, 0, 0, 0, 0, 0, 0, 0, 0, 0,18989,18989,18989,18989,18989,18989, 18989, 0, 0, 0, 0, 0,18989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18989,18989,18989,18990,18990, 0, 18990,18990,18990,18990,18990,18990,18990,18990,18990, 0, 18990,18990, 0, 0, 0, 0, 0, 0, 0, 0, 0,18990,18990,18990,18990,18990,18990,18990,18990, 0, 0, 0, 0,18990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18990,18990,18990,18992,18992, 0,18992,18992,18992, 18992,18992,18992,18992,18992,18992, 0,18992,18992, 0, 0, 0, 0, 0, 0, 0, 0, 0,18992,18992, 18992,18992,18992,18992,18992, 0, 0, 0, 0, 0, 18992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18992,18992, 18992,18993,18993, 0,18993,18993,18993,18993,18993,18993, 18993,18993,18993, 0,18993,18993, 0, 0, 0, 0, 0, 0, 0, 0, 0,18993,18993,18993,18993,18993, 18993,18993,18993, 0, 0, 0, 0,18993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18993,18993,18993,18994,18994, 0,18994,18994,18994,18994,18994,18994,18994,18994,18994, 18994,18994,18994, 0, 0, 0, 0, 0, 0, 0, 0, 0,18994,18994,18994,18994,18994,18994,18994,18994, 0, 0, 0, 0,18994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18994,18994,18994,18994,18994,18995,18995, 0, 18995,18995,18995,18995,18995,18995,18995,18995,18995, 0, 18995,18995, 0, 0, 0, 0, 0, 0, 0, 0, 0,18995,18995,18995,18995,18995,18995,18995, 0, 0, 0, 0, 0,18995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18995,18995,18995,18996,18996, 0,18996,18996,18996, 18996,18996,18996,18996,18996,18996, 0,18996,18996, 0, 0, 0, 0, 0, 0, 0, 0, 0,18996,18996, 18996,18996,18996,18996,18996,18996, 0, 0, 0, 0, 18996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18996,18996, 18996,18999,18999, 0,18999,18999,18999,18999,18999,18999, 18999,18999,18999, 0,18999,18999, 0, 0, 0, 0, 0, 0, 0, 0, 0,18999,18999,18999,18999,18999, 18999,18999, 0, 0, 0, 0, 0,18999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,18999,18999,18999,19000,19000, 0,19000,19000,19000,19000,19000,19000,19000,19000,19000, 0,19000,19000, 0, 0, 0, 0, 0, 0, 0, 0, 0,19000,19000,19000,19000,19000,19000,19000,19000, 0, 0, 0, 0,19000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19000,19000,19000,19002,19002, 0,19002,19002, 19002,19002,19002,19002,19002,19002,19002, 0,19002,19002, 0, 0, 0, 0, 0, 0, 0, 0, 0,19002, 19002,19002,19002,19002,19002,19002, 0, 0, 0, 0, 0,19002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19002, 19002,19002,19003,19003, 0,19003,19003,19003,19003,19003, 19003,19003,19003,19003, 0,19003,19003, 0, 0, 0, 0, 0, 0, 0, 0, 0,19003,19003,19003,19003, 19003,19003,19003,19003, 0, 0, 0, 0,19003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19003,19003,19003,19004, 19004, 0,19004,19004,19004,19004,19004,19004,19004,19004, 19004,19004,19004,19004, 0, 0, 0, 0, 0, 0, 0, 0, 0,19004,19004,19004,19004,19004,19004,19004, 19004, 0, 0, 0, 0,19004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19004,19004,19004,19004,19004,19015,19015, 19015,19015,19015,19015,19015,19015,19015,19015,19015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19015, 0, 19015,19018,19018, 0,19018,19018,19018,19018,19018,19018, 19018,19018,19018, 0,19018,19018, 0, 0, 0, 0, 0, 0, 0, 0, 0,19018,19018,19018,19018,19018, 19018,19018, 0, 0, 0, 0, 0,19018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19018,19018,19018,19019,19019, 0,19019,19019,19019,19019,19019,19019,19019,19019,19019, 0,19019,19019, 0, 0, 0, 0, 0, 0, 0, 0, 0,19019,19019,19019,19019,19019,19019,19019,19019, 0, 0, 0, 0,19019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19019,19019,19019,19021,19021, 0,19021,19021, 19021,19021,19021,19021,19021,19021,19021, 0,19021,19021, 0, 0, 0, 0, 0, 0, 0, 0, 0,19021, 19021,19021,19021,19021,19021,19021, 0, 0, 0, 0, 0,19021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19021, 19021,19021,19022,19022, 0,19022,19022,19022,19022,19022, 19022,19022,19022,19022, 0,19022,19022, 0, 0, 0, 0, 0, 0, 0, 0, 0,19022,19022,19022,19022, 19022,19022,19022,19022, 0, 0, 0, 0,19022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19022,19022,19022,19024, 19024, 0,19024,19024,19024,19024,19024,19024,19024,19024, 19024, 0,19024,19024, 0, 0, 0, 0, 0, 0, 0, 0, 0,19024,19024,19024,19024,19024,19024,19024, 0, 0, 0, 0, 0,19024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19024,19024,19024,19025,19025, 0,19025, 19025,19025,19025,19025,19025,19025,19025,19025, 0,19025, 19025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19025,19025,19025,19025,19025,19025,19025,19025, 0, 0, 0, 0,19025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19025,19025,19025,19026,19026, 0,19026,19026,19026,19026, 19026,19026,19026,19026,19026, 0,19026,19026, 0, 0, 0, 0, 0, 0, 0, 0, 0,19026,19026,19026, 19026,19026,19026,19026, 0, 0, 0, 0, 0,19026, 0,19026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19026,19026,19026, 0, 0, 0, 0, 0, 0, 0, 0,19026,19031, 19031, 0,19031,19031,19031,19031,19031,19031,19031,19031, 19031, 0,19031,19031, 0, 0, 0, 0, 0, 0, 0, 0, 0,19031,19031,19031,19031,19031,19031,19031, 0, 0, 0, 0, 0,19031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19031,19031,19031,19032,19032, 0,19032, 19032,19032,19032,19032,19032,19032,19032,19032, 0,19032, 19032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19032,19032,19032,19032,19032,19032,19032,19032, 0, 0, 0, 0,19032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19032,19032,19032,19036,19036, 0,19036,19036,19036,19036, 19036,19036,19036,19036,19036, 0,19036,19036, 0, 0, 0, 0, 0, 0, 0, 0, 0,19036,19036,19036, 19036,19036,19036,19036, 0, 0, 0, 0, 0,19036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19036,19036,19036, 19037,19037, 0,19037,19037,19037,19037,19037,19037,19037, 19037,19037, 0,19037,19037, 0, 0, 0, 0, 0, 0, 0, 0, 0,19037,19037,19037,19037,19037,19037, 19037,19037, 0, 0, 0, 0,19037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19037,19037,19037,19040,19040, 0, 19040,19040,19040,19040,19040,19040,19040,19040,19040, 0, 19040,19040, 0, 0, 0, 0, 0, 0, 0, 0, 0,19040,19040,19040,19040,19040,19040,19040, 0, 0, 0, 0, 0,19040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19040,19040,19040,19041,19041, 0,19041,19041,19041, 19041,19041,19041,19041,19041,19041, 0,19041,19041, 0, 0, 0, 0, 0, 0, 0, 0, 0,19041,19041, 19041,19041,19041,19041,19041,19041, 0, 0, 0, 0, 19041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19041,19041, 19041,19043,19043, 0,19043,19043,19043,19043,19043,19043, 19043,19043,19043, 0,19043,19043, 0, 0, 0, 0, 0, 0, 0, 0, 0,19043,19043,19043,19043,19043, 19043,19043, 0, 0, 0, 0, 0,19043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19043,19043,19043,19044,19044, 0,19044,19044,19044,19044,19044,19044,19044,19044,19044, 0,19044,19044, 0, 0, 0, 0, 0, 0, 0, 0, 0,19044,19044,19044,19044,19044,19044,19044,19044, 0, 0, 0, 0,19044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19044,19044,19044,19045,19045, 0,19045,19045, 19045,19045,19045,19045,19045,19045,19045,19045,19045,19045, 0, 0, 0, 0, 0, 0, 0, 0, 0,19045, 19045,19045,19045,19045,19045,19045,19045, 0, 0, 0, 0,19045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19045, 19045,19045,19045,19045,19046,19046, 0,19046,19046,19046, 19046,19046,19046,19046,19046,19046, 0,19046,19046, 0, 0, 0, 0, 0, 0, 0, 0, 0,19046,19046, 19046,19046,19046,19046,19046, 0, 0, 0, 0, 0, 19046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19046,19046, 19046,19047,19047, 0,19047,19047,19047,19047,19047,19047, 19047,19047,19047, 0,19047,19047, 0, 0, 0, 0, 0, 0, 0, 0, 0,19047,19047,19047,19047,19047, 19047,19047,19047, 0, 0, 0, 0,19047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19047,19047,19047,19050,19050, 0,19050,19050,19050,19050,19050,19050,19050,19050,19050, 0,19050,19050, 0, 0, 0, 0, 0, 0, 0, 0, 0,19050,19050,19050,19050,19050,19050,19050, 0, 0, 0, 0, 0,19050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19050,19050,19050,19051,19051, 0,19051,19051, 19051,19051,19051,19051,19051,19051,19051, 0,19051,19051, 0, 0, 0, 0, 0, 0, 0, 0, 0,19051, 19051,19051,19051,19051,19051,19051,19051, 0, 0, 0, 0,19051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19051, 19051,19051,19053,19053, 0,19053,19053,19053,19053,19053, 19053,19053,19053,19053, 0,19053,19053, 0, 0, 0, 0, 0, 0, 0, 0, 0,19053,19053,19053,19053, 19053,19053,19053, 0, 0, 0, 0, 0,19053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19053,19053,19053,19054, 19054, 0,19054,19054,19054,19054,19054,19054,19054,19054, 19054, 0,19054,19054, 0, 0, 0, 0, 0, 0, 0, 0, 0,19054,19054,19054,19054,19054,19054,19054, 19054, 0, 0, 0, 0,19054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19054,19054,19054,19055,19055, 0,19055, 19055,19055,19055,19055,19055,19055,19055,19055,19055,19055, 19055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19055,19055,19055,19055,19055,19055,19055,19055, 0, 0, 0, 0,19055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19055,19055,19055,19055,19055,19056,19056, 0,19056,19056, 19056,19056,19056,19056,19056,19056,19056, 0,19056,19056, 0, 0, 0, 0, 0, 0, 0, 0, 0,19056, 19056,19056,19056,19056,19056,19056, 0, 0, 0, 0, 0,19056, 0, 0,19056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19056, 19056,19056,19057,19057,19057,19057,19057,19057,19057,19057, 19057,19057, 0, 0, 0, 0, 0, 0,19057,19057, 19057,19057,19057,19057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19057,19057,19057,19057,19057, 19057,19059,19059,19059,19059,19059,19059,19059,19059,19059, 19059, 0, 0, 0, 0, 0, 0,19059,19059,19059, 19059,19059,19059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19059,19059,19059,19059,19059,19059, 19060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19060,19060,19060,19060,19060,19060,19060,19060,19060, 0, 0, 0, 0, 0, 0, 0,19060,19060,19060, 19060,19060,19060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19060,19060,19060,19060,19060,19060, 19063,19063,19063,19063,19063,19063,19063,19063,19063,19063, 0, 0, 0, 0, 0, 0,19063,19063,19063,19063, 19063,19063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19063,19063,19063,19063,19063,19063,19064, 19064,19064,19064,19064,19064,19064,19064,19064, 0, 0, 0, 0, 0, 0, 0,19064,19064,19064,19064,19064, 19064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19064,19064,19064,19064,19064,19064,19072,19072, 19072,19072,19072,19072,19072,19072,19072,19072, 0, 0, 0, 0, 0, 0,19072,19072,19072,19072,19072,19072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19072,19072,19072,19072,19072,19072,19073,19073,19073, 19073,19073,19073,19073,19073,19073, 0, 0, 0, 0, 0, 0, 0,19073,19073,19073,19073,19073,19073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19073,19073,19073,19073,19073,19073,19081,19081,19081,19081, 19081,19081,19081,19081,19081,19081, 0, 0, 0, 0, 0, 0,19081,19081,19081,19081,19081,19081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19081, 19081,19081,19081,19081,19081,19082,19082,19082,19082,19082, 19082,19082,19082,19082, 0, 0, 0, 0, 0, 0, 0,19082,19082,19082,19082,19082,19082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19082,19082, 19082,19082,19082,19082,19087, 0,19087,19087,19087,19087, 19087,19087,19087,19087,19087,19087, 0, 0, 0, 0, 0, 0,19087,19087,19087,19087,19087,19087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19087, 19087,19087,19087,19087,19087,19094,19094,19094,19094,19094, 19094,19094,19094,19094,19094, 0, 0, 0, 0, 0, 0,19094,19094,19094,19094,19094,19094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19094,19094, 19094,19094,19094,19094,19095,19095,19095,19095,19095,19095, 19095,19095,19095, 0, 0, 0, 0, 0, 0, 0, 19095,19095,19095,19095,19095,19095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19095,19095,19095, 19095,19095,19095,19100,19100,19100,19100,19100,19100,19100, 19100,19100,19100, 0, 0, 0, 0, 0, 0,19100, 19100,19100,19100,19100,19100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19100,19100,19100,19100, 19100,19100,19104,19104,19104,19104,19104,19104,19104,19104, 19104,19104, 0, 0, 0, 0, 0, 0,19104,19104, 19104,19104,19104,19104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19104,19104,19104,19104,19104, 19104,19108,19108,19108,19108,19108,19108,19108,19108,19108, 19108, 0, 0, 0, 0, 0, 0,19108,19108,19108, 19108,19108,19108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19108,19108,19108,19108,19108,19108, 19109,19109,19109,19109,19109,19109,19109,19109,19109, 0, 0, 0, 0, 0, 0, 0,19109,19109,19109,19109, 19109,19109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19109,19109,19109,19109,19109,19109,19114, 19114,19114,19114,19114,19114,19114,19114,19114,19114, 0, 0, 0, 0, 0, 0,19114,19114,19114,19114,19114, 19114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19114,19114,19114,19114,19114,19114,19118,19118, 19118,19118,19118,19118,19118,19118,19118,19118, 0, 0, 0, 0, 0, 0,19118,19118,19118,19118,19118,19118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19118,19118,19118,19118,19118,19118,19119,19119,19119, 19119,19119,19119,19119,19119,19119,19119, 0, 0, 0, 0, 0, 0,19119,19119,19119,19119,19119,19119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19119,19119,19119,19119,19119,19119,19121,19121,19121,19121, 19121,19121,19121,19121,19121,19121, 0, 0, 0, 0, 0, 0,19121,19121,19121,19121,19121,19121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19121, 19121,19121,19121,19121,19121,19126,19126,19126,19126,19126, 19126,19126,19126,19126, 0, 0, 0, 0, 0, 0, 0,19126,19126,19126,19126,19126,19126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19126,19126, 19126,19126,19126,19126,19127,19127,19127,19127,19127,19127, 19127,19127,19127,19127, 0, 0, 0, 0, 0, 0, 19127,19127,19127,19127,19127,19127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19127,19127,19127, 19127,19127,19127,19132,19132, 0,19132,19132,19132,19132, 19132,19132,19132,19132,19132, 0,19132,19132, 0, 0, 0, 0, 0, 0, 0, 0, 0,19132,19132,19132, 19132,19132,19132,19132, 0, 0, 0, 0, 0,19132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19132,19132,19132, 19132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19132,19133,19133, 0,19133,19133,19133,19133,19133,19133, 19133,19133,19133, 0,19133,19133, 0, 0, 0, 0, 0, 0, 0, 0, 0,19133,19133,19133,19133,19133, 19133,19133, 0, 0, 0, 0, 0,19133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19133,19133,19133,19134,19134, 0,19134,19134,19134,19134,19134,19134,19134,19134,19134, 0,19134,19134, 0, 0, 0, 0, 0, 0, 0, 0, 0,19134,19134,19134,19134,19134,19134,19134,19134, 0, 0, 0, 0,19134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19134,19134,19134,19138,19138, 0,19138,19138, 19138,19138,19138,19138,19138,19138,19138, 0,19138,19138, 0, 0, 0, 0, 0, 0, 0, 0, 0,19138, 19138,19138,19138,19138,19138,19138, 0, 0, 0, 0, 0,19138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19138, 19138,19138,19139,19139, 0,19139,19139,19139,19139,19139, 19139,19139,19139,19139, 0,19139,19139, 0, 0, 0, 0, 0, 0, 0, 0, 0,19139,19139,19139,19139, 19139,19139,19139,19139, 0, 0, 0, 0,19139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19139,19139,19139,19143, 19143, 0,19143,19143,19143,19143,19143,19143,19143,19143, 19143, 0,19143,19143, 0, 0, 0, 0, 0, 0, 0, 0, 0,19143,19143,19143,19143,19143,19143,19143, 0, 0, 0, 0, 0,19143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19143,19143,19143,19144,19144, 0,19144, 19144,19144,19144,19144,19144,19144,19144,19144, 0,19144, 19144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19144,19144,19144,19144,19144,19144,19144,19144, 0, 0, 0, 0,19144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19144,19144,19144,19148,19148, 0,19148,19148,19148,19148, 19148,19148,19148,19148,19148, 0,19148,19148, 0, 0, 0, 0, 0, 0, 0, 0, 0,19148,19148,19148, 19148,19148,19148,19148, 0, 0, 0, 0, 0,19148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19148,19148,19148, 19149,19149, 0,19149,19149,19149,19149,19149,19149,19149, 19149,19149, 0,19149,19149, 0, 0, 0, 0, 0, 0, 0, 0, 0,19149,19149,19149,19149,19149,19149, 19149,19149, 0, 0, 0, 0,19149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19149,19149,19149,19153,19153, 0, 19153,19153,19153,19153,19153,19153,19153,19153,19153, 0, 19153,19153, 0, 0, 0, 0, 0, 0, 0, 0, 0,19153,19153,19153,19153,19153,19153,19153, 0, 0, 0, 0, 0,19153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19153,19153,19153,19154,19154, 0,19154,19154,19154, 19154,19154,19154,19154,19154,19154, 0,19154,19154, 0, 0, 0, 0, 0, 0, 0, 0, 0,19154,19154, 19154,19154,19154,19154,19154,19154, 0, 0, 0, 0, 19154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19154,19154, 19154,19157,19157, 0,19157,19157,19157,19157,19157,19157, 19157,19157,19157, 0,19157,19157, 0, 0, 0, 0, 0, 0, 0, 0, 0,19157,19157,19157,19157,19157, 19157,19157, 0, 0, 0, 0, 0,19157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19157,19157,19157,19158,19158, 0,19158,19158,19158,19158,19158,19158,19158,19158,19158, 0,19158,19158, 0, 0, 0, 0, 0, 0, 0, 0, 0,19158,19158,19158,19158,19158,19158,19158,19158, 0, 0, 0, 0,19158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19158,19158,19158,19160,19160, 0,19160,19160, 19160,19160,19160,19160,19160,19160,19160, 0,19160,19160, 0, 0, 0, 0, 0, 0, 0, 0, 0,19160, 19160,19160,19160,19160,19160,19160, 0, 0, 0, 0, 0,19160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19160, 0, 0, 0, 0, 0, 0,19160, 19160,19160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19160,19161,19161, 0,19161,19161,19161,19161,19161,19161, 19161,19161,19161, 0,19161,19161, 0, 0, 0, 0, 0, 0, 0, 0, 0,19161,19161,19161,19161,19161, 19161,19161, 0, 0, 0, 0, 0,19161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19161,19161,19161,19162,19162, 0,19162,19162,19162,19162,19162,19162,19162,19162,19162, 0,19162,19162, 0, 0, 0, 0, 0, 0, 0, 0, 0,19162,19162,19162,19162,19162,19162,19162,19162, 0, 0, 0, 0,19162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19162,19162,19162,19163,19163, 0,19163,19163, 19163,19163,19163,19163,19163,19163,19163, 0,19163,19163, 0, 0, 0, 0, 0, 0, 0, 0, 0,19163, 19163,19163,19163,19163,19163,19163, 0, 0, 0, 0, 0,19163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19163, 19163,19163,19164,19164, 0,19164,19164,19164,19164,19164, 19164,19164,19164,19164, 0,19164,19164, 0, 0, 0, 0, 0, 0, 0, 0, 0,19164,19164,19164,19164, 19164,19164,19164,19164, 0, 0, 0, 0,19164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19164,19164,19164,19167, 19167, 0,19167,19167,19167,19167,19167,19167,19167,19167, 19167, 0,19167,19167, 0, 0, 0, 0, 0, 0, 0, 0, 0,19167,19167,19167,19167,19167,19167,19167, 0, 0, 0, 0, 0,19167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19167,19167,19167,19168,19168, 0,19168, 19168,19168,19168,19168,19168,19168,19168,19168, 0,19168, 19168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19168,19168,19168,19168,19168,19168,19168,19168, 0, 0, 0, 0,19168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19168,19168,19168,19171,19171, 0,19171,19171,19171,19171, 19171,19171,19171,19171,19171, 0,19171,19171, 0, 0, 0, 0, 0, 0, 0, 0, 0,19171,19171,19171, 19171,19171,19171,19171, 0, 0, 0, 0, 0,19171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19171,19171,19171, 19172,19172, 0,19172,19172,19172,19172,19172,19172,19172, 19172,19172, 0,19172,19172, 0, 0, 0, 0, 0, 0, 0, 0, 0,19172,19172,19172,19172,19172,19172, 19172,19172, 0, 0, 0, 0,19172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19172,19172,19172,19174,19174, 0, 19174,19174,19174,19174,19174,19174,19174,19174,19174, 0, 19174,19174, 0, 0, 0, 0, 0, 0, 0, 0, 0,19174,19174,19174,19174,19174,19174,19174, 0, 0, 0, 0, 0,19174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19174, 0, 0, 0, 0, 0, 0,19174,19174,19174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19174,19175,19175, 0,19175,19175,19175,19175, 19175,19175,19175,19175,19175, 0,19175,19175, 0, 0, 0, 0, 0, 0, 0, 0, 0,19175,19175,19175, 19175,19175,19175,19175, 0, 0, 0, 0, 0,19175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19175,19175,19175, 19176,19176, 0,19176,19176,19176,19176,19176,19176,19176, 19176,19176, 0,19176,19176, 0, 0, 0, 0, 0, 0, 0, 0, 0,19176,19176,19176,19176,19176,19176, 19176,19176, 0, 0, 0, 0,19176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19176,19176,19176,19188, 0,19188, 0, 0,19188,19188,19188,19188,19188,19188,19188,19188, 19188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19188,19188, 0,19188,19190,19190, 0,19190,19190,19190, 19190,19190,19190,19190,19190,19190, 0,19190,19190, 0, 0, 0, 0, 0, 0, 0, 0, 0,19190,19190, 19190,19190,19190,19190,19190, 0, 0, 0, 0, 0, 19190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19190,19190, 19190,19191,19191, 0,19191,19191,19191,19191,19191,19191, 19191,19191,19191, 0,19191,19191, 0, 0, 0, 0, 0, 0, 0, 0, 0,19191,19191,19191,19191,19191, 19191,19191,19191, 0, 0, 0, 0,19191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19191,19191,19191,19212, 0, 19212, 0, 0,19212,19212,19212,19212,19212,19212,19212, 19212,19212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19212,19212, 0,19212,19219,19219, 0,19219,19219, 19219,19219,19219,19219,19219,19219,19219, 0,19219,19219, 0, 0, 0, 0, 0, 0, 0, 0, 0,19219, 19219,19219,19219,19219,19219,19219, 0, 0, 0, 0, 0,19219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19219, 19219,19219,19220,19220, 0,19220,19220,19220,19220,19220, 19220,19220,19220,19220, 0,19220,19220, 0, 0, 0, 0, 0, 0, 0, 0, 0,19220,19220,19220,19220, 19220,19220,19220,19220, 0, 0, 0, 0,19220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19220,19220,19220,19221, 19221, 0,19221,19221,19221,19221,19221,19221,19221,19221, 19221, 0,19221,19221, 0, 0, 0, 0, 0, 0, 0, 0, 0,19221,19221,19221,19221,19221,19221,19221, 0, 0, 0, 0, 0,19221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19221,19221,19221,19244,19244, 0,19244, 19244,19244,19244,19244,19244,19244,19244,19244, 0,19244, 19244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19244,19244,19244,19244,19244,19244,19244, 0, 0, 0, 0, 0,19244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19244,19244,19244,19245,19245, 0,19245,19245,19245,19245, 19245,19245,19245,19245,19245, 0,19245,19245, 0, 0, 0, 0, 0, 0, 0, 0, 0,19245,19245,19245, 19245,19245,19245,19245,19245, 0, 0, 0, 0,19245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19245,19245,19245, 19249,19249, 0,19249,19249,19249,19249,19249,19249,19249, 19249,19249, 0,19249,19249, 0, 0, 0, 0, 0, 0, 0, 0, 0,19249,19249,19249,19249,19249,19249, 19249, 0, 0, 0, 0, 0,19249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19249,19249,19249,19250,19250, 0, 19250,19250,19250,19250,19250,19250,19250,19250,19250, 0, 19250,19250, 0, 0, 0, 0, 0, 0, 0, 0, 0,19250,19250,19250,19250,19250,19250,19250,19250, 0, 0, 0, 0,19250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19250,19250,19250,19252,19252, 0,19252,19252,19252, 19252,19252,19252,19252,19252,19252, 0,19252,19252, 0, 0, 0, 0, 0, 0, 0, 0, 0,19252,19252, 19252,19252,19252,19252,19252, 0, 0, 0, 0, 0, 19252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19252, 0, 0, 0, 0, 0,19252,19252, 19252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19252,19255,19255, 0,19255,19255,19255,19255,19255,19255, 19255,19255,19255, 0,19255,19255, 0, 0, 0, 0, 0, 0, 0, 0, 0,19255,19255,19255,19255,19255, 19255,19255, 0, 0, 0, 0, 0,19255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19255,19255,19255,19255,19278, 19278,19278,19278,19278,19278,19278,19278,19278,19278,19278, 19278, 0,19278,19278, 0, 0, 0, 0, 0, 0, 0, 0, 0,19278,19278,19278,19278,19278,19278,19278, 0, 0, 0, 0, 0,19278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19278,19278,19278,19278,19290,19290, 0, 19290,19290,19290,19290,19290,19290,19290, 0,19290,19290, 19290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19290,19290,19290,19290,19290,19290,19290, 0, 0, 0, 0, 0,19290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19290,19290,19290,19290,19291,19291, 0,19291,19291, 19291,19291,19291,19291,19291, 0,19291,19291,19291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19291, 19291,19291,19291,19291,19291,19291,19291, 0, 0, 0, 0,19291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19291, 19291,19291,19291,19302,19302,19302,19302,19302,19302,19302, 19302,19302, 0, 0, 0, 0, 0, 0,19302,19302, 19302,19302,19302,19302,19302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19302,19302,19302,19302, 19302,19302,19305,19305,19305,19305,19305,19305,19305,19305, 19305, 0, 0, 0, 0, 0, 0, 0,19305,19305, 19305,19305,19305,19305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19305,19305,19305,19305,19305, 19305,19308, 0,19308,19308,19308,19308,19308,19308,19308, 19308,19308,19308, 0, 0, 0, 0, 0, 0,19308, 19308,19308,19308,19308,19308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19308,19308,19308,19308, 19308,19308,19312,19312,19312,19312,19312,19312,19312,19312, 19312, 0, 0, 0, 0, 0, 0, 0,19312,19312, 19312,19312,19312,19312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19312,19312,19312,19312,19312, 19312,19315, 0,19315,19315,19315,19315,19315,19315,19315, 19315,19315,19315, 0, 0, 0, 0, 0, 0,19315, 19315,19315,19315,19315,19315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19315,19315,19315,19315, 19315,19315,19318,19318,19318,19318,19318,19318,19318,19318, 19318, 0, 0, 0, 0, 0, 0, 0,19318,19318, 19318,19318,19318,19318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19318,19318,19318,19318,19318, 19318,19321,19321,19321,19321,19321,19321,19321,19321,19321, 19321, 0, 0, 0, 0, 0, 0,19321,19321,19321, 19321,19321,19321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19321,19321,19321,19321,19321,19321, 19324,19324,19324,19324,19324,19324,19324,19324,19324, 0, 0, 0, 0, 0, 0, 0,19324,19324,19324,19324, 19324,19324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19324,19324,19324,19324,19324,19324,19327, 19327,19327,19327,19327,19327,19327,19327,19327,19327, 0, 0, 0, 0, 0, 0,19327,19327,19327,19327,19327, 19327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19327,19327,19327,19327,19327,19327,19330,19330, 19330,19330,19330,19330,19330,19330,19330, 0, 0, 0, 0, 0, 0, 0,19330,19330,19330,19330,19330,19330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19330,19330,19330,19330,19330,19330,19333,19333,19333, 19333,19333,19333,19333,19333,19333,19333, 0, 0, 0, 0, 0, 0,19333,19333,19333,19333,19333,19333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19333,19333,19333,19333,19333,19333,19339,19339,19339,19339, 19339,19339,19339,19339,19339, 0, 0, 0, 0, 0, 0, 0,19339,19339,19339,19339,19339,19339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19339, 19339,19339,19339,19339,19339,19342,19342,19342,19342,19342, 19342,19342,19342,19342,19342, 0, 0, 0, 0, 0, 0,19342,19342,19342,19342,19342,19342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19342,19342, 19342,19342,19342,19342,19346,19346,19346,19346,19346,19346, 19346,19346,19346,19346, 0, 0, 0, 0, 0, 0, 19346,19346,19346,19346,19346,19346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19346,19346,19346, 19346,19346,19346,19350, 0,19350, 0, 0,19350,19350, 19350,19350,19350,19350,19350,19350,19350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19350, 0, 0,19350, 19375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19375,19375,19375,19375,19375,19375,19375,19375,19375, 0,19375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19375,19375,19410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19410, 0, 0, 0, 0, 0, 0,19410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19410, 0,19410, 0,19410, 0, 0,19410, 19410, 0, 0, 0,19410, 0, 0,19410, 0,19410, 0,19410, 0,19410,19410,19410,19411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19411, 0, 0, 0, 0, 0, 0,19411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19411, 0,19411, 0,19411, 0, 0,19411,19411, 0, 0, 0,19411, 0, 0,19411, 0,19411, 0,19411, 0,19411,19411,19411,19412, 0,19412, 0, 0, 0, 0, 0, 0,19412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19412, 0, 0, 0, 0, 0, 0,19412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19412, 0,19412, 0,19412, 0, 0,19412,19412, 0, 0, 0,19412, 0, 0,19412, 0,19412, 0,19412, 0,19412,19412,19412,19412,19413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19413, 0, 0, 0, 0, 0, 0,19413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19413, 0,19413,19413,19413, 0, 0,19413,19413, 0, 0, 0,19413, 0, 0,19413, 0,19413, 0,19413, 0, 19413,19413,19413,19414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19414, 0, 0, 0, 0, 0, 0,19414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19414, 0,19414, 0,19414, 0, 0,19414,19414, 0, 0, 0,19414, 0,19414,19414, 0,19414, 0,19414, 0,19414,19414, 19414,19415, 0,19415, 0, 0, 0, 0, 0, 0, 19415, 0, 0,19415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19415, 0, 0, 0, 0, 0, 0,19415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19415, 0,19415, 19415,19415, 0, 0,19415,19415, 0, 0, 0,19415, 0, 0,19415, 0,19415, 0,19415, 0,19415,19415, 19415,19429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19429, 0, 0, 0, 0, 0, 0, 19429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19429, 0,19429, 0,19429, 0, 0,19429,19429, 0, 0, 0,19429, 0, 0, 19429, 0,19429, 0,19429, 0,19429,19429,19429,19431, 0,19431,19431, 0, 0, 0, 0, 0,19431, 0, 19431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19431, 0, 0, 0, 0, 0, 0, 19431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19431, 0,19431, 0,19431, 0, 0,19431,19431, 0, 0, 0,19431, 0, 0, 19431, 0,19431, 0,19431, 0,19431,19431,19431,19432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19432,19432,19432,19432,19432,19432,19432,19432,19432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19432, 0, 0, 0, 0, 0, 0,19432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19432, 0,19432, 0,19432, 0, 0, 19432,19432, 0, 0, 0,19432, 0, 0,19432, 0, 19432, 0,19432, 0,19432,19432,19432,19433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19433, 0, 0, 0, 0, 0, 0,19433, 0,19433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19433, 0,19433, 0,19433, 0, 0,19433,19433, 0, 0, 0,19433, 0, 0,19433, 0,19433, 0, 19433, 0,19433,19433,19433,19434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19434, 0, 0, 0, 0, 0, 0,19434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19434, 0,19434, 0,19434, 0, 0,19434,19434, 0, 0, 0,19434,19434, 0,19434, 0,19434, 0,19434, 0, 19434,19434,19434,19435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19435, 0, 0, 0, 0, 0, 0,19435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19435, 0,19435, 0,19435, 0, 0,19435,19435, 0, 0, 0,19435, 19435, 0,19435, 0,19435, 0,19435, 0,19435,19435, 19435,19436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19436, 0, 0, 0, 0, 0, 0, 19436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19436, 0,19436, 0,19436, 0, 0,19436,19436, 0, 0, 0,19436, 0, 0, 19436, 0,19436, 0,19436, 0,19436,19436,19436,19437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19437, 0, 0, 0, 0, 0, 0,19437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19437, 0,19437, 0,19437, 0, 0, 19437,19437, 0, 0, 0,19437,19437, 0,19437, 0, 19437,19437,19437, 0,19437,19437,19437,19447, 0,19447, 0, 0, 0, 0, 0, 0,19447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19447,19447, 0, 0, 0, 0, 0,19447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19447, 0,19447, 0,19447, 0, 0, 19447,19447, 0, 0, 0,19447, 0, 0,19447, 0, 19447, 0,19447, 0,19447,19447,19447,19460, 0,19460, 19460, 0, 0, 0, 0, 0,19460, 0,19460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19460, 0, 0, 0, 0, 0, 0,19460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19460, 0,19460, 0,19460, 0, 0, 19460,19460, 0, 0, 0,19460, 0, 0,19460, 0, 19460, 0,19460, 0,19460,19460,19460,19461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19461,19461, 19461,19461,19461,19461,19461,19461,19461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19461, 0, 0, 0, 0, 0, 0,19461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19461, 0,19461, 0,19461, 0, 0,19461,19461, 0, 0, 0,19461, 0, 0,19461, 0,19461, 0, 19461, 0,19461,19461,19461,19462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19462, 0, 0, 0, 0, 0, 0,19462, 0,19462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19462, 0,19462, 0,19462, 0, 0,19462,19462, 0, 0, 0,19462, 0, 0,19462, 0,19462, 0,19462, 0, 19462,19462,19462,19463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19463, 0, 0, 0, 0, 0, 0,19463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19463, 0,19463, 0,19463, 0, 0,19463,19463, 0, 0, 0,19463, 19463, 0,19463, 0,19463, 0,19463, 0,19463,19463, 19463,19464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19464, 0, 0, 0, 0, 0, 0, 19464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19464, 0,19464, 0,19464, 0, 0,19464,19464, 0, 0, 0,19464,19464, 0, 19464, 0,19464, 0,19464, 0,19464,19464,19464,19465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19465, 0, 0, 0, 0, 0, 0,19465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19465, 0,19465, 0,19465, 0, 0, 19465,19465, 0, 0, 0,19465, 0, 0,19465, 0, 19465, 0,19465, 0,19465,19465,19465,19466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19466, 0, 0, 0, 0, 0, 0,19466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19466, 0,19466, 0,19466, 0, 0,19466,19466, 0, 0, 0,19466,19466, 0,19466, 0,19466,19466, 19466, 0,19466,19466,19466,19476, 0,19476, 0, 0, 0, 0, 0, 0,19476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19476, 19476, 0, 0, 0, 0, 0,19476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19476, 0,19476, 0,19476, 0, 0,19476,19476, 0, 0, 0,19476, 0, 0,19476, 0,19476, 0, 19476, 0,19476,19476,19476,19489, 0,19489,19489, 0, 0, 0, 0, 0,19489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19489, 0,19489, 0, 0, 0, 0,19489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19489, 0,19489, 0,19489, 0, 0,19489,19489, 0, 0, 0,19489, 0, 0,19489, 0,19489, 0, 19489, 0,19489,19489,19489,19490, 0,19490, 0, 0, 0, 0, 0, 0,19490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19490, 0, 0, 0, 0, 0, 0,19490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19490, 0,19490, 0,19490, 0, 0,19490,19490, 0, 0, 0,19490, 0, 0,19490, 0,19490, 0, 19490, 0,19490,19490,19490,19491, 0, 0, 0, 0, 0, 0, 0, 0, 0,19491, 0, 0, 0, 0, 19491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19491, 0,19491, 0, 0, 0, 0,19491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19491, 0,19491, 0,19491, 0, 0,19491,19491, 0, 0, 0,19491, 0, 0,19491, 0,19491, 0,19491, 0, 19491,19491,19491,19492,19492, 0, 0, 0, 0, 0, 0, 0, 0,19492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19492, 0, 0, 0, 0, 0, 0,19492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19492, 0,19492, 0,19492, 0, 0,19492,19492, 0, 0, 0,19492, 0, 0,19492, 0,19492, 0,19492, 0,19492,19492, 19492,19495, 0, 0, 0, 0, 0, 0, 0, 0, 19495,19495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19495, 0, 0, 0, 0, 0, 0, 19495, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19495, 0,19495,19495,19495, 0, 0,19495,19495, 0, 0, 0,19495, 0, 0, 19495, 0,19495, 0,19495, 0,19495,19495,19495,19497, 0,19497, 0, 0, 0, 0, 0, 0,19497, 0, 0,19497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19497, 0, 0, 0, 0, 0, 0, 19497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19497, 0,19497, 0,19497, 0, 0,19497,19497, 0, 0, 0,19497, 0, 0, 19497, 0,19497, 0,19497, 0,19497,19497,19497,19501, 0,19501, 0, 0, 0, 0, 0, 0,19501, 0, 0,19501,19501,19501,19501,19501,19501,19501,19501,19501, 19501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19501, 0, 0, 0, 0, 0, 0, 19501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19501, 0,19501, 0,19501, 0, 0,19501,19501, 0, 0, 0,19501, 0, 0, 19501, 0,19501, 0,19501, 0,19501,19501,19501,19502, 19502,19502,19502,19502,19502,19502,19502,19502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19502,19502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19502, 0, 0, 0, 0,19502, 0, 0,19502,19503,19503,19503,19503,19503, 19503,19503,19503,19503,19503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19503, 0, 0,19503,19504,19504,19504,19504,19504,19504,19504,19504, 19504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19504, 0, 0, 0,19504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19504, 0, 0,19504,19505,19505, 19505,19505,19505,19505,19505,19505,19505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19505, 0, 0,19505,19506,19506,19506,19506,19506,19506, 19506,19506,19506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19506, 0, 0, 0, 0, 0,19506, 0, 0,19506, 19507,19507,19507,19507,19507,19507,19507,19507,19507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19507, 0, 0, 0, 0, 0,19507, 0, 0,19507,19508,19508,19508,19508, 19508,19508,19508,19508,19508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19508, 0, 0, 0, 0, 0,19508, 0, 0,19508,19509,19509,19509,19509,19509,19509,19509,19509, 19509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19509, 0, 0, 0,19509, 0, 0,19509,19510,19510, 19510,19510,19510,19510,19510,19510,19510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19510,19510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19510, 0, 0,19510,19511,19511,19511,19511,19511,19511, 19511,19511,19511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19511, 0, 0, 0,19511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19511,19511, 0,19511, 19512,19512,19512,19512,19512,19512,19512,19512,19512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19512, 0, 0, 0, 0, 0, 0, 0, 0,19512, 0,19512, 0, 0, 0, 0, 0,19512, 0, 0,19512,19513,19513,19513,19513, 19513,19513,19513,19513,19513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19513, 0,19513, 0, 0, 0, 0, 0,19513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19513, 0, 0,19513, 0,19513,19514,19514,19514,19514,19514,19514, 19514,19514,19514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19514, 0, 0,19514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19514, 0, 0,19514, 19515,19515,19515,19515,19515,19515,19515,19515,19515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19515, 0, 0, 0, 0, 0,19515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19515, 0, 0,19515,19516,19516,19516,19516, 19516,19516,19516,19516,19516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19516, 0, 0, 0, 0, 0,19516, 0, 0,19516,19520, 0, 0, 0, 0, 0, 0, 0, 0, 0,19520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19520, 0, 0, 0, 0, 0, 0, 0, 0,19520, 0, 0, 0, 0, 0, 0,19520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19520, 0,19520, 0, 19520, 0, 0,19520,19520, 0, 0, 0,19520, 0, 19520,19520, 0,19520, 0,19520, 0,19520,19520,19520, 19521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19521, 0, 0, 0, 0, 0, 0,19521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19521, 0,19521, 0,19521, 0, 0,19521,19521, 0, 0, 0,19521, 0, 0,19521, 0,19521, 0,19521, 0,19521,19521,19521,19522, 0, 0, 0, 0, 0, 0, 0, 0, 0,19522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19522, 0, 0, 0, 0, 0, 0,19522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19522, 0,19522, 0,19522, 0, 0,19522, 19522, 0, 0, 0,19522, 0, 0,19522, 0,19522, 0,19522, 0,19522,19522,19522,19523, 0, 0, 0, 0, 0, 0, 0, 0, 0,19523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19523, 0, 0, 0, 0, 0, 0,19523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19523, 0,19523, 0,19523, 0, 0,19523,19523, 0, 0, 0,19523,19523, 0,19523, 0,19523, 0,19523, 0,19523,19523,19523,19524, 0, 0, 0, 0, 0, 0, 0, 0, 0,19524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19524, 0, 0, 0, 0, 0, 0,19524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19524, 0, 19524, 0,19524, 0, 0,19524,19524, 0, 0, 0, 19524,19524, 0,19524, 0,19524, 0,19524, 0,19524, 19524,19524,19526, 0,19526, 0, 0, 0, 0, 0, 0,19526, 0, 0,19526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19526, 0, 0, 0, 0, 0, 0,19526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19526, 0, 19526,19526,19526, 0, 0,19526,19526, 0, 0, 0, 19526, 0, 0,19526, 0,19526, 0,19526, 0,19526, 19526,19526,19529, 0,19529, 0, 0, 0, 0, 0, 0,19529, 0, 0,19529, 0, 0,19529, 0,19529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19529, 0,19529, 0, 0, 0, 0,19529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19529, 0, 19529, 0,19529, 0, 0,19529,19529, 0, 0, 0, 19529, 0, 0,19529, 0,19529, 0,19529, 0,19529, 19529,19529,19540, 0,19540, 0, 0, 0, 0, 0, 0,19540, 0, 0,19540,19540,19540,19540,19540,19540, 19540,19540,19540,19540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19540, 0, 0, 0, 0, 0, 0,19540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19540, 0, 19540, 0,19540, 0, 0,19540,19540, 0, 0, 0, 19540, 0, 0,19540, 0,19540, 0,19540, 0,19540, 19540,19540,19541, 0, 0, 0, 0, 0, 0, 0, 0, 0,19541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19541, 0, 0, 0, 0, 0, 0,19541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19541, 0,19541, 0, 19541, 0, 0,19541,19541, 0, 0, 0,19541, 0, 0,19541, 0,19541, 0,19541, 0,19541,19541,19541, 19542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19542, 0, 0, 0, 0, 0, 0,19542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19542, 0,19542, 0,19542, 0, 0,19542,19542, 0, 0, 0,19542, 0, 0,19542, 0,19542, 0,19542, 0,19542,19542,19542,19542,19550, 0,19550, 0, 0, 0, 0, 0, 0,19550, 0, 0,19550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19550, 0, 0, 0, 0, 0, 0, 19550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19550, 0,19550, 0,19550, 0, 0,19550,19550, 0, 0, 0,19550, 0, 0, 19550, 0,19550, 0,19550, 0,19550,19550,19550,19578, 0,19578, 0, 0, 0, 0, 0, 0,19578, 0, 0,19578,19578,19578,19578,19578,19578,19578,19578,19578, 19578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19578, 0, 0, 0, 0, 0, 0, 19578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19578, 0,19578, 0,19578, 0, 0,19578,19578, 0, 0, 0,19578, 0, 0, 19578, 0,19578, 0,19578, 0,19578,19578,19578,19579, 0, 0, 0, 0, 0, 0, 0, 0, 0,19579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19579, 0, 0, 0, 0, 0, 0,19579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19579, 0,19579, 0,19579, 0, 0, 19579,19579, 0, 0, 0,19579, 0, 0,19579, 0, 19579, 0,19579, 0,19579,19579,19579,19580, 0, 0, 0, 0, 0, 0, 0, 0, 0,19580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19580, 0, 0, 0, 0, 0, 0,19580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19580, 0,19580, 0,19580, 0, 0,19580,19580, 0, 0, 0,19580, 0, 0,19580, 0,19580, 0, 19580, 0,19580,19580,19580,19580,19588, 0,19588, 0, 0, 0, 0, 0, 0,19588, 0, 0,19588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19588, 0, 0, 0, 0, 0, 0,19588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19588, 0,19588, 0,19588, 0, 0,19588, 19588, 0, 0, 0,19588, 0, 0,19588, 0,19588, 0,19588, 0,19588,19588,19588,19616, 0,19616, 0, 0, 0, 0, 0, 0,19616, 0, 0,19616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19616, 0, 0, 0, 0, 0, 0,19616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19616, 0,19616, 0,19616, 0, 0,19616, 19616, 0, 0, 0,19616, 0, 0,19616, 0,19616, 0,19616, 0,19616,19616,19616,19617, 0,19617, 0, 0, 0, 0, 0, 0,19617, 0, 0,19617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19617, 0, 0, 0, 0, 0, 0,19617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19617, 0,19617,19617,19617, 0, 0,19617, 19617, 0, 0, 0,19617,19617, 0,19617, 0,19617, 0,19617, 0,19617,19617,19617,19625,19625,19625,19625, 19625,19625,19625,19625, 0, 0,19625,19625,19625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19625,19625,19625,19625,19625,19625, 0, 0, 0, 0, 0,19625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19625,19625,19625,19625,19644,19644, 0,19644,19644,19644, 19644,19644,19644,19644,19644,19644, 0,19644,19644, 0, 0, 0, 0, 0, 0, 0, 0, 0,19644,19644, 19644,19644,19644,19644,19644, 0, 0, 0, 0, 0, 19644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19644,19644, 19644,19645,19645, 0,19645,19645,19645,19645,19645,19645, 19645,19645,19645, 0,19645,19645, 0, 0, 0, 0, 0, 0, 0, 0, 0,19645,19645,19645,19645,19645, 19645,19645,19645, 0, 0, 0, 0,19645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19645,19645,19645,19650,19650, 0,19650,19650,19650,19650,19650,19650,19650,19650,19650, 0,19650,19650, 0, 0, 0, 0, 0, 0, 0, 0, 0,19650,19650,19650,19650,19650,19650,19650, 0, 0, 0, 0, 0,19650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19650,19650,19650,19651,19651, 0,19651,19651, 19651,19651,19651,19651,19651,19651,19651, 0,19651,19651, 0, 0, 0, 0, 0, 0, 0, 0, 0,19651, 19651,19651,19651,19651,19651,19651,19651, 0, 0, 0, 0,19651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19651, 19651,19651,19655,19655, 0,19655,19655,19655,19655,19655, 19655,19655,19655,19655, 0,19655,19655, 0, 0, 0, 0, 0, 0, 0, 0, 0,19655,19655,19655,19655, 19655,19655,19655, 0, 0, 0, 0, 0,19655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19655,19655,19655,19656, 19656, 0,19656,19656,19656,19656,19656,19656,19656,19656, 19656, 0,19656,19656, 0, 0, 0, 0, 0, 0, 0, 0, 0,19656,19656,19656,19656,19656,19656,19656, 19656, 0, 0, 0, 0,19656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19656,19656,19656,19659,19659, 0,19659, 19659,19659,19659,19659,19659,19659,19659,19659, 0,19659, 19659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19659,19659,19659,19659,19659,19659,19659, 0, 0, 0, 0, 0,19659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19659,19659,19659,19660,19660, 0,19660,19660,19660,19660, 19660,19660,19660,19660,19660, 0,19660,19660, 0, 0, 0, 0, 0, 0, 0, 0, 0,19660,19660,19660, 19660,19660,19660,19660,19660, 0, 0, 0, 0,19660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19660,19660,19660, 19662,19662, 0,19662,19662,19662,19662,19662,19662,19662, 19662,19662, 0,19662,19662, 0, 0, 0, 0, 0, 0, 0, 0, 0,19662,19662,19662,19662,19662,19662, 19662, 0, 0, 0, 0, 0,19662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19662,19662,19662,19663,19663, 0, 19663,19663,19663,19663,19663,19663,19663,19663,19663, 0, 19663,19663, 0, 0, 0, 0, 0, 0, 0, 0, 0,19663,19663,19663,19663,19663,19663,19663,19663, 0, 0, 0, 0,19663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19663,19663,19663,19664,19664, 0,19664,19664,19664, 19664,19664,19664,19664,19664,19664,19664,19664,19664, 0, 0, 0, 0, 0, 0, 0, 0, 0,19664,19664, 19664,19664,19664,19664,19664,19664, 0, 0, 0, 0, 19664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19664,19664, 19664,19664,19664,19665,19665, 0,19665,19665,19665,19665, 19665,19665,19665,19665,19665, 0,19665,19665, 0, 0, 0, 0, 0, 0, 0, 0, 0,19665,19665,19665, 19665,19665,19665,19665, 0, 0, 0, 0, 0,19665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19665,19665,19665, 19666,19666, 0,19666,19666,19666,19666,19666,19666,19666, 19666,19666, 0,19666,19666, 0, 0, 0, 0, 0, 0, 0, 0, 0,19666,19666,19666,19666,19666,19666, 19666,19666, 0, 0, 0, 0,19666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19666,19666,19666,19668,19668, 0, 19668,19668,19668,19668,19668,19668,19668,19668,19668, 0, 19668,19668, 0, 0, 0, 0, 0, 0, 0, 0, 0,19668,19668,19668,19668,19668,19668,19668, 0, 0, 0, 0, 0,19668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19668,19668,19668,19669,19669, 0,19669,19669,19669, 19669,19669,19669,19669,19669,19669, 0,19669,19669, 0, 0, 0, 0, 0, 0, 0, 0, 0,19669,19669, 19669,19669,19669,19669,19669,19669, 0, 0, 0, 0, 19669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19669,19669, 19669,19671,19671, 0,19671,19671,19671,19671,19671,19671, 19671,19671,19671, 0,19671,19671, 0, 0, 0, 0, 0, 0, 0, 0, 0,19671,19671,19671,19671,19671, 19671,19671, 0, 0, 0, 0, 0,19671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19671,19671,19671,19672,19672, 0,19672,19672,19672,19672,19672,19672,19672,19672,19672, 0,19672,19672, 0, 0, 0, 0, 0, 0, 0, 0, 0,19672,19672,19672,19672,19672,19672,19672,19672, 0, 0, 0, 0,19672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19672,19672,19672,19673,19673, 0,19673,19673, 19673,19673,19673,19673,19673,19673,19673,19673,19673,19673, 0, 0, 0, 0, 0, 0, 0, 0, 0,19673, 19673,19673,19673,19673,19673,19673,19673, 0, 0, 0, 0,19673, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19673, 19673,19673,19673,19673,19674,19674, 0,19674,19674,19674, 19674,19674,19674,19674,19674,19674, 0,19674,19674, 0, 0, 0, 0, 0, 0, 0, 0, 0,19674,19674, 19674,19674,19674,19674,19674, 0, 0, 0, 0, 0, 19674,19674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19674,19674, 19674,19675,19675,19675,19675,19675,19675,19675,19675,19675, 19675, 0, 0, 0, 0, 0, 0,19675,19675,19675, 19675,19675,19675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19675,19675,19675,19675,19675,19675, 19677,19677,19677,19677,19677,19677,19677,19677,19677,19677, 0, 0, 0, 0, 0, 0,19677,19677,19677,19677, 19677,19677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19677,19677,19677,19677,19677,19677,19678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19678,19678,19678,19678,19678,19678,19678,19678,19678, 0, 0, 0, 0, 0, 0, 0,19678,19678,19678,19678, 19678,19678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19678,19678,19678,19678,19678,19678,19681, 19681,19681,19681,19681,19681,19681,19681,19681,19681, 0, 0, 0, 0, 0, 0,19681,19681,19681,19681,19681, 19681, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19681,19681,19681,19681,19681,19681,19682,19682, 19682,19682,19682,19682,19682,19682,19682, 0, 0, 0, 0, 0, 0, 0,19682,19682,19682,19682,19682,19682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19682,19682,19682,19682,19682,19682,19690,19690,19690, 19690,19690,19690,19690,19690,19690,19690, 0, 0, 0, 0, 0, 0,19690,19690,19690,19690,19690,19690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19690,19690,19690,19690,19690,19690,19691,19691,19691,19691, 19691,19691,19691,19691,19691, 0, 0, 0, 0, 0, 0, 0,19691,19691,19691,19691,19691,19691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19691, 19691,19691,19691,19691,19691,19699,19699,19699,19699,19699, 19699,19699,19699,19699,19699, 0, 0, 0, 0, 0, 0,19699,19699,19699,19699,19699,19699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19699,19699, 19699,19699,19699,19699,19700,19700,19700,19700,19700,19700, 19700,19700,19700, 0, 0, 0, 0, 0, 0, 0, 19700,19700,19700,19700,19700,19700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19700,19700,19700, 19700,19700,19700,19705, 0,19705,19705,19705,19705,19705, 19705,19705,19705,19705,19705, 0, 0, 0, 0, 0, 0,19705,19705,19705,19705,19705,19705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19705,19705, 19705,19705,19705,19705,19712,19712,19712,19712,19712,19712, 19712,19712,19712,19712, 0, 0, 0, 0, 0, 0, 19712,19712,19712,19712,19712,19712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19712,19712,19712, 19712,19712,19712,19713,19713,19713,19713,19713,19713,19713, 19713,19713, 0, 0, 0, 0, 0, 0, 0,19713, 19713,19713,19713,19713,19713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19713,19713,19713,19713, 19713,19713,19718,19718,19718,19718,19718,19718,19718,19718, 19718,19718, 0, 0, 0, 0, 0, 0,19718,19718, 19718,19718,19718,19718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19718,19718,19718,19718,19718, 19718,19722,19722,19722,19722,19722,19722,19722,19722,19722, 19722, 0, 0, 0, 0, 0, 0,19722,19722,19722, 19722,19722,19722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19722,19722,19722,19722,19722,19722, 19726,19726,19726,19726,19726,19726,19726,19726,19726,19726, 0, 0, 0, 0, 0, 0,19726,19726,19726,19726, 19726,19726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19726,19726,19726,19726,19726,19726,19727, 19727,19727,19727,19727,19727,19727,19727,19727, 0, 0, 0, 0, 0, 0, 0,19727,19727,19727,19727,19727, 19727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19727,19727,19727,19727,19727,19727,19732,19732, 19732,19732,19732,19732,19732,19732,19732,19732, 0, 0, 0, 0, 0, 0,19732,19732,19732,19732,19732,19732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19732,19732,19732,19732,19732,19732,19736,19736,19736, 19736,19736,19736,19736,19736,19736,19736, 0, 0, 0, 0, 0, 0,19736,19736,19736,19736,19736,19736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19736,19736,19736,19736,19736,19736,19737,19737,19737,19737, 19737,19737,19737,19737,19737,19737, 0, 0, 0, 0, 0, 0,19737,19737,19737,19737,19737,19737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19737, 19737,19737,19737,19737,19737,19739,19739,19739,19739,19739, 19739,19739,19739,19739,19739, 0, 0, 0, 0, 0, 0,19739,19739,19739,19739,19739,19739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19739,19739, 19739,19739,19739,19739,19744,19744,19744,19744,19744,19744, 19744,19744,19744, 0, 0, 0, 0, 0, 0, 0, 19744,19744,19744,19744,19744,19744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19744,19744,19744, 19744,19744,19744,19745,19745,19745,19745,19745,19745,19745, 19745,19745,19745, 0, 0, 0, 0, 0, 0,19745, 19745,19745,19745,19745,19745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19745,19745,19745,19745, 19745,19745,19750,19750, 0,19750,19750,19750,19750,19750, 19750,19750,19750,19750, 0,19750,19750, 0, 0, 0, 0, 0, 0, 0, 0, 0,19750,19750,19750,19750, 19750,19750,19750, 0, 0, 0, 0, 0,19750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19750,19750,19750,19751, 19751, 0,19751,19751,19751,19751,19751,19751,19751,19751, 19751, 0,19751,19751, 0, 0, 0, 0, 0, 0, 0, 0, 0,19751,19751,19751,19751,19751,19751,19751, 19751, 0, 0, 0, 0,19751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19751,19751,19751,19767,19767, 0,19767, 19767,19767,19767,19767,19767,19767,19767,19767, 0,19767, 19767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19767,19767,19767,19767,19767,19767,19767, 0, 0, 0, 0, 0,19767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19767,19767,19767,19768,19768, 0,19768,19768,19768,19768, 19768,19768,19768,19768,19768, 0,19768,19768, 0, 0, 0, 0, 0, 0, 0, 0, 0,19768,19768,19768, 19768,19768,19768,19768,19768, 0, 0, 0, 0,19768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19768,19768,19768, 19772,19772, 0,19772,19772,19772,19772,19772,19772,19772, 19772,19772, 0,19772,19772, 0, 0, 0, 0, 0, 0, 0, 0, 0,19772,19772,19772,19772,19772,19772, 19772, 0, 0, 0, 0, 0,19772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19772,19772,19772,19773,19773, 0, 19773,19773,19773,19773,19773,19773,19773,19773,19773, 0, 19773,19773, 0, 0, 0, 0, 0, 0, 0, 0, 0,19773,19773,19773,19773,19773,19773,19773,19773, 0, 0, 0, 0,19773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19773,19773,19773,19777,19777, 0,19777,19777,19777, 19777,19777,19777,19777,19777,19777, 0,19777,19777, 0, 0, 0, 0, 0, 0, 0, 0, 0,19777,19777, 19777,19777,19777,19777,19777, 0, 0, 0, 0, 0, 19777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19777,19777, 19777,19778,19778, 0,19778,19778,19778,19778,19778,19778, 19778,19778,19778, 0,19778,19778, 0, 0, 0, 0, 0, 0, 0, 0, 0,19778,19778,19778,19778,19778, 19778,19778,19778, 0, 0, 0, 0,19778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19778,19778,19778,19782,19782, 0,19782,19782,19782,19782,19782,19782,19782,19782,19782, 0,19782,19782, 0, 0, 0, 0, 0, 0, 0, 0, 0,19782,19782,19782,19782,19782,19782,19782, 0, 0, 0, 0, 0,19782, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19782,19782,19782,19783,19783, 0,19783,19783, 19783,19783,19783,19783,19783,19783,19783, 0,19783,19783, 0, 0, 0, 0, 0, 0, 0, 0, 0,19783, 19783,19783,19783,19783,19783,19783,19783, 0, 0, 0, 0,19783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19783, 19783,19783,19787,19787, 0,19787,19787,19787,19787,19787, 19787,19787,19787,19787, 0,19787,19787, 0, 0, 0, 0, 0, 0, 0, 0, 0,19787,19787,19787,19787, 19787,19787,19787, 0, 0, 0, 0, 0,19787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19787,19787,19787,19788, 19788, 0,19788,19788,19788,19788,19788,19788,19788,19788, 19788, 0,19788,19788, 0, 0, 0, 0, 0, 0, 0, 0, 0,19788,19788,19788,19788,19788,19788,19788, 19788, 0, 0, 0, 0,19788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19788,19788,19788,19791,19791, 0,19791, 19791,19791,19791,19791,19791,19791,19791,19791, 0,19791, 19791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19791,19791,19791,19791,19791,19791,19791, 0, 0, 0, 0, 0,19791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19791,19791,19791,19792,19792, 0,19792,19792,19792,19792, 19792,19792,19792,19792,19792, 0,19792,19792, 0, 0, 0, 0, 0, 0, 0, 0, 0,19792,19792,19792, 19792,19792,19792,19792,19792, 0, 0, 0, 0,19792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19792,19792,19792, 19794,19794, 0,19794,19794,19794,19794,19794,19794,19794, 19794,19794, 0,19794,19794, 0, 0, 0, 0, 0, 0, 0, 0, 0,19794,19794,19794,19794,19794,19794, 19794, 0, 0, 0, 0, 0,19794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19794, 0, 0, 0, 0, 0, 0,19794,19794,19794, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19794,19795,19795, 0,19795, 19795,19795,19795,19795,19795,19795,19795,19795, 0,19795, 19795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19795,19795,19795,19795,19795,19795,19795, 0, 0, 0, 0, 0,19795, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19795,19795,19795,19796,19796, 0,19796,19796,19796,19796, 19796,19796,19796,19796,19796, 0,19796,19796, 0, 0, 0, 0, 0, 0, 0, 0, 0,19796,19796,19796, 19796,19796,19796,19796,19796, 0, 0, 0, 0,19796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19796,19796,19796, 19797,19797, 0,19797,19797,19797,19797,19797,19797,19797, 19797,19797, 0,19797,19797, 0, 0, 0, 0, 0, 0, 0, 0, 0,19797,19797,19797,19797,19797,19797, 19797, 0, 0, 0, 0, 0,19797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19797,19797,19797,19798,19798, 0, 19798,19798,19798,19798,19798,19798,19798,19798,19798, 0, 19798,19798, 0, 0, 0, 0, 0, 0, 0, 0, 0,19798,19798,19798,19798,19798,19798,19798,19798, 0, 0, 0, 0,19798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19798,19798,19798,19802,19802, 0,19802,19802,19802, 19802,19802,19802,19802,19802,19802, 0,19802,19802, 0, 0, 0, 0, 0, 0, 0, 0, 0,19802,19802, 19802,19802,19802,19802,19802, 0, 0, 0, 0, 0, 19802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19802,19802, 19802,19803,19803, 0,19803,19803,19803,19803,19803,19803, 19803,19803,19803, 0,19803,19803, 0, 0, 0, 0, 0, 0, 0, 0, 0,19803,19803,19803,19803,19803, 19803,19803,19803, 0, 0, 0, 0,19803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19803,19803,19803,19806,19806, 0,19806,19806,19806,19806,19806,19806,19806,19806,19806, 0,19806,19806, 0, 0, 0, 0, 0, 0, 0, 0, 0,19806,19806,19806,19806,19806,19806,19806, 0, 0, 0, 0, 0,19806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19806,19806,19806,19807,19807, 0,19807,19807, 19807,19807,19807,19807,19807,19807,19807, 0,19807,19807, 0, 0, 0, 0, 0, 0, 0, 0, 0,19807, 19807,19807,19807,19807,19807,19807,19807, 0, 0, 0, 0,19807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19807, 19807,19807,19809,19809, 0,19809,19809,19809,19809,19809, 19809,19809,19809,19809, 0,19809,19809, 0, 0, 0, 0, 0, 0, 0, 0, 0,19809,19809,19809,19809, 19809,19809,19809, 0, 0, 0, 0, 0,19809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19809, 0, 0, 0, 0, 0, 0,19809,19809,19809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19809,19810,19810, 0,19810,19810,19810,19810,19810,19810,19810,19810,19810, 0,19810,19810, 0, 0, 0, 0, 0, 0, 0, 0, 0,19810,19810,19810,19810,19810,19810,19810, 0, 0, 0, 0, 0,19810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19810,19810,19810,19811,19811, 0,19811,19811, 19811,19811,19811,19811,19811,19811,19811, 0,19811,19811, 0, 0, 0, 0, 0, 0, 0, 0, 0,19811, 19811,19811,19811,19811,19811,19811,19811, 0, 0, 0, 0,19811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19811, 19811,19811,19812,19812, 0,19812,19812,19812,19812,19812, 19812,19812,19812,19812,19812,19812,19812, 0, 0, 0, 0, 0, 0, 0, 0, 0,19812,19812,19812,19812, 19812,19812,19812, 0, 0, 0, 0, 0,19812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19812,19812,19812,19812, 19813,19813, 0,19813,19813,19813,19813,19813,19813,19813, 19813,19813, 0,19813,19813, 0, 0, 0, 0, 0, 0, 0, 0, 0,19813,19813,19813,19813,19813,19813, 19813, 0, 0, 0, 0, 0,19813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19813,19813,19813,19814,19814, 0, 19814,19814,19814,19814,19814,19814,19814,19814,19814, 0, 19814,19814, 0, 0, 0, 0, 0, 0, 0, 0, 0,19814,19814,19814,19814,19814,19814,19814,19814, 0, 0, 0, 0,19814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19814,19814,19814,19817,19817, 0,19817,19817,19817, 19817,19817,19817,19817,19817,19817, 0,19817,19817, 0, 0, 0, 0, 0, 0, 0, 0, 0,19817,19817, 19817,19817,19817,19817,19817, 0, 0, 0, 0, 0, 19817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19817,19817, 19817,19818,19818, 0,19818,19818,19818,19818,19818,19818, 19818,19818,19818, 0,19818,19818, 0, 0, 0, 0, 0, 0, 0, 0, 0,19818,19818,19818,19818,19818, 19818,19818, 0, 0, 0, 0, 0,19818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19818, 0, 0, 0, 0, 0,19818,19818,19818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19818,19819,19819, 0,19819,19819,19819,19819,19819,19819,19819,19819,19819, 0,19819,19819, 0, 0, 0, 0, 0, 0, 0, 0, 0,19819,19819,19819,19819,19819,19819,19819,19819, 0, 0, 0, 0,19819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19819,19819,19819,19822,19822, 0,19822,19822, 19822,19822,19822,19822,19822,19822,19822, 0,19822,19822, 0, 0, 0, 0, 0, 0, 0, 0, 0,19822, 19822,19822,19822,19822,19822,19822, 0, 0, 0, 0, 0,19822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19822, 19822,19822,19823,19823, 0,19823,19823,19823,19823,19823, 19823,19823,19823,19823, 0,19823,19823, 0, 0, 0, 0, 0, 0, 0, 0, 0,19823,19823,19823,19823, 19823,19823,19823,19823, 0, 0, 0, 0,19823, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19823,19823,19823,19825, 19825, 0,19825,19825,19825,19825,19825,19825,19825,19825, 19825, 0,19825,19825, 0, 0, 0, 0, 0, 0, 0, 0, 0,19825,19825,19825,19825,19825,19825,19825, 0, 0, 0, 0, 0,19825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19825,19825,19825,19826,19826, 0,19826, 19826,19826,19826,19826,19826,19826,19826,19826, 0,19826, 19826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19826,19826,19826,19826,19826,19826,19826,19826, 0, 0, 0, 0,19826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19826,19826,19826,19827,19827, 0,19827,19827,19827,19827, 19827,19827,19827,19827,19827, 0,19827,19827, 0, 0, 0, 0, 0, 0, 0, 0, 0,19827,19827,19827, 19827,19827,19827,19827, 0, 0, 0, 0, 0,19827, 19827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19827,19827,19827, 0, 0, 0, 0, 0, 0, 0,19827,19828,19828, 0,19828,19828,19828,19828,19828,19828,19828,19828,19828, 0,19828,19828, 0,19828,19828,19828,19828,19828,19828, 19828,19828,19828,19828,19828,19828,19828,19828,19828, 0, 0, 0, 0, 0,19828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19828,19828,19828,19829,19829, 0,19829,19829, 19829,19829,19829,19829,19829,19829,19829, 0,19829,19829, 0, 0, 0, 0, 0, 0, 0, 0, 0,19829, 19829,19829,19829,19829,19829,19829, 0, 0, 0, 0, 0,19829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19829, 19829,19829,19830,19830, 0,19830,19830,19830,19830,19830, 19830,19830,19830,19830, 0,19830,19830, 0, 0, 0, 0, 0, 0, 0, 0, 0,19830,19830,19830,19830, 19830,19830,19830, 0, 0, 0, 0, 0,19830,19830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19830,19830,19830, 0, 0, 0, 0, 0, 0, 0,19830,19833,19833, 0, 19833,19833,19833,19833,19833,19833,19833,19833,19833, 0, 19833,19833, 0, 0, 0, 0, 0, 0, 0, 0, 0,19833,19833,19833,19833,19833,19833,19833, 0, 0, 0, 0, 0,19833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19833,19833,19833,19834,19834, 0,19834,19834,19834, 19834,19834,19834,19834,19834,19834, 0,19834,19834, 0, 0, 0, 0, 0, 0, 0, 0, 0,19834,19834, 19834,19834,19834,19834,19834,19834, 0, 0, 0, 0, 19834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19834,19834, 19834,19838,19838, 0,19838,19838,19838,19838,19838,19838, 19838,19838,19838, 0,19838,19838, 0, 0, 0, 0, 0, 0, 0, 0, 0,19838,19838,19838,19838,19838, 19838,19838, 0, 0, 0, 0, 0,19838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19838,19838,19838,19839,19839, 0,19839,19839,19839,19839,19839,19839,19839,19839,19839, 0,19839,19839, 0, 0, 0, 0, 0, 0, 0, 0, 0,19839,19839,19839,19839,19839,19839,19839,19839, 0, 0, 0, 0,19839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19839,19839,19839,19843,19843, 0,19843,19843, 19843,19843,19843,19843,19843,19843,19843, 0,19843,19843, 0, 0, 0, 0, 0, 0, 0, 0, 0,19843, 19843,19843,19843,19843,19843,19843, 0, 0, 0, 0, 0,19843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19843, 19843,19843,19844,19844, 0,19844,19844,19844,19844,19844, 19844,19844,19844,19844, 0,19844,19844, 0, 0, 0, 0, 0, 0, 0, 0, 0,19844,19844,19844,19844, 19844,19844,19844,19844, 0, 0, 0, 0,19844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19844,19844,19844,19847, 19847, 0,19847,19847,19847,19847,19847,19847,19847,19847, 19847, 0,19847,19847, 0, 0, 0, 0, 0, 0, 0, 0, 0,19847,19847,19847,19847,19847,19847,19847, 0, 0, 0, 0, 0,19847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19847,19847,19847,19848,19848, 0,19848, 19848,19848,19848,19848,19848,19848,19848,19848, 0,19848, 19848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19848,19848,19848,19848,19848,19848,19848,19848, 0, 0, 0, 0,19848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19848,19848,19848,19850,19850, 0,19850,19850,19850,19850, 19850,19850,19850,19850,19850, 0,19850,19850, 0, 0, 0, 0, 0, 0, 0, 0, 0,19850,19850,19850, 19850,19850,19850,19850, 0, 0, 0, 0, 0,19850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19850, 0, 0, 0, 0, 0, 0,19850,19850,19850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19850,19851, 19851, 0,19851,19851,19851,19851,19851,19851,19851,19851, 19851, 0,19851,19851, 0, 0, 0, 0, 0, 0, 0, 0, 0,19851,19851,19851,19851,19851,19851,19851, 0, 0, 0, 0, 0,19851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19851,19851,19851,19852,19852, 0,19852, 19852,19852,19852,19852,19852,19852,19852,19852, 0,19852, 19852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19852,19852,19852,19852,19852,19852,19852,19852, 0, 0, 0, 0,19852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19852,19852,19852,19853,19853, 0,19853,19853,19853,19853, 19853,19853,19853,19853,19853, 0,19853,19853, 0, 0, 0, 0, 0, 0, 0, 0, 0,19853,19853,19853, 19853,19853,19853,19853, 0, 0, 0, 0, 0,19853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19853,19853,19853, 19854,19854, 0,19854,19854,19854,19854,19854,19854,19854, 19854,19854, 0,19854,19854, 0, 0, 0, 0, 0, 0, 0, 0, 0,19854,19854,19854,19854,19854,19854, 19854,19854, 0, 0, 0, 0,19854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19854,19854,19854,19858,19858, 0, 19858,19858,19858,19858,19858,19858,19858,19858,19858, 0, 19858,19858, 0, 0, 0, 0, 0, 0, 0, 0, 0,19858,19858,19858,19858,19858,19858,19858, 0, 0, 0, 0, 0,19858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19858,19858,19858,19859,19859, 0,19859,19859,19859, 19859,19859,19859,19859,19859,19859, 0,19859,19859, 0, 0, 0, 0, 0, 0, 0, 0, 0,19859,19859, 19859,19859,19859,19859,19859,19859, 0, 0, 0, 0, 19859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19859,19859, 19859,19862,19862, 0,19862,19862,19862,19862,19862,19862, 19862,19862,19862, 0,19862,19862, 0, 0, 0, 0, 0, 0, 0, 0, 0,19862,19862,19862,19862,19862, 19862,19862, 0, 0, 0, 0, 0,19862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19862,19862,19862,19863,19863, 0,19863,19863,19863,19863,19863,19863,19863,19863,19863, 0,19863,19863, 0, 0, 0, 0, 0, 0, 0, 0, 0,19863,19863,19863,19863,19863,19863,19863,19863, 0, 0, 0, 0,19863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19863,19863,19863,19865,19865, 0,19865,19865, 19865,19865,19865,19865,19865,19865,19865, 0,19865,19865, 0, 0, 0, 0, 0, 0, 0, 0, 0,19865, 19865,19865,19865,19865,19865,19865, 0, 0, 0, 0, 0,19865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19865, 0, 0, 0, 0, 0, 0,19865, 19865,19865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19865,19866,19866, 0,19866,19866,19866,19866,19866,19866, 19866,19866,19866, 0,19866,19866, 0, 0, 0, 0, 0, 0, 0, 0, 0,19866,19866,19866,19866,19866, 19866,19866, 0, 0, 0, 0, 0,19866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19866,19866,19866,19867,19867, 0,19867,19867,19867,19867,19867,19867,19867,19867,19867, 0,19867,19867, 0, 0, 0, 0, 0, 0, 0, 0, 0,19867,19867,19867,19867,19867,19867,19867,19867, 0, 0, 0, 0,19867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19867,19867,19867,19868,19868, 0,19868,19868, 19868,19868,19868,19868,19868,19868,19868, 0,19868,19868, 0, 0, 0, 0, 0, 0, 0, 0, 0,19868, 19868,19868,19868,19868,19868,19868, 0, 0, 0, 0, 0,19868, 0, 0, 0, 0, 0, 0, 0,19868, 0, 0, 0, 0, 0, 0, 0, 0, 0,19868, 19868,19868,19872,19872,19872,19872,19872,19872,19872,19872, 19872,19872, 0, 0, 0, 0, 0, 0,19872,19872, 19872,19872,19872,19872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19872,19872,19872,19872,19872, 19872,19873,19873,19873,19873,19873,19873,19873,19873,19873, 19873, 0, 0, 0, 0, 0, 0,19873,19873,19873, 19873,19873,19873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19873,19873,19873,19873,19873,19873, 19875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19875,19875,19875,19875,19875,19875,19875,19875,19875, 0, 0, 0, 0, 0, 0, 0,19875,19875,19875, 19875,19875,19875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19875,19875,19875,19875,19875,19875, 19878,19878,19878,19878,19878,19878,19878,19878,19878,19878, 0, 0, 0, 0, 0, 0,19878,19878,19878,19878, 19878,19878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19878,19878,19878,19878,19878,19878,19880, 19880,19880,19880,19880,19880,19880,19880,19880, 0, 0, 0, 0, 0, 0, 0,19880,19880,19880,19880,19880, 19880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19880,19880,19880,19880,19880,19880,19885,19885, 19885,19885,19885,19885,19885,19885,19885,19885, 0, 0, 0, 0, 0, 0,19885,19885,19885,19885,19885,19885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19885,19885,19885,19885,19885,19885,19887,19887,19887, 19887,19887,19887,19887,19887,19887, 0, 0, 0, 0, 0, 0, 0,19887,19887,19887,19887,19887,19887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19887,19887,19887,19887,19887,19887,19890,19890,19890,19890, 19890,19890,19890,19890,19890, 0, 0, 0, 0, 0, 0, 0,19890,19890,19890,19890,19890,19890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19890, 19890,19890,19890,19890,19890,19891,19891,19891,19891,19891, 19891,19891,19891,19891,19891, 0, 0, 0, 0, 0, 0,19891,19891,19891,19891,19891,19891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19891,19891, 19891,19891,19891,19891,19893,19893,19893,19893,19893,19893, 19893,19893,19893, 0, 0, 0, 0, 0, 0, 0, 19893,19893,19893,19893,19893,19893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19893,19893,19893, 19893,19893,19893,19896,19896,19896,19896,19896,19896,19896, 19896,19896, 0, 0, 0, 0, 0, 0, 0,19896, 19896,19896,19896,19896,19896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19896,19896,19896,19896, 19896,19896,19897, 0,19897,19897,19897,19897,19897,19897, 19897,19897,19897,19897, 0, 0, 0, 0, 0, 0, 19897,19897,19897,19897,19897,19897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19897,19897,19897, 19897,19897,19897,19900,19900,19900,19900,19900,19900,19900, 19900,19900,19900, 0, 0, 0, 0, 0, 0,19900, 19900,19900,19900,19900,19900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19900,19900,19900,19900, 19900,19900,19902,19902,19902,19902,19902,19902,19902,19902, 19902, 0, 0, 0, 0, 0, 0, 0,19902,19902, 19902,19902,19902,19902, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19902,19902,19902,19902,19902, 19902,19905,19905,19905,19905,19905,19905,19905,19905,19905, 0, 0, 0, 0, 0, 0, 0,19905,19905,19905, 19905,19905,19905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19905,19905,19905,19905,19905,19905, 19906,19906,19906,19906,19906,19906,19906,19906,19906,19906, 0, 0, 0, 0, 0, 0,19906,19906,19906,19906, 19906,19906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19906,19906,19906,19906,19906,19906,19909, 19909,19909,19909,19909,19909,19909,19909,19909,19909, 0, 0, 0, 0, 0, 0,19909,19909,19909,19909,19909, 19909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19909,19909,19909,19909,19909,19909,19911,19911, 19911,19911,19911,19911,19911,19911,19911, 0, 0, 0, 0, 0, 0, 0,19911,19911,19911,19911,19911,19911, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19911,19911,19911,19911,19911,19911,19914,19914,19914, 19914,19914,19914,19914,19914,19914, 0, 0, 0, 0, 0, 0, 0,19914,19914,19914,19914,19914,19914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19914,19914,19914,19914,19914,19914,19915,19915,19915,19915, 19915,19915,19915,19915,19915,19915, 0, 0, 0, 0, 0, 0,19915,19915,19915,19915,19915,19915, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19915, 19915,19915,19915,19915,19915,19921,19921,19921,19921,19921, 19921,19921,19921,19921,19921, 0, 0, 0, 0, 0, 0,19921,19921,19921,19921,19921,19921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19921,19921, 19921,19921,19921,19921,19922,19922,19922,19922,19922,19922, 19922,19922,19922, 0, 0, 0, 0, 0, 0, 0, 19922,19922,19922,19922,19922,19922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19922,19922,19922, 19922,19922,19922,19927,19927,19927,19927,19927,19927,19927, 19927,19927,19927, 0, 0, 0, 0, 0, 0,19927, 19927,19927,19927,19927,19927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19927,19927,19927,19927, 19927,19927,19931,19931,19931,19931,19931,19931,19931,19931, 19931,19931, 0, 0, 0, 0, 0, 0,19931,19931, 19931,19931,19931,19931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19931,19931,19931,19931,19931, 19931,19936,19936, 0,19936,19936,19936,19936,19936,19936, 19936,19936,19936, 0,19936,19936, 0, 0, 0, 0, 0, 0, 0, 0, 0,19936,19936,19936,19936,19936, 19936,19936, 0, 0, 0, 0, 0,19936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19936,19936,19936,19936,19937, 19937, 0,19937,19937,19937,19937,19937,19937,19937,19937, 19937, 0,19937,19937, 0, 0, 0, 0, 0, 0, 0, 0, 0,19937,19937,19937,19937,19937,19937,19937, 0, 0, 0, 0, 0,19937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19937,19937,19937,19938,19938, 0,19938, 19938,19938,19938,19938,19938,19938,19938,19938, 0,19938, 19938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19938,19938,19938,19938,19938,19938,19938,19938, 0, 0, 0, 0,19938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19938,19938,19938,19942,19942, 0,19942,19942,19942,19942, 19942,19942,19942,19942,19942, 0,19942,19942, 0, 0, 0, 0, 0, 0, 0, 0, 0,19942,19942,19942, 19942,19942,19942,19942, 0, 0, 0, 0, 0,19942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19942,19942,19942, 19943,19943, 0,19943,19943,19943,19943,19943,19943,19943, 19943,19943, 0,19943,19943, 0, 0, 0, 0, 0, 0, 0, 0, 0,19943,19943,19943,19943,19943,19943, 19943,19943, 0, 0, 0, 0,19943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19943,19943,19943,19957,19957, 0, 19957,19957,19957,19957,19957,19957,19957,19957,19957, 0, 19957,19957, 0, 0, 0, 0, 0, 0, 0, 0, 0,19957,19957,19957,19957,19957,19957,19957, 0, 0, 0, 0, 0,19957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19957,19957,19957,19958,19958, 0,19958,19958,19958, 19958,19958,19958,19958,19958,19958, 0,19958,19958, 0, 0, 0, 0, 0, 0, 0, 0, 0,19958,19958, 19958,19958,19958,19958,19958,19958, 0, 0, 0, 0, 19958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19958,19958, 19958,19972,19972, 0,19972,19972,19972,19972,19972,19972, 19972,19972,19972, 0,19972,19972, 0, 0, 0, 0, 0, 0, 0, 0, 0,19972,19972,19972,19972,19972, 19972,19972, 0, 0, 0, 0, 0,19972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19972,19972,19972,19973,19973, 0,19973,19973,19973,19973,19973,19973,19973,19973,19973, 0,19973,19973, 0, 0, 0, 0, 0, 0, 0, 0, 0,19973,19973,19973,19973,19973,19973,19973,19973, 0, 0, 0, 0,19973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,19973,19973,19973,20008,20008, 0,20008,20008, 20008,20008,20008,20008,20008,20008,20008, 0,20008,20008, 0, 0, 0, 0, 0, 0, 0, 0, 0,20008, 20008,20008,20008,20008,20008,20008, 0, 0, 0, 0, 0,20008, 0, 0, 0, 0, 0,20008, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20008, 20008,20008,20029, 0,20029, 0, 0,20029,20029,20029, 20029,20029,20029,20029,20029,20029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20029,20029, 0,20029,20031, 20031, 0,20031,20031,20031,20031,20031,20031,20031,20031, 20031, 0,20031,20031, 0, 0, 0, 0, 0, 0, 0, 0, 0,20031,20031,20031,20031,20031,20031,20031, 0, 0, 0, 0, 0,20031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20031,20031,20031,20032,20032, 0,20032, 20032,20032,20032,20032,20032,20032,20032,20032, 0,20032, 20032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20032,20032,20032,20032,20032,20032,20032,20032, 0, 0, 0, 0,20032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20032,20032,20032,20058,20058, 0,20058,20058,20058,20058, 20058,20058,20058,20058,20058, 0,20058,20058, 0, 0, 0, 0, 0, 0, 0, 0, 0,20058,20058,20058, 20058,20058,20058,20058, 0, 0, 0, 0, 0,20058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20058,20058,20058, 20059,20059, 0,20059,20059,20059,20059,20059,20059,20059, 20059,20059, 0,20059,20059, 0, 0, 0, 0, 0, 0, 0, 0, 0,20059,20059,20059,20059,20059,20059, 20059,20059, 0, 0, 0, 0,20059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20059,20059,20059,20063,20063, 0, 20063,20063,20063,20063,20063,20063,20063,20063,20063,20063, 20063,20063, 0, 0, 0, 0, 0, 0, 0, 0, 0,20063,20063,20063,20063,20063,20063,20063, 0, 0, 0, 0, 0,20063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20063,20063,20063,20063,20064,20064, 0,20064,20064, 20064,20064,20064,20064,20064,20064,20064, 0,20064,20064, 0, 0, 0, 0, 0, 0, 0, 0, 0,20064, 20064,20064,20064,20064,20064,20064, 0, 0, 0, 0, 0,20064, 0, 0, 0, 0, 0,20064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20064, 20064,20064,20065,20065, 0,20065,20065,20065,20065,20065, 20065,20065,20065,20065, 0,20065,20065, 0, 0, 0, 0, 0, 0, 0, 0, 0,20065,20065,20065,20065, 20065,20065,20065,20065, 0, 0, 0, 0,20065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20065,20065,20065,20075, 0, 0, 0, 0, 0,20075, 0,20075, 0, 0, 20075,20075,20075,20075,20075,20075,20075,20075,20075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20075, 0, 0,20075,20102,20102, 0,20102,20102,20102,20102,20102, 20102,20102, 0,20102,20102,20102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20102,20102,20102,20102, 20102,20102,20102, 0, 0, 0, 0, 0,20102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20102,20102,20102,20102, 20103,20103, 0,20103,20103,20103,20103,20103,20103,20103, 0,20103,20103,20103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20103,20103,20103,20103,20103,20103, 20103,20103, 0, 0, 0, 0,20103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20103,20103,20103,20103,20107,20107, 20107,20107,20107,20107,20107,20107,20107, 0, 0, 0, 0, 0, 0, 0,20107,20107,20107,20107,20107,20107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20107,20107,20107,20107,20107,20107,20115, 0,20115, 20115,20115,20115,20115,20115,20115,20115,20115,20115, 0, 0, 0, 0, 0, 0,20115,20115,20115,20115,20115, 20115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20115,20115,20115,20115,20115,20115,20121,20121, 20121,20121,20121,20121,20121,20121,20121,20121, 0, 0, 0, 0, 0,20121,20121,20121,20121,20121,20121,20121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20121,20121,20121,20121,20121,20121,20125,20125,20125, 20125,20125,20125,20125,20125,20125,20125, 0, 0, 0, 0, 0, 0,20125,20125,20125,20125,20125,20125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20125,20125,20125,20125,20125,20125,20129,20129,20129,20129, 20129,20129,20129,20129,20129,20129, 0, 0, 0, 0, 0, 0,20129,20129,20129,20129,20129,20129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20129, 20129,20129,20129,20129,20129,20133,20133,20133,20133,20133, 20133,20133,20133,20133,20133, 0, 0, 0, 0, 0, 0,20133,20133,20133,20133,20133,20133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20133,20133, 20133,20133,20133,20133,20134,20134,20134,20134,20134,20134, 20134,20134,20134, 0, 0, 0, 0, 0, 0,20134, 20134,20134,20134,20134,20134,20134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20134,20134,20134, 20134,20134,20134,20137,20137,20137,20137,20137,20137,20137, 20137,20137,20137, 0, 0, 0, 0, 0, 0,20137, 20137,20137,20137,20137,20137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20137,20137,20137,20137, 20137,20137,20167,20167, 0,20167,20167,20167,20167,20167, 20167,20167,20167,20167,20167,20167,20167,20167,20167,20167, 20167,20167,20167,20167,20167,20167,20167,20167,20167,20167, 20167,20167,20167,20167,20167,20167,20167,20167,20167,20167, 20167,20167,20167,20167,20167,20167,20167,20167,20167,20167, 20167,20167,20167,20167,20167,20167,20167,20167,20167,20167, 20167,20167,20167,20167,20167,20167,20167,20167,20167,20167, 20167,20167,20167,20167,20167,20167,20167,20167,20167,20167, 20167,20167,20167,20167,20167,20199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20199, 0, 0, 0, 0, 0, 0,20199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20199, 0,20199, 0,20199, 0, 0,20199,20199, 0, 0, 0,20199, 0, 0,20199, 0,20199, 0,20199, 0, 20199,20199,20199,20200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20200, 0, 0, 0, 0, 0, 0,20200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20200, 0,20200, 0,20200, 0, 0,20200,20200, 0, 0, 0,20200, 0, 0,20200, 0,20200, 0,20200, 0,20200,20200, 20200,20201, 0,20201, 0, 0, 0, 0, 0, 0, 20201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20201, 0, 0, 0, 0, 0, 0,20201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20201, 0,20201, 0,20201, 0, 0,20201,20201, 0, 0, 0,20201, 0,20201,20201, 0,20201, 0,20201, 0,20201,20201, 20201,20202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20202, 0, 0, 0, 0, 0, 0, 20202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20202, 0,20202, 0,20202, 0, 0,20202,20202, 0, 0, 0,20202, 0,20202, 20202, 0,20202, 0,20202, 0,20202,20202,20202,20202, 20204, 0,20204, 0, 0, 0, 0, 0, 0,20204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20204, 0, 0, 0, 0, 0, 0,20204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20204, 0,20204, 0, 20204, 0, 0,20204,20204, 0, 0, 0,20204, 0, 0,20204, 0,20204, 0,20204, 0,20204,20204,20204, 20216, 0,20216, 0, 0, 0, 0, 0, 0,20216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20216, 0, 0, 0, 0, 0, 0,20216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20216, 0,20216, 0, 20216, 0, 0,20216,20216, 0, 0, 0,20216, 0, 0,20216, 0,20216, 0,20216, 0,20216,20216,20216, 20217, 0,20217, 0, 0, 0, 0, 0, 0,20217, 0, 0, 0,20217,20217,20217,20217,20217,20217,20217, 20217,20217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20217, 0, 0, 0, 0, 0, 0,20217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20217, 0,20217, 0, 20217, 0, 0,20217,20217, 0, 0, 0,20217, 0, 0,20217, 0,20217, 0,20217, 0,20217,20217,20217, 20218,20218, 0, 0, 0, 0, 0, 0, 0,20218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20218, 0, 0, 0, 0, 0, 0,20218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20218, 0,20218, 0,20218, 0, 0,20218,20218, 0, 0, 0,20218, 0, 0,20218, 0,20218, 0,20218, 0,20218,20218,20218,20219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20219,20219, 0, 0, 0, 0, 0,20219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20219, 0,20219, 0,20219, 0, 0,20219, 20219, 0, 0, 0,20219, 0, 0,20219, 0,20219, 0,20219, 0,20219,20219,20219,20222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20222, 0, 0, 0, 0, 0, 0,20222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20222, 0,20222, 0,20222, 0, 0,20222,20222, 0, 0, 0,20222, 0, 0,20222, 0,20222, 0,20222, 0,20222,20222,20222,20224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20224, 0, 0, 0, 0, 0, 0,20224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20224, 0, 20224, 0,20224, 0, 0,20224,20224, 0, 0, 0, 20224, 0, 0,20224, 0,20224, 0,20224, 0,20224, 20224,20224,20225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20225, 0, 0, 0, 0, 0, 0,20225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20225, 0,20225, 0, 20225, 0, 0,20225,20225, 0, 0, 0,20225, 0, 0,20225, 0,20225, 0,20225, 0,20225,20225,20225, 20226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20226, 0, 0, 0, 0, 0, 0,20226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20226,20226,20226, 0,20226, 0, 0,20226,20226, 0, 0, 0,20226, 0, 0,20226, 0,20226, 0,20226, 0,20226,20226,20226,20228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20228, 0, 0, 0, 0, 0, 0,20228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20228, 0,20228, 0,20228, 0, 0,20228, 20228, 0, 0, 0,20228,20228, 0,20228, 0,20228, 0,20228, 0,20228,20228,20228,20229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20229, 0, 0, 0, 0, 0, 0,20229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20229, 0,20229, 0,20229, 0, 0,20229,20229, 0, 0, 0,20229, 0, 0,20229, 0,20229, 0,20229, 0,20229,20229,20229,20230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20230, 0, 0, 0, 0, 0, 0,20230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20230, 0, 20230, 0,20230, 0, 0,20230,20230, 0, 0, 0, 20230,20230, 0,20230, 0,20230, 0,20230, 0,20230, 20230,20230,20231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20231, 0, 0, 0, 0, 0, 0,20231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20231, 0,20231, 0, 20231, 0, 0,20231,20231, 0, 0, 0,20231, 0, 0,20231, 0,20231, 0,20231,20231,20231,20231,20231, 20237,20237,20237,20237,20237,20237,20237,20237,20237,20237, 20237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20237, 0, 0, 0, 0,20237,20241, 0,20241, 0, 0, 0, 0, 0, 0,20241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20241, 0, 0, 0, 0, 0, 0,20241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20241, 0,20241, 0,20241, 0, 0,20241,20241, 0, 0, 0,20241, 0, 0,20241, 0,20241, 0,20241, 0,20241,20241,20241,20242, 0,20242, 0, 0, 0, 0, 0, 0,20242, 0, 0, 0,20242,20242,20242, 20242,20242,20242,20242,20242,20242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20242, 0, 0, 0, 0, 0, 0,20242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20242, 0,20242, 0,20242, 0, 0,20242,20242, 0, 0, 0,20242, 0, 0,20242, 0,20242, 0,20242, 0,20242,20242,20242,20243,20243, 0, 0, 0, 0, 0, 0, 0,20243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20243, 0, 0, 0, 0, 0, 0,20243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20243, 0, 20243, 0,20243, 0, 0,20243,20243, 0, 0, 0, 20243, 0, 0,20243, 0,20243, 0,20243, 0,20243, 20243,20243,20244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20244,20244, 0, 0, 0, 0, 0,20244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20244, 0,20244, 0, 20244, 0, 0,20244,20244, 0, 0, 0,20244, 0, 0,20244, 0,20244, 0,20244, 0,20244,20244,20244, 20247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20247, 0, 0, 0, 0, 0, 0,20247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20247, 0,20247, 0,20247, 0, 0,20247,20247, 0, 0, 0,20247, 0, 0,20247, 0,20247, 0,20247, 0,20247,20247,20247,20249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20249, 0, 0, 0, 0, 0, 0,20249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20249, 0,20249, 0,20249, 0, 0,20249, 20249, 0, 0, 0,20249, 0, 0,20249, 0,20249, 0,20249, 0,20249,20249,20249,20250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20250, 0, 0, 0, 0, 0, 0,20250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20250, 0,20250, 0,20250, 0, 0,20250,20250, 0, 0, 0,20250, 0, 0,20250, 0,20250, 0,20250, 0,20250,20250,20250,20251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20251, 0, 0, 0, 0, 0, 0,20251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20251,20251, 20251, 0,20251, 0, 0,20251,20251, 0, 0, 0, 20251, 0, 0,20251, 0,20251, 0,20251, 0,20251, 20251,20251,20253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20253, 0, 0, 0, 0, 0, 0,20253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20253, 0,20253, 0, 20253, 0, 0,20253,20253, 0, 0, 0,20253,20253, 0,20253, 0,20253, 0,20253, 0,20253,20253,20253, 20254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20254, 0, 0, 0, 0, 0, 0,20254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20254, 0,20254, 0,20254, 0, 0,20254,20254, 0, 0, 0,20254, 0, 0,20254, 0,20254, 0,20254, 0,20254,20254,20254,20255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20255, 0, 0, 0, 0, 0, 0,20255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20255, 0,20255, 0,20255, 0, 0,20255, 20255, 0, 0, 0,20255,20255, 0,20255, 0,20255, 0,20255, 0,20255,20255,20255,20256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20256, 0, 0, 0, 0, 0, 0,20256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20256, 0,20256, 0,20256, 0, 0,20256,20256, 0, 0, 0,20256, 0, 0,20256, 0,20256, 0,20256, 20256,20256,20256,20256,20262,20262,20262,20262,20262,20262, 20262,20262,20262,20262,20262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20262, 0, 0, 0, 0,20262,20266, 0, 20266, 0, 0, 0, 0, 0, 0,20266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20266, 0, 0, 0, 0, 0, 0,20266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20266, 0,20266, 0,20266, 0, 0,20266,20266, 0, 0, 0,20266, 0, 0,20266, 0,20266, 0,20266, 0,20266,20266,20266,20267, 0, 20267, 0, 0, 0, 0, 0, 0,20267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20267, 0, 0, 0, 0, 0, 0,20267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20267,20267, 0,20267, 0,20267, 0, 0,20267,20267, 0, 0, 0,20267, 0, 0,20267, 0,20267, 0,20267, 0,20267,20267,20267,20267,20268, 0, 0, 0, 0, 0, 0, 0, 0, 0,20268, 0, 0, 0, 0,20268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20268, 0, 0, 0, 0, 0, 0,20268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20268, 0,20268, 0,20268, 0, 0, 20268,20268, 0, 0, 0,20268, 0, 0,20268, 0, 20268, 0,20268, 0,20268,20268,20268,20269, 0, 0, 0, 0, 0, 0, 0, 0, 0,20269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20269, 0, 0, 0, 0, 0, 0,20269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20269, 0,20269, 0,20269, 0,20269,20269,20269, 0, 0, 0,20269, 0, 0,20269, 0,20269, 0, 20269, 0,20269,20269,20269,20271, 0, 0, 0, 0, 0, 0, 0, 0, 0,20271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20271, 0, 0, 0, 0, 0, 0,20271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20271, 0,20271, 0,20271, 0, 0,20271,20271, 0, 0, 0,20271, 0, 0,20271, 0,20271, 0,20271, 0, 20271,20271,20271,20272, 0, 0, 0, 0, 0, 0, 0, 0, 0,20272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20272, 0,20272, 0, 0, 0, 0,20272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20272, 0,20272, 0,20272, 0, 0,20272,20272, 0, 0, 0,20272, 0, 0,20272, 0,20272, 0,20272, 0,20272,20272, 20272,20291, 0,20291, 0, 0, 0, 0, 0, 0, 20291, 0, 0,20291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20291, 0, 0, 0, 0, 0, 0,20291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20291, 0,20291, 0,20291, 0, 0,20291,20291, 0, 0, 0,20291, 0, 0,20291, 0,20291, 0,20291, 0,20291,20291, 20291,20291,20294, 0,20294, 0, 0, 0, 0, 0, 0,20294, 0, 0,20294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20294, 0, 0, 0, 0, 0, 0,20294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20294, 0, 20294,20294,20294, 0, 0,20294,20294, 0, 0, 0, 20294, 0, 0,20294, 0,20294, 0,20294, 0,20294, 20294,20294,20312, 0, 0, 0, 0, 0, 0, 0, 0, 0,20312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20312, 0, 0, 0, 0, 0, 0,20312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20312, 0,20312, 0, 20312, 0, 0,20312,20312, 0, 0, 0,20312, 0, 0,20312, 0,20312, 0,20312, 0,20312,20312,20312, 20313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20313, 0,20313, 0, 0, 0, 0,20313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20313, 0,20313, 0,20313, 0, 0,20313,20313, 0, 0, 0,20313, 0, 0,20313, 0,20313, 0,20313, 0,20313,20313,20313,20329, 0, 0, 0, 0, 0, 0, 0, 0, 0,20329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20329, 0, 0, 0, 0, 0, 0, 20329, 0, 0, 0, 0, 0, 0,20329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20329, 0,20329,20329,20329, 0, 0,20329, 20329, 0, 0, 0,20329, 0, 0,20329, 0,20329, 0,20329, 0,20329,20329,20329,20330, 0, 0, 0, 0, 0, 0, 0, 0, 0,20330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20330, 0, 0, 0, 0, 0, 0,20330, 0, 0,20330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20330, 0,20330,20330,20330, 0, 0,20330,20330, 0, 0, 0,20330, 0, 0,20330, 0,20330, 0,20330, 0,20330,20330,20330,20332, 0,20332, 0, 0, 0, 0, 0, 0,20332, 0, 0,20332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20332, 0, 0, 0, 0, 0, 0,20332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20332, 0,20332, 0,20332, 0, 0,20332,20332, 0, 0, 0,20332, 0,20332,20332, 0,20332, 0,20332, 0,20332,20332,20332,20332,20335, 0,20335, 0, 0, 0, 0, 0, 0,20335, 0, 0,20335,20335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20335, 0, 0, 0, 0, 0, 0,20335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20335, 0,20335, 0,20335, 0, 0,20335,20335, 0, 0, 0,20335, 0, 0,20335, 0,20335, 0, 20335, 0,20335,20335,20335,20342, 0,20342,20342, 0, 0, 0, 0, 0,20342, 0,20342,20342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20342, 0, 0, 0, 0, 0, 0,20342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20342, 0,20342, 0,20342, 0, 0,20342,20342, 0, 0, 0,20342, 0, 0,20342, 0,20342, 0, 20342, 0,20342,20342,20342,20343, 0, 0, 0, 0, 0, 0, 0, 0, 0,20343,20343,20343,20343,20343, 20343,20343,20343,20343,20343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20343, 0, 0, 0, 0, 0, 0,20343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20343, 0,20343, 0,20343, 0, 0,20343,20343, 0, 0, 0,20343, 0, 0,20343, 0,20343, 0,20343, 0, 20343,20343,20343,20344, 0, 0, 0, 0, 0, 0, 0, 0, 0,20344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20344, 0, 0, 0, 0, 0, 0,20344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20344, 0,20344, 20344,20344, 0, 0,20344,20344, 0, 0, 0,20344, 0,20344,20344, 0,20344, 0,20344, 0,20344,20344, 20344,20361, 0,20361, 0, 0, 0, 0, 0, 0, 20361, 0, 0,20361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20361, 0, 0, 0, 0, 0, 0,20361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20361, 0,20361, 0,20361, 0, 0,20361,20361, 0, 0, 0,20361, 0, 0,20361, 0,20361, 0,20361, 0,20361,20361, 20361,20377, 0,20377,20377, 0, 0, 0, 0, 0, 20377, 0,20377,20377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20377, 0, 0, 0, 0, 0, 0,20377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20377, 0,20377, 0,20377, 0, 0,20377,20377, 0, 0, 0,20377, 0, 0,20377, 0,20377, 0,20377, 0,20377,20377, 20377,20378, 0, 0, 0, 0, 0, 0, 0, 0, 0,20378,20378,20378,20378,20378,20378,20378,20378,20378, 20378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20378, 0, 0, 0, 0, 0, 0, 20378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20378, 0,20378, 0,20378, 0, 0,20378,20378, 0, 0, 0,20378, 0, 0, 20378, 0,20378, 0,20378, 0,20378,20378,20378,20379, 0, 0, 0, 0, 0, 0, 0, 0, 0,20379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20379, 0, 0, 0, 0, 0, 0,20379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20379, 0,20379,20379,20379, 0, 0, 20379,20379, 0, 0, 0,20379, 0,20379,20379, 0, 20379, 0,20379, 0,20379,20379,20379,20396, 0,20396, 0, 0, 0, 0, 0, 0,20396, 0, 0,20396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20396, 0, 0, 0, 0, 0, 0,20396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20396, 0,20396, 0,20396, 0, 0, 20396,20396, 0, 0, 0,20396, 0, 0,20396, 0, 20396, 0,20396, 0,20396,20396,20396,20412, 0,20412, 0, 0, 0, 0, 0, 0,20412, 0, 0,20412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20412, 0, 0, 0, 0, 0, 0, 0, 0,20412, 0, 0, 0, 0, 0, 0,20412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20412, 0,20412, 0,20412, 0, 0, 20412,20412, 0, 0, 0,20412, 0,20412,20412, 0, 20412, 0,20412, 0,20412,20412,20412,20413, 0,20413, 0, 0, 0, 0, 0, 0,20413, 0, 0,20413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20413, 0, 0, 0, 0, 0, 0,20413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20413, 0,20413, 0,20413, 0, 0, 20413,20413, 0, 0, 0,20413, 0, 0,20413, 0, 20413, 0,20413, 0,20413,20413,20413,20436,20436, 0, 20436,20436,20436,20436,20436,20436,20436,20436,20436, 0, 20436,20436, 0, 0, 0, 0, 0, 0, 0, 0, 0,20436,20436,20436,20436,20436,20436,20436, 0, 0, 0, 0, 0,20436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20436,20436,20436,20437,20437, 0,20437,20437,20437, 20437,20437,20437,20437,20437,20437, 0,20437,20437, 0, 0, 0, 0, 0, 0, 0, 0, 0,20437,20437, 20437,20437,20437,20437,20437,20437, 0, 0, 0, 0, 20437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20437,20437, 20437,20441,20441, 0,20441,20441,20441,20441,20441,20441, 20441,20441,20441, 0,20441,20441, 0, 0, 0, 0, 0, 0, 0, 0, 0,20441,20441,20441,20441,20441, 20441,20441, 0, 0, 0, 0, 0,20441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20441,20441,20441,20442,20442, 0,20442,20442,20442,20442,20442,20442,20442,20442,20442, 0,20442,20442, 0, 0, 0, 0, 0, 0, 0, 0, 0,20442,20442,20442,20442,20442,20442,20442,20442, 0, 0, 0, 0,20442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20442,20442,20442,20446,20446, 0,20446,20446, 20446,20446,20446,20446,20446,20446,20446, 0,20446,20446, 0, 0, 0, 0, 0, 0, 0, 0, 0,20446, 20446,20446,20446,20446,20446,20446, 0, 0, 0, 0, 0,20446, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20446, 20446,20446,20447,20447, 0,20447,20447,20447,20447,20447, 20447,20447,20447,20447, 0,20447,20447, 0, 0, 0, 0, 0, 0, 0, 0, 0,20447,20447,20447,20447, 20447,20447,20447,20447, 0, 0, 0, 0,20447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20447,20447,20447,20451, 20451, 0,20451,20451,20451,20451,20451,20451,20451,20451, 20451, 0,20451,20451, 0, 0, 0, 0, 0, 0, 0, 0, 0,20451,20451,20451,20451,20451,20451,20451, 0, 0, 0, 0, 0,20451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20451,20451,20451,20452,20452, 0,20452, 20452,20452,20452,20452,20452,20452,20452,20452, 0,20452, 20452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20452,20452,20452,20452,20452,20452,20452,20452, 0, 0, 0, 0,20452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20452,20452,20452,20455,20455, 0,20455,20455,20455,20455, 20455,20455,20455,20455,20455, 0,20455,20455, 0, 0, 0, 0, 0, 0, 0, 0, 0,20455,20455,20455, 20455,20455,20455,20455, 0, 0, 0, 0, 0,20455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20455,20455,20455, 20456,20456, 0,20456,20456,20456,20456,20456,20456,20456, 20456,20456, 0,20456,20456, 0, 0, 0, 0, 0, 0, 0, 0, 0,20456,20456,20456,20456,20456,20456, 20456,20456, 0, 0, 0, 0,20456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20456,20456,20456,20458,20458, 0, 20458,20458,20458,20458,20458,20458,20458,20458,20458, 0, 20458,20458, 0, 0, 0, 0, 0, 0, 0, 0, 0,20458,20458,20458,20458,20458,20458,20458, 0, 0, 0, 0, 0,20458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20458, 0, 0, 0, 0, 0, 0,20458,20458,20458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20458,20459,20459, 0,20459,20459,20459,20459, 20459,20459,20459,20459,20459, 0,20459,20459, 0, 0, 0, 0, 0, 0, 0, 0, 0,20459,20459,20459, 20459,20459,20459,20459, 0, 0, 0, 0, 0,20459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20459,20459,20459, 20460,20460, 0,20460,20460,20460,20460,20460,20460,20460, 20460,20460, 0,20460,20460, 0, 0, 0, 0, 0, 0, 0, 0, 0,20460,20460,20460,20460,20460,20460, 20460,20460, 0, 0, 0, 0,20460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20460,20460,20460,20461,20461, 0, 20461,20461,20461,20461,20461,20461,20461,20461,20461, 0, 20461,20461, 0, 0, 0, 0, 0, 0, 0, 0, 0,20461,20461,20461,20461,20461,20461,20461, 0, 0, 0, 0, 0,20461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20461,20461,20461,20462,20462, 0,20462,20462,20462, 20462,20462,20462,20462,20462,20462, 0,20462,20462, 0, 0, 0, 0, 0, 0, 0, 0, 0,20462,20462, 20462,20462,20462,20462,20462,20462, 0, 0, 0, 0, 20462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20462,20462, 20462,20465,20465, 0,20465,20465,20465,20465,20465,20465, 20465,20465,20465, 0,20465,20465, 0, 0, 0, 0, 0, 0, 0, 0, 0,20465,20465,20465,20465,20465, 20465,20465, 0, 0, 0, 0, 0,20465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20465,20465,20465,20466,20466, 0,20466,20466,20466,20466,20466,20466,20466,20466,20466, 0,20466,20466, 0, 0, 0, 0, 0, 0, 0, 0, 0,20466,20466,20466,20466,20466,20466,20466,20466, 0, 0, 0, 0,20466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20466,20466,20466,20469,20469, 0,20469,20469, 20469,20469,20469,20469,20469,20469,20469, 0,20469,20469, 0, 0, 0, 0, 0, 0, 0, 0, 0,20469, 20469,20469,20469,20469,20469,20469, 0, 0, 0, 0, 0,20469, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20469, 20469,20469,20470,20470, 0,20470,20470,20470,20470,20470, 20470,20470,20470,20470, 0,20470,20470, 0, 0, 0, 0, 0, 0, 0, 0, 0,20470,20470,20470,20470, 20470,20470,20470,20470, 0, 0, 0, 0,20470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20470,20470,20470,20472, 20472, 0,20472,20472,20472,20472,20472,20472,20472,20472, 20472, 0,20472,20472, 0, 0, 0, 0, 0, 0, 0, 0, 0,20472,20472,20472,20472,20472,20472,20472, 0, 0, 0, 0, 0,20472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20472, 0, 0, 0, 0, 0, 0,20472,20472,20472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20472,20473,20473, 0,20473,20473, 20473,20473,20473,20473,20473,20473,20473, 0,20473,20473, 0, 0, 0, 0, 0, 0, 0, 0, 0,20473, 20473,20473,20473,20473,20473,20473, 0, 0, 0, 0, 0,20473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20473, 20473,20473,20474,20474, 0,20474,20474,20474,20474,20474, 20474,20474,20474,20474, 0,20474,20474, 0, 0, 0, 0, 0, 0, 0, 0, 0,20474,20474,20474,20474, 20474,20474,20474,20474, 0, 0, 0, 0,20474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20474,20474,20474,20475, 20475, 0,20475,20475,20475,20475,20475,20475,20475,20475, 20475, 0,20475,20475, 0, 0, 0, 0, 0, 0, 0, 0, 0,20475,20475,20475,20475,20475,20475,20475, 0, 0, 0, 0, 0,20475, 0, 0,20475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20475,20475,20475,20479,20479,20479,20479, 20479,20479,20479,20479,20479,20479, 0, 0, 0, 0, 0, 0,20479,20479,20479,20479,20479,20479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20479, 20479,20479,20479,20479,20479,20480,20480,20480,20480,20480, 20480,20480,20480,20480,20480, 0, 0, 0, 0, 0, 0,20480,20480,20480,20480,20480,20480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20480,20480, 20480,20480,20480,20480,20482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20482,20482,20482,20482,20482, 20482,20482,20482,20482, 0, 0, 0, 0, 0, 0, 0,20482,20482,20482,20482,20482,20482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20482,20482, 20482,20482,20482,20482,20485,20485,20485,20485,20485,20485, 20485,20485,20485,20485, 0, 0, 0, 0, 0, 0, 20485,20485,20485,20485,20485,20485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20485,20485,20485, 20485,20485,20485,20487,20487,20487,20487,20487,20487,20487, 20487,20487, 0, 0, 0, 0, 0, 0, 0,20487, 20487,20487,20487,20487,20487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20487,20487,20487,20487, 20487,20487,20492,20492,20492,20492,20492,20492,20492,20492, 20492,20492, 0, 0, 0, 0, 0, 0,20492,20492, 20492,20492,20492,20492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20492,20492,20492,20492,20492, 20492,20494,20494,20494,20494,20494,20494,20494,20494,20494, 0, 0, 0, 0, 0, 0, 0,20494,20494,20494, 20494,20494,20494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20494,20494,20494,20494,20494,20494, 20497,20497,20497,20497,20497,20497,20497,20497,20497, 0, 0, 0, 0, 0, 0, 0,20497,20497,20497,20497, 20497,20497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20497,20497,20497,20497,20497,20497,20498, 20498,20498,20498,20498,20498,20498,20498,20498,20498, 0, 0, 0, 0, 0, 0,20498,20498,20498,20498,20498, 20498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20498,20498,20498,20498,20498,20498,20500,20500, 20500,20500,20500,20500,20500,20500,20500, 0, 0, 0, 0, 0, 0, 0,20500,20500,20500,20500,20500,20500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20500,20500,20500,20500,20500,20500,20503,20503,20503, 20503,20503,20503,20503,20503,20503, 0, 0, 0, 0, 0, 0, 0,20503,20503,20503,20503,20503,20503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20503,20503,20503,20503,20503,20503,20504, 0,20504,20504, 20504,20504,20504,20504,20504,20504,20504,20504, 0, 0, 0, 0, 0, 0,20504,20504,20504,20504,20504,20504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20504,20504,20504,20504,20504,20504,20507,20507,20507, 20507,20507,20507,20507,20507,20507,20507, 0, 0, 0, 0, 0, 0,20507,20507,20507,20507,20507,20507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20507,20507,20507,20507,20507,20507,20509,20509,20509,20509, 20509,20509,20509,20509,20509, 0, 0, 0, 0, 0, 0, 0,20509,20509,20509,20509,20509,20509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20509, 20509,20509,20509,20509,20509,20512,20512,20512,20512,20512, 20512,20512,20512,20512, 0, 0, 0, 0, 0, 0, 0,20512,20512,20512,20512,20512,20512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20512,20512, 20512,20512,20512,20512,20513,20513,20513,20513,20513,20513, 20513,20513,20513,20513, 0, 0, 0, 0, 0, 0, 20513,20513,20513,20513,20513,20513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20513,20513,20513, 20513,20513,20513,20516,20516,20516,20516,20516,20516,20516, 20516,20516,20516, 0, 0, 0, 0, 0, 0,20516, 20516,20516,20516,20516,20516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20516,20516,20516,20516, 20516,20516,20518,20518,20518,20518,20518,20518,20518,20518, 20518, 0, 0, 0, 0, 0, 0, 0,20518,20518, 20518,20518,20518,20518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20518,20518,20518,20518,20518, 20518,20521,20521,20521,20521,20521,20521,20521,20521,20521, 0, 0, 0, 0, 0, 0, 0,20521,20521,20521, 20521,20521,20521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20521,20521,20521,20521,20521,20521, 20522,20522,20522,20522,20522,20522,20522,20522,20522,20522, 0, 0, 0, 0, 0, 0,20522,20522,20522,20522, 20522,20522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20522,20522,20522,20522,20522,20522,20528, 20528,20528,20528,20528,20528,20528,20528,20528,20528, 0, 0, 0, 0, 0, 0,20528,20528,20528,20528,20528, 20528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20528,20528,20528,20528,20528,20528,20529,20529, 20529,20529,20529,20529,20529,20529,20529, 0, 0, 0, 0, 0, 0, 0,20529,20529,20529,20529,20529,20529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20529,20529,20529,20529,20529,20529,20534,20534,20534, 20534,20534,20534,20534,20534,20534,20534, 0, 0, 0, 0, 0, 0,20534,20534,20534,20534,20534,20534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20534,20534,20534,20534,20534,20534,20538,20538,20538,20538, 20538,20538,20538,20538,20538,20538, 0, 0, 0, 0, 0, 0,20538,20538,20538,20538,20538,20538, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20538, 20538,20538,20538,20538,20538,20543,20543, 0,20543,20543, 20543,20543,20543,20543,20543,20543,20543, 0,20543,20543, 0, 0, 0, 0, 0, 0, 0, 0, 0,20543, 20543,20543,20543,20543,20543,20543, 0, 0, 0, 0, 0,20543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20543, 20543,20543,20544,20544, 0,20544,20544,20544,20544,20544, 20544,20544,20544,20544, 0,20544,20544, 0, 0, 0, 0, 0, 0, 0, 0, 0,20544,20544,20544,20544, 20544,20544,20544,20544, 0, 0, 0, 0,20544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20544,20544,20544,20548, 20548, 0,20548,20548,20548,20548,20548,20548,20548,20548, 20548, 0,20548,20548, 0, 0, 0, 0, 0, 0, 0, 0, 0,20548,20548,20548,20548,20548,20548,20548, 0, 0, 0, 0, 0,20548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20548,20548,20548,20549,20549, 0,20549, 20549,20549,20549,20549,20549,20549,20549,20549, 0,20549, 20549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20549,20549,20549,20549,20549,20549,20549,20549, 0, 0, 0, 0,20549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20549,20549,20549,20553,20553, 0,20553,20553,20553,20553, 20553,20553,20553,20553,20553, 0,20553,20553, 0, 0, 0, 0, 0, 0, 0, 0, 0,20553,20553,20553, 20553,20553,20553,20553, 0, 0, 0, 0, 0,20553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20553,20553,20553, 20554,20554, 0,20554,20554,20554,20554,20554,20554,20554, 20554,20554, 0,20554,20554, 0, 0, 0, 0, 0, 0, 0, 0, 0,20554,20554,20554,20554,20554,20554, 20554,20554, 0, 0, 0, 0,20554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20554,20554,20554,20568,20568, 0, 20568,20568,20568,20568,20568,20568,20568,20568,20568, 0, 20568,20568, 0, 0, 0, 0, 0, 0, 0, 0, 0,20568,20568,20568,20568,20568,20568,20568, 0, 0, 0, 0, 0,20568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20568,20568,20568,20569,20569, 0,20569,20569,20569, 20569,20569,20569,20569,20569,20569, 0,20569,20569, 0, 0, 0, 0, 0, 0, 0, 0, 0,20569,20569, 20569,20569,20569,20569,20569,20569, 0, 0, 0, 0, 20569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20569,20569, 20569,20583,20583, 0,20583,20583,20583,20583,20583,20583, 20583,20583,20583, 0,20583,20583, 0, 0, 0, 0, 0, 0, 0, 0, 0,20583,20583,20583,20583,20583, 20583,20583, 0, 0, 0, 0, 0,20583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20583,20583,20583,20584,20584, 0,20584,20584,20584,20584,20584,20584,20584,20584,20584, 0,20584,20584, 0, 0, 0, 0, 0, 0, 0, 0, 0,20584,20584,20584,20584,20584,20584,20584,20584, 0, 0, 0, 0,20584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20584,20584,20584,20604,20604, 0,20604,20604, 20604,20604,20604,20604,20604,20604,20604, 0,20604,20604, 0, 0, 0, 0, 0, 0, 0, 0, 0,20604, 20604,20604,20604,20604,20604,20604, 0, 0, 0, 0, 0,20604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20604, 20604,20604,20605,20605, 0,20605,20605,20605,20605,20605, 20605,20605,20605,20605, 0,20605,20605, 0, 0, 0, 0, 0, 0, 0, 0, 0,20605,20605,20605,20605, 20605,20605,20605,20605, 0, 0, 0, 0,20605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20605,20605,20605,20606, 20606, 0,20606,20606,20606,20606,20606,20606,20606,20606, 20606, 0,20606,20606, 0, 0, 0, 0, 0, 0, 0, 0, 0,20606,20606,20606,20606,20606,20606,20606, 0, 0, 0, 0, 0,20606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20606,20606,20606,20607,20607, 0,20607, 20607,20607,20607,20607,20607,20607,20607,20607, 0,20607, 20607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20607,20607,20607,20607,20607,20607,20607,20607, 0, 0, 0, 0,20607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20607,20607,20607,20611,20611, 0,20611,20611,20611,20611, 20611,20611,20611,20611,20611, 0,20611,20611, 0, 0, 0, 0, 0, 0, 0, 0, 0,20611,20611,20611, 20611,20611,20611,20611, 0, 0, 0, 0, 0,20611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20611,20611,20611, 20612,20612, 0,20612,20612,20612,20612,20612,20612,20612, 20612,20612, 0,20612,20612, 0, 0, 0, 0, 0, 0, 0, 0, 0,20612,20612,20612,20612,20612,20612, 20612,20612, 0, 0, 0, 0,20612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20612,20612,20612,20613,20613, 0, 20613,20613,20613,20613,20613,20613,20613,20613,20613, 0, 20613,20613, 0, 0, 0, 0, 0, 0, 0, 0, 0,20613,20613,20613,20613,20613,20613,20613, 0, 0, 0, 0, 0,20613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20613,20613,20613,20614,20614, 0,20614,20614,20614, 20614,20614,20614,20614,20614,20614, 0,20614,20614, 0, 0, 0, 0, 0, 0, 0, 0, 0,20614,20614, 20614,20614,20614,20614,20614,20614, 0, 0, 0, 0, 20614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20614,20614, 20614,20615,20615, 0,20615,20615,20615,20615,20615,20615, 20615,20615,20615, 0,20615,20615, 0, 0, 0, 0, 0, 0, 0, 0, 0,20615,20615,20615,20615,20615, 20615,20615, 0, 0, 0, 0, 0,20615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20615, 0, 0, 0, 0, 0,20615,20615,20615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20615,20619,20619, 0,20619,20619,20619,20619,20619,20619,20619,20619,20619, 0,20619,20619, 0, 0, 0, 0, 0, 0, 0, 0, 0,20619,20619,20619,20619,20619,20619,20619, 0, 0, 0, 0, 0,20619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20619,20619,20619,20620,20620, 0,20620,20620, 20620,20620,20620,20620,20620,20620,20620, 0,20620,20620, 0, 0, 0, 0, 0, 0, 0, 0, 0,20620, 20620,20620,20620,20620,20620,20620,20620, 0, 0, 0, 0,20620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20620, 20620,20620,20623,20623, 0,20623,20623,20623,20623,20623, 20623,20623,20623,20623, 0,20623,20623, 0, 0, 0, 0, 0, 0, 0, 0, 0,20623,20623,20623,20623, 20623,20623,20623, 0, 0, 0, 0, 0,20623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20623,20623,20623,20624, 20624, 0,20624,20624,20624,20624,20624,20624,20624,20624, 20624, 0,20624,20624, 0, 0, 0, 0, 0, 0, 0, 0, 0,20624,20624,20624,20624,20624,20624,20624, 20624, 0, 0, 0, 0,20624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20624,20624,20624,20626,20626, 0,20626, 20626,20626,20626,20626,20626,20626,20626,20626, 0,20626, 20626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20626,20626,20626,20626,20626,20626,20626, 0, 0, 0, 0, 0,20626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20626,20626,20626,20627,20627, 0,20627,20627,20627,20627, 20627,20627,20627,20627,20627, 0,20627,20627, 0, 0, 0, 0, 0, 0, 0, 0, 0,20627,20627,20627, 20627,20627,20627,20627,20627, 0, 0, 0, 0,20627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20627,20627,20627, 20628,20628, 0,20628,20628,20628,20628,20628,20628,20628, 20628,20628, 0,20628,20628, 0, 0, 0, 0, 0, 0, 0, 0, 0,20628,20628,20628,20628,20628,20628, 20628, 0, 0, 0, 0, 0,20628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20628, 0, 0, 0,20628,20628,20628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20628,20629, 20629, 0,20629,20629,20629,20629,20629,20629,20629,20629, 20629, 0,20629,20629, 0, 0, 0, 0, 0, 0, 0, 0, 0,20629,20629,20629,20629,20629,20629,20629, 0, 0, 0, 0, 0,20629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20629,20629,20629,20630,20630, 0,20630, 20630,20630,20630,20630,20630,20630,20630,20630, 0,20630, 20630,20630,20630,20630,20630,20630,20630,20630,20630,20630, 20630,20630,20630,20630,20630,20630,20630, 0, 0, 0, 0, 0,20630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20630,20630,20630,20632,20632, 0,20632,20632,20632,20632, 20632,20632,20632,20632,20632, 0,20632,20632, 0, 0, 0, 0, 0, 0, 0, 0, 0,20632,20632,20632, 20632,20632,20632,20632, 0, 0, 0, 0, 0,20632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20632,20632,20632, 20633,20633, 0,20633,20633,20633,20633,20633,20633,20633, 20633,20633, 0,20633,20633, 0, 0, 0, 0, 0, 0, 0, 0, 0,20633,20633,20633,20633,20633,20633, 20633,20633, 0, 0, 0, 0,20633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20633,20633,20633,20634,20634, 0, 20634,20634,20634,20634,20634,20634,20634,20634,20634, 0, 20634,20634, 0, 0, 0, 0, 0, 0, 0, 0, 0,20634,20634,20634,20634,20634,20634,20634, 0, 0, 0, 0, 0,20634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20634, 0, 0, 0,20634,20634,20634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20634,20646,20646, 0,20646, 20646,20646,20646,20646,20646,20646,20646,20646, 0,20646, 20646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20646,20646,20646,20646,20646,20646,20646, 0, 0, 0, 0, 0,20646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20646,20646,20646,20647,20647, 0,20647,20647,20647,20647, 20647,20647,20647,20647,20647, 0,20647,20647, 0, 0, 0, 0, 0, 0, 0, 0, 0,20647,20647,20647, 20647,20647,20647,20647,20647, 0, 0, 0, 0,20647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20647,20647,20647, 20661,20661, 0,20661,20661,20661,20661,20661,20661,20661, 20661,20661, 0,20661,20661, 0, 0, 0, 0, 0, 0, 0, 0, 0,20661,20661,20661,20661,20661,20661, 20661, 0, 0, 0, 0, 0,20661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20661,20661,20661,20662,20662, 0, 20662,20662,20662,20662,20662,20662,20662,20662,20662, 0, 20662,20662, 0, 0, 0, 0, 0, 0, 0, 0, 0,20662,20662,20662,20662,20662,20662,20662,20662, 0, 0, 0, 0,20662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20662,20662,20662,20682,20682, 0,20682,20682,20682, 20682,20682,20682,20682,20682,20682, 0,20682,20682, 0, 0, 0, 0, 0, 0, 0, 0, 0,20682,20682, 20682,20682,20682,20682,20682, 0, 0, 0, 0, 0, 20682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20682,20682, 20682,20683,20683,20683,20683,20683,20683,20683,20683,20683, 20683, 0, 0, 0, 0, 0, 0,20683,20683,20683, 20683,20683,20683, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20683,20683,20683,20683,20683,20683, 20687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20687,20687,20687,20687,20687,20687,20687,20687,20687, 0, 0, 0, 0, 0, 0, 0,20687,20687,20687, 20687,20687,20687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20687,20687,20687,20687,20687,20687, 20693,20693,20693,20693,20693,20693,20693,20693,20693, 0, 0, 0, 0, 0, 0, 0,20693,20693,20693,20693, 20693,20693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20693,20693,20693,20693,20693,20693,20696, 20696,20696,20696,20696,20696,20696,20696,20696,20696, 0, 0, 0, 0, 0, 0,20696,20696,20696,20696,20696, 20696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20696,20696,20696,20696,20696,20696,20700,20700, 20700,20700,20700,20700,20700,20700,20700, 0, 0, 0, 0, 0, 0, 0,20700,20700,20700,20700,20700,20700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20700,20700,20700,20700,20700,20700,20703, 0,20703, 20703,20703,20703,20703,20703,20703,20703,20703,20703, 0, 0, 0, 0, 0, 0,20703,20703,20703,20703,20703, 20703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20703,20703,20703,20703,20703,20703,20710,20710, 20710,20710,20710,20710,20710,20710,20710, 0, 0, 0, 0, 0, 0, 0,20710,20710,20710,20710,20710,20710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20710,20710,20710,20710,20710,20710,20713,20713,20713, 20713,20713,20713,20713,20713,20713,20713, 0, 0, 0, 0, 0, 0,20713,20713,20713,20713,20713,20713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20713,20713,20713,20713,20713,20713,20717,20717,20717,20717, 20717,20717,20717,20717,20717,20717, 0, 0, 0, 0, 0, 0,20717,20717,20717,20717,20717,20717, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20717, 20717,20717,20717,20717,20717,20721,20721,20721,20721,20721, 20721,20721,20721,20721, 0, 0, 0, 0, 0, 0, 0,20721,20721,20721,20721,20721,20721, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20721,20721, 20721,20721,20721,20721,20724,20724,20724,20724,20724,20724, 20724,20724,20724,20724, 0, 0, 0, 0, 0, 0, 20724,20724,20724,20724,20724,20724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20724,20724,20724, 20724,20724,20724,20728,20728,20728,20728,20728,20728,20728, 20728,20728,20728, 0, 0, 0, 0, 0, 0,20728, 20728,20728,20728,20728,20728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20728,20728,20728,20728, 20728,20728,20732,20732,20732,20732,20732,20732,20732,20732, 20732, 0, 0, 0, 0, 0, 0, 0,20732,20732, 20732,20732,20732,20732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20732,20732,20732,20732,20732, 20732,20735,20735,20735,20735,20735,20735,20735,20735,20735, 20735, 0, 0, 0, 0, 0, 0,20735,20735,20735, 20735,20735,20735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20735,20735,20735,20735,20735,20735, 20739,20739,20739,20739,20739,20739,20739,20739,20739,20739, 0, 0, 0, 0, 0, 0,20739,20739,20739,20739, 20739,20739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20739,20739,20739,20739,20739,20739,20740, 20740,20740,20740,20740,20740,20740,20740,20740,20740, 0, 0, 0, 0, 0, 0,20740,20740,20740,20740,20740, 20740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20740,20740,20740,20740,20740,20740,20742,20742, 20742,20742,20742,20742,20742,20742,20742, 0, 0, 0, 0, 0, 0, 0,20742,20742,20742,20742,20742,20742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20742,20742,20742,20742,20742,20742,20745,20745,20745, 20745,20745,20745,20745,20745,20745, 0, 0, 0, 0, 0, 0, 0,20745,20745,20745,20745,20745,20745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20745,20745,20745,20745,20745,20745,20746,20746,20746,20746, 20746,20746,20746,20746,20746,20746, 0, 0, 0, 0, 0, 0,20746,20746,20746,20746,20746,20746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20746, 20746,20746,20746,20746,20746,20750,20750, 0,20750,20750, 20750,20750,20750,20750,20750,20750,20750, 0,20750,20750, 0, 0, 0, 0, 0, 0, 0, 0, 0,20750, 20750,20750,20750,20750,20750,20750, 0, 0, 0, 0, 0,20750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20750, 20750,20750,20751,20751, 0,20751,20751,20751,20751,20751, 20751,20751,20751,20751, 0,20751,20751, 0, 0, 0, 0, 0, 0, 0, 0, 0,20751,20751,20751,20751, 20751,20751,20751,20751, 0, 0, 0, 0,20751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20751,20751,20751,20772, 0,20772, 0, 0,20772,20772,20772,20772,20772,20772, 20772,20772,20772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20772,20772, 0,20772,20779,20779, 0,20779, 20779,20779,20779,20779,20779,20779,20779,20779, 0,20779, 20779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20779,20779,20779,20779,20779,20779,20779, 0, 0, 0, 0, 0,20779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20779,20779,20779,20802,20802, 0,20802,20802,20802,20802, 20802,20802,20802,20802,20802, 0,20802,20802, 0, 0, 0, 0, 0, 0, 0, 0, 0,20802,20802,20802, 20802,20802,20802,20802, 0, 0, 0, 0, 0,20802, 0, 0, 0, 0, 0,20802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20802,20802,20802, 20822, 0,20822, 0, 0,20822,20822,20822,20822,20822, 20822,20822,20822,20822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20822,20822, 0,20822,20829,20829, 0, 20829,20829,20829,20829,20829,20829,20829,20829,20829, 0, 20829,20829, 0, 0, 0, 0, 0, 0, 0, 0, 0,20829,20829,20829,20829,20829,20829,20829, 0, 0, 0, 0, 0,20829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20829,20829,20829,20830,20830, 0,20830,20830,20830, 20830,20830,20830,20830,20830,20830, 0,20830,20830, 0, 0, 0, 0, 0, 0, 0, 0, 0,20830,20830, 20830,20830,20830,20830,20830,20830, 0, 0, 0, 0, 20830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20830,20830, 20830,20831,20831, 0,20831,20831,20831,20831,20831,20831, 20831,20831,20831, 0,20831,20831, 0, 0, 0, 0, 0, 0, 0, 0, 0,20831,20831,20831,20831,20831, 20831,20831, 0, 0, 0, 0, 0,20831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20831,20831,20831,20866,20866, 0,20866,20866,20866,20866,20866,20866,20866, 0,20866, 20866,20866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20866,20866,20866,20866,20866,20866,20866, 0, 0, 0, 0, 0,20866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20866,20866,20866,20866,20867,20867, 0,20867, 20867,20867,20867,20867,20867,20867, 0,20867,20867,20867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20867,20867,20867,20867,20867,20867,20867,20867, 0, 0, 0, 0,20867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20867,20867,20867,20867,20871,20871,20871,20871,20871,20871, 20871,20871,20871, 0, 0, 0, 0, 0, 0, 0, 20871,20871,20871,20871,20871,20871, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20871,20871,20871, 20871,20871,20871,20874, 0,20874,20874,20874,20874,20874, 20874,20874,20874,20874,20874, 0, 0, 0, 0, 0, 0,20874,20874,20874,20874,20874,20874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20874,20874, 20874,20874,20874,20874,20878,20878,20878,20878,20878,20878, 20878,20878,20878,20878, 0, 0, 0, 0, 0,20878, 20878,20878,20878,20878,20878,20878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20878,20878,20878, 20878,20878,20878,20903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20903,20903,20903,20903,20903,20903, 20903,20903,20903, 0,20903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20903,20906,20906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20906,20906,20906,20906,20906,20906,20906, 20906,20906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20906, 0,20906,20906,20906,20906, 20906,20906, 0, 0, 0, 0, 0, 0, 0,20906, 20941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20941, 0, 0,20941, 0,20941, 0, 0, 0, 0,20941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20941, 0,20941, 0,20941, 0, 0,20941,20941, 0, 0, 0,20941, 0, 0,20941, 0,20941, 0,20941, 0,20941,20941,20941,20942, 0, 20942, 0, 0, 0, 0, 0, 0,20942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20942, 0, 0, 0, 0, 0, 0,20942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20942, 0,20942,20942,20942, 0, 0,20942,20942, 0, 0, 0,20942, 0, 0,20942, 0,20942, 0,20942, 0,20942,20942,20942,20943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20943, 0, 0, 0, 0, 0, 0,20943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20943, 0,20943, 0,20943, 0, 0,20943, 20943, 0, 0, 0,20943, 0, 0,20943, 0,20943, 0,20943, 0,20943,20943,20943,20944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20944, 0, 0, 0, 0, 0, 0,20944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20944, 0,20944, 0,20944, 0, 0,20944,20944, 0, 0, 0,20944, 0, 0,20944, 0,20944, 0,20944, 0,20944,20944,20944,20945, 0,20945, 0, 0, 0, 0, 0, 0,20945, 0, 0, 0, 0, 0, 0, 0,20945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20945, 0, 20945, 0, 0, 0, 0,20945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20945, 0,20945, 0,20945, 0, 0,20945,20945, 0, 0, 0,20945, 0, 0,20945, 0,20945, 0,20945, 0,20945,20945,20945,20956, 0,20956, 0, 0, 0, 0, 0, 0,20956, 0, 0, 0, 0, 0, 0, 0,20956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20956, 0, 20956, 0, 0, 0, 0,20956, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20956, 0,20956, 0,20956, 0, 0,20956,20956, 0, 0, 0,20956, 0, 0,20956, 0,20956, 0,20956, 0,20956,20956,20956,20957, 0,20957,20957, 0, 0, 0, 0, 0,20957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20957, 0, 0, 0, 0, 0, 0,20957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20957, 0,20957, 0,20957, 0, 0,20957,20957, 0, 0, 0,20957, 0, 0,20957, 0,20957, 0,20957, 0,20957,20957,20957,20958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20958, 0, 0, 0, 0, 0, 0,20958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20958, 0, 20958, 0,20958, 0, 0,20958,20958, 0, 0, 0, 20958, 0, 0,20958, 0,20958, 0,20958, 0,20958, 20958,20958,20959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20959,20959,20959,20959,20959,20959,20959, 20959,20959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20959, 0, 0, 0, 0, 0, 0,20959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20959, 0,20959, 0, 20959, 0, 0,20959,20959, 0, 0, 0,20959, 0, 0,20959, 0,20959, 0,20959, 0,20959,20959,20959, 20965,20965,20965,20965,20965,20965,20965,20965,20965,20965, 20965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20965, 0, 0, 0, 0,20965,20976, 0,20976, 0, 0, 0, 0, 0, 0,20976, 0, 0, 0, 0, 0, 0, 0,20976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20976, 0, 20976, 0, 0, 0, 0,20976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20976, 0,20976, 0,20976, 0, 0,20976,20976, 0, 0, 0,20976, 0, 0,20976, 0,20976, 0,20976, 0,20976,20976,20976,20977, 0,20977,20977, 0, 0, 0, 0, 0,20977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20977, 0, 0, 0, 0, 0, 0,20977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20977, 0,20977, 0,20977, 0, 0,20977,20977, 0, 0, 0,20977, 0, 0,20977, 0,20977, 0,20977, 0,20977,20977,20977,20978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20978, 0, 0, 0, 0, 0, 0,20978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20978, 0, 20978, 0,20978, 0, 0,20978,20978, 0, 0, 0, 20978, 0, 0,20978, 0,20978, 0,20978, 0,20978, 20978,20978,20979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20979,20979,20979,20979,20979,20979,20979, 20979,20979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20979, 0, 0, 0, 0, 0, 0,20979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20979, 0,20979, 0, 20979, 0, 0,20979,20979, 0, 0, 0,20979, 0, 0,20979, 0,20979, 0,20979, 0,20979,20979,20979, 20985,20985,20985,20985,20985,20985,20985,20985,20985,20985, 20985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20985, 0, 0, 0, 0,20985,20996, 0, 0, 0, 0, 0, 0, 0, 0, 0,20996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20996, 0, 0, 0, 0, 0, 0,20996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20996, 0, 20996, 0,20996, 0, 0,20996,20996, 0, 0, 0, 20996, 0, 0,20996, 0,20996, 0,20996, 0,20996, 20996,20996,20997, 0, 0, 0, 0, 0, 0, 0, 0, 0,20997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20997, 0, 0, 0, 0, 0, 0,20997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20997, 0,20997, 0, 20997, 0, 0,20997,20997, 0, 0, 0,20997, 0, 0,20997, 0,20997, 0,20997, 0,20997,20997,20997, 20998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20998, 0, 0, 0, 0, 0, 0,20998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,20998, 0,20998, 0,20998, 0, 0,20998,20998, 0, 0, 0,20998, 0, 0,20998, 0,20998, 0,20998, 0,20998,20998,20998,20999, 0, 0, 0, 0, 0, 0, 0, 0, 0,20999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20999, 0, 0, 0, 0, 0, 0,20999, 0, 0, 0, 0, 0,20999, 0, 0, 0, 0, 0, 0, 0, 0,20999, 0,20999, 0,20999, 0, 0,20999, 20999, 0, 0, 0,20999, 0, 0,20999, 0,20999, 0,20999, 0,20999,20999,20999,21000, 0, 0, 0, 0, 0, 0, 0, 0, 0,21000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21000, 0, 0, 0, 0, 0, 0,21000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21000, 0,21000, 0,21000, 0, 0,21000,21000, 0, 0, 0,21000, 0, 0,21000, 0,21000, 0,21000, 0,21000,21000,21000,21001, 0, 0, 0, 0, 0, 0, 0, 0, 0,21001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21001, 0, 0, 0, 0, 0, 0,21001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21001, 0, 21001, 0,21001, 0,21001,21001,21001, 0, 0, 0, 21001, 0,21001,21001, 0,21001, 0,21001, 0,21001, 21001,21001,21022, 0, 0, 0, 0, 0, 0, 0, 0, 0,21022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21022, 0, 0, 0, 0, 0, 0,21022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21022, 0,21022, 0, 21022, 0, 0,21022,21022, 0, 0, 0,21022, 0, 0,21022, 0,21022, 0,21022, 0,21022,21022,21022, 21023, 0,21023, 0, 0, 0, 0, 0, 0,21023, 0, 0,21023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21023, 0, 0, 0, 0, 0, 0,21023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21023, 0,21023, 0, 21023, 0, 0,21023,21023, 0, 0, 0,21023, 0, 21023,21023, 0,21023, 0,21023, 0,21023,21023,21023, 21024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21024, 0, 0, 0, 0, 0, 0,21024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21024, 0,21024, 0,21024, 0, 0,21024,21024, 0, 0, 0,21024, 0,21024,21024, 0,21024, 0,21024, 0,21024,21024,21024,21024,21026, 0,21026, 0, 0, 0, 0, 0, 0,21026, 0, 0,21026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21026, 0, 0, 0, 0, 0, 0, 21026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21026, 0,21026, 0,21026, 0, 0,21026,21026, 0, 0, 0,21026, 0, 0, 21026, 0,21026, 0,21026, 0,21026,21026,21026,21040, 0, 0, 0, 0, 0, 0, 0, 0, 0,21040, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21040, 0, 0, 0, 0, 0, 0,21040, 0, 0, 0, 0, 0,21040, 0, 0, 0, 0, 0, 0, 0, 0,21040, 0,21040, 0,21040, 0, 0, 21040,21040, 0, 0, 0,21040, 0, 0,21040, 0, 21040, 0,21040, 0,21040,21040,21040,21041, 0, 0, 0, 0, 0, 0, 0, 0, 0,21041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21041, 0, 0, 0, 0, 0, 0,21041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21041, 0,21041, 0,21041, 0,21041,21041,21041, 0, 0, 0,21041, 0,21041,21041, 0,21041, 0, 21041, 0,21041,21041,21041,21061, 0, 0, 0, 0, 0, 0, 0, 0, 0,21061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21061, 0, 0, 0, 0, 0, 0,21061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21061,21061, 0,21061, 0,21061, 0, 0,21061,21061, 0, 0, 0,21061, 0, 0,21061, 0,21061, 0,21061, 0, 21061,21061,21061,21062, 0, 0, 0, 0, 0, 0, 0, 0, 0,21062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21062, 0, 0, 0, 0, 0, 0,21062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21062, 0,21062, 0,21062, 0, 0,21062,21062, 0, 0, 0,21062, 0, 0,21062, 0,21062, 0,21062, 0,21062,21062, 21062,21063, 0, 0, 0, 0, 0, 0, 0, 0, 0,21063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21063, 0, 0, 0, 0, 0, 0, 21063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21063, 0,21063, 0,21063, 0, 0,21063,21063, 0, 0, 0,21063, 0, 0, 21063, 0,21063, 0,21063, 0,21063,21063,21063,21064, 0,21064, 0, 0, 0, 0, 0, 0,21064, 0, 0,21064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21064, 0, 0, 0, 0, 0, 0, 21064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21064, 0,21064, 0,21064, 0, 0,21064,21064, 0, 0, 0,21064, 0, 0, 21064, 0,21064, 0,21064, 0,21064,21064,21064,21065, 0, 0, 0, 0, 0, 0, 0, 0, 0,21065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21065, 0, 0, 0, 0, 0, 0,21065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21065, 0,21065, 0,21065, 0, 0, 21065,21065, 0, 0, 0,21065, 0, 0,21065, 0, 21065, 0,21065, 0,21065,21065,21065,21066, 0, 0, 0, 0, 0, 0, 0, 0, 0,21066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21066, 0, 0, 0, 0, 0, 0, 0, 0,21066, 0, 0, 0, 0, 0, 0,21066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21066, 0,21066, 0,21066, 0, 0,21066,21066, 0, 0, 0,21066, 0, 0,21066, 0,21066, 0, 21066, 0,21066,21066,21066,21067, 0,21067, 0, 0, 0, 0, 0, 0,21067, 0, 0,21067,21067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21067, 0, 0, 0, 0, 0, 0,21067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21067, 0,21067, 0,21067, 0, 0,21067,21067, 0, 0, 0,21067, 0, 0,21067, 0,21067, 0, 21067, 0,21067,21067,21067,21074, 0,21074, 0, 0, 0, 0, 0, 0,21074, 0, 0,21074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21074, 0, 0, 0, 0, 0, 0,21074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21074, 0,21074, 0,21074, 0, 0,21074,21074, 0, 0, 0,21074, 0, 0,21074, 0,21074, 0, 21074, 0,21074,21074,21074,21075, 0,21075, 0, 0, 0, 0, 0, 0,21075, 0, 0,21075,21075,21075, 21075,21075,21075,21075,21075,21075,21075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21075, 0, 0, 0, 0, 0, 0,21075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21075, 0,21075, 0,21075, 0, 0,21075,21075, 0, 0, 0,21075, 0, 0,21075, 0,21075, 0, 21075, 0,21075,21075,21075,21076,21076, 0, 0, 0, 0, 0, 0, 0,21076,21076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21076, 0, 0, 0, 0, 0, 0,21076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21076, 0,21076, 0,21076, 0, 0,21076,21076, 0, 0, 0,21076, 0, 0,21076, 0,21076, 0,21076, 0, 21076,21076,21076,21077, 0, 0, 0, 0, 0, 0, 0, 0, 0,21077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21077, 0, 0, 0, 0, 0, 0,21077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21077, 0,21077, 0,21077, 0, 0,21077,21077, 0, 0, 0,21077, 0, 0,21077, 0,21077, 0,21077, 0,21077,21077, 21077,21078, 0, 0, 0, 0, 0, 0, 0, 0, 0,21078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21078, 0, 0, 0, 0, 0, 0,21078, 0, 0, 0, 0, 0, 0, 21078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21078, 0,21078, 0,21078, 0, 0,21078,21078, 0, 0, 0,21078, 0, 0, 21078, 0,21078, 0,21078, 0,21078,21078,21078,21093, 21093,21093,21093,21093,21093,21093,21093,21093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21093, 0, 0, 0, 0, 0, 0, 0, 0,21093, 0, 0, 0, 0, 0, 0, 0,21093, 0, 0,21093,21101,21101,21101,21101,21101, 21101,21101,21101,21101,21101,21101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21101, 0, 0, 0, 0,21101,21105, 0,21105, 0, 0, 0, 0, 0, 0,21105, 0, 0,21105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21105, 0, 0, 0, 0, 0, 0, 21105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21105, 0,21105, 0,21105, 0, 0,21105,21105, 0, 0, 0,21105, 0, 0, 21105, 0,21105, 0,21105, 0,21105,21105,21105,21106, 0,21106, 0, 0, 0, 0, 0, 0,21106, 0, 0,21106,21106,21106,21106,21106,21106,21106,21106,21106, 21106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21106, 0, 0, 0, 0, 0, 0, 21106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21106, 0,21106, 0,21106, 0, 0,21106,21106, 0, 0, 0,21106, 0, 0, 21106, 0,21106, 0,21106, 0,21106,21106,21106,21107, 21107, 0, 0, 0, 0, 0, 0, 0,21107,21107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21107, 0, 0, 0, 0, 0, 0,21107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21107, 0,21107, 0,21107, 0, 0, 21107,21107, 0, 0, 0,21107, 0, 0,21107, 0, 21107, 0,21107, 0,21107,21107,21107,21108, 0, 0, 0, 0, 0, 0, 0, 0, 0,21108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21108, 0, 0, 0, 0, 0, 0,21108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21108, 0,21108, 0,21108, 0, 0,21108,21108, 0, 0, 0,21108, 0, 0,21108, 0,21108, 0, 21108, 0,21108,21108,21108,21109, 0, 0, 0, 0, 0, 0, 0, 0, 0,21109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21109, 0, 0, 0, 0, 0, 0,21109, 0, 0, 0, 0, 0, 0,21109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21109, 0,21109, 0,21109, 0, 0,21109,21109, 0, 0, 0,21109, 0, 0,21109, 0,21109, 0,21109, 0, 21109,21109,21109,21124,21124,21124,21124,21124,21124,21124, 21124,21124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21124, 0, 0, 0, 0, 0, 0, 0, 0,21124, 0, 0, 0, 0, 0, 0, 0,21124, 0, 0,21124,21132, 21132,21132,21132,21132,21132,21132,21132,21132,21132,21132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21132, 0, 0, 0, 0,21132,21137, 0,21137, 0, 0, 0, 0, 0, 0,21137, 0, 0,21137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21137, 0, 0, 0, 0, 0, 0,21137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21137, 0,21137, 0,21137, 0, 0,21137,21137, 0, 0, 0,21137, 0, 0,21137, 0,21137, 0,21137, 0, 21137,21137,21137,21139, 0,21139, 0, 0, 0, 0, 0, 0,21139, 0, 0,21139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21139, 0, 0, 0, 0, 0, 0,21139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21139, 0,21139, 0,21139, 0, 0,21139,21139, 0, 0, 0,21139, 0, 0,21139, 0,21139, 0,21139, 0, 21139,21139,21139,21155,21155, 0,21155,21155,21155,21155, 21155,21155,21155,21155,21155, 0,21155,21155, 0, 0, 0, 0, 0, 0, 0, 0, 0,21155,21155,21155, 21155,21155,21155,21155, 0, 0, 0, 0, 0,21155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21155,21155,21155, 21156,21156, 0,21156,21156,21156,21156,21156,21156,21156, 21156,21156, 0,21156,21156, 0, 0, 0, 0, 0, 0, 0, 0, 0,21156,21156,21156,21156,21156,21156, 21156,21156, 0, 0, 0, 0,21156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21156,21156,21156,21170,21170, 0, 21170,21170,21170,21170,21170,21170,21170,21170,21170, 0, 21170,21170, 0, 0, 0, 0, 0, 0, 0, 0, 0,21170,21170,21170,21170,21170,21170,21170, 0, 0, 0, 0, 0,21170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21170,21170,21170,21171,21171, 0,21171,21171,21171, 21171,21171,21171,21171,21171,21171, 0,21171,21171, 0, 0, 0, 0, 0, 0, 0, 0, 0,21171,21171, 21171,21171,21171,21171,21171,21171, 0, 0, 0, 0, 21171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21171,21171, 21171,21185,21185, 0,21185,21185,21185,21185,21185,21185, 21185,21185,21185, 0,21185,21185, 0, 0, 0, 0, 0, 0, 0, 0, 0,21185,21185,21185,21185,21185, 21185,21185, 0, 0, 0, 0, 0,21185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21185,21185,21185,21186,21186, 0,21186,21186,21186,21186,21186,21186,21186,21186,21186, 0,21186,21186, 0, 0, 0, 0, 0, 0, 0, 0, 0,21186,21186,21186,21186,21186,21186,21186,21186, 0, 0, 0, 0,21186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21186,21186,21186,21205,21205, 0,21205,21205, 21205,21205,21205,21205,21205,21205,21205, 0,21205,21205, 0, 0, 0, 0, 0, 0, 0, 0, 0,21205, 21205,21205,21205,21205,21205,21205, 0, 0, 0, 0, 0,21205, 0, 0, 0, 0, 0, 0, 0,21205, 0, 0, 0, 0, 0, 0, 0, 0, 0,21205, 21205,21205,21206,21206,21206,21206,21206,21206,21206,21206, 21206,21206, 0, 0, 0, 0, 0, 0,21206,21206, 21206,21206,21206,21206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21206,21206,21206,21206,21206, 21206,21210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21210,21210,21210,21210,21210,21210,21210,21210, 21210, 0, 0, 0, 0, 0, 0, 0,21210,21210, 21210,21210,21210,21210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21210,21210,21210,21210,21210, 21210,21216,21216,21216,21216,21216,21216,21216,21216,21216, 0, 0, 0, 0, 0, 0, 0,21216,21216,21216, 21216,21216,21216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21216,21216,21216,21216,21216,21216, 21219,21219,21219,21219,21219,21219,21219,21219,21219,21219, 0, 0, 0, 0, 0, 0,21219,21219,21219,21219, 21219,21219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21219,21219,21219,21219,21219,21219,21223, 21223,21223,21223,21223,21223,21223,21223,21223, 0, 0, 0, 0, 0, 0, 0,21223,21223,21223,21223,21223, 21223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21223,21223,21223,21223,21223,21223,21226, 0, 21226,21226,21226,21226,21226,21226,21226,21226,21226,21226, 0, 0, 0, 0, 0, 0,21226,21226,21226,21226, 21226,21226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21226,21226,21226,21226,21226,21226,21233, 21233,21233,21233,21233,21233,21233,21233,21233, 0, 0, 0, 0, 0, 0, 0,21233,21233,21233,21233,21233, 21233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21233,21233,21233,21233,21233,21233,21236,21236, 21236,21236,21236,21236,21236,21236,21236,21236, 0, 0, 0, 0, 0, 0,21236,21236,21236,21236,21236,21236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21236,21236,21236,21236,21236,21236,21240,21240,21240, 21240,21240,21240,21240,21240,21240,21240, 0, 0, 0, 0, 0, 0,21240,21240,21240,21240,21240,21240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21240,21240,21240,21240,21240,21240,21244,21244,21244,21244, 21244,21244,21244,21244,21244, 0, 0, 0, 0, 0, 0, 0,21244,21244,21244,21244,21244,21244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21244, 21244,21244,21244,21244,21244,21247,21247,21247,21247,21247, 21247,21247,21247,21247,21247, 0, 0, 0, 0, 0, 0,21247,21247,21247,21247,21247,21247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21247,21247, 21247,21247,21247,21247,21251,21251,21251,21251,21251,21251, 21251,21251,21251,21251, 0, 0, 0, 0, 0, 0, 21251,21251,21251,21251,21251,21251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21251,21251,21251, 21251,21251,21251,21255,21255,21255,21255,21255,21255,21255, 21255,21255, 0, 0, 0, 0, 0, 0, 0,21255, 21255,21255,21255,21255,21255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21255,21255,21255,21255, 21255,21255,21258,21258,21258,21258,21258,21258,21258,21258, 21258,21258, 0, 0, 0, 0, 0, 0,21258,21258, 21258,21258,21258,21258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21258,21258,21258,21258,21258, 21258,21262,21262,21262,21262,21262,21262,21262,21262,21262, 21262, 0, 0, 0, 0, 0, 0,21262,21262,21262, 21262,21262,21262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21262,21262,21262,21262,21262,21262, 21263,21263,21263,21263,21263,21263,21263,21263,21263,21263, 0, 0, 0, 0, 0, 0,21263,21263,21263,21263, 21263,21263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21263,21263,21263,21263,21263,21263,21265, 21265,21265,21265,21265,21265,21265,21265,21265, 0, 0, 0, 0, 0, 0, 0,21265,21265,21265,21265,21265, 21265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21265,21265,21265,21265,21265,21265,21268,21268, 21268,21268,21268,21268,21268,21268,21268, 0, 0, 0, 0, 0, 0, 0,21268,21268,21268,21268,21268,21268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21268,21268,21268,21268,21268,21268,21269,21269,21269, 21269,21269,21269,21269,21269,21269,21269, 0, 0, 0, 0, 0, 0,21269,21269,21269,21269,21269,21269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21269,21269,21269,21269,21269,21269,21273,21273, 0,21273, 21273,21273,21273,21273,21273,21273,21273,21273, 0,21273, 21273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21273,21273,21273,21273,21273,21273,21273, 0, 0, 0, 0, 0,21273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21273,21273,21273,21274,21274, 0,21274,21274,21274,21274, 21274,21274,21274,21274,21274, 0,21274,21274, 0, 0, 0, 0, 0, 0, 0, 0, 0,21274,21274,21274, 21274,21274,21274,21274,21274, 0, 0, 0, 0,21274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21274,21274,21274, 21278,21278, 0,21278,21278,21278,21278,21278,21278,21278, 21278,21278, 0,21278,21278, 0, 0, 0, 0, 0, 0, 0, 0, 0,21278,21278,21278,21278,21278,21278, 21278, 0, 0, 0, 0, 0,21278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21278,21278,21278,21279,21279, 0, 21279,21279,21279,21279,21279,21279,21279,21279,21279, 0, 21279,21279, 0, 0, 0, 0, 0, 0, 0, 0, 0,21279,21279,21279,21279,21279,21279,21279,21279, 0, 0, 0, 0,21279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21279,21279,21279,21293,21293,21293,21293,21293,21293, 21293,21293,21293,21293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21293, 0,21293,21295,21295, 0,21295, 21295,21295,21295,21295,21295,21295,21295,21295, 0,21295, 21295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21295,21295,21295,21295,21295,21295,21295, 0, 0, 0, 0, 0,21295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21295,21295,21295,21296,21296, 0,21296,21296,21296,21296, 21296,21296,21296,21296,21296, 0,21296,21296, 0, 0, 0, 0, 0, 0, 0, 0, 0,21296,21296,21296, 21296,21296,21296,21296,21296, 0, 0, 0, 0,21296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21296,21296,21296, 21298,21298, 0,21298,21298,21298,21298,21298,21298,21298, 21298,21298, 0,21298,21298, 0, 0, 0, 0, 0, 0, 0, 0, 0,21298,21298,21298,21298,21298,21298, 21298, 0, 0, 0, 0, 0,21298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21298,21298,21298,21299,21299, 0, 21299,21299,21299,21299,21299,21299,21299,21299,21299, 0, 21299,21299, 0, 0, 0, 0, 0, 0, 0, 0, 0,21299,21299,21299,21299,21299,21299,21299,21299, 0, 0, 0, 0,21299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21299,21299,21299,21303,21303, 0,21303,21303,21303, 21303,21303,21303,21303,21303,21303, 0,21303,21303, 0, 0, 0, 0, 0, 0, 0, 0, 0,21303,21303, 21303,21303,21303,21303,21303, 0, 0, 0, 0, 0, 21303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21303,21303, 21303,21304,21304, 0,21304,21304,21304,21304,21304,21304, 21304,21304,21304, 0,21304,21304, 0, 0, 0, 0, 0, 0, 0, 0, 0,21304,21304,21304,21304,21304, 21304,21304,21304, 0, 0, 0, 0,21304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21304,21304,21304,21306,21306, 0,21306,21306,21306,21306,21306,21306,21306,21306,21306, 0,21306,21306, 0, 0, 0, 0, 0, 0, 0, 0, 0,21306,21306,21306,21306,21306,21306,21306, 0, 0, 0, 0, 0,21306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21306,21306,21306,21307,21307, 0,21307,21307, 21307,21307,21307,21307,21307,21307,21307, 0,21307,21307, 0, 0, 0, 0, 0, 0, 0, 0, 0,21307, 21307,21307,21307,21307,21307,21307,21307, 0, 0, 0, 0,21307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21307, 21307,21307,21309,21309, 0,21309,21309,21309,21309,21309, 21309,21309,21309,21309, 0,21309,21309, 0, 0, 0, 0, 0, 0, 0, 0, 0,21309,21309,21309,21309, 21309,21309,21309, 0, 0, 0, 0, 0,21309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21309,21309,21309,21310, 21310, 0,21310,21310,21310,21310,21310,21310,21310,21310, 21310, 0,21310,21310, 0, 0, 0, 0, 0, 0, 0, 0, 0,21310,21310,21310,21310,21310,21310,21310, 21310, 0, 0, 0, 0,21310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21310,21310,21310,21311,21311, 0,21311, 21311,21311,21311,21311,21311,21311,21311,21311, 0,21311, 21311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21311,21311,21311,21311,21311,21311,21311, 0, 0, 0, 0, 0,21311, 0,21311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21311,21311,21311, 0, 0, 0, 0, 0, 0, 0, 0,21311,21314,21314, 0,21314,21314,21314,21314,21314, 21314,21314,21314,21314, 0,21314,21314, 0, 0, 0, 0, 0, 0, 0, 0, 0,21314,21314,21314,21314, 21314,21314,21314, 0, 0, 0, 0, 0,21314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21314,21314,21314,21315, 21315, 0,21315,21315,21315,21315,21315,21315,21315,21315, 21315, 0,21315,21315, 0, 0, 0, 0, 0, 0, 0, 0, 0,21315,21315,21315,21315,21315,21315,21315, 21315, 0, 0, 0, 0,21315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21315,21315,21315,21319,21319, 0,21319, 21319,21319,21319,21319,21319,21319,21319,21319, 0,21319, 21319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21319,21319,21319,21319,21319,21319,21319, 0, 0, 0, 0, 0,21319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21319,21319,21319,21320,21320, 0,21320,21320,21320,21320, 21320,21320,21320,21320,21320, 0,21320,21320, 0, 0, 0, 0, 0, 0, 0, 0, 0,21320,21320,21320, 21320,21320,21320,21320,21320, 0, 0, 0, 0,21320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21320,21320,21320, 21323,21323, 0,21323,21323,21323,21323,21323,21323,21323, 21323,21323, 0,21323,21323, 0, 0, 0, 0, 0, 0, 0, 0, 0,21323,21323,21323,21323,21323,21323, 21323, 0, 0, 0, 0, 0,21323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21323,21323,21323,21324,21324, 0, 21324,21324,21324,21324,21324,21324,21324,21324,21324, 0, 21324,21324, 0, 0, 0, 0, 0, 0, 0, 0, 0,21324,21324,21324,21324,21324,21324,21324,21324, 0, 0, 0, 0,21324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21324,21324,21324,21326,21326, 0,21326,21326,21326, 21326,21326,21326,21326,21326,21326, 0,21326,21326, 0, 0, 0, 0, 0, 0, 0, 0, 0,21326,21326, 21326,21326,21326,21326,21326, 0, 0, 0, 0, 0, 21326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21326,21326, 21326,21327,21327, 0,21327,21327,21327,21327,21327,21327, 21327,21327,21327, 0,21327,21327, 0, 0, 0, 0, 0, 0, 0, 0, 0,21327,21327,21327,21327,21327, 21327,21327,21327, 0, 0, 0, 0,21327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21327,21327,21327,21328,21328, 0,21328,21328,21328,21328,21328,21328,21328,21328,21328, 21328,21328,21328, 0, 0, 0, 0, 0, 0, 0, 0, 0,21328,21328,21328,21328,21328,21328,21328,21328, 0, 0, 0, 0,21328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21328,21328,21328,21328,21328,21329,21329, 0, 21329,21329,21329,21329,21329,21329,21329,21329,21329, 0, 21329,21329, 0, 0, 0, 0, 0, 0, 0, 0, 0,21329,21329,21329,21329,21329,21329,21329, 0, 0, 0, 0, 0,21329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21329,21329,21329,21330,21330, 0,21330,21330,21330, 21330,21330,21330,21330,21330,21330, 0,21330,21330, 0, 0, 0, 0, 0, 0, 0, 0, 0,21330,21330, 21330,21330,21330,21330,21330,21330, 0, 0, 0, 0, 21330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21330,21330, 21330,21333,21333, 0,21333,21333,21333,21333,21333,21333, 21333,21333,21333, 0,21333,21333, 0, 0, 0, 0, 0, 0, 0, 0, 0,21333,21333,21333,21333,21333, 21333,21333, 0, 0, 0, 0, 0,21333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21333,21333,21333,21334,21334, 0,21334,21334,21334,21334,21334,21334,21334,21334,21334, 0,21334,21334, 0, 0, 0, 0, 0, 0, 0, 0, 0,21334,21334,21334,21334,21334,21334,21334,21334, 0, 0, 0, 0,21334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21334,21334,21334,21336,21336, 0,21336,21336, 21336,21336,21336,21336,21336,21336,21336, 0,21336,21336, 0, 0, 0, 0, 0, 0, 0, 0, 0,21336, 21336,21336,21336,21336,21336,21336, 0, 0, 0, 0, 0,21336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21336, 21336,21336,21337,21337, 0,21337,21337,21337,21337,21337, 21337,21337,21337,21337, 0,21337,21337, 0, 0, 0, 0, 0, 0, 0, 0, 0,21337,21337,21337,21337, 21337,21337,21337,21337, 0, 0, 0, 0,21337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21337,21337,21337,21338, 21338, 0,21338,21338,21338,21338,21338,21338,21338,21338, 21338,21338,21338,21338, 0, 0, 0, 0, 0, 0, 0, 0, 0,21338,21338,21338,21338,21338,21338,21338, 21338, 0, 0, 0, 0,21338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21338,21338,21338,21338,21338,21349,21349, 21349,21349,21349,21349,21349,21349,21349,21349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21349, 0, 21349,21354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21354,21354,21354,21354,21354,21354,21354,21354, 21354, 0, 0, 0, 0, 0, 0, 0,21354,21354, 21354,21354,21354,21354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21354,21354,21354,21354,21354, 21354,21357,21357,21357,21357,21357,21357,21357,21357,21357, 0, 0, 0, 0, 0, 0, 0,21357,21357,21357, 21357,21357,21357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21357,21357,21357,21357,21357,21357, 21360, 0,21360,21360,21360,21360,21360,21360,21360,21360, 21360,21360, 0, 0, 0, 0, 0, 0,21360,21360, 21360,21360,21360,21360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21360,21360,21360,21360,21360, 21360,21364,21364,21364,21364,21364,21364,21364,21364,21364, 0, 0, 0, 0, 0, 0, 0,21364,21364,21364, 21364,21364,21364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21364,21364,21364,21364,21364,21364, 21367, 0,21367,21367,21367,21367,21367,21367,21367,21367, 21367,21367, 0, 0, 0, 0, 0, 0,21367,21367, 21367,21367,21367,21367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21367,21367,21367,21367,21367, 21367,21370,21370,21370,21370,21370,21370,21370,21370,21370, 0, 0, 0, 0, 0, 0, 0,21370,21370,21370, 21370,21370,21370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21370,21370,21370,21370,21370,21370, 21373,21373,21373,21373,21373,21373,21373,21373,21373,21373, 0, 0, 0, 0, 0, 0,21373,21373,21373,21373, 21373,21373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21373,21373,21373,21373,21373,21373,21376, 21376,21376,21376,21376,21376,21376,21376,21376, 0, 0, 0, 0, 0, 0, 0,21376,21376,21376,21376,21376, 21376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21376,21376,21376,21376,21376,21376,21379,21379, 21379,21379,21379,21379,21379,21379,21379,21379, 0, 0, 0, 0, 0, 0,21379,21379,21379,21379,21379,21379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21379,21379,21379,21379,21379,21379,21382,21382,21382, 21382,21382,21382,21382,21382,21382, 0, 0, 0, 0, 0, 0, 0,21382,21382,21382,21382,21382,21382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21382,21382,21382,21382,21382,21382,21385,21385,21385,21385, 21385,21385,21385,21385,21385,21385, 0, 0, 0, 0, 0, 0,21385,21385,21385,21385,21385,21385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21385, 21385,21385,21385,21385,21385,21391,21391,21391,21391,21391, 21391,21391,21391,21391, 0, 0, 0, 0, 0, 0, 0,21391,21391,21391,21391,21391,21391, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21391,21391, 21391,21391,21391,21391,21394,21394,21394,21394,21394,21394, 21394,21394,21394,21394, 0, 0, 0, 0, 0, 0, 21394,21394,21394,21394,21394,21394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21394,21394,21394, 21394,21394,21394,21398,21398,21398,21398,21398,21398,21398, 21398,21398,21398, 0, 0, 0, 0, 0, 0,21398, 21398,21398,21398,21398,21398, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21398,21398,21398,21398, 21398,21398,21399,21399, 0,21399,21399,21399,21399,21399, 21399,21399,21399,21399, 0,21399,21399, 0, 0, 0, 0, 0, 0, 0, 0, 0,21399,21399,21399,21399, 21399,21399,21399, 0, 0, 0, 0, 0,21399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21399,21399,21399,21400, 21400, 0,21400,21400,21400,21400,21400,21400,21400,21400, 21400, 0,21400,21400, 0, 0, 0, 0, 0, 0, 0, 0, 0,21400,21400,21400,21400,21400,21400,21400, 21400, 0, 0, 0, 0,21400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21400,21400,21400,21426, 0,21426, 0, 0,21426,21426,21426,21426,21426,21426,21426,21426,21426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21426, 21426, 0,21426,21433,21433, 0,21433,21433,21433,21433, 21433,21433,21433,21433,21433, 0,21433,21433, 0, 0, 0, 0, 0, 0, 0, 0, 0,21433,21433,21433, 21433,21433,21433,21433, 0, 0, 0, 0, 0,21433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21433,21433,21433, 21455, 0,21455, 0, 0,21455,21455,21455,21455,21455, 21455,21455,21455,21455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21455,21455, 0,21455,21457,21457, 0, 21457,21457,21457,21457,21457,21457,21457,21457,21457, 0, 21457,21457, 0, 0, 0, 0, 0, 0, 0, 0, 0,21457,21457,21457,21457,21457,21457,21457, 0, 0, 0, 0, 0,21457, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21457,21457,21457,21458,21458, 0,21458,21458,21458, 21458,21458,21458,21458,21458,21458, 0,21458,21458, 0, 0, 0, 0, 0, 0, 0, 0, 0,21458,21458, 21458,21458,21458,21458,21458,21458, 0, 0, 0, 0, 21458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21458,21458, 21458,21490,21490, 0,21490,21490,21490,21490,21490,21490, 21490, 0,21490,21490,21490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21490,21490,21490,21490,21490, 21490,21490, 0, 0, 0, 0, 0,21490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21490,21490,21490,21490,21491, 21491, 0,21491,21491,21491,21491,21491,21491,21491, 0, 21491,21491,21491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21491,21491,21491,21491,21491,21491,21491, 21491, 0, 0, 0, 0,21491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21491,21491,21491,21491,21506,21506, 0, 21506,21506,21506,21506,21506,21506,21506,21506,21506,21506, 21506,21506,21506,21506,21506,21506,21506,21506,21506,21506, 21506,21506,21506,21506,21506,21506,21506,21506,21506,21506, 21506,21506,21506,21506,21506,21506,21506,21506,21506,21506, 21506,21506,21506,21506,21506,21506,21506,21506,21506,21506, 21506,21506,21506,21506,21506,21506,21506,21506,21506,21506, 21506,21506,21506,21506,21506,21506,21506,21506,21506,21506, 21506,21506,21506,21506,21506,21506,21506,21506,21506,21506, 21520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21520,21520,21520,21520,21520,21520,21520,21520,21520, 0,21520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21520,21520,21522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21522, 21522,21522,21522,21522,21522,21522,21522,21522, 0,21522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21522,21554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21554, 0, 0, 0, 0, 0, 0,21554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21554, 0,21554, 0,21554, 0, 0,21554,21554, 0, 0,21554,21554, 0, 0,21554, 0,21554, 0,21554, 0,21554,21554,21554,21555, 0,21555, 0, 0, 0, 0, 0, 0,21555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21555, 0, 0, 0, 0, 0, 0,21555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21555, 0,21555, 0,21555, 0, 0,21555,21555, 0, 0, 0,21555, 0,21555,21555, 0,21555, 0,21555, 0,21555,21555,21555,21555,21556, 0, 0, 0, 0, 0, 0, 0, 0, 0,21556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21556, 0, 0, 0, 0, 0, 0,21556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21556, 0,21556, 0,21556, 0, 0,21556,21556, 0, 0, 0,21556, 0,21556,21556, 0,21556, 0,21556, 0, 21556,21556,21556,21558, 0,21558, 0, 0, 0, 0, 0, 0,21558, 0, 0, 0,21558,21558,21558,21558, 21558,21558,21558,21558,21558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21558, 0, 0, 0, 0, 0, 0,21558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21558, 0,21558, 0,21558, 0, 0,21558,21558, 0, 0, 0,21558, 0, 0,21558, 0,21558, 0,21558, 0, 21558,21558,21558,21565, 0,21565, 0, 0, 0, 0, 0, 0,21565, 0, 0, 0,21565,21565,21565,21565, 21565,21565,21565,21565,21565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21565, 0, 0, 0, 0, 0, 0,21565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21565, 0,21565, 0,21565, 0, 0,21565,21565, 0, 0, 0,21565, 0, 0,21565, 0,21565, 0,21565, 0, 21565,21565,21565,21566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21566, 0,21566, 0, 0, 0, 0,21566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21566, 0,21566, 0,21566, 0, 0,21566,21566, 0, 0, 0,21566, 0, 0,21566, 0,21566, 0,21566, 0,21566,21566, 21566,21567,21567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21567, 0, 0, 0, 0, 0, 0, 21567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21567, 0,21567, 0,21567, 0, 0,21567,21567, 0, 0, 0,21567, 0, 0, 21567, 0,21567, 0,21567, 0,21567,21567,21567,21568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21568, 0, 0, 0, 0, 0, 0,21568,21568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21568, 0,21568, 0,21568, 0, 0, 21568,21568, 0, 0, 0,21568, 0, 0,21568, 0, 21568, 0,21568, 0,21568,21568,21568,21569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21569, 0, 0, 0, 0, 0, 0,21569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21569, 0,21569, 0,21569, 0, 0,21569,21569, 0, 0, 0,21569, 0,21569,21569, 0,21569, 0, 21569, 0,21569,21569,21569,21570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21570, 0, 0, 0, 0, 0, 0,21570, 0, 0, 0, 0, 0, 0,21570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21570, 0,21570, 0,21570, 0, 0,21570,21570, 0, 0, 0,21570, 0, 0,21570, 0,21570, 0,21570, 0, 21570,21570,21570,21571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21571, 0, 0, 0, 0, 0, 0,21571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21571, 0,21571, 0,21571, 0, 0,21571,21571, 0, 0, 0,21571, 21571, 0,21571, 0,21571, 0,21571, 0,21571,21571, 21571,21572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21572, 0, 0, 0, 0, 0, 0, 21572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21572, 0,21572, 0,21572, 0, 0,21572,21572, 0, 0, 0,21572, 0, 0, 21572, 0,21572, 0,21572, 0,21572,21572,21572,21573, 0, 0, 0, 0, 0, 0, 0, 0,21573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21573, 0, 0, 0, 0, 0, 0,21573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21573, 0,21573, 0,21573, 0, 0, 21573,21573, 0, 0, 0,21573, 0, 0,21573, 0, 21573, 0,21573, 0,21573,21573,21573,21574, 0, 0, 0, 0, 0, 0, 0, 0,21574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21574, 0, 0, 0, 0, 0, 0,21574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21574, 0,21574, 0,21574, 0, 0,21574,21574, 0, 0, 0,21574, 0, 0,21574, 0,21574, 0, 21574, 0,21574,21574,21574,21575, 0,21575, 0, 0, 0, 0, 0, 0,21575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21575, 0, 0, 0, 0, 0, 0,21575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21575, 0,21575, 0,21575, 0, 0,21575,21575, 0, 0, 0,21575, 0, 0,21575, 0,21575, 0, 21575, 0,21575,21575,21575,21580, 0,21580, 0, 0, 0, 0, 0, 0,21580, 0, 0, 0,21580,21580, 21580,21580,21580,21580,21580,21580,21580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21580, 0, 0, 0, 0, 0, 0,21580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21580, 0,21580, 0,21580, 0, 0,21580,21580, 0, 0, 0,21580, 0, 0,21580, 0,21580, 0, 21580, 0,21580,21580,21580,21581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21581, 0,21581, 0, 0, 0, 0,21581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21581, 0,21581, 0,21581, 0, 0,21581,21581, 0, 0, 0,21581, 0, 0,21581, 0,21581, 0,21581, 0, 21581,21581,21581,21582,21582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21582, 0, 0, 0, 0, 0, 0,21582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21582, 0,21582, 0,21582, 0, 0,21582,21582, 0, 0, 0,21582, 0, 0,21582, 0,21582, 0,21582, 0,21582,21582, 21582,21583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21583, 0, 0, 0, 0, 0, 0, 21583,21583, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21583, 0,21583, 0,21583, 0, 0,21583,21583, 0, 0, 0,21583, 0, 0, 21583, 0,21583, 0,21583, 0,21583,21583,21583,21584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21584, 0, 0, 0, 0, 0, 0,21584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21584, 0,21584, 0,21584, 0, 0, 21584,21584, 0, 0, 0,21584, 0,21584,21584, 0, 21584, 0,21584, 0,21584,21584,21584,21585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21585, 0, 0, 0, 0, 0, 0,21585, 0, 0, 0, 0, 0, 0,21585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21585, 0,21585, 0,21585, 0, 0,21585,21585, 0, 0, 0,21585, 0, 0,21585, 0,21585, 0, 21585, 0,21585,21585,21585,21586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21586, 0, 0, 0, 0, 0, 0,21586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21586, 0,21586, 0,21586, 0, 0,21586,21586, 0, 0, 0,21586,21586, 0,21586, 0,21586, 0,21586, 0, 21586,21586,21586,21587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21587, 0, 0, 0, 0, 0, 0,21587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21587, 0,21587, 0,21587, 0, 0,21587,21587, 0, 0, 0,21587, 0, 0,21587, 0,21587, 0,21587, 0,21587,21587, 21587,21588, 0, 0, 0, 0, 0, 0, 0, 0, 21588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21588, 0, 0, 0, 0, 0, 0, 21588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21588, 0,21588, 0,21588, 0, 0,21588,21588, 0, 0, 0,21588, 0, 0, 21588, 0,21588, 0,21588, 0,21588,21588,21588,21589, 0, 0, 0, 0, 0, 0, 0, 0,21589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21589, 0, 0, 0, 0, 0, 0,21589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21589, 0,21589, 0,21589, 0, 0, 21589,21589, 0, 0, 0,21589, 0, 0,21589, 0, 21589, 0,21589, 0,21589,21589,21589,21590, 0,21590, 0, 0, 0, 0, 0, 0,21590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21590, 0, 0, 0, 0, 0, 0,21590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21590, 0,21590, 0,21590, 0, 0, 21590,21590, 0, 0, 0,21590, 0, 0,21590, 0, 21590, 0,21590, 0,21590,21590,21590,21595, 0, 0, 0, 0, 0, 0, 0, 0, 0,21595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21595, 0, 0, 0, 0, 0, 0,21595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21595, 0,21595, 0,21595, 0, 0,21595,21595, 0, 0, 0,21595,21595, 0,21595, 0,21595, 0, 21595, 0,21595,21595,21595,21596, 0, 0, 0, 0, 0, 0, 0, 0, 0,21596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21596, 0, 0, 0, 0, 0, 0,21596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21596, 0,21596, 0,21596, 0, 0,21596,21596, 0, 0, 0,21596,21596, 0,21596, 0,21596, 0,21596, 0, 21596,21596,21596,21597, 0, 0, 0, 0, 0, 0, 0, 0, 0,21597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21597, 0, 0, 0, 0, 0, 0,21597, 0, 0, 0, 0, 0,21597, 0, 0, 0, 0, 0, 0, 0, 0,21597, 0,21597, 0,21597, 0, 0,21597,21597, 0, 0, 0,21597, 0, 0,21597, 0,21597, 0,21597, 0,21597,21597, 21597,21598, 0, 0, 0, 0, 0, 0, 0, 0, 0,21598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21598, 0, 0, 0, 0, 0, 0, 21598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21598, 0,21598, 0,21598, 0, 0,21598,21598, 0, 0, 0,21598, 0,21598, 21598, 0,21598, 0,21598, 0,21598,21598,21598,21613, 0,21613, 0, 0, 0, 0, 0, 0,21613, 0, 0,21613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21613, 0, 0, 0, 0, 0, 0, 21613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21613, 0,21613,21613,21613, 0, 0,21613,21613, 0, 0, 0,21613, 0, 0, 21613, 0,21613, 0,21613, 0,21613,21613,21613,21620, 0,21620, 0, 0, 0, 0, 0, 0,21620, 0, 0,21620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21620, 0, 0, 0, 0, 0, 0, 21620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21620, 0,21620,21620,21620, 0, 0,21620,21620, 0, 0, 0,21620, 0, 0, 21620, 0,21620, 0,21620, 0,21620,21620,21620,21623, 0,21623, 0, 0, 0, 0, 0, 0,21623, 0, 0,21623, 0, 0, 0, 0,21623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21623, 0,21623, 0, 0, 0, 0, 21623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21623, 0,21623, 0,21623, 0, 0,21623,21623, 0, 0, 0,21623, 0, 0, 21623, 0,21623, 0,21623, 0,21623,21623,21623,21627, 0,21627, 0, 0, 0, 0, 0, 0,21627, 0, 21627,21627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21627, 0, 0, 0, 0, 0, 0, 21627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21627, 0,21627,21627,21627, 0, 0,21627,21627, 0, 0, 0,21627, 0, 0, 21627, 0,21627, 0,21627, 0,21627,21627,21627,21635, 0, 0, 0, 0, 0, 0, 0, 0, 0,21635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21635, 0, 0, 0, 0, 0, 0,21635, 0, 0, 0, 0, 0,21635, 0, 0, 0, 0, 0, 0, 0, 0,21635, 0,21635, 0,21635, 0, 0, 21635,21635, 0, 0, 0,21635, 0, 0,21635, 0, 21635, 0,21635, 0,21635,21635,21635,21636, 0, 0, 0, 0, 0, 0, 0, 0, 0,21636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21636, 0, 0, 0, 0, 0, 0,21636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21636, 0,21636, 0,21636, 0, 0,21636,21636, 0, 0, 0,21636,21636, 0,21636, 0,21636, 0, 21636, 0,21636,21636,21636,21650, 0,21650, 0, 0, 0, 0, 0, 0,21650, 0, 0,21650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21650, 0, 0, 0, 0, 0, 0,21650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21650, 0,21650,21650,21650, 0, 0,21650,21650, 0, 0, 0,21650, 0, 0,21650, 0,21650, 0, 21650, 0,21650,21650,21650,21656, 0, 0, 0, 0, 0, 0, 0, 0, 0,21656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21656, 0, 0, 0, 0, 0, 0,21656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21656, 0,21656, 0,21656, 0, 0,21656,21656, 0, 0, 0,21656, 0, 0,21656, 0,21656, 0,21656, 0, 21656,21656,21656,21657, 0, 0, 0, 0, 0, 0, 0, 0, 0,21657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21657, 0, 0, 0, 0, 0, 0,21657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21657, 0,21657, 0,21657, 0, 0,21657,21657, 0, 0, 0,21657, 0,21657,21657, 0,21657, 0,21657, 0,21657,21657, 21657,21659, 0,21659, 0, 0, 0, 0, 0, 0, 21659, 0, 0,21659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21659, 0, 0, 0, 0, 0, 0,21659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21659, 0,21659, 0,21659, 0, 0,21659,21659, 0, 0, 0,21659, 0,21659,21659, 0,21659, 0,21659, 0,21659,21659, 21659,21661, 0,21661, 0, 0, 0, 0, 0, 0, 21661, 0, 0,21661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21661, 0, 0, 0, 0, 0, 0,21661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21661, 0,21661, 0,21661, 0, 0,21661,21661, 0, 0, 0,21661, 0, 0,21661, 0,21661, 0,21661, 0,21661,21661, 21661,21662, 0,21662, 0, 0, 0, 0, 0, 0, 21662, 0, 0,21662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21662, 0, 0, 0, 0, 0, 0,21662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21662, 0,21662, 0,21662, 0, 0,21662,21662, 0, 0, 0,21662, 0, 0,21662, 0,21662, 0,21662, 0,21662,21662, 21662,21663, 0,21663, 0, 0, 0, 0, 0, 0, 21663, 0, 0,21663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21663, 0, 0, 0, 0, 0, 0,21663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21663, 0,21663, 0,21663, 0, 0,21663,21663, 0, 0, 0,21663, 0, 0,21663, 0,21663, 0,21663, 0,21663,21663, 21663,21664, 0,21664, 0, 0, 0, 0, 0, 0, 21664, 0, 0,21664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21664, 0, 0, 0, 0, 0, 0,21664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21664, 0,21664, 0,21664, 0, 0,21664,21664, 0, 0, 0,21664, 21664, 0,21664, 0,21664, 0,21664, 0,21664,21664, 21664,21668, 0,21668, 0, 0, 0, 0, 0, 0, 21668, 0, 0,21668, 0, 0, 0, 0,21668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21668, 0,21668, 0, 0, 0, 0,21668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21668, 0,21668, 0,21668, 0, 0,21668,21668, 0, 0, 0,21668, 0, 0,21668, 0,21668, 0,21668, 0,21668,21668, 21668,21669, 0,21669,21669, 0, 0, 0, 0, 0, 21669, 0, 0,21669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21669, 0, 0, 0, 0, 0, 0,21669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21669, 0,21669, 0,21669, 0, 0,21669,21669, 0, 0, 0,21669, 0, 0,21669, 0,21669, 0,21669, 0,21669,21669, 21669,21670, 0, 0, 0, 0, 0, 0, 0, 0, 0,21670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21670, 0, 0, 0, 0, 0, 0, 21670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21670, 0,21670, 0,21670, 0, 0,21670,21670, 0, 0, 0,21670, 0, 0, 21670, 0,21670, 0,21670, 0,21670,21670,21670,21671, 0, 0, 0, 0, 0, 0, 0, 0, 0,21671, 21671,21671,21671,21671,21671,21671,21671,21671,21671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21671, 0, 0, 0, 0, 0, 0,21671, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21671, 0,21671, 0,21671, 0, 0, 21671,21671, 0, 0, 0,21671, 0, 0,21671, 0, 21671, 0,21671, 0,21671,21671,21671,21672,21672,21672, 21672,21672,21672,21672,21672,21672, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21672, 0, 0, 0, 0, 0, 0, 0, 0,21672, 0, 0, 0, 0, 0, 0, 0,21672, 0, 0,21672,21680,21680,21680,21680,21680,21680,21680, 21680,21680,21680,21680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21680, 0, 0, 0, 0,21680,21686, 0,21686, 0, 0, 0, 0, 0, 0,21686, 0,21686,21686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21686, 0, 0, 0, 0, 0, 0,21686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21686, 0,21686,21686,21686, 0, 0, 21686,21686, 0, 0, 0,21686, 0, 0,21686, 0, 21686, 0,21686, 0,21686,21686,21686,21694, 0,21694, 0, 0, 0, 0, 0, 0,21694, 0, 0,21694, 0, 0, 0, 0,21694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21694, 0,21694, 0, 0, 0, 0,21694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21694, 0,21694, 0,21694, 0, 0, 21694,21694, 0, 0, 0,21694, 0, 0,21694, 0, 21694, 0,21694, 0,21694,21694,21694,21695, 0,21695, 21695, 0, 0, 0, 0, 0,21695, 0, 0,21695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21695, 0, 0, 0, 0, 0, 0,21695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21695, 0,21695, 0,21695, 0, 0, 21695,21695, 0, 0, 0,21695, 0, 0,21695, 0, 21695, 0,21695, 0,21695,21695,21695,21696, 0, 0, 0, 0, 0, 0, 0, 0, 0,21696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21696, 0, 0, 0, 0, 0, 0,21696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21696, 0,21696, 0,21696, 0, 0,21696,21696, 0, 0, 0,21696, 0, 0,21696, 0,21696, 0, 21696, 0,21696,21696,21696,21697, 0, 0, 0, 0, 0, 0, 0, 0, 0,21697,21697,21697,21697,21697, 21697,21697,21697,21697,21697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21697, 0, 0, 0, 0, 0, 0,21697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21697, 0,21697, 0,21697, 0, 0,21697,21697, 0, 0, 0,21697, 0, 0,21697, 0,21697, 0,21697, 0, 21697,21697,21697,21698,21698,21698,21698,21698,21698,21698, 21698,21698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21698, 0, 0, 0, 0, 0, 0, 0, 0,21698, 0, 0, 0, 0, 0, 0, 0,21698, 0, 0,21698,21706, 21706,21706,21706,21706,21706,21706,21706,21706,21706,21706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21706, 0, 0, 0, 0,21706,21712, 0,21712, 0, 0, 0, 0, 0, 0,21712, 0,21712,21712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21712, 0, 0, 0, 0, 0, 0,21712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21712, 0,21712,21712,21712, 0, 0,21712,21712, 0, 0, 0,21712, 0, 0,21712, 0,21712, 0,21712, 0, 21712,21712,21712,21720, 0,21720, 0, 0, 0, 0, 0, 0,21720, 0, 0,21720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21720, 0, 0, 0, 0, 0, 0, 0, 0,21720, 0, 0, 0, 0, 0, 0,21720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21720, 0,21720, 0,21720, 0, 0,21720,21720, 0, 0, 0,21720, 0,21720,21720, 0,21720, 0,21720, 0, 21720,21720,21720,21736,21736, 0,21736,21736,21736,21736, 21736,21736,21736,21736,21736, 0,21736,21736, 0, 0, 0, 0, 0, 0, 0, 0, 0,21736,21736,21736, 21736,21736,21736,21736, 0, 0, 0, 0, 0,21736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21736,21736,21736, 21737,21737, 0,21737,21737,21737,21737,21737,21737,21737, 21737,21737, 0,21737,21737, 0, 0, 0, 0, 0, 0, 0, 0, 0,21737,21737,21737,21737,21737,21737, 21737,21737, 0, 0, 0, 0,21737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21737,21737,21737,21752,21752, 0, 21752,21752,21752,21752,21752,21752,21752,21752,21752, 0, 21752,21752, 0, 0, 0, 0, 0, 0, 0, 0, 0,21752,21752,21752,21752,21752,21752,21752, 0, 0, 0, 0, 0,21752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21752,21752,21752,21756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21756,21756,21756,21756,21756, 21756,21756,21756,21756, 0, 0, 0, 0, 0, 0, 0,21756,21756,21756,21756,21756,21756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21756,21756, 21756,21756,21756,21756,21759,21759,21759,21759,21759,21759, 21759,21759,21759, 0, 0, 0, 0, 0, 0, 0, 21759,21759,21759,21759,21759,21759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21759,21759,21759, 21759,21759,21759,21762, 0,21762,21762,21762,21762,21762, 21762,21762,21762,21762,21762, 0, 0, 0, 0, 0, 0,21762,21762,21762,21762,21762,21762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21762,21762, 21762,21762,21762,21762,21766,21766,21766,21766,21766,21766, 21766,21766,21766, 0, 0, 0, 0, 0, 0, 0, 21766,21766,21766,21766,21766,21766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21766,21766,21766, 21766,21766,21766,21769, 0,21769,21769,21769,21769,21769, 21769,21769,21769,21769,21769, 0, 0, 0, 0, 0, 0,21769,21769,21769,21769,21769,21769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21769,21769, 21769,21769,21769,21769,21772,21772,21772,21772,21772,21772, 21772,21772,21772, 0, 0, 0, 0, 0, 0, 0, 21772,21772,21772,21772,21772,21772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21772,21772,21772, 21772,21772,21772,21775,21775,21775,21775,21775,21775,21775, 21775,21775,21775, 0, 0, 0, 0, 0, 0,21775, 21775,21775,21775,21775,21775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21775,21775,21775,21775, 21775,21775,21778,21778,21778,21778,21778,21778,21778,21778, 21778, 0, 0, 0, 0, 0, 0, 0,21778,21778, 21778,21778,21778,21778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21778,21778,21778,21778,21778, 21778,21781,21781,21781,21781,21781,21781,21781,21781,21781, 21781, 0, 0, 0, 0, 0, 0,21781,21781,21781, 21781,21781,21781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21781,21781,21781,21781,21781,21781, 21784,21784,21784,21784,21784,21784,21784,21784,21784, 0, 0, 0, 0, 0, 0, 0,21784,21784,21784,21784, 21784,21784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21784,21784,21784,21784,21784,21784,21787, 21787,21787,21787,21787,21787,21787,21787,21787,21787, 0, 0, 0, 0, 0, 0,21787,21787,21787,21787,21787, 21787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21787,21787,21787,21787,21787,21787,21793,21793, 21793,21793,21793,21793,21793,21793,21793, 0, 0, 0, 0, 0, 0, 0,21793,21793,21793,21793,21793,21793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21793,21793,21793,21793,21793,21793,21796,21796,21796, 21796,21796,21796,21796,21796,21796,21796, 0, 0, 0, 0, 0, 0,21796,21796,21796,21796,21796,21796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21796,21796,21796,21796,21796,21796,21800,21800,21800,21800, 21800,21800,21800,21800,21800,21800, 0, 0, 0, 0, 0, 0,21800,21800,21800,21800,21800,21800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21800, 21800,21800,21800,21800,21800,21801,21801, 0,21801,21801, 21801,21801,21801,21801,21801,21801,21801, 0,21801,21801, 0, 0, 0, 0, 0, 0, 0, 0, 0,21801, 21801,21801,21801,21801,21801,21801, 0, 0, 0, 0, 0,21801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21801, 21801,21801,21802,21802, 0,21802,21802,21802,21802,21802, 21802,21802,21802,21802, 0,21802,21802, 0, 0, 0, 0, 0, 0, 0, 0, 0,21802,21802,21802,21802, 21802,21802,21802,21802, 0, 0, 0, 0,21802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21802,21802,21802,21806, 21806, 0,21806,21806,21806,21806,21806,21806,21806,21806, 21806,21806,21806,21806, 0, 0, 0, 0, 0, 0, 0, 0, 0,21806,21806,21806,21806,21806,21806,21806, 0, 0, 0, 0, 0,21806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21806,21806,21806,21806,21807,21807, 0, 21807,21807,21807,21807,21807,21807,21807,21807,21807, 0, 21807,21807, 0, 0, 0, 0, 0, 0, 0, 0, 0,21807,21807,21807,21807,21807,21807,21807, 0, 0, 0, 0, 0,21807, 0, 0, 0, 0, 0,21807, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21807,21807,21807,21808,21808, 0,21808,21808,21808, 21808,21808,21808,21808,21808,21808, 0,21808,21808, 0, 0, 0, 0, 0, 0, 0, 0, 0,21808,21808, 21808,21808,21808,21808,21808, 0, 0, 0, 0, 0, 21808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21808,21808, 21808,21809,21809, 0,21809,21809,21809,21809,21809,21809, 21809,21809,21809, 0,21809,21809, 0, 0, 0, 0, 0, 0, 0, 0, 0,21809,21809,21809,21809,21809, 21809,21809,21809, 0, 0, 0, 0,21809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21809,21809,21809,21813,21813, 0,21813,21813,21813,21813,21813,21813,21813,21813,21813, 0,21813,21813, 0, 0, 0, 0, 0, 0, 0, 0, 0,21813,21813,21813,21813,21813,21813,21813, 0, 0, 0, 0, 0,21813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21813,21813,21813,21814,21814, 0,21814,21814, 21814,21814,21814,21814,21814,21814,21814, 0,21814,21814, 0, 0, 0, 0, 0, 0, 0, 0, 0,21814, 21814,21814,21814,21814,21814,21814,21814, 0, 0, 0, 0,21814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21814, 21814,21814,21817,21817, 0,21817,21817,21817,21817,21817, 21817,21817,21817,21817, 0,21817,21817, 0, 0, 0, 0, 0, 0, 0, 0, 0,21817,21817,21817,21817, 21817,21817,21817, 0, 0, 0, 0, 0,21817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21817,21817,21817,21818, 21818, 0,21818,21818,21818,21818,21818,21818,21818,21818, 21818, 0,21818,21818, 0, 0, 0, 0, 0, 0, 0, 0, 0,21818,21818,21818,21818,21818,21818,21818, 21818, 0, 0, 0, 0,21818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21818,21818,21818,21821,21821, 0,21821, 21821,21821,21821,21821,21821,21821,21821,21821, 0,21821, 21821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21821,21821,21821,21821,21821,21821,21821, 0, 0, 0, 0, 0,21821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21821,21821,21821,21822,21822, 0,21822,21822,21822,21822, 21822,21822,21822,21822,21822, 0,21822,21822, 0, 0, 0, 0, 0, 0, 0, 0, 0,21822,21822,21822, 21822,21822,21822,21822,21822, 0, 0, 0, 0,21822, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21822,21822,21822, 21824,21824, 0,21824,21824,21824,21824,21824,21824,21824, 21824,21824, 0,21824,21824, 0, 0, 0, 0, 0, 0, 0, 0, 0,21824,21824,21824,21824,21824,21824, 21824, 0, 0, 0, 0, 0,21824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21824,21824,21824,21825,21825, 0, 21825,21825,21825,21825,21825,21825,21825,21825,21825, 0, 21825,21825, 0, 0, 0, 0, 0, 0, 0, 0, 0,21825,21825,21825,21825,21825,21825,21825,21825, 0, 0, 0, 0,21825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21825,21825,21825,21826,21826, 0,21826,21826,21826, 21826,21826,21826,21826,21826,21826, 0,21826,21826, 0, 0, 0, 0, 0, 0, 0, 0, 0,21826,21826, 21826,21826,21826,21826,21826, 0, 0, 0, 0, 0, 21826,21826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21826,21826, 21826, 0, 0, 0, 0, 0, 0, 0,21826,21827, 21827, 0,21827,21827,21827,21827,21827,21827,21827,21827, 21827, 0,21827,21827, 0,21827,21827,21827,21827,21827, 21827,21827,21827,21827,21827,21827,21827,21827,21827,21827, 0, 0, 0, 0, 0,21827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21827,21827,21827,21828,21828, 0,21828, 21828,21828,21828,21828,21828,21828,21828,21828, 0,21828, 21828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21828,21828,21828,21828,21828,21828,21828, 0, 0, 0, 0, 0,21828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21828,21828,21828,21829,21829, 0,21829,21829,21829,21829, 21829,21829,21829,21829,21829, 0,21829,21829, 0, 0, 0, 0, 0, 0, 0, 0, 0,21829,21829,21829, 21829,21829,21829,21829, 0, 0, 0, 0, 0,21829, 21829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21829,21829,21829, 0, 0, 0, 0, 0, 0, 0,21829,21831,21831, 0,21831,21831,21831,21831,21831,21831,21831,21831,21831, 0,21831,21831, 0, 0, 0, 0, 0, 0, 0, 0, 0,21831,21831,21831,21831,21831,21831,21831, 0, 0, 0, 0, 0,21831, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21831,21831,21831,21832,21832, 0,21832,21832, 21832,21832,21832,21832,21832,21832,21832, 0,21832,21832, 0, 0, 0, 0, 0, 0, 0, 0, 0,21832, 21832,21832,21832,21832,21832,21832,21832, 0, 0, 0, 0,21832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21832, 21832,21832,21836,21836, 0,21836,21836,21836,21836,21836, 21836,21836,21836,21836, 0,21836,21836, 0, 0, 0, 0, 0, 0, 0, 0, 0,21836,21836,21836,21836, 21836,21836,21836, 0, 0, 0, 0, 0,21836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21836,21836,21836,21837, 21837, 0,21837,21837,21837,21837,21837,21837,21837,21837, 21837, 0,21837,21837, 0, 0, 0, 0, 0, 0, 0, 0, 0,21837,21837,21837,21837,21837,21837,21837, 21837, 0, 0, 0, 0,21837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21837,21837,21837,21841,21841, 0,21841, 21841,21841,21841,21841,21841,21841,21841,21841, 0,21841, 21841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21841,21841,21841,21841,21841,21841,21841, 0, 0, 0, 0, 0,21841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21841,21841,21841,21842,21842, 0,21842,21842,21842,21842, 21842,21842,21842,21842,21842, 0,21842,21842, 0, 0, 0, 0, 0, 0, 0, 0, 0,21842,21842,21842, 21842,21842,21842,21842,21842, 0, 0, 0, 0,21842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21842,21842,21842, 21845,21845, 0,21845,21845,21845,21845,21845,21845,21845, 21845,21845, 0,21845,21845, 0, 0, 0, 0, 0, 0, 0, 0, 0,21845,21845,21845,21845,21845,21845, 21845, 0, 0, 0, 0, 0,21845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21845,21845,21845,21846,21846, 0, 21846,21846,21846,21846,21846,21846,21846,21846,21846, 0, 21846,21846, 0, 0, 0, 0, 0, 0, 0, 0, 0,21846,21846,21846,21846,21846,21846,21846,21846, 0, 0, 0, 0,21846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21846,21846,21846,21848,21848, 0,21848,21848,21848, 21848,21848,21848,21848,21848,21848, 0,21848,21848, 0, 0, 0, 0, 0, 0, 0, 0, 0,21848,21848, 21848,21848,21848,21848,21848, 0, 0, 0, 0, 0, 21848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21848, 0, 0, 0, 0, 0, 0,21848,21848, 21848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21848, 21849,21849, 0,21849,21849,21849,21849,21849,21849,21849, 21849,21849, 0,21849,21849, 0, 0, 0, 0, 0, 0, 0, 0, 0,21849,21849,21849,21849,21849,21849, 21849, 0, 0, 0, 0, 0,21849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21849,21849,21849,21850,21850, 0, 21850,21850,21850,21850,21850,21850,21850,21850,21850, 0, 21850,21850, 0, 0, 0, 0, 0, 0, 0, 0, 0,21850,21850,21850,21850,21850,21850,21850,21850, 0, 0, 0, 0,21850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21850,21850,21850,21851,21851, 0,21851,21851,21851, 21851,21851,21851,21851,21851,21851, 0,21851,21851, 0, 0, 0, 0, 0, 0, 0, 0, 0,21851,21851, 21851,21851,21851,21851,21851, 0, 0, 0, 0, 0, 21851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21851,21851, 21851,21852,21852, 0,21852,21852,21852,21852,21852,21852, 21852,21852,21852, 0,21852,21852, 0, 0, 0, 0, 0, 0, 0, 0, 0,21852,21852,21852,21852,21852, 21852,21852,21852, 0, 0, 0, 0,21852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21852,21852,21852,21856,21856, 0,21856,21856,21856,21856,21856,21856,21856,21856,21856, 0,21856,21856, 0, 0, 0, 0, 0, 0, 0, 0, 0,21856,21856,21856,21856,21856,21856,21856, 0, 0, 0, 0, 0,21856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21856,21856,21856,21857,21857, 0,21857,21857, 21857,21857,21857,21857,21857,21857,21857, 0,21857,21857, 0, 0, 0, 0, 0, 0, 0, 0, 0,21857, 21857,21857,21857,21857,21857,21857,21857, 0, 0, 0, 0,21857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21857, 21857,21857,21860,21860, 0,21860,21860,21860,21860,21860, 21860,21860,21860,21860, 0,21860,21860, 0, 0, 0, 0, 0, 0, 0, 0, 0,21860,21860,21860,21860, 21860,21860,21860, 0, 0, 0, 0, 0,21860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21860,21860,21860,21861, 21861, 0,21861,21861,21861,21861,21861,21861,21861,21861, 21861, 0,21861,21861, 0, 0, 0, 0, 0, 0, 0, 0, 0,21861,21861,21861,21861,21861,21861,21861, 21861, 0, 0, 0, 0,21861, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21861,21861,21861,21863,21863, 0,21863, 21863,21863,21863,21863,21863,21863,21863,21863, 0,21863, 21863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21863,21863,21863,21863,21863,21863,21863, 0, 0, 0, 0, 0,21863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21863, 0, 0, 0, 0, 0, 0, 21863,21863,21863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21863,21864,21864, 0,21864,21864,21864,21864,21864, 21864,21864,21864,21864, 0,21864,21864, 0, 0, 0, 0, 0, 0, 0, 0, 0,21864,21864,21864,21864, 21864,21864,21864, 0, 0, 0, 0, 0,21864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21864,21864,21864,21865, 21865, 0,21865,21865,21865,21865,21865,21865,21865,21865, 21865, 0,21865,21865, 0, 0, 0, 0, 0, 0, 0, 0, 0,21865,21865,21865,21865,21865,21865,21865, 21865, 0, 0, 0, 0,21865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21865,21865,21865,21872, 0,21872,21872, 21872,21872,21872,21872,21872,21872,21872,21872, 0, 0, 0, 0, 0, 0,21872,21872,21872,21872,21872,21872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21872,21872,21872,21872,21872,21872,21878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21878,21878, 21878,21878,21878,21878,21878,21878,21878,21878, 0, 0, 0, 0, 0, 0,21878,21878,21878,21878,21878,21878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21878,21878,21878,21878,21878,21878,21882,21882,21882, 21882,21882,21882,21882,21882,21882,21882, 0, 0, 0, 0, 0, 0,21882,21882,21882,21882,21882,21882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21882,21882,21882,21882,21882,21882,21886,21886,21886,21886, 21886,21886,21886,21886,21886,21886, 0, 0, 0, 0, 0, 0,21886,21886,21886,21886,21886,21886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21886, 21886,21886,21886,21886,21886,21890,21890,21890,21890,21890, 21890,21890,21890,21890,21890, 0, 0, 0, 0, 0, 0,21890,21890,21890,21890,21890,21890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21890,21890, 21890,21890,21890,21890,21891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21891,21891,21891,21891,21891, 21891,21891,21891,21891, 0, 0, 0, 0, 0, 0, 0,21891,21891,21891,21891,21891,21891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21891,21891, 21891,21891,21891,21891,21894,21894,21894,21894,21894,21894, 21894,21894,21894,21894, 0, 0, 0, 0, 0, 0, 21894,21894,21894,21894,21894,21894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21894,21894,21894, 21894,21894,21894,21897,21897, 0,21897,21897,21897,21897, 21897,21897,21897,21897,21897, 0,21897,21897, 0, 0, 0, 0, 0, 0, 0, 0, 0,21897,21897,21897, 21897,21897,21897,21897, 0, 0, 0, 0, 0,21897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21897,21897,21897, 21898,21898, 0,21898,21898,21898,21898,21898,21898,21898, 21898,21898, 0,21898,21898, 0, 0, 0, 0, 0, 0, 0, 0, 0,21898,21898,21898,21898,21898,21898, 21898,21898, 0, 0, 0, 0,21898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21898,21898,21898,21935, 0, 0, 0, 0, 0,21935, 0,21935, 0, 0,21935,21935, 21935,21935,21935,21935,21935,21935,21935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21935, 0, 0,21935, 21955,21955, 0,21955,21955,21955,21955,21955,21955,21955, 21955,21955, 0,21955,21955, 0, 0, 0, 0, 0, 0, 0, 0, 0,21955,21955,21955,21955,21955,21955, 21955, 0, 0, 0, 0, 0,21955, 0, 0, 0, 0, 0,21955, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21955,21955,21955,21984,21984, 0, 21984,21984,21984,21984,21984,21984,21984, 0,21984,21984, 21984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21984,21984,21984,21984,21984,21984,21984, 0, 0, 0, 0, 0,21984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21984,21984,21984,21984,21985,21985, 0,21985,21985, 21985,21985,21985,21985,21985, 0,21985,21985,21985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21985, 21985,21985,21985,21985,21985,21985,21985, 0, 0, 0, 0,21985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21985, 21985,21985,21985,21989,21989,21989,21989,21989,21989,21989, 21989,21989, 0, 0, 0, 0, 0, 0, 0,21989, 21989,21989,21989,21989,21989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21989,21989,21989,21989, 21989,21989,21997,21997, 0,21997,21997,21997,21997,21997, 21997,21997,21997,21997, 0,21997,21997, 0, 0, 0, 0, 0, 0, 0, 0, 0,21997,21997,21997,21997, 21997,21997,21997, 0, 0, 0, 0, 0,21997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,21997,21997,21997,21997, 21998,21998, 0,21998,21998,21998,21998,21998,21998,21998, 21998,21998,21998,21998,21998,21998,21998,21998,21998,21998, 21998,21998,21998,21998,21998,21998,21998,21998,21998,21998, 21998,21998,21998,21998,21998,21998,21998,21998,21998,21998, 21998,21998,21998,21998,21998,21998,21998,21998,21998,21998, 21998,21998,21998,21998,21998,21998,21998,21998,21998,21998, 21998,21998,21998,21998,21998,21998,21998,21998,21998,21998, 21998,21998,21998,21998,21998,21998,21998,21998,21998,21998, 21998,21998,21998,22005, 0,22005,22005,22005,22005,22005, 22005,22005,22005,22005,22005, 0, 0, 0, 0, 0, 0,22005,22005,22005,22005,22005,22005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22005,22005, 22005,22005,22005,22005,22021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22021,22021,22021,22021,22021, 22021,22021,22021,22021, 0,22021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22021,22021,22022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22022,22022,22022,22022,22022,22022,22022, 22022,22022, 0,22022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22022, 22052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22052, 0, 0, 0, 0, 0, 0,22052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22052, 0,22052, 0,22052, 0, 0,22052,22052, 0, 0, 0,22052, 0, 0,22052, 0,22052, 0,22052, 0,22052,22052,22052,22053, 0, 22053, 0, 0, 0, 0, 0, 0,22053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22053, 0, 0, 0, 0, 0, 0,22053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22053, 0,22053, 0,22053, 0, 0,22053,22053, 0, 0, 0,22053, 0, 0,22053, 0,22053, 0,22053, 0,22053,22053,22053,22054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22054, 0, 0, 0, 0, 0, 0,22054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22054, 0,22054, 0,22054, 0, 0,22054, 22054, 0, 0, 0,22054, 0, 0,22054, 0,22054, 0,22054, 0,22054,22054,22054,22055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22055, 0, 0, 0, 0, 0, 0,22055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22055, 0,22055, 0,22055, 0, 0,22055,22055, 0, 0, 0,22055,22055,22055,22055, 0,22055, 0,22055, 0,22055,22055,22055,22056, 0,22056, 0, 0, 0, 0, 0, 0,22056, 0, 0, 0,22056,22056,22056, 22056,22056,22056,22056,22056,22056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22056, 0, 0, 0, 0, 0, 0,22056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22056, 0,22056, 0,22056, 0, 0,22056,22056, 0, 0, 0,22056, 0, 0,22056, 0,22056, 0,22056, 0,22056,22056,22056,22062, 0,22062, 0, 0, 0, 0, 0, 0,22062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22062, 0, 0, 0, 0, 0, 0,22062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22062, 0,22062, 0,22062, 0, 0,22062,22062, 0, 0, 0,22062, 0, 0,22062, 0,22062, 0,22062, 0,22062,22062,22062,22063, 0,22063, 0, 0, 0, 0, 0, 0,22063, 0, 0, 0, 0, 0, 0, 0,22063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22063, 0, 0, 0, 0, 0, 0,22063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22063, 0,22063, 0,22063, 0, 0,22063,22063, 0, 0, 0,22063, 0, 0,22063, 0,22063, 0,22063, 0,22063,22063,22063,22064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22064, 0, 0, 0, 0, 0, 0,22064, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22064, 0, 22064, 0,22064, 0, 0,22064,22064, 0, 0, 0, 22064, 0, 0,22064, 0,22064, 0,22064, 0,22064, 22064,22064,22065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22065, 0, 0, 0, 0, 0, 0,22065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22065, 0,22065, 0, 22065, 0, 0,22065,22065, 0, 0, 0,22065, 0, 0,22065, 0,22065, 0,22065, 0,22065,22065,22065, 22066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22066, 0, 0, 0, 0, 0, 0,22066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22066, 0,22066,22066,22066, 0, 0,22066,22066, 0, 0, 0,22066, 0, 0,22066, 0,22066, 0,22066, 0,22066,22066,22066,22067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22067, 0, 0, 0, 0, 0, 0,22067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22067, 0,22067, 0,22067, 0, 0,22067, 22067, 0, 0, 0,22067, 0,22067,22067, 0,22067, 0,22067, 0,22067,22067,22067,22069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22069, 0, 0, 0, 0, 0, 0,22069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22069, 0,22069, 0,22069, 0, 0,22069,22069, 0, 0, 0,22069, 0, 0,22069, 0,22069, 0,22069, 0,22069,22069,22069,22074, 0,22074, 0, 0, 0, 0, 0, 0,22074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22074, 0, 0, 0, 0, 0, 0,22074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22074, 0,22074, 0,22074, 0, 0,22074,22074, 0, 0, 0,22074, 0, 0,22074, 0,22074, 0,22074, 0,22074,22074,22074,22075, 0,22075, 0, 0, 0, 0, 0, 0,22075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22075, 0, 0, 0, 0, 0, 0,22075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22075, 0,22075, 0,22075, 0, 0,22075,22075, 0, 0, 0,22075, 0, 0,22075, 0,22075, 0,22075, 0,22075,22075,22075,22076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22076, 0, 0, 0, 0, 0, 0,22076, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22076, 0, 22076, 0,22076, 0, 0,22076,22076, 0, 0, 0, 22076, 0, 0,22076, 0,22076, 0,22076, 0,22076, 22076,22076,22077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22077, 0, 0, 0, 0, 0, 0,22077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22077, 0,22077, 0, 22077, 0, 0,22077,22077, 0, 0, 0,22077, 0, 0,22077, 0,22077, 0,22077, 0,22077,22077,22077, 22078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22078, 0, 0, 0, 0, 0, 0,22078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22078, 0,22078,22078,22078, 0, 0,22078,22078, 0, 0, 0,22078, 0, 0,22078, 0,22078, 0,22078, 0,22078,22078,22078,22079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22079, 0, 0, 0, 0, 0, 0,22079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22079, 0,22079, 0,22079, 0, 0,22079, 22079, 0, 0, 0,22079, 0,22079,22079, 0,22079, 0,22079, 0,22079,22079,22079,22081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22081, 0, 0, 0, 0, 0, 0,22081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22081, 0,22081, 0,22081, 0, 0,22081,22081, 0, 0, 0,22081, 0, 0,22081, 0,22081, 0,22081, 0,22081,22081,22081,22086, 0, 0, 0, 0, 0, 0, 0, 0, 0,22086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22086, 0, 0, 0, 0, 0, 0,22086, 0, 0, 0, 0, 0, 0,22086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22086, 0, 22086,22086,22086, 0, 0,22086,22086, 0, 0, 0, 22086, 0, 0,22086, 0,22086, 0,22086, 0,22086, 22086,22086,22087, 0, 0, 0, 0, 0, 0, 0, 0, 0,22087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22087, 0, 0, 0, 0, 0, 0,22087, 0, 0,22087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22087, 0,22087,22087, 22087, 0, 0,22087,22087, 0, 0, 0,22087, 0, 0,22087, 0,22087, 0,22087, 0,22087,22087,22087, 22088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22088, 0, 0, 0, 0, 0, 0,22088, 0, 0,22088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22088, 0,22088, 0,22088, 0, 0,22088,22088, 0, 0, 0,22088, 0, 0,22088, 0,22088, 0,22088, 0,22088,22088,22088,22089, 0, 22089, 0, 0, 0, 0, 0, 0,22089, 0, 0, 22089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22089, 0, 0, 0, 0, 0, 0,22089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22089, 0,22089, 0,22089, 0, 0,22089,22089, 0, 0, 0,22089, 0, 0,22089, 0,22089, 0,22089, 0,22089,22089,22089,22090, 0, 0, 0, 0, 0, 0, 0, 0, 0,22090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22090, 0, 0, 0, 0, 0, 0,22090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22090, 0,22090, 0,22090, 0, 0,22090, 22090, 0, 0, 0,22090, 0, 0,22090, 0,22090, 0,22090, 0,22090,22090,22090,22091, 0, 0, 0, 0, 0, 0, 0, 0, 0,22091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22091, 0, 0, 0, 0, 0, 0,22091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22091, 0,22091, 0,22091, 0, 0,22091,22091, 0, 0, 0,22091, 0,22091,22091, 0,22091, 0,22091, 0,22091,22091,22091,22100, 0,22100, 0, 0, 0, 0, 0, 0,22100, 0, 0,22100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22100, 0, 0, 0, 0, 0, 0,22100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22100, 0,22100, 0,22100, 0, 0,22100,22100, 0, 0, 0,22100, 0, 0,22100, 0,22100, 0,22100, 0,22100,22100,22100,22129, 0,22129, 0, 0, 0, 0, 0, 0,22129, 0, 0,22129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22129, 0, 0, 0, 0, 0, 0,22129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22129, 0,22129, 0,22129, 0, 0,22129,22129, 0, 0, 0,22129, 0,22129,22129, 0,22129, 0,22129, 0,22129,22129,22129,22129,22132, 0,22132, 0, 0, 0, 0, 0, 0,22132, 0, 0,22132,22132,22132, 22132,22132,22132,22132,22132,22132,22132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22132, 0, 0, 0, 0, 0, 0,22132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22132, 0,22132, 0,22132, 0, 0,22132,22132, 0, 0, 0,22132, 0, 0,22132, 0,22132, 0, 22132, 0,22132,22132,22132,22142, 0, 0, 0, 0, 0, 0, 0, 0, 0,22142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22142, 0, 0, 0, 0, 0, 0,22142, 0, 0,22142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22142, 0,22142, 0,22142, 0, 0,22142,22142, 0, 0, 0,22142, 0, 0,22142, 0,22142, 0,22142, 0, 22142,22142,22142,22143, 0, 0, 0, 0, 0, 0, 0, 0, 0,22143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22143, 0, 0, 0, 0, 0, 0,22143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22143, 0,22143, 0,22143, 0, 0,22143,22143, 0, 0, 0,22143, 0, 0,22143, 0,22143, 0,22143, 0,22143,22143, 22143,22144, 0, 0, 0, 0, 0, 0, 0, 0, 0,22144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22144, 0, 0, 0, 0, 0, 0, 22144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22144, 0,22144, 0,22144, 0, 0,22144,22144, 0, 0, 0,22144, 0,22144, 22144, 0,22144, 0,22144, 0,22144,22144,22144,22153, 0,22153, 0, 0, 0, 0, 0, 0,22153, 0, 0,22153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22153, 0, 0, 0, 0, 0, 0, 22153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22153, 0,22153, 0,22153, 0, 0,22153,22153, 0, 0, 0,22153, 0, 0, 22153, 0,22153, 0,22153, 0,22153,22153,22153,22155, 0,22155, 0, 0, 0, 0, 0, 0,22155, 0, 0,22155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22155, 0, 0, 0, 0, 0, 0, 22155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22155, 0,22155, 0,22155, 0, 0,22155,22155, 0, 0, 0,22155, 0, 0, 22155, 0,22155, 0,22155, 0,22155,22155,22155,22181, 0, 0, 0, 0, 0, 0, 0, 0, 0,22181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22181, 0, 0, 0, 0, 0, 0,22181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22181, 0,22181, 0,22181, 0, 0, 22181,22181, 0, 0, 0,22181, 0,22181,22181, 0, 22181, 0,22181, 0,22181,22181,22181,22182, 0, 0, 0, 0, 0, 0, 0, 0, 0,22182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22182, 0, 0, 0, 0, 0, 0,22182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22182, 0,22182, 0,22182, 0, 0,22182,22182, 0, 0, 0,22182, 0, 0,22182, 0,22182, 0, 22182,22182,22182,22182,22182,22184, 0,22184, 0, 0, 0, 0, 0, 0,22184, 0, 0,22184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22184, 0, 0, 0, 0, 0, 0,22184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22184, 0,22184, 0,22184, 0, 0,22184,22184, 0, 0, 0,22184, 0, 0,22184, 0,22184, 0, 22184, 0,22184,22184,22184,22187, 0,22187, 0, 0, 0, 0, 0, 0,22187, 0, 0,22187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22187, 0, 0, 0, 0, 0, 0,22187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22187, 0,22187, 0,22187, 0, 0,22187,22187, 0, 0, 0,22187, 0, 0,22187, 0,22187, 0, 22187, 0,22187,22187,22187,22188, 0,22188, 0, 0, 0, 0, 0, 0,22188, 0, 0,22188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22188, 0,22188, 0, 0, 0, 0,22188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22188, 0,22188, 0,22188, 0, 0,22188,22188, 0, 0, 0,22188, 0, 0,22188, 0,22188, 0, 22188, 0,22188,22188,22188,22189, 0, 0, 0, 0, 0, 0, 0, 0, 0,22189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22189, 0, 0, 0, 0, 0, 0,22189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22189, 0,22189, 0,22189, 0, 0,22189,22189, 0, 0, 0,22189, 0, 0,22189, 0,22189, 0,22189, 0, 22189,22189,22189,22205, 0,22205, 0, 0, 0, 0, 0, 0,22205, 0, 0,22205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22205, 0, 0, 0, 0, 0, 0,22205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22205, 0,22205, 0,22205, 0, 0,22205,22205, 0, 0, 0,22205, 0, 0,22205, 0,22205, 0,22205, 0, 22205,22205,22205,22206, 0,22206, 0, 0, 0, 0, 0, 0,22206, 0, 0,22206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22206, 0,22206, 0, 0, 0, 0,22206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22206, 0,22206, 0,22206, 0, 0,22206,22206, 0, 0, 0,22206, 0, 0,22206, 0,22206, 0,22206, 0, 22206,22206,22206,22207, 0, 0, 0, 0, 0, 0, 0, 0, 0,22207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22207, 0, 0, 0, 0, 0, 0,22207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22207, 0,22207, 0,22207, 0, 0,22207,22207, 0, 0, 0,22207, 0, 0,22207, 0,22207, 0,22207, 0,22207,22207, 22207,22223, 0,22223, 0, 0, 0, 0, 0, 0, 22223, 0, 0,22223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22223, 0, 0, 0, 0, 0, 0,22223, 0, 0, 0, 0, 0, 0,22223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22223, 0,22223, 22223,22223, 0, 0,22223,22223, 0, 0, 0,22223, 0, 0,22223, 0,22223, 0,22223, 0,22223,22223, 22223,22226, 0,22226, 0, 0, 0, 0, 0, 0, 22226, 0, 0,22226,22226,22226,22226,22226,22226,22226, 22226,22226,22226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22226, 0, 0, 0, 0, 0, 0,22226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22226, 0,22226, 0,22226, 0, 0,22226,22226, 0, 0, 0,22226, 0, 0,22226, 0,22226, 0,22226, 0,22226,22226, 22226,22227, 0, 0, 0, 0, 0, 0, 0, 0, 0,22227, 0, 0, 0, 0,22227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22227, 0,22227, 0, 0, 0, 0, 22227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22227, 0,22227, 0,22227, 0, 0,22227,22227, 0, 0, 0,22227, 0, 0, 22227, 0,22227, 0,22227, 0,22227,22227,22227,22228, 22228, 0, 0, 0, 0, 0, 0, 0, 0,22228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22228, 0, 0, 0, 0, 0, 0,22228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22228, 0,22228, 0,22228, 0, 0, 22228,22228, 0, 0, 0,22228, 0, 0,22228, 0, 22228, 0,22228, 0,22228,22228,22228,22231, 0, 0, 0, 0, 0, 0, 0, 0,22231,22231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22231, 0, 0, 0, 0, 0, 0,22231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22231, 0,22231,22231,22231, 0, 0,22231,22231, 0, 0, 0,22231, 0, 0,22231, 0,22231, 0, 22231, 0,22231,22231,22231,22239, 0,22239, 0, 0, 0, 0, 0, 0,22239, 0, 0,22239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22239, 0, 0, 0, 0, 0, 0,22239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22239, 0,22239, 0,22239, 0,22239,22239,22239, 0, 0, 0,22239, 0, 0,22239, 0,22239, 0, 22239, 0,22239,22239,22239,22248, 0,22248, 0, 0, 0, 0, 0, 0,22248, 0, 0,22248,22248,22248, 22248,22248,22248,22248,22248,22248,22248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22248, 0, 0, 0, 0, 0, 0,22248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22248, 0,22248, 0,22248, 0, 0,22248,22248, 0, 0, 0,22248, 0, 0,22248, 0,22248, 0, 22248, 0,22248,22248,22248,22249, 0, 0, 0, 0, 0, 0, 0, 0, 0,22249, 0, 0, 0, 0, 22249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22249, 0,22249, 0, 0, 0, 0,22249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22249, 0,22249, 0,22249, 0, 0,22249,22249, 0, 0, 0,22249, 0, 0,22249, 0,22249, 0,22249, 0, 22249,22249,22249,22250,22250, 0, 0, 0, 0, 0, 0, 0, 0,22250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22250, 0, 0, 0, 0, 0, 0,22250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22250, 0,22250, 0,22250, 0, 0,22250,22250, 0, 0, 0,22250, 0, 0,22250, 0,22250, 0,22250, 0,22250,22250, 22250,22253, 0, 0, 0, 0, 0, 0, 0, 0, 22253,22253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22253, 0, 0, 0, 0, 0, 0, 22253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22253, 0,22253,22253,22253, 0, 0,22253,22253, 0, 0, 0,22253, 0, 0, 22253, 0,22253, 0,22253, 0,22253,22253,22253,22261, 0,22261, 0, 0, 0, 0, 0, 0,22261, 0, 0,22261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22261, 0, 0, 0, 0, 0, 0, 22261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22261, 0,22261, 0,22261, 0,22261,22261,22261, 0, 0, 0,22261, 0, 0, 22261, 0,22261, 0,22261, 0,22261,22261,22261,22283, 22283, 0,22283,22283,22283,22283,22283,22283,22283,22283, 22283, 0,22283,22283, 0, 0, 0, 0, 0, 0, 0, 0, 0,22283,22283,22283,22283,22283,22283,22283, 0, 0, 0, 0, 0,22283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22283,22283,22283,22284,22284, 0,22284, 22284,22284,22284,22284,22284,22284,22284,22284, 0,22284, 22284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22284,22284,22284,22284,22284,22284,22284,22284, 0, 0, 0, 0,22284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22284,22284,22284,22294, 0,22294,22294,22294,22294,22294, 22294,22294,22294,22294,22294, 0, 0, 0, 0, 0, 0,22294,22294,22294,22294,22294,22294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22294,22294, 22294,22294,22294,22294,22300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22300,22300,22300,22300,22300, 22300,22300,22300,22300,22300, 0, 0, 0, 0, 0, 0,22300,22300,22300,22300,22300,22300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22300,22300, 22300,22300,22300,22300,22304,22304,22304,22304,22304,22304, 22304,22304,22304,22304, 0, 0, 0, 0, 0, 0, 22304,22304,22304,22304,22304,22304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22304,22304,22304, 22304,22304,22304,22308,22308,22308,22308,22308,22308,22308, 22308,22308,22308, 0, 0, 0, 0, 0, 0,22308, 22308,22308,22308,22308,22308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22308,22308,22308,22308, 22308,22308,22312,22312,22312,22312,22312,22312,22312,22312, 22312,22312, 0, 0, 0, 0, 0, 0,22312,22312, 22312,22312,22312,22312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22312,22312,22312,22312,22312, 22312,22313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22313,22313,22313,22313,22313,22313,22313,22313, 22313, 0, 0, 0, 0, 0, 0, 0,22313,22313, 22313,22313,22313,22313, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22313,22313,22313,22313,22313, 22313,22316,22316,22316,22316,22316,22316,22316,22316,22316, 22316, 0, 0, 0, 0, 0, 0,22316,22316,22316, 22316,22316,22316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22316,22316,22316,22316,22316,22316, 22319,22319, 0,22319,22319,22319,22319,22319,22319,22319, 22319,22319, 0,22319,22319, 0, 0, 0, 0, 0, 0, 0, 0, 0,22319,22319,22319,22319,22319,22319, 22319, 0, 0, 0, 0, 0,22319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22319,22319,22319,22320,22320, 0, 22320,22320,22320,22320,22320,22320,22320,22320,22320, 0, 22320,22320, 0, 0, 0, 0, 0, 0, 0, 0, 0,22320,22320,22320,22320,22320,22320,22320,22320, 0, 0, 0, 0,22320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22320,22320,22320,22324,22324, 0,22324,22324,22324, 22324,22324,22324,22324,22324,22324, 0,22324,22324, 0, 0, 0, 0, 0, 0, 0, 0, 0,22324,22324, 22324,22324,22324,22324,22324, 0, 0, 0, 0, 0, 22324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22324,22324, 22324,22325,22325, 0,22325,22325,22325,22325,22325,22325, 22325,22325,22325, 0,22325,22325, 0, 0, 0, 0, 0, 0, 0, 0, 0,22325,22325,22325,22325,22325, 22325,22325,22325, 0, 0, 0, 0,22325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22325,22325,22325,22326,22326, 0,22326,22326,22326,22326,22326,22326,22326,22326,22326, 0,22326,22326, 0, 0, 0, 0, 0, 0, 0, 0, 0,22326,22326,22326,22326,22326,22326,22326, 0, 0, 0, 0, 0,22326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22326,22326,22326,22327,22327, 0,22327,22327, 22327,22327,22327,22327,22327,22327,22327, 0,22327,22327, 0, 0, 0, 0, 0, 0, 0, 0, 0,22327, 22327,22327,22327,22327,22327,22327, 0, 0, 0, 0, 0,22327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22327, 22327,22327,22328,22328, 0,22328,22328,22328,22328,22328, 22328,22328,22328,22328, 0,22328,22328, 0, 0, 0, 0, 0, 0, 0, 0, 0,22328,22328,22328,22328, 22328,22328,22328,22328, 0, 0, 0, 0,22328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22328,22328,22328,22332, 22332, 0,22332,22332,22332,22332,22332,22332,22332,22332, 22332, 0,22332,22332, 0, 0, 0, 0, 0, 0, 0, 0, 0,22332,22332,22332,22332,22332,22332,22332, 0, 0, 0, 0, 0,22332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22332,22332,22332,22333,22333, 0,22333, 22333,22333,22333,22333,22333,22333,22333,22333, 0,22333, 22333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22333,22333,22333,22333,22333,22333,22333,22333, 0, 0, 0, 0,22333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22333,22333,22333,22337,22337, 0,22337,22337,22337,22337, 22337,22337,22337,22337,22337, 0,22337,22337, 0, 0, 0, 0, 0, 0, 0, 0, 0,22337,22337,22337, 22337,22337,22337,22337, 0, 0, 0, 0, 0,22337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22337,22337,22337, 22338,22338, 0,22338,22338,22338,22338,22338,22338,22338, 22338,22338, 0,22338,22338, 0, 0, 0, 0, 0, 0, 0, 0, 0,22338,22338,22338,22338,22338,22338, 22338,22338, 0, 0, 0, 0,22338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22338,22338,22338,22342,22342, 0, 22342,22342,22342,22342,22342,22342,22342,22342,22342, 0, 22342,22342, 0, 0, 0, 0, 0, 0, 0, 0, 0,22342,22342,22342,22342,22342,22342,22342, 0, 0, 0, 0, 0,22342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22342,22342,22342,22343,22343, 0,22343,22343,22343, 22343,22343,22343,22343,22343,22343, 0,22343,22343, 0, 0, 0, 0, 0, 0, 0, 0, 0,22343,22343, 22343,22343,22343,22343,22343,22343, 0, 0, 0, 0, 22343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22343,22343, 22343,22346,22346, 0,22346,22346,22346,22346,22346,22346, 22346,22346,22346, 0,22346,22346, 0, 0, 0, 0, 0, 0, 0, 0, 0,22346,22346,22346,22346,22346, 22346,22346, 0, 0, 0, 0, 0,22346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22346,22346,22346,22347,22347, 0,22347,22347,22347,22347,22347,22347,22347,22347,22347, 0,22347,22347, 0, 0, 0, 0, 0, 0, 0, 0, 0,22347,22347,22347,22347,22347,22347,22347,22347, 0, 0, 0, 0,22347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22347,22347,22347,22349,22349, 0,22349,22349, 22349,22349,22349,22349,22349,22349,22349, 0,22349,22349, 0, 0, 0, 0, 0, 0, 0, 0, 0,22349, 22349,22349,22349,22349,22349,22349, 0, 0, 0, 0, 0,22349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22349, 22349,22349,22350,22350, 0,22350,22350,22350,22350,22350, 22350,22350,22350,22350, 0,22350,22350, 0, 0, 0, 0, 0, 0, 0, 0, 0,22350,22350,22350,22350, 22350,22350,22350,22350, 0, 0, 0, 0,22350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22350,22350,22350,22351, 22351, 0,22351,22351,22351,22351,22351,22351,22351,22351, 22351, 0,22351,22351, 0, 0, 0, 0, 0, 0, 0, 0, 0,22351,22351,22351,22351,22351,22351,22351, 0, 0, 0, 0, 0,22351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22351, 0, 0, 0,22351,22351,22351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22351,22352,22352, 0,22352,22352,22352,22352,22352,22352,22352,22352,22352, 0,22352,22352, 0, 0, 0, 0, 0, 0, 0, 0, 0,22352,22352,22352,22352,22352,22352,22352, 0, 0, 0, 0, 0,22352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22352,22352,22352,22353,22353, 0,22353,22353, 22353,22353,22353,22353,22353,22353,22353, 0,22353,22353, 22353,22353,22353,22353,22353,22353,22353,22353,22353,22353, 22353,22353,22353,22353,22353,22353, 0, 0, 0, 0, 0,22353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22353, 22353,22353,22355,22355, 0,22355,22355,22355,22355,22355, 22355,22355,22355,22355, 0,22355,22355, 0, 0, 0, 0, 0, 0, 0, 0, 0,22355,22355,22355,22355, 22355,22355,22355, 0, 0, 0, 0, 0,22355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22355,22355,22355,22356, 22356, 0,22356,22356,22356,22356,22356,22356,22356,22356, 22356, 0,22356,22356, 0, 0, 0, 0, 0, 0, 0, 0, 0,22356,22356,22356,22356,22356,22356,22356, 22356, 0, 0, 0, 0,22356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22356,22356,22356,22357,22357, 0,22357, 22357,22357,22357,22357,22357,22357,22357,22357, 0,22357, 22357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22357,22357,22357,22357,22357,22357,22357, 0, 0, 0, 0, 0,22357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22357, 0, 0, 0, 22357,22357,22357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22357,22368,22368, 0,22368,22368, 22368,22368,22368,22368,22368,22368,22368, 0,22368,22368, 0, 0, 0, 0, 0, 0, 0, 0, 0,22368, 22368,22368,22368,22368,22368,22368, 0, 0, 0, 0, 0,22368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22368, 22368,22368,22369,22369, 0,22369,22369,22369,22369,22369, 22369,22369,22369,22369, 0,22369,22369, 0, 0, 0, 0, 0, 0, 0, 0, 0,22369,22369,22369,22369, 22369,22369,22369,22369, 0, 0, 0, 0,22369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22369,22369,22369,22383, 22383, 0,22383,22383,22383,22383,22383,22383,22383,22383, 22383, 0,22383,22383, 0, 0, 0, 0, 0, 0, 0, 0, 0,22383,22383,22383,22383,22383,22383,22383, 0, 0, 0, 0, 0,22383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22383,22383,22383,22384,22384, 0,22384, 22384,22384,22384,22384,22384,22384,22384,22384, 0,22384, 22384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22384,22384,22384,22384,22384,22384,22384,22384, 0, 0, 0, 0,22384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22384,22384,22384,22404, 0,22404,22404,22404,22404,22404, 22404,22404,22404,22404,22404, 0, 0, 0, 0, 0, 0,22404,22404,22404,22404,22404,22404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22404,22404, 22404,22404,22404,22404,22408, 0, 0, 0, 0, 0, 0, 0, 0,22408, 0,22408,22408,22408,22408,22408, 22408,22408,22408,22408,22408, 0, 0, 0, 0, 0, 0,22408,22408,22408,22408,22408,22408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22408,22408, 22408,22408,22408,22408,22451, 0,22451, 0, 0,22451, 22451,22451,22451,22451,22451,22451,22451,22451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22451,22451, 0, 22451,22458,22458, 0,22458,22458,22458,22458,22458,22458, 22458,22458,22458, 0,22458,22458, 0, 0, 0, 0, 0, 0, 0, 0, 0,22458,22458,22458,22458,22458, 22458,22458, 0, 0, 0, 0, 0,22458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22458,22458,22458,22487,22487, 0,22487,22487,22487,22487,22487,22487,22487, 0,22487, 22487,22487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22487,22487,22487,22487,22487,22487,22487, 0, 0, 0, 0, 0,22487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22487,22487,22487,22487,22488,22488, 0,22488, 22488,22488,22488,22488,22488,22488, 0,22488,22488,22488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22488,22488,22488,22488,22488,22488,22488,22488, 0, 0, 0, 0,22488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22488,22488,22488,22488,22492,22492,22492,22492,22492,22492, 22492,22492,22492, 0, 0, 0, 0, 0, 0, 0, 22492,22492,22492,22492,22492,22492, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22492,22492,22492, 22492,22492,22492,22498,22498, 0,22498,22498,22498,22498, 22498,22498,22498,22498,22498,22498,22498,22498,22498,22498, 22498,22498,22498,22498,22498,22498,22498,22498,22498,22498, 22498,22498,22498,22498,22498,22498,22498,22498,22498,22498, 22498,22498,22498,22498,22498,22498,22498,22498,22498,22498, 22498,22498,22498,22498,22498,22498,22498,22498,22498,22498, 22498,22498,22498,22498,22498,22498,22498,22498,22498,22498, 22498,22498,22498,22498,22498,22498,22498,22498,22498,22498, 22498,22498,22498,22498,22498,22498,22499,22499, 0,22499, 22499,22499,22499,22499,22499,22499,22499,22499, 0,22499, 22499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22499,22499,22499,22499,22499,22499,22499,22499, 0, 0, 0, 0,22499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22499,22499,22499,22499,22500,22500, 0,22500,22500,22500, 22500,22500,22500,22500,22500,22500, 0,22500,22500, 0, 0, 0, 0, 0, 0, 0, 0, 0,22500,22500, 22500,22500,22500,22500,22500, 0, 0, 0, 0, 0, 22500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22500,22500, 22500,22500,22502,22502, 0,22502,22502,22502,22502,22502, 22502,22502,22502,22502,22502,22502,22502,22502,22502,22502, 22502,22502,22502,22502,22502,22502,22502,22502,22502,22502, 22502,22502,22502,22502,22502,22502,22502,22502,22502,22502, 22502,22502,22502,22502,22502,22502,22502,22502,22502,22502, 22502,22502,22502,22502,22502,22502,22502,22502,22502,22502, 22502,22502,22502,22502,22502,22502,22502,22502,22502,22502, 22502,22502,22502,22502,22502,22502,22502,22502,22502,22502, 22502,22502,22502,22502,22502,22504,22504,22504,22504,22504, 22504,22504,22504,22504,22504, 0, 0, 0, 0, 0, 0,22504,22504,22504,22504,22504,22504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22504,22504, 22504,22504,22504,22504,22506,22506, 0,22506,22506,22506, 22506,22506,22506,22506,22506,22506, 0,22506,22506, 0, 0, 0, 0, 0, 0, 0, 0, 0,22506,22506, 22506,22506,22506,22506,22506, 0, 0, 0, 0, 0, 22506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22506,22506, 22506,22512,22512,22512,22512,22512,22512,22512,22512,22512, 0, 0, 0, 0, 0, 0, 0,22512,22512,22512, 22512,22512,22512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22512, 0, 0, 0,22512,22512,22512,22512,22512,22512, 22514,22514, 0,22514,22514,22514,22514,22514,22514,22514, 22514,22514, 0,22514,22514, 0, 0, 0, 0, 0, 0, 0, 0, 0,22514,22514,22514,22514,22514,22514, 22514,22514, 0, 0, 0, 0,22514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22514,22514,22514,22514,22528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22528,22528,22528,22528,22528, 22528,22528,22528,22528,22528,22528,22528,22528,22528,22528, 22528,22528,22528,22528,22528,22528,22528,22528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22528,22530,22530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22530,22530, 22530,22530,22530,22530,22530,22530,22530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22530, 0,22530,22530,22530,22530,22530,22530, 0, 0, 0, 0, 0, 0, 0,22530,22531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22531,22531,22531,22531, 22531,22531,22531,22531,22531, 0,22531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22531,22531,22532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22532,22532,22532,22532,22532,22532, 22532,22532,22532, 0,22532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22532,22560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22560, 0, 0, 0, 0, 0, 0, 22560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22560, 0,22560, 0,22560, 0, 0,22560,22560, 0, 0, 0,22560,22560, 0, 22560, 0,22560, 0,22560, 0,22560,22560,22560,22561, 0,22561, 0, 0, 0, 0, 0, 0,22561, 0, 0,22561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22561, 0, 0, 0, 0, 0, 0, 22561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22561, 0,22561, 0,22561, 0, 0,22561,22561, 0, 0, 0,22561, 0,22561, 22561, 0,22561, 0,22561, 0,22561,22561,22561,22562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22562, 0, 0, 0, 0, 0, 0,22562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22562, 0,22562, 0,22562, 0, 0, 22562,22562, 0, 0, 0,22562,22562, 0,22562, 0, 22562, 0,22562, 0,22562,22562,22562,22563, 0,22563, 0, 0, 0, 0, 0, 0,22563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22563, 0, 0, 0, 0, 0, 0,22563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22563, 0,22563, 0,22563, 0, 0, 22563,22563, 0, 0, 0,22563, 0, 0,22563, 0, 22563, 0,22563, 0,22563,22563,22563,22564, 0,22564, 0, 0, 0, 0, 0, 0,22564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22564, 0, 0,22564, 0,22564, 0, 0, 0, 0,22564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22564, 0,22564, 0,22564, 0, 0, 22564,22564, 0, 0, 0,22564, 0, 0,22564, 0, 22564, 0,22564, 0,22564,22564,22564,22568, 0,22568, 0, 0, 0, 0, 0, 0,22568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22568, 0, 0, 0, 0, 0, 0,22568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22568, 0,22568, 0,22568, 0, 0, 22568,22568, 0, 0, 0,22568, 0, 0,22568, 0, 22568, 0,22568, 0,22568,22568,22568,22569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22569, 0, 0, 0, 0, 0, 0,22569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22569, 0,22569, 0,22569, 0, 0,22569,22569, 0, 0, 0,22569, 0, 0,22569, 0,22569, 0, 22569, 0,22569,22569,22569,22570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22570, 0, 0, 0, 0, 0, 0,22570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22570, 0,22570, 0,22570, 0, 0,22570,22570, 0, 0, 0,22570, 0, 0,22570, 0,22570, 0,22570, 0, 22570,22570,22570,22571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22571, 0, 0, 0, 0, 0, 0,22571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22571, 0,22571, 0,22571, 0, 0,22571,22571, 0, 0, 0,22571, 0,22571,22571, 0,22571, 0,22571, 0,22571,22571, 22571,22571,22574, 0,22574, 0, 0, 0, 0, 0, 0,22574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22574, 0, 0,22574, 0,22574, 0, 0, 0, 0,22574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22574, 0, 22574, 0,22574, 0, 0,22574,22574, 0, 0, 0, 22574, 0, 0,22574, 0,22574, 0,22574, 0,22574, 22574,22574,22575, 0,22575, 0, 0, 0, 0, 0, 0,22575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22575, 0, 0, 0, 0, 0, 0,22575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22575, 0, 22575, 0,22575, 0, 0,22575,22575, 0, 0, 0, 22575, 0, 0,22575, 0,22575, 0,22575, 0,22575, 22575,22575,22578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22578, 0, 0, 0, 0, 0, 0,22578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22578, 0,22578, 0, 22578, 0, 0,22578,22578, 0, 0, 0,22578, 0, 0,22578, 0,22578, 0,22578, 0,22578,22578,22578, 22579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22579, 0, 0, 0, 0, 0, 0,22579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22579, 0,22579, 0,22579, 0, 0,22579,22579, 0, 0, 0,22579, 0, 0,22579, 0,22579, 0,22579, 0,22579,22579,22579,22580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22580, 0, 0, 0, 0, 0, 0,22580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22580, 0,22580, 0,22580, 0, 0,22580, 22580, 0, 0, 0,22580, 0,22580,22580, 0,22580, 0,22580, 0,22580,22580,22580,22580,22587, 0, 0, 0, 0, 0, 0, 0, 0, 0,22587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22587, 0, 0, 0, 0, 0, 0,22587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22587,22587, 0,22587, 0,22587, 0, 0,22587,22587, 0, 0, 0,22587, 0, 0,22587, 0,22587, 0, 22587, 0,22587,22587,22587,22588, 0, 0, 0, 0, 0, 0, 0, 0, 0,22588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22588, 0, 0, 0, 0, 0, 0,22588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22588, 0,22588, 0,22588, 0, 0,22588,22588, 0, 0, 0,22588, 0, 0,22588, 0,22588, 0,22588, 0, 22588,22588,22588,22589, 0, 0, 0, 0, 0, 0, 0, 0, 0,22589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22589, 0, 0, 0, 0, 0, 0,22589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22589, 0,22589, 0,22589, 0, 0,22589,22589, 0, 0, 0,22589, 0, 0,22589, 0,22589, 0,22589, 0,22589,22589, 22589,22590, 0,22590, 0, 0, 0, 0, 0, 0, 22590, 0, 0,22590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22590, 0, 0, 0, 0, 0, 0,22590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22590, 0,22590, 0,22590, 0, 0,22590,22590, 0, 0, 0,22590, 0,22590,22590, 0,22590, 0,22590, 0,22590,22590, 22590,22591, 0,22591, 0, 0, 0, 0, 0, 0, 22591, 0, 0,22591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22591, 0, 0, 0, 0, 0, 0,22591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22591, 0,22591, 0,22591, 0, 0,22591,22591, 0, 0, 0,22591, 0, 0,22591, 0,22591, 0,22591, 0,22591,22591, 22591,22591,22592, 0, 0, 0, 0, 0, 0, 0, 0, 0,22592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22592, 0, 0, 0, 0, 0, 0,22592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22592, 0,22592, 0, 22592, 0, 0,22592,22592, 0, 0, 0,22592, 0, 0,22592, 0,22592, 0,22592, 0,22592,22592,22592, 22592,22631, 0, 0, 0, 0, 0, 0, 0, 0, 0,22631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22631, 0, 0, 0, 0, 0, 0, 22631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22631, 0,22631, 0,22631, 0, 0,22631,22631, 0, 0, 0,22631, 0, 0, 22631, 0,22631, 0,22631, 0,22631,22631,22631,22632, 0,22632, 0, 0, 0, 0, 0, 0,22632, 0, 0,22632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22632, 0, 0, 0, 0, 0, 0, 22632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22632, 0,22632, 0,22632, 0, 0,22632,22632, 0, 0, 0,22632, 0, 0, 22632, 0,22632, 0,22632, 0,22632,22632,22632,22633, 0, 0, 0, 0, 0, 0, 0, 0, 0,22633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22633, 0, 0, 0, 0, 0, 0,22633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22633, 0,22633, 0,22633, 0, 0, 22633,22633, 0, 0, 0,22633, 0, 0,22633, 0, 22633, 0,22633, 0,22633,22633,22633,22634, 0, 0, 0, 0, 0, 0, 0, 0, 0,22634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22634, 0, 0, 0, 0, 0, 0,22634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22634, 0,22634, 0,22634, 0, 0,22634,22634, 0, 0, 0,22634,22634,22634,22634, 0,22634, 0, 22634, 0,22634,22634,22634,22635, 0,22635, 0, 0, 0, 0, 0, 0,22635, 0, 0,22635,22635,22635, 22635,22635,22635,22635,22635,22635,22635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22635, 0, 0, 0, 0, 0, 0,22635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22635, 0,22635, 0,22635, 0, 0,22635,22635, 0, 0, 0,22635, 0, 0,22635, 0,22635, 0, 22635, 0,22635,22635,22635,22644, 0, 0, 0, 0, 0, 0, 0, 0, 0,22644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22644, 0, 0, 0, 0, 0, 0,22644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22644, 0,22644, 0,22644, 0, 0,22644,22644, 0, 0, 0,22644, 0, 0,22644, 0,22644, 0,22644, 0, 22644,22644,22644,22645, 0, 0, 0, 0, 0, 0, 0, 0, 0,22645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22645, 0, 0, 0, 0, 0, 0,22645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22645, 0,22645, 0,22645, 0, 0,22645,22645, 0, 0, 0,22645, 0, 0,22645, 0,22645, 0,22645, 0,22645,22645, 22645,22645,22653, 0,22653, 0, 0, 0, 0, 0, 0,22653, 0, 0,22653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22653, 0, 0, 0, 0, 0, 0,22653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22653, 0, 22653, 0,22653, 0, 0,22653,22653, 0, 0, 0, 22653, 0, 0,22653, 0,22653, 0,22653, 0,22653, 22653,22653,22656, 0,22656, 0, 0, 0, 0, 0, 0,22656, 0, 0,22656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22656, 0, 0, 0, 0, 0, 0,22656, 0, 0, 0, 0, 0,22656, 0, 0, 0, 0, 0, 0, 0, 0,22656, 0, 22656, 0,22656, 0, 0,22656,22656, 0, 0, 0, 22656, 0, 0,22656, 0,22656, 0,22656, 0,22656, 22656,22656,22686, 0, 0, 0, 0, 0, 0, 0, 0, 0,22686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22686, 0, 0, 0, 0, 0, 0,22686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22686, 0,22686,22686, 22686, 0, 0,22686,22686, 0, 0, 0,22686, 0, 0,22686, 0,22686,22686,22686, 0,22686,22686,22686, 22687, 0, 0, 0, 0, 0, 0, 0,22687, 0, 22687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22687, 0, 0, 0, 0, 0, 0,22687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22687, 0,22687, 0,22687, 0, 0,22687,22687, 0, 0, 0,22687, 0, 0,22687, 0,22687, 0,22687, 0,22687,22687,22687,22690, 0, 22690, 0, 0, 0, 0, 0, 0,22690, 0, 0, 22690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22690, 0, 0, 0, 0, 0, 0,22690, 0, 0, 0, 0, 0,22690, 0, 0, 0, 0, 0, 0, 0, 0,22690, 0,22690, 0,22690, 0, 0,22690,22690, 0, 0, 0,22690, 0, 0,22690, 0,22690, 0,22690, 0,22690,22690,22690,22691, 0, 0, 0, 0, 0, 0, 0, 0, 0,22691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22691, 0,22691, 0, 0, 0, 0,22691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22691, 0,22691, 0,22691, 0, 0,22691, 22691, 0, 0, 0,22691, 0, 0,22691, 0,22691, 0,22691, 0,22691,22691,22691,22692, 0, 0, 0, 0, 0, 0, 0, 0, 0,22692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22692, 0, 0, 0, 0, 0, 0,22692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22692, 0,22692, 0,22692, 0, 0,22692,22692, 0, 0, 0,22692, 0, 0,22692, 0,22692, 0,22692, 0,22692,22692,22692,22693, 0, 0, 0, 0, 0, 0, 0, 0, 0,22693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22693, 0, 0, 0, 0,22693, 0, 0, 0, 0, 0, 0,22693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22693, 0, 22693, 0,22693, 0, 0,22693,22693, 0, 0, 0, 22693, 0, 0,22693, 0,22693, 0,22693, 0,22693, 22693,22693,22707, 0,22707, 0, 0, 0, 0, 0, 0,22707, 0, 0,22707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22707, 0, 0, 0, 0, 0, 0,22707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22707, 0, 22707, 0,22707, 0,22707,22707,22707, 0, 0, 0, 22707, 0,22707,22707, 0,22707, 0,22707, 0,22707, 22707,22707,22727, 0,22727, 0, 0, 0, 0, 0, 0,22727, 0, 0,22727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22727, 0, 0, 0, 0, 0, 0,22727, 0, 0, 0, 0, 0,22727, 0, 0, 0, 0, 0, 0, 0, 0,22727, 0, 22727, 0,22727, 0, 0,22727,22727, 0, 0, 0, 22727, 0, 0,22727, 0,22727, 0,22727, 0,22727, 22727,22727,22728, 0, 0, 0, 0, 0, 0, 0, 0, 0,22728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22728, 0,22728, 0, 0, 0, 0,22728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22728, 0,22728, 0, 22728, 0, 0,22728,22728, 0, 0, 0,22728, 0, 0,22728, 0,22728, 0,22728, 0,22728,22728,22728, 22729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22729, 0, 0, 0, 0, 0, 0,22729, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22729, 0,22729, 0,22729, 0, 0,22729,22729, 0, 0, 0,22729, 0, 0,22729, 0,22729, 0,22729, 0,22729,22729,22729,22730, 0, 0, 0, 0, 0, 0, 0, 0, 0,22730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22730, 0, 0, 0, 0, 22730, 0, 0, 0, 0, 0, 0,22730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22730, 0,22730, 0,22730, 0, 0,22730, 22730, 0, 0, 0,22730, 0, 0,22730, 0,22730, 0,22730, 0,22730,22730,22730,22744, 0,22744, 0, 0, 0, 0, 0, 0,22744, 0, 0,22744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22744, 0, 0, 0, 0, 0, 0,22744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22744, 0,22744, 0,22744, 0,22744,22744, 22744, 0, 0, 0,22744, 0,22744,22744, 0,22744, 0,22744, 0,22744,22744,22744,22764, 0,22764, 0, 0, 0, 0, 0, 0,22764, 0, 0,22764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22764, 0, 0, 0, 0, 0, 0,22764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22764,22764, 0,22764, 0,22764, 0, 0,22764, 22764, 0, 0, 0,22764, 0, 0,22764, 0,22764, 0,22764, 0,22764,22764,22764,22765, 0,22765, 0, 0, 0, 0, 0, 0,22765, 0, 0,22765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22765, 0, 0, 0, 0, 0, 0,22765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22765, 0,22765, 0,22765, 0, 0,22765, 22765, 0, 0, 0,22765, 0, 0,22765, 0,22765, 0,22765, 0,22765,22765,22765,22767, 0,22767, 0, 0, 0, 0, 0, 0,22767, 0, 0,22767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22767, 0, 0, 0, 0, 0, 0,22767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22767, 0,22767, 0,22767, 0, 0,22767, 22767, 0, 0, 0,22767, 0, 0,22767, 0,22767, 0,22767, 0,22767,22767,22767,22768, 0,22768, 0, 0, 0, 0, 0, 0,22768, 0, 0,22768, 0, 0, 0, 0,22768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22768, 0, 0, 0, 0, 0, 0,22768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22768, 0,22768, 0,22768, 0, 0,22768, 22768, 0, 0, 0,22768, 0, 0,22768, 0,22768, 0,22768, 0,22768,22768,22768,22769, 0, 0, 0, 0, 0, 0, 0, 0, 0,22769, 0, 0, 0, 0,22769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22769, 0, 0, 0, 0, 0, 0,22769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22769, 0,22769, 0,22769, 0, 0,22769,22769, 0, 0, 0,22769, 0, 0,22769, 0,22769, 0,22769, 0,22769,22769,22769,22770, 0, 0, 0, 0, 0, 0, 0, 0, 0,22770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22770, 0, 0, 0, 0, 0, 0,22770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22770, 0, 22770, 0,22770, 0,22770,22770,22770, 0, 0, 0, 22770, 0, 0,22770, 0,22770, 0,22770, 0,22770, 22770,22770,22787, 0,22787, 0, 0, 0, 0, 0, 0,22787, 0, 0,22787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22787, 0, 0, 0, 0, 0, 0,22787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22787, 0, 22787, 0,22787, 0, 0,22787,22787, 0, 0, 0, 22787, 0, 0,22787, 0,22787, 0,22787, 0,22787, 22787,22787,22788, 0,22788, 0, 0, 0, 0, 0, 0,22788, 0, 0,22788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22788, 0, 0, 0, 0, 0, 0,22788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22788, 0, 22788, 0,22788, 0, 0,22788,22788, 0, 0, 0, 22788, 0, 0,22788, 0,22788, 0,22788, 0,22788, 22788,22788,22789, 0, 0, 0, 0, 0, 0, 0, 0, 0,22789, 0, 0, 0, 0,22789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22789, 0, 0, 0, 0, 0, 0,22789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22789, 0,22789, 0, 22789, 0, 0,22789,22789, 0, 0, 0,22789, 0, 0,22789, 0,22789, 0,22789, 0,22789,22789,22789, 22790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22790, 0, 0, 0, 0, 0, 0,22790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22790, 0,22790, 0,22790, 0, 22790,22790,22790, 0, 0, 0,22790, 0, 0,22790, 0,22790, 0,22790, 0,22790,22790,22790,22819,22819, 0,22819,22819,22819,22819,22819,22819,22819,22819,22819, 0,22819,22819, 0, 0, 0, 0, 0, 0, 0, 0, 0,22819,22819,22819,22819,22819,22819,22819, 0, 0, 0, 0, 0,22819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22819,22819,22819,22820,22820, 0,22820,22820, 22820,22820,22820,22820,22820,22820,22820, 0,22820,22820, 0, 0, 0, 0, 0, 0, 0, 0, 0,22820, 22820,22820,22820,22820,22820,22820,22820, 0, 0, 0, 0,22820, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22820, 22820,22820,22824, 0,22824,22824,22824,22824,22824,22824, 22824,22824,22824,22824, 0, 0, 0, 0, 0, 0, 22824,22824,22824,22824,22824,22824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22824,22824,22824, 22824,22824,22824,22828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22828,22828,22828,22828,22828,22828, 22828,22828,22828,22828, 0, 0, 0, 0, 0, 0, 22828,22828,22828,22828,22828,22828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22828,22828,22828, 22828,22828,22828,22829,22829, 0,22829,22829,22829,22829, 22829,22829,22829,22829,22829, 0,22829,22829, 0, 0, 0, 0, 0, 0, 0, 0, 0,22829,22829,22829, 22829,22829,22829,22829, 0, 0, 0, 0, 0,22829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22829,22829,22829, 22830,22830, 0,22830,22830,22830,22830,22830,22830,22830, 22830,22830, 0,22830,22830, 0, 0, 0, 0, 0, 0, 0, 0, 0,22830,22830,22830,22830,22830,22830, 22830,22830, 0, 0, 0, 0,22830, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22830,22830,22830,22832,22832, 0, 22832,22832,22832,22832,22832,22832,22832,22832,22832, 0, 22832,22832, 0, 0, 0, 0, 0, 0, 0, 0, 0,22832,22832,22832,22832,22832,22832,22832, 0, 0, 0, 0, 0,22832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22832,22832,22832,22833,22833, 0,22833,22833,22833, 22833,22833,22833,22833,22833,22833, 0,22833,22833, 0, 0, 0, 0, 0, 0, 0, 0, 0,22833,22833, 22833,22833,22833,22833,22833,22833, 0, 0, 0, 0, 22833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22833,22833, 22833,22837,22837, 0,22837,22837,22837,22837,22837,22837, 22837,22837,22837, 0,22837,22837, 0, 0, 0, 0, 0, 0, 0, 0, 0,22837,22837,22837,22837,22837, 22837,22837, 0, 0, 0, 0, 0,22837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22837,22837,22837,22838,22838, 0,22838,22838,22838,22838,22838,22838,22838,22838,22838, 0,22838,22838, 0, 0, 0, 0, 0, 0, 0, 0, 0,22838,22838,22838,22838,22838,22838,22838,22838, 0, 0, 0, 0,22838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22838,22838,22838,22842,22842, 0,22842,22842, 22842,22842,22842,22842,22842,22842,22842, 0,22842,22842, 0, 0, 0, 0, 0, 0, 0, 0, 0,22842, 22842,22842,22842,22842,22842,22842, 0, 0, 0, 0, 0,22842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22842, 22842,22842,22843,22843, 0,22843,22843,22843,22843,22843, 22843,22843,22843,22843, 0,22843,22843, 0, 0, 0, 0, 0, 0, 0, 0, 0,22843,22843,22843,22843, 22843,22843,22843,22843, 0, 0, 0, 0,22843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22843,22843,22843,22847, 22847, 0,22847,22847,22847,22847,22847,22847,22847,22847, 22847, 0,22847,22847, 0, 0, 0, 0, 0, 0, 0, 0, 0,22847,22847,22847,22847,22847,22847,22847, 0, 0, 0, 0, 0,22847, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22847,22847,22847,22848,22848, 0,22848, 22848,22848,22848,22848,22848,22848,22848,22848, 0,22848, 22848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22848,22848,22848,22848,22848,22848,22848,22848, 0, 0, 0, 0,22848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22848,22848,22848,22851,22851, 0,22851,22851,22851,22851, 22851,22851,22851,22851,22851, 0,22851,22851, 0, 0, 0, 0, 0, 0, 0, 0, 0,22851,22851,22851, 22851,22851,22851,22851, 0, 0, 0, 0, 0,22851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22851,22851,22851, 22852,22852, 0,22852,22852,22852,22852,22852,22852,22852, 22852,22852, 0,22852,22852, 0, 0, 0, 0, 0, 0, 0, 0, 0,22852,22852,22852,22852,22852,22852, 22852,22852, 0, 0, 0, 0,22852, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22852,22852,22852,22854,22854, 0, 22854,22854,22854,22854,22854,22854,22854,22854,22854, 0, 22854,22854, 0, 0, 0, 0, 0, 0, 0, 0, 0,22854,22854,22854,22854,22854,22854,22854, 0, 0, 0, 0, 0,22854, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22854,22854,22854,22855,22855, 0,22855,22855,22855, 22855,22855,22855,22855,22855,22855, 0,22855,22855, 0, 0, 0, 0, 0, 0, 0, 0, 0,22855,22855, 22855,22855,22855,22855,22855,22855, 0, 0, 0, 0, 22855, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22855,22855, 22855,22856,22856, 0,22856,22856,22856,22856,22856,22856, 22856,22856,22856,22856,22856,22856, 0, 0, 0, 0, 0, 0, 0, 0, 0,22856,22856,22856,22856,22856, 22856,22856,22856, 0, 0, 0, 0,22856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22856,22856,22856,22856,22856, 22857,22857, 0,22857,22857,22857,22857,22857,22857,22857, 22857,22857, 0,22857,22857, 0, 0, 0, 0, 0, 0, 0, 0, 0,22857,22857,22857,22857,22857,22857, 22857, 0, 0, 0, 0, 0,22857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22857,22857,22857,22858,22858, 0, 22858,22858,22858,22858,22858,22858,22858,22858,22858, 0, 22858,22858, 0, 0, 0, 0, 0, 0, 0, 0, 0,22858,22858,22858,22858,22858,22858,22858,22858, 0, 0, 0, 0,22858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22858,22858,22858,22861,22861, 0,22861,22861,22861, 22861,22861,22861,22861,22861,22861, 0,22861,22861, 0, 0, 0, 0, 0, 0, 0, 0, 0,22861,22861, 22861,22861,22861,22861,22861, 0, 0, 0, 0, 0, 22861, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22861,22861, 22861,22862,22862, 0,22862,22862,22862,22862,22862,22862, 22862,22862,22862, 0,22862,22862, 0, 0, 0, 0, 0, 0, 0, 0, 0,22862,22862,22862,22862,22862, 22862,22862,22862, 0, 0, 0, 0,22862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22862,22862,22862,22864,22864, 0,22864,22864,22864,22864,22864,22864,22864,22864,22864, 0,22864,22864, 0, 0, 0, 0, 0, 0, 0, 0, 0,22864,22864,22864,22864,22864,22864,22864, 0, 0, 0, 0, 0,22864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22864,22864,22864,22865,22865, 0,22865,22865, 22865,22865,22865,22865,22865,22865,22865, 0,22865,22865, 0, 0, 0, 0, 0, 0, 0, 0, 0,22865, 22865,22865,22865,22865,22865,22865,22865, 0, 0, 0, 0,22865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22865, 22865,22865,22866,22866, 0,22866,22866,22866,22866,22866, 22866,22866,22866,22866,22866,22866,22866, 0, 0, 0, 0, 0, 0, 0, 0, 0,22866,22866,22866,22866, 22866,22866,22866,22866, 0, 0, 0, 0,22866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22866,22866,22866,22866, 22866,22872,22872,22872,22872,22872,22872,22872,22872,22872, 22872,22872,22872, 0, 0, 0, 0, 0, 0,22872, 22872,22872,22872,22872,22872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22872, 0, 0, 0,22872,22872,22872,22872, 22872,22872,22942,22942, 0,22942,22942,22942,22942,22942, 22942,22942, 0,22942,22942,22942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22942,22942,22942,22942, 22942,22942,22942, 0, 0, 0, 0, 0,22942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22942,22942,22942,22942, 22943,22943, 0,22943,22943,22943,22943,22943,22943,22943, 0,22943,22943,22943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22943,22943,22943,22943,22943,22943, 22943,22943, 0, 0, 0, 0,22943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22943,22943,22943,22943,22955,22955, 0,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22955,22955,22955,22955,22955,22955,22955,22955,22955, 22955,22957,22957, 0,22957,22957,22957,22957,22957,22957, 22957,22957,22957, 0,22957,22957, 0, 0, 0, 0, 0, 0, 0, 0, 0,22957,22957,22957,22957,22957, 22957,22957, 0, 0, 0, 0, 0,22957, 0, 0, 22957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22957,22957,22957,22957,22959, 22959, 0,22959,22959,22959,22959,22959,22959,22959,22959, 22959, 0,22959,22959, 0, 0, 0, 0, 0, 0, 0, 0, 0,22959,22959,22959,22959,22959,22959,22959, 0, 0, 0, 0, 0,22959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22959,22959,22959,22959,22963,22963, 0, 22963,22963,22963,22963,22963,22963,22963,22963,22963,22963, 22963,22963,22963,22963,22963,22963,22963,22963,22963,22963, 22963,22963,22963,22963,22963,22963,22963,22963,22963,22963, 22963,22963,22963,22963,22963,22963,22963,22963,22963,22963, 22963,22963,22963,22963,22963,22963,22963,22963,22963,22963, 22963,22963,22963,22963,22963,22963,22963,22963,22963,22963, 22963,22963,22963,22963,22963,22963,22963,22963,22963,22963, 22963,22963,22963,22963,22963,22963,22963,22963,22963,22963, 22966,22966,22966,22966,22966,22966,22966,22966,22966,22966, 22966, 0, 0, 0, 0, 0, 0,22966,22966,22966, 22966,22966,22966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22966, 0, 0, 0,22966,22966,22966,22966,22966,22966, 22968,22968,22968,22968,22968,22968,22968,22968,22968,22968, 0, 0, 0, 0, 0, 0,22968,22968,22968,22968, 22968,22968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22968, 0, 0, 0,22968,22968,22968,22968,22968,22968,22971, 22971, 0,22971,22971,22971,22971,22971,22971,22971,22971, 22971, 0,22971,22971, 0, 0, 0, 0, 0, 0, 0, 0, 0,22971,22971,22971,22971,22971,22971,22971, 22971, 0, 0, 0, 0,22971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22971,22971,22971,22974,22974,22974,22974, 22974,22974,22974,22974,22974,22974, 0, 0, 0, 0, 0, 0,22974,22974,22974,22974,22974,22974, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22974, 22974,22974,22974,22974,22974,22978,22978,22978,22978,22978, 22978,22978,22978,22978,22978, 0, 0, 0, 0, 0, 0,22978,22978,22978,22978,22978,22978, 0, 0, 0, 0, 0,22978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22978,22978, 22978,22978,22978,22978,22994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22994,22994,22994,22994,22994, 22994,22994,22994,22994, 0,22994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,22994, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22994,22994,23021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23021, 0, 0, 0, 0, 0, 0,23021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23021, 0,23021, 0, 23021, 0, 0,23021,23021, 0, 0, 0,23021,23021, 0,23021, 0,23021, 0,23021, 0,23021,23021,23021, 23022, 0,23022, 0, 0, 0, 0, 0, 0,23022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23022, 0, 0, 0, 0, 0, 0,23022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23022, 0,23022, 0, 23022, 0, 0,23022,23022, 0, 0, 0,23022, 0, 0,23022, 0,23022, 0,23022, 0,23022,23022,23022, 23023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23023, 0, 0, 0, 0, 0, 0, 0, 0,23023, 0, 0, 0, 0, 0, 0,23023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23023, 0,23023, 0,23023, 0, 0,23023,23023, 0, 0, 0,23023, 0, 0,23023, 0,23023, 0,23023, 0,23023,23023,23023,23024, 0, 23024, 0, 0, 0, 0, 0, 0,23024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23024, 0, 0, 0, 0, 0, 0,23024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23024, 0,23024, 0,23024, 0, 0,23024,23024, 0, 0,23024,23024, 0, 0,23024, 0,23024, 0,23024, 0,23024,23024,23024,23026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23026, 0, 0, 0, 0, 0, 0,23026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23026, 0,23026, 0,23026, 0, 0,23026, 23026, 0, 0, 0,23026, 0, 0,23026, 0,23026, 0,23026, 0,23026,23026,23026,23027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23027, 0, 0,23027, 0, 23027, 0, 0, 0, 0,23027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23027, 0,23027, 0,23027, 0, 0,23027,23027, 0, 0, 0,23027, 0, 0,23027, 0,23027, 0,23027, 0,23027,23027,23027,23028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23028, 0, 0, 0, 0, 0, 0,23028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23028, 0, 23028, 0,23028, 0, 0,23028,23028, 0, 0, 0, 23028, 0, 0,23028, 0,23028, 0,23028, 0,23028, 23028,23028,23029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23029, 0, 0, 0, 0, 0, 0,23029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23029, 0,23029, 0, 23029, 0, 0,23029,23029, 0, 0, 0,23029, 0, 0,23029, 0,23029, 0,23029, 0,23029,23029,23029, 23030, 0,23030, 0, 0, 0, 0, 0, 0,23030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23030, 0, 0, 0, 0, 0, 0,23030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23030, 0,23030, 0, 23030, 0, 0,23030,23030, 0, 0, 0,23030, 0, 0,23030, 0,23030, 0,23030, 0,23030,23030,23030, 23031, 0,23031, 0, 0, 0, 0, 0, 0,23031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23031, 0, 0, 0, 0, 0, 0,23031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23031, 0,23031, 0, 23031, 0, 0,23031,23031, 0, 0,23031,23031, 0, 0,23031, 0,23031, 0,23031, 0,23031,23031,23031, 23034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23034, 0, 0,23034, 0,23034, 0, 0, 0, 0,23034, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23034, 0,23034, 0,23034, 0, 0,23034,23034, 0, 0, 0,23034, 0, 0,23034, 0,23034, 0,23034, 0,23034,23034,23034,23037, 0, 23037, 0, 0, 0, 0, 0, 0,23037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23037, 0, 0, 0, 0, 0, 0,23037, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23037, 0,23037, 0,23037, 0, 0,23037,23037, 0, 0, 0,23037, 0, 0,23037, 0,23037, 0,23037, 0,23037,23037,23037,23038, 0, 23038, 0, 0, 0, 0, 0, 0,23038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23038, 0, 0, 0, 0, 0, 0,23038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23038, 0,23038, 0,23038, 0, 0,23038,23038, 0, 0,23038,23038, 0, 0,23038, 0,23038, 0,23038, 0,23038,23038,23038,23041, 0, 0, 0, 0, 0, 0, 0, 0, 0,23041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23041, 0, 0, 0, 0, 0, 0,23041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23041, 0,23041, 0,23041, 0, 0,23041, 23041, 0, 0, 0,23041, 0, 0,23041, 0,23041, 0,23041, 0,23041,23041,23041,23042, 0, 0, 0, 0, 0, 0, 0, 0, 0,23042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23042, 0, 0, 0, 0, 0, 0,23042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23042, 0,23042, 0,23042, 0, 0,23042,23042, 0, 0, 0,23042, 0,23042,23042, 0,23042, 0,23042, 0,23042,23042,23042,23043, 0, 0, 0, 0, 0, 0, 0, 0, 0,23043,23043,23043,23043,23043,23043, 23043,23043,23043,23043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23043, 0, 0, 0, 0, 0, 0,23043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23043, 0, 23043, 0,23043, 0, 0,23043,23043, 0, 0, 0, 23043, 0, 0,23043, 0,23043, 0,23043, 0,23043, 23043,23043,23044, 0,23044, 0, 0, 0, 0, 0, 0,23044, 0, 0,23044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23044, 0, 0, 0, 0, 0, 0,23044, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23044, 0, 23044, 0,23044, 0, 0,23044,23044, 0, 0, 0, 23044, 0, 0,23044, 0,23044, 0,23044, 0,23044, 23044,23044,23045, 0,23045, 0, 0, 0, 0, 0, 0,23045, 0, 0,23045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23045, 0, 0, 0, 0, 0, 0,23045, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23045, 0, 23045,23045,23045, 0, 0,23045,23045, 0, 0, 0, 23045, 0, 0,23045, 0,23045, 0,23045, 0,23045, 23045,23045,23046, 0, 0, 0, 0, 0, 0, 0, 0, 0,23046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23046, 0, 0, 0, 0, 0, 0,23046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23046, 0,23046,23046, 23046, 0, 0,23046,23046, 0, 0, 0,23046, 0, 23046,23046, 0,23046, 0,23046, 0,23046,23046,23046, 23081, 0,23081, 0, 0, 0, 0, 0, 0,23081, 0, 0,23081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23081, 0, 0, 0, 0, 0, 0,23081, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23081, 0,23081, 0, 23081, 0, 0,23081,23081, 0, 0, 0,23081, 0, 23081,23081, 0,23081, 0,23081, 0,23081,23081,23081, 23083, 0,23083, 0, 0, 0, 0, 0, 0,23083, 0, 0,23083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23083, 0, 0, 0, 0, 0, 0,23083, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23083, 0,23083, 0, 23083, 0, 0,23083,23083, 0, 0, 0,23083, 0, 0,23083, 0,23083, 0,23083, 0,23083,23083,23083, 23084, 0,23084, 0, 0, 0, 0, 0, 0,23084, 0, 0,23084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23084, 0, 0, 0, 0, 0, 0,23084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23084, 0,23084, 0, 23084, 0, 0,23084,23084, 0, 0, 0,23084,23084, 0,23084, 0,23084, 0,23084, 0,23084,23084,23084, 23091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23091,23091,23091,23091,23091,23091,23091,23091,23091,23091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23091, 0, 0, 0, 0, 0, 0,23091, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23091, 0,23091, 0,23091, 0, 0,23091,23091, 0, 0, 0,23091, 0, 0,23091, 0,23091, 0,23091, 0,23091,23091,23091,23092, 0, 0, 0, 0, 0, 0, 0, 0, 0,23092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23092, 0, 0, 0, 0, 0, 0,23092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23092, 0,23092,23092,23092, 0, 0,23092, 23092, 0, 0, 0,23092, 0,23092,23092, 0,23092, 0,23092, 0,23092,23092,23092,23103, 0,23103, 0, 0, 0, 0, 0, 0,23103, 0, 0,23103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23103, 0, 0, 0, 0, 0, 0,23103, 0, 0, 0, 0, 0,23103, 0, 0, 0, 0, 0, 0, 0, 0,23103, 0,23103, 0,23103, 0, 0,23103, 23103, 0, 0, 0,23103, 0, 0,23103, 0,23103, 0,23103, 0,23103,23103,23103,23104, 0,23104, 0, 0, 0, 0, 0, 0,23104, 0, 0,23104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23104, 0, 0, 0, 0, 0, 0,23104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23104, 0,23104, 0,23104, 0, 0,23104, 23104, 0, 0, 0,23104,23104, 0,23104, 0,23104, 0,23104, 0,23104,23104,23104,23129, 0, 0, 0, 0, 0, 0, 0, 0, 0,23129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23129, 0, 0, 0, 0, 0, 0,23129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23129, 0,23129, 0,23129, 0, 0,23129,23129, 0, 0, 0,23129, 0, 0,23129, 0,23129, 0,23129, 0,23129,23129,23129,23130, 0, 0, 0, 0, 0, 0, 0, 0, 0,23130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23130, 0, 0, 0, 0, 0, 0,23130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23130, 0, 23130,23130,23130, 0, 0,23130,23130, 0, 0, 0, 23130,23130, 0,23130, 0,23130, 0,23130, 0,23130, 23130,23130,23133, 0,23133, 0, 0, 0, 0, 0, 0,23133, 0, 0,23133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23133, 0, 0, 0, 0, 0, 0,23133, 0, 0, 0, 0, 0,23133, 0, 0, 0, 0, 0, 0, 0, 0,23133, 0, 23133, 0,23133, 0, 0,23133,23133, 0, 0, 0, 23133, 0, 0,23133, 0,23133, 0,23133, 0,23133, 23133,23133,23134, 0, 0, 0, 0, 0, 0, 0, 0, 0,23134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23134, 0, 0, 0, 0, 0, 0,23134, 0, 0, 0, 0, 0,23134, 0, 0, 0, 0, 0, 0, 0, 0,23134, 0,23134, 0, 23134, 0, 0,23134,23134, 0, 0, 0,23134, 0, 0,23134, 0,23134, 0,23134, 0,23134,23134,23134, 23135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23135, 0, 0, 0, 0, 0, 0,23135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23135, 0,23135, 0,23135, 0, 23135,23135,23135, 0, 0, 0,23135, 0,23135,23135, 0,23135, 0,23135, 0,23135,23135,23135,23155, 0, 23155, 0, 0, 0, 0, 0, 0,23155, 0, 0, 23155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23155, 0, 0, 0, 0, 0, 0,23155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23155, 0,23155, 0,23155, 0, 0,23155,23155, 0, 0, 0,23155,23155, 0,23155, 0,23155, 0,23155, 0,23155,23155,23155,23174, 0, 23174, 0, 0, 0, 0, 0, 0,23174, 0, 0, 23174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23174, 0, 0, 0, 0, 0, 0,23174, 0, 0, 0, 0, 0,23174, 0, 0, 0, 0, 0, 0, 0, 0,23174, 0,23174, 0,23174, 0, 0,23174,23174, 0, 0, 0,23174, 0, 0,23174, 0,23174, 0,23174, 0,23174,23174,23174,23175, 0, 0, 0, 0, 0, 0, 0, 0, 0,23175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23175, 0, 0, 0, 0, 0, 0,23175, 0, 0, 0, 0, 0,23175, 0, 0, 0, 0, 0, 0, 0, 0,23175, 0,23175, 0,23175, 0, 0,23175, 23175, 0, 0, 0,23175, 0, 0,23175, 0,23175, 0,23175, 0,23175,23175,23175,23176, 0, 0, 0, 0, 0, 0, 0, 0, 0,23176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23176, 0, 0, 0, 0, 0, 0,23176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23176, 0,23176, 0,23176, 0,23176,23176,23176, 0, 0, 0,23176, 0,23176,23176, 0,23176, 0,23176, 0,23176,23176,23176,23196, 0,23196, 0, 0, 0, 0, 0, 0,23196, 0, 0,23196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23196, 0, 0, 0, 0, 0, 0,23196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23196, 0,23196, 0,23196, 0, 0,23196,23196, 0, 0, 0,23196,23196, 0,23196, 0,23196, 0,23196, 0,23196,23196,23196,23215, 0,23215, 0, 0, 0, 0, 0, 0,23215, 0, 0,23215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23215, 0, 0, 0, 0, 0, 0,23215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23215, 0,23215, 0,23215, 0, 0,23215,23215, 0, 0, 0,23215, 0, 0,23215, 0,23215, 0,23215, 0,23215,23215,23215,23216, 0,23216, 0, 0, 0, 0, 0, 0,23216, 0, 0,23216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23216, 0, 0, 0, 0, 0, 0,23216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23216, 0,23216, 0,23216, 0, 0,23216,23216, 0, 0, 0,23216, 0,23216,23216, 0,23216, 0,23216, 0,23216,23216,23216,23218, 0,23218, 0, 0, 0, 0, 0, 0,23218, 0, 0,23218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23218, 0, 0, 0, 0, 0, 0,23218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23218, 0,23218, 0,23218, 0, 0,23218,23218, 0, 0, 0,23218, 0, 0,23218, 0,23218, 0,23218, 0,23218,23218,23218,23219, 0, 0, 0, 0, 0, 0, 0, 0, 0,23219, 0, 0, 0, 0,23219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23219, 0, 0, 0, 0, 0, 0,23219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23219, 0, 23219, 0,23219, 0, 0,23219,23219, 0, 0, 0, 23219, 0, 0,23219, 0,23219, 0,23219, 0,23219, 23219,23219,23220, 0, 0, 0, 0, 0, 0, 0, 0, 0,23220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23220, 0, 0, 0, 0, 0, 0,23220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23220, 0,23220, 0, 23220, 0, 0,23220,23220, 0, 0, 0,23220, 0, 0,23220, 0,23220, 0,23220, 0,23220,23220,23220, 23221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23221, 0, 0, 0, 0, 0, 0,23221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23221, 0,23221, 0,23221, 0, 0,23221,23221, 0, 0, 0,23221, 0, 0,23221, 0,23221, 0,23221, 0,23221,23221,23221,23224, 0, 0, 0, 0, 0, 0, 0, 0, 0,23224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23224, 0, 0, 0, 0, 0, 0,23224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23224, 0,23224, 0,23224, 0, 0,23224, 23224, 0, 0, 0,23224, 0, 0,23224, 0,23224, 0,23224, 0,23224,23224,23224,23225, 0, 0, 0, 0, 0, 0, 0, 0, 0,23225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23225, 0, 0, 0, 0, 0, 0,23225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23225, 0,23225, 0,23225, 0, 0,23225,23225, 0, 0, 0,23225, 0,23225,23225, 0,23225, 0,23225, 0,23225,23225,23225,23225,23228, 0,23228, 0, 0, 0, 0, 0, 0,23228, 0, 0,23228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23228, 0, 0, 0, 0, 0, 0,23228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23228, 0,23228, 0,23228, 0, 0,23228,23228, 0, 0, 0,23228,23228, 0,23228, 0,23228, 0, 23228, 0,23228,23228,23228,23229, 0,23229, 0, 0, 0, 0, 0, 0,23229, 0, 0,23229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23229, 0, 0, 0, 0, 0, 0,23229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23229, 0,23229, 0,23229, 0, 0,23229,23229, 0, 0, 0,23229,23229, 0,23229, 0,23229, 0, 23229, 0,23229,23229,23229,23236, 0, 0, 0, 0, 0, 0, 0, 0, 0,23236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23236, 0, 0, 0, 0, 0, 0,23236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23236, 0,23236, 0,23236, 0, 0,23236,23236, 0, 0, 0,23236, 0, 0,23236, 0,23236, 0,23236, 0, 23236,23236,23236,23237, 0, 0, 0, 0, 0, 0, 0, 0, 0,23237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23237, 0, 0, 0, 0, 0, 0,23237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23237, 0,23237, 0,23237, 0, 0,23237,23237, 0, 0, 0,23237, 0, 0,23237, 0,23237, 0,23237, 0,23237,23237, 23237,23238, 0, 0, 0, 0, 0, 0, 0, 0, 0,23238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23238, 0, 0, 0, 0, 0, 0, 23238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23238, 0,23238, 0,23238, 0, 0,23238,23238, 0, 0, 0,23238, 0, 0, 23238, 0,23238, 0,23238, 0,23238,23238,23238,23241, 0, 0, 0, 0, 0, 0, 0, 0, 0,23241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23241, 0, 0, 0, 0, 0, 0,23241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23241, 0,23241, 0,23241, 0, 0, 23241,23241, 0, 0, 0,23241, 0, 0,23241, 0, 23241, 0,23241, 0,23241,23241,23241,23242, 0, 0, 0, 0, 0, 0, 0, 0, 0,23242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23242, 0, 0, 0, 0, 0, 0,23242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23242, 0,23242, 0,23242, 0, 0,23242,23242, 0, 0, 0,23242, 0,23242,23242, 0,23242, 0, 23242, 0,23242,23242,23242,23242,23264,23264, 0,23264, 23264,23264,23264,23264,23264,23264,23264,23264, 0,23264, 23264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23264,23264,23264,23264,23264,23264,23264, 0, 0, 0, 0, 0,23264, 0, 0, 0, 0, 0,23264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23264,23264,23264,23265,23265, 0,23265,23265,23265,23265, 23265,23265,23265,23265,23265, 0,23265,23265, 0, 0, 0, 0, 0, 0, 0, 0, 0,23265,23265,23265, 23265,23265,23265,23265, 0, 0, 0, 0, 0,23265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23265,23265,23265, 23266,23266, 0,23266,23266,23266,23266,23266,23266,23266, 23266,23266, 0,23266,23266, 0, 0, 0, 0, 0, 0, 0, 0, 0,23266,23266,23266,23266,23266,23266, 23266,23266, 0, 0, 0, 0,23266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23266,23266,23266,23270,23270, 0, 23270,23270,23270,23270,23270,23270,23270,23270,23270, 0, 23270,23270, 0, 0, 0, 0, 0, 0, 0, 0, 0,23270,23270,23270,23270,23270,23270,23270, 0, 0, 0, 0, 0,23270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23270,23270,23270,23271,23271, 0,23271,23271,23271, 23271,23271,23271,23271,23271,23271, 0,23271,23271, 0, 0, 0, 0, 0, 0, 0, 0, 0,23271,23271, 23271,23271,23271,23271,23271,23271, 0, 0, 0, 0, 23271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23271,23271, 23271,23275,23275, 0,23275,23275,23275,23275,23275,23275, 23275,23275,23275, 0,23275,23275, 0, 0, 0, 0, 0, 0, 0, 0, 0,23275,23275,23275,23275,23275, 23275,23275, 0, 0, 0, 0, 0,23275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23275,23275,23275,23276,23276, 0,23276,23276,23276,23276,23276,23276,23276,23276,23276, 0,23276,23276, 0, 0, 0, 0, 0, 0, 0, 0, 0,23276,23276,23276,23276,23276,23276,23276,23276, 0, 0, 0, 0,23276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23276,23276,23276,23280,23280, 0,23280,23280, 23280,23280,23280,23280,23280,23280,23280, 0,23280,23280, 0, 0, 0, 0, 0, 0, 0, 0, 0,23280, 23280,23280,23280,23280,23280,23280, 0, 0, 0, 0, 0,23280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23280, 23280,23280,23281,23281, 0,23281,23281,23281,23281,23281, 23281,23281,23281,23281, 0,23281,23281, 0, 0, 0, 0, 0, 0, 0, 0, 0,23281,23281,23281,23281, 23281,23281,23281,23281, 0, 0, 0, 0,23281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23281,23281,23281,23285, 23285, 0,23285,23285,23285,23285,23285,23285,23285,23285, 23285, 0,23285,23285, 0, 0, 0, 0, 0, 0, 0, 0, 0,23285,23285,23285,23285,23285,23285,23285, 0, 0, 0, 0, 0,23285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23285,23285,23285,23286,23286, 0,23286, 23286,23286,23286,23286,23286,23286,23286,23286, 0,23286, 23286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23286,23286,23286,23286,23286,23286,23286,23286, 0, 0, 0, 0,23286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23286,23286,23286,23289,23289, 0,23289,23289,23289,23289, 23289,23289,23289,23289,23289, 0,23289,23289, 0, 0, 0, 0, 0, 0, 0, 0, 0,23289,23289,23289, 23289,23289,23289,23289, 0, 0, 0, 0, 0,23289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23289,23289,23289, 23290,23290, 0,23290,23290,23290,23290,23290,23290,23290, 23290,23290, 0,23290,23290, 0, 0, 0, 0, 0, 0, 0, 0, 0,23290,23290,23290,23290,23290,23290, 23290,23290, 0, 0, 0, 0,23290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23290,23290,23290,23292,23292, 0, 23292,23292,23292,23292,23292,23292,23292,23292,23292, 0, 23292,23292, 0, 0, 0, 0, 0, 0, 0, 0, 0,23292,23292,23292,23292,23292,23292,23292, 0, 0, 0, 0, 0,23292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23292, 0, 0, 0, 0, 0, 0,23292,23292,23292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23292,23293,23293, 0,23293,23293,23293,23293, 23293,23293,23293,23293,23293, 0,23293,23293, 0, 0, 0, 0, 0, 0, 0, 0, 0,23293,23293,23293, 23293,23293,23293,23293, 0, 0, 0, 0, 0,23293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23293,23293,23293, 23294,23294, 0,23294,23294,23294,23294,23294,23294,23294, 23294,23294, 0,23294,23294, 0, 0, 0, 0, 0, 0, 0, 0, 0,23294,23294,23294,23294,23294,23294, 23294,23294, 0, 0, 0, 0,23294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23294,23294,23294,23295,23295, 0, 23295,23295,23295,23295,23295,23295,23295,23295,23295, 0, 23295,23295, 0, 0, 0, 0, 0, 0, 0, 0, 0,23295,23295,23295,23295,23295,23295,23295, 0, 0, 0, 0, 0,23295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23295,23295,23295,23296,23296, 0,23296,23296,23296, 23296,23296,23296,23296,23296,23296, 0,23296,23296, 0, 0, 0, 0, 0, 0, 0, 0, 0,23296,23296, 23296,23296,23296,23296,23296,23296, 0, 0, 0, 0, 23296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23296,23296, 23296,23300,23300, 0,23300,23300,23300,23300,23300,23300, 23300,23300,23300, 0,23300,23300, 0, 0, 0, 0, 0, 0, 0, 0, 0,23300,23300,23300,23300,23300, 23300,23300, 0, 0, 0, 0, 0,23300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23300,23300,23300,23301,23301, 0,23301,23301,23301,23301,23301,23301,23301,23301,23301, 0,23301,23301, 0, 0, 0, 0, 0, 0, 0, 0, 0,23301,23301,23301,23301,23301,23301,23301,23301, 0, 0, 0, 0,23301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23301,23301,23301,23304,23304, 0,23304,23304, 23304,23304,23304,23304,23304,23304,23304, 0,23304,23304, 0, 0, 0, 0, 0, 0, 0, 0, 0,23304, 23304,23304,23304,23304,23304,23304, 0, 0, 0, 0, 0,23304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23304, 23304,23304,23305,23305, 0,23305,23305,23305,23305,23305, 23305,23305,23305,23305, 0,23305,23305, 0, 0, 0, 0, 0, 0, 0, 0, 0,23305,23305,23305,23305, 23305,23305,23305,23305, 0, 0, 0, 0,23305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23305,23305,23305,23307, 23307, 0,23307,23307,23307,23307,23307,23307,23307,23307, 23307, 0,23307,23307, 0, 0, 0, 0, 0, 0, 0, 0, 0,23307,23307,23307,23307,23307,23307,23307, 0, 0, 0, 0, 0,23307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23307, 0, 0, 0, 0, 0, 0,23307,23307,23307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23307,23308,23308, 0,23308,23308, 23308,23308,23308,23308,23308,23308,23308, 0,23308,23308, 0, 0, 0, 0, 0, 0, 0, 0, 0,23308, 23308,23308,23308,23308,23308,23308, 0, 0, 0, 0, 0,23308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23308, 23308,23308,23309,23309, 0,23309,23309,23309,23309,23309, 23309,23309,23309,23309, 0,23309,23309, 0, 0, 0, 0, 0, 0, 0, 0, 0,23309,23309,23309,23309, 23309,23309,23309,23309, 0, 0, 0, 0,23309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23309,23309,23309,23370, 23370, 0,23370,23370,23370,23370,23370,23370,23370, 0, 23370,23370,23370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23370,23370,23370,23370,23370,23370,23370, 0, 0, 0, 0, 0,23370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23370,23370,23370,23370,23371,23371, 0, 23371,23371,23371,23371,23371,23371,23371, 0,23371,23371, 23371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23371,23371,23371,23371,23371,23371,23371,23371, 0, 0, 0, 0,23371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23371,23371,23371,23371,23375,23375,23375,23375,23375, 23375,23375,23375,23375, 0, 0, 0, 0, 0, 0, 0,23375,23375,23375,23375,23375,23375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23375,23375, 23375,23375,23375,23375,23379,23379, 0,23379,23379,23379, 23379,23379,23379,23379,23379,23379,23379,23379,23379,23379, 23379,23379,23379,23379,23379,23379,23379,23379,23379,23379, 23379,23379,23379,23379,23379,23379,23379,23379,23379,23379, 23379,23379,23379,23379,23379,23379,23379,23379,23379,23379, 23379,23379,23379,23379,23379,23379,23379,23379,23379,23379, 23379,23379,23379,23379,23379,23379,23379,23379,23379,23379, 23379,23379,23379,23379,23379,23379,23379,23379,23379,23379, 23379,23379,23379,23379,23379,23379,23379,23380,23380, 0, 23380,23380,23380,23380,23380,23380,23380,23380,23380, 0, 23380,23380, 0, 0, 0, 0, 0, 0, 0, 0, 0,23380,23380,23380,23380,23380,23380,23380, 0, 0, 0, 0, 0,23380, 0, 0, 0, 0, 0,23380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23380,23380,23380,23380,23382,23382, 0,23382,23382, 23382,23382,23382,23382,23382,23382,23382, 0,23382,23382, 23382,23382,23382,23382,23382,23382,23382,23382,23382,23382, 23382,23382,23382,23382,23382,23382, 0, 0, 0, 0, 0,23382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23382, 23382,23382,23382,23386,23386, 0,23386,23386,23386,23386, 23386,23386,23386,23386,23386, 0,23386,23386, 0, 0, 0, 0, 0, 0, 0, 0, 0,23386,23386,23386, 23386,23386,23386,23386, 0, 0, 0, 0, 0,23386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23386,23386,23386, 23386,23387,23387, 0,23387,23387,23387,23387,23387,23387, 23387,23387,23387, 0,23387,23387, 0, 0, 0, 0, 0, 0, 0, 0, 0,23387,23387,23387,23387,23387, 23387,23387, 0, 0, 0, 0, 0,23387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23387,23387,23387,23387,23390, 23390,23390,23390,23390,23390,23390,23390,23390,23390, 0, 0, 0, 0, 0, 0,23390,23390,23390,23390,23390, 23390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23390,23390,23390,23390,23390,23390,23392,23392, 23392,23392,23392,23392,23392,23392,23392,23392, 0, 0, 0, 0, 0, 0,23392,23392,23392,23392,23392,23392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23392,23392,23392,23392,23392,23392,23395,23395,23395, 23395,23395,23395,23395,23395,23395,23395, 0, 0, 0, 0, 0, 0,23395,23395,23395,23395,23395,23395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23395, 0, 0, 0, 23395,23395,23395,23395,23395,23395,23400,23400, 0,23400, 23400,23400,23400,23400,23400,23400,23400,23400, 0,23400, 23400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23400,23400,23400,23400,23400,23400,23400, 0, 0, 0, 0, 0,23400, 0, 0,23400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23400,23400,23400,23402,23402,23402,23402,23402,23402,23402, 23402,23402,23402, 0, 0, 0, 0, 0, 0,23402, 23402,23402,23402,23402,23402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23402,23402,23402,23402, 23402,23402,23404,23404,23404,23404,23404,23404,23404,23404, 23404, 0, 0, 0, 0, 0, 0, 0,23404,23404, 23404,23404,23404,23404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23404,23404,23404,23404,23404, 23404,23448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23448, 0, 0, 0, 0, 0, 0, 23448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23448, 0,23448, 0,23448, 0, 0,23448,23448, 0, 0, 0,23448, 0, 0, 23448, 0,23448, 0,23448, 0,23448,23448,23448,23449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23449, 0, 0, 0, 0, 0, 0,23449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23449, 0,23449, 0,23449, 0, 0, 23449,23449, 0, 0, 0,23449, 0, 0,23449, 0, 23449, 0,23449, 0,23449,23449,23449,23450, 0,23450, 0, 0, 0, 0, 0, 0,23450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23450, 0, 0, 0, 0, 0, 0,23450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23450, 0,23450, 0,23450, 0, 0, 23450,23450, 0, 0, 0,23450, 0, 0,23450, 0, 23450, 0,23450, 0,23450,23450,23450,23451, 0,23451, 0, 0, 0, 0, 0, 0,23451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23451, 0, 0, 0, 0, 0, 0,23451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23451, 0,23451, 0,23451, 0, 0, 23451,23451, 0, 0, 0,23451,23451,23451,23451, 0, 23451, 0,23451, 0,23451,23451,23451,23452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23452, 0, 0, 0, 0, 0, 0,23452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23452, 0,23452, 0,23452, 0, 0,23452,23452, 0, 0,23452,23452, 0, 0,23452, 0,23452, 0, 23452, 0,23452,23452,23452,23453, 0, 0, 0, 0, 0, 0, 0, 0, 0,23453, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23453, 0, 0, 0, 0, 0, 0,23453, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23453, 0,23453, 0,23453, 0, 0,23453,23453, 0, 0, 0,23453, 0,23453,23453, 0,23453, 0,23453, 0, 23453,23453,23453,23455, 0,23455, 0, 0, 0, 0, 0, 0,23455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23455, 0, 0, 0, 0, 0, 0,23455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23455, 0,23455, 0,23455, 0, 0,23455,23455, 0, 0, 0,23455, 0, 0,23455, 0,23455, 0,23455, 0, 23455,23455,23455,23456, 0,23456, 0, 0, 0, 0, 0, 0,23456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23456, 0, 0, 0, 0, 0, 0,23456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23456, 0,23456, 0,23456, 0, 0,23456,23456, 0, 0, 0,23456, 0, 0,23456, 0,23456, 0,23456, 0, 23456,23456,23456,23458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23458, 0, 0, 0, 0, 0, 0,23458, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23458, 0,23458, 0,23458, 0, 0,23458,23458, 0, 0,23458,23458, 0, 0,23458, 0,23458, 0,23458, 0,23458,23458, 23458,23459, 0, 0, 0, 0, 0, 0, 0, 0, 0,23459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23459, 0, 0, 0, 0, 0, 0, 23459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23459, 0,23459, 0,23459, 0, 0,23459,23459, 0, 0, 0,23459, 0,23459, 23459, 0,23459, 0,23459, 0,23459,23459,23459,23461, 0,23461, 0, 0, 0, 0, 0, 0,23461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23461, 0, 0, 0, 0, 0, 0, 23461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23461, 0,23461, 0,23461, 0, 0,23461,23461, 0, 0, 0,23461, 0, 0, 23461, 0,23461, 0,23461, 0,23461,23461,23461,23462, 0,23462, 0, 0, 0, 0, 0, 0,23462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23462, 0, 0, 0, 0, 0, 0, 23462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23462, 0,23462, 0,23462, 0, 0,23462,23462, 0, 0, 0,23462, 0, 0, 23462, 0,23462, 0,23462, 0,23462,23462,23462,23464, 0, 0, 0, 0, 0, 0, 0, 0, 0,23464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23464, 0, 0, 0, 0, 0, 0,23464, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23464, 0,23464, 0,23464, 0, 0, 23464,23464, 0, 0, 0,23464, 0,23464,23464, 0, 23464, 0,23464, 0,23464,23464,23464,23465, 0, 0, 0, 0, 0, 0, 0, 0, 0,23465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23465, 0, 0, 0, 0, 0, 0,23465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23465, 0,23465, 0,23465, 0, 0,23465,23465, 0, 0, 0,23465, 0, 0,23465, 0,23465, 0, 23465,23465,23465,23465,23465,23466,23466, 0, 0, 0, 0, 0, 0, 0,23466,23466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23466, 0, 0, 0, 0, 0, 0,23466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23466, 0,23466, 0,23466, 0, 0,23466,23466, 0, 0, 0,23466, 0, 0,23466, 0,23466, 0,23466, 0, 23466,23466,23466,23467, 0, 0, 0, 0, 0, 0, 0, 0, 0,23467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23467, 0, 0, 0, 0, 0, 0,23467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23467, 0,23467, 0,23467, 0, 0,23467,23467, 0, 0, 0,23467, 0, 0,23467, 0,23467, 0,23467, 0,23467,23467, 23467,23468, 0, 0, 0, 0, 0, 0, 0, 0, 0,23468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23468, 0, 0, 0, 0, 0, 0,23468, 0, 0, 0, 0, 0, 0, 23468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23468, 0,23468, 0,23468, 0, 0,23468,23468, 0, 0, 0,23468, 0, 0, 23468, 0,23468, 0,23468, 0,23468,23468,23468,23471, 0,23471, 0, 0, 0, 0, 0, 0,23471, 0, 0,23471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23471, 0, 0, 0, 0, 0, 0, 23471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23471, 0,23471,23471,23471, 0, 0,23471,23471, 0, 0, 0,23471, 0, 0, 23471, 0,23471, 0,23471, 0,23471,23471,23471,23472, 0,23472, 0, 0, 0, 0, 0, 0,23472, 0, 0,23472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23472, 0, 0, 0, 0, 0, 0, 23472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23472, 0,23472,23472,23472, 0, 0,23472,23472, 0, 0, 0,23472, 0, 0, 23472, 0,23472, 0,23472, 0,23472,23472,23472,23503, 0,23503, 0, 0, 0, 0, 0, 0,23503, 0, 0,23503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23503, 0, 0, 0, 0, 0, 0, 23503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23503, 0,23503, 0,23503, 0, 0,23503,23503, 0, 0, 0,23503, 0, 0, 23503, 0,23503, 0,23503, 0,23503,23503,23503,23505, 0,23505, 0, 0, 0, 0, 0, 0,23505, 0, 0,23505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23505, 0, 0, 0, 0, 0, 0,23505, 0, 0, 0, 0, 0, 0, 23505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23505, 0,23505,23505,23505, 0, 0,23505,23505, 0, 0, 0,23505, 0, 0, 23505, 0,23505, 0,23505, 0,23505,23505,23505,23511, 23511, 0, 0, 0, 0, 0, 0, 0,23511,23511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23511, 0, 0, 0, 0, 0, 0,23511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23511, 0,23511, 0,23511, 0, 0, 23511,23511, 0, 0, 0,23511, 0, 0,23511, 0, 23511, 0,23511, 0,23511,23511,23511,23512, 0, 0, 0, 0, 0, 0, 0, 0, 0,23512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23512, 0, 0, 0, 0, 0, 0,23512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23512, 0,23512, 0,23512, 0, 0,23512,23512, 0, 0, 0,23512, 0, 0,23512, 0,23512, 0, 23512, 0,23512,23512,23512,23513, 0, 0, 0, 0, 0, 0, 0, 0, 0,23513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23513, 0, 0, 0, 0, 0, 0,23513, 0, 0, 0, 0, 0, 0,23513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23513, 0,23513, 0,23513, 0, 0,23513,23513, 0, 0, 0,23513, 0, 0,23513, 0,23513, 0,23513, 0, 23513,23513,23513,23516, 0,23516, 0, 0, 0, 0, 0, 0,23516, 0, 0,23516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23516, 0, 0, 0, 0, 0, 0,23516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23516, 0,23516,23516,23516, 0, 0,23516,23516, 0, 0, 0,23516, 0, 0,23516, 0,23516, 0,23516, 0, 23516,23516,23516,23517, 0,23517, 0, 0, 0, 0, 0, 0,23517, 0, 0,23517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23517, 0, 0, 0, 0, 0, 0,23517, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23517, 0,23517,23517,23517, 0, 0,23517,23517, 0, 0, 0,23517, 0, 0,23517, 0,23517, 0,23517, 0, 23517,23517,23517,23548, 0, 0, 0, 0, 0, 0, 0, 0, 0,23548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23548, 0, 0, 0, 0, 0, 0, 0, 0,23548, 0, 0, 0, 0, 0, 0,23548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23548, 0,23548, 0,23548, 0, 0,23548,23548, 0, 0, 0,23548, 0,23548,23548, 0,23548, 0,23548, 0,23548,23548, 23548,23549, 0, 0, 0, 0, 0, 0, 0, 0, 0,23549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23549, 0, 0, 0, 0, 0, 0, 23549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23549, 0,23549, 0,23549, 0, 0,23549,23549, 0, 0, 0,23549, 0, 0, 23549, 0,23549, 0,23549, 0,23549,23549,23549,23550, 23550, 0, 0, 0, 0, 0, 0, 0, 0,23550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23550, 0,23550, 0, 0, 0, 0,23550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23550, 0,23550, 0,23550, 0, 0, 23550,23550, 0, 0, 0,23550, 0, 0,23550, 0, 23550, 0,23550, 0,23550,23550,23550,23551, 0,23551, 0, 0, 0, 0, 0, 0,23551, 0, 0,23551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23551, 0, 0, 0, 0, 0, 0,23551, 0, 0,23551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23551, 0,23551, 0,23551, 0, 0, 23551,23551, 0, 0, 0,23551, 0, 0,23551, 0, 23551, 0,23551, 0,23551,23551,23551,23552, 0, 0, 0, 0, 0, 0, 0, 0, 0,23552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23552, 0, 0, 0, 0, 0, 0,23552, 0, 0, 0, 0, 0,23552, 0, 0, 0, 0, 0, 0, 0, 0,23552, 0,23552, 0,23552, 0, 0,23552,23552, 0, 0, 0,23552, 0, 0,23552, 0,23552, 0, 23552, 0,23552,23552,23552,23553, 0, 0, 0, 0, 0, 0, 0, 0, 0,23553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23553, 0, 0, 0, 0, 0, 0,23553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23553, 0,23553, 0,23553, 0, 0,23553,23553, 0, 0, 0,23553,23553, 0,23553, 0,23553, 0,23553, 0, 23553,23553,23553,23566, 0,23566, 0, 0, 0, 0, 0, 0,23566, 0, 0,23566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23566, 0, 0, 0, 0, 0, 0,23566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23566, 0,23566,23566,23566, 0, 0,23566,23566, 0, 0, 0,23566, 0, 0,23566, 0,23566, 0,23566, 0, 23566,23566,23566,23591, 0,23591, 0, 0, 0, 0, 0, 0,23591, 0, 0,23591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23591, 0, 0, 0, 0, 0, 0,23591, 0, 0,23591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23591, 0,23591, 0,23591, 0, 0,23591,23591, 0, 0, 0,23591, 0, 0,23591, 0,23591, 0,23591, 0, 23591,23591,23591,23592, 0, 0, 0, 0, 0, 0, 0, 0, 0,23592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23592, 0, 0, 0, 0, 0, 0,23592, 0, 0, 0, 0, 0,23592, 0, 0, 0, 0, 0, 0, 0, 0,23592, 0,23592, 0,23592, 0, 0,23592,23592, 0, 0, 0,23592, 0, 0,23592, 0,23592, 0,23592, 0,23592,23592, 23592,23593, 0, 0, 0, 0, 0, 0, 0, 0, 0,23593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23593, 0, 0, 0, 0, 0, 0, 23593, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23593, 0,23593, 0,23593, 0, 0,23593,23593, 0, 0, 0,23593,23593, 0, 23593, 0,23593, 0,23593, 0,23593,23593,23593,23606, 0,23606, 0, 0, 0, 0, 0, 0,23606, 0, 0,23606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23606, 0, 0, 0, 0, 0, 0, 23606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23606, 0,23606,23606,23606, 0, 0,23606,23606, 0, 0, 0,23606, 0, 0, 23606, 0,23606, 0,23606, 0,23606,23606,23606,23631, 0,23631, 0, 0, 0, 0, 0, 0,23631, 0, 0,23631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23631, 0, 0, 0, 0, 0, 0, 23631, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23631, 0,23631, 0,23631, 0, 0,23631,23631, 0, 0, 0,23631, 0,23631, 23631, 0,23631, 0,23631, 0,23631,23631,23631,23632, 0,23632, 0, 0, 0, 0, 0, 0,23632, 0, 0,23632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23632, 0, 0, 0, 0, 0, 0, 23632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23632, 0,23632, 0,23632, 0, 0,23632,23632, 0, 0, 0,23632, 0, 0, 23632, 0,23632, 0,23632,23632,23632,23632,23632,23634, 0, 0, 0, 0, 0, 0, 0, 0, 0,23634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23634, 0, 0, 0, 0, 0, 0,23634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23634, 0,23634, 0,23634, 0, 0, 23634,23634, 0, 0, 0,23634, 0, 0,23634, 0, 23634, 0,23634, 0,23634,23634,23634,23635, 0, 0, 0, 0, 0, 0, 0, 0, 0,23635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23635, 0, 0, 0, 0, 0, 0,23635, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23635, 0,23635, 0,23635, 0, 0,23635,23635, 0, 0, 0,23635,23635, 0,23635, 0,23635, 0, 23635, 0,23635,23635,23635,23636, 0, 0, 0, 0, 0, 0, 0, 0, 0,23636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23636, 0, 0, 0, 0, 0, 0,23636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23636, 0,23636, 0,23636, 0, 0,23636,23636, 0, 0, 0,23636,23636, 0,23636, 0,23636, 0,23636, 0, 23636,23636,23636,23642, 0,23642, 0, 0, 0, 0, 0, 0,23642, 0, 0,23642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23642, 0, 0, 0, 0, 0, 0,23642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23642, 0,23642, 0,23642, 0, 0,23642,23642, 0, 0, 0,23642, 0, 0,23642, 0,23642, 0,23642, 0, 23642,23642,23642,23643, 0,23643, 0, 0, 0, 0, 0, 0,23643, 0, 0,23643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23643, 0, 0, 0, 0, 0, 0,23643, 0, 0, 0, 0, 0, 0,23643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23643, 0,23643,23643,23643, 0, 0,23643,23643, 0, 0, 0,23643, 0, 0,23643, 0,23643, 0,23643, 0, 23643,23643,23643,23650, 0, 0, 0, 0, 0, 0, 0, 0, 0,23650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23650, 0, 0, 0, 0, 0, 0,23650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23650, 0,23650, 0,23650, 0, 0,23650,23650, 0, 0, 0,23650, 23650, 0,23650, 0,23650, 0,23650, 0,23650,23650, 23650,23657, 0,23657, 0, 0, 0, 0, 0, 0, 23657, 0, 0,23657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23657, 0, 0, 0, 0, 0, 0,23657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23657, 0,23657, 0,23657, 0, 0,23657,23657, 0, 0, 0,23657, 0, 0,23657, 0,23657, 0,23657, 0,23657,23657, 23657,23658, 0,23658, 0, 0, 0, 0, 0, 0, 23658, 0, 0,23658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23658, 0, 0, 0, 0, 0, 0,23658, 0, 0, 0, 0, 0, 0,23658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23658, 0,23658, 23658,23658, 0, 0,23658,23658, 0, 0, 0,23658, 0, 0,23658, 0,23658, 0,23658, 0,23658,23658, 23658,23675,23675, 0,23675,23675,23675,23675,23675,23675, 23675,23675,23675, 0,23675,23675, 0, 0, 0, 0, 0, 0, 0, 0, 0,23675,23675,23675,23675,23675, 23675,23675, 0, 0, 0, 0, 0,23675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23675,23675,23675,23676,23676, 0,23676,23676,23676,23676,23676,23676,23676,23676,23676, 0,23676,23676, 0, 0, 0, 0, 0, 0, 0, 0, 0,23676,23676,23676,23676,23676,23676,23676, 0, 0, 0, 0, 0,23676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23676,23676,23676,23677,23677, 0,23677,23677, 23677,23677,23677,23677,23677,23677,23677, 0,23677,23677, 0, 0, 0, 0, 0, 0, 0, 0, 0,23677, 23677,23677,23677,23677,23677,23677,23677, 0, 0, 0, 0,23677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23677, 23677,23677,23681,23681, 0,23681,23681,23681,23681,23681, 23681,23681,23681,23681, 0,23681,23681, 0, 0, 0, 0, 0, 0, 0, 0, 0,23681,23681,23681,23681, 23681,23681,23681, 0, 0, 0, 0, 0,23681, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23681,23681,23681,23682, 23682, 0,23682,23682,23682,23682,23682,23682,23682,23682, 23682, 0,23682,23682, 0, 0, 0, 0, 0, 0, 0, 0, 0,23682,23682,23682,23682,23682,23682,23682, 23682, 0, 0, 0, 0,23682, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23682,23682,23682,23696,23696, 0,23696, 23696,23696,23696,23696,23696,23696,23696,23696, 0,23696, 23696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23696,23696,23696,23696,23696,23696,23696, 0, 0, 0, 0, 0,23696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23696,23696,23696,23697,23697, 0,23697,23697,23697,23697, 23697,23697,23697,23697,23697, 0,23697,23697, 0, 0, 0, 0, 0, 0, 0, 0, 0,23697,23697,23697, 23697,23697,23697,23697,23697, 0, 0, 0, 0,23697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23697,23697,23697, 23711,23711, 0,23711,23711,23711,23711,23711,23711,23711, 23711,23711, 0,23711,23711, 0, 0, 0, 0, 0, 0, 0, 0, 0,23711,23711,23711,23711,23711,23711, 23711, 0, 0, 0, 0, 0,23711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23711,23711,23711,23712,23712, 0, 23712,23712,23712,23712,23712,23712,23712,23712,23712, 0, 23712,23712, 0, 0, 0, 0, 0, 0, 0, 0, 0,23712,23712,23712,23712,23712,23712,23712,23712, 0, 0, 0, 0,23712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23712,23712,23712,23745,23745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23745,23745,23745,23745, 23745,23745,23745,23745,23745, 0,23745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23745,23792,23792, 0,23792,23792,23792,23792,23792,23792,23792, 0,23792, 23792,23792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23792,23792,23792,23792,23792,23792,23792, 0, 0, 0, 0, 0,23792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23792,23792,23792,23792,23793,23793, 0,23793, 23793,23793,23793,23793,23793,23793, 0,23793,23793,23793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23793,23793,23793,23793,23793,23793,23793,23793, 0, 0, 0, 0,23793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23793,23793,23793,23793,23797,23797,23797,23797,23797,23797, 23797,23797,23797, 0, 0, 0, 0, 0, 0, 0, 23797,23797,23797,23797,23797,23797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23797,23797,23797, 23797,23797,23797,23802,23802, 0,23802,23802,23802,23802, 23802,23802,23802,23802,23802,23802,23802,23802,23802,23802, 23802,23802,23802,23802,23802,23802,23802,23802,23802,23802, 23802,23802,23802,23802,23802,23802,23802,23802,23802,23802, 23802,23802,23802,23802,23802,23802,23802,23802,23802,23802, 23802,23802,23802,23802,23802,23802,23802,23802,23802,23802, 23802,23802,23802,23802,23802,23802,23802,23802,23802,23802, 23802,23802,23802,23802,23802,23802,23802,23802,23802,23802, 23802,23802,23802,23802,23802,23802,23803,23803, 0,23803, 23803,23803,23803,23803,23803,23803,23803,23803, 0,23803, 23803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23803,23803,23803,23803,23803,23803,23803, 0, 0, 0, 0, 0,23803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23803,23803,23803,23803,23804,23804, 0,23804,23804,23804, 23804,23804,23804,23804,23804,23804, 0,23804,23804, 0, 0, 0, 0, 0, 0, 0, 0, 0,23804,23804, 23804,23804,23804,23804,23804, 0, 0, 0, 0, 0, 23804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23804,23804, 23804,23804,23808,23808,23808,23808,23808,23808,23808,23808, 23808,23808, 0, 0, 0, 0, 0, 0,23808,23808, 23808,23808,23808,23808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23808,23808,23808,23808,23808, 23808,23811,23811,23811,23811,23811,23811,23811,23811,23811, 23811, 0, 0, 0, 0, 0, 0,23811,23811,23811, 23811,23811,23811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23811,23811,23811,23811,23811,23811, 23813,23813,23813,23813,23813,23813,23813,23813,23813, 0, 0, 0, 0, 0, 0, 0,23813,23813,23813,23813, 23813,23813, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23813, 0, 0, 0,23813,23813,23813,23813,23813,23813,23817, 23817,23817,23817,23817,23817,23817,23817,23817,23817, 0, 0, 0, 0, 0, 0,23817,23817,23817,23817,23817, 23817, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23817,23817,23817,23817,23817,23817,23819,23819, 23819,23819,23819,23819,23819,23819,23819, 0, 0, 0, 0, 0, 0, 0,23819,23819,23819,23819,23819,23819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23819,23819,23819,23819,23819,23819,23825,23825, 0, 23825,23825,23825,23825,23825,23825,23825,23825,23825, 0, 23825,23825, 0, 0, 0, 0, 0, 0, 0, 0, 0,23825,23825,23825,23825,23825,23825,23825, 0, 0, 0, 0, 0,23825, 0, 0, 0, 0, 0,23825, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23825,23825,23825,23826,23826,23826,23826,23826,23826, 23826,23826,23826,23826, 0, 0, 0, 0, 0, 0, 23826,23826,23826,23826,23826,23826, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23826,23826,23826, 23826,23826,23826,23829,23829,23829,23829,23829,23829,23829, 23829,23829,23829, 0, 0, 0, 0, 0, 0,23829, 23829,23829,23829,23829,23829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23829,23829,23829,23829, 23829,23829,23837,23837, 0,23837,23837,23837,23837,23837, 23837,23837,23837,23837, 0,23837,23837, 0, 0, 0, 0, 0, 0, 0, 0, 0,23837,23837,23837,23837, 23837,23837,23837, 0, 0, 0, 0, 0,23837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23837,23837,23837,23837, 0, 0, 0, 0, 0, 0, 0,23837,23869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23869, 23869,23869,23869,23869,23869,23869,23869,23869, 0, 0, 0, 0, 0, 0, 0,23869,23869,23869,23869,23869, 23869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23869,23869,23869,23869,23869,23869,23883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23883, 0, 0, 0, 0, 0, 0,23883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23883, 0,23883, 0,23883, 0, 0,23883, 23883, 0, 0, 0,23883, 0, 0,23883, 0,23883, 0,23883, 0,23883,23883,23883,23883,23884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23884, 0, 0, 0, 0, 0, 0,23884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23884, 0,23884, 0,23884, 0,23884,23884,23884, 0, 0, 0,23884, 0,23884,23884, 0,23884, 0, 23884, 0,23884,23884,23884,23885, 0,23885, 0, 0, 0, 0, 0, 0,23885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23885, 0, 0, 0, 0, 0, 0,23885, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23885, 0,23885, 0,23885, 0, 0,23885,23885, 0, 0, 0,23885,23885, 0,23885, 0,23885, 0, 23885, 0,23885,23885,23885,23886, 0,23886, 0, 0, 0, 0, 0, 0,23886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23886, 0, 0, 0, 0, 0, 0,23886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23886, 0,23886, 0,23886, 0, 0,23886,23886, 0, 0, 0,23886,23886, 0,23886, 0,23886, 0, 23886, 0,23886,23886,23886,23887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23887, 0, 0, 0, 0, 0, 0,23887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23887, 0,23887, 0,23887, 0, 0,23887,23887, 0, 0, 0,23887, 0, 0,23887, 0,23887, 0,23887, 0, 23887,23887,23887,23888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23888, 0, 0, 0, 0, 0, 0,23888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23888, 0,23888, 0,23888, 0, 0,23888,23888, 0, 0, 0,23888, 0, 0,23888, 0,23888, 0,23888, 0,23888,23888, 23888,23889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23889, 0, 0, 0, 0, 0, 0, 23889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23889, 0,23889, 0,23889, 0, 0,23889,23889, 0, 0, 0,23889,23889,23889, 23889, 0,23889, 0,23889, 0,23889,23889,23889,23890, 0,23890, 0, 0, 0, 0, 0, 0,23890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23890, 0, 0, 0, 0, 0, 0, 23890, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23890, 0,23890, 0,23890, 0, 0,23890,23890, 0, 0, 0,23890,23890, 0, 23890, 0,23890, 0,23890, 0,23890,23890,23890,23891, 0,23891, 0, 0, 0, 0, 0, 0,23891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23891, 0, 0, 0, 0, 0, 0, 23891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23891, 0,23891, 0,23891, 0, 0,23891,23891, 0, 0, 0,23891,23891, 0, 23891, 0,23891, 0,23891, 0,23891,23891,23891,23892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23892, 0, 0, 0, 0, 0, 0,23892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23892, 0,23892, 0,23892, 0, 0, 23892,23892, 0, 0, 0,23892, 0, 0,23892, 0, 23892, 0,23892, 0,23892,23892,23892,23893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23893, 0, 0, 0, 0, 0, 0,23893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23893, 0,23893, 0,23893, 0, 0,23893,23893, 0, 0, 0,23893, 0, 0,23893, 0,23893, 0, 23893, 0,23893,23893,23893,23894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23894, 0, 0, 0, 0, 0, 0,23894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23894, 0,23894, 0,23894, 0, 0,23894,23894, 0, 0, 0,23894,23894,23894,23894, 0,23894, 0,23894, 0, 23894,23894,23894,23895, 0,23895, 0, 0, 0, 0, 0, 0,23895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23895, 0, 0, 0, 0, 0, 0,23895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23895, 0,23895, 0,23895, 0, 0,23895,23895, 0, 0, 0,23895,23895, 0,23895, 0,23895, 0,23895, 0, 23895,23895,23895,23896, 0,23896, 0, 0, 0, 0, 0, 0,23896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23896, 0, 0, 0, 0, 0, 0,23896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23896, 0,23896, 0,23896, 0, 0,23896,23896, 0, 0, 0,23896,23896, 0,23896, 0,23896, 0,23896, 0, 23896,23896,23896,23897, 0, 0, 0, 0, 0, 0, 0, 0, 0,23897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23897, 0, 0, 0, 0, 0, 0,23897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23897, 0,23897, 23897,23897, 0, 0,23897,23897, 0, 0, 0,23897, 0, 0,23897, 0,23897,23897,23897, 0,23897,23897, 23897,23898, 0, 0, 0, 0, 0, 0, 0,23898, 0,23898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23898, 0, 0, 0, 0, 0, 0, 23898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23898, 0,23898, 0,23898, 0, 0,23898,23898, 0, 0, 0,23898, 0, 0, 23898, 0,23898, 0,23898, 0,23898,23898,23898,23899, 0, 0, 0, 0, 0, 0, 0, 0, 0,23899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23899, 0, 0, 0, 0, 0, 0,23899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23899, 0,23899, 0,23899, 0, 0, 23899,23899, 0, 0, 0,23899, 0, 0,23899, 0, 23899, 0,23899, 0,23899,23899,23899,23900, 0, 0, 0, 0, 0, 0, 0, 0, 0,23900,23900,23900, 23900,23900,23900,23900,23900,23900,23900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23900, 0, 0, 0, 0, 0, 0,23900, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23900, 0,23900, 0,23900, 0, 0,23900,23900, 0, 0, 0,23900, 0, 0,23900, 0,23900, 0, 23900, 0,23900,23900,23900,23901,23901,23901,23901,23901, 23901,23901,23901,23901, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23901, 0, 0, 0, 0, 0, 0, 0, 0,23901, 0, 0, 0, 0, 0, 0, 0,23901, 0, 0, 23901,23905, 0,23905, 0, 0, 0, 0, 0, 0, 23905, 0, 0,23905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23905, 0, 0, 0, 0, 0, 0,23905, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23905, 0,23905, 0,23905, 0, 0,23905,23905, 0, 0, 0,23905, 0, 0,23905, 0,23905, 0,23905, 0,23905,23905, 23905,23906, 0,23906, 0, 0, 0, 0, 0, 0, 23906, 0, 0,23906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23906, 0, 0, 0, 0, 0, 0,23906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23906, 0,23906, 0,23906, 0, 0,23906,23906, 0, 0, 0,23906, 23906, 0,23906, 0,23906,23906,23906, 0,23906,23906, 23906,23929,23929,23929,23929,23929,23929,23929,23929,23929, 23929,23929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23929, 0, 0, 0, 0,23929,23935, 0,23935, 0, 0, 0, 0, 0, 0,23935, 0, 0,23935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23935, 0, 0, 0, 0, 0, 0,23935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23935,23935, 0,23935, 0,23935, 0, 0,23935,23935, 0, 0, 0,23935, 0, 0,23935, 0,23935, 0, 23935, 0,23935,23935,23935,23936, 0,23936, 0, 0, 0, 0, 0, 0,23936, 0, 0,23936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23936, 0, 0, 0, 0, 0, 0,23936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23936, 0,23936, 0,23936, 0, 0,23936,23936, 0, 0, 0,23936, 0, 0,23936, 0,23936, 0, 23936, 0,23936,23936,23936,23940, 0, 0, 0, 0, 0, 0, 0, 0, 0,23940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23940, 0, 0, 0, 0, 0, 0,23940, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23940, 0,23940, 0,23940, 0, 0,23940,23940, 0, 0, 0,23940, 0, 0,23940, 0,23940, 0,23940, 0, 23940,23940,23940,23941, 0, 0, 0, 0, 0, 0, 0, 0, 0,23941,23941,23941,23941,23941,23941,23941, 23941,23941,23941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23941, 0, 0, 0, 0, 0, 0,23941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23941, 0,23941, 0,23941, 0, 0,23941,23941, 0, 0, 0,23941, 0, 0,23941, 0,23941, 0,23941, 0,23941,23941, 23941,23942,23942,23942,23942,23942,23942,23942,23942,23942, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23942, 0, 0, 0, 0, 0, 0, 0, 0,23942, 0, 0, 0, 0, 0, 0, 0,23942, 0, 0,23942,23946, 0,23946, 0, 0, 0, 0, 0, 0,23946, 0, 0,23946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23946, 0, 0, 0, 0, 0, 0,23946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23946, 0,23946, 0,23946, 0, 0, 23946,23946, 0, 0, 0,23946, 0, 0,23946, 0, 23946, 0,23946, 0,23946,23946,23946,23947, 0,23947, 0, 0, 0, 0, 0, 0,23947, 0, 0,23947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23947, 0, 0, 0, 0, 0, 0,23947, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23947, 0,23947, 0,23947, 0, 0, 23947,23947, 0, 0, 0,23947,23947, 0,23947, 0, 23947,23947,23947, 0,23947,23947,23947,23971,23971,23971, 23971,23971,23971,23971,23971,23971,23971,23971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23971, 0, 0, 0, 0, 23971,23975, 0, 0, 0, 0, 0, 0, 0, 0, 0,23975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23975, 0, 0, 0, 0, 0, 0, 23975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23975, 0,23975, 0,23975, 0, 0,23975,23975, 0, 0, 0,23975, 0, 0, 23975, 0,23975, 0,23975, 0,23975,23975,23975,23976, 0, 0, 0, 0, 0, 0, 0, 0, 0,23976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23976, 0, 0, 0, 0, 0, 0,23976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23976, 0,23976, 0,23976, 0, 0, 23976,23976, 0, 0, 0,23976, 0, 0,23976, 0, 23976, 0,23976, 0,23976,23976,23976,23977, 0, 0, 0, 0, 0, 0, 0, 0, 0,23977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23977, 0, 0, 0, 0, 0, 0,23977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23977, 0,23977, 0,23977, 0, 0,23977,23977, 0, 0, 0,23977, 0, 0,23977, 0,23977, 0, 23977, 0,23977,23977,23977,23978, 0,23978, 0, 0, 0, 0, 0, 0,23978, 0, 0,23978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23978, 0, 0, 0, 0, 0, 0,23978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23978, 0,23978, 0,23978, 0, 0,23978,23978, 0, 0, 0,23978, 0, 0,23978, 0,23978, 0, 23978, 0,23978,23978,23978,23979, 0, 0, 0, 0, 0, 0, 0, 0, 0,23979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23979, 0, 0, 0, 0, 0, 0,23979, 0, 0,23979, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23979, 0,23979, 0,23979, 0, 0,23979,23979, 0, 0, 0,23979, 0, 0,23979, 0,23979, 0,23979, 0, 23979,23979,23979,23980, 0, 0, 0, 0, 0, 0, 0, 0, 0,23980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23980, 0, 0, 0, 0, 0, 0,23980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23980, 0,23980, 0,23980, 0, 0,23980,23980, 0, 0, 0,23980, 0, 0,23980, 0,23980, 0,23980, 0,23980,23980, 23980,23981, 0, 0, 0, 0, 0, 0, 0, 0, 0,23981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23981, 0, 0, 0, 0, 0, 0, 23981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23981, 0,23981, 0,23981, 0, 0,23981,23981, 0, 0, 0,23981, 0,23981, 23981, 0,23981, 0,23981, 0,23981,23981,23981,23989, 0,23989, 0, 0, 0, 0, 0, 0,23989, 0, 0,23989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23989, 0, 0, 0, 0, 0, 0, 23989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,23989, 0,23989, 0,23989, 0, 0,23989,23989, 0, 0, 0,23989, 0, 0, 23989, 0,23989, 0,23989, 0,23989,23989,23989,24017, 0,24017, 0, 0, 0, 0, 0, 0,24017, 0, 0,24017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24017, 0, 0, 0, 0, 0, 0, 24017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24017, 0,24017, 0,24017, 0, 0,24017,24017, 0, 0, 0,24017, 0, 0, 24017, 0,24017, 0,24017, 0,24017,24017,24017,24018, 0, 0, 0, 0, 0, 0, 0, 0, 0,24018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24018, 0, 0, 0, 0, 0, 0,24018, 0, 0,24018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24018, 0,24018, 0,24018, 0, 0, 24018,24018, 0, 0, 0,24018, 0, 0,24018, 0, 24018, 0,24018, 0,24018,24018,24018,24019, 0, 0, 0, 0, 0, 0, 0, 0, 0,24019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24019, 0, 0, 0, 0, 0, 0,24019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24019, 0,24019, 0,24019, 0, 0,24019,24019, 0, 0, 0,24019, 0, 0,24019, 0,24019, 0, 24019, 0,24019,24019,24019,24020, 0, 0, 0, 0, 0, 0, 0, 0, 0,24020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24020, 0, 0, 0, 0, 0, 0,24020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24020, 0,24020, 0,24020, 0, 0,24020,24020, 0, 0, 0,24020, 0,24020,24020, 0,24020, 0,24020, 0, 24020,24020,24020,24028, 0,24028, 0, 0, 0, 0, 0, 0,24028, 0, 0,24028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24028, 0, 0, 0, 0, 0, 0,24028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24028, 0,24028, 0,24028, 0, 0,24028,24028, 0, 0, 0,24028, 0, 0,24028, 0,24028, 0,24028, 0, 24028,24028,24028,24056, 0,24056, 0, 0, 0, 0, 0, 0,24056, 0, 0,24056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24056, 0, 0, 0, 0, 0, 0,24056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24056, 0,24056,24056,24056, 0, 0,24056,24056, 0, 0, 0,24056, 0, 0,24056, 0,24056,24056,24056, 0, 24056,24056,24056,24057, 0,24057, 0, 0, 0, 0, 0, 0,24057,24057, 0,24057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24057, 0, 0, 0, 0, 0, 0,24057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24057, 0,24057, 0,24057, 0, 0,24057,24057, 0, 0, 0,24057, 0, 0,24057, 0,24057, 0,24057, 0, 24057,24057,24057,24059, 0, 0, 0, 0, 0, 0, 0, 0, 0,24059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24059, 0, 0, 0, 0, 0, 0,24059, 0, 0, 0, 0, 0, 0,24059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24059, 0,24059, 24059,24059, 0, 0,24059,24059, 0, 0, 0,24059, 0, 0,24059, 0,24059, 0,24059, 0,24059,24059, 24059,24060, 0, 0, 0, 0, 0, 0, 0, 0, 0,24060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24060, 0, 0, 0, 0, 0, 0, 24060, 0, 0,24060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24060, 0,24060,24060,24060, 0, 0,24060,24060, 0, 0, 0,24060, 0, 0, 24060, 0,24060, 0,24060, 0,24060,24060,24060,24066, 0,24066, 0, 0, 0, 0, 0, 0,24066, 0, 0,24066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24066, 0, 0, 0, 0, 0, 0, 24066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24066,24066, 0,24066, 0,24066, 0, 0,24066,24066, 0, 0, 0,24066, 0, 0, 24066, 0,24066, 0,24066, 0,24066,24066,24066,24067, 0,24067, 0, 0, 0, 0, 0, 0,24067, 0, 0,24067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24067, 0, 0, 0, 0, 0, 0, 24067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24067, 0,24067, 0,24067, 0, 0,24067,24067, 0, 0, 0,24067, 0, 0, 24067, 0,24067, 0,24067, 0,24067,24067,24067,24072, 0, 0, 0, 0, 0, 0, 0, 0, 0,24072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24072, 0, 0, 0, 0, 0, 0,24072, 0, 0, 0, 0, 0, 0,24072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24072, 0,24072,24072,24072, 0, 0, 24072,24072, 0, 0, 0,24072, 0, 0,24072, 0, 24072, 0,24072, 0,24072,24072,24072,24073, 0, 0, 0, 0, 0, 0, 0, 0, 0,24073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24073, 0, 0, 0, 0, 0, 0,24073, 0, 0,24073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24073, 0,24073,24073,24073, 0, 0,24073,24073, 0, 0, 0,24073, 0, 0,24073, 0,24073, 0, 24073, 0,24073,24073,24073,24079, 0,24079, 0, 0, 0, 0, 0, 0,24079, 0, 0,24079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24079, 0, 0, 0, 0, 0, 0,24079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24079,24079, 0,24079, 0,24079, 0, 0,24079,24079, 0, 0, 0,24079, 0, 0,24079, 0,24079, 0, 24079, 0,24079,24079,24079,24080, 0,24080, 0, 0, 0, 0, 0, 0,24080, 0, 0,24080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24080, 0, 0, 0, 0, 0, 0,24080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24080, 0,24080, 0,24080, 0, 0,24080,24080, 0, 0, 0,24080, 0, 0,24080, 0,24080, 0, 24080, 0,24080,24080,24080,24094,24094, 0,24094,24094, 24094,24094,24094,24094,24094,24094,24094, 0,24094,24094, 0, 0, 0, 0, 0, 0, 0, 0, 0,24094, 24094,24094,24094,24094,24094,24094, 0, 0, 0, 0, 0,24094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24094, 24094,24094,24095,24095, 0,24095,24095,24095,24095,24095, 24095,24095,24095,24095, 0,24095,24095, 0, 0, 0, 0, 0, 0, 0, 0, 0,24095,24095,24095,24095, 24095,24095,24095,24095, 0, 0, 0, 0,24095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24095,24095,24095,24119, 24119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24119,24119,24119,24119,24119,24119,24119,24119,24119, 0,24119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24119,24120,24120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24120,24120,24120,24120,24120, 24120,24120,24120,24120, 0,24120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24120,24161,24161, 0,24161,24161,24161,24161,24161,24161, 24161, 0,24161,24161,24161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24161,24161,24161,24161,24161, 24161,24161, 0, 0, 0, 0, 0,24161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24161,24161,24161,24161,24162, 24162, 0,24162,24162,24162,24162,24162,24162,24162, 0, 24162,24162,24162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24162,24162,24162,24162,24162,24162,24162, 24162, 0, 0, 0, 0,24162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24162,24162,24162,24162,24172,24172, 0, 24172,24172,24172,24172,24172,24172,24172,24172,24172,24172, 24172,24172,24172,24172,24172,24172,24172,24172,24172,24172, 24172,24172,24172,24172,24172,24172,24172,24172,24172,24172, 24172,24172,24172,24172,24172,24172,24172,24172,24172,24172, 24172,24172,24172,24172,24172,24172,24172,24172,24172,24172, 24172,24172,24172,24172,24172,24172,24172,24172,24172,24172, 24172,24172,24172,24172,24172,24172,24172,24172,24172,24172, 24172,24172,24172,24172,24172,24172,24172,24172,24172,24172, 24174,24174, 0,24174,24174,24174,24174,24174,24174,24174, 24174,24174,24174,24174,24174,24174,24174,24174,24174,24174, 24174,24174,24174,24174,24174,24174,24174,24174,24174,24174, 24174,24174,24174,24174,24174,24174,24174,24174,24174,24174, 24174,24174,24174,24174,24174,24174,24174,24174,24174,24174, 24174,24174,24174,24174,24174,24174,24174,24174,24174,24174, 24174,24174,24174,24174,24174,24174,24174,24174,24174,24174, 24174,24174,24174,24174,24174,24174,24174,24174,24174,24174, 24174,24174,24174,24182,24182,24182,24182,24182,24182,24182, 24182,24182,24182, 0, 0, 0, 0, 0, 0,24182, 24182,24182,24182,24182,24182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24182,24182,24182,24182, 24182,24182,24184,24184,24184,24184,24184,24184,24184,24184, 24184,24184, 0, 0, 0, 0, 0, 0,24184,24184, 24184,24184,24184,24184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24184,24184,24184,24184,24184, 24184,24187,24187,24187,24187,24187,24187,24187,24187,24187, 24187, 0, 0, 0, 0, 0, 0,24187,24187,24187, 24187,24187,24187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24187, 0, 0, 0,24187,24187,24187,24187,24187,24187, 24193,24193,24193,24193,24193,24193,24193,24193,24193,24193, 0, 0, 0, 0, 0, 0,24193,24193,24193,24193, 24193,24193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24193,24193,24193,24193,24193,24193,24196, 24196,24196,24196,24196,24196,24196,24196,24196,24196, 0, 0, 0, 0, 0, 0,24196,24196,24196,24196,24196, 24196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24196,24196,24196,24196,24196,24196,24204,24204, 0,24204,24204,24204,24204,24204,24204,24204,24204,24204, 0,24204,24204, 0, 0, 0, 0, 0, 0, 0, 0, 0,24204,24204,24204,24204,24204,24204,24204, 0, 0, 0, 0, 0,24204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24204,24204,24204,24209,24209,24209,24209,24209, 24209,24209,24209,24209,24209, 0, 0, 0, 0, 0, 0,24209,24209,24209,24209,24209,24209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24209,24209, 24209,24209,24209,24209,24211,24211,24211,24211,24211,24211, 24211,24211,24211, 0, 0, 0, 0, 0, 0, 0, 24211,24211,24211,24211,24211,24211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24211,24211,24211, 24211,24211,24211,24219,24219, 0,24219,24219,24219,24219, 24219,24219,24219,24219,24219, 0,24219,24219, 0, 0, 0, 0, 0, 0, 0, 0, 0,24219,24219,24219, 24219,24219,24219,24219, 0, 0, 0, 0, 0,24219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24219,24219,24219, 24219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24219,24222,24222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24222,24222, 24222,24222,24222,24222,24222,24222,24222, 0,24222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24222,24228,24228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24228, 24228,24228,24228,24228,24228,24228,24228,24228, 0,24228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24228,24232,24232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24232,24232,24232,24232,24232,24232,24232, 24232,24232, 0,24232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24232, 24262,24262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24262, 0,24262, 0, 0, 0, 0,24262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24262, 0,24262, 0,24262, 0, 0,24262,24262, 0, 0, 0,24262, 0, 0,24262, 0,24262, 0,24262, 0,24262,24262,24262,24263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24263, 0, 0, 0, 0, 0, 0,24263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24263, 0,24263, 0,24263, 0, 0,24263, 24263, 0, 0, 0,24263, 0, 0,24263, 0,24263, 0,24263, 0,24263,24263,24263,24264, 0,24264, 0, 0, 0, 0, 0, 0,24264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24264, 0, 0, 0, 0, 0, 0,24264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24264, 0,24264, 0,24264, 0, 0,24264, 24264, 0, 0, 0,24264,24264, 0,24264, 0,24264, 0,24264, 0,24264,24264,24264,24265, 0,24265, 0, 0, 0, 0, 0, 0,24265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24265, 0, 0, 0, 0, 0, 0, 0, 0, 24265, 0, 0, 0, 0, 0, 0,24265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24265, 0,24265, 0,24265, 0, 0,24265, 24265, 0, 0, 0,24265, 0, 0,24265, 0,24265, 0,24265, 0,24265,24265,24265,24266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24266, 0, 0, 0, 0, 0, 0,24266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24266, 0,24266, 0,24266, 0, 0,24266,24266, 0, 0, 0,24266,24266, 0,24266, 0,24266, 0,24266, 0,24266,24266,24266,24267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24267, 0, 0, 0, 0, 0, 0,24267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24267, 0, 24267, 0,24267, 0, 0,24267,24267, 0, 0, 0, 24267,24267, 0,24267, 0,24267, 0,24267, 0,24267, 24267,24267,24268, 0,24268, 0, 0, 0, 0, 0, 0,24268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24268, 0, 0, 0, 0, 0, 0,24268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24268, 0, 24268, 0,24268, 0, 0,24268,24268, 0, 0, 0, 24268,24268, 0,24268, 0,24268, 0,24268, 0,24268, 24268,24268,24269, 0,24269, 0, 0, 0, 0, 0, 0,24269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24269, 0, 0, 0, 0, 0, 0, 0, 0,24269, 0, 0, 0, 0, 0, 0,24269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24269, 0, 24269, 0,24269, 0, 0,24269,24269, 0, 0, 0, 24269, 0, 0,24269, 0,24269, 0,24269, 0,24269, 24269,24269,24270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24270, 0, 0, 0, 0, 0, 0,24270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24270, 0,24270, 0, 24270, 0, 0,24270,24270, 0, 0, 0,24270,24270, 0,24270, 0,24270, 0,24270, 0,24270,24270,24270, 24271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24271, 0, 0, 0, 0, 0, 0,24271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24271, 0,24271, 0,24271, 0, 0,24271,24271, 0, 0, 0,24271,24271, 0,24271, 0,24271, 0,24271, 0,24271,24271,24271,24272, 0, 24272, 0, 0, 0, 0, 0, 0,24272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24272, 0, 0, 0, 0, 0, 0,24272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24272, 0,24272, 0,24272, 0, 0,24272,24272, 0, 0, 0,24272,24272, 0,24272, 0,24272, 0,24272, 0,24272,24272,24272,24273, 0, 24273, 0, 0, 0, 0, 0, 0,24273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24273, 0, 0, 0, 0, 0, 0, 0, 0,24273, 0, 0, 0, 0, 0, 0,24273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24273, 0,24273, 0,24273, 0, 0,24273,24273, 0, 0, 0,24273, 0, 0,24273, 0,24273, 0,24273, 0,24273,24273,24273,24274, 0, 0, 0, 0, 0, 0, 0, 0, 0,24274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24274, 0, 0, 0, 0, 0, 0,24274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24274, 0,24274, 0,24274, 0, 0,24274, 24274, 0, 0, 0,24274, 0, 0,24274, 0,24274, 0,24274, 0,24274,24274,24274,24275, 0, 0, 0, 0, 0, 0, 0, 0, 0,24275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24275, 0, 0, 0, 0, 0, 0,24275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24275, 0,24275,24275,24275, 0, 0,24275,24275, 0, 0, 0,24275,24275, 0,24275, 0,24275, 0,24275, 0,24275,24275,24275,24276, 0, 0, 0, 0, 0, 0, 0, 0, 0,24276, 0, 0,24276, 0,24276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24276, 0,24276, 0, 0, 0, 0,24276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24276, 0, 24276, 0,24276, 0, 0,24276,24276, 0, 0, 0, 24276, 0, 0,24276, 0,24276, 0,24276, 0,24276, 24276,24276,24277,24277, 0, 0, 0, 0, 0, 0, 0, 0,24277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24277, 0, 0, 0, 0, 0, 0,24277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24277, 0,24277, 0, 24277, 0, 0,24277,24277, 0, 0, 0,24277, 0, 0,24277, 0,24277, 0,24277, 0,24277,24277,24277, 24282, 0,24282, 0, 0, 0, 0, 0, 0,24282, 0, 0,24282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24282, 0, 0, 0, 0, 0, 0,24282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24282, 0,24282, 0, 24282, 0, 0,24282,24282, 0, 0, 0,24282, 0, 0,24282, 0,24282, 0,24282, 0,24282,24282,24282, 24286, 0,24286, 0, 0, 0, 0, 0, 0,24286, 0, 0,24286,24286,24286,24286,24286,24286,24286,24286, 24286,24286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24286, 0, 0, 0, 0, 0, 0,24286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24286, 0,24286, 0, 24286, 0, 0,24286,24286, 0, 0, 0,24286, 0, 0,24286, 0,24286, 0,24286, 0,24286,24286,24286, 24287,24287,24287,24287,24287,24287,24287,24287,24287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24287,24287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24287, 0, 0, 0, 0,24287, 0, 0,24287,24288,24288,24288,24288, 24288,24288,24288,24288,24288,24288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24288, 0, 0,24288,24289,24289,24289,24289,24289,24289,24289, 24289,24289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24289, 0, 0, 0,24289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24289, 0, 0,24289,24290, 24290,24290,24290,24290,24290,24290,24290,24290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24290, 0, 0,24290,24291,24291,24291,24291,24291, 24291,24291,24291,24291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24291, 0, 0, 0, 0, 0,24291, 0, 0, 24291,24292,24292,24292,24292,24292,24292,24292,24292,24292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24292, 0, 0, 0, 0, 0,24292, 0, 0,24292,24293,24293,24293, 24293,24293,24293,24293,24293,24293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24293, 0, 0, 0, 0, 0,24293, 0, 0,24293,24294,24294,24294,24294,24294,24294,24294, 24294,24294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24294,24294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24294, 0, 0,24294,24295, 24295,24295,24295,24295,24295,24295,24295,24295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24295, 0, 0, 0,24295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24295,24295, 0,24295,24296,24296,24296,24296,24296, 24296,24296,24296,24296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24296, 0, 0, 0, 0, 0, 0, 0, 0,24296, 0,24296, 0, 0, 0, 0, 0,24296, 0, 0, 24296,24297,24297,24297,24297,24297,24297,24297,24297,24297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24297, 0,24297, 0, 0, 0, 0, 0,24297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24297, 0, 0,24297, 0,24297,24298, 24298,24298,24298,24298,24298,24298,24298,24298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24298, 0, 0,24298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24298, 0, 0,24298,24299,24299,24299,24299,24299, 24299,24299,24299,24299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24299, 0, 0, 0, 0, 0,24299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24299, 0, 0, 24299,24300,24300,24300,24300,24300,24300,24300,24300,24300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24300, 0, 0, 0, 0, 0,24300, 0, 0,24300,24306, 0,24306, 0, 0, 0, 0, 0, 0,24306, 0, 0,24306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24306, 0, 0, 0, 0, 0, 0,24306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24306, 0,24306, 0,24306, 0, 0, 24306,24306, 0, 0, 0,24306, 0, 0,24306, 0, 24306, 0,24306, 0,24306,24306,24306,24307, 0,24307, 0, 0, 0, 0, 0, 0,24307, 0, 0,24307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24307, 0, 0, 0, 0, 0, 0,24307, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24307, 0,24307, 0,24307, 0, 0, 24307,24307, 0, 0, 0,24307, 0,24307,24307, 0, 24307, 0,24307, 0,24307,24307,24307,24308,24308,24308, 24308,24308,24308,24308,24308,24308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24308,24308, 0, 0, 0,24308, 0, 0,24308,24311, 0, 0, 0, 0, 0, 0, 0, 0, 0,24311, 0, 0,24311, 0,24311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24311, 0,24311, 0, 0, 0, 0,24311, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24311, 0,24311, 0,24311, 0, 0,24311,24311, 0, 0, 0,24311, 0, 0,24311, 0,24311, 0,24311, 0,24311,24311, 24311,24312,24312, 0, 0, 0, 0, 0, 0, 0, 0,24312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24312, 0, 0, 0, 0, 0, 0, 24312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24312, 0,24312, 0,24312, 0, 0,24312,24312, 0, 0, 0,24312, 0, 0, 24312, 0,24312, 0,24312, 0,24312,24312,24312,24317, 0,24317, 0, 0, 0, 0, 0, 0,24317, 0, 0,24317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24317, 0, 0, 0, 0, 0, 0, 24317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24317, 0,24317, 0,24317, 0, 0,24317,24317, 0, 0, 0,24317, 0, 0, 24317, 0,24317, 0,24317, 0,24317,24317,24317,24321, 0,24321, 0, 0, 0, 0, 0, 0,24321, 0, 0,24321,24321,24321,24321,24321,24321,24321,24321,24321, 24321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24321, 0, 0, 0, 0, 0, 0, 24321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24321, 0,24321, 0,24321, 0, 0,24321,24321, 0, 0, 0,24321, 0, 0, 24321, 0,24321, 0,24321, 0,24321,24321,24321,24322, 24322,24322,24322,24322,24322,24322,24322,24322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24322,24322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24322, 0, 0, 0, 0,24322, 0, 0,24322,24323,24323,24323,24323,24323, 24323,24323,24323,24323,24323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24323, 0, 0,24323,24324,24324,24324,24324,24324,24324,24324,24324, 24324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24324, 0, 0, 0,24324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24324, 0, 0,24324,24325,24325, 24325,24325,24325,24325,24325,24325,24325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24325, 0, 0,24325,24326,24326,24326,24326,24326,24326, 24326,24326,24326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24326, 0, 0, 0, 0, 0,24326, 0, 0,24326, 24327,24327,24327,24327,24327,24327,24327,24327,24327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24327, 0, 0, 0, 0, 0,24327, 0, 0,24327,24328,24328,24328,24328, 24328,24328,24328,24328,24328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24328, 0, 0, 0, 0, 0,24328, 0, 0,24328,24329,24329,24329,24329,24329,24329,24329,24329, 24329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24329, 0, 0, 0,24329, 0, 0,24329,24330,24330, 24330,24330,24330,24330,24330,24330,24330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24330,24330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24330, 0, 0,24330,24331,24331,24331,24331,24331,24331, 24331,24331,24331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24331, 0, 0, 0,24331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24331,24331, 0,24331, 24332,24332,24332,24332,24332,24332,24332,24332,24332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24332, 0, 0, 0, 0, 0, 0, 0, 0,24332, 0,24332, 0, 0, 0, 0, 0,24332, 0, 0,24332,24333,24333,24333,24333, 24333,24333,24333,24333,24333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24333, 0,24333, 0, 0, 0, 0, 0,24333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24333, 0, 0,24333, 0,24333,24334,24334,24334,24334,24334,24334, 24334,24334,24334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24334, 0, 0,24334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24334, 0, 0,24334, 24335,24335,24335,24335,24335,24335,24335,24335,24335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24335, 0, 0, 0, 0, 0,24335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24335, 0, 0,24335,24336,24336,24336,24336, 24336,24336,24336,24336,24336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24336, 0, 0, 0, 0, 0,24336, 0, 0,24336,24340, 0, 0, 0, 0, 0, 0, 0, 0, 0,24340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24340, 0, 0, 0, 0, 0, 0, 0, 0,24340, 0, 0, 0, 0, 0, 0,24340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24340, 0,24340, 0, 24340, 0, 0,24340,24340, 0, 0, 0,24340, 0, 24340,24340, 0,24340, 0,24340, 0,24340,24340,24340, 24341, 0,24341, 0, 0, 0, 0, 0, 0,24341, 0, 0,24341,24341,24341,24341,24341,24341,24341,24341, 24341,24341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24341, 0, 0, 0, 0, 0, 0,24341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24341, 0,24341, 0, 24341, 0, 0,24341,24341, 0, 0, 0,24341, 0, 0,24341, 0,24341, 0,24341, 0,24341,24341,24341, 24342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24342, 0, 0, 0, 0, 0, 0,24342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24342, 0,24342, 0,24342, 0, 0,24342,24342, 0, 0, 0,24342, 0, 0,24342, 0,24342, 0,24342, 0,24342,24342,24342,24343, 0, 0, 0, 0, 0, 0, 0, 0, 0,24343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24343, 0, 0, 0, 0, 0, 0,24343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24343, 0,24343, 0,24343, 0, 0,24343, 24343, 0, 0, 0,24343, 0, 0,24343, 0,24343, 0,24343, 0,24343,24343,24343,24343,24351, 0,24351, 0, 0, 0, 0, 0, 0,24351, 0, 0,24351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24351, 0, 0, 0, 0, 0, 0,24351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24351, 0,24351, 0,24351, 0, 0, 24351,24351, 0, 0, 0,24351, 0, 0,24351, 0, 24351, 0,24351, 0,24351,24351,24351,24377, 0,24377, 0, 0, 0, 0, 0, 0,24377, 0, 0,24377, 24377,24377,24377,24377,24377,24377,24377,24377,24377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24377, 0, 0, 0, 0, 0, 0,24377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24377, 0,24377, 0,24377, 0, 0, 24377,24377, 0, 0, 0,24377, 0, 0,24377, 0, 24377, 0,24377, 0,24377,24377,24377,24378, 0, 0, 0, 0, 0, 0, 0, 0, 0,24378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24378, 0, 0, 0, 0, 0, 0,24378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24378, 0,24378, 0,24378, 0, 0,24378,24378, 0, 0, 0,24378, 0, 0,24378, 0,24378, 0, 24378, 0,24378,24378,24378,24379, 0, 0, 0, 0, 0, 0, 0, 0, 0,24379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24379, 0, 0, 0, 0, 0, 0,24379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24379, 0,24379, 0,24379, 0, 0,24379,24379, 0, 0, 0,24379, 0, 0,24379, 0,24379, 0,24379, 0, 24379,24379,24379,24379,24387, 0,24387, 0, 0, 0, 0, 0, 0,24387, 0, 0,24387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24387, 0, 0, 0, 0, 0, 0,24387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24387, 0,24387, 0,24387, 0, 0,24387,24387, 0, 0, 0,24387, 0, 0,24387, 0,24387, 0,24387, 0,24387,24387,24387,24413, 0,24413, 0, 0, 0, 0, 0, 0,24413, 0, 0,24413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24413, 0, 0, 0, 0, 0, 0,24413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24413, 0,24413, 0,24413, 0, 0,24413,24413, 0, 0, 0,24413, 0, 0,24413, 0,24413, 0,24413, 0,24413,24413,24413,24414, 0,24414, 0, 0, 0, 0, 0, 0,24414, 0, 0,24414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24414, 0, 0, 0, 0, 0, 0,24414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24414, 0,24414,24414,24414, 0, 0,24414,24414, 0, 0, 0,24414,24414, 0,24414, 0,24414, 0,24414, 0,24414,24414,24414,24416, 0, 0, 0, 0, 0, 0, 0, 0, 0,24416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24416, 0, 0, 0, 0, 0, 0,24416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24416,24416, 0, 24416, 0,24416, 0, 0,24416,24416, 0, 0, 0, 24416, 0, 0,24416, 0,24416, 0,24416, 0,24416, 24416,24416,24417, 0, 0, 0, 0, 0, 0, 0, 0, 0,24417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24417, 0, 0, 0, 0, 0, 0,24417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24417, 0,24417, 0, 24417, 0, 0,24417,24417, 0, 0, 0,24417, 0, 0,24417, 0,24417, 0,24417, 0,24417,24417,24417, 24419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24419, 0, 0, 0, 0, 0, 0,24419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24419, 0,24419, 0,24419, 0, 0,24419,24419, 0, 0, 0,24419, 0, 0,24419, 0,24419, 0,24419, 0,24419,24419,24419,24420, 0, 0, 0, 0, 0, 0, 0, 0, 0,24420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24420, 0, 0, 0, 0, 0, 0,24420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24420, 0,24420, 0,24420, 0, 0,24420, 24420, 0, 0, 0,24420, 0, 0,24420, 0,24420, 0,24420, 0,24420,24420,24420,24421, 0, 0, 0, 0, 0, 0, 0, 0, 0,24421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24421, 0, 0, 0, 0, 0, 0,24421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24421, 0,24421, 0,24421, 0, 0,24421,24421, 0, 0, 0,24421,24421,24421,24421, 0,24421, 0,24421, 0,24421,24421,24421,24422, 0,24422, 0, 0, 0, 0, 0, 0,24422, 0, 0,24422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24422, 0, 0, 0, 0, 0, 0,24422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24422, 0,24422, 0,24422, 0, 0,24422,24422, 0, 0, 0,24422, 0, 0,24422, 0,24422, 0,24422, 0,24422,24422,24422,24423, 0,24423, 0, 0, 0, 0, 0, 0,24423, 0, 0,24423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24423, 0, 0, 0, 0, 0, 0,24423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24423, 0,24423, 0,24423, 0, 0,24423,24423, 0, 0, 0,24423, 0,24423,24423, 0,24423, 0,24423, 0,24423,24423,24423,24427, 0, 0, 0, 0, 0, 0, 0, 0, 0,24427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24427, 0, 0, 0, 0, 0, 0,24427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24427,24427, 0, 24427, 0,24427, 0, 0,24427,24427, 0, 0, 0, 24427, 0, 0,24427, 0,24427, 0,24427, 0,24427, 24427,24427,24428, 0, 0, 0, 0, 0, 0, 0, 0, 0,24428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24428, 0, 0, 0, 0, 0, 0,24428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24428, 0,24428, 0, 24428, 0, 0,24428,24428, 0, 0, 0,24428, 0, 0,24428, 0,24428, 0,24428, 0,24428,24428,24428, 24430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24430, 0, 0, 0, 0, 0, 0,24430, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24430, 0,24430, 0,24430, 0, 0,24430,24430, 0, 0, 0,24430, 0, 0,24430, 0,24430, 0,24430, 0,24430,24430,24430,24431, 0, 0, 0, 0, 0, 0, 0, 0, 0,24431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24431, 0, 0, 0, 0, 0, 0,24431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24431, 0,24431, 0,24431, 0, 0,24431, 24431, 0, 0, 0,24431, 0, 0,24431, 0,24431, 0,24431, 0,24431,24431,24431,24432, 0, 0, 0, 0, 0, 0, 0, 0, 0,24432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24432, 0, 0, 0, 0, 0, 0,24432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24432, 0,24432, 0,24432, 0, 0,24432,24432, 0, 0, 0,24432,24432,24432,24432, 0,24432, 0,24432, 0,24432,24432,24432,24433, 0,24433, 0, 0, 0, 0, 0, 0,24433, 0, 0,24433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24433, 0, 0, 0, 0, 0, 0,24433, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24433, 0,24433, 0,24433, 0, 0,24433,24433, 0, 0, 0,24433, 0, 0,24433, 0,24433, 0,24433, 0,24433,24433,24433,24434, 0,24434, 0, 0, 0, 0, 0, 0,24434, 0, 0,24434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24434, 0, 0, 0, 0, 0, 0,24434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24434, 0,24434, 0,24434, 0, 0,24434,24434, 0, 0, 0,24434, 0,24434,24434, 0,24434, 0,24434, 0,24434,24434,24434,24447,24447, 0,24447,24447,24447, 24447,24447,24447,24447,24447,24447, 0,24447,24447, 0, 0, 0, 0, 0, 0, 0, 0, 0,24447,24447, 24447,24447,24447,24447,24447, 0, 0, 0, 0, 0, 24447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24447,24447, 24447,24448,24448, 0,24448,24448,24448,24448,24448,24448, 24448,24448,24448, 0,24448,24448, 0, 0, 0, 0, 0, 0, 0, 0, 0,24448,24448,24448,24448,24448, 24448,24448,24448, 0, 0, 0, 0,24448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24448,24448,24448,24460,24460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24460,24460,24460,24460,24460,24460,24460,24460,24460, 0, 24460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24460,24481,24481, 0,24481, 24481,24481,24481,24481,24481,24481,24481,24481, 0,24481, 24481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24481,24481,24481,24481,24481,24481,24481, 0, 0, 0, 0, 0,24481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24481,24481,24481,24481,24498,24498, 0,24498,24498,24498, 24498,24498,24498,24498, 0,24498,24498,24498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24498,24498, 24498,24498,24498,24498,24498, 0, 0, 0, 0, 0, 24498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24498,24498, 24498,24498,24499,24499, 0,24499,24499,24499,24499,24499, 24499,24499, 0,24499,24499,24499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24499,24499,24499,24499, 24499,24499,24499,24499, 0, 0, 0, 0,24499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24499,24499,24499,24499, 24503,24503,24503,24503,24503,24503,24503,24503,24503, 0, 0, 0, 0, 0, 0, 0,24503,24503,24503,24503, 24503,24503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24503,24503,24503,24503,24503,24503,24507, 24507, 0,24507,24507,24507,24507,24507,24507,24507,24507, 24507, 0,24507,24507, 0, 0, 0, 0, 0, 0, 0, 0, 0,24507,24507,24507,24507,24507,24507,24507, 0, 0, 0, 0, 0,24507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24507,24507,24507,24507,24508,24508, 0, 24508,24508,24508,24508,24508,24508,24508,24508,24508, 0, 24508,24508,24508,24508,24508,24508,24508,24508,24508,24508, 24508,24508,24508,24508,24508,24508,24508,24508, 0, 0, 0, 0, 0,24508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24508,24508,24508,24508,24511,24511,24511,24511,24511, 24511,24511,24511,24511,24511, 0, 0, 0, 0, 0, 0,24511,24511,24511,24511,24511,24511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24511,24511, 24511,24511,24511,24511,24514,24514,24514,24514,24514,24514, 24514,24514,24514,24514, 0, 0, 0, 0, 0, 0, 24514,24514,24514,24514,24514,24514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24514,24514,24514, 24514,24514,24514,24516,24516,24516,24516,24516,24516,24516, 24516,24516, 0, 0, 0, 0, 0, 0, 0,24516, 24516,24516,24516,24516,24516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24516, 0, 0, 0,24516,24516,24516,24516, 24516,24516,24520,24520,24520,24520,24520,24520,24520,24520, 24520,24520, 0, 0, 0, 0, 0, 0,24520,24520, 24520,24520,24520,24520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24520,24520,24520,24520,24520, 24520,24522,24522,24522,24522,24522,24522,24522,24522,24522, 0, 0, 0, 0, 0, 0, 0,24522,24522,24522, 24522,24522,24522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24522,24522,24522,24522,24522,24522, 24532,24532,24532,24532,24532,24532,24532,24532,24532,24532, 0, 0, 0, 0, 0, 0,24532,24532,24532,24532, 24532,24532, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24532,24532,24532,24532,24532,24532,24534, 24534,24534,24534,24534,24534,24534,24534,24534, 0, 0, 0, 0, 0, 0, 0,24534,24534,24534,24534,24534, 24534, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24534,24534,24534,24534,24534,24534,24542,24542, 24542,24542,24542,24542,24542,24542,24542,24542, 0, 0, 0, 0, 0, 0,24542,24542,24542,24542,24542,24542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24542,24542,24542,24542,24542,24542,24545,24545,24545, 24545,24545,24545,24545,24545,24545,24545, 0, 0, 0, 0, 0, 0,24545,24545,24545,24545,24545,24545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24545,24545,24545,24545,24545,24545,24553,24553,24553,24553, 24553,24553,24553,24553,24553, 0, 0, 0, 0, 0, 0, 0,24553,24553,24553,24553,24553,24553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24553, 24553,24553,24553,24553,24553,24554,24554, 0,24554,24554, 24554,24554,24554,24554,24554,24554,24554, 0,24554,24554, 0, 0, 0, 0, 0, 0, 0, 0, 0,24554, 24554,24554,24554,24554,24554,24554, 0, 0, 0, 0, 0,24554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24554, 24554,24554,24554, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24554,24556,24556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24556,24556,24556,24556,24556,24556, 24556,24556,24556, 0,24556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24556,24557,24557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24557,24557,24557,24557,24557, 24557,24557,24557,24557, 0,24557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24557,24562,24562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24562,24562,24562,24562,24562,24562,24562, 24562,24562, 0,24562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24562,24563,24563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24563,24563,24563, 24563,24563,24563,24563,24563,24563, 0,24563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24563,24566,24566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24566,24566,24566,24566,24566, 24566,24566,24566,24566, 0,24566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24566,24567,24567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24567,24567,24567,24567,24567,24567, 24567,24567,24567, 0,24567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24567, 24567,24595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24595, 0, 0, 0, 0, 0, 0, 24595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24595, 0,24595, 0,24595, 0, 0,24595,24595, 0, 0, 0,24595, 0, 0, 24595, 0,24595, 0,24595, 0,24595,24595,24595,24596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24596, 0, 0, 0, 0, 0, 0,24596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24596,24596, 0,24596, 0,24596, 0, 0, 24596,24596, 0, 0, 0,24596, 0, 0,24596, 0, 24596, 0,24596, 0,24596,24596,24596,24596,24597, 0, 24597, 0, 0, 0, 0, 0, 0,24597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24597, 0, 0, 0, 0, 0, 0,24597, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24597, 0,24597, 0,24597, 0, 0,24597,24597, 0, 0, 0,24597, 0, 0,24597, 0,24597, 0,24597, 0,24597,24597,24597,24598, 0, 24598, 0, 0, 0, 0, 0, 0,24598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24598, 0, 0, 0, 0, 0, 0,24598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24598, 0,24598, 0,24598, 0, 0,24598,24598, 0, 0, 0,24598, 0, 0,24598, 0,24598, 0,24598, 0,24598,24598,24598,24599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24599, 0, 0, 0, 0, 0, 0,24599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24599, 0,24599, 0,24599, 0, 0,24599, 24599, 0, 0, 0,24599,24599, 0,24599, 0,24599, 0,24599, 0,24599,24599,24599,24600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24600, 0, 0, 0, 0, 0, 0, 0, 0,24600, 0, 0, 0, 0, 0, 0,24600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24600, 0,24600, 0,24600, 0, 0,24600,24600, 0, 0, 0,24600, 0, 0,24600, 0,24600, 0,24600, 0,24600,24600,24600,24601, 0,24601, 0, 0, 0, 0, 0, 0,24601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24601, 0, 0, 0, 0, 0, 0,24601, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24601, 0,24601, 0,24601, 0, 0,24601,24601, 0, 0, 0,24601, 0, 0,24601, 0,24601, 0,24601, 0,24601,24601,24601,24602, 0,24602, 0, 0, 0, 0, 0, 0,24602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24602, 0, 0, 0, 0, 0, 0,24602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24602, 0,24602, 0,24602, 0, 0,24602,24602, 0, 0, 0,24602, 0, 0,24602, 0,24602, 0,24602, 0,24602,24602,24602,24603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24603, 0, 0, 0, 0, 0, 0,24603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24603, 0, 24603, 0,24603, 0, 0,24603,24603, 0, 0, 0, 24603,24603, 0,24603, 0,24603, 0,24603, 0,24603, 24603,24603,24604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24604, 0, 0, 0, 0, 0, 0, 0, 0,24604, 0, 0, 0, 0, 0, 0,24604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24604, 0,24604, 0, 24604, 0, 0,24604,24604, 0, 0, 0,24604, 0, 0,24604, 0,24604, 0,24604, 0,24604,24604,24604, 24605, 0,24605, 0, 0, 0, 0, 0, 0,24605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24605, 0, 0, 0, 0, 0, 0,24605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24605, 0,24605, 0, 24605, 0, 0,24605,24605, 0, 0, 0,24605, 0, 0,24605, 0,24605, 0,24605, 0,24605,24605,24605, 24606, 0,24606, 0, 0, 0, 0, 0, 0,24606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24606, 0, 0, 0, 0, 0, 0,24606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24606, 0,24606, 0, 24606, 0, 0,24606,24606, 0, 0, 0,24606, 0, 0,24606, 0,24606, 0,24606, 0,24606,24606,24606, 24607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24607, 0, 0, 0, 0, 0, 0, 0, 0,24607, 0, 0, 0, 0, 0, 0,24607, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24607, 0,24607, 0,24607, 0, 0,24607,24607, 0, 0, 0,24607, 0,24607,24607, 0,24607, 0,24607, 0,24607,24607,24607,24608, 0, 0, 0, 0, 0, 0, 0, 0, 0,24608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24608, 0, 0, 0, 0, 0, 0,24608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24608, 0,24608, 0,24608, 0, 0,24608, 24608, 0, 0, 0,24608, 0, 0,24608, 0,24608, 0,24608, 0,24608,24608,24608,24609, 0, 0, 0, 0, 0, 0, 0, 0, 0,24609,24609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24609, 0, 0, 0, 0, 0, 0,24609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24609, 0,24609, 0,24609, 0, 0,24609,24609, 0, 0, 0,24609, 0, 0,24609, 0,24609, 0,24609, 0,24609,24609,24609,24610, 0, 0, 0, 0, 0, 0, 0, 0, 0,24610, 0, 0, 0, 0,24610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24610, 0, 0, 0, 0, 0, 0,24610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24610, 0, 24610, 0,24610, 0, 0,24610,24610, 0, 0, 0, 24610, 0, 0,24610, 0,24610, 0,24610, 0,24610, 24610,24610,24614, 0,24614, 0, 0, 0, 0, 0, 0,24614, 0, 0,24614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24614, 0, 0, 0, 0, 0, 0,24614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24614, 0, 24614, 0,24614, 0, 0,24614,24614, 0, 0, 0, 24614, 0, 0,24614, 0,24614, 0,24614, 0,24614, 24614,24614,24614,24617, 0,24617, 0, 0, 0, 0, 0, 0,24617, 0, 0,24617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24617, 0, 0, 0, 0, 0, 0,24617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24617, 0,24617,24617,24617, 0, 0,24617,24617, 0, 0, 0,24617, 0, 0,24617, 0,24617, 0,24617, 0, 24617,24617,24617,24634,24634, 0, 0, 0, 0, 0, 0, 0, 0,24634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24634, 0,24634, 0, 0, 0, 0,24634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24634, 0,24634, 0,24634, 0, 0,24634,24634, 0, 0, 0,24634, 0, 0,24634, 0,24634, 0,24634, 0,24634,24634, 24634,24636, 0,24636, 0, 0, 0, 0, 0, 0, 24636, 0, 0,24636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24636, 0, 0, 0, 0, 0, 0,24636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24636, 0,24636, 0,24636, 0, 0,24636,24636, 0, 0, 0,24636, 0,24636,24636, 0,24636, 0,24636, 0,24636,24636, 24636,24637, 0,24637, 0, 0, 0, 0, 0, 0, 24637, 0, 0,24637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24637, 0, 0, 0, 0, 0, 0,24637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24637, 0,24637, 0,24637, 0, 0,24637,24637, 0, 0, 0,24637, 0, 0,24637, 0,24637, 0,24637,24637,24637,24637, 24637,24641, 0, 0, 0, 0, 0, 0, 0, 0, 0,24641,24641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24641, 0, 0, 0, 0, 0, 0, 24641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24641, 0,24641, 0,24641, 0, 0,24641,24641, 0, 0, 0,24641, 0, 0, 24641, 0,24641, 0,24641, 0,24641,24641,24641,24642, 0, 0, 0, 0, 0, 0, 0, 0, 0,24642, 0, 0, 0, 0,24642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24642, 0, 0, 0, 0, 0, 0,24642, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24642, 0,24642, 0,24642, 0, 0, 24642,24642, 0, 0, 0,24642, 0, 0,24642, 0, 24642, 0,24642, 0,24642,24642,24642,24647, 0,24647, 0, 0, 0, 0, 0, 0,24647, 0, 0,24647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24647, 0, 0, 0, 0, 0, 0,24647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24647, 0,24647, 0,24647, 0, 0, 24647,24647, 0, 0, 0,24647, 0, 0,24647, 0, 24647, 0,24647, 0,24647,24647,24647,24647,24650, 0, 24650, 0, 0, 0, 0, 0, 0,24650, 0, 0, 24650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24650, 0, 0, 0, 0, 0, 0,24650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24650, 0,24650,24650,24650, 0, 0,24650,24650, 0, 0, 0,24650, 0, 0,24650, 0,24650, 0,24650, 0,24650,24650,24650,24668, 0, 24668,24668, 0, 0, 0, 0, 0,24668, 0,24668, 24668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24668, 0, 0, 0, 0, 0, 0,24668, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24668, 0,24668, 0,24668, 0, 0,24668,24668, 0, 0, 0,24668, 0, 0,24668, 0,24668, 0,24668, 0,24668,24668,24668,24669, 0, 0, 0, 0, 0, 0, 0, 0, 0,24669,24669, 24669,24669,24669,24669,24669,24669,24669,24669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24669, 0, 0, 0, 0, 0, 0,24669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24669, 0,24669, 0,24669, 0, 0,24669, 24669, 0, 0, 0,24669, 0, 0,24669, 0,24669, 0,24669, 0,24669,24669,24669,24670, 0, 0, 0, 0, 0, 0, 0, 0, 0,24670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24670, 0, 0, 0, 0, 0, 0,24670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24670, 0,24670,24670,24670, 0, 0,24670,24670, 0, 0, 0,24670, 0,24670,24670, 0,24670, 0,24670, 0,24670,24670,24670,24686, 0,24686, 0, 0, 0, 0, 0, 0,24686, 0, 0,24686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24686, 0, 0, 0, 0, 0, 0,24686, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24686, 0,24686, 0,24686, 0, 0,24686,24686, 0, 0, 0,24686, 0, 0,24686, 0,24686, 0,24686, 0,24686,24686,24686,24701, 0,24701,24701, 0, 0, 0, 0, 0,24701, 0,24701,24701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24701, 0, 0, 0, 0, 0, 0,24701, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24701, 0,24701, 0,24701, 0, 0,24701,24701, 0, 0, 0,24701, 0, 0,24701, 0,24701, 0,24701, 0,24701,24701,24701,24702, 0, 0, 0, 0, 0, 0, 0, 0, 0,24702,24702,24702,24702,24702,24702, 24702,24702,24702,24702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24702, 0, 0, 0, 0, 0, 0,24702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24702, 0, 24702, 0,24702, 0, 0,24702,24702, 0, 0, 0, 24702, 0, 0,24702, 0,24702, 0,24702, 0,24702, 24702,24702,24703, 0, 0, 0, 0, 0, 0, 0, 0, 0,24703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24703, 0, 0, 0, 0, 0, 0,24703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24703, 0,24703,24703, 24703, 0, 0,24703,24703, 0, 0, 0,24703, 0, 24703,24703, 0,24703, 0,24703, 0,24703,24703,24703, 24719, 0,24719, 0, 0, 0, 0, 0, 0,24719, 0, 0,24719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24719, 0, 0, 0, 0, 0, 0,24719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24719, 0,24719, 0, 24719, 0, 0,24719,24719, 0, 0, 0,24719, 0, 0,24719, 0,24719, 0,24719, 0,24719,24719,24719, 24734, 0,24734, 0, 0, 0, 0, 0, 0,24734, 0, 0,24734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24734, 0, 0, 0, 0, 0, 0, 0, 0,24734, 0, 0, 0, 0, 0, 0,24734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24734, 0,24734, 0, 24734, 0, 0,24734,24734, 0, 0, 0,24734, 0, 24734,24734, 0,24734, 0,24734, 0,24734,24734,24734, 24735, 0,24735, 0, 0, 0, 0, 0, 0,24735, 0, 0,24735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24735, 0, 0, 0, 0, 0, 0,24735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24735, 0,24735, 0, 24735, 0, 0,24735,24735, 0, 0, 0,24735, 0, 0,24735, 0,24735, 0,24735, 0,24735,24735,24735, 24737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24737, 0, 0, 0, 0, 0, 0,24737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24737, 0,24737, 0,24737, 0, 0,24737,24737, 0, 0, 0,24737, 0, 0,24737, 0,24737, 0,24737, 0,24737,24737,24737,24738, 0, 0, 0, 0, 0, 0, 0, 0, 0,24738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24738, 0, 0, 0, 0, 0, 0,24738, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24738, 0,24738, 0,24738, 0, 0,24738, 24738, 0, 0, 0,24738, 0,24738,24738, 0,24738, 0,24738, 0,24738,24738,24738,24742, 0,24742, 0, 0, 0, 0, 0, 0,24742, 0, 0,24742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24742, 0, 0, 0, 0, 0, 0,24742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24742, 0,24742, 0,24742, 0, 0,24742, 24742, 0, 0, 0,24742, 0,24742,24742, 0,24742, 0,24742, 0,24742,24742,24742,24743, 0,24743, 0, 0, 0, 0, 0, 0,24743, 0, 0,24743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24743, 0, 0, 0, 0, 0, 0,24743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24743, 0,24743, 0,24743, 0, 0,24743, 24743, 0, 0, 0,24743, 0, 0,24743, 0,24743, 0,24743,24743,24743,24743,24743,24747, 0, 0, 0, 0, 0, 0, 0, 0, 0,24747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24747, 0, 0, 0, 0, 0, 0,24747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24747, 0,24747, 0,24747, 0, 0,24747,24747, 0, 0, 0,24747, 0, 0,24747, 0,24747, 0,24747, 0,24747,24747,24747,24748, 0, 0, 0, 0, 0, 0, 0, 0, 0,24748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24748, 0, 0, 0, 0, 0, 0,24748, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24748, 0, 24748, 0,24748, 0, 0,24748,24748, 0, 0, 0, 24748, 0,24748,24748, 0,24748, 0,24748, 0,24748, 24748,24748,24752, 0,24752, 0, 0, 0, 0, 0, 0,24752, 0, 0,24752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24752, 0, 0, 0, 0, 0, 0,24752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24752, 0, 24752, 0,24752, 0, 0,24752,24752, 0, 0, 0, 24752, 0,24752,24752, 0,24752, 0,24752, 0,24752, 24752,24752,24753, 0,24753, 0, 0, 0, 0, 0, 0,24753, 0, 0,24753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24753, 0, 0, 0, 0, 0, 0,24753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24753, 0, 24753, 0,24753, 0, 0,24753,24753, 0, 0, 0, 24753, 0, 0,24753, 0,24753, 0,24753,24753,24753, 24753,24753,24765,24765, 0,24765,24765,24765,24765,24765, 24765,24765,24765,24765, 0,24765,24765, 0, 0, 0, 0, 0, 0, 0, 0, 0,24765,24765,24765,24765, 24765,24765,24765, 0, 0, 0, 0, 0,24765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24765,24765,24765,24766, 24766, 0,24766,24766,24766,24766,24766,24766,24766,24766, 24766, 0,24766,24766, 0, 0, 0, 0, 0, 0, 0, 0, 0,24766,24766,24766,24766,24766,24766,24766, 24766, 0, 0, 0, 0,24766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24766,24766,24766,24796,24796, 0,24796, 24796,24796,24796,24796,24796,24796,24796,24796, 0,24796, 24796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24796,24796,24796,24796,24796,24796,24796, 0, 0, 0, 0, 0,24796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24796,24796,24796,24796,24797,24797, 0,24797,24797,24797, 24797,24797,24797,24797,24797,24797, 0,24797,24797, 0, 0, 0, 0, 0, 0, 0, 0, 0,24797,24797, 24797,24797,24797,24797,24797,24797, 0, 0, 0, 0, 24797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24797,24797, 24797,24797,24814,24814, 0,24814,24814,24814,24814,24814, 24814,24814, 0,24814,24814,24814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24814,24814,24814,24814, 24814,24814,24814, 0, 0, 0, 0, 0,24814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24814,24814,24814,24814, 24815,24815, 0,24815,24815,24815,24815,24815,24815,24815, 0,24815,24815,24815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24815,24815,24815,24815,24815,24815, 24815,24815, 0, 0, 0, 0,24815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24815,24815,24815,24815,24819,24819, 24819,24819,24819,24819,24819,24819,24819, 0, 0, 0, 0, 0, 0, 0,24819,24819,24819,24819,24819,24819, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24819,24819,24819,24819,24819,24819,24826,24826, 0, 24826,24826,24826,24826,24826,24826,24826,24826,24826,24826, 24826,24826,24826,24826,24826,24826,24826,24826,24826,24826, 24826,24826,24826,24826,24826,24826,24826,24826,24826,24826, 24826,24826,24826,24826,24826,24826,24826,24826,24826,24826, 24826,24826,24826,24826,24826,24826,24826,24826,24826,24826, 24826,24826,24826,24826,24826,24826,24826,24826,24826,24826, 24826,24826,24826,24826,24826,24826,24826,24826,24826,24826, 24826,24826,24826,24826,24826,24826,24826,24826,24826,24826, 24834,24834,24834,24834,24834,24834,24834,24834,24834,24834, 0, 0, 0, 0, 0, 0,24834,24834,24834,24834, 24834,24834, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24834,24834,24834,24834,24834,24834,24836, 24836,24836,24836,24836,24836,24836,24836,24836,24836, 0, 0, 0, 0, 0, 0,24836,24836,24836,24836,24836, 24836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24836,24836,24836,24836,24836,24836,24839,24839, 24839,24839,24839,24839,24839,24839,24839,24839, 0, 0, 0, 0, 0, 0,24839,24839,24839,24839,24839,24839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24839, 0, 0, 0,24839,24839,24839,24839,24839,24839,24845,24845,24845, 24845,24845,24845,24845,24845,24845,24845, 0, 0, 0, 0, 0, 0,24845,24845,24845,24845,24845,24845, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24845,24845,24845,24845,24845,24845,24848,24848,24848,24848, 24848,24848,24848,24848,24848,24848, 0, 0, 0, 0, 0, 0,24848,24848,24848,24848,24848,24848, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24848, 24848,24848,24848,24848,24848,24856,24856,24856,24856,24856, 24856,24856,24856,24856,24856, 0, 0, 0, 0, 0, 0,24856,24856,24856,24856,24856,24856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24856,24856, 24856,24856,24856,24856,24859,24859,24859,24859,24859,24859, 24859,24859,24859,24859, 0, 0, 0, 0, 0, 0, 24859,24859,24859,24859,24859,24859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24859,24859,24859, 24859,24859,24859,24867,24867,24867,24867,24867,24867,24867, 24867,24867, 0, 0, 0, 0, 0, 0, 0,24867, 24867,24867,24867,24867,24867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24867,24867,24867,24867, 24867,24867,24872,24872,24872,24872,24872,24872,24872,24872, 24872,24872, 0, 0, 0, 0, 0, 0,24872,24872, 24872,24872,24872,24872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24872,24872,24872,24872,24872, 24872,24874,24874,24874,24874,24874,24874,24874,24874,24874, 0, 0, 0, 0, 0, 0, 0,24874,24874,24874, 24874,24874,24874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24874,24874,24874,24874,24874,24874, 24882, 0,24882,24882,24882,24882,24882,24882,24882,24882, 24882,24882, 0, 0, 0, 0, 0, 0,24882,24882, 24882,24882,24882,24882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24882,24882,24882,24882,24882, 24882,24886,24886, 0,24886,24886,24886,24886,24886,24886, 24886,24886,24886, 0,24886,24886, 0, 0, 0, 0, 0, 0, 0, 0, 0,24886,24886,24886,24886,24886, 24886,24886, 0, 0, 0, 0, 0,24886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24886,24886,24886,24886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24886,24888, 24888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24888,24888,24888,24888,24888,24888,24888,24888,24888, 0,24888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24888,24894,24894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24894, 24894,24894,24894,24894,24894,24894,24894,24894, 0,24894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24894,24898,24898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24898,24898,24898, 24898,24898,24898,24898,24898,24898, 0,24898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24898,24898,24926, 0,24926, 0, 0, 0, 0, 0, 0,24926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24926, 0, 0, 0, 0, 0, 0,24926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24926, 0,24926, 0,24926, 0, 0,24926,24926, 0, 0, 0,24926, 0, 0,24926, 0,24926, 0,24926, 0,24926,24926,24926,24926,24927, 0,24927, 0, 0, 0, 0, 0, 0,24927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24927, 0, 0, 0, 0, 0, 0,24927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24927, 0,24927, 0,24927, 0,24927,24927,24927, 0, 0, 0,24927, 0,24927,24927, 0,24927, 0, 24927, 0,24927,24927,24927,24928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24928, 0, 0, 0, 0, 0, 0,24928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24928, 0,24928, 0,24928, 0, 0,24928,24928, 0, 0, 0,24928, 0, 0,24928, 0,24928, 0,24928, 0, 24928,24928,24928,24929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24929, 0, 0, 0, 0, 0, 0,24929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24929, 0,24929, 0,24929, 0, 0,24929,24929, 0, 0, 0,24929, 0, 0,24929, 0,24929, 0,24929, 0,24929,24929, 24929,24930, 0,24930, 0, 0, 0, 0, 0, 0, 24930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24930, 0, 0, 0, 0, 0, 0,24930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24930, 0,24930, 0,24930, 0, 0,24930,24930, 0, 0, 0,24930, 0, 0,24930, 0,24930, 0,24930, 0,24930,24930, 24930,24930,24931, 0,24931, 0, 0, 0, 0, 0, 0,24931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24931, 0, 0, 0, 0, 0, 0,24931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24931, 0, 24931, 0,24931, 0,24931,24931,24931, 0, 0, 0, 24931, 0,24931,24931, 0,24931, 0,24931, 0,24931, 24931,24931,24932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24932, 0, 0, 0, 0, 0, 0,24932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24932, 0,24932, 0, 24932, 0, 0,24932,24932, 0, 0, 0,24932, 0, 0,24932, 0,24932, 0,24932, 0,24932,24932,24932, 24933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24933, 0, 0, 0, 0, 0, 0,24933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24933, 0,24933, 0,24933, 0, 0,24933,24933, 0, 0, 0,24933, 0, 0,24933, 0,24933, 0,24933, 0,24933,24933,24933,24934, 0, 24934, 0, 0, 0, 0, 0, 0,24934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24934, 0, 0, 0, 0, 0, 0,24934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24934, 0,24934, 0,24934, 0, 0,24934,24934, 0, 0, 0,24934, 0, 0,24934, 0,24934, 0,24934, 0,24934,24934,24934,24934,24935, 0,24935, 0, 0, 0, 0, 0, 0,24935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24935, 0, 0, 0, 0, 0, 0, 24935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24935, 0,24935, 0,24935, 0,24935,24935,24935, 0, 0, 0,24935, 0,24935, 24935, 0,24935, 0,24935, 0,24935,24935,24935,24936, 0, 0, 0, 0, 0, 0, 0, 0, 0,24936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24936, 0, 0, 0, 0, 0, 0,24936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24936, 0,24936, 0,24936, 0, 0, 24936,24936, 0, 0, 0,24936, 0, 0,24936, 0, 24936, 0,24936, 0,24936,24936,24936,24937, 0, 0, 0, 0, 0, 0, 0, 0, 0,24937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24937, 0, 0, 0, 0, 0, 0,24937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24937, 0,24937, 0,24937, 0, 0,24937,24937, 0, 0, 0,24937, 0, 0,24937, 0,24937, 0, 24937, 0,24937,24937,24937,24938, 0, 0, 0, 0, 0, 0, 0, 0, 0,24938,24938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24938, 0, 0, 0, 0, 0, 0,24938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24938, 0,24938, 0,24938, 0, 0,24938,24938, 0, 0, 0,24938, 0, 0,24938, 0,24938, 0,24938, 0, 24938,24938,24938,24943, 0,24943, 0, 0, 0, 0, 0, 0,24943, 0, 0,24943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24943, 0, 0, 0, 0, 0, 0,24943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24943, 0,24943, 0,24943, 0, 0,24943,24943, 0, 0, 0,24943, 0,24943,24943, 0,24943, 0,24943, 0, 24943,24943,24943,24946, 0,24946, 0, 0, 0, 0, 0, 0,24946, 0, 0,24946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24946, 0, 0, 0, 0, 0, 0,24946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24946, 0,24946, 0,24946, 0, 0,24946,24946, 0, 0, 0,24946, 0, 0,24946, 0,24946, 0,24946, 0, 24946,24946,24946,24959, 0, 0, 0, 0, 0, 0, 0, 0, 0,24959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24959, 0, 0, 0, 0, 0, 0,24959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24959, 0,24959, 0,24959, 0, 0,24959,24959, 0, 0, 0,24959, 0, 0,24959, 0,24959, 0,24959, 0,24959,24959, 24959,24960, 0, 0, 0, 0, 0, 0, 0, 0, 0,24960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24960, 0, 0, 0, 0, 0, 0, 24960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24960,24960, 0,24960, 0,24960, 0, 0,24960,24960, 0, 0, 0,24960, 0, 0, 24960, 0,24960, 0,24960, 0,24960,24960,24960,24960, 24961, 0,24961, 0, 0, 0, 0, 0, 0,24961, 0, 0,24961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24961, 0, 0, 0, 0, 0, 0,24961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24961, 0,24961,24961, 24961, 0, 0,24961,24961, 0, 0, 0,24961, 0, 0,24961, 0,24961,24961,24961, 0,24961,24961,24961, 24962, 0,24962, 0, 0, 0, 0, 0, 0,24962, 24962, 0,24962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24962, 0, 0, 0, 0, 0, 0,24962, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24962, 0,24962, 0, 24962, 0, 0,24962,24962, 0, 0, 0,24962, 0, 0,24962, 0,24962, 0,24962, 0,24962,24962,24962, 24966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24966, 0, 0, 0, 0, 0, 0,24966, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24966, 0,24966, 0,24966, 0, 0,24966,24966, 0, 0, 0,24966, 0, 0,24966, 0,24966, 0,24966, 0,24966,24966,24966,24967, 0, 0, 0, 0, 0, 0, 0, 0, 0,24967, 0, 0, 0, 0,24967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24967, 0, 0, 0, 0, 0, 0,24967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24967, 0,24967, 0,24967, 0, 0,24967, 24967, 0, 0, 0,24967, 0, 0,24967, 0,24967, 0,24967, 0,24967,24967,24967,24972, 0,24972, 0, 0, 0, 0, 0, 0,24972, 0, 0,24972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24972, 0, 0, 0, 0, 0, 0,24972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24972, 0,24972, 0,24972, 0, 0,24972, 24972, 0, 0, 0,24972, 0,24972,24972, 0,24972, 0,24972, 0,24972,24972,24972,24975, 0,24975, 0, 0, 0, 0, 0, 0,24975, 0, 0,24975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24975, 0, 0, 0, 0, 0, 0,24975, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24975, 0,24975, 0,24975, 0, 0,24975, 24975, 0, 0, 0,24975, 0, 0,24975, 0,24975, 0,24975, 0,24975,24975,24975,24989, 0,24989, 0, 0, 0, 0, 0, 0,24989, 0, 0,24989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24989, 0, 0, 0, 0, 0, 0,24989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24989, 0,24989, 0,24989, 0, 0,24989, 24989, 0, 0, 0,24989, 0, 0,24989, 0,24989, 0,24989, 0,24989,24989,24989,24990, 0,24990, 0, 0, 0, 0, 0, 0,24990, 0, 0,24990,24990, 24990,24990,24990,24990,24990,24990,24990,24990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24990, 0, 0, 0, 0, 0, 0,24990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24990, 0,24990, 0,24990, 0, 0,24990, 24990, 0, 0, 0,24990, 0, 0,24990, 0,24990, 0,24990, 0,24990,24990,24990,24991,24991, 0, 0, 0, 0, 0, 0, 0,24991,24991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24991, 0, 0, 0, 0, 0, 0,24991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24991, 0,24991, 0,24991, 0, 0,24991,24991, 0, 0, 0,24991, 0, 0,24991, 0,24991, 0,24991, 0,24991,24991,24991,24992, 0, 0, 0, 0, 0, 0, 0, 0, 0,24992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24992, 0, 0, 0, 0, 0, 0,24992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24992, 0, 24992, 0,24992, 0, 0,24992,24992, 0, 0, 0, 24992, 0, 0,24992, 0,24992, 0,24992, 0,24992, 24992,24992,24993, 0, 0, 0, 0, 0, 0, 0, 0, 0,24993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24993, 0, 0, 0, 0, 0, 0,24993, 0, 0, 0, 0, 0, 0,24993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,24993, 0,24993, 0, 24993, 0, 0,24993,24993, 0, 0, 0,24993, 0, 0,24993, 0,24993, 0,24993, 0,24993,24993,24993, 25007,25007,25007,25007,25007,25007,25007,25007,25007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25007, 0, 0, 0, 0, 0, 0, 0, 0,25007, 0, 0, 0, 0, 0, 0, 0,25007, 0, 0,25007,25014,25014,25014,25014, 25014,25014,25014,25014,25014,25014,25014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25014, 0, 0, 0, 0,25014, 25018, 0,25018, 0, 0, 0, 0, 0, 0,25018, 0, 0,25018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25018, 0, 0, 0, 0, 0, 0,25018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25018, 0,25018, 0, 25018, 0, 0,25018,25018, 0, 0, 0,25018, 0, 0,25018, 0,25018, 0,25018, 0,25018,25018,25018, 25019, 0,25019, 0, 0, 0, 0, 0, 0,25019, 0, 0,25019,25019,25019,25019,25019,25019,25019,25019, 25019,25019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25019, 0, 0, 0, 0, 0, 0,25019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25019, 0,25019, 0, 25019, 0, 0,25019,25019, 0, 0, 0,25019, 0, 0,25019, 0,25019, 0,25019, 0,25019,25019,25019, 25020,25020, 0, 0, 0, 0, 0, 0, 0,25020, 25020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25020, 0, 0, 0, 0, 0, 0,25020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25020, 0,25020, 0,25020, 0, 0,25020,25020, 0, 0, 0,25020, 0, 0,25020, 0,25020, 0,25020, 0,25020,25020,25020,25021, 0, 0, 0, 0, 0, 0, 0, 0, 0,25021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25021, 0, 0, 0, 0, 0, 0,25021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25021, 0,25021, 0,25021, 0, 0,25021, 25021, 0, 0, 0,25021, 0, 0,25021, 0,25021, 0,25021, 0,25021,25021,25021,25022, 0, 0, 0, 0, 0, 0, 0, 0, 0,25022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25022, 0, 0, 0, 0, 0, 0,25022, 0, 0, 0, 0, 0, 0,25022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25022, 0,25022, 0,25022, 0, 0,25022,25022, 0, 0, 0,25022, 0, 0,25022, 0,25022, 0,25022, 0,25022,25022,25022,25036,25036,25036,25036,25036,25036, 25036,25036,25036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25036, 0, 0, 0, 0, 0, 0, 0, 0,25036, 0, 0, 0, 0, 0, 0, 0,25036, 0, 0,25036, 25043,25043,25043,25043,25043,25043,25043,25043,25043,25043, 25043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25043, 0, 0, 0, 0,25043,25047, 0,25047, 0, 0, 0, 0, 0, 0,25047, 0, 0,25047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25047, 0, 0, 0, 0, 0, 0,25047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25047, 0,25047, 0,25047, 0, 0,25047,25047, 0, 0, 0,25047, 0, 0,25047, 0,25047, 0,25047, 0,25047,25047,25047,25048, 0,25048, 0, 0, 0, 0, 0, 0,25048, 0, 0,25048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25048, 0, 0, 0, 0, 0, 0,25048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25048, 0,25048, 0,25048, 0, 0,25048,25048, 0, 0, 0,25048, 0, 0,25048, 0,25048, 0,25048, 0,25048,25048,25048,25050, 0, 0, 0, 0, 0, 0, 0, 0, 0,25050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25050, 0, 0, 0, 0, 0, 0,25050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25050, 0, 25050, 0,25050, 0, 0,25050,25050, 0, 0, 0, 25050, 0,25050,25050, 0,25050, 0,25050, 0,25050, 25050,25050,25051, 0, 0, 0, 0, 0, 0, 0, 0, 0,25051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25051, 0, 0, 0, 0, 0, 0,25051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25051, 0,25051, 0, 25051, 0, 0,25051,25051, 0, 0, 0,25051, 0, 0,25051, 0,25051, 0,25051,25051,25051,25051,25051, 25055, 0,25055, 0, 0, 0, 0, 0, 0,25055, 0, 0,25055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25055, 0, 0, 0, 0, 0, 0,25055, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25055, 0,25055,25055, 25055, 0, 0,25055,25055, 0, 0, 0,25055, 0, 0,25055, 0,25055,25055,25055, 0,25055,25055,25055, 25056, 0,25056, 0, 0, 0, 0, 0, 0,25056, 25056, 0,25056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25056, 0, 0, 0, 0, 0, 0,25056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25056, 0,25056, 0, 25056, 0, 0,25056,25056, 0, 0, 0,25056, 0, 0,25056, 0,25056, 0,25056, 0,25056,25056,25056, 25060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25060, 0, 0, 0, 0, 0, 0,25060, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25060, 0,25060, 0,25060, 0, 0,25060,25060, 0, 0, 0,25060, 0,25060,25060, 0,25060, 0,25060, 0,25060,25060,25060,25061, 0, 0, 0, 0, 0, 0, 0, 0, 0,25061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25061, 0, 0, 0, 0, 0, 0,25061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25061, 0,25061, 0,25061, 0, 0,25061, 25061, 0, 0, 0,25061, 0, 0,25061, 0,25061, 0,25061,25061,25061,25061,25061,25065, 0,25065, 0, 0, 0, 0, 0, 0,25065, 0, 0,25065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25065, 0, 0, 0, 0, 0, 0,25065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25065, 0,25065,25065,25065, 0, 0,25065, 25065, 0, 0, 0,25065, 0, 0,25065, 0,25065, 25065,25065, 0,25065,25065,25065,25066, 0,25066, 0, 0, 0, 0, 0, 0,25066,25066, 0,25066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25066, 0, 0, 0, 0, 0, 0,25066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25066, 0,25066, 0,25066, 0, 0,25066, 25066, 0, 0, 0,25066, 0, 0,25066, 0,25066, 0,25066, 0,25066,25066,25066,25109,25109, 0,25109, 25109,25109,25109,25109,25109,25109,25109,25109, 0,25109, 25109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25109,25109,25109,25109,25109,25109,25109, 0, 0, 0, 0, 0,25109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25109,25109,25109,25109,25110,25110, 0,25110,25110,25110, 25110,25110,25110,25110,25110,25110, 0,25110,25110, 0, 0, 0, 0, 0, 0, 0, 0, 0,25110,25110, 25110,25110,25110,25110,25110, 0, 0, 0, 0, 0, 25110, 0, 0,25110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25110,25110, 25110,25110,25131,25131, 0,25131,25131,25131,25131,25131, 25131,25131, 0,25131,25131,25131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25131,25131,25131,25131, 25131,25131,25131, 0, 0, 0, 0, 0,25131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25131,25131,25131,25131, 25132,25132, 0,25132,25132,25132,25132,25132,25132,25132, 0,25132,25132,25132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25132,25132,25132,25132,25132,25132, 25132,25132, 0, 0, 0, 0,25132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25132,25132,25132,25132,25141,25141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25141,25141,25141,25141,25141,25141,25141,25141,25141, 0, 25141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25141,25144,25144,25144,25144,25144,25144,25144,25144, 25144,25144, 0, 0, 0, 0, 0, 0,25144,25144, 25144,25144,25144,25144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25144,25144,25144,25144,25144, 25144,25147,25147,25147,25147,25147,25147,25147,25147,25147, 25147, 0, 0, 0, 0, 0, 0,25147,25147,25147, 25147,25147,25147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25147,25147,25147,25147,25147,25147, 25149,25149,25149,25149,25149,25149,25149,25149,25149, 0, 0, 0, 0, 0, 0, 0,25149,25149,25149,25149, 25149,25149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25149, 0, 0, 0,25149,25149,25149,25149,25149,25149,25153, 25153,25153,25153,25153,25153,25153,25153,25153,25153, 0, 0, 0, 0, 0, 0,25153,25153,25153,25153,25153, 25153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25153,25153,25153,25153,25153,25153,25155,25155, 25155,25155,25155,25155,25155,25155,25155, 0, 0, 0, 0, 0, 0, 0,25155,25155,25155,25155,25155,25155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25155,25155,25155,25155,25155,25155,25165,25165,25165, 25165,25165,25165,25165,25165,25165,25165, 0, 0, 0, 0, 0, 0,25165,25165,25165,25165,25165,25165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25165,25165,25165,25165,25165,25165,25167,25167,25167,25167, 25167,25167,25167,25167,25167, 0, 0, 0, 0, 0, 0, 0,25167,25167,25167,25167,25167,25167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25167, 25167,25167,25167,25167,25167,25179,25179,25179,25179,25179, 25179,25179,25179,25179,25179, 0, 0, 0, 0, 0, 0,25179,25179,25179,25179,25179,25179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25179,25179, 25179,25179,25179,25179,25181,25181,25181,25181,25181,25181, 25181,25181,25181, 0, 0, 0, 0, 0, 0, 0, 25181,25181,25181,25181,25181,25181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25181,25181,25181, 25181,25181,25181,25189, 0,25189,25189,25189,25189,25189, 25189,25189,25189,25189,25189, 0, 0, 0, 0, 0, 0,25189,25189,25189,25189,25189,25189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25189,25189, 25189,25189,25189,25189,25193,25193,25193,25193,25193,25193, 25193,25193,25193,25193, 0, 0, 0, 0, 0, 0, 25193,25193,25193,25193,25193,25193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25193,25193,25193, 25193,25193,25193,25196,25196,25196,25196,25196,25196,25196, 25196,25196,25196, 0, 0, 0, 0, 0, 0,25196, 25196,25196,25196,25196,25196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25196,25196,25196,25196, 25196,25196,25204,25204,25204,25204,25204,25204,25204,25204, 25204, 0, 0, 0, 0, 0, 0, 0,25204,25204, 25204,25204,25204,25204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25204,25204,25204,25204,25204, 25204,25206,25206,25206,25206,25206,25206,25206,25206,25206, 25206, 0, 0, 0, 0, 0, 0,25206,25206,25206, 25206,25206,25206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25206,25206,25206,25206,25206,25206, 25209,25209, 0,25209,25209,25209,25209,25209,25209,25209, 25209,25209, 0,25209,25209, 0, 0, 0, 0, 0, 0, 0, 0, 0,25209,25209,25209,25209,25209,25209, 25209, 0, 0, 0, 0, 0,25209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25209,25209,25209,25209,25244, 0, 25244,25244, 0, 0, 0, 0, 0,25244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25244, 0,25244, 0, 0, 0, 0,25244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25244, 0,25244, 0,25244, 0, 0,25244,25244, 0, 0, 0,25244, 0, 0,25244, 0,25244, 0,25244, 0,25244,25244,25244,25245, 0, 25245, 0, 0, 0, 0, 0, 0,25245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25245, 0, 0, 0, 0, 0, 0,25245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25245, 0,25245, 0,25245, 0, 0,25245,25245, 0, 0, 0,25245, 0, 0,25245, 0,25245, 0,25245, 0,25245,25245,25245,25246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25246, 0, 0, 0, 0, 0, 0,25246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25246, 0,25246, 0,25246, 0, 0,25246, 25246, 0, 0, 0,25246, 0, 0,25246, 0,25246, 0,25246, 0,25246,25246,25246,25246,25247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25247, 0, 0, 0, 0, 0, 0,25247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25247, 0,25247, 0,25247, 0,25247,25247,25247, 0, 0, 0,25247, 0,25247,25247, 0,25247, 0, 25247, 0,25247,25247,25247,25248, 0,25248,25248, 0, 0, 0, 0, 0,25248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25248, 0,25248, 0, 0, 0, 0,25248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25248, 0,25248, 0,25248, 0, 0,25248,25248, 0, 0, 0,25248, 0, 0,25248, 0,25248, 0, 25248, 0,25248,25248,25248,25249, 0,25249, 0, 0, 0, 0, 0, 0,25249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25249, 0, 0, 0, 0, 0, 0,25249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25249, 0,25249, 0,25249, 0, 0,25249,25249, 0, 0, 0,25249, 0, 0,25249, 0,25249, 0, 25249, 0,25249,25249,25249,25250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25250, 0, 0, 0, 0, 0, 0,25250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25250, 0,25250, 0,25250, 0, 0,25250,25250, 0, 0, 0,25250, 0, 0,25250, 0,25250, 0,25250, 0, 25250,25250,25250,25250,25251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25251, 0, 0, 0, 0, 0, 0,25251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25251, 0, 25251, 0,25251, 0,25251,25251,25251, 0, 0, 0, 25251, 0,25251,25251, 0,25251, 0,25251, 0,25251, 25251,25251,25252, 0,25252,25252, 0, 0, 0, 0, 0,25252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25252, 0,25252, 0, 0, 0, 0,25252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25252, 0, 25252, 0,25252, 0, 0,25252,25252, 0, 0, 0, 25252, 0, 0,25252, 0,25252, 0,25252, 0,25252, 25252,25252,25253, 0,25253, 0, 0, 0, 0, 0, 0,25253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25253, 0, 0, 0, 0, 0, 0,25253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25253, 0, 25253, 0,25253, 0, 0,25253,25253, 0, 0, 0, 25253, 0, 0,25253, 0,25253, 0,25253, 0,25253, 25253,25253,25254, 0, 0, 0, 0, 0, 0, 0, 0, 0,25254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25254, 0, 0, 0, 0, 0, 0, 0, 0,25254, 0, 0, 0, 0, 0, 0,25254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25254, 0,25254, 0, 25254, 0, 0,25254,25254, 0, 0, 0,25254, 0, 25254,25254, 0,25254, 0,25254, 0,25254,25254,25254, 25255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25255, 0, 0, 0, 0, 0, 0,25255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25255, 0,25255, 0,25255, 0, 0,25255,25255, 0, 0, 0,25255, 0, 0,25255, 0,25255, 0,25255, 0,25255,25255,25255,25256, 0, 0, 0, 0, 0, 0, 0, 0, 0,25256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25256, 0, 0, 0, 0, 0, 0,25256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25256, 0,25256, 0,25256, 0, 0,25256, 25256, 0, 0, 0,25256,25256, 0,25256, 0,25256, 0,25256, 0,25256,25256,25256,25257, 0, 0, 0, 0, 0, 0, 0, 0, 0,25257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25257, 0, 0, 0, 0, 0, 0,25257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25257, 0,25257, 0,25257, 0, 0,25257,25257, 0, 0, 0,25257,25257, 0,25257, 0,25257, 0,25257, 0,25257,25257,25257,25259, 0,25259, 0, 0, 0, 0, 0, 0,25259, 0, 0,25259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25259, 0, 0, 0, 0, 0, 0,25259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25259, 0,25259,25259,25259, 0, 0,25259,25259, 0, 0, 0,25259, 0, 0,25259, 0,25259, 0,25259, 0,25259,25259,25259,25262, 0,25262, 0, 0, 0, 0, 0, 0,25262, 0, 0,25262, 0, 0,25262, 0,25262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25262, 0, 25262, 0, 0, 0, 0,25262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25262, 0,25262, 0,25262, 0, 0,25262,25262, 0, 0, 0,25262, 0, 0,25262, 0,25262, 0,25262, 0,25262,25262,25262,25273, 0,25273, 0, 0, 0, 0, 0, 0,25273, 0, 0,25273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25273, 0, 0, 0, 0, 0, 0,25273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25273, 0,25273, 0,25273, 0, 0,25273,25273, 0, 0, 0,25273, 0, 0,25273, 0,25273, 0,25273, 0,25273,25273,25273,25274, 0,25274, 0, 0, 0, 0, 0, 0,25274, 0, 0,25274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25274, 0, 0, 0, 0, 0, 0,25274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25274, 0,25274,25274,25274, 0, 0,25274,25274, 0, 0, 0,25274,25274, 0,25274, 0,25274, 0,25274, 0,25274,25274,25274,25278, 0, 0, 0, 0, 0, 0, 0, 0, 0,25278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25278, 0, 0, 0, 0, 0, 0,25278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25278, 0, 25278, 0,25278, 0, 0,25278,25278, 0, 0, 0, 25278, 0, 0,25278, 0,25278, 0,25278, 0,25278, 25278,25278,25279, 0, 0, 0, 0, 0, 0, 0, 0, 0,25279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25279, 0, 0, 0, 0, 0, 0,25279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25279, 0,25279, 0, 25279, 0, 0,25279,25279, 0, 0, 0,25279,25279, 0,25279, 0,25279, 0,25279, 0,25279,25279,25279, 25280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25280, 0, 0, 0, 0, 0, 0,25280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25280, 0,25280, 0,25280, 0, 0,25280,25280, 0, 0, 0,25280,25280, 0,25280, 0,25280, 0,25280, 0,25280,25280,25280,25283, 0, 25283, 0, 0, 0, 0, 0, 0,25283, 0, 0, 25283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25283, 0, 0, 0, 0, 0, 0,25283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25283, 0,25283,25283,25283, 0, 0,25283,25283, 0, 0, 0,25283, 0, 0,25283, 0,25283, 0,25283, 0,25283,25283,25283,25286, 0, 25286, 0, 0, 0, 0, 0, 0,25286, 0, 0, 25286, 0, 0,25286, 0,25286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25286, 0,25286, 0, 0, 0, 0,25286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25286, 0,25286, 0,25286, 0, 0,25286,25286, 0, 0, 0,25286, 0, 0,25286, 0,25286, 0,25286, 0,25286,25286,25286,25298, 0, 25298, 0, 0, 0, 0, 0, 0,25298, 0, 0, 25298, 0, 0,25298, 0,25298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25298, 0,25298, 0, 0, 0, 0,25298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25298, 0,25298, 0,25298, 0, 0,25298,25298, 0, 0, 0,25298, 0, 0,25298, 0,25298, 0,25298, 0,25298,25298,25298,25299, 0, 25299,25299, 0, 0, 0, 0, 0,25299, 0, 0, 25299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25299, 0, 0, 0, 0, 0, 0,25299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25299, 0,25299, 0,25299, 0, 0,25299,25299, 0, 0, 0,25299, 0, 0,25299, 0,25299, 0,25299, 0,25299,25299,25299,25300, 0, 0, 0, 0, 0, 0, 0, 0, 0,25300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25300, 0, 0, 0, 0, 0, 0,25300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25300, 0,25300, 0,25300, 0, 0,25300, 25300, 0, 0, 0,25300, 0, 0,25300, 0,25300, 0,25300, 0,25300,25300,25300,25301, 0, 0, 0, 0, 0, 0, 0, 0, 0,25301,25301,25301,25301, 25301,25301,25301,25301,25301,25301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25301, 0, 0, 0, 0, 0, 0,25301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25301, 0,25301, 0,25301, 0, 0,25301,25301, 0, 0, 0,25301, 0, 0,25301, 0,25301, 0,25301, 0,25301,25301,25301,25302,25302,25302,25302,25302,25302, 25302,25302,25302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25302, 0, 0, 0, 0, 0, 0, 0, 0,25302, 0, 0, 0, 0, 0, 0, 0,25302, 0, 0,25302, 25309,25309,25309,25309,25309,25309,25309,25309,25309,25309, 25309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25309, 0, 0, 0, 0,25309,25322, 0,25322, 0, 0, 0, 0, 0, 0,25322, 0, 0,25322, 0, 0,25322, 0,25322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25322, 0, 25322, 0, 0, 0, 0,25322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25322, 0,25322, 0,25322, 0, 0,25322,25322, 0, 0, 0,25322, 0, 0,25322, 0,25322, 0,25322, 0,25322,25322,25322,25323, 0,25323,25323, 0, 0, 0, 0, 0,25323, 0, 0,25323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25323, 0, 0, 0, 0, 0, 0,25323, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25323, 0,25323, 0,25323, 0, 0,25323,25323, 0, 0, 0,25323, 0, 0,25323, 0,25323, 0,25323, 0,25323,25323,25323,25324, 0, 0, 0, 0, 0, 0, 0, 0, 0,25324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25324, 0, 0, 0, 0, 0, 0,25324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25324, 0, 25324, 0,25324, 0, 0,25324,25324, 0, 0, 0, 25324, 0, 0,25324, 0,25324, 0,25324, 0,25324, 25324,25324,25325, 0, 0, 0, 0, 0, 0, 0, 0, 0,25325,25325,25325,25325,25325,25325,25325,25325, 25325,25325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25325, 0, 0, 0, 0, 0, 0,25325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25325, 0,25325, 0, 25325, 0, 0,25325,25325, 0, 0, 0,25325, 0, 0,25325, 0,25325, 0,25325, 0,25325,25325,25325, 25326,25326,25326,25326,25326,25326,25326,25326,25326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25326, 0, 0, 0, 0, 0, 0, 0, 0,25326, 0, 0, 0, 0, 0, 0, 0,25326, 0, 0,25326,25333,25333,25333,25333, 25333,25333,25333,25333,25333,25333,25333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25333, 0, 0, 0, 0,25333, 25346, 0,25346, 0, 0, 0, 0, 0, 0,25346, 0, 0,25346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25346, 0, 0, 0, 0, 0, 0, 0, 0,25346, 0, 0, 0, 0, 0, 0,25346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25346, 0,25346, 0, 25346, 0, 0,25346,25346, 0, 0, 0,25346, 0, 25346,25346, 0,25346, 0,25346, 0,25346,25346,25346, 25347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25347, 0, 0, 0, 0, 0, 0,25347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25347, 0,25347,25347,25347, 0, 0,25347,25347, 0, 0, 0,25347, 0, 0,25347, 0,25347,25347,25347, 0,25347,25347,25347,25348, 0, 0, 0, 0, 0, 0, 0,25348, 0,25348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25348, 0, 0, 0, 0, 0, 0,25348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25348, 0,25348, 0,25348, 0, 0,25348, 25348, 0, 0, 0,25348, 0, 0,25348, 0,25348, 0,25348, 0,25348,25348,25348,25352, 0,25352, 0, 0, 0, 0, 0, 0,25352, 0, 0,25352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25352, 0, 0, 0, 0, 0, 0,25352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25352, 0,25352, 0,25352, 0, 0,25352, 25352, 0, 0, 0,25352, 0, 0,25352, 0,25352, 0,25352, 0,25352,25352,25352,25353, 0,25353, 0, 0, 0, 0, 0, 0,25353, 0, 0,25353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25353, 0, 0, 0, 0, 0, 0,25353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25353, 0,25353,25353,25353, 0, 0,25353, 25353, 0, 0, 0,25353,25353, 0,25353, 0,25353, 0,25353, 0,25353,25353,25353,25357, 0, 0, 0, 0, 0, 0, 0, 0, 0,25357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25357, 0, 0, 0, 0, 0, 0,25357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25357, 0,25357,25357,25357, 0, 0,25357,25357, 0, 0, 0,25357, 0, 0,25357, 0,25357,25357,25357, 0,25357,25357,25357,25358, 0, 0, 0, 0, 0, 0, 0,25358, 0,25358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25358, 0, 0, 0, 0, 0, 0,25358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25358, 0, 25358, 0,25358, 0, 0,25358,25358, 0, 0, 0, 25358, 0, 0,25358, 0,25358, 0,25358, 0,25358, 25358,25358,25362, 0,25362, 0, 0, 0, 0, 0, 0,25362, 0, 0,25362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25362, 0, 0, 0, 0, 0, 0,25362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25362, 0, 25362, 0,25362, 0, 0,25362,25362, 0, 0, 0, 25362, 0, 0,25362, 0,25362, 0,25362, 0,25362, 25362,25362,25363, 0,25363, 0, 0, 0, 0, 0, 0,25363, 0, 0,25363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25363, 0, 0, 0, 0, 0, 0,25363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25363, 0, 25363,25363,25363, 0, 0,25363,25363, 0, 0, 0, 25363,25363, 0,25363, 0,25363, 0,25363, 0,25363, 25363,25363,25368,25368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25368,25368,25368,25368,25368,25368, 25368,25368,25368, 0,25368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25368,25373,25373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25373,25373, 25373,25373,25373,25373,25373,25373,25373, 0,25373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25373, 25405,25405, 0,25405,25405,25405,25405,25405,25405,25405, 25405,25405, 0,25405,25405, 0, 0, 0, 0, 0, 0, 0, 0, 0,25405,25405,25405,25405,25405,25405, 25405, 0, 0, 0, 0, 0,25405, 0, 0, 0, 0, 0,25405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25405,25405,25405,25405,25407,25407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25407,25407,25407,25407,25407,25407,25407,25407,25407, 0, 25407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25407,25427,25427, 0,25427,25427,25427,25427,25427, 25427,25427, 0,25427,25427,25427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25427,25427,25427,25427, 25427,25427,25427, 0, 0, 0, 0, 0,25427, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25427,25427,25427,25427, 25428,25428, 0,25428,25428,25428,25428,25428,25428,25428, 0,25428,25428,25428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25428,25428,25428,25428,25428,25428, 25428,25428, 0, 0, 0, 0,25428, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25428,25428,25428,25428,25432,25432, 25432,25432,25432,25432,25432,25432,25432, 0, 0, 0, 0, 0, 0, 0,25432,25432,25432,25432,25432,25432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25432,25432,25432,25432,25432,25432,25434,25434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25434, 25434,25434,25434,25434,25434,25434,25434,25434, 0,25434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25434,25435,25435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25435,25435,25435,25435,25435,25435,25435, 25435,25435, 0,25435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25435,25442, 25442,25442,25442,25442,25442,25442,25442,25442,25442, 0, 0, 0, 0, 0, 0,25442,25442,25442,25442,25442, 25442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25442,25442,25442,25442,25442,25442,25444,25444, 25444,25444,25444,25444,25444,25444,25444,25444, 0, 0, 0, 0, 0, 0,25444,25444,25444,25444,25444,25444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25444,25444,25444,25444,25444,25444,25447,25447,25447, 25447,25447,25447,25447,25447,25447,25447, 0, 0, 0, 0, 0, 0,25447,25447,25447,25447,25447,25447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25447, 0, 0, 0, 25447,25447,25447,25447,25447,25447,25452,25452,25452,25452, 25452,25452,25452,25452,25452,25452, 0, 0, 0, 0, 0, 0,25452,25452,25452,25452,25452,25452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25452, 25452,25452,25452,25452,25452,25455,25455,25455,25455,25455, 25455,25455,25455,25455,25455, 0, 0, 0, 0, 0, 0,25455,25455,25455,25455,25455,25455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25455,25455, 25455,25455,25455,25455,25462,25462,25462,25462,25462,25462, 25462,25462,25462,25462, 0, 0, 0, 0, 0, 0, 25462,25462,25462,25462,25462,25462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25462,25462,25462, 25462,25462,25462,25465,25465,25465,25465,25465,25465,25465, 25465,25465,25465, 0, 0, 0, 0, 0, 0,25465, 25465,25465,25465,25465,25465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25465,25465,25465,25465, 25465,25465,25472,25472,25472,25472,25472,25472,25472,25472, 25472, 0, 0, 0, 0, 0, 0, 0,25472,25472, 25472,25472,25472,25472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25472,25472,25472,25472,25472, 25472,25473,25473,25473,25473,25473,25473,25473,25473,25473, 25473, 0, 0, 0, 0, 0, 0,25473,25473,25473, 25473,25473,25473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25473,25473,25473,25473,25473,25473, 25476,25476,25476,25476,25476,25476,25476,25476,25476,25476, 0, 0, 0, 0, 0, 0,25476,25476,25476,25476, 25476,25476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25476,25476,25476,25476,25476,25476,25483, 25483,25483,25483,25483,25483,25483,25483,25483, 0, 0, 0, 0, 0, 0, 0,25483,25483,25483,25483,25483, 25483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25483,25483,25483,25483,25483,25483,25484, 0, 25484,25484,25484,25484,25484,25484,25484,25484,25484,25484, 0, 0, 0, 0, 0, 0,25484,25484,25484,25484, 25484,25484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25484,25484,25484,25484,25484,25484,25491, 25491,25491,25491,25491,25491,25491,25491,25491,25491, 0, 0, 0, 0, 0, 0,25491,25491,25491,25491,25491, 25491, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25491,25491,25491,25491,25491,25491,25493,25493, 25493,25493,25493,25493,25493,25493,25493, 0, 0, 0, 0, 0, 0, 0,25493,25493,25493,25493,25493,25493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25493,25493,25493,25493,25493,25493,25501,25501,25501, 25501,25501,25501,25501,25501,25501,25501, 0, 0, 0, 0, 0, 0,25501,25501,25501,25501,25501,25501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25501,25501,25501,25501,25501,25501,25509,25509,25509,25509, 25509,25509,25509,25509,25509,25509, 0, 0, 0, 0, 0, 0,25509,25509,25509,25509,25509,25509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25509, 25509,25509,25509,25509,25509,25541, 0,25541, 0, 0, 0, 0, 0, 0,25541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25541, 0, 0, 0, 0, 0, 0,25541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25541, 0,25541, 0,25541, 0, 0,25541,25541, 0, 0, 0,25541, 0, 0,25541, 0,25541, 0, 25541, 0,25541,25541,25541,25542, 0,25542, 0, 0, 0, 0, 0, 0,25542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25542, 0, 0, 0, 0, 0, 0,25542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25542,25542, 0,25542, 0,25542, 0, 0,25542,25542, 0, 0, 0,25542, 0, 0,25542, 0,25542, 0, 25542, 0,25542,25542,25542,25542,25543,25543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25543, 0, 25543, 0, 0, 0, 0,25543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25543, 0,25543, 0,25543, 0, 0,25543,25543, 0, 0, 0,25543, 0, 0,25543, 0,25543, 0,25543, 0,25543,25543,25543,25544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25544, 0, 0, 0, 0, 0, 0,25544, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25544, 0, 25544, 0,25544, 0, 0,25544,25544, 0, 0, 0, 25544, 0, 0,25544, 0,25544, 0,25544, 0,25544, 25544,25544,25545, 0,25545, 0, 0, 0, 0, 0, 0,25545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25545, 0, 0, 0, 0, 0, 0,25545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25545, 0, 25545, 0,25545, 0, 0,25545,25545, 0, 0, 0, 25545, 0, 0,25545, 0,25545, 0,25545, 0,25545, 25545,25545,25546, 0,25546, 0, 0, 0, 0, 0, 0,25546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25546, 0, 0, 0, 0, 0, 0,25546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25546,25546, 0, 25546, 0,25546, 0, 0,25546,25546, 0, 0, 0, 25546, 0, 0,25546, 0,25546, 0,25546, 0,25546, 25546,25546,25546,25547,25547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25547, 0,25547, 0, 0, 0, 0,25547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25547, 0,25547, 0,25547, 0, 0,25547,25547, 0, 0, 0,25547, 0, 0,25547, 0,25547, 0,25547, 0,25547,25547, 25547,25548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25548, 0, 0, 0, 0, 0, 0, 25548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25548, 0,25548, 0,25548, 0, 0,25548,25548, 0, 0, 0,25548, 0, 0, 25548, 0,25548, 0,25548, 0,25548,25548,25548,25549, 0,25549, 0, 0, 0, 0, 0, 0,25549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25549, 0, 0, 0, 0, 0, 0, 25549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25549, 0,25549, 0,25549, 0, 0,25549,25549, 0, 0, 0,25549, 0, 0, 25549, 0,25549, 0,25549, 0,25549,25549,25549,25550, 0,25550, 0, 0, 0, 0, 0, 0,25550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25550, 0, 0, 0, 0, 0, 0, 25550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25550,25550, 0,25550, 0,25550, 0, 0,25550,25550, 0, 0, 0,25550, 0, 0, 25550, 0,25550, 0,25550, 0,25550,25550,25550,25550, 25551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25551, 0, 0, 0, 0, 0, 0,25551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25551, 0,25551, 0,25551, 0, 0,25551,25551, 0, 0, 0,25551, 0, 0,25551, 0,25551, 0,25551, 0,25551,25551,25551,25552, 0, 0, 0, 0, 0, 0, 0, 0, 0,25552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25552, 0,25552, 0, 0, 0, 0,25552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25552, 0,25552, 0,25552, 0, 0,25552, 25552, 0, 0, 0,25552, 0, 0,25552, 0,25552, 0,25552, 0,25552,25552,25552,25568, 0, 0, 0, 0, 0, 0, 0, 0, 0,25568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25568, 0, 0, 0, 0, 0, 0,25568, 0, 0, 0, 0, 0, 0,25568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25568, 0,25568,25568,25568, 0, 0,25568,25568, 0, 0, 0,25568, 0, 0,25568, 0,25568, 0,25568, 0,25568,25568,25568,25569, 0, 0, 0, 0, 0, 0, 0, 0, 0,25569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25569, 0, 0, 0, 0, 0, 0,25569, 0, 0,25569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25569, 0, 25569,25569,25569, 0, 0,25569,25569, 0, 0, 0, 25569, 0, 0,25569, 0,25569, 0,25569, 0,25569, 25569,25569,25571, 0,25571, 0, 0, 0, 0, 0, 0,25571, 0, 0,25571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25571, 0, 0, 0, 0, 0, 0,25571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25571, 0, 25571, 0,25571, 0, 0,25571,25571, 0, 0, 0, 25571, 0,25571,25571, 0,25571, 0,25571, 0,25571, 25571,25571,25571,25574, 0,25574, 0, 0, 0, 0, 0, 0,25574, 0, 0,25574,25574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25574, 0, 0, 0, 0, 0, 0,25574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25574, 0,25574, 0,25574, 0, 0,25574,25574, 0, 0, 0,25574, 0, 0,25574, 0,25574, 0,25574, 0, 25574,25574,25574,25581, 0,25581, 0, 0, 0, 0, 0, 0,25581, 0, 0,25581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25581, 0, 0, 0, 0, 0, 0, 0, 0,25581, 0, 0, 0, 0, 0, 0,25581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25581, 0,25581, 0,25581, 0, 0,25581,25581, 0, 0, 0,25581, 0,25581,25581, 0,25581, 0,25581, 0, 25581,25581,25581,25582, 0,25582, 0, 0, 0, 0, 0, 0,25582, 0, 0,25582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25582, 0, 0, 0, 0, 0, 0,25582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25582, 0,25582, 0,25582, 0, 0,25582,25582, 0, 0, 0,25582, 0, 0,25582, 0,25582, 0,25582, 0, 25582,25582,25582,25586, 0, 0, 0, 0, 0, 0, 0, 0, 0,25586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25586, 0, 0, 0, 0, 0, 0,25586, 0, 0, 0, 0, 0, 0,25586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25586, 0,25586, 25586,25586, 0, 0,25586,25586, 0, 0, 0,25586, 0, 0,25586, 0,25586, 0,25586, 0,25586,25586, 25586,25587, 0, 0, 0, 0, 0, 0, 0, 0, 0,25587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25587, 0, 0, 0, 0, 0, 0, 25587, 0, 0,25587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25587, 0,25587,25587,25587, 0, 0,25587,25587, 0, 0, 0,25587, 0, 0, 25587, 0,25587, 0,25587, 0,25587,25587,25587,25588, 0,25588, 0, 0, 0, 0, 0, 0,25588, 0, 0,25588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25588, 0, 0, 0, 0, 0, 0, 25588, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25588, 0,25588, 0,25588, 0, 0,25588,25588, 0, 0, 0,25588, 0, 0, 25588, 0,25588, 0,25588, 0,25588,25588,25588,25590, 0,25590, 0, 0, 0, 0, 0, 0,25590, 0, 0,25590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25590, 0, 0, 0, 0, 0, 0, 25590, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25590, 0,25590, 0,25590, 0, 0,25590,25590, 0, 0, 0,25590, 0,25590, 25590, 0,25590, 0,25590, 0,25590,25590,25590,25590, 25602, 0,25602, 0, 0, 0, 0, 0, 0,25602, 0, 0,25602,25602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25602, 0, 0, 0, 0, 0, 0,25602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25602, 0,25602, 0, 25602, 0, 0,25602,25602, 0, 0, 0,25602, 0, 0,25602, 0,25602, 0,25602, 0,25602,25602,25602, 25603, 0,25603, 0, 0, 0, 0, 0, 0,25603, 0, 0,25603,25603,25603,25603,25603,25603,25603,25603, 25603,25603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25603, 0, 0, 0, 0, 0, 0,25603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25603, 0,25603, 0, 25603, 0, 0,25603,25603, 0, 0, 0,25603, 0, 0,25603, 0,25603, 0,25603, 0,25603,25603,25603, 25604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25604, 0, 0,25604, 0,25604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25604, 0,25604, 0, 0, 0, 0,25604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25604, 0,25604, 0,25604, 0, 0,25604,25604, 0, 0, 0,25604, 0, 0,25604, 0,25604, 0,25604, 0,25604,25604,25604,25605,25605, 0, 0, 0, 0, 0, 0, 0, 0,25605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25605, 0, 0, 0, 0, 0, 0,25605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25605, 0,25605, 0,25605, 0, 0,25605, 25605, 0, 0, 0,25605, 0, 0,25605, 0,25605, 0,25605, 0,25605,25605,25605,25621, 0,25621, 0, 0, 0, 0, 0, 0,25621, 0, 0,25621,25621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25621, 0, 0, 0, 0, 0, 0,25621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25621, 0,25621, 0,25621, 0, 0,25621, 25621, 0, 0, 0,25621, 0, 0,25621, 0,25621, 0,25621, 0,25621,25621,25621,25622, 0,25622, 0, 0, 0, 0, 0, 0,25622, 0, 0,25622,25622, 25622,25622,25622,25622,25622,25622,25622,25622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25622, 0, 0, 0, 0, 0, 0,25622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25622, 0,25622, 0,25622, 0, 0,25622, 25622, 0, 0, 0,25622, 0, 0,25622, 0,25622, 0,25622, 0,25622,25622,25622,25623, 0, 0, 0, 0, 0, 0, 0, 0, 0,25623, 0, 0,25623, 0,25623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25623, 0, 25623, 0, 0, 0, 0,25623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25623, 0,25623, 0,25623, 0, 0,25623,25623, 0, 0, 0,25623, 0, 0,25623, 0,25623, 0,25623, 0,25623,25623,25623,25624,25624, 0, 0, 0, 0, 0, 0, 0, 0,25624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25624, 0, 0, 0, 0, 0, 0,25624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25624, 0, 25624, 0,25624, 0, 0,25624,25624, 0, 0, 0, 25624, 0, 0,25624, 0,25624, 0,25624, 0,25624, 25624,25624,25640, 0, 0, 0, 0, 0, 0, 0, 0, 0,25640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25640, 0, 0, 0, 0, 0, 0,25640, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25640, 0,25640, 0, 25640, 0, 0,25640,25640, 0, 0, 0,25640, 0, 0,25640, 0,25640, 0,25640, 0,25640,25640,25640, 25641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25641, 0, 0, 0, 0, 0, 0,25641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25641, 0,25641,25641,25641, 0, 0,25641,25641, 0, 0, 0,25641,25641, 0,25641, 0,25641, 0,25641, 0,25641,25641,25641,25645, 0, 25645, 0, 0, 0, 0, 0, 0,25645, 0, 0, 25645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25645, 0, 0, 0, 0, 0, 0, 0, 0,25645, 0, 0, 0, 0, 0, 0,25645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25645, 0,25645, 0,25645, 0, 0,25645,25645, 0, 0, 0,25645, 0,25645,25645, 0,25645, 0,25645, 0,25645,25645,25645,25646, 0, 25646, 0, 0, 0, 0, 0, 0,25646, 0, 0, 25646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25646, 0, 0, 0, 0, 0, 0,25646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25646, 0,25646, 0,25646, 0, 0,25646,25646, 0, 0, 0,25646, 0, 0,25646, 0,25646, 0,25646, 0,25646,25646,25646,25650, 0, 0, 0, 0, 0, 0, 0, 0, 0,25650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25650, 0, 0, 0, 0, 0, 0,25650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25650, 0,25650, 0,25650, 0, 0,25650, 25650, 0, 0, 0,25650, 0, 0,25650, 0,25650, 0,25650, 0,25650,25650,25650,25651, 0, 0, 0, 0, 0, 0, 0, 0, 0,25651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25651, 0, 0, 0, 0, 0, 0,25651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25651, 0,25651,25651,25651, 0, 0,25651,25651, 0, 0, 0,25651,25651, 0,25651, 0,25651, 0,25651, 0,25651,25651,25651,25655, 0,25655, 0, 0, 0, 0, 0, 0,25655, 0, 0,25655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25655, 0, 0, 0, 0, 0, 0, 0, 0,25655, 0, 0, 0, 0, 0, 0,25655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25655, 0,25655, 0,25655, 0, 0,25655,25655, 0, 0, 0,25655, 0,25655,25655, 0,25655, 0,25655, 0,25655,25655,25655,25656, 0,25656, 0, 0, 0, 0, 0, 0,25656, 0, 0,25656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25656, 0, 0, 0, 0, 0, 0,25656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25656, 0,25656, 0,25656, 0, 0,25656,25656, 0, 0, 0,25656, 0, 0,25656, 0,25656, 0,25656, 0,25656,25656,25656,25660,25660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25660,25660,25660,25660, 25660,25660,25660,25660,25660, 0,25660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25660,25661,25661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25661,25661,25661,25661,25661,25661,25661,25661,25661, 0, 25661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25661,25665,25665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25665,25665, 25665,25665,25665,25665,25665,25665,25665, 0,25665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25665, 25666,25666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25666,25666,25666,25666,25666,25666,25666,25666, 25666, 0,25666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25666,25674,25674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25674,25674,25674,25674,25674,25674,25674,25674,25674, 0, 25674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25674, 25680,25680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25680,25680,25680,25680,25680,25680,25680,25680, 25680, 0,25680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25680,25698,25698, 0,25698,25698,25698, 25698,25698,25698,25698,25698,25698, 0,25698,25698, 0, 0, 0, 0, 0, 0, 0, 0, 0,25698,25698, 25698,25698,25698,25698,25698, 0, 0, 0, 0, 0, 25698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25698,25698, 25698,25698,25699,25699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25699,25699,25699,25699,25699,25699, 25699,25699,25699, 0,25699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25699,25700,25700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25700,25700, 25700,25700,25700,25700,25700,25700,25700, 0,25700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25700,25718,25718, 0,25718,25718,25718, 25718,25718,25718,25718, 0,25718,25718,25718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25718,25718, 25718,25718,25718,25718,25718, 0, 0, 0, 0, 0, 25718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25718,25718, 25718,25718,25719,25719, 0,25719,25719,25719,25719,25719, 25719,25719, 0,25719,25719,25719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25719,25719,25719,25719, 25719,25719,25719,25719, 0, 0, 0, 0,25719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25719,25719,25719,25719, 25723,25723,25723,25723,25723,25723,25723,25723,25723, 0, 0, 0, 0, 0, 0, 0,25723,25723,25723,25723, 25723,25723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25723,25723,25723,25723,25723,25723,25726, 25726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25726,25726,25726,25726,25726,25726,25726,25726,25726, 0,25726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25726, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25726,25730,25730,25730, 25730,25730,25730,25730,25730,25730,25730, 0, 0, 0, 0, 0, 0,25730,25730,25730,25730,25730,25730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25730,25730,25730,25730,25730,25730,25733,25733,25733,25733, 25733,25733,25733,25733,25733,25733, 0, 0, 0, 0, 0, 0,25733,25733,25733,25733,25733,25733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25733, 25733,25733,25733,25733,25733,25734,25734,25734,25734,25734, 25734,25734,25734,25734, 0, 0, 0, 0, 0, 0, 0,25734,25734,25734,25734,25734,25734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25734, 0, 0, 0,25734,25734, 25734,25734,25734,25734,25739,25739,25739,25739,25739,25739, 25739,25739,25739,25739, 0, 0, 0, 0, 0, 0, 25739,25739,25739,25739,25739,25739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25739,25739,25739, 25739,25739,25739,25740,25740,25740,25740,25740,25740,25740, 25740,25740, 0, 0, 0, 0, 0, 0, 0,25740, 25740,25740,25740,25740,25740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25740,25740,25740,25740, 25740,25740,25749,25749,25749,25749,25749,25749,25749,25749, 25749,25749, 0, 0, 0, 0, 0, 0,25749,25749, 25749,25749,25749,25749, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25749,25749,25749,25749,25749, 25749,25750,25750,25750,25750,25750,25750,25750,25750,25750, 0, 0, 0, 0, 0, 0, 0,25750,25750,25750, 25750,25750,25750, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25750,25750,25750,25750,25750,25750, 25761,25761,25761,25761,25761,25761,25761,25761,25761,25761, 0, 0, 0, 0, 0, 0,25761,25761,25761,25761, 25761,25761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25761,25761,25761,25761,25761,25761,25762, 25762,25762,25762,25762,25762,25762,25762,25762, 0, 0, 0, 0, 0, 0, 0,25762,25762,25762,25762,25762, 25762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25762,25762,25762,25762,25762,25762,25769, 0, 25769,25769,25769,25769,25769,25769,25769,25769,25769,25769, 0, 0, 0, 0, 0, 0,25769,25769,25769,25769, 25769,25769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25769,25769,25769,25769,25769,25769,25777, 25777,25777,25777,25777,25777,25777,25777,25777,25777, 0, 0, 0, 0, 0, 0,25777,25777,25777,25777,25777, 25777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25777,25777,25777,25777,25777,25777,25778,25778, 25778,25778,25778,25778,25778,25778,25778, 0, 0, 0, 0, 0, 0, 0,25778,25778,25778,25778,25778,25778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25778,25778,25778,25778,25778,25778,25785,25785,25785, 25785,25785,25785,25785,25785,25785,25785, 0, 0, 0, 0, 0, 0,25785,25785,25785,25785,25785,25785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25785,25785,25785,25785,25785,25785,25789,25789,25789,25789, 25789,25789,25789,25789,25789,25789, 0, 0, 0, 0, 0, 0,25789,25789,25789,25789,25789,25789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25789, 25789,25789,25789,25789,25789,25790,25790,25790,25790,25790, 25790,25790,25790,25790,25790, 0, 0, 0, 0, 0, 0,25790,25790,25790,25790,25790,25790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25790,25790, 25790,25790,25790,25790,25793,25793,25793,25793,25793,25793, 25793,25793,25793,25793, 0, 0, 0, 0, 0, 0, 25793,25793,25793,25793,25793,25793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25793,25793,25793, 25793,25793,25793,25800,25800,25800,25800,25800,25800,25800, 25800,25800, 0, 0, 0, 0, 0, 0, 0,25800, 25800,25800,25800,25800,25800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25800,25800,25800,25800, 25800,25800,25801,25801,25801,25801,25801,25801,25801,25801, 25801,25801, 0, 0, 0, 0, 0, 0,25801,25801, 25801,25801,25801,25801, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25801,25801,25801,25801,25801, 25801,25835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25835, 0, 0, 0, 0, 0, 0, 25835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25835, 0,25835, 0,25835, 0, 0,25835,25835, 0, 0, 0,25835, 0, 0, 25835, 0,25835, 0,25835, 0,25835,25835,25835,25836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25836, 0, 0, 0, 0, 0, 0,25836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25836,25836, 0,25836, 0,25836, 0, 0, 25836,25836, 0, 0, 0,25836, 0, 0,25836, 0, 25836, 0,25836, 0,25836,25836,25836,25836,25837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25837, 0, 0, 0, 0, 0, 0,25837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25837, 0,25837, 0,25837, 0, 0,25837, 25837, 0, 0, 0,25837, 0, 0,25837, 0,25837, 0,25837, 0,25837,25837,25837,25838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25838, 0, 0, 0, 0, 0, 0,25838, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25838, 25838, 0,25838, 0,25838, 0, 0,25838,25838, 0, 0, 0,25838, 0, 0,25838, 0,25838, 0,25838, 0,25838,25838,25838,25838,25839, 0, 0, 0, 0, 0, 0, 0, 0, 0,25839, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25839, 0, 0, 0, 0, 0, 0,25839, 0, 0, 0, 0, 0, 25839, 0, 0, 0, 0, 0, 0, 0, 0,25839, 0,25839, 0,25839, 0, 0,25839,25839, 0, 0, 0,25839, 0, 0,25839, 0,25839, 0,25839, 0, 25839,25839,25839,25840, 0, 0, 0, 0, 0, 0, 0, 0, 0,25840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25840, 0, 0, 0, 0, 0, 0,25840, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25840, 0,25840, 0,25840, 0,25840,25840,25840, 0, 0, 0,25840, 0,25840,25840, 0,25840, 0,25840, 0,25840,25840, 25840,25860, 0, 0, 0, 0, 0, 0, 0, 0, 0,25860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25860, 0, 0, 0, 0, 0, 0, 25860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25860,25860, 0,25860, 0,25860, 0, 0,25860,25860, 0, 0, 0,25860, 0, 0, 25860, 0,25860, 0,25860, 0,25860,25860,25860,25861, 0, 0, 0, 0, 0, 0, 0, 0, 0,25861, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25861, 0, 0, 0, 0, 0, 0,25861, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25861, 0,25861, 0,25861, 0, 0, 25861,25861, 0, 0, 0,25861, 0, 0,25861, 0, 25861, 0,25861, 0,25861,25861,25861,25862, 0, 0, 0, 0, 0, 0, 0, 0, 0,25862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25862, 0, 0, 0, 0, 0, 0,25862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25862, 0,25862, 0,25862, 0, 0,25862,25862, 0, 0, 0,25862, 0, 0,25862, 0,25862, 0, 25862, 0,25862,25862,25862,25863, 0,25863, 0, 0, 0, 0, 0, 0,25863, 0, 0,25863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25863, 0, 0, 0, 0, 0, 0,25863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25863, 0,25863, 0,25863, 0, 0,25863,25863, 0, 0, 0,25863, 0, 0,25863, 0,25863, 0, 25863, 0,25863,25863,25863,25864, 0, 0, 0, 0, 0, 0, 0, 0, 0,25864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25864, 0, 0, 0, 0, 0, 0,25864, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25864, 0,25864, 0,25864, 0, 0,25864,25864, 0, 0, 0,25864, 0, 0,25864, 0,25864, 0,25864, 0, 25864,25864,25864,25865, 0, 0, 0, 0, 0, 0, 0, 0, 0,25865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25865, 0, 0, 0, 0, 0, 0, 0, 0,25865, 0, 0, 0, 0, 0, 0,25865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25865, 0,25865, 0,25865, 0, 0,25865,25865, 0, 0, 0,25865, 0, 0,25865, 0,25865, 0,25865, 0,25865,25865, 25865,25866, 0,25866, 0, 0, 0, 0, 0, 0, 25866, 0, 0,25866,25866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25866, 0, 0, 0, 0, 0, 0,25866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25866, 0,25866, 0,25866, 0, 0,25866,25866, 0, 0, 0,25866, 0, 0,25866, 0,25866, 0,25866, 0,25866,25866, 25866,25874, 0,25874, 0, 0, 0, 0, 0, 0, 25874, 0, 0,25874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25874, 0, 0, 0, 0, 0, 0,25874, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25874, 0,25874, 0,25874, 0, 0,25874,25874, 0, 0, 0,25874, 0, 0,25874, 0,25874, 0,25874, 0,25874,25874, 25874,25876, 0,25876, 0, 0, 0, 0, 0, 0, 25876, 0, 0,25876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25876, 0, 0, 0, 0, 0, 0,25876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25876, 0,25876, 0,25876, 0, 0,25876,25876, 0, 0, 0,25876, 0, 0,25876, 0,25876, 0,25876, 0,25876,25876, 25876,25878, 0, 0, 0, 0, 0, 0, 0, 0, 0,25878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25878, 0, 0, 0, 0, 0, 0, 25878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25878,25878, 0,25878, 0,25878, 0, 0,25878,25878, 0, 0, 0,25878, 0, 0, 25878, 0,25878, 0,25878, 0,25878,25878,25878,25879, 0, 0, 0, 0, 0, 0, 0, 0, 0,25879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25879, 0, 0, 0, 0, 0, 0,25879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25879, 0,25879, 0,25879, 0, 0, 25879,25879, 0, 0, 0,25879, 0, 0,25879, 0, 25879, 0,25879, 0,25879,25879,25879,25880, 0, 0, 0, 0, 0, 0, 0, 0, 0,25880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25880, 0, 0, 0, 0, 0, 0,25880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25880, 0,25880, 0,25880, 0, 0,25880,25880, 0, 0, 0,25880, 0, 0,25880, 0,25880, 0, 25880, 0,25880,25880,25880,25881, 0,25881, 0, 0, 0, 0, 0, 0,25881, 0, 0,25881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25881, 0, 0, 0, 0, 0, 0,25881, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25881, 0,25881, 0,25881, 0, 0,25881,25881, 0, 0, 0,25881, 0, 0,25881, 0,25881, 0, 25881, 0,25881,25881,25881,25882, 0, 0, 0, 0, 0, 0, 0, 0, 0,25882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25882, 0, 0, 0, 0, 0, 0,25882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25882, 0,25882, 0,25882, 0, 0,25882,25882, 0, 0, 0,25882, 0, 0,25882, 0,25882, 0,25882, 0, 25882,25882,25882,25883, 0, 0, 0, 0, 0, 0, 0, 0, 0,25883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25883, 0, 0, 0, 0, 0, 0,25883, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25883, 0,25883, 0,25883, 0, 0,25883,25883, 0, 0, 0,25883, 25883,25883,25883, 0,25883, 0,25883, 0,25883,25883, 25883,25884, 0,25884, 0, 0, 0, 0, 0, 0, 25884, 0, 0,25884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25884, 0, 0, 0, 0, 0, 0,25884, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25884, 0,25884, 0,25884, 0, 0,25884,25884, 0, 0, 0,25884, 0, 0,25884, 0,25884, 0,25884, 0,25884,25884, 25884,25893, 0,25893, 0, 0, 0, 0, 0, 0, 25893, 0, 0,25893,25893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25893, 0, 0, 0, 0, 0, 0,25893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25893, 0,25893, 0,25893, 0, 0,25893,25893, 0, 0, 0,25893, 0, 0,25893, 0,25893, 0,25893, 0,25893,25893, 25893,25894, 0,25894, 0, 0, 0, 0, 0, 0, 25894, 0, 0,25894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25894, 0, 0, 0, 0, 0, 0,25894, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25894, 0,25894, 0,25894, 0, 0,25894,25894, 0, 0, 0,25894, 0, 0,25894, 0,25894, 0,25894, 0,25894,25894, 25894,25896, 0, 0, 0, 0, 0, 0, 0, 0, 0,25896,25896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25896, 0, 0, 0, 0, 0, 0, 25896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25896, 0,25896, 0,25896, 0, 0,25896,25896, 0, 0, 0,25896, 0, 0, 25896, 0,25896, 0,25896, 0,25896,25896,25896,25897, 0, 0, 0, 0, 0, 0, 0, 0, 0,25897, 0, 0, 0, 0,25897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25897, 0, 0, 0, 0, 0, 0,25897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25897, 0,25897, 0,25897, 0, 0, 25897,25897, 0, 0, 0,25897, 0, 0,25897, 0, 25897, 0,25897, 0,25897,25897,25897,25909, 0,25909, 0, 0, 0, 0, 0, 0,25909, 0, 0,25909, 25909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25909, 0, 0, 0, 0, 0, 0,25909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25909, 0,25909, 0,25909, 0, 0, 25909,25909, 0, 0, 0,25909, 0, 0,25909, 0, 25909, 0,25909, 0,25909,25909,25909,25910, 0,25910, 0, 0, 0, 0, 0, 0,25910, 0, 0,25910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25910, 0, 0, 0, 0, 0, 0,25910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25910, 0,25910, 0,25910, 0, 0, 25910,25910, 0, 0, 0,25910, 0, 0,25910, 0, 25910, 0,25910, 0,25910,25910,25910,25912, 0, 0, 0, 0, 0, 0, 0, 0, 0,25912,25912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25912, 0, 0, 0, 0, 0, 0,25912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25912, 0,25912, 0,25912, 0, 0,25912,25912, 0, 0, 0,25912, 0, 0,25912, 0,25912, 0, 25912, 0,25912,25912,25912,25913, 0, 0, 0, 0, 0, 0, 0, 0, 0,25913, 0, 0, 0, 0, 25913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25913, 0, 0, 0, 0, 0, 0,25913, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25913, 0,25913, 0,25913, 0, 0,25913,25913, 0, 0, 0,25913, 0, 0,25913, 0,25913, 0,25913, 0, 25913,25913,25913,25925, 0, 0, 0, 0, 0, 0, 0, 0, 0,25925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25925, 0, 0, 0, 0, 0, 0, 0, 0,25925, 0, 0, 0, 0, 0, 0,25925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25925, 0,25925, 0,25925, 0, 0,25925,25925, 0, 0, 0,25925, 0,25925,25925, 0,25925, 0,25925, 0,25925,25925, 25925,25926, 0, 0, 0, 0, 0, 0, 0, 0, 0,25926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25926, 0, 0, 0, 0, 0, 0, 25926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25926, 0,25926, 0,25926, 0, 0,25926,25926, 0, 0, 0,25926, 0, 0, 25926, 0,25926, 0,25926, 0,25926,25926,25926,25928, 25928, 0, 0, 0, 0, 0, 0, 0, 0,25928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25928, 0,25928, 0, 0, 0, 0,25928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25928, 0,25928, 0,25928, 0, 0, 25928,25928, 0, 0, 0,25928, 0, 0,25928, 0, 25928, 0,25928, 0,25928,25928,25928,25931, 0,25931, 0, 0, 0, 0, 0, 0,25931, 0, 0,25931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25931, 0, 0, 0, 0, 0, 0,25931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25931, 0,25931, 0,25931, 0, 0, 25931,25931, 0, 0, 0,25931, 0, 0,25931, 0, 25931, 0,25931, 0,25931,25931,25931,25933, 0,25933, 0, 0, 0, 0, 0, 0,25933, 0, 0,25933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25933, 0, 0, 0, 0, 0, 0,25933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25933, 0,25933, 0,25933, 0, 0, 25933,25933, 0, 0, 0,25933, 0, 0,25933, 0, 25933, 0,25933, 0,25933,25933,25933,25935, 0, 0, 0, 0, 0, 0, 0, 0, 0,25935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25935, 0, 0, 0, 0, 0, 0, 0, 0,25935, 0, 0, 0, 0, 0, 0,25935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25935, 0,25935, 0,25935, 0, 0,25935,25935, 0, 0, 0,25935, 0,25935,25935, 0,25935, 0, 25935, 0,25935,25935,25935,25936, 0, 0, 0, 0, 0, 0, 0, 0, 0,25936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25936, 0, 0, 0, 0, 0, 0,25936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25936, 0,25936, 0,25936, 0, 0,25936,25936, 0, 0, 0,25936, 0, 0,25936, 0,25936, 0,25936, 0, 25936,25936,25936,25938,25938, 0, 0, 0, 0, 0, 0, 0, 0,25938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25938, 0,25938, 0, 0, 0, 0,25938, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25938, 0,25938, 0,25938, 0, 0,25938,25938, 0, 0, 0,25938, 0, 0,25938, 0,25938, 0,25938, 0,25938,25938, 25938,25941, 0,25941, 0, 0, 0, 0, 0, 0, 25941, 0, 0,25941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25941, 0, 0, 0, 0, 0, 0,25941, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25941, 0,25941, 0,25941, 0, 0,25941,25941, 0, 0, 0,25941, 0, 0,25941, 0,25941, 0,25941, 0,25941,25941, 25941,25943, 0,25943, 0, 0, 0, 0, 0, 0, 25943, 0, 0,25943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25943, 0, 0, 0, 0, 0, 0,25943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25943, 0,25943, 0,25943, 0, 0,25943,25943, 0, 0, 0,25943, 0, 0,25943, 0,25943, 0,25943, 0,25943,25943, 25943,25945,25945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25945,25945,25945,25945,25945,25945,25945, 25945,25945, 0,25945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25945,25950, 25950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25950,25950,25950,25950,25950,25950,25950,25950,25950, 0,25950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25950,25958,25958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25958, 25958,25958,25958,25958,25958,25958,25958,25958, 0,25958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25958,25959, 25959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25959,25959,25959,25959,25959,25959,25959,25959,25959, 0,25959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25959,25965,25965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25965, 25965,25965,25965,25965,25965,25965,25965,25965, 0,25965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25965, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25965,25968,25968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25968,25968,25968, 25968,25968,25968,25968,25968,25968, 0,25968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25968,25982,25982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25982, 25982,25982,25982,25982,25982,25982,25982,25982, 0,25982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,25982,26000,26000, 0,26000,26000, 26000,26000,26000,26000,26000, 0,26000,26000,26000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26000, 26000,26000,26000,26000,26000,26000, 0, 0, 0, 0, 0,26000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26000, 26000,26000,26000,26001,26001, 0,26001,26001,26001,26001, 26001,26001,26001, 0,26001,26001,26001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26001,26001,26001, 26001,26001,26001,26001,26001, 0, 0, 0, 0,26001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26001,26001,26001, 26001,26016,26016,26016,26016,26016,26016,26016,26016,26016, 26016, 0, 0, 0, 0, 0, 0,26016,26016,26016, 26016,26016,26016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26016,26016,26016,26016,26016,26016, 26017,26017,26017,26017,26017,26017,26017,26017,26017,26017, 0, 0, 0, 0, 0, 0,26017,26017,26017,26017, 26017,26017, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26017,26017,26017,26017,26017,26017,26019, 26019,26019,26019,26019,26019,26019,26019,26019,26019, 0, 0, 0, 0, 0, 0,26019,26019,26019,26019,26019, 26019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26019, 0, 0, 0,26019,26019,26019,26019,26019,26019,26024,26024, 26024,26024,26024,26024,26024,26024,26024,26024, 0, 0, 0, 0, 0, 0,26024,26024,26024,26024,26024,26024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26024,26024,26024,26024,26024,26024,26026,26026,26026, 26026,26026,26026,26026,26026,26026,26026, 0, 0, 0, 0, 0, 0,26026,26026,26026,26026,26026,26026, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26026,26026,26026,26026,26026,26026,26031,26031,26031,26031, 26031,26031,26031,26031,26031,26031, 0, 0, 0, 0, 0, 0,26031,26031,26031,26031,26031,26031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26031, 26031,26031,26031,26031,26031,26033,26033,26033,26033,26033, 26033,26033,26033,26033,26033, 0, 0, 0, 0, 0, 0,26033,26033,26033,26033,26033,26033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26033,26033, 26033,26033,26033,26033,26038,26038,26038,26038,26038,26038, 26038,26038,26038, 0, 0, 0, 0, 0, 0, 0, 26038,26038,26038,26038,26038,26038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26038,26038,26038, 26038,26038,26038,26039,26039,26039,26039,26039,26039,26039, 26039,26039,26039, 0, 0, 0, 0, 0, 0,26039, 26039,26039,26039,26039,26039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26039,26039,26039,26039, 26039,26039,26041,26041,26041,26041,26041,26041,26041,26041, 26041,26041, 0, 0, 0, 0, 0, 0,26041,26041, 26041,26041,26041,26041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26041,26041,26041,26041,26041, 26041,26046,26046,26046,26046,26046,26046,26046,26046,26046, 0, 0, 0, 0, 0, 0, 0,26046,26046,26046, 26046,26046,26046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26046,26046,26046,26046,26046,26046, 26047, 0,26047,26047,26047,26047,26047,26047,26047,26047, 26047,26047, 0, 0, 0, 0, 0, 0,26047,26047, 26047,26047,26047,26047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26047,26047,26047,26047,26047, 26047,26050,26050,26050,26050,26050,26050,26050,26050,26050, 26050, 0, 0, 0, 0, 0, 0,26050,26050,26050, 26050,26050,26050, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26050,26050,26050,26050,26050,26050, 26052,26052,26052,26052,26052,26052,26052,26052,26052,26052, 0, 0, 0, 0, 0, 0,26052,26052,26052,26052, 26052,26052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26052,26052,26052,26052,26052,26052,26057, 26057,26057,26057,26057,26057,26057,26057,26057, 0, 0, 0, 0, 0, 0, 0,26057,26057,26057,26057,26057, 26057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26057,26057,26057,26057,26057,26057,26058,26058, 26058,26058,26058,26058,26058,26058,26058,26058, 0, 0, 0, 0, 0, 0,26058,26058,26058,26058,26058,26058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26058,26058,26058,26058,26058,26058,26065,26065,26065, 26065,26065,26065,26065,26065,26065,26065, 0, 0, 0, 0, 0, 0,26065,26065,26065,26065,26065,26065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26065,26065,26065,26065,26065,26065,26066,26066,26066,26066, 26066,26066,26066,26066,26066, 0, 0, 0, 0, 0, 0, 0,26066,26066,26066,26066,26066,26066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26066, 26066,26066,26066,26066,26066,26073,26073,26073,26073,26073, 26073,26073,26073,26073,26073, 0, 0, 0, 0, 0, 0,26073,26073,26073,26073,26073,26073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26073,26073, 26073,26073,26073,26073,26077,26077,26077,26077,26077,26077, 26077,26077,26077,26077, 0, 0, 0, 0, 0, 0, 26077,26077,26077,26077,26077,26077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26077,26077,26077, 26077,26077,26077,26082,26082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26082,26082,26082,26082,26082, 26082,26082,26082,26082, 0,26082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26082, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26082,26086,26086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26086,26086,26086,26086, 26086,26086,26086,26086,26086, 0,26086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26086,26088,26088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26088,26088,26088,26088,26088,26088,26088,26088,26088, 0, 26088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26088, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26088,26114, 0, 0, 0, 0, 0, 0, 0, 0, 0,26114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26114, 0, 0, 0, 0, 0, 0,26114, 0, 0, 0, 0, 0,26114, 0, 0, 0, 0, 0, 0, 0, 0,26114, 0,26114, 0,26114, 0, 0,26114,26114, 0, 0, 0,26114, 0, 0,26114, 0,26114, 0, 26114, 0,26114,26114,26114,26115, 0, 0, 0, 0, 0, 0, 0, 0, 0,26115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26115, 0, 0, 0, 0, 0, 0,26115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26115, 0,26115, 0,26115, 0, 0,26115,26115, 0, 0, 0,26115,26115, 0,26115, 0,26115, 0,26115, 0, 26115,26115,26115,26129, 0,26129, 0, 0, 0, 0, 0, 0,26129, 0, 0,26129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26129, 0, 0, 0, 0, 0, 0,26129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26129, 0,26129,26129,26129, 0, 0,26129,26129, 0, 0, 0,26129, 0, 0,26129, 0,26129, 0,26129, 0, 26129,26129,26129,26135, 0, 0, 0, 0, 0, 0, 0, 0, 0,26135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26135, 0, 0, 0, 0, 0, 0,26135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26135, 0,26135, 0,26135, 0, 0,26135,26135, 0, 0, 0,26135, 0, 0,26135, 0,26135, 0,26135, 0,26135,26135, 26135,26136, 0, 0, 0, 0, 0, 0, 0, 0, 0,26136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26136, 0, 0, 0, 0, 0, 0, 26136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26136, 0,26136, 0,26136, 0, 0,26136,26136, 0, 0, 0,26136, 0,26136, 26136, 0,26136, 0,26136, 0,26136,26136,26136,26138, 0,26138, 0, 0, 0, 0, 0, 0,26138, 0, 0,26138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26138, 0, 0, 0, 0, 0, 0, 26138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26138, 0,26138, 0,26138, 0, 0,26138,26138, 0, 0, 0,26138, 0,26138, 26138, 0,26138, 0,26138, 0,26138,26138,26138,26140, 0,26140, 0, 0, 0, 0, 0, 0,26140, 0, 0,26140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26140, 0, 0, 0, 0, 0, 0, 26140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26140, 0,26140, 0,26140, 0, 0,26140,26140, 0, 0, 0,26140, 0, 0, 26140, 0,26140, 0,26140, 0,26140,26140,26140,26141, 0,26141, 0, 0, 0, 0, 0, 0,26141, 0, 0,26141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26141, 0, 0, 0, 0, 0, 0, 26141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26141, 0,26141, 0,26141, 0, 0,26141,26141, 0, 0, 0,26141, 0, 0, 26141, 0,26141, 0,26141, 0,26141,26141,26141,26142, 0,26142, 0, 0, 0, 0, 0, 0,26142, 0, 0,26142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26142, 0, 0, 0, 0, 0, 0, 26142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26142, 0,26142, 0,26142, 0, 0,26142,26142, 0, 0, 0,26142,26142, 0, 26142, 0,26142, 0,26142, 0,26142,26142,26142,26146, 0,26146, 0, 0, 0, 0, 0, 0,26146, 0, 0,26146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26146, 0, 0, 0, 0, 0, 0, 0, 0,26146, 0, 0, 0, 0, 0, 0, 26146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26146, 0,26146, 0,26146, 0, 0,26146,26146, 0, 0, 0,26146, 0,26146, 26146, 0,26146, 0,26146, 0,26146,26146,26146,26148, 0, 0, 0, 0, 0, 0, 0, 0, 0,26148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26148, 0, 0, 0, 0, 0, 0,26148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26148, 0,26148, 0,26148, 0, 0, 26148,26148, 0, 0, 0,26148, 0, 0,26148, 0, 26148, 0,26148, 0,26148,26148,26148,26149, 0, 0, 0, 0, 0, 0, 0, 0, 0,26149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26149, 0, 0, 0, 0, 0, 0,26149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26149, 0,26149, 0,26149, 0, 0,26149,26149, 0, 0, 0,26149, 0,26149,26149, 0,26149, 0, 26149, 0,26149,26149,26149,26151, 0,26151, 0, 0, 0, 0, 0, 0,26151, 0, 0,26151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26151, 0, 0, 0, 0, 0, 0,26151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26151, 0,26151, 0,26151, 0, 0,26151,26151, 0, 0, 0,26151, 0,26151,26151, 0,26151, 0, 26151, 0,26151,26151,26151,26153, 0,26153, 0, 0, 0, 0, 0, 0,26153, 0, 0,26153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26153, 0, 0, 0, 0, 0, 0,26153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26153, 0,26153, 0,26153, 0, 0,26153,26153, 0, 0, 0,26153, 0, 0,26153, 0,26153, 0, 26153, 0,26153,26153,26153,26154, 0,26154, 0, 0, 0, 0, 0, 0,26154, 0, 0,26154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26154, 0, 0, 0, 0, 0, 0,26154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26154, 0,26154, 0,26154, 0, 0,26154,26154, 0, 0, 0,26154, 0, 0,26154, 0,26154, 0, 26154, 0,26154,26154,26154,26155, 0,26155, 0, 0, 0, 0, 0, 0,26155, 0, 0,26155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26155, 0, 0, 0, 0, 0, 0,26155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26155, 0,26155, 0,26155, 0, 0,26155,26155, 0, 0, 0,26155,26155, 0,26155, 0,26155, 0, 26155, 0,26155,26155,26155,26161, 0,26161, 0, 0, 0, 0, 0, 0,26161, 0, 0,26161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26161, 0, 0, 0, 0, 0, 0,26161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26161, 0,26161, 0,26161, 0, 0,26161,26161, 0, 0, 0,26161, 0, 0,26161, 0,26161, 0, 26161, 0,26161,26161,26161,26162, 0,26162, 0, 0, 0, 0, 0, 0,26162, 0, 0,26162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26162, 0, 0, 0, 0, 0, 0,26162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26162, 0,26162, 0,26162, 0, 0,26162,26162, 0, 0, 0,26162, 0, 0,26162, 0,26162, 0, 26162, 0,26162,26162,26162,26163, 0, 0, 0, 0, 0, 0, 0, 0, 0,26163,26163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26163, 0, 0, 0, 0, 0, 0,26163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26163, 0,26163, 0,26163, 0, 0,26163,26163, 0, 0, 0,26163, 0, 0,26163, 0,26163, 0,26163, 0, 26163,26163,26163,26164, 0, 0, 0, 0, 0, 0, 0, 0, 0,26164, 0, 0, 0, 0,26164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26164, 0, 0, 0, 0, 0, 0,26164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26164, 0,26164, 0,26164, 0, 0,26164,26164, 0, 0, 0,26164, 0, 0,26164, 0,26164, 0,26164, 0,26164,26164, 26164,26170, 0,26170, 0, 0, 0, 0, 0, 0, 26170, 0, 0,26170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26170, 0, 0, 0, 0, 0, 0,26170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26170, 0,26170, 0,26170, 0, 0,26170,26170, 0, 0, 0,26170, 26170, 0,26170, 0,26170, 0,26170, 0,26170,26170, 26170,26171, 0,26171, 0, 0, 0, 0, 0, 0, 26171, 0, 0,26171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26171, 0, 0, 0, 0, 0, 0,26171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26171, 0,26171, 0,26171, 0, 0,26171,26171, 0, 0, 0,26171, 26171, 0,26171, 0,26171, 0,26171, 0,26171,26171, 26171,26175, 0,26175, 0, 0, 0, 0, 0, 0, 26175, 0, 0,26175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26175, 0, 0, 0, 0, 0, 0,26175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26175, 0,26175, 0,26175, 0, 0,26175,26175, 0, 0, 0,26175, 0, 0,26175, 0,26175, 0,26175, 0,26175,26175, 26175,26176, 0, 0, 0, 0, 0, 0, 0, 0, 0,26176,26176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26176, 0, 0, 0, 0, 0, 0, 26176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26176, 0,26176, 0,26176, 0, 0,26176,26176, 0, 0, 0,26176, 0, 0, 26176, 0,26176, 0,26176, 0,26176,26176,26176,26177, 0, 0, 0, 0, 0, 0, 0, 0, 0,26177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26177, 0, 0, 0, 0, 0, 0,26177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26177, 0,26177, 0,26177, 0, 0, 26177,26177, 0, 0, 0,26177, 0, 0,26177, 0, 26177, 0,26177, 0,26177,26177,26177,26178, 0, 0, 0, 0, 0, 0, 0, 0, 0,26178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26178, 0, 0, 0, 0, 0, 0,26178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26178, 0,26178, 0,26178, 0, 0,26178,26178, 0, 0, 0,26178, 0, 0,26178, 0,26178, 0, 26178, 0,26178,26178,26178,26179, 0, 0, 0, 0, 0, 0, 0, 0, 0,26179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26179, 0, 0, 0, 0, 0, 0,26179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26179, 0,26179, 0,26179, 0, 0,26179,26179, 0, 0, 0,26179, 0, 0,26179, 0,26179, 0,26179, 0, 26179,26179,26179,26180, 0, 0, 0, 0, 0, 0, 0, 0, 0,26180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26180, 0, 0, 0, 0, 0, 0,26180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26180, 0,26180, 0,26180, 0, 0,26180,26180, 0, 0, 0,26180, 0, 0,26180, 0,26180, 0,26180, 0,26180,26180, 26180,26181, 0, 0, 0, 0, 0, 0, 0, 0, 0,26181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26181, 0, 0, 0, 0, 0, 0, 26181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26181, 0,26181, 0,26181, 0, 0,26181,26181, 0, 0, 0,26181, 0,26181, 26181, 0,26181, 0,26181, 0,26181,26181,26181,26181, 26189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26189, 0, 0, 0, 0, 0, 0,26189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26189, 0,26189, 0,26189, 0, 0,26189,26189, 0, 0, 0,26189, 0, 0,26189, 0,26189, 0,26189, 0,26189,26189,26189,26191, 0, 0, 0, 0, 0, 0, 0, 0, 0,26191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26191, 0, 0, 0, 0, 0, 0,26191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26191, 0,26191, 0,26191, 0, 0,26191, 26191, 0, 0, 0,26191, 0, 0,26191, 0,26191, 0,26191, 0,26191,26191,26191,26192, 0, 0, 0, 0, 0, 0, 0, 0, 0,26192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26192, 0, 0, 0, 0, 0, 0,26192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26192, 26192, 0,26192, 0,26192, 0, 0,26192,26192, 0, 0, 0,26192, 0, 0,26192, 0,26192, 0,26192, 0,26192,26192,26192,26192,26193, 0,26193, 0, 0, 0, 0, 0, 0,26193, 0, 0,26193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26193, 0, 0, 0, 0, 0, 0, 0, 0,26193, 0, 0, 0, 0, 0, 0,26193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26193, 0,26193, 0,26193, 0, 0,26193,26193, 0, 0, 0,26193, 0,26193,26193, 0,26193, 0, 26193, 0,26193,26193,26193,26196, 0, 0, 0, 0, 0, 0, 0, 0, 0,26196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26196, 0, 0, 0, 0, 0, 0,26196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26196, 0,26196, 0,26196, 0, 0,26196,26196, 0, 0, 0,26196, 0, 0,26196, 0,26196, 0,26196, 0, 26196,26196,26196,26198, 0, 0, 0, 0, 0, 0, 0, 0, 0,26198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26198, 0, 0, 0, 0, 0, 0,26198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26198, 0,26198, 0,26198, 0, 0,26198,26198, 0, 0, 0,26198, 0, 0,26198, 0,26198, 0,26198, 0,26198,26198, 26198,26199, 0, 0, 0, 0, 0, 0, 0, 0, 0,26199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26199, 0, 0, 0, 0, 0, 0, 26199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26199,26199, 0,26199, 0,26199, 0, 0,26199,26199, 0, 0, 0,26199, 0, 0, 26199, 0,26199, 0,26199, 0,26199,26199,26199,26199, 26200, 0,26200, 0, 0, 0, 0, 0, 0,26200, 0, 0,26200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26200, 0, 0, 0, 0, 0, 0, 0, 0,26200, 0, 0, 0, 0, 0, 0,26200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26200, 0,26200, 0, 26200, 0, 0,26200,26200, 0, 0, 0,26200, 0, 26200,26200, 0,26200, 0,26200, 0,26200,26200,26200, 26214,26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26214,26214,26214,26214,26214,26214,26214,26214, 26214, 0,26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26214,26222,26222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26222,26222,26222,26222,26222,26222,26222,26222,26222, 0, 26222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26222, 26223,26223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26223,26223,26223,26223,26223,26223,26223,26223, 26223, 0,26223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26223,26256,26256, 0,26256,26256,26256,26256,26256,26256,26256, 0,26256, 26256,26256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26256,26256,26256,26256,26256,26256,26256, 0, 0, 0, 0, 0,26256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26256,26256,26256,26256,26257,26257, 0,26257, 26257,26257,26257,26257,26257,26257, 0,26257,26257,26257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26257,26257,26257,26257,26257,26257,26257,26257, 0, 0, 0, 0,26257, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26257,26257,26257,26257,26261,26261,26261,26261,26261,26261, 26261,26261,26261, 0, 0, 0, 0, 0, 0, 0, 26261,26261,26261,26261,26261,26261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26261,26261,26261, 26261,26261,26261,26265,26265,26265,26265,26265,26265,26265, 26265,26265,26265, 0, 0, 0, 0, 0, 0,26265, 26265,26265,26265,26265,26265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26265,26265,26265,26265, 26265,26265,26267,26267,26267,26267,26267,26267,26267,26267, 26267,26267, 0, 0, 0, 0, 0, 0,26267,26267, 26267,26267,26267,26267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26267,26267,26267,26267,26267, 26267,26268,26268,26268,26268,26268,26268,26268,26268,26268, 0, 0, 0, 0, 0, 0, 0,26268,26268,26268, 26268,26268,26268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26268, 0, 0, 0,26268,26268,26268,26268,26268,26268, 26271,26271,26271,26271,26271,26271,26271,26271,26271,26271, 0, 0, 0, 0, 0, 0,26271,26271,26271,26271, 26271,26271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26271,26271,26271,26271,26271,26271,26272, 26272,26272,26272,26272,26272,26272,26272,26272, 0, 0, 0, 0, 0, 0, 0,26272,26272,26272,26272,26272, 26272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26272,26272,26272,26272,26272,26272,26280,26280, 26280,26280,26280,26280,26280,26280,26280,26280, 0, 0, 0, 0, 0, 0,26280,26280,26280,26280,26280,26280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26280,26280,26280,26280,26280,26280,26281,26281,26281, 26281,26281,26281,26281,26281,26281, 0, 0, 0, 0, 0, 0, 0,26281,26281,26281,26281,26281,26281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26281,26281,26281,26281,26281,26281,26289,26289,26289,26289, 26289,26289,26289,26289,26289,26289, 0, 0, 0, 0, 0, 0,26289,26289,26289,26289,26289,26289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26289, 26289,26289,26289,26289,26289,26290,26290,26290,26290,26290, 26290,26290,26290,26290, 0, 0, 0, 0, 0, 0, 0,26290,26290,26290,26290,26290,26290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26290,26290, 26290,26290,26290,26290,26295, 0,26295,26295,26295,26295, 26295,26295,26295,26295,26295,26295, 0, 0, 0, 0, 0, 0,26295,26295,26295,26295,26295,26295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26295, 26295,26295,26295,26295,26295,26302,26302,26302,26302,26302, 26302,26302,26302,26302,26302, 0, 0, 0, 0, 0, 0,26302,26302,26302,26302,26302,26302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26302,26302, 26302,26302,26302,26302,26303,26303,26303,26303,26303,26303, 26303,26303,26303, 0, 0, 0, 0, 0, 0, 0, 26303,26303,26303,26303,26303,26303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26303,26303,26303, 26303,26303,26303,26308,26308,26308,26308,26308,26308,26308, 26308,26308,26308, 0, 0, 0, 0, 0, 0,26308, 26308,26308,26308,26308,26308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26308,26308,26308,26308, 26308,26308,26312,26312,26312,26312,26312,26312,26312,26312, 26312,26312, 0, 0, 0, 0, 0, 0,26312,26312, 26312,26312,26312,26312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26312,26312,26312,26312,26312, 26312,26316,26316,26316,26316,26316,26316,26316,26316,26316, 26316, 0, 0, 0, 0, 0, 0,26316,26316,26316, 26316,26316,26316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26316,26316,26316,26316,26316,26316, 26317,26317,26317,26317,26317,26317,26317,26317,26317, 0, 0, 0, 0, 0, 0, 0,26317,26317,26317,26317, 26317,26317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26317,26317,26317,26317,26317,26317,26322, 26322,26322,26322,26322,26322,26322,26322,26322,26322, 0, 0, 0, 0, 0, 0,26322,26322,26322,26322,26322, 26322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26322,26322,26322,26322,26322,26322,26326,26326, 26326,26326,26326,26326,26326,26326,26326,26326, 0, 0, 0, 0, 0, 0,26326,26326,26326,26326,26326,26326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26326,26326,26326,26326,26326,26326,26327,26327,26327, 26327,26327,26327,26327,26327,26327,26327, 0, 0, 0, 0, 0, 0,26327,26327,26327,26327,26327,26327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26327,26327,26327,26327,26327,26327,26329,26329,26329,26329, 26329,26329,26329,26329,26329,26329, 0, 0, 0, 0, 0, 0,26329,26329,26329,26329,26329,26329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26329, 26329,26329,26329,26329,26329,26334,26334,26334,26334,26334, 26334,26334,26334,26334, 0, 0, 0, 0, 0, 0, 0,26334,26334,26334,26334,26334,26334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26334,26334, 26334,26334,26334,26334,26335,26335,26335,26335,26335,26335, 26335,26335,26335,26335, 0, 0, 0, 0, 0, 0, 26335,26335,26335,26335,26335,26335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26335,26335,26335, 26335,26335,26335,26340,26340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26340,26340,26340,26340,26340, 26340,26340,26340,26340, 0,26340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26340,26344,26344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26344,26344,26344,26344,26344,26344,26344, 26344,26344, 0,26344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26344,26346, 26346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26346,26346,26346,26346,26346,26346,26346,26346,26346, 0,26346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26346,26346,26370, 0, 0, 0, 0, 0, 0, 0, 0, 0,26370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26370, 0, 0, 0, 0, 0, 0,26370, 0, 0, 26370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26370, 0,26370, 0,26370, 0, 0,26370, 26370, 0, 0, 0,26370, 0, 0,26370, 0,26370, 0,26370, 0,26370,26370,26370,26371, 0, 0, 0, 0, 0, 0, 0, 0, 0,26371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26371, 0, 0, 0, 0, 0, 0,26371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26371, 0,26371, 0,26371, 0, 0,26371,26371, 0, 0, 0,26371, 0, 0,26371, 0,26371, 0,26371, 0,26371,26371,26371,26372, 0, 0, 0, 0, 0, 0, 0, 0, 0,26372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26372, 0, 0, 0, 0, 0, 0,26372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26372, 0, 26372, 0,26372, 0, 0,26372,26372, 0, 0, 0, 26372, 0,26372,26372, 0,26372, 0,26372, 0,26372, 26372,26372,26381, 0,26381, 0, 0, 0, 0, 0, 0,26381, 0, 0,26381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26381, 0, 0, 0, 0, 0, 0,26381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26381, 0, 26381, 0,26381, 0, 0,26381,26381, 0, 0, 0, 26381, 0, 0,26381, 0,26381, 0,26381, 0,26381, 26381,26381,26383, 0,26383, 0, 0, 0, 0, 0, 0,26383, 0, 0,26383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26383, 0, 0, 0, 0, 0, 0,26383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26383, 0, 26383, 0,26383, 0, 0,26383,26383, 0, 0, 0, 26383, 0, 0,26383, 0,26383, 0,26383, 0,26383, 26383,26383,26409, 0, 0, 0, 0, 0, 0, 0, 0, 0,26409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26409, 0, 0, 0, 0, 0, 0,26409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26409, 0,26409, 0, 26409, 0, 0,26409,26409, 0, 0, 0,26409, 0, 26409,26409, 0,26409, 0,26409, 0,26409,26409,26409, 26410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26410, 0, 0, 0, 0, 0, 0,26410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26410, 0,26410, 0,26410, 0, 0,26410,26410, 0, 0, 0,26410, 0, 0,26410, 0,26410, 0,26410,26410,26410,26410,26410,26412, 0, 26412, 0, 0, 0, 0, 0, 0,26412, 0, 0, 26412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26412, 0, 0, 0, 0, 0, 0,26412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26412, 0,26412, 0,26412, 0, 0,26412,26412, 0, 0, 0,26412, 0, 0,26412, 0,26412, 0,26412, 0,26412,26412,26412,26415, 0, 26415, 0, 0, 0, 0, 0, 0,26415, 0, 0, 26415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26415, 0, 0, 0, 0, 0, 0,26415, 0, 0, 0, 0, 0, 0,26415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26415, 0,26415,26415,26415, 0, 0,26415,26415, 0, 0, 0,26415, 0, 0,26415, 0,26415, 0,26415, 0,26415,26415,26415,26419, 0, 0, 0, 0, 0, 0, 0, 0, 0,26419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26419, 0, 0, 0, 0, 0, 0,26419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26419, 0,26419, 0,26419, 0, 0,26419, 26419, 0, 0, 0,26419, 0,26419,26419, 0,26419, 0,26419, 0,26419,26419,26419,26420, 0, 0, 0, 0, 0, 0, 0, 0, 0,26420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26420, 0, 0, 0, 0, 0, 0,26420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26420, 0,26420, 0,26420, 0, 0,26420,26420, 0, 0, 0,26420, 0, 0,26420, 0,26420, 0,26420, 26420,26420,26420,26420,26422, 0,26422, 0, 0, 0, 0, 0, 0,26422, 0, 0,26422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26422, 0, 0, 0, 0, 0, 0,26422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26422, 0,26422, 0,26422, 0, 0,26422,26422, 0, 0, 0,26422, 0, 0,26422, 0,26422, 0,26422, 0,26422,26422,26422,26424, 0,26424, 0, 0, 0, 0, 0, 0,26424, 0, 0,26424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26424, 0, 0, 0, 0, 0, 0,26424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26424, 0,26424, 0,26424, 0, 0,26424,26424, 0, 0, 0,26424, 0, 0,26424, 0,26424, 0,26424, 0,26424,26424,26424,26425, 0,26425, 0, 0, 0, 0, 0, 0,26425, 0, 0,26425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26425, 0, 26425, 0, 0, 0, 0,26425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26425, 0,26425, 0,26425, 0, 0,26425,26425, 0, 0, 0,26425, 0, 0,26425, 0,26425, 0,26425, 0,26425,26425,26425,26426, 0, 0, 0, 0, 0, 0, 0, 0, 0,26426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26426, 0, 0, 0, 0, 0, 0,26426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26426, 0, 26426, 0,26426, 0, 0,26426,26426, 0, 0, 0, 26426, 0, 0,26426, 0,26426, 0,26426, 0,26426, 26426,26426,26442, 0,26442, 0, 0, 0, 0, 0, 0,26442, 0, 0,26442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26442, 0, 0, 0, 0, 0, 0,26442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26442, 0, 26442, 0,26442, 0, 0,26442,26442, 0, 0, 0, 26442, 0, 0,26442, 0,26442, 0,26442, 0,26442, 26442,26442,26443, 0,26443, 0, 0, 0, 0, 0, 0,26443, 0, 0,26443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26443, 0,26443, 0, 0, 0, 0,26443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26443, 0, 26443, 0,26443, 0, 0,26443,26443, 0, 0, 0, 26443, 0, 0,26443, 0,26443, 0,26443, 0,26443, 26443,26443,26444, 0, 0, 0, 0, 0, 0, 0, 0, 0,26444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26444, 0, 0, 0, 0, 0, 0,26444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26444, 0,26444, 0, 26444, 0, 0,26444,26444, 0, 0, 0,26444, 0, 0,26444, 0,26444, 0,26444, 0,26444,26444,26444, 26460, 0,26460, 0, 0, 0, 0, 0, 0,26460, 0, 0,26460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26460, 0, 0, 0, 0, 0, 0,26460, 0, 0, 0, 0, 0, 0,26460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26460, 0,26460,26460, 26460, 0, 0,26460,26460, 0, 0, 0,26460, 0, 0,26460, 0,26460, 0,26460, 0,26460,26460,26460, 26465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26465, 0, 0, 0, 0, 0, 0,26465, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26465, 0,26465, 0,26465, 0, 0,26465,26465, 0, 0, 0,26465, 0, 0,26465, 0,26465, 0,26465, 0,26465,26465,26465,26466, 0, 0, 0, 0, 0, 0, 0, 0, 0,26466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26466, 0, 0, 0, 0, 0, 0,26466, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26466, 0,26466, 0,26466, 0, 0,26466, 26466, 0, 0, 0,26466, 0, 0,26466, 0,26466, 0,26466, 0,26466,26466,26466,26467, 0, 0, 0, 0, 0, 0, 0, 0, 0,26467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26467, 0, 0, 0, 0, 0, 0,26467, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26467, 0,26467, 0,26467, 0, 0,26467,26467, 0, 0, 0,26467,26467, 0,26467, 0,26467, 0,26467, 0,26467,26467,26467,26468, 0, 0, 0, 0, 0, 0, 0, 0, 0,26468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26468, 0, 0, 0, 0, 0, 0,26468, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26468, 0, 26468, 0,26468, 0, 0,26468,26468, 0, 0, 0, 26468,26468, 0,26468, 0,26468, 0,26468, 0,26468, 26468,26468,26471, 0,26471, 0, 0, 0, 0, 0, 0,26471, 0, 0,26471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26471, 0, 0, 0, 0, 0, 0,26471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26471, 0, 26471, 0,26471, 0, 0,26471,26471, 0, 0, 0, 26471, 0, 0,26471, 0,26471, 0,26471, 0,26471, 26471,26471,26472, 0,26472, 0, 0, 0, 0, 0, 0,26472, 0, 0,26472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26472, 0, 0, 0, 0, 0, 0,26472, 0, 0, 0, 0, 0, 0,26472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26472, 0, 26472,26472,26472, 0, 0,26472,26472, 0, 0, 0, 26472, 0, 0,26472, 0,26472, 0,26472, 0,26472, 26472,26472,26476, 0, 0, 0, 0, 0, 0, 0, 0, 0,26476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26476, 0, 0, 0, 0, 0, 0,26476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26476, 0,26476, 0, 26476, 0, 0,26476,26476, 0, 0, 0,26476, 0, 0,26476, 0,26476, 0,26476, 0,26476,26476,26476, 26477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26477, 0, 0, 0, 0, 0, 0,26477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26477, 0,26477, 0,26477, 0, 0,26477,26477, 0, 0, 0,26477,26477, 0,26477, 0,26477, 0,26477, 0,26477,26477,26477,26481, 0, 26481, 0, 0, 0, 0, 0, 0,26481, 0, 0, 26481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26481, 0, 0, 0, 0, 0, 0,26481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26481, 0,26481, 0,26481, 0, 0,26481,26481, 0, 0, 0,26481, 0, 0,26481, 0,26481, 0,26481, 0,26481,26481,26481,26482, 0, 26482, 0, 0, 0, 0, 0, 0,26482, 0, 0, 26482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26482, 0, 0, 0, 0, 0, 0,26482, 0, 0, 0, 0, 0, 0,26482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26482, 0,26482,26482,26482, 0, 0,26482,26482, 0, 0, 0,26482, 0, 0,26482, 0,26482, 0,26482, 0,26482,26482,26482,26486, 0, 0, 0, 0, 0, 0, 0, 0, 0,26486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26486, 0, 0, 0, 0, 0, 0, 0, 0, 26486, 0, 0, 0, 0, 0, 0,26486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26486, 0,26486, 0,26486, 0, 0,26486, 26486, 0, 0, 0,26486, 0,26486,26486, 0,26486, 0,26486, 0,26486,26486,26486,26489, 0, 0, 0, 0, 0, 0, 0, 0, 0,26489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26489, 0, 0, 0, 0, 0, 0, 0, 0,26489, 0, 0, 0, 0, 0, 0,26489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26489, 0,26489, 0,26489, 0, 0,26489,26489, 0, 0, 0,26489, 0,26489,26489, 0,26489, 0,26489, 0,26489,26489,26489,26499,26499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26499,26499,26499,26499, 26499,26499,26499,26499,26499, 0, 0, 0, 0, 0, 0, 0,26499,26499,26499,26499,26499,26499,26499,26499, 26499,26499,26499,26499,26499,26499,26499,26499,26499,26499, 26499,26499,26499,26499,26499, 0, 0,26499, 0,26499, 26499,26499,26499,26499,26499,26512,26512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26512,26512,26512, 26512,26512,26512,26512,26512,26512, 0,26512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26512,26523,26523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26523,26523,26523,26523,26523, 26523,26523,26523,26523, 0,26523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26523,26548,26548, 0,26548,26548, 26548,26548,26548,26548,26548, 0,26548,26548,26548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26548, 26548,26548,26548,26548,26548,26548, 0, 0, 0, 0, 0,26548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26548, 26548,26548,26548,26549,26549, 0,26549,26549,26549,26549, 26549,26549,26549, 0,26549,26549,26549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26549,26549,26549, 26549,26549,26549,26549,26549, 0, 0, 0, 0,26549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26549,26549,26549, 26549,26553,26553,26553,26553,26553,26553,26553,26553,26553, 0, 0, 0, 0, 0, 0, 0,26553,26553,26553, 26553,26553,26553, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26553,26553,26553,26553,26553,26553, 26561,26561,26561,26561,26561,26561,26561,26561,26561,26561, 0, 0, 0, 0, 0, 0,26561,26561,26561,26561, 26561,26561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26561,26561,26561,26561,26561,26561,26562, 26562,26562,26562,26562,26562,26562,26562,26562,26562, 0, 0, 0, 0, 0, 0,26562,26562,26562,26562,26562, 26562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26562,26562,26562,26562,26562,26562,26564,26564, 26564,26564,26564,26564,26564,26564,26564, 0, 0, 0, 0, 0, 0, 0,26564,26564,26564,26564,26564,26564, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26564, 0, 0, 0,26564,26564,26564,26564,26564,26564,26567,26567,26567, 26567,26567,26567,26567,26567,26567,26567, 0, 0, 0, 0, 0, 0,26567,26567,26567,26567,26567,26567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26567,26567,26567,26567,26567,26567,26569,26569,26569,26569, 26569,26569,26569,26569,26569, 0, 0, 0, 0, 0, 0, 0,26569,26569,26569,26569,26569,26569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26569, 26569,26569,26569,26569,26569,26574,26574,26574,26574,26574, 26574,26574,26574,26574,26574, 0, 0, 0, 0, 0, 0,26574,26574,26574,26574,26574,26574, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26574,26574, 26574,26574,26574,26574,26576,26576,26576,26576,26576,26576, 26576,26576,26576, 0, 0, 0, 0, 0, 0, 0, 26576,26576,26576,26576,26576,26576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26576,26576,26576, 26576,26576,26576,26579,26579,26579,26579,26579,26579,26579, 26579,26579, 0, 0, 0, 0, 0, 0, 0,26579, 26579,26579,26579,26579,26579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26579,26579,26579,26579, 26579,26579,26580,26580,26580,26580,26580,26580,26580,26580, 26580,26580, 0, 0, 0, 0, 0, 0,26580,26580, 26580,26580,26580,26580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26580,26580,26580,26580,26580, 26580,26582,26582,26582,26582,26582,26582,26582,26582,26582, 0, 0, 0, 0, 0, 0, 0,26582,26582,26582, 26582,26582,26582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26582,26582,26582,26582,26582,26582, 26585,26585,26585,26585,26585,26585,26585,26585,26585, 0, 0, 0, 0, 0, 0, 0,26585,26585,26585,26585, 26585,26585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26585,26585,26585,26585,26585,26585,26586, 0,26586,26586,26586,26586,26586,26586,26586,26586,26586, 26586, 0, 0, 0, 0, 0, 0,26586,26586,26586, 26586,26586,26586, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26586,26586,26586,26586,26586,26586, 26589,26589,26589,26589,26589,26589,26589,26589,26589,26589, 0, 0, 0, 0, 0, 0,26589,26589,26589,26589, 26589,26589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26589,26589,26589,26589,26589,26589,26591, 26591,26591,26591,26591,26591,26591,26591,26591, 0, 0, 0, 0, 0, 0, 0,26591,26591,26591,26591,26591, 26591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26591,26591,26591,26591,26591,26591,26594,26594, 26594,26594,26594,26594,26594,26594,26594, 0, 0, 0, 0, 0, 0, 0,26594,26594,26594,26594,26594,26594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26594,26594,26594,26594,26594,26594,26595,26595,26595, 26595,26595,26595,26595,26595,26595,26595, 0, 0, 0, 0, 0, 0,26595,26595,26595,26595,26595,26595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26595,26595,26595,26595,26595,26595,26598,26598,26598,26598, 26598,26598,26598,26598,26598,26598, 0, 0, 0, 0, 0, 0,26598,26598,26598,26598,26598,26598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26598, 26598,26598,26598,26598,26598,26600,26600,26600,26600,26600, 26600,26600,26600,26600, 0, 0, 0, 0, 0, 0, 0,26600,26600,26600,26600,26600,26600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26600,26600, 26600,26600,26600,26600,26603,26603,26603,26603,26603,26603, 26603,26603,26603, 0, 0, 0, 0, 0, 0, 0, 26603,26603,26603,26603,26603,26603, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26603,26603,26603, 26603,26603,26603,26604,26604,26604,26604,26604,26604,26604, 26604,26604,26604, 0, 0, 0, 0, 0, 0,26604, 26604,26604,26604,26604,26604, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26604,26604,26604,26604, 26604,26604,26610,26610,26610,26610,26610,26610,26610,26610, 26610,26610, 0, 0, 0, 0, 0, 0,26610,26610, 26610,26610,26610,26610, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26610,26610,26610,26610,26610, 26610,26611,26611,26611,26611,26611,26611,26611,26611,26611, 0, 0, 0, 0, 0, 0, 0,26611,26611,26611, 26611,26611,26611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26611,26611,26611,26611,26611,26611, 26616,26616,26616,26616,26616,26616,26616,26616,26616,26616, 0, 0, 0, 0, 0, 0,26616,26616,26616,26616, 26616,26616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26616,26616,26616,26616,26616,26616,26620, 26620,26620,26620,26620,26620,26620,26620,26620,26620, 0, 0, 0, 0, 0, 0,26620,26620,26620,26620,26620, 26620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26620,26620,26620,26620,26620,26620,26652, 0, 0, 0, 0, 0, 0, 0, 0, 0,26652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26652, 0, 0, 0, 0, 0, 0,26652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26652, 0,26652, 0,26652, 0, 0,26652, 26652, 0, 0, 0,26652, 0, 0,26652, 0,26652, 0,26652, 0,26652,26652,26652,26653, 0, 0, 0, 0, 0, 0, 0, 0, 0,26653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26653, 0, 0, 0, 0, 0, 0,26653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26653, 0,26653, 0,26653, 0, 0,26653,26653, 0, 0, 0,26653, 0, 0,26653, 0,26653, 0,26653, 0,26653,26653,26653,26653,26661, 0,26661, 0, 0, 0, 0, 0, 0,26661, 0, 0,26661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26661, 0, 0, 0, 0, 0, 0,26661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26661, 0,26661, 0,26661, 0, 0,26661,26661, 0, 0, 0,26661, 0, 0,26661, 0,26661, 0, 26661, 0,26661,26661,26661,26664, 0,26664, 0, 0, 0, 0, 0, 0,26664, 0, 0,26664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26664, 0, 0, 0, 0, 0, 0,26664, 0, 0, 0, 0, 0,26664, 0, 0, 0, 0, 0, 0, 0, 0,26664, 0,26664, 0,26664, 0, 0,26664,26664, 0, 0, 0,26664, 0, 0,26664, 0,26664, 0, 26664, 0,26664,26664,26664,26694, 0, 0, 0, 0, 0, 0, 0, 0, 0,26694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26694, 0, 0, 0, 0, 0, 0,26694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26694, 0,26694,26694,26694, 0, 0,26694,26694, 0, 0, 0,26694, 0, 0,26694, 0,26694,26694,26694, 0, 26694,26694,26694,26695, 0, 0, 0, 0, 0, 0, 0,26695, 0,26695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26695, 0, 0, 0, 0, 0, 0,26695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26695, 0,26695, 0,26695, 0, 0,26695,26695, 0, 0, 0,26695, 0, 0,26695, 0,26695, 0,26695, 0,26695,26695, 26695,26698, 0,26698, 0, 0, 0, 0, 0, 0, 26698, 0, 0,26698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26698, 0, 0, 0, 0, 0, 0,26698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26698,26698, 0,26698, 0,26698, 0, 0,26698,26698, 0, 0, 0,26698, 0, 0,26698, 0,26698, 0,26698, 0,26698,26698, 26698,26699, 0,26699, 0, 0, 0, 0, 0, 0, 26699, 0, 0,26699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26699, 0, 0, 0, 0, 0, 0,26699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26699, 0,26699, 0,26699, 0, 0,26699,26699, 0, 0, 0,26699, 0, 0,26699, 0,26699, 0,26699, 0,26699,26699, 26699,26702, 0, 0, 0, 0, 0, 0, 0, 0, 0,26702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26702, 0, 0, 0, 0, 0, 0, 26702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26702, 0,26702,26702,26702, 0, 0,26702,26702, 0, 0, 0,26702, 0, 0, 26702, 0,26702,26702,26702, 0,26702,26702,26702,26703, 0, 0, 0, 0, 0, 0, 0,26703, 0,26703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26703, 0, 0, 0, 0, 0, 0,26703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26703, 0,26703, 0,26703, 0, 0, 26703,26703, 0, 0, 0,26703, 0, 0,26703, 0, 26703, 0,26703, 0,26703,26703,26703,26706, 0,26706, 0, 0, 0, 0, 0, 0,26706, 0, 0,26706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26706, 0, 0, 0, 0, 0, 0,26706, 0, 0, 0, 0, 0,26706, 0, 0, 0, 0, 0, 0, 0, 0,26706, 0,26706, 0,26706, 0, 0, 26706,26706, 0, 0, 0,26706, 0, 0,26706, 0, 26706, 0,26706, 0,26706,26706,26706,26707, 0, 0, 0, 0, 0, 0, 0, 0, 0,26707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26707, 0,26707, 0, 0, 0, 0,26707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26707, 0,26707, 0,26707, 0, 0,26707,26707, 0, 0, 0,26707, 0, 0,26707, 0,26707, 0, 26707, 0,26707,26707,26707,26708, 0, 0, 0, 0, 0, 0, 0, 0, 0,26708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26708, 0, 0, 0, 0, 0, 0,26708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26708, 0,26708, 0,26708, 0, 0,26708,26708, 0, 0, 0,26708, 0, 0,26708, 0,26708, 0,26708, 0, 26708,26708,26708,26709, 0, 0, 0, 0, 0, 0, 0, 0, 0,26709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26709, 0, 0, 0, 0,26709, 0, 0, 0, 0, 0, 0,26709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26709, 0,26709, 0,26709, 0, 0,26709,26709, 0, 0, 0,26709, 0, 0,26709, 0,26709, 0,26709, 0,26709,26709, 26709,26723, 0,26723, 0, 0, 0, 0, 0, 0, 26723, 0, 0,26723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26723, 0, 0, 0, 0, 0, 0,26723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26723, 0,26723, 0,26723, 0,26723,26723,26723, 0, 0, 0,26723, 0,26723,26723, 0,26723, 0,26723, 0,26723,26723, 26723,26743, 0,26743, 0, 0, 0, 0, 0, 0, 26743, 0, 0,26743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26743, 0, 0, 0, 0, 0, 0,26743, 0, 0, 0, 0, 0,26743, 0, 0, 0, 0, 0, 0, 0, 0,26743, 0,26743, 0,26743, 0, 0,26743,26743, 0, 0, 0,26743, 0, 0,26743, 0,26743, 0,26743, 0,26743,26743, 26743,26744, 0, 0, 0, 0, 0, 0, 0, 0, 0,26744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26744, 0,26744, 0, 0, 0, 0, 26744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26744, 0,26744, 0,26744, 0, 0,26744,26744, 0, 0, 0,26744, 0, 0, 26744, 0,26744, 0,26744, 0,26744,26744,26744,26745, 0, 0, 0, 0, 0, 0, 0, 0, 0,26745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26745, 0, 0, 0, 0, 0, 0,26745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26745, 0,26745, 0,26745, 0, 0, 26745,26745, 0, 0, 0,26745, 0, 0,26745, 0, 26745, 0,26745, 0,26745,26745,26745,26746, 0, 0, 0, 0, 0, 0, 0, 0, 0,26746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26746, 0, 0, 0, 0,26746, 0, 0, 0, 0, 0, 0,26746, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26746, 0,26746, 0,26746, 0, 0,26746,26746, 0, 0, 0,26746, 0, 0,26746, 0,26746, 0, 26746, 0,26746,26746,26746,26760, 0,26760, 0, 0, 0, 0, 0, 0,26760, 0, 0,26760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26760, 0, 0, 0, 0, 0, 0,26760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26760, 0,26760, 0,26760, 0,26760,26760,26760, 0, 0, 0,26760, 0,26760,26760, 0,26760, 0, 26760, 0,26760,26760,26760,26780, 0,26780, 0, 0, 0, 0, 0, 0,26780, 0, 0,26780, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26780, 0, 0, 0, 0, 0, 0,26780, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26780,26780, 0,26780, 0,26780, 0, 0,26780,26780, 0, 0, 0,26780, 0, 0,26780, 0,26780, 0, 26780, 0,26780,26780,26780,26781, 0,26781, 0, 0, 0, 0, 0, 0,26781, 0, 0,26781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26781, 0, 0, 0, 0, 0, 0,26781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26781, 0,26781, 0,26781, 0, 0,26781,26781, 0, 0, 0,26781, 0, 0,26781, 0,26781, 0, 26781, 0,26781,26781,26781,26784, 0, 0, 0, 0, 0, 0, 0, 0, 0,26784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26784, 0, 0, 0, 0, 0, 0,26784, 0, 0, 0, 0, 0, 0,26784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26784, 0,26784,26784,26784, 0, 0,26784,26784, 0, 0, 0,26784, 0, 0,26784, 0,26784, 0,26784, 0, 26784,26784,26784,26785, 0, 0, 0, 0, 0, 0, 0, 0, 0,26785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26785, 0, 0, 0, 0, 0, 0,26785, 0, 0,26785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26785, 0,26785, 26785,26785, 0, 0,26785,26785, 0, 0, 0,26785, 0, 0,26785, 0,26785, 0,26785, 0,26785,26785, 26785,26788, 0,26788, 0, 0, 0, 0, 0, 0, 26788, 0, 0,26788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26788, 0, 0, 0, 0, 0, 0,26788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26788,26788, 0,26788, 0,26788, 0, 0,26788,26788, 0, 0, 0,26788, 0, 0,26788, 0,26788, 0,26788, 0,26788,26788, 26788,26789, 0,26789, 0, 0, 0, 0, 0, 0, 26789, 0, 0,26789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26789, 0, 0, 0, 0, 0, 0,26789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26789, 0,26789, 0,26789, 0, 0,26789,26789, 0, 0, 0,26789, 0, 0,26789, 0,26789, 0,26789, 0,26789,26789, 26789,26792, 0, 0, 0, 0, 0, 0, 0, 0, 0,26792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26792, 0, 0, 0, 0, 0, 0,26792, 0, 0, 0, 0, 0, 0, 26792, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26792, 0,26792,26792,26792, 0, 0,26792,26792, 0, 0, 0,26792, 0, 0, 26792, 0,26792, 0,26792, 0,26792,26792,26792,26793, 0, 0, 0, 0, 0, 0, 0, 0, 0,26793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26793, 0, 0, 0, 0, 0, 0,26793, 0, 0,26793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26793, 0,26793,26793,26793, 0, 0, 26793,26793, 0, 0, 0,26793, 0, 0,26793, 0, 26793, 0,26793, 0,26793,26793,26793,26796, 0,26796, 0, 0, 0, 0, 0, 0,26796, 0, 0,26796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26796, 0, 0, 0, 0, 0, 0,26796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26796,26796, 0,26796, 0,26796, 0, 0, 26796,26796, 0, 0, 0,26796, 0, 0,26796, 0, 26796, 0,26796, 0,26796,26796,26796,26797, 0,26797, 0, 0, 0, 0, 0, 0,26797, 0, 0,26797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26797, 0, 0, 0, 0, 0, 0,26797, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26797, 0,26797, 0,26797, 0, 0, 26797,26797, 0, 0, 0,26797, 0, 0,26797, 0, 26797, 0,26797, 0,26797,26797,26797,26809,26809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26809, 26809,26809,26809,26809,26809,26809,26809,26809, 0,26809, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26809,26812,26812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26812,26812,26812,26812,26812,26812,26812, 26812,26812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26812, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26812, 0,26812,26812,26812,26812, 26812,26812,26835,26835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26835,26835,26835,26835,26835,26835, 26835,26835,26835, 0,26835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26835,26836,26836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26836,26836,26836,26836, 26836,26836,26836,26836,26836, 0,26836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26836,26849,26849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26849,26849,26849,26849,26849,26849, 26849,26849,26849, 0,26849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26849,26858,26858, 0,26858, 26858,26858,26858,26858,26858,26858, 0,26858,26858,26858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26858,26858,26858,26858,26858,26858,26858, 0, 0, 0, 0, 0,26858, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26858,26858,26858,26858,26859,26859, 0,26859,26859,26859, 26859,26859,26859,26859, 0,26859,26859,26859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26859,26859, 26859,26859,26859,26859,26859,26859, 0, 0, 0, 0, 26859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26859,26859, 26859,26859,26867,26867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26867,26867,26867,26867,26867,26867, 26867,26867,26867, 0,26867, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26867,26869,26869,26869,26869, 26869,26869,26869,26869,26869,26869, 0, 0, 0, 0, 0, 0,26869,26869,26869,26869,26869,26869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26869, 26869,26869,26869,26869,26869,26873,26873,26873,26873,26873, 26873,26873,26873,26873, 0, 0, 0, 0, 0, 0, 0,26873,26873,26873,26873,26873,26873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26873, 0, 0, 0,26873,26873, 26873,26873,26873,26873,26879,26879,26879,26879,26879,26879, 26879,26879,26879, 0, 0, 0, 0, 0, 0, 0, 26879,26879,26879,26879,26879,26879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26879,26879,26879, 26879,26879,26879,26882,26882,26882,26882,26882,26882,26882, 26882,26882,26882, 0, 0, 0, 0, 0, 0,26882, 26882,26882,26882,26882,26882, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26882,26882,26882,26882, 26882,26882,26886,26886,26886,26886,26886,26886,26886,26886, 26886, 0, 0, 0, 0, 0, 0, 0,26886,26886, 26886,26886,26886,26886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26886,26886,26886,26886,26886, 26886,26889, 0,26889,26889,26889,26889,26889,26889,26889, 26889,26889,26889, 0, 0, 0, 0, 0, 0,26889, 26889,26889,26889,26889,26889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26889,26889,26889,26889, 26889,26889,26896,26896,26896,26896,26896,26896,26896,26896, 26896, 0, 0, 0, 0, 0, 0, 0,26896,26896, 26896,26896,26896,26896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26896,26896,26896,26896,26896, 26896,26899,26899,26899,26899,26899,26899,26899,26899,26899, 26899, 0, 0, 0, 0, 0, 0,26899,26899,26899, 26899,26899,26899, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26899,26899,26899,26899,26899,26899, 26903,26903,26903,26903,26903,26903,26903,26903,26903,26903, 0, 0, 0, 0, 0, 0,26903,26903,26903,26903, 26903,26903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26903,26903,26903,26903,26903,26903,26907, 26907,26907,26907,26907,26907,26907,26907,26907, 0, 0, 0, 0, 0, 0, 0,26907,26907,26907,26907,26907, 26907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26907,26907,26907,26907,26907,26907,26910,26910, 26910,26910,26910,26910,26910,26910,26910,26910, 0, 0, 0, 0, 0, 0,26910,26910,26910,26910,26910,26910, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26910,26910,26910,26910,26910,26910,26914,26914,26914, 26914,26914,26914,26914,26914,26914,26914, 0, 0, 0, 0, 0, 0,26914,26914,26914,26914,26914,26914, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26914,26914,26914,26914,26914,26914,26918,26918,26918,26918, 26918,26918,26918,26918,26918, 0, 0, 0, 0, 0, 0, 0,26918,26918,26918,26918,26918,26918, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26918, 26918,26918,26918,26918,26918,26921,26921,26921,26921,26921, 26921,26921,26921,26921,26921, 0, 0, 0, 0, 0, 0,26921,26921,26921,26921,26921,26921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26921,26921, 26921,26921,26921,26921,26925,26925,26925,26925,26925,26925, 26925,26925,26925,26925, 0, 0, 0, 0, 0, 0, 26925,26925,26925,26925,26925,26925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26925,26925,26925, 26925,26925,26925,26926,26926,26926,26926,26926,26926,26926, 26926,26926,26926, 0, 0, 0, 0, 0, 0,26926, 26926,26926,26926,26926,26926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26926,26926,26926,26926, 26926,26926,26928,26928,26928,26928,26928,26928,26928,26928, 26928, 0, 0, 0, 0, 0, 0, 0,26928,26928, 26928,26928,26928,26928, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26928,26928,26928,26928,26928, 26928,26931,26931,26931,26931,26931,26931,26931,26931,26931, 0, 0, 0, 0, 0, 0, 0,26931,26931,26931, 26931,26931,26931, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26931,26931,26931,26931,26931,26931, 26932,26932,26932,26932,26932,26932,26932,26932,26932,26932, 0, 0, 0, 0, 0, 0,26932,26932,26932,26932, 26932,26932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26932,26932,26932,26932,26932,26932,26960, 0, 0, 0, 0, 0, 0, 0, 0, 0,26960, 26960,26960,26960,26960,26960,26960,26960,26960,26960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26960, 0, 0, 0, 0, 0, 0,26960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26960, 0,26960, 0,26960, 0, 0, 26960,26960, 0, 0, 0,26960, 0, 0,26960, 0, 26960, 0,26960, 0,26960,26960,26960,26961, 0, 0, 0, 0, 0, 0, 0, 0, 0,26961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26961, 0, 0, 0, 0, 0, 0,26961, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26961, 0,26961,26961,26961, 0, 0,26961,26961, 0, 0, 0,26961, 0,26961,26961, 0,26961, 0, 26961, 0,26961,26961,26961,26972, 0,26972, 0, 0, 0, 0, 0, 0,26972, 0, 0,26972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26972, 0, 0, 0, 0, 0, 0,26972, 0, 0, 0, 0, 0,26972, 0, 0, 0, 0, 0, 0, 0, 0,26972, 0,26972, 0,26972, 0, 0,26972,26972, 0, 0, 0,26972, 0, 0,26972, 0,26972, 0, 26972, 0,26972,26972,26972,26973, 0,26973, 0, 0, 0, 0, 0, 0,26973, 0, 0,26973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26973, 0, 0, 0, 0, 0, 0,26973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26973, 0,26973, 0,26973, 0, 0,26973,26973, 0, 0, 0,26973,26973, 0,26973, 0,26973, 0, 26973, 0,26973,26973,26973,26998, 0, 0, 0, 0, 0, 0, 0, 0, 0,26998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26998, 0, 0, 0, 0, 0, 0,26998, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26998, 0,26998, 0,26998, 0, 0,26998,26998, 0, 0, 0,26998, 0, 0,26998, 0,26998, 0,26998, 0, 26998,26998,26998,26999, 0, 0, 0, 0, 0, 0, 0, 0, 0,26999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26999, 0, 0, 0, 0, 0, 0,26999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,26999, 0,26999, 26999,26999, 0, 0,26999,26999, 0, 0, 0,26999, 26999, 0,26999, 0,26999, 0,26999, 0,26999,26999, 26999,27002, 0,27002, 0, 0, 0, 0, 0, 0, 27002, 0, 0,27002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27002, 0, 0, 0, 0, 0, 0,27002, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27002, 0,27002, 0,27002, 0, 0,27002,27002, 0, 0, 0,27002, 0, 0,27002, 0,27002, 0,27002, 0,27002,27002, 27002,27003, 0,27003, 0, 0, 0, 0, 0, 0, 27003, 0, 0,27003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27003, 0, 0, 0, 0, 0, 0,27003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27003, 0,27003, 0,27003, 0, 0,27003,27003, 0, 0, 0,27003, 0,27003,27003, 0,27003, 0,27003, 0,27003,27003, 27003,27006, 0, 0, 0, 0, 0, 0, 0, 0, 0,27006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27006, 0, 0, 0, 0, 0, 0, 27006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27006, 0,27006, 0,27006, 0, 0,27006,27006, 0, 0, 0,27006, 0, 0, 27006, 0,27006, 0,27006, 0,27006,27006,27006,27007, 0, 0, 0, 0, 0, 0, 0, 0, 0,27007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27007, 0, 0, 0, 0, 0, 0,27007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27007, 0,27007,27007,27007, 0, 0, 27007,27007, 0, 0, 0,27007,27007, 0,27007, 0, 27007, 0,27007, 0,27007,27007,27007,27010, 0,27010, 0, 0, 0, 0, 0, 0,27010, 0, 0,27010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27010, 0, 0, 0, 0, 0, 0,27010, 0, 0, 0, 0, 0,27010, 0, 0, 0, 0, 0, 0, 0, 0,27010, 0,27010, 0,27010, 0, 0, 27010,27010, 0, 0, 0,27010, 0, 0,27010, 0, 27010, 0,27010, 0,27010,27010,27010,27011, 0, 0, 0, 0, 0, 0, 0, 0, 0,27011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27011, 0, 0, 0, 0, 0, 0,27011, 0, 0, 0, 0, 0,27011, 0, 0, 0, 0, 0, 0, 0, 0,27011, 0,27011, 0,27011, 0, 0,27011,27011, 0, 0, 0,27011, 0, 0,27011, 0,27011, 0, 27011, 0,27011,27011,27011,27012, 0, 0, 0, 0, 0, 0, 0, 0, 0,27012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27012, 0, 0, 0, 0, 0, 0,27012, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27012, 0,27012, 0,27012, 0,27012,27012,27012, 0, 0, 0,27012, 0,27012,27012, 0,27012, 0,27012, 0, 27012,27012,27012,27032, 0,27032, 0, 0, 0, 0, 0, 0,27032, 0, 0,27032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27032, 0, 0, 0, 0, 0, 0,27032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27032, 0,27032, 0,27032, 0, 0,27032,27032, 0, 0, 0,27032,27032, 0,27032, 0,27032, 0,27032, 0, 27032,27032,27032,27052, 0,27052, 0, 0, 0, 0, 0, 0,27052, 0, 0,27052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27052, 0, 0, 0, 0, 0, 0,27052, 0, 0, 0, 0, 0, 27052, 0, 0, 0, 0, 0, 0, 0, 0,27052, 0,27052, 0,27052, 0, 0,27052,27052, 0, 0, 0,27052, 0, 0,27052, 0,27052, 0,27052, 0, 27052,27052,27052,27053, 0, 0, 0, 0, 0, 0, 0, 0, 0,27053, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27053, 0, 0, 0, 0, 0, 0,27053, 0, 0, 0, 0, 0,27053, 0, 0, 0, 0, 0, 0, 0, 0,27053, 0,27053, 0,27053, 0, 0,27053,27053, 0, 0, 0,27053, 0, 0,27053, 0,27053, 0,27053, 0,27053,27053, 27053,27054, 0, 0, 0, 0, 0, 0, 0, 0, 0,27054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27054, 0, 0, 0, 0, 0, 0, 27054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27054, 0,27054, 0,27054, 0,27054,27054,27054, 0, 0, 0,27054, 0,27054, 27054, 0,27054, 0,27054, 0,27054,27054,27054,27074, 0,27074, 0, 0, 0, 0, 0, 0,27074, 0, 0,27074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27074, 0, 0, 0, 0, 0, 0, 27074, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27074, 0,27074, 0,27074, 0, 0,27074,27074, 0, 0, 0,27074,27074, 0, 27074, 0,27074, 0,27074, 0,27074,27074,27074,27094, 0,27094, 0, 0, 0, 0, 0, 0,27094, 0, 0,27094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27094, 0, 0, 0, 0, 0, 0, 27094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27094, 0,27094, 0,27094, 0, 0,27094,27094, 0, 0, 0,27094, 0, 0, 27094, 0,27094, 0,27094, 0,27094,27094,27094,27095, 0,27095, 0, 0, 0, 0, 0, 0,27095, 0, 0,27095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27095, 0, 0, 0, 0, 0, 0, 27095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27095, 0,27095, 0,27095, 0, 0,27095,27095, 0, 0, 0,27095, 0,27095, 27095, 0,27095, 0,27095, 0,27095,27095,27095,27098, 0, 0, 0, 0, 0, 0, 0, 0, 0,27098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27098, 0, 0, 0, 0, 0, 0,27098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27098,27098, 0,27098, 0,27098, 0, 0, 27098,27098, 0, 0, 0,27098, 0, 0,27098, 0, 27098, 0,27098, 0,27098,27098,27098,27099, 0, 0, 0, 0, 0, 0, 0, 0, 0,27099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27099, 0, 0, 0, 0, 0, 0,27099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27099, 0,27099, 0,27099, 0, 0,27099,27099, 0, 0, 0,27099, 0, 0,27099, 0,27099, 0, 27099, 0,27099,27099,27099,27100, 0, 0, 0, 0, 0, 0, 0, 0, 0,27100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27100, 0, 0, 0, 0, 0, 0,27100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27100, 0,27100, 0,27100, 0, 0,27100,27100, 0, 0, 0,27100, 0, 0,27100, 0,27100, 0,27100, 0, 27100,27100,27100,27101, 0, 0, 0, 0, 0, 0, 0, 0, 0,27101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27101, 0, 0, 0, 0, 0, 0,27101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27101, 0,27101, 0,27101, 0, 0,27101,27101, 0, 0, 0,27101, 0, 0,27101, 0,27101, 0,27101, 0,27101,27101, 27101,27102, 0,27102, 0, 0, 0, 0, 0, 0, 27102, 0, 0,27102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27102, 0, 0, 0, 0, 0, 0,27102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27102, 0,27102, 0,27102, 0, 0,27102,27102, 0, 0, 0,27102, 0, 0,27102, 0,27102, 0,27102, 0,27102,27102, 27102,27103, 0,27103, 0, 0, 0, 0, 0, 0, 27103, 0, 0,27103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27103, 0, 0, 0, 0, 0, 0,27103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27103, 0,27103, 0,27103, 0, 0,27103,27103, 0, 0, 0,27103, 0,27103,27103, 0,27103, 0,27103, 0,27103,27103, 27103,27105, 0, 0, 0, 0, 0, 0, 0, 0, 0,27105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27105, 0, 0, 0, 0, 0, 0, 27105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27105,27105, 0,27105, 0,27105, 0, 0,27105,27105, 0, 0, 0,27105, 0, 0, 27105, 0,27105, 0,27105, 0,27105,27105,27105,27106, 0, 0, 0, 0, 0, 0, 0, 0, 0,27106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27106, 0, 0, 0, 0, 0, 0,27106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27106, 0,27106, 0,27106, 0, 0, 27106,27106, 0, 0, 0,27106, 0, 0,27106, 0, 27106, 0,27106, 0,27106,27106,27106,27107, 0, 0, 0, 0, 0, 0, 0, 0, 0,27107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27107, 0, 0, 0, 0, 0, 0,27107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27107, 0,27107, 0,27107, 0, 0,27107,27107, 0, 0, 0,27107, 0, 0,27107, 0,27107, 0, 27107, 0,27107,27107,27107,27108, 0, 0, 0, 0, 0, 0, 0, 0, 0,27108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27108, 0, 0, 0, 0, 0, 0,27108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27108, 0,27108, 0,27108, 0, 0,27108,27108, 0, 0, 0,27108, 0, 0,27108, 0,27108, 0,27108, 0, 27108,27108,27108,27109, 0,27109, 0, 0, 0, 0, 0, 0,27109, 0, 0,27109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27109, 0, 0, 0, 0, 0, 0,27109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27109, 0,27109, 0,27109, 0, 0,27109,27109, 0, 0, 0,27109, 0, 0,27109, 0,27109, 0,27109, 0, 27109,27109,27109,27110, 0,27110, 0, 0, 0, 0, 0, 0,27110, 0, 0,27110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27110, 0, 0, 0, 0, 0, 0,27110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27110, 0,27110, 0,27110, 0, 0,27110,27110, 0, 0, 0,27110, 0,27110,27110, 0,27110, 0,27110, 0, 27110,27110,27110,27112, 0, 0, 0, 0, 0, 0, 0, 0, 0,27112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27112, 0, 0, 0, 0, 0, 0, 0, 0,27112, 0, 0, 0, 0, 0, 0,27112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27112, 0,27112, 0,27112, 0, 0,27112,27112, 0, 0, 0,27112, 0, 0,27112, 0,27112, 0,27112, 0,27112,27112, 27112,27114, 0, 0, 0, 0, 0, 0, 0, 0, 0,27114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27114, 0, 0, 0, 0, 0, 0, 0, 0,27114, 0, 0, 0, 0, 0, 0, 27114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27114, 0,27114, 0,27114, 0, 0,27114,27114, 0, 0, 0,27114, 0, 0, 27114, 0,27114, 0,27114, 0,27114,27114,27114,27116, 27116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27116,27116,27116,27116,27116,27116,27116,27116,27116, 0,27116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27116,27119,27119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27119,27119,27119,27119,27119, 27119,27119,27119,27119, 0,27119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27119,27121,27121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27121,27121,27121,27121,27121,27121,27121, 27121,27121, 0,27121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27121,27123, 27123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27123,27123,27123,27123,27123,27123,27123,27123,27123, 0,27123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27123,27127,27127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27127,27127,27127,27127,27127, 27127,27127,27127,27127, 0,27127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27127,27148,27148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27148, 27148,27148,27148,27148,27148,27148,27148,27148, 0,27148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27148,27155,27155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27155,27155,27155, 27155,27155,27155,27155,27155,27155, 0,27155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27155,27161, 27161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27161,27161,27161,27161,27161,27161,27161,27161,27161, 0,27161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27161,27169,27169, 0,27169,27169,27169,27169, 27169,27169,27169, 0,27169,27169,27169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27169,27169,27169, 27169,27169,27169,27169, 0, 0, 0, 0, 0,27169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27169,27169,27169, 27169,27170,27170, 0,27170,27170,27170,27170,27170,27170, 27170, 0,27170,27170,27170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27170,27170,27170,27170,27170, 27170,27170,27170, 0, 0, 0, 0,27170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27170,27170,27170,27170,27174, 27174,27174,27174,27174,27174,27174,27174,27174, 0, 0, 0, 0, 0, 0, 0,27174,27174,27174,27174,27174, 27174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27174,27174,27174,27174,27174,27174,27176,27176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27176,27176,27176,27176,27176,27176,27176,27176,27176, 0, 27176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27176,27181,27181,27181,27181, 27181,27181,27181,27181,27181, 0, 0, 0, 0, 0, 0, 0,27181,27181,27181,27181,27181,27181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27181, 0, 0, 0,27181, 27181,27181,27181,27181,27181,27184,27184,27184,27184,27184, 27184,27184,27184,27184, 0, 0, 0, 0, 0, 0, 0,27184,27184,27184,27184,27184,27184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27184,27184, 27184,27184,27184,27184,27187, 0,27187,27187,27187,27187, 27187,27187,27187,27187,27187,27187, 0, 0, 0, 0, 0, 0,27187,27187,27187,27187,27187,27187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27187, 27187,27187,27187,27187,27187,27191,27191,27191,27191,27191, 27191,27191,27191,27191, 0, 0, 0, 0, 0, 0, 0,27191,27191,27191,27191,27191,27191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27191,27191, 27191,27191,27191,27191,27194, 0,27194,27194,27194,27194, 27194,27194,27194,27194,27194,27194, 0, 0, 0, 0, 0, 0,27194,27194,27194,27194,27194,27194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27194, 27194,27194,27194,27194,27194,27197,27197,27197,27197,27197, 27197,27197,27197,27197, 0, 0, 0, 0, 0, 0, 0,27197,27197,27197,27197,27197,27197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27197,27197, 27197,27197,27197,27197,27200,27200,27200,27200,27200,27200, 27200,27200,27200,27200, 0, 0, 0, 0, 0, 0, 27200,27200,27200,27200,27200,27200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27200,27200,27200, 27200,27200,27200,27203,27203,27203,27203,27203,27203,27203, 27203,27203, 0, 0, 0, 0, 0, 0, 0,27203, 27203,27203,27203,27203,27203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27203,27203,27203,27203, 27203,27203,27206,27206,27206,27206,27206,27206,27206,27206, 27206,27206, 0, 0, 0, 0, 0, 0,27206,27206, 27206,27206,27206,27206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27206,27206,27206,27206,27206, 27206,27209,27209,27209,27209,27209,27209,27209,27209,27209, 0, 0, 0, 0, 0, 0, 0,27209,27209,27209, 27209,27209,27209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27209,27209,27209,27209,27209,27209, 27212,27212,27212,27212,27212,27212,27212,27212,27212,27212, 0, 0, 0, 0, 0, 0,27212,27212,27212,27212, 27212,27212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27212,27212,27212,27212,27212,27212,27218, 27218,27218,27218,27218,27218,27218,27218,27218, 0, 0, 0, 0, 0, 0, 0,27218,27218,27218,27218,27218, 27218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27218,27218,27218,27218,27218,27218,27221,27221, 27221,27221,27221,27221,27221,27221,27221,27221, 0, 0, 0, 0, 0, 0,27221,27221,27221,27221,27221,27221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27221,27221,27221,27221,27221,27221,27225,27225,27225, 27225,27225,27225,27225,27225,27225,27225, 0, 0, 0, 0, 0, 0,27225,27225,27225,27225,27225,27225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27225,27225,27225,27225,27225,27225,27250,27250, 0, 0, 0, 0, 0, 0, 0,27250,27250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27250, 0, 0, 0, 0, 0, 0,27250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27250, 0,27250, 0,27250, 0, 0,27250,27250, 0, 0, 0,27250, 0, 0,27250, 0,27250, 0,27250, 0,27250,27250,27250,27251, 0, 0, 0, 0, 0, 0, 0, 0, 0,27251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27251, 0, 0, 0, 0, 0, 0,27251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27251, 0, 27251, 0,27251, 0, 0,27251,27251, 0, 0, 0, 27251, 0, 0,27251, 0,27251, 0,27251, 0,27251, 27251,27251,27252, 0, 0, 0, 0, 0, 0, 0, 0, 0,27252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27252, 0, 0, 0, 0, 0, 0,27252, 0, 0, 0, 0, 0, 0,27252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27252, 0,27252, 0, 27252, 0, 0,27252,27252, 0, 0, 0,27252, 0, 0,27252, 0,27252, 0,27252, 0,27252,27252,27252, 27255, 0,27255, 0, 0, 0, 0, 0, 0,27255, 0, 0,27255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27255, 0, 0, 0, 0, 0, 0,27255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27255, 0,27255,27255, 27255, 0, 0,27255,27255, 0, 0, 0,27255, 0, 0,27255, 0,27255, 0,27255, 0,27255,27255,27255, 27256, 0,27256, 0, 0, 0, 0, 0, 0,27256, 0, 0,27256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27256, 0, 0, 0, 0, 0, 0,27256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27256, 0,27256,27256, 27256, 0, 0,27256,27256, 0, 0, 0,27256, 0, 0,27256, 0,27256, 0,27256, 0,27256,27256,27256, 27287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27287, 0, 0, 0, 0, 0, 0, 0, 0,27287, 0, 0, 0, 0, 0, 0,27287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27287, 0,27287, 0,27287, 0, 0,27287,27287, 0, 0, 0,27287, 0,27287,27287, 0,27287, 0,27287, 0,27287,27287,27287,27288, 0, 0, 0, 0, 0, 0, 0, 0, 0,27288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27288, 0, 0, 0, 0, 0, 0,27288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27288, 0,27288, 0,27288, 0, 0,27288, 27288, 0, 0, 0,27288, 0, 0,27288, 0,27288, 0,27288, 0,27288,27288,27288,27289,27289, 0, 0, 0, 0, 0, 0, 0, 0,27289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27289, 0, 27289, 0, 0, 0, 0,27289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27289, 0,27289, 0,27289, 0, 0,27289,27289, 0, 0, 0,27289, 0, 0,27289, 0,27289, 0,27289, 0,27289,27289,27289,27290, 0,27290, 0, 0, 0, 0, 0, 0,27290, 0, 0,27290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27290, 0, 0, 0, 0, 0, 0,27290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27290, 0,27290, 0,27290, 0, 0,27290,27290, 0, 0, 0,27290, 0,27290,27290, 0,27290, 0,27290, 0,27290,27290,27290,27291, 0,27291, 0, 0, 0, 0, 0, 0,27291, 0, 0,27291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27291, 0, 0, 0, 0, 0, 0,27291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27291, 0,27291, 0,27291, 0, 0,27291,27291, 0, 0, 0,27291, 0, 0,27291, 0,27291, 0,27291, 27291,27291,27291,27291,27294, 0, 0, 0, 0, 0, 0, 0, 0, 0,27294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27294, 0, 0, 0, 0, 0, 0, 0, 0,27294, 0, 0, 0, 0, 0, 0,27294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27294, 0, 27294, 0,27294, 0, 0,27294,27294, 0, 0, 0, 27294, 0,27294,27294, 0,27294, 0,27294, 0,27294, 27294,27294,27295, 0, 0, 0, 0, 0, 0, 0, 0, 0,27295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27295, 0, 0, 0, 0, 0, 0,27295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27295, 0,27295, 0, 27295, 0, 0,27295,27295, 0, 0, 0,27295, 0, 0,27295, 0,27295, 0,27295, 0,27295,27295,27295, 27296,27296, 0, 0, 0, 0, 0, 0, 0, 0, 27296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27296, 0,27296, 0, 0, 0, 0,27296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27296, 0,27296, 0,27296, 0, 0,27296,27296, 0, 0, 0,27296, 0, 0,27296, 0,27296, 0,27296, 0,27296,27296,27296,27298, 0, 27298, 0, 0, 0, 0, 0, 0,27298, 0, 0, 27298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27298, 0, 0, 0, 0, 0, 0,27298, 0, 0,27298, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27298, 0,27298, 0,27298, 0, 0,27298,27298, 0, 0, 0,27298, 0, 0,27298, 0,27298, 0,27298, 0,27298,27298,27298,27299, 0, 0, 0, 0, 0, 0, 0, 0, 0,27299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27299, 0, 0, 0, 0, 0, 0,27299, 0, 0, 0, 0, 0,27299, 0, 0, 0, 0, 0, 0, 0, 0,27299, 0,27299, 0,27299, 0, 0,27299, 27299, 0, 0, 0,27299, 0, 0,27299, 0,27299, 0,27299, 0,27299,27299,27299,27300, 0, 0, 0, 0, 0, 0, 0, 0, 0,27300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27300, 0, 0, 0, 0, 0, 0,27300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27300, 0,27300, 0,27300, 0, 0,27300,27300, 0, 0, 0,27300,27300, 0,27300, 0,27300, 0,27300, 0,27300,27300,27300,27314, 0,27314, 0, 0, 0, 0, 0, 0,27314, 0, 0,27314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27314, 0, 0, 0, 0, 0, 0,27314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27314, 0,27314,27314,27314, 0, 0,27314,27314, 0, 0, 0,27314, 0, 0,27314, 0,27314, 0,27314, 0,27314,27314,27314,27340, 0,27340, 0, 0, 0, 0, 0, 0,27340, 0, 0,27340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27340, 0, 0, 0, 0, 0, 0,27340, 0, 0,27340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27340, 0,27340, 0,27340, 0, 0,27340,27340, 0, 0, 0,27340, 0, 0,27340, 0,27340, 0,27340, 0,27340,27340,27340,27341, 0, 0, 0, 0, 0, 0, 0, 0, 0,27341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27341, 0, 0, 0, 0, 0, 0,27341, 0, 0, 0, 0, 0,27341, 0, 0, 0, 0, 0, 0, 0, 0,27341, 0, 27341, 0,27341, 0, 0,27341,27341, 0, 0, 0, 27341, 0, 0,27341, 0,27341, 0,27341, 0,27341, 27341,27341,27342, 0, 0, 0, 0, 0, 0, 0, 0, 0,27342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27342, 0, 0, 0, 0, 0, 0,27342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27342, 0,27342, 0, 27342, 0, 0,27342,27342, 0, 0, 0,27342,27342, 0,27342, 0,27342, 0,27342, 0,27342,27342,27342, 27356, 0,27356, 0, 0, 0, 0, 0, 0,27356, 0, 0,27356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27356, 0, 0, 0, 0, 0, 0,27356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27356, 0,27356,27356, 27356, 0, 0,27356,27356, 0, 0, 0,27356, 0, 0,27356, 0,27356, 0,27356, 0,27356,27356,27356, 27382, 0,27382, 0, 0, 0, 0, 0, 0,27382, 0, 0,27382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27382, 0, 0, 0, 0, 0, 0,27382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27382, 0,27382, 0, 27382, 0, 0,27382,27382, 0, 0, 0,27382, 0, 27382,27382, 0,27382, 0,27382, 0,27382,27382,27382, 27383, 0,27383, 0, 0, 0, 0, 0, 0,27383, 0, 0,27383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27383, 0, 0, 0, 0, 0, 0,27383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27383, 0,27383, 0, 27383, 0, 0,27383,27383, 0, 0, 0,27383, 0, 0,27383, 0,27383, 0,27383,27383,27383,27383,27383, 27386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27386, 0, 0, 0, 0, 0, 0,27386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27386, 0,27386, 0,27386, 0, 0,27386,27386, 0, 0, 0,27386, 0, 0,27386, 0,27386, 0,27386, 0,27386,27386,27386,27387, 0, 0, 0, 0, 0, 0, 0, 0, 0,27387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27387, 0, 0, 0, 0, 0, 0,27387, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27387, 0,27387, 0,27387, 0, 0,27387, 27387, 0, 0, 0,27387, 0,27387,27387, 0,27387, 0,27387, 0,27387,27387,27387,27389, 0,27389, 0, 0, 0, 0, 0, 0,27389, 0, 0,27389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27389, 0, 0, 0, 0, 0, 0,27389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27389, 0,27389, 0,27389, 0, 0,27389, 27389, 0, 0, 0,27389, 0,27389,27389, 0,27389, 0,27389, 0,27389,27389,27389,27390, 0,27390, 0, 0, 0, 0, 0, 0,27390, 0, 0,27390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27390, 0, 0, 0, 0, 0, 0,27390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27390, 0,27390, 0,27390, 0, 0,27390, 27390, 0, 0, 0,27390, 0, 0,27390, 0,27390, 0,27390,27390,27390,27390,27390,27392, 0, 0, 0, 0, 0, 0, 0, 0, 0,27392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27392, 0, 0, 0, 0, 0, 0,27392, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27392, 0,27392, 0,27392, 0, 0,27392,27392, 0, 0, 0,27392, 0, 0,27392, 0,27392, 0,27392, 0,27392,27392,27392,27393, 0, 0, 0, 0, 0, 0, 0, 0, 0,27393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27393, 0, 0, 0, 0, 0, 0,27393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27393, 0, 27393, 0,27393, 0, 0,27393,27393, 0, 0, 0, 27393, 0,27393,27393, 0,27393, 0,27393, 0,27393, 27393,27393,27395, 0,27395, 0, 0, 0, 0, 0, 0,27395, 0, 0,27395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27395, 0, 0, 0, 0, 0, 0,27395, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27395, 0, 27395, 0,27395, 0, 0,27395,27395, 0, 0, 0, 27395, 0,27395,27395, 0,27395, 0,27395, 0,27395, 27395,27395,27396, 0,27396, 0, 0, 0, 0, 0, 0,27396, 0, 0,27396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27396, 0, 0, 0, 0, 0, 0,27396, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27396, 0, 27396, 0,27396, 0, 0,27396,27396, 0, 0, 0, 27396, 0, 0,27396, 0,27396, 0,27396,27396,27396, 27396,27396,27402,27402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27402,27402,27402,27402,27402,27402, 27402,27402,27402, 0,27402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27402, 27404,27404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27404,27404,27404,27404,27404,27404,27404,27404, 27404, 0,27404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27404,27409,27409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27409,27409,27409,27409,27409,27409,27409,27409,27409, 0, 27409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27409,27410,27410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27410,27410, 27410,27410,27410,27410,27410,27410,27410, 0,27410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27410, 27413,27413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27413,27413,27413,27413,27413,27413,27413,27413, 27413, 0,27413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27413,27425,27425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27425,27425,27425,27425,27425,27425,27425,27425,27425, 0, 27425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27425, 27442,27442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27442,27442,27442,27442,27442,27442,27442,27442, 27442, 0,27442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27442,27455,27455, 0,27455,27455,27455,27455,27455,27455,27455, 0,27455, 27455,27455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27455,27455,27455,27455,27455,27455,27455, 0, 0, 0, 0, 0,27455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27455,27455,27455,27455,27456,27456, 0,27456, 27456,27456,27456,27456,27456,27456, 0,27456,27456,27456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27456,27456,27456,27456,27456,27456,27456,27456, 0, 0, 0, 0,27456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27456,27456,27456,27456,27460,27460,27460,27460,27460,27460, 27460,27460,27460, 0, 0, 0, 0, 0, 0, 0, 27460,27460,27460,27460,27460,27460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27460,27460,27460, 27460,27460,27460,27471, 0,27471,27471,27471,27471,27471, 27471,27471,27471,27471,27471, 0, 0, 0, 0, 0, 0,27471,27471,27471,27471,27471,27471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27471,27471, 27471,27471,27471,27471,27477,27477,27477,27477,27477,27477, 27477,27477,27477,27477, 0, 0, 0, 0, 0, 0, 27477,27477,27477,27477,27477,27477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27477, 0, 0, 0,27477,27477,27477, 27477,27477,27477,27481,27481,27481,27481,27481,27481,27481, 27481,27481,27481, 0, 0, 0, 0, 0, 0,27481, 27481,27481,27481,27481,27481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27481,27481,27481,27481, 27481,27481,27485,27485,27485,27485,27485,27485,27485,27485, 27485,27485, 0, 0, 0, 0, 0, 0,27485,27485, 27485,27485,27485,27485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27485,27485,27485,27485,27485, 27485,27489,27489,27489,27489,27489,27489,27489,27489,27489, 27489, 0, 0, 0, 0, 0, 0,27489,27489,27489, 27489,27489,27489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27489,27489,27489,27489,27489,27489, 27490,27490,27490,27490,27490,27490,27490,27490,27490, 0, 0, 0, 0, 0, 0, 0,27490,27490,27490,27490, 27490,27490, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27490, 0, 0, 0,27490,27490,27490,27490,27490,27490,27493, 27493,27493,27493,27493,27493,27493,27493,27493,27493, 0, 0, 0, 0, 0, 0,27493,27493,27493,27493,27493, 27493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27493,27493,27493,27493,27493,27493,27524, 0, 0, 0, 0, 0, 0, 0, 0, 0,27524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27524, 0, 0, 0, 0, 0, 0,27524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27524, 0,27524, 0,27524, 0, 0,27524, 27524, 0, 0, 0,27524, 0, 0,27524, 0,27524, 0,27524, 0,27524,27524,27524,27525, 0, 0, 0, 0, 0, 0, 0, 0, 0,27525,27525,27525,27525, 27525,27525,27525,27525,27525,27525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27525, 0, 0, 0, 0, 0, 0,27525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27525, 0,27525, 0,27525, 0, 0,27525,27525, 0, 0, 0,27525, 0, 0,27525, 0,27525, 0,27525, 0,27525,27525,27525,27526,27526,27526,27526,27526,27526, 27526,27526,27526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27526, 0, 0, 0, 0, 0, 0, 0, 0,27526, 0, 0, 0, 0, 0, 0, 0,27526, 0, 0,27526, 27530, 0,27530, 0, 0, 0, 0, 0, 0,27530, 0, 0,27530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27530, 0, 0, 0, 0, 0, 0,27530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27530, 0,27530, 0, 27530, 0, 0,27530,27530, 0, 0, 0,27530, 0, 0,27530, 0,27530, 0,27530, 0,27530,27530,27530, 27531, 0,27531, 0, 0, 0, 0, 0, 0,27531, 0, 0,27531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27531, 0, 0, 0, 0, 0, 0,27531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27531, 0,27531, 0, 27531, 0, 0,27531,27531, 0, 0, 0,27531,27531, 0,27531, 0,27531,27531,27531, 0,27531,27531,27531, 27555,27555,27555,27555,27555,27555,27555,27555,27555,27555, 27555, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27555, 0, 0, 0, 0,27555,27559, 0, 0, 0, 0, 0, 0, 0, 0, 0,27559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27559, 0, 0, 0, 0, 0, 0,27559, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27559, 0, 27559, 0,27559, 0, 0,27559,27559, 0, 0, 0, 27559, 0, 0,27559, 0,27559, 0,27559, 0,27559, 27559,27559,27560, 0, 0, 0, 0, 0, 0, 0, 0, 0,27560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27560, 0, 0, 0, 0, 0, 0,27560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27560, 0,27560, 0, 27560, 0, 0,27560,27560, 0, 0, 0,27560, 0, 0,27560, 0,27560, 0,27560, 0,27560,27560,27560, 27561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27561, 0, 0, 0, 0, 0, 0,27561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27561, 0,27561, 0,27561, 0, 0,27561,27561, 0, 0, 0,27561, 0, 0,27561, 0,27561, 0,27561, 0,27561,27561,27561,27562, 0, 27562, 0, 0, 0, 0, 0, 0,27562, 0, 0, 27562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27562, 0, 0, 0, 0, 0, 0,27562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27562, 0,27562,27562,27562, 0, 0,27562,27562, 0, 0, 0,27562, 0, 0,27562, 0,27562,27562,27562, 0,27562,27562,27562,27563, 0, 27563, 0, 0, 0, 0, 0, 0,27563,27563, 0, 27563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27563, 0, 0, 0, 0, 0, 0,27563, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27563, 0,27563, 0,27563, 0, 0,27563,27563, 0, 0, 0,27563, 0, 0,27563, 0,27563, 0,27563, 0,27563,27563,27563,27566, 0, 0, 0, 0, 0, 0, 0, 0, 0,27566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27566, 0, 0, 0, 0, 0, 0,27566, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27566, 0,27566, 0,27566, 0, 0,27566, 27566, 0, 0, 0,27566, 0, 0,27566, 0,27566, 0,27566, 0,27566,27566,27566,27567, 0, 0, 0, 0, 0, 0, 0, 0, 0,27567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27567, 0, 0, 0, 0, 0, 0,27567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27567, 0,27567, 0,27567, 0, 0,27567,27567, 0, 0, 0,27567, 0, 0,27567, 0,27567, 0,27567, 0,27567,27567,27567,27568, 0, 0, 0, 0, 0, 0, 0, 0, 0,27568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27568, 0, 0, 0, 0, 0, 0,27568, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27568, 0, 27568, 0,27568, 0, 0,27568,27568, 0, 0, 0, 27568, 0, 0,27568, 0,27568, 0,27568, 0,27568, 27568,27568,27569, 0, 0, 0, 0, 0, 0, 0, 0, 0,27569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27569, 0, 0, 0, 0, 0, 0,27569, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27569,27569, 0,27569, 0, 27569, 0, 0,27569,27569, 0, 0, 0,27569, 0, 0,27569, 0,27569, 0,27569, 0,27569,27569,27569, 27569,27570, 0,27570, 0, 0, 0, 0, 0, 0, 27570, 0, 0,27570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27570, 0, 0, 0, 0, 0, 0,27570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27570, 0,27570, 0,27570, 0, 0,27570,27570, 0, 0, 0,27570, 0, 0,27570, 0,27570, 0,27570, 0,27570,27570, 27570,27571, 0, 0, 0, 0, 0, 0, 0, 0, 0,27571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27571, 0, 0, 0, 0, 0, 0, 27571, 0, 0,27571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27571, 0,27571, 0,27571, 0, 0,27571,27571, 0, 0, 0,27571, 0, 0, 27571, 0,27571, 0,27571, 0,27571,27571,27571,27572, 0, 0, 0, 0, 0, 0, 0, 0, 0,27572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27572, 0, 0, 0, 0, 0, 0,27572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27572, 0,27572, 0,27572, 0, 0, 27572,27572, 0, 0, 0,27572, 0, 0,27572, 0, 27572, 0,27572, 0,27572,27572,27572,27573, 0, 0, 0, 0, 0, 0, 0, 0, 0,27573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27573, 0, 0, 0, 0, 0, 0,27573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27573, 0,27573, 0,27573, 0, 0,27573,27573, 0, 0, 0,27573, 0,27573,27573, 0,27573, 0, 27573, 0,27573,27573,27573,27582, 0,27582, 0, 0, 0, 0, 0, 0,27582, 0, 0,27582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27582, 0, 0, 0, 0, 0, 0,27582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27582, 0,27582, 0,27582, 0, 0,27582,27582, 0, 0, 0,27582, 0, 0,27582, 0,27582, 0, 27582, 0,27582,27582,27582,27611, 0,27611, 0, 0, 0, 0, 0, 0,27611, 0, 0,27611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27611, 0, 0, 0, 0, 0, 0,27611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27611, 0,27611, 0,27611, 0, 0,27611,27611, 0, 0, 0,27611, 0, 0,27611, 0,27611, 0, 27611, 0,27611,27611,27611,27612, 0, 0, 0, 0, 0, 0, 0, 0, 0,27612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27612, 0, 0, 0, 0, 0, 0,27612, 0, 0,27612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27612, 0,27612, 0,27612, 0, 0,27612,27612, 0, 0, 0,27612, 0, 0,27612, 0,27612, 0,27612, 0, 27612,27612,27612,27613, 0, 0, 0, 0, 0, 0, 0, 0, 0,27613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27613, 0, 0, 0, 0, 0, 0,27613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27613, 0,27613, 0,27613, 0, 0,27613,27613, 0, 0, 0,27613, 0, 0,27613, 0,27613, 0,27613, 0,27613,27613, 27613,27614, 0, 0, 0, 0, 0, 0, 0, 0, 0,27614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27614, 0, 0, 0, 0, 0, 0, 27614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27614, 0,27614, 0,27614, 0, 0,27614,27614, 0, 0, 0,27614, 0,27614, 27614, 0,27614, 0,27614, 0,27614,27614,27614,27623, 0,27623, 0, 0, 0, 0, 0, 0,27623, 0, 0,27623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27623, 0, 0, 0, 0, 0, 0, 27623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27623, 0,27623, 0,27623, 0, 0,27623,27623, 0, 0, 0,27623, 0, 0, 27623, 0,27623, 0,27623, 0,27623,27623,27623,27652, 0,27652, 0, 0, 0, 0, 0, 0,27652, 0, 0,27652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27652, 0, 0, 0, 0, 0, 0, 27652, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27652, 0,27652,27652,27652, 0, 0,27652,27652, 0, 0, 0,27652, 0, 0, 27652, 0,27652,27652,27652, 0,27652,27652,27652,27653, 0,27653, 0, 0, 0, 0, 0, 0,27653,27653, 0,27653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27653, 0, 0, 0, 0, 0, 0, 27653, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27653, 0,27653, 0,27653, 0, 0,27653,27653, 0, 0, 0,27653, 0, 0, 27653, 0,27653, 0,27653, 0,27653,27653,27653,27656, 0, 0, 0, 0, 0, 0, 0, 0, 0,27656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27656, 0, 0, 0, 0, 0, 0,27656, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27656, 0,27656, 0,27656, 0, 0, 27656,27656, 0, 0, 0,27656, 0,27656,27656, 0, 27656, 0,27656, 0,27656,27656,27656,27657, 0, 0, 0, 0, 0, 0, 0, 0, 0,27657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27657, 0, 0, 0, 0, 0, 0,27657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27657, 0,27657, 0,27657, 0, 0,27657,27657, 0, 0, 0,27657, 0, 0,27657, 0,27657, 0, 27657,27657,27657,27657,27657,27659, 0,27659, 0, 0, 0, 0, 0, 0,27659, 0, 0,27659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27659, 0, 0, 0, 0, 0, 0,27659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27659, 0,27659,27659,27659, 0, 0,27659,27659, 0, 0, 0,27659, 0, 0,27659, 0,27659,27659, 27659, 0,27659,27659,27659,27660, 0,27660, 0, 0, 0, 0, 0, 0,27660,27660, 0,27660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27660, 0, 0, 0, 0, 0, 0,27660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27660, 0,27660, 0,27660, 0, 0,27660,27660, 0, 0, 0,27660, 0, 0,27660, 0,27660, 0, 27660, 0,27660,27660,27660,27662, 0, 0, 0, 0, 0, 0, 0, 0, 0,27662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27662, 0, 0, 0, 0, 0, 0,27662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27662, 0,27662, 0,27662, 0, 0,27662,27662, 0, 0, 0,27662, 0,27662,27662, 0,27662, 0,27662, 0, 27662,27662,27662,27663, 0, 0, 0, 0, 0, 0, 0, 0, 0,27663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27663, 0, 0, 0, 0, 0, 0,27663, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27663, 0,27663, 0,27663, 0, 0,27663,27663, 0, 0, 0,27663, 0, 0,27663, 0,27663, 0,27663,27663,27663,27663, 27663,27665, 0,27665, 0, 0, 0, 0, 0, 0, 27665, 0, 0,27665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27665, 0, 0, 0, 0, 0, 0,27665, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27665, 0,27665, 27665,27665, 0, 0,27665,27665, 0, 0, 0,27665, 0, 0,27665, 0,27665,27665,27665, 0,27665,27665, 27665,27666, 0,27666, 0, 0, 0, 0, 0, 0, 27666,27666, 0,27666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27666, 0, 0, 0, 0, 0, 0,27666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27666, 0,27666, 0,27666, 0, 0,27666,27666, 0, 0, 0,27666, 0, 0,27666, 0,27666, 0,27666, 0,27666,27666, 27666,27676,27676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27676, 27676,27676,27676,27676,27676,27676,27676,27676,27676,27676, 27676,27676,27676,27676,27676,27676,27676,27676,27676,27676, 27676,27676,27678,27678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27678,27678,27678,27678,27678,27678, 27678,27678,27678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27678, 0,27678,27678,27678, 27678,27678,27678,27679,27679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27679,27679,27679,27679,27679, 27679,27679,27679,27679, 0,27679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27679,27680,27680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27680,27680,27680,27680,27680,27680,27680, 27680,27680, 0,27680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27680,27687,27687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27687,27687,27687, 27687,27687,27687,27687,27687,27687, 0,27687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27687,27691,27691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27691,27691,27691,27691,27691, 27691,27691,27691,27691, 0,27691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27691,27713,27713, 0,27713,27713, 27713,27713,27713,27713,27713, 0,27713,27713,27713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27713, 27713,27713,27713,27713,27713,27713, 0, 0, 0, 0, 0,27713, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27713, 27713,27713,27713,27714,27714, 0,27714,27714,27714,27714, 27714,27714,27714, 0,27714,27714,27714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27714,27714,27714, 27714,27714,27714,27714,27714, 0, 0, 0, 0,27714, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27714,27714,27714, 27714,27723, 0,27723,27723,27723,27723,27723,27723,27723, 27723,27723,27723, 0, 0, 0, 0, 0, 0,27723, 27723,27723,27723,27723,27723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27723,27723,27723,27723, 27723,27723,27727,27727,27727,27727,27727,27727,27727,27727, 27727,27727, 0, 0, 0, 0, 0, 0,27727,27727, 27727,27727,27727,27727, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27727, 0, 0, 0,27727,27727,27727,27727,27727, 27727,27732,27732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27732,27732,27732,27732,27732,27732,27732, 27732,27732, 0,27732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27732, 27754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27754, 0, 0,27754, 0,27754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27754, 0,27754, 0, 0, 0, 0,27754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27754, 0,27754, 0,27754, 0, 0,27754,27754, 0, 0, 0,27754, 0, 0,27754, 0,27754, 0,27754, 0,27754,27754,27754,27755,27755, 0, 0, 0, 0, 0, 0, 0, 0,27755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27755, 0, 0, 0, 0, 0, 0,27755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27755, 0,27755, 0,27755, 0, 0,27755, 27755, 0, 0, 0,27755, 0, 0,27755, 0,27755, 0,27755, 0,27755,27755,27755,27760, 0,27760, 0, 0, 0, 0, 0, 0,27760, 0, 0,27760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27760, 0, 0, 0, 0, 0, 0,27760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27760, 0,27760, 0,27760, 0, 0,27760, 27760, 0, 0, 0,27760, 0, 0,27760, 0,27760, 0,27760, 0,27760,27760,27760,27764, 0,27764, 0, 0, 0, 0, 0, 0,27764, 0, 0,27764,27764, 27764,27764,27764,27764,27764,27764,27764,27764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27764, 0, 0, 0, 0, 0, 0,27764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27764, 0,27764, 0,27764, 0, 0,27764, 27764, 0, 0, 0,27764, 0, 0,27764, 0,27764, 0,27764, 0,27764,27764,27764,27765,27765,27765,27765, 27765,27765,27765,27765,27765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27765,27765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27765, 0, 0, 0, 0,27765, 0, 0,27765,27766,27766,27766,27766,27766,27766,27766,27766, 27766,27766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27766, 0, 0,27766,27767, 27767,27767,27767,27767,27767,27767,27767,27767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27767, 0, 0, 0,27767, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27767, 0, 0,27767,27768,27768,27768,27768,27768, 27768,27768,27768,27768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27768, 0, 0, 27768,27769,27769,27769,27769,27769,27769,27769,27769,27769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27769, 0, 0, 0, 0, 0,27769, 0, 0,27769,27770,27770,27770, 27770,27770,27770,27770,27770,27770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27770, 0, 0, 0, 0, 0,27770, 0, 0,27770,27771,27771,27771,27771,27771,27771,27771, 27771,27771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27771, 0, 0, 0, 0, 0,27771, 0, 0,27771,27772, 27772,27772,27772,27772,27772,27772,27772,27772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27772, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27772, 0, 0, 0,27772, 0, 0,27772,27773,27773,27773,27773,27773, 27773,27773,27773,27773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27773,27773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27773, 0, 0, 27773,27774,27774,27774,27774,27774,27774,27774,27774,27774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27774, 0, 0, 0, 27774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27774,27774, 0,27774,27775,27775,27775, 27775,27775,27775,27775,27775,27775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27775, 0, 0, 0, 0, 0, 0, 0, 0,27775, 0,27775, 0, 0, 0, 0, 0,27775, 0, 0,27775,27776,27776,27776,27776,27776,27776,27776, 27776,27776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27776, 0,27776, 0, 0, 0, 0, 0,27776, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27776, 0, 0,27776, 0, 27776,27777,27777,27777,27777,27777,27777,27777,27777,27777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27777, 0, 0,27777, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27777, 0, 0,27777,27778,27778,27778, 27778,27778,27778,27778,27778,27778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27778, 0, 0, 0, 0, 0,27778, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27778, 0, 0,27778,27779,27779,27779,27779,27779,27779,27779, 27779,27779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27779, 0, 0, 0, 0, 0,27779, 0, 0,27779,27783, 0, 0, 0, 0, 0, 0, 0, 0, 0,27783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27783, 0, 0, 0, 0, 0, 0, 0, 0,27783, 0, 0, 0, 0, 0, 0,27783, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27783, 0,27783, 0,27783, 0, 0, 27783,27783, 0, 0, 0,27783, 0,27783,27783, 0, 27783, 0,27783, 0,27783,27783,27783,27784, 0,27784, 0, 0, 0, 0, 0, 0,27784, 0, 0,27784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27784, 0, 0, 0, 0, 0, 0,27784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27784, 0,27784, 0,27784, 0, 0, 27784,27784, 0, 0, 0,27784, 0, 0,27784, 0, 27784, 0,27784, 0,27784,27784,27784,27785, 0,27785, 0, 0, 0, 0, 0, 0,27785, 0, 0,27785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27785, 0, 0, 0, 0, 0, 0,27785, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27785, 0,27785,27785,27785, 0, 0, 27785,27785, 0, 0, 0,27785,27785, 0,27785, 0, 27785, 0,27785, 0,27785,27785,27785,27788, 0, 0, 0, 0, 0, 0, 0, 0, 0,27788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27788, 0, 0, 0, 0, 0, 0, 0, 0,27788, 0, 0, 0, 0, 0, 0,27788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27788, 0,27788, 0,27788, 0, 0,27788,27788, 0, 0, 0,27788, 0,27788,27788, 0,27788, 0, 27788, 0,27788,27788,27788,27789, 0,27789, 0, 0, 0, 0, 0, 0,27789, 0, 0,27789,27789,27789, 27789,27789,27789,27789,27789,27789,27789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27789, 0, 0, 0, 0, 0, 0,27789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27789, 0,27789, 0,27789, 0, 0,27789,27789, 0, 0, 0,27789, 0, 0,27789, 0,27789, 0, 27789, 0,27789,27789,27789,27790, 0, 0, 0, 0, 0, 0, 0, 0, 0,27790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27790, 0, 0, 0, 0, 0, 0,27790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27790, 0,27790, 0,27790, 0, 0,27790,27790, 0, 0, 0,27790, 0, 0,27790, 0,27790, 0,27790, 0, 27790,27790,27790,27791, 0, 0, 0, 0, 0, 0, 0, 0, 0,27791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27791, 0, 0, 0, 0, 0, 0,27791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27791, 0,27791, 0,27791, 0, 0,27791,27791, 0, 0, 0,27791, 0, 0,27791, 0,27791, 0,27791, 0,27791,27791, 27791,27791,27799, 0,27799, 0, 0, 0, 0, 0, 0,27799, 0, 0,27799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27799, 0, 0, 0, 0, 0, 0,27799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27799, 0, 27799, 0,27799, 0, 0,27799,27799, 0, 0, 0, 27799, 0, 0,27799, 0,27799, 0,27799, 0,27799, 27799,27799,27827, 0,27827, 0, 0, 0, 0, 0, 0,27827, 0, 0,27827,27827,27827,27827,27827,27827, 27827,27827,27827,27827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27827, 0, 0, 0, 0, 0, 0,27827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27827, 0, 27827, 0,27827, 0, 0,27827,27827, 0, 0, 0, 27827, 0, 0,27827, 0,27827, 0,27827, 0,27827, 27827,27827,27828, 0, 0, 0, 0, 0, 0, 0, 0, 0,27828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27828, 0, 0, 0, 0, 0, 0,27828, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27828, 0,27828, 0, 27828, 0, 0,27828,27828, 0, 0, 0,27828, 0, 0,27828, 0,27828, 0,27828, 0,27828,27828,27828, 27829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27829, 0, 0, 0, 0, 0, 0,27829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27829, 0,27829, 0,27829, 0, 0,27829,27829, 0, 0, 0,27829, 0, 0,27829, 0,27829, 0,27829, 0,27829,27829,27829,27829,27837, 0,27837, 0, 0, 0, 0, 0, 0,27837, 0, 0,27837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27837, 0, 0, 0, 0, 0, 0, 27837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27837, 0,27837, 0,27837, 0, 0,27837,27837, 0, 0, 0,27837, 0, 0, 27837, 0,27837, 0,27837, 0,27837,27837,27837,27865, 0,27865, 0, 0, 0, 0, 0, 0,27865, 0, 0,27865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27865, 0, 0, 0, 0, 0, 0, 27865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27865, 0,27865, 0,27865, 0, 0,27865,27865, 0, 0, 0,27865, 0, 0, 27865, 0,27865, 0,27865, 0,27865,27865,27865,27866, 0,27866, 0, 0, 0, 0, 0, 0,27866, 0, 0,27866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27866, 0, 0, 0, 0, 0, 0, 27866, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27866, 0,27866,27866,27866, 0, 0,27866,27866, 0, 0, 0,27866,27866, 0, 27866, 0,27866, 0,27866, 0,27866,27866,27866,27869, 0, 0, 0, 0, 0, 0, 0, 0, 0,27869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27869, 0, 0, 0, 0, 0, 0,27869, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27869, 0,27869,27869,27869, 0, 0, 27869,27869, 0, 0, 0,27869, 0, 0,27869, 0, 27869,27869,27869, 0,27869,27869,27869,27870, 0, 0, 0, 0, 0, 0, 0,27870, 0,27870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27870, 0, 0, 0, 0, 0, 0,27870, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27870, 0,27870, 0,27870, 0, 0,27870,27870, 0, 0, 0,27870, 0, 0,27870, 0,27870, 0, 27870, 0,27870,27870,27870,27872, 0,27872, 0, 0, 0, 0, 0, 0,27872, 0, 0,27872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27872, 0, 0, 0, 0, 0, 0,27872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27872, 0,27872, 0,27872, 0, 0,27872,27872, 0, 0, 0,27872, 0, 0,27872, 0,27872, 0, 27872, 0,27872,27872,27872,27873, 0,27873, 0, 0, 0, 0, 0, 0,27873, 0, 0,27873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27873, 0, 0, 0, 0, 0, 0,27873, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27873, 0,27873,27873,27873, 0, 0,27873,27873, 0, 0, 0,27873,27873, 0,27873, 0,27873, 0, 27873, 0,27873,27873,27873,27875, 0, 0, 0, 0, 0, 0, 0, 0, 0,27875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27875, 0, 0, 0, 0, 0, 0,27875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27875, 0,27875,27875,27875, 0, 0,27875,27875, 0, 0, 0,27875, 0, 0,27875, 0,27875,27875,27875, 0, 27875,27875,27875,27876, 0, 0, 0, 0, 0, 0, 0,27876, 0,27876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27876, 0, 0, 0, 0, 0, 0,27876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27876, 0,27876, 0,27876, 0, 0,27876,27876, 0, 0, 0,27876, 0, 0,27876, 0,27876, 0,27876, 0,27876,27876, 27876,27878, 0,27878, 0, 0, 0, 0, 0, 0, 27878, 0, 0,27878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27878, 0, 0, 0, 0, 0, 0,27878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27878, 0,27878, 0,27878, 0, 0,27878,27878, 0, 0, 0,27878, 0, 0,27878, 0,27878, 0,27878, 0,27878,27878, 27878,27879, 0,27879, 0, 0, 0, 0, 0, 0, 27879, 0, 0,27879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27879, 0, 0, 0, 0, 0, 0,27879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27879, 0,27879, 27879,27879, 0, 0,27879,27879, 0, 0, 0,27879, 27879, 0,27879, 0,27879, 0,27879, 0,27879,27879, 27879,27889,27889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27889,27889,27889,27889,27889,27889,27889, 27889,27889, 0,27889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27889,27898, 27898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27898,27898,27898,27898,27898,27898,27898,27898,27898, 0,27898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27898,27920,27920, 0, 27920,27920,27920,27920,27920,27920,27920, 0,27920,27920, 27920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27920,27920,27920,27920,27920,27920,27920, 0, 0, 0, 0, 0,27920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27920,27920,27920,27920,27921,27921, 0,27921,27921, 27921,27921,27921,27921,27921, 0,27921,27921,27921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27921, 27921,27921,27921,27921,27921,27921,27921, 0, 0, 0, 0,27921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27921, 27921,27921,27921,27925,27925,27925,27925,27925,27925,27925, 27925,27925, 0, 0, 0, 0, 0, 0, 0,27925, 27925,27925,27925,27925,27925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27925,27925,27925,27925, 27925,27925,27934,27934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27934,27934,27934,27934,27934,27934, 27934,27934,27934, 0,27934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27934, 27934,27958, 0, 0, 0, 0, 0, 0, 0, 0, 0,27958,27958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27958, 0, 0, 0, 0, 0, 0, 27958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27958, 0,27958, 0,27958, 0, 0,27958,27958, 0, 0, 0,27958, 0, 0, 27958, 0,27958, 0,27958, 0,27958,27958,27958,27959, 0, 0, 0, 0, 0, 0, 0, 0, 0,27959, 0, 0, 0, 0,27959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27959, 0, 0, 0, 0, 0, 0,27959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27959, 0,27959, 0,27959, 0, 0, 27959,27959, 0, 0, 0,27959, 0, 0,27959, 0, 27959, 0,27959, 0,27959,27959,27959,27964, 0,27964, 0, 0, 0, 0, 0, 0,27964, 0, 0,27964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27964, 0, 0, 0, 0, 0, 0,27964, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27964, 0,27964, 0,27964, 0, 0, 27964,27964, 0, 0, 0,27964, 0, 0,27964, 0, 27964, 0,27964, 0,27964,27964,27964,27964,27967, 0, 27967, 0, 0, 0, 0, 0, 0,27967, 0, 0, 27967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27967, 0, 0, 0, 0, 0, 0,27967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27967, 0,27967,27967,27967, 0, 0,27967,27967, 0, 0, 0,27967, 0, 0,27967, 0,27967, 0,27967, 0,27967,27967,27967,27985, 0, 27985, 0, 0, 0, 0, 0, 0,27985, 0, 0, 27985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27985, 0, 0, 0, 0, 0, 0, 0, 0,27985, 0, 0, 0, 0, 0, 0,27985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27985, 0,27985, 0,27985, 0, 0,27985,27985, 0, 0, 0,27985, 0,27985,27985, 0,27985, 0,27985, 0,27985,27985,27985,27986, 0, 27986, 0, 0, 0, 0, 0, 0,27986, 0, 0, 27986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27986, 0, 0, 0, 0, 0, 0,27986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27986, 0,27986, 0,27986, 0, 0,27986,27986, 0, 0, 0,27986, 0, 0,27986, 0,27986, 0,27986, 0,27986,27986,27986,27988, 0, 27988,27988, 0, 0, 0, 0, 0,27988, 0,27988, 27988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27988, 0, 0, 0, 0, 0, 0,27988, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27988, 0,27988, 0,27988, 0, 0,27988,27988, 0, 0, 0,27988, 0, 0,27988, 0,27988, 0,27988, 0,27988,27988,27988,27989, 0, 0, 0, 0, 0, 0, 0, 0, 0,27989,27989, 27989,27989,27989,27989,27989,27989,27989,27989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27989, 0, 0, 0, 0, 0, 0,27989, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27989, 0,27989, 0,27989, 0, 0,27989, 27989, 0, 0, 0,27989, 0, 0,27989, 0,27989, 0,27989, 0,27989,27989,27989,27990, 0, 0, 0, 0, 0, 0, 0, 0, 0,27990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,27990, 0, 0, 0, 0, 0, 0,27990, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27990, 0,27990,27990,27990, 0, 0,27990,27990, 0, 0, 0,27990, 0,27990,27990, 0,27990, 0,27990, 0,27990,27990,27990,28007, 0,28007, 0, 0, 0, 0, 0, 0,28007, 0, 0,28007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28007, 0, 0, 0, 0, 0, 0,28007, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28007, 0,28007, 0,28007, 0, 0,28007,28007, 0, 0, 0,28007, 0, 0,28007, 0,28007, 0,28007, 0,28007,28007,28007,28023, 0,28023,28023, 0, 0, 0, 0, 0,28023, 0,28023,28023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28023, 0, 0, 0, 0, 0, 0,28023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28023, 0,28023, 0,28023, 0, 0,28023,28023, 0, 0, 0,28023, 0, 0,28023, 0,28023, 0,28023, 0,28023,28023,28023,28024, 0, 0, 0, 0, 0, 0, 0, 0, 0,28024,28024,28024,28024,28024,28024, 28024,28024,28024,28024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28024, 0, 0, 0, 0, 0, 0,28024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28024, 0, 28024, 0,28024, 0, 0,28024,28024, 0, 0, 0, 28024, 0, 0,28024, 0,28024, 0,28024, 0,28024, 28024,28024,28025, 0, 0, 0, 0, 0, 0, 0, 0, 0,28025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28025, 0, 0, 0, 0, 0, 0,28025, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28025, 0,28025,28025, 28025, 0, 0,28025,28025, 0, 0, 0,28025, 0, 28025,28025, 0,28025, 0,28025, 0,28025,28025,28025, 28042, 0,28042, 0, 0, 0, 0, 0, 0,28042, 0, 0,28042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28042, 0, 0, 0, 0, 0, 0,28042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28042, 0,28042, 0, 28042, 0, 0,28042,28042, 0, 0, 0,28042, 0, 0,28042, 0,28042, 0,28042, 0,28042,28042,28042, 28058, 0,28058, 0, 0, 0, 0, 0, 0,28058, 0, 0,28058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28058, 0, 0, 0, 0, 0, 0, 0, 0,28058, 0, 0, 0, 0, 0, 0,28058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28058, 0,28058, 0, 28058, 0, 0,28058,28058, 0, 0, 0,28058, 0, 28058,28058, 0,28058, 0,28058, 0,28058,28058,28058, 28059, 0,28059, 0, 0, 0, 0, 0, 0,28059, 0, 0,28059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28059, 0, 0, 0, 0, 0, 0,28059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28059, 0,28059, 0, 28059, 0, 0,28059,28059, 0, 0, 0,28059, 0, 0,28059, 0,28059, 0,28059, 0,28059,28059,28059, 28062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28062, 0, 0, 0, 0, 0, 0,28062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28062, 0,28062, 0,28062, 0, 0,28062,28062, 0, 0, 0,28062, 0, 0,28062, 0,28062, 0,28062, 0,28062,28062,28062,28063, 0, 0, 0, 0, 0, 0, 0, 0, 0,28063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28063, 0, 0, 0, 0, 0, 0,28063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28063, 0,28063,28063,28063, 0, 0,28063, 28063, 0, 0, 0,28063,28063, 0,28063, 0,28063, 0,28063, 0,28063,28063,28063,28065, 0,28065, 0, 0, 0, 0, 0, 0,28065, 0, 0,28065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28065, 0, 0, 0, 0, 0, 0, 0, 0, 28065, 0, 0, 0, 0, 0, 0,28065, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28065, 0,28065, 0,28065, 0, 0,28065, 28065, 0, 0, 0,28065, 0,28065,28065, 0,28065, 0,28065, 0,28065,28065,28065,28066, 0,28066, 0, 0, 0, 0, 0, 0,28066, 0, 0,28066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28066, 0, 0, 0, 0, 0, 0,28066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28066, 0,28066, 0,28066, 0, 0,28066, 28066, 0, 0, 0,28066, 0, 0,28066, 0,28066, 0,28066, 0,28066,28066,28066,28068, 0, 0, 0, 0, 0, 0, 0, 0, 0,28068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28068, 0, 0, 0, 0, 0, 0,28068, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28068, 0,28068, 0,28068, 0, 0,28068,28068, 0, 0, 0,28068, 0, 0,28068, 0,28068, 0,28068, 0,28068,28068,28068,28069, 0, 0, 0, 0, 0, 0, 0, 0, 0,28069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28069, 0, 0, 0, 0, 0, 0,28069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28069, 0, 28069,28069,28069, 0, 0,28069,28069, 0, 0, 0, 28069,28069, 0,28069, 0,28069, 0,28069, 0,28069, 28069,28069,28071, 0,28071, 0, 0, 0, 0, 0, 0,28071, 0, 0,28071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28071, 0, 0, 0, 0, 0, 0, 0, 0,28071, 0, 0, 0, 0, 0, 0,28071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28071, 0, 28071, 0,28071, 0, 0,28071,28071, 0, 0, 0, 28071, 0,28071,28071, 0,28071, 0,28071, 0,28071, 28071,28071,28072, 0,28072, 0, 0, 0, 0, 0, 0,28072, 0, 0,28072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28072, 0, 0, 0, 0, 0, 0,28072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28072, 0, 28072, 0,28072, 0, 0,28072,28072, 0, 0, 0, 28072, 0, 0,28072, 0,28072, 0,28072, 0,28072, 28072,28072,28101,28101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28101,28101,28101,28101,28101,28101, 28101,28101,28101, 0,28101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28101,28115,28115, 0,28115,28115,28115, 28115,28115,28115,28115, 0,28115,28115,28115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28115,28115, 28115,28115,28115,28115,28115, 0, 0, 0, 0, 0, 28115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28115,28115, 28115,28115,28116,28116, 0,28116,28116,28116,28116,28116, 28116,28116, 0,28116,28116,28116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28116,28116,28116,28116, 28116,28116,28116,28116, 0, 0, 0, 0,28116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28116,28116,28116,28116, 28120,28120,28120,28120,28120,28120,28120,28120,28120, 0, 0, 0, 0, 0, 0, 0,28120,28120,28120,28120, 28120,28120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28120,28120,28120,28120,28120,28120,28153, 0, 0, 0, 0, 0, 0, 0, 0, 0,28153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28153, 0, 0, 0, 0, 0, 0,28153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28153, 0,28153, 0,28153, 0, 0, 28153,28153, 0, 0, 0,28153, 0, 0,28153, 0, 28153, 0,28153, 0,28153,28153,28153,28154, 0, 0, 0, 0, 0, 0, 0, 0, 0,28154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28154, 0, 0, 0, 0, 0, 0,28154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28154, 0,28154, 0,28154, 0, 0,28154,28154, 0, 0, 0,28154, 0, 0,28154, 0,28154, 0, 28154, 0,28154,28154,28154,28155, 0, 0, 0, 0, 0, 0, 0, 0, 0,28155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28155, 0, 0, 0, 0, 0, 0,28155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28155, 0,28155, 0,28155, 0, 0,28155,28155, 0, 0, 0,28155, 0, 0,28155, 0,28155, 0,28155, 0, 28155,28155,28155,28156, 0, 0, 0, 0, 0, 0, 0, 0, 0,28156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28156, 0, 0, 0, 0, 0, 0,28156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28156, 0,28156, 0,28156, 0, 0,28156,28156, 0, 0, 0,28156, 0, 0,28156, 0,28156, 0,28156, 0,28156,28156, 28156,28157, 0, 0, 0, 0, 0, 0, 0, 0, 0,28157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28157, 0, 0, 0, 0, 0, 0, 28157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28157, 0,28157, 0,28157, 0, 0,28157,28157, 0, 0, 0,28157, 0, 0, 28157, 0,28157, 0,28157, 0,28157,28157,28157,28158, 0, 0, 0, 0, 0, 0, 0, 0, 0,28158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28158, 0, 0, 0, 0, 0, 0,28158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28158, 0,28158, 0,28158, 0, 0, 28158,28158, 0, 0, 0,28158, 0, 0,28158, 0, 28158, 0,28158, 0,28158,28158,28158,28159, 0,28159, 0, 0, 0, 0, 0, 0,28159, 0, 0,28159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28159, 0, 0, 0, 0, 0, 0,28159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28159, 0,28159, 0,28159, 0, 0, 28159,28159, 0, 0, 0,28159, 0,28159,28159, 0, 28159, 0,28159, 0,28159,28159,28159,28160, 0, 0, 0, 0, 0, 0, 0, 0, 0,28160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28160, 0, 0, 0, 0, 0, 0,28160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28160, 0,28160, 0,28160, 0, 0,28160,28160, 0, 0, 0,28160, 0,28160,28160, 0,28160, 0, 28160, 0,28160,28160,28160,28160,28162, 0,28162, 0, 0, 0, 0, 0, 0,28162, 0, 0,28162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28162, 0, 0, 0, 0, 0, 0,28162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28162, 0,28162, 0,28162, 0, 0,28162, 28162, 0, 0, 0,28162, 0, 0,28162, 0,28162, 0,28162, 0,28162,28162,28162,28176, 0,28176, 0, 0, 0, 0, 0, 0,28176, 0, 0,28176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28176, 0, 0, 0, 0, 0, 0,28176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28176, 0,28176, 0,28176, 0, 0,28176, 28176, 0, 0, 0,28176, 0, 0,28176, 0,28176, 0,28176, 0,28176,28176,28176,28177, 0,28177, 0, 0, 0, 0, 0, 0,28177, 0, 0,28177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28177, 0, 0, 0, 0, 0, 0,28177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28177, 0,28177, 0,28177, 0, 0,28177, 28177, 0, 0, 0,28177, 0, 0,28177, 0,28177, 0,28177, 0,28177,28177,28177,28179, 0,28179, 0, 0, 0, 0, 0, 0,28179, 0, 0,28179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28179, 0, 0, 0, 0, 0, 0,28179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28179, 0,28179, 0,28179, 0, 0,28179, 28179, 0, 0, 0,28179, 0, 0,28179, 0,28179, 0,28179, 0,28179,28179,28179,28180, 0,28180, 0, 0, 0, 0, 0, 0,28180, 0, 0,28180,28180, 28180,28180,28180,28180,28180,28180,28180,28180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28180, 0, 0, 0, 0, 0, 0,28180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28180, 0,28180, 0,28180, 0, 0,28180, 28180, 0, 0, 0,28180, 0, 0,28180, 0,28180, 0,28180, 0,28180,28180,28180,28181,28181, 0, 0, 0, 0, 0, 0, 0,28181,28181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28181, 0, 0, 0, 0, 0, 0,28181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28181, 0,28181, 0,28181, 0, 0,28181,28181, 0, 0, 0,28181, 0, 0,28181, 0,28181, 0,28181, 0,28181,28181,28181,28182, 0, 0, 0, 0, 0, 0, 0, 0, 0,28182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28182, 0, 0, 0, 0, 0, 0,28182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28182, 0, 28182, 0,28182, 0, 0,28182,28182, 0, 0, 0, 28182, 0, 0,28182, 0,28182, 0,28182, 0,28182, 28182,28182,28183, 0, 0, 0, 0, 0, 0, 0, 0, 0,28183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28183, 0, 0, 0, 0, 0, 0,28183, 0, 0, 0, 0, 0, 0,28183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28183, 0,28183, 0, 28183, 0, 0,28183,28183, 0, 0, 0,28183, 0, 0,28183, 0,28183, 0,28183, 0,28183,28183,28183, 28198,28198,28198,28198,28198,28198,28198,28198,28198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28198, 0, 0, 0, 0, 0, 0, 0, 0,28198, 0, 0, 0, 0, 0, 0, 0,28198, 0, 0,28198,28206,28206,28206,28206, 28206,28206,28206,28206,28206,28206,28206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28206, 0, 0, 0, 0,28206, 28210, 0,28210, 0, 0, 0, 0, 0, 0,28210, 0, 0,28210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28210, 0, 0, 0, 0, 0, 0,28210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28210, 0,28210, 0, 28210, 0, 0,28210,28210, 0, 0, 0,28210, 0, 0,28210, 0,28210, 0,28210, 0,28210,28210,28210, 28211, 0,28211, 0, 0, 0, 0, 0, 0,28211, 0, 0,28211,28211,28211,28211,28211,28211,28211,28211, 28211,28211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28211, 0, 0, 0, 0, 0, 0,28211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28211, 0,28211, 0, 28211, 0, 0,28211,28211, 0, 0, 0,28211, 0, 0,28211, 0,28211, 0,28211, 0,28211,28211,28211, 28212,28212, 0, 0, 0, 0, 0, 0, 0,28212, 28212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28212, 0, 0, 0, 0, 0, 0,28212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28212, 0,28212, 0,28212, 0, 0,28212,28212, 0, 0, 0,28212, 0, 0,28212, 0,28212, 0,28212, 0,28212,28212,28212,28213, 0, 0, 0, 0, 0, 0, 0, 0, 0,28213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28213, 0, 0, 0, 0, 0, 0,28213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28213, 0,28213, 0,28213, 0, 0,28213, 28213, 0, 0, 0,28213, 0, 0,28213, 0,28213, 0,28213, 0,28213,28213,28213,28214, 0, 0, 0, 0, 0, 0, 0, 0, 0,28214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28214, 0, 0, 0, 0, 0, 0,28214, 0, 0, 0, 0, 0, 0,28214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28214, 0,28214, 0,28214, 0, 0,28214,28214, 0, 0, 0,28214, 0, 0,28214, 0,28214, 0,28214, 0,28214,28214,28214,28229,28229,28229,28229,28229,28229, 28229,28229,28229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28229, 0, 0, 0, 0, 0, 0, 0, 0,28229, 0, 0, 0, 0, 0, 0, 0,28229, 0, 0,28229, 28237,28237,28237,28237,28237,28237,28237,28237,28237,28237, 28237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28237, 0, 0, 0, 0,28237,28241, 0,28241, 0, 0, 0, 0, 0, 0,28241, 0, 0,28241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28241, 0, 0, 0, 0, 0, 0,28241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28241, 0,28241, 0,28241, 0, 0,28241,28241, 0, 0, 0,28241, 0, 0,28241, 0,28241, 0,28241, 0,28241,28241,28241,28242, 0,28242, 0, 0, 0, 0, 0, 0,28242, 0, 0,28242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28242, 0, 0, 0, 0, 0, 0,28242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28242, 0,28242, 0,28242, 0, 0,28242,28242, 0, 0, 0,28242, 0, 0,28242, 0,28242, 0,28242, 0,28242,28242,28242,28245, 0, 0, 0, 0, 0, 0, 0, 0, 0,28245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28245, 0, 0, 0, 0, 0, 0, 0, 0,28245, 0, 0, 0, 0, 0, 0,28245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28245, 0, 28245, 0,28245, 0, 0,28245,28245, 0, 0, 0, 28245, 0,28245,28245, 0,28245, 0,28245, 0,28245, 28245,28245,28246, 0, 0, 0, 0, 0, 0, 0, 0, 0,28246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28246, 0, 0, 0, 0, 0, 0,28246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28246, 0,28246, 0, 28246, 0, 0,28246,28246, 0, 0, 0,28246, 0, 0,28246, 0,28246, 0,28246, 0,28246,28246,28246, 28247,28247, 0, 0, 0, 0, 0, 0, 0, 0, 28247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28247, 0,28247, 0, 0, 0, 0,28247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28247, 0,28247, 0,28247, 0, 0,28247,28247, 0, 0, 0,28247, 0, 0,28247, 0,28247, 0,28247, 0,28247,28247,28247,28248, 0, 28248, 0, 0, 0, 0, 0, 0,28248, 0, 0, 28248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28248, 0, 0, 0, 0, 0, 0,28248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28248, 0,28248, 0,28248, 0, 0,28248,28248, 0, 0, 0,28248, 0, 0,28248, 0,28248, 0,28248, 0,28248,28248,28248,28249, 0, 28249, 0, 0, 0, 0, 0, 0,28249, 0, 0, 28249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28249, 0, 0, 0, 0, 0, 0,28249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28249, 0,28249, 0,28249, 0, 0,28249,28249, 0, 0, 0,28249, 0, 0,28249, 0,28249, 0,28249, 0,28249,28249,28249,28251, 0, 0, 0, 0, 0, 0, 0, 0, 0,28251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28251, 0, 0, 0, 0, 0, 0, 0, 0, 28251, 0, 0, 0, 0, 0, 0,28251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28251, 0,28251, 0,28251, 0, 0,28251, 28251, 0, 0, 0,28251, 0,28251,28251, 0,28251, 0,28251, 0,28251,28251,28251,28252, 0, 0, 0, 0, 0, 0, 0, 0, 0,28252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28252, 0, 0, 0, 0, 0, 0,28252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28252, 0,28252, 0,28252, 0, 0,28252,28252, 0, 0, 0,28252, 0, 0,28252, 0,28252, 0,28252, 0,28252,28252,28252,28253,28253, 0, 0, 0, 0, 0, 0, 0, 0,28253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28253, 0,28253, 0, 0, 0, 0,28253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28253, 0, 28253, 0,28253, 0, 0,28253,28253, 0, 0, 0, 28253, 0, 0,28253, 0,28253, 0,28253, 0,28253, 28253,28253,28254, 0,28254, 0, 0, 0, 0, 0, 0,28254, 0, 0,28254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28254, 0, 0, 0, 0, 0, 0,28254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28254, 0, 28254, 0,28254, 0, 0,28254,28254, 0, 0, 0, 28254, 0, 0,28254, 0,28254, 0,28254, 0,28254, 28254,28254,28255, 0,28255, 0, 0, 0, 0, 0, 0,28255, 0, 0,28255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28255, 0, 0, 0, 0, 0, 0,28255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28255, 0, 28255, 0,28255, 0, 0,28255,28255, 0, 0, 0, 28255, 0, 0,28255, 0,28255, 0,28255, 0,28255, 28255,28255,28282,28282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28282,28282,28282,28282,28282,28282, 28282,28282,28282, 0,28282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28282, 28289,28289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28289,28289,28289,28289,28289,28289,28289,28289, 28289, 0,28289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28289,28296,28296, 0,28296,28296,28296, 28296,28296,28296,28296, 0,28296,28296,28296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28296,28296, 28296,28296,28296,28296,28296, 0, 0, 0, 0, 0, 28296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28296,28296, 28296,28296,28297,28297, 0,28297,28297,28297,28297,28297, 28297,28297, 0,28297,28297,28297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28297,28297,28297,28297, 28297,28297,28297,28297, 0, 0, 0, 0,28297, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28297,28297,28297,28297, 28332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28332, 0, 0, 0, 0, 0, 0,28332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28332, 0,28332, 0,28332, 0, 0,28332,28332, 0, 0, 0,28332,28332, 0,28332, 0,28332, 0,28332, 0,28332,28332,28332,28333, 0, 0, 0, 0, 0, 0, 0, 0, 0,28333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28333, 0, 0, 0, 0, 0, 0,28333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28333, 0,28333, 0,28333, 0, 0,28333, 28333, 0, 0, 0,28333,28333, 0,28333, 0,28333, 0,28333, 0,28333,28333,28333,28336, 0,28336, 0, 0, 0, 0, 0, 0,28336, 0, 0,28336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28336, 0, 0, 0, 0, 0, 0,28336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28336, 0,28336,28336,28336, 0, 0,28336, 28336, 0, 0, 0,28336, 0, 0,28336, 0,28336, 0,28336, 0,28336,28336,28336,28339, 0,28339, 0, 0, 0, 0, 0, 0,28339, 0, 0,28339, 0, 0,28339, 0,28339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28339, 0,28339, 0, 0, 0, 0,28339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28339, 0,28339, 0,28339, 0, 0,28339, 28339, 0, 0, 0,28339, 0, 0,28339, 0,28339, 0,28339, 0,28339,28339,28339,28351, 0,28351, 0, 0, 0, 0, 0, 0,28351, 0, 0,28351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28351, 0, 0, 0, 0, 0, 0, 0, 0, 28351, 0, 0, 0, 0, 0, 0,28351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28351, 0,28351, 0,28351, 0, 0,28351, 28351, 0, 0, 0,28351, 0,28351,28351, 0,28351, 0,28351, 0,28351,28351,28351,28352, 0,28352, 0, 0, 0, 0, 0, 0,28352, 0, 0,28352, 0, 0,28352, 0,28352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28352, 0,28352, 0, 0, 0, 0,28352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28352, 0,28352, 0,28352, 0, 0,28352, 28352, 0, 0, 0,28352, 0, 0,28352, 0,28352, 0,28352, 0,28352,28352,28352,28353, 0,28353,28353, 0, 0, 0, 0, 0,28353, 0, 0,28353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28353, 0, 0, 0, 0, 0, 0,28353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28353, 0,28353, 0,28353, 0, 0,28353, 28353, 0, 0, 0,28353, 0, 0,28353, 0,28353, 0,28353, 0,28353,28353,28353,28354, 0, 0, 0, 0, 0, 0, 0, 0, 0,28354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28354, 0, 0, 0, 0, 0, 0,28354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28354, 0,28354, 0,28354, 0, 0,28354,28354, 0, 0, 0,28354, 0, 0,28354, 0,28354, 0,28354, 0,28354,28354,28354,28355, 0, 0, 0, 0, 0, 0, 0, 0, 0,28355,28355,28355,28355,28355,28355, 28355,28355,28355,28355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28355, 0, 0, 0, 0, 0, 0,28355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28355, 0, 28355, 0,28355, 0, 0,28355,28355, 0, 0, 0, 28355, 0, 0,28355, 0,28355, 0,28355, 0,28355, 28355,28355,28356,28356,28356,28356,28356,28356,28356,28356, 28356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28356, 0, 0, 0, 0, 0, 0, 0, 0,28356, 0, 0, 0, 0, 0, 0, 0,28356, 0, 0,28356,28364,28364, 28364,28364,28364,28364,28364,28364,28364,28364,28364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28364, 0, 0, 0, 0,28364,28378, 0,28378, 0, 0, 0, 0, 0, 0,28378, 0, 0,28378, 0, 0,28378, 0,28378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28378, 0,28378, 0, 0, 0, 0,28378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28378, 0, 28378, 0,28378, 0, 0,28378,28378, 0, 0, 0, 28378, 0, 0,28378, 0,28378, 0,28378, 0,28378, 28378,28378,28379, 0,28379,28379, 0, 0, 0, 0, 0,28379, 0, 0,28379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28379, 0, 0, 0, 0, 0, 0,28379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28379, 0, 28379, 0,28379, 0, 0,28379,28379, 0, 0, 0, 28379, 0, 0,28379, 0,28379, 0,28379, 0,28379, 28379,28379,28380, 0, 0, 0, 0, 0, 0, 0, 0, 0,28380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28380, 0, 0, 0, 0, 0, 0,28380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28380, 0,28380, 0, 28380, 0, 0,28380,28380, 0, 0, 0,28380, 0, 0,28380, 0,28380, 0,28380, 0,28380,28380,28380, 28381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28381,28381,28381,28381,28381,28381,28381,28381,28381,28381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28381, 0, 0, 0, 0, 0, 0,28381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28381, 0,28381, 0,28381, 0, 0,28381,28381, 0, 0, 0,28381, 0, 0,28381, 0,28381, 0,28381, 0,28381,28381,28381,28382,28382, 28382,28382,28382,28382,28382,28382,28382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28382, 0, 0, 0, 0, 0, 0, 0, 0,28382, 0, 0, 0, 0, 0, 0, 0, 28382, 0, 0,28382,28390,28390,28390,28390,28390,28390, 28390,28390,28390,28390,28390, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28390, 0, 0, 0, 0,28390,28404, 0, 28404, 0, 0, 0, 0, 0, 0,28404, 0, 0, 28404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28404, 0, 0, 0, 0, 0, 0, 0, 0,28404, 0, 0, 0, 0, 0, 0,28404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28404, 0,28404, 0,28404, 0, 0,28404,28404, 0, 0, 0,28404, 0,28404,28404, 0,28404, 0,28404, 0,28404,28404,28404,28405, 0, 0, 0, 0, 0, 0, 0, 0, 0,28405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28405, 0, 0, 0, 0, 0, 0,28405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28405, 0,28405, 0,28405, 0, 0,28405, 28405, 0, 0, 0,28405, 0, 0,28405, 0,28405, 0,28405, 0,28405,28405,28405,28406, 0, 0, 0, 0, 0, 0, 0, 0, 0,28406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28406, 0, 0, 0, 0, 0, 0,28406, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28406, 0,28406, 0,28406, 0, 0,28406,28406, 0, 0, 0,28406, 0, 0,28406, 0,28406, 0,28406, 0,28406,28406,28406,28407, 0, 0, 0, 0, 0, 0, 0, 0, 0,28407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28407, 0, 0, 0, 0, 0, 0,28407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28407, 0, 28407, 0,28407, 0, 0,28407,28407, 0, 0, 0, 28407, 0, 0,28407, 0,28407, 0,28407, 0,28407, 28407,28407,28408, 0,28408, 0, 0, 0, 0, 0, 0,28408, 0, 0,28408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28408, 0, 0, 0, 0, 0, 0, 0, 0,28408, 0, 0, 0, 0, 0, 0,28408, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28408, 0, 28408, 0,28408, 0, 0,28408,28408, 0, 0, 0, 28408, 0,28408,28408, 0,28408, 0,28408, 0,28408, 28408,28408,28409, 0, 0, 0, 0, 0, 0, 0, 0, 0,28409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28409, 0, 0, 0, 0, 0, 0,28409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28409, 0,28409, 0, 28409, 0, 0,28409,28409, 0, 0, 0,28409, 0, 0,28409, 0,28409, 0,28409, 0,28409,28409,28409, 28410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28410, 0, 0, 0, 0, 0, 0,28410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28410, 0,28410, 0,28410, 0, 0,28410,28410, 0, 0, 0,28410, 0, 0,28410, 0,28410, 0,28410, 0,28410,28410,28410,28411, 0, 0, 0, 0, 0, 0, 0, 0, 0,28411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28411, 0, 0, 0, 0, 0, 0,28411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28411, 0,28411, 0,28411, 0, 0,28411, 28411, 0, 0, 0,28411, 0, 0,28411, 0,28411, 0,28411, 0,28411,28411,28411,28412, 0,28412, 0, 0, 0, 0, 0, 0,28412, 0, 0,28412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28412, 0, 0, 0, 0, 0, 0, 0, 0, 28412, 0, 0, 0, 0, 0, 0,28412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28412, 0,28412, 0,28412, 0, 0,28412, 28412, 0, 0, 0,28412, 0,28412,28412, 0,28412, 0,28412, 0,28412,28412,28412,28414,28414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28414,28414, 28414,28414,28414,28414,28414,28414,28414, 0,28414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28414,28444,28444, 0,28444,28444,28444, 28444,28444,28444,28444, 0,28444,28444,28444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28444,28444, 28444,28444,28444,28444,28444, 0, 0, 0, 0, 0, 28444, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28444,28444, 28444,28444,28445,28445, 0,28445,28445,28445,28445,28445, 28445,28445, 0,28445,28445,28445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28445,28445,28445,28445, 28445,28445,28445,28445, 0, 0, 0, 0,28445, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28445,28445,28445,28445, 28449,28449,28449,28449,28449,28449,28449,28449,28449, 0, 0, 0, 0, 0, 0, 0,28449,28449,28449,28449, 28449,28449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28449,28449,28449,28449,28449,28449,28481, 0, 0, 0, 0, 0, 0, 0, 0, 0,28481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28481, 0, 0, 0, 0, 0, 0,28481, 0, 0, 0, 0, 0, 0,28481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28481, 0,28481,28481,28481, 0, 0, 28481,28481, 0, 0, 0,28481, 0, 0,28481, 0, 28481, 0,28481, 0,28481,28481,28481,28482, 0, 0, 0, 0, 0, 0, 0, 0, 0,28482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28482, 0, 0, 0, 0, 0, 0,28482, 0, 0,28482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28482, 0,28482,28482,28482, 0, 0,28482,28482, 0, 0, 0,28482, 0, 0,28482, 0,28482, 0, 28482, 0,28482,28482,28482,28483, 0,28483, 0, 0, 0, 0, 0, 0,28483, 0, 0,28483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28483, 0, 0, 0, 0, 0, 0,28483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28483, 0,28483, 0,28483, 0, 0,28483,28483, 0, 0, 0,28483, 0, 0,28483, 0,28483, 0, 28483, 0,28483,28483,28483,28485, 0,28485, 0, 0, 0, 0, 0, 0,28485, 0, 0,28485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28485, 0, 0, 0, 0, 0, 0,28485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28485, 0,28485, 0,28485, 0, 0,28485,28485, 0, 0, 0,28485, 0,28485,28485, 0,28485, 0, 28485, 0,28485,28485,28485,28485,28497, 0,28497, 0, 0, 0, 0, 0, 0,28497, 0, 0,28497,28497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28497, 0, 0, 0, 0, 0, 0,28497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28497, 0,28497, 0,28497, 0, 0,28497, 28497, 0, 0, 0,28497, 0, 0,28497, 0,28497, 0,28497, 0,28497,28497,28497,28498, 0,28498, 0, 0, 0, 0, 0, 0,28498, 0, 0,28498,28498, 28498,28498,28498,28498,28498,28498,28498,28498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28498, 0, 0, 0, 0, 0, 0,28498, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28498, 0,28498, 0,28498, 0, 0,28498, 28498, 0, 0, 0,28498, 0, 0,28498, 0,28498, 0,28498, 0,28498,28498,28498,28499, 0, 0, 0, 0, 0, 0, 0, 0, 0,28499, 0, 0,28499, 0,28499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28499, 0, 28499, 0, 0, 0, 0,28499, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28499, 0,28499, 0,28499, 0, 0,28499,28499, 0, 0, 0,28499, 0, 0,28499, 0,28499, 0,28499, 0,28499,28499,28499,28500,28500, 0, 0, 0, 0, 0, 0, 0, 0,28500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28500, 0, 0, 0, 0, 0, 0,28500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28500, 0, 28500, 0,28500, 0, 0,28500,28500, 0, 0, 0, 28500, 0, 0,28500, 0,28500, 0,28500, 0,28500, 28500,28500,28519, 0,28519, 0, 0, 0, 0, 0, 0,28519, 0, 0,28519,28519, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28519, 0, 0, 0, 0, 0, 0,28519, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28519, 0, 28519, 0,28519, 0, 0,28519,28519, 0, 0, 0, 28519, 0, 0,28519, 0,28519, 0,28519, 0,28519, 28519,28519,28520, 0,28520, 0, 0, 0, 0, 0, 0,28520, 0, 0,28520,28520,28520,28520,28520,28520, 28520,28520,28520,28520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28520, 0, 0, 0, 0, 0, 0,28520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28520, 0, 28520, 0,28520, 0, 0,28520,28520, 0, 0, 0, 28520, 0, 0,28520, 0,28520, 0,28520, 0,28520, 28520,28520,28521, 0, 0, 0, 0, 0, 0, 0, 0, 0,28521, 0, 0,28521, 0,28521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28521, 0,28521, 0, 0, 0, 0,28521, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28521, 0,28521, 0, 28521, 0, 0,28521,28521, 0, 0, 0,28521, 0, 0,28521, 0,28521, 0,28521, 0,28521,28521,28521, 28522,28522, 0, 0, 0, 0, 0, 0, 0, 0, 28522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28522, 0, 0, 0, 0, 0, 0,28522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28522, 0,28522, 0,28522, 0, 0,28522,28522, 0, 0, 0,28522, 0, 0,28522, 0,28522, 0,28522, 0,28522,28522,28522,28541, 0, 0, 0, 0, 0, 0, 0, 0, 0,28541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28541, 0, 0, 0, 0, 0, 0, 0, 0, 28541, 0, 0, 0, 0, 0, 0,28541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28541, 0,28541, 0,28541, 0, 0,28541, 28541, 0, 0, 0,28541, 0,28541,28541, 0,28541, 0,28541, 0,28541,28541,28541,28542, 0, 0, 0, 0, 0, 0, 0, 0, 0,28542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28542, 0, 0, 0, 0, 0, 0, 0, 0,28542, 0, 0, 0, 0, 0, 0,28542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28542, 0,28542, 0,28542, 0, 0,28542,28542, 0, 0, 0,28542, 0,28542,28542, 0,28542, 0,28542, 0,28542,28542,28542,28571,28571, 0,28571,28571,28571, 28571,28571,28571,28571, 0,28571,28571,28571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28571,28571, 28571,28571,28571,28571,28571, 0, 0, 0, 0, 0, 28571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28571,28571, 28571,28571,28572,28572, 0,28572,28572,28572,28572,28572, 28572,28572, 0,28572,28572,28572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28572,28572,28572,28572, 28572,28572,28572,28572, 0, 0, 0, 0,28572, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28572,28572,28572,28572, 28576,28576,28576,28576,28576,28576,28576,28576,28576, 0, 0, 0, 0, 0, 0, 0,28576,28576,28576,28576, 28576,28576, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28576,28576,28576,28576,28576,28576,28591, 28591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28591,28591,28591,28591,28591,28591,28591,28591,28591, 0,28591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28591, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28591,28611, 0, 0, 0, 0, 0, 0, 0, 0, 0,28611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28611, 0, 0, 0, 0, 0, 0,28611, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28611,28611, 0,28611, 0,28611, 0, 0,28611, 28611, 0, 0, 0,28611, 0, 0,28611, 0,28611, 0,28611, 0,28611,28611,28611,28612, 0, 0, 0, 0, 0, 0, 0, 0, 0,28612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28612, 0, 0, 0, 0, 0, 0,28612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28612, 0,28612, 0,28612, 0, 0,28612,28612, 0, 0, 0,28612, 0, 0,28612, 0,28612, 0,28612, 0,28612,28612,28612,28613, 0, 0, 0, 0, 0, 0, 0, 0, 0,28613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28613, 0, 0, 0, 0, 0, 0,28613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28613, 0, 28613, 0,28613, 0, 0,28613,28613, 0, 0, 0, 28613, 0, 0,28613, 0,28613, 0,28613, 0,28613, 28613,28613,28614, 0,28614, 0, 0, 0, 0, 0, 0,28614, 0, 0,28614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28614, 0, 0, 0, 0, 0, 0,28614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28614, 0, 28614, 0,28614, 0, 0,28614,28614, 0, 0, 0, 28614, 0, 0,28614, 0,28614, 0,28614, 0,28614, 28614,28614,28615, 0, 0, 0, 0, 0, 0, 0, 0, 0,28615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28615, 0, 0, 0, 0, 0, 0,28615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28615, 0,28615, 0, 28615, 0, 0,28615,28615, 0, 0, 0,28615, 0, 0,28615, 0,28615, 0,28615, 0,28615,28615,28615, 28616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28616, 0, 0, 0, 0, 0, 0,28616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28616, 0,28616, 0,28616, 0, 0,28616,28616, 0, 0, 0,28616,28616,28616,28616, 0,28616, 0,28616, 0,28616,28616,28616,28617, 0, 28617, 0, 0, 0, 0, 0, 0,28617, 0, 0, 28617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28617, 0, 0, 0, 0, 0, 0,28617, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28617, 0,28617, 0,28617, 0, 0,28617,28617, 0, 0, 0,28617, 0, 0,28617, 0,28617, 0,28617, 0,28617,28617,28617,28626, 0, 28626, 0, 0, 0, 0, 0, 0,28626, 0, 0, 28626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28626, 0, 0, 0, 0, 0, 0,28626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28626, 0,28626, 0,28626, 0, 0,28626,28626, 0, 0, 0,28626, 0, 0,28626, 0,28626, 0,28626, 0,28626,28626,28626,28627, 0, 28627, 0, 0, 0, 0, 0, 0,28627, 0, 0, 28627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28627, 0, 0, 0, 0, 0, 0,28627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28627, 0,28627, 0,28627, 0, 0,28627,28627, 0, 0, 0,28627, 0, 0,28627, 0,28627, 0,28627, 0,28627,28627,28627,28629, 0, 0, 0, 0, 0, 0, 0, 0, 0,28629,28629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28629, 0, 0, 0, 0, 0, 0,28629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28629, 0,28629, 0,28629, 0, 0,28629, 28629, 0, 0, 0,28629, 0, 0,28629, 0,28629, 0,28629, 0,28629,28629,28629,28630, 0, 0, 0, 0, 0, 0, 0, 0, 0,28630, 0, 0, 0, 0,28630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28630, 0, 0, 0, 0, 0, 0,28630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28630, 0,28630, 0,28630, 0, 0,28630,28630, 0, 0, 0,28630, 0, 0,28630, 0,28630, 0,28630, 0,28630,28630,28630,28646, 0,28646, 0, 0, 0, 0, 0, 0,28646, 0, 0,28646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28646, 0, 0, 0, 0, 0, 0,28646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28646, 0,28646, 0,28646, 0, 0,28646,28646, 0, 0, 0,28646, 0, 0,28646, 0,28646, 0,28646, 0,28646,28646,28646,28647, 0,28647, 0, 0, 0, 0, 0, 0,28647, 0, 0,28647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28647, 0, 0, 0, 0, 0, 0,28647, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28647, 0,28647, 0,28647, 0, 0,28647,28647, 0, 0, 0,28647, 0, 0,28647, 0,28647, 0,28647, 0,28647,28647,28647,28649, 0, 0, 0, 0, 0, 0, 0, 0, 0,28649,28649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28649, 0, 0, 0, 0, 0, 0,28649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28649, 0, 28649, 0,28649, 0, 0,28649,28649, 0, 0, 0, 28649, 0, 0,28649, 0,28649, 0,28649, 0,28649, 28649,28649,28650, 0, 0, 0, 0, 0, 0, 0, 0, 0,28650, 0, 0, 0, 0,28650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28650, 0, 0, 0, 0, 0, 0,28650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28650, 0,28650, 0, 28650, 0, 0,28650,28650, 0, 0, 0,28650, 0, 0,28650, 0,28650, 0,28650, 0,28650,28650,28650, 28691,28691, 0,28691,28691,28691,28691,28691,28691,28691, 0,28691,28691,28691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28691,28691,28691,28691,28691,28691, 28691, 0, 0, 0, 0, 0,28691, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28691,28691,28691,28691,28692,28692, 0,28692,28692,28692,28692,28692,28692,28692, 0,28692, 28692,28692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28692,28692,28692,28692,28692,28692,28692,28692, 0, 0, 0, 0,28692, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28692,28692,28692,28692,28706,28706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28706,28706, 28706,28706,28706,28706,28706,28706,28706, 0,28706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28706,28711,28711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28711,28711,28711, 28711,28711,28711,28711,28711,28711, 0,28711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28711,28711,28730, 0, 0, 0, 0, 0, 0, 0, 0, 0,28730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28730, 0, 0, 0, 0, 0, 0,28730, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28730, 0, 28730, 0,28730, 0, 0,28730,28730, 0, 0, 0, 28730, 0, 0,28730, 0,28730, 0,28730, 0,28730, 28730,28730,28731, 0, 0, 0, 0, 0, 0, 0, 0, 0,28731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28731, 0, 0, 0, 0, 0, 0,28731, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28731, 0,28731, 0, 28731, 0, 0,28731,28731, 0, 0, 0,28731, 0, 28731,28731, 0,28731, 0,28731, 0,28731,28731,28731, 28733, 0,28733, 0, 0, 0, 0, 0, 0,28733, 0, 0,28733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28733, 0, 0, 0, 0, 0, 0,28733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28733, 0,28733, 0, 28733, 0, 0,28733,28733, 0, 0, 0,28733, 0, 28733,28733, 0,28733, 0,28733, 0,28733,28733,28733, 28735, 0,28735, 0, 0, 0, 0, 0, 0,28735, 0, 0,28735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28735, 0, 0, 0, 0, 0, 0,28735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28735, 0,28735, 0, 28735, 0, 0,28735,28735, 0, 0, 0,28735, 0, 0,28735, 0,28735, 0,28735, 0,28735,28735,28735, 28736, 0,28736, 0, 0, 0, 0, 0, 0,28736, 0, 0,28736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28736, 0, 0, 0, 0, 0, 0,28736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28736, 0,28736, 0, 28736, 0, 0,28736,28736, 0, 0, 0,28736,28736, 0,28736, 0,28736, 0,28736, 0,28736,28736,28736, 28742, 0,28742, 0, 0, 0, 0, 0, 0,28742, 0, 0,28742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28742, 0, 0, 0, 0, 0, 0,28742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28742, 0,28742, 0, 28742, 0, 0,28742,28742, 0, 0, 0,28742, 0, 0,28742, 0,28742, 0,28742, 0,28742,28742,28742, 28743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28743, 0, 0, 0, 0, 0, 0,28743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28743, 0,28743, 0,28743, 0, 0,28743,28743, 0, 0, 0,28743, 0, 0,28743, 0,28743, 0,28743, 0,28743,28743,28743,28744, 0, 0, 0, 0, 0, 0, 0, 0, 0,28744, 0, 0, 0, 0,28744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28744, 0, 0, 0, 0, 0, 0,28744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28744, 0,28744, 0,28744, 0, 0,28744, 28744, 0, 0, 0,28744, 0, 0,28744, 0,28744, 0,28744, 0,28744,28744,28744,28752, 0,28752, 0, 0, 0, 0, 0, 0,28752, 0, 0,28752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28752, 0, 0, 0, 0, 0, 0,28752, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28752, 0,28752, 0,28752, 0, 0,28752, 28752, 0, 0, 0,28752,28752, 0,28752, 0,28752, 0,28752, 0,28752,28752,28752,28753, 0,28753, 0, 0, 0, 0, 0, 0,28753, 0, 0,28753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28753, 0, 0, 0, 0, 0, 0,28753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28753, 0,28753, 0,28753, 0, 0,28753, 28753, 0, 0, 0,28753,28753, 0,28753, 0,28753, 0,28753, 0,28753,28753,28753,28759, 0, 0, 0, 0, 0, 0, 0, 0, 0,28759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28759, 0, 0, 0, 0, 0, 0,28759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28759, 0,28759, 0,28759, 0, 0,28759,28759, 0, 0, 0,28759, 0, 0,28759, 0,28759, 0,28759, 0,28759,28759,28759,28760, 0, 0, 0, 0, 0, 0, 0, 0, 0,28760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28760, 0, 0, 0, 0, 0, 0,28760, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28760, 0, 28760, 0,28760, 0, 0,28760,28760, 0, 0, 0, 28760, 0, 0,28760, 0,28760, 0,28760, 0,28760, 28760,28760,28761, 0, 0, 0, 0, 0, 0, 0, 0, 0,28761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28761, 0, 0, 0, 0, 0, 0,28761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28761, 0,28761, 0, 28761, 0, 0,28761,28761, 0, 0, 0,28761, 0, 0,28761, 0,28761, 0,28761, 0,28761,28761,28761, 28762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28762, 0, 0, 0, 0, 0, 0,28762, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28762, 0,28762, 0,28762, 0, 0,28762,28762, 0, 0, 0,28762, 0, 0,28762, 0,28762, 0,28762, 0,28762,28762,28762,28763, 0, 0, 0, 0, 0, 0, 0, 0, 0,28763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28763, 0, 0, 0, 0, 0, 0,28763, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28763, 0,28763, 0,28763, 0, 0,28763, 28763, 0, 0, 0,28763, 0, 0,28763, 0,28763, 0,28763, 0,28763,28763,28763,28764, 0, 0, 0, 0, 0, 0, 0, 0, 0,28764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28764, 0, 0, 0, 0, 0, 0,28764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28764, 0,28764, 0,28764, 0, 0,28764,28764, 0, 0, 0,28764, 0, 0,28764, 0,28764, 0,28764, 0,28764,28764,28764,28765, 0, 0, 0, 0, 0, 0, 0, 0, 0,28765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28765, 0, 0, 0, 0, 0, 0,28765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28765, 0, 28765, 0,28765, 0, 0,28765,28765, 0, 0, 0, 28765, 0,28765,28765, 0,28765, 0,28765, 0,28765, 28765,28765,28765,28798,28798, 0,28798,28798,28798,28798, 28798,28798,28798, 0,28798,28798,28798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28798,28798,28798, 28798,28798,28798,28798, 0, 0, 0, 0, 0,28798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28798,28798,28798, 28798,28799,28799, 0,28799,28799,28799,28799,28799,28799, 28799, 0,28799,28799,28799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28799,28799,28799,28799,28799, 28799,28799,28799, 0, 0, 0, 0,28799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28799,28799,28799,28799,28803, 28803,28803,28803,28803,28803,28803,28803,28803, 0, 0, 0, 0, 0, 0, 0,28803,28803,28803,28803,28803, 28803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28803,28803,28803,28803,28803,28803,28808,28808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28808,28808,28808,28808,28808,28808,28808,28808,28808, 0, 28808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28808,28808,28832, 0, 0, 0, 0, 0, 0, 0, 0, 0,28832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28832, 0, 0, 0, 0, 0, 0,28832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28832, 0,28832, 0,28832, 0, 0,28832,28832, 0, 0, 0,28832, 0,28832,28832, 0,28832, 0, 28832, 0,28832,28832,28832,28833, 0, 0, 0, 0, 0, 0, 0, 0, 0,28833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28833, 0, 0, 0, 0, 0, 0,28833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28833, 0,28833, 0,28833, 0, 0,28833,28833, 0, 0, 0,28833, 0, 0,28833, 0,28833, 0,28833,28833, 28833,28833,28833,28835, 0,28835, 0, 0, 0, 0, 0, 0,28835, 0, 0,28835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28835, 0, 0, 0, 0, 0, 0,28835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28835, 0,28835, 0,28835, 0, 0,28835,28835, 0, 0, 0,28835, 0, 0,28835, 0,28835, 0,28835, 0, 28835,28835,28835,28837, 0,28837, 0, 0, 0, 0, 0, 0,28837, 0, 0,28837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28837, 0, 0, 0, 0, 0, 0,28837, 0, 0, 0, 0, 0, 0,28837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28837, 0,28837,28837,28837, 0, 0,28837,28837, 0, 0, 0,28837, 0, 0,28837, 0,28837, 0,28837, 0, 28837,28837,28837,28842, 0, 0, 0, 0, 0, 0, 0, 0, 0,28842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28842, 0, 0, 0, 0, 0, 0,28842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28842, 0,28842, 0,28842, 0, 0,28842,28842, 0, 0, 0,28842, 0, 0,28842, 0,28842, 0,28842, 0,28842,28842, 28842,28843, 0, 0, 0, 0, 0, 0, 0, 0, 0,28843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28843, 0, 0, 0, 0, 0, 0, 28843, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28843, 0,28843, 0,28843, 0, 0,28843,28843, 0, 0, 0,28843,28843, 0, 28843, 0,28843, 0,28843, 0,28843,28843,28843,28844, 0, 0, 0, 0, 0, 0, 0, 0, 0,28844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28844, 0, 0, 0, 0, 0, 0,28844, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28844, 0,28844, 0,28844, 0, 0, 28844,28844, 0, 0, 0,28844,28844, 0,28844, 0, 28844, 0,28844, 0,28844,28844,28844,28849, 0,28849, 0, 0, 0, 0, 0, 0,28849, 0, 0,28849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28849, 0, 0, 0, 0, 0, 0,28849, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28849, 0,28849, 0,28849, 0, 0, 28849,28849, 0, 0, 0,28849, 0, 0,28849, 0, 28849, 0,28849, 0,28849,28849,28849,28850, 0,28850, 0, 0, 0, 0, 0, 0,28850, 0, 0,28850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28850, 0, 0, 0, 0, 0, 0,28850, 0, 0, 0, 0, 0, 0,28850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28850, 0,28850,28850,28850, 0, 0, 28850,28850, 0, 0, 0,28850, 0, 0,28850, 0, 28850, 0,28850, 0,28850,28850,28850,28856, 0, 0, 0, 0, 0, 0, 0, 0, 0,28856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28856, 0, 0, 0, 0, 0, 0,28856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28856, 0,28856, 0,28856, 0, 0,28856,28856, 0, 0, 0,28856,28856, 0,28856, 0,28856, 0, 28856, 0,28856,28856,28856,28862, 0,28862, 0, 0, 0, 0, 0, 0,28862, 0, 0,28862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28862, 0, 0, 0, 0, 0, 0,28862, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28862, 0,28862, 0,28862, 0, 0,28862,28862, 0, 0, 0,28862, 0, 0,28862, 0,28862, 0, 28862, 0,28862,28862,28862,28863, 0,28863, 0, 0, 0, 0, 0, 0,28863, 0, 0,28863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28863, 0, 0, 0, 0, 0, 0,28863, 0, 0, 0, 0, 0, 0,28863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28863, 0,28863,28863,28863, 0, 0,28863,28863, 0, 0, 0,28863, 0, 0,28863, 0,28863, 0, 28863, 0,28863,28863,28863,28891,28891, 0,28891,28891, 28891,28891,28891,28891,28891, 0,28891,28891,28891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28891, 28891,28891,28891,28891,28891,28891, 0, 0, 0, 0, 0,28891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28891, 28891,28891,28891,28892,28892, 0,28892,28892,28892,28892, 28892,28892,28892, 0,28892,28892,28892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28892,28892,28892, 28892,28892,28892,28892,28892, 0, 0, 0, 0,28892, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28892,28892,28892, 28892,28896,28896,28896,28896,28896,28896,28896,28896,28896, 0, 0, 0, 0, 0, 0, 0,28896,28896,28896, 28896,28896,28896, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28896,28896,28896,28896,28896,28896, 28925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28925, 0, 0, 0, 0, 0, 0,28925, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28925, 0,28925,28925,28925, 0, 0,28925,28925, 0, 0, 0,28925, 0, 0,28925, 0,28925,28925,28925, 0,28925,28925,28925,28926, 0, 0, 0, 0, 0, 0, 0,28926, 0,28926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28926, 0, 0, 0, 0, 0, 0,28926, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28926, 0,28926, 0,28926, 0, 0,28926, 28926, 0, 0, 0,28926, 0, 0,28926, 0,28926, 0,28926, 0,28926,28926,28926,28929, 0,28929, 0, 0, 0, 0, 0, 0,28929, 0, 0,28929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28929, 0, 0, 0, 0, 0, 0,28929, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28929,28929, 0,28929, 0,28929, 0, 0,28929, 28929, 0, 0, 0,28929, 0, 0,28929, 0,28929, 0,28929, 0,28929,28929,28929,28930, 0,28930, 0, 0, 0, 0, 0, 0,28930, 0, 0,28930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28930, 0, 0, 0, 0, 0, 0,28930, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28930, 0,28930, 0,28930, 0, 0,28930, 28930, 0, 0, 0,28930, 0, 0,28930, 0,28930, 0,28930, 0,28930,28930,28930,28933, 0, 0, 0, 0, 0, 0, 0, 0, 0,28933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28933, 0, 0, 0, 0, 0, 0,28933, 0, 0, 0, 0, 0, 0,28933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28933, 0,28933,28933,28933, 0, 0,28933,28933, 0, 0, 0,28933, 0, 0,28933, 0,28933, 0,28933, 0,28933,28933,28933,28934, 0, 0, 0, 0, 0, 0, 0, 0, 0,28934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28934, 0, 0, 0, 0, 0, 0,28934, 0, 0,28934, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28934, 0, 28934,28934,28934, 0, 0,28934,28934, 0, 0, 0, 28934, 0, 0,28934, 0,28934, 0,28934, 0,28934, 28934,28934,28935, 0,28935, 0, 0, 0, 0, 0, 0,28935, 0, 0,28935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28935, 0, 0, 0, 0, 0, 0,28935, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28935, 0, 28935, 0,28935, 0, 0,28935,28935, 0, 0, 0, 28935, 0, 0,28935, 0,28935, 0,28935, 0,28935, 28935,28935,28939, 0,28939, 0, 0, 0, 0, 0, 0,28939, 0, 0,28939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28939, 0, 0, 0, 0, 0, 0,28939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28939,28939, 0, 28939, 0,28939, 0, 0,28939,28939, 0, 0, 0, 28939, 0, 0,28939, 0,28939, 0,28939, 0,28939, 28939,28939,28944, 0, 0, 0, 0, 0, 0, 0, 0, 0,28944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28944, 0, 0, 0, 0, 0, 0,28944, 0, 0, 0, 0, 0, 0,28944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28944, 0,28944,28944, 28944, 0, 0,28944,28944, 0, 0, 0,28944, 0, 0,28944, 0,28944, 0,28944, 0,28944,28944,28944, 28945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28945, 0, 0, 0, 0, 0, 0,28945, 0, 0,28945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28945, 0,28945,28945,28945, 0, 0,28945,28945, 0, 0, 0,28945, 0, 0,28945, 0,28945, 0,28945, 0,28945,28945,28945,28946, 0, 28946, 0, 0, 0, 0, 0, 0,28946, 0, 0, 28946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28946, 0, 0, 0, 0, 0, 0,28946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28946, 0,28946, 0,28946, 0, 0,28946,28946, 0, 0, 0,28946, 0, 0,28946, 0,28946, 0,28946, 0,28946,28946,28946,28950, 0, 28950, 0, 0, 0, 0, 0, 0,28950, 0, 0, 28950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28950, 0, 0, 0, 0, 0, 0,28950, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28950,28950, 0,28950, 0,28950, 0, 0,28950,28950, 0, 0, 0,28950, 0, 0,28950, 0,28950, 0,28950, 0,28950,28950,28950,28977,28977, 0,28977,28977,28977,28977,28977,28977,28977, 0,28977, 28977,28977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28977,28977,28977,28977,28977,28977,28977, 0, 0, 0, 0, 0,28977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28977,28977,28977,28977,28978,28978, 0,28978, 28978,28978,28978,28978,28978,28978, 0,28978,28978,28978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28978,28978,28978,28978,28978,28978,28978,28978, 0, 0, 0, 0,28978, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28978,28978,28978,28978,28995,28995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28995,28995,28995,28995, 28995,28995,28995,28995,28995, 0,28995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,28995,29010, 0, 0, 0, 0, 0, 0, 0, 0, 0,29010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29010, 0, 0, 0, 0, 0, 0,29010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29010, 0,29010, 0,29010, 0, 0,29010,29010, 0, 0, 0,29010, 0, 0,29010, 0,29010, 0,29010, 0,29010,29010, 29010,29011, 0, 0, 0, 0, 0, 0, 0, 0, 0,29011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29011, 0, 0, 0, 0, 0, 0, 29011, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29011, 0,29011,29011,29011, 0, 0,29011,29011, 0, 0, 0,29011,29011, 0, 29011, 0,29011, 0,29011, 0,29011,29011,29011,29014, 0,29014, 0, 0, 0, 0, 0, 0,29014, 0, 0,29014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29014, 0, 0, 0, 0, 0, 0, 29014, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29014, 0,29014, 0,29014, 0, 0,29014,29014, 0, 0, 0,29014, 0, 0, 29014, 0,29014, 0,29014, 0,29014,29014,29014,29015, 0,29015, 0, 0, 0, 0, 0, 0,29015, 0, 0,29015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29015, 0, 0, 0, 0, 0, 0, 29015, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29015, 0,29015, 0,29015, 0, 0,29015,29015, 0, 0, 0,29015, 0,29015, 29015, 0,29015, 0,29015, 0,29015,29015,29015,29018, 0, 0, 0, 0, 0, 0, 0, 0, 0,29018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29018, 0, 0, 0, 0, 0, 0,29018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29018,29018, 0,29018, 0,29018, 0, 0, 29018,29018, 0, 0, 0,29018, 0, 0,29018, 0, 29018, 0,29018, 0,29018,29018,29018,29019, 0, 0, 0, 0, 0, 0, 0, 0, 0,29019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29019, 0, 0, 0, 0, 0, 0,29019, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29019, 0,29019, 0,29019, 0, 0,29019,29019, 0, 0, 0,29019, 0, 0,29019, 0,29019, 0, 29019, 0,29019,29019,29019,29020, 0, 0, 0, 0, 0, 0, 0, 0, 0,29020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29020, 0, 0, 0, 0, 0, 0,29020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29020, 0,29020, 0,29020, 0, 0,29020,29020, 0, 0, 0,29020, 0, 0,29020, 0,29020, 0,29020, 0, 29020,29020,29020,29021, 0, 0, 0, 0, 0, 0, 0, 0, 0,29021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29021, 0, 0, 0, 0, 0, 0,29021, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29021, 0,29021, 0,29021, 0, 0,29021,29021, 0, 0, 0,29021, 0, 0,29021, 0,29021, 0,29021, 0,29021,29021, 29021,29022, 0, 0, 0, 0, 0, 0, 0, 0, 0,29022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29022, 0, 0, 0, 0, 0, 0, 29022, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29022, 0,29022, 0,29022, 0, 0,29022,29022, 0, 0, 0,29022,29022,29022, 29022, 0,29022, 0,29022, 0,29022,29022,29022,29023, 0,29023, 0, 0, 0, 0, 0, 0,29023, 0, 0,29023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29023, 0, 0, 0, 0, 0, 0, 29023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29023, 0,29023, 0,29023, 0, 0,29023,29023, 0, 0, 0,29023, 0, 0, 29023, 0,29023, 0,29023, 0,29023,29023,29023,29024, 0,29024, 0, 0, 0, 0, 0, 0,29024, 0, 0,29024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29024, 0, 0, 0, 0, 0, 0, 29024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29024, 0,29024, 0,29024, 0, 0,29024,29024, 0, 0, 0,29024, 0,29024, 29024, 0,29024, 0,29024, 0,29024,29024,29024,29027, 0, 0, 0, 0, 0, 0, 0, 0, 0,29027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29027, 0, 0, 0, 0, 0, 0,29027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29027,29027, 0,29027, 0,29027, 0, 0, 29027,29027, 0, 0, 0,29027, 0, 0,29027, 0, 29027, 0,29027, 0,29027,29027,29027,29028, 0, 0, 0, 0, 0, 0, 0, 0, 0,29028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29028, 0, 0, 0, 0, 0, 0,29028, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29028, 0,29028, 0,29028, 0, 0,29028,29028, 0, 0, 0,29028, 0, 0,29028, 0,29028, 0, 29028, 0,29028,29028,29028,29029, 0, 0, 0, 0, 0, 0, 0, 0, 0,29029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29029, 0, 0, 0, 0, 0, 0,29029, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29029, 0,29029, 0,29029, 0, 0,29029,29029, 0, 0, 0,29029, 0, 0,29029, 0,29029, 0,29029, 0, 29029,29029,29029,29030, 0, 0, 0, 0, 0, 0, 0, 0, 0,29030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29030, 0, 0, 0, 0, 0, 0,29030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29030, 0,29030, 0,29030, 0, 0,29030,29030, 0, 0, 0,29030, 0, 0,29030, 0,29030, 0,29030, 0,29030,29030, 29030,29031, 0, 0, 0, 0, 0, 0, 0, 0, 0,29031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29031, 0, 0, 0, 0, 0, 0, 29031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29031, 0,29031, 0,29031, 0, 0,29031,29031, 0, 0, 0,29031,29031,29031, 29031, 0,29031, 0,29031, 0,29031,29031,29031,29032, 0,29032, 0, 0, 0, 0, 0, 0,29032, 0, 0,29032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29032, 0, 0, 0, 0, 0, 0, 29032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29032, 0,29032, 0,29032, 0, 0,29032,29032, 0, 0, 0,29032, 0, 0, 29032, 0,29032, 0,29032, 0,29032,29032,29032,29033, 0,29033, 0, 0, 0, 0, 0, 0,29033, 0, 0,29033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29033, 0, 0, 0, 0, 0, 0, 29033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29033, 0,29033, 0,29033, 0, 0,29033,29033, 0, 0, 0,29033, 0,29033, 29033, 0,29033, 0,29033, 0,29033,29033,29033,29057, 29057, 0,29057,29057,29057,29057,29057,29057,29057, 0, 29057,29057,29057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29057,29057,29057,29057,29057,29057,29057, 0, 0, 0, 0, 0,29057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29057,29057,29057,29057,29058,29058, 0, 29058,29058,29058,29058,29058,29058,29058, 0,29058,29058, 29058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29058,29058,29058,29058,29058,29058,29058,29058, 0, 0, 0, 0,29058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29058,29058,29058,29058,29062,29062,29062,29062,29062, 29062,29062,29062,29062, 0, 0, 0, 0, 0, 0, 0,29062,29062,29062,29062,29062,29062, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29062,29062, 29062,29062,29062,29062,29071,29071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29071,29071,29071,29071, 29071,29071,29071,29071,29071, 0,29071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29071, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29071,29071,29085, 0, 0, 0, 0, 0, 0, 0, 0, 0,29085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29085, 0, 0, 0, 0, 0, 0, 0, 0,29085, 0, 0, 0, 0, 0, 0,29085, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29085, 0,29085, 0,29085, 0, 0,29085,29085, 0, 0, 0,29085, 0,29085,29085, 0,29085, 0,29085, 0,29085,29085, 29085,29086, 0, 0, 0, 0, 0, 0, 0, 0, 0,29086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29086, 0, 0, 0, 0, 0, 0, 29086, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29086, 0,29086, 0,29086, 0, 0,29086,29086, 0, 0, 0,29086, 0, 0, 29086, 0,29086, 0,29086, 0,29086,29086,29086,29087, 29087, 0, 0, 0, 0, 0, 0, 0, 0,29087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29087, 0,29087, 0, 0, 0, 0,29087, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29087, 0,29087, 0,29087, 0, 0, 29087,29087, 0, 0, 0,29087, 0, 0,29087, 0, 29087, 0,29087, 0,29087,29087,29087,29089, 0,29089, 0, 0, 0, 0, 0, 0,29089, 0, 0,29089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29089, 0, 0, 0, 0, 0, 0,29089, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29089, 0,29089, 0,29089, 0, 0, 29089,29089, 0, 0, 0,29089, 0,29089,29089, 0, 29089, 0,29089, 0,29089,29089,29089,29090, 0,29090, 0, 0, 0, 0, 0, 0,29090, 0, 0,29090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29090, 0, 0, 0, 0, 0, 0,29090, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29090, 0,29090, 0,29090, 0, 0, 29090,29090, 0, 0, 0,29090, 0, 0,29090, 0, 29090, 0,29090,29090,29090,29090,29090,29093, 0, 0, 0, 0, 0, 0, 0, 0, 0,29093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29093, 0, 0, 0, 0, 0, 0,29093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29093, 0,29093, 0,29093, 0, 0,29093,29093, 0, 0, 0,29093, 0, 0,29093, 0,29093, 0, 29093, 0,29093,29093,29093,29094, 0, 0, 0, 0, 0, 0, 0, 0, 0,29094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29094, 0, 0, 0, 0, 0, 0,29094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29094, 0,29094, 0,29094, 0, 0,29094,29094, 0, 0, 0,29094, 0,29094,29094, 0,29094, 0,29094, 0, 29094,29094,29094,29097, 0,29097, 0, 0, 0, 0, 0, 0,29097, 0, 0,29097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29097, 0, 0, 0, 0, 0, 0,29097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29097, 0,29097, 0,29097, 0, 0,29097,29097, 0, 0, 0,29097, 0,29097,29097, 0,29097, 0,29097, 0, 29097,29097,29097,29098, 0,29098, 0, 0, 0, 0, 0, 0,29098, 0, 0,29098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29098, 0, 0, 0, 0, 0, 0,29098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29098, 0,29098, 0,29098, 0, 0,29098,29098, 0, 0, 0,29098, 0, 0,29098, 0,29098, 0,29098,29098, 29098,29098,29098,29101, 0, 0, 0, 0, 0, 0, 0, 0, 0,29101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29101, 0, 0, 0, 0, 0, 0,29101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29101, 0,29101, 0,29101, 0, 0,29101,29101, 0, 0, 0,29101, 0, 0,29101, 0,29101, 0,29101, 0,29101,29101, 29101,29102, 0, 0, 0, 0, 0, 0, 0, 0, 0,29102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29102, 0, 0, 0, 0, 0, 0, 29102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29102, 0,29102, 0,29102, 0, 0,29102,29102, 0, 0, 0,29102, 0,29102, 29102, 0,29102, 0,29102, 0,29102,29102,29102,29105, 0,29105, 0, 0, 0, 0, 0, 0,29105, 0, 0,29105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29105, 0, 0, 0, 0, 0, 0, 29105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29105, 0,29105, 0,29105, 0, 0,29105,29105, 0, 0, 0,29105, 0,29105, 29105, 0,29105, 0,29105, 0,29105,29105,29105,29106, 0,29106, 0, 0, 0, 0, 0, 0,29106, 0, 0,29106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29106, 0, 0, 0, 0, 0, 0, 29106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29106, 0,29106, 0,29106, 0, 0,29106,29106, 0, 0, 0,29106, 0, 0, 29106, 0,29106, 0,29106,29106,29106,29106,29106,29131, 29131,29131,29131,29131,29131,29131,29131,29131, 0, 0, 0, 0, 0, 0, 0,29131,29131,29131,29131,29131, 29131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29131,29131,29131,29131,29131,29131,29153, 0, 0, 0, 0, 0, 0, 0, 0, 0,29153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29153, 0, 0, 0, 0, 0, 0,29153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29153, 0,29153, 0,29153, 0, 0,29153, 29153, 0, 0, 0,29153, 0, 0,29153, 0,29153, 0,29153, 0,29153,29153,29153,29154, 0, 0, 0, 0, 0, 0, 0, 0, 0,29154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29154, 0, 0, 0, 0, 0, 0,29154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29154, 0,29154, 0,29154, 0, 0,29154,29154, 0, 0, 0,29154, 0, 0,29154, 0,29154, 0,29154, 0,29154,29154,29154,29155, 0, 0, 0, 0, 0, 0, 0, 0, 0,29155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29155, 0, 0, 0, 0, 0, 0,29155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29155, 0, 29155, 0,29155, 0, 0,29155,29155, 0, 0, 0, 29155, 0, 0,29155, 0,29155, 0,29155, 0,29155, 29155,29155,29156, 0, 0, 0, 0, 0, 0, 0, 0, 0,29156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29156, 0, 0, 0, 0, 0, 0,29156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29156,29156, 0,29156, 0, 29156, 0, 0,29156,29156, 0, 0, 0,29156, 0, 0,29156, 0,29156, 0,29156, 0,29156,29156,29156, 29156,29157, 0,29157, 0, 0, 0, 0, 0, 0, 29157, 0, 0,29157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29157, 0, 0, 0, 0, 0, 0,29157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29157, 0,29157, 29157,29157, 0, 0,29157,29157, 0, 0, 0,29157, 0, 0,29157, 0,29157,29157,29157, 0,29157,29157, 29157,29158, 0,29158, 0, 0, 0, 0, 0, 0, 29158,29158, 0,29158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29158, 0, 0, 0, 0, 0, 0,29158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29158, 0,29158, 0,29158, 0, 0,29158,29158, 0, 0, 0,29158, 0, 0,29158, 0,29158, 0,29158, 0,29158,29158, 29158,29161, 0, 0, 0, 0, 0, 0, 0, 0, 0,29161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29161, 0, 0, 0, 0, 0, 0, 29161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29161, 0,29161, 0,29161, 0, 0,29161,29161, 0, 0, 0,29161, 0,29161, 29161, 0,29161, 0,29161, 0,29161,29161,29161,29162, 0, 0, 0, 0, 0, 0, 0, 0, 0,29162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29162, 0, 0, 0, 0, 0, 0,29162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29162, 0,29162, 0,29162, 0, 0, 29162,29162, 0, 0, 0,29162, 0, 0,29162, 0, 29162, 0,29162,29162,29162,29162,29162,29165, 0,29165, 0, 0, 0, 0, 0, 0,29165, 0, 0,29165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29165, 0, 0, 0, 0, 0, 0,29165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29165, 0,29165,29165,29165, 0, 0, 29165,29165, 0, 0, 0,29165, 0, 0,29165, 0, 29165,29165,29165, 0,29165,29165,29165,29166, 0,29166, 0, 0, 0, 0, 0, 0,29166,29166, 0,29166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29166, 0, 0, 0, 0, 0, 0,29166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29166, 0,29166, 0,29166, 0, 0, 29166,29166, 0, 0, 0,29166, 0, 0,29166, 0, 29166, 0,29166, 0,29166,29166,29166,29169, 0, 0, 0, 0, 0, 0, 0, 0, 0,29169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29169, 0, 0, 0, 0, 0, 0,29169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29169, 0,29169, 0,29169, 0, 0,29169,29169, 0, 0, 0,29169, 0,29169,29169, 0,29169, 0, 29169, 0,29169,29169,29169,29170, 0, 0, 0, 0, 0, 0, 0, 0, 0,29170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29170, 0, 0, 0, 0, 0, 0,29170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29170, 0,29170, 0,29170, 0, 0,29170,29170, 0, 0, 0,29170, 0, 0,29170, 0,29170, 0,29170,29170, 29170,29170,29170,29173, 0,29173, 0, 0, 0, 0, 0, 0,29173, 0, 0,29173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29173, 0, 0, 0, 0, 0, 0,29173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29173, 0,29173,29173,29173, 0, 0,29173,29173, 0, 0, 0,29173, 0, 0,29173, 0,29173,29173,29173, 0, 29173,29173,29173,29174, 0,29174, 0, 0, 0, 0, 0, 0,29174,29174, 0,29174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29174, 0, 0, 0, 0, 0, 0,29174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29174, 0,29174, 0,29174, 0, 0,29174,29174, 0, 0, 0,29174, 0, 0,29174, 0,29174, 0,29174, 0, 29174,29174,29174,29198,29198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29198,29198,29198,29198,29198, 29198,29198,29198,29198, 0,29198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29198,29215, 0, 0, 0, 0, 0, 0, 0, 0, 0,29215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29215, 0, 0, 0, 0, 0, 0, 0, 0,29215, 0, 0, 0, 0, 0, 0,29215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29215, 0,29215, 0, 29215, 0, 0,29215,29215, 0, 0, 0,29215, 0, 29215,29215, 0,29215, 0,29215, 0,29215,29215,29215, 29216, 0,29216, 0, 0, 0, 0, 0, 0,29216, 0, 0,29216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29216, 0, 0, 0, 0, 0, 0,29216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29216, 0,29216, 0, 29216, 0, 0,29216,29216, 0, 0, 0,29216, 0, 0,29216, 0,29216, 0,29216, 0,29216,29216,29216, 29217, 0,29217, 0, 0, 0, 0, 0, 0,29217, 0, 0,29217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29217, 0, 0, 0, 0, 0, 0,29217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29217, 0,29217,29217, 29217, 0, 0,29217,29217, 0, 0, 0,29217,29217, 0,29217, 0,29217, 0,29217, 0,29217,29217,29217, 29220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29220, 0, 0, 0, 0, 0, 0,29220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29220, 0,29220,29220,29220, 0, 0,29220,29220, 0, 0, 0,29220, 0, 0,29220, 0,29220,29220,29220, 0,29220,29220,29220,29221, 0, 0, 0, 0, 0, 0, 0,29221, 0,29221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29221, 0, 0, 0, 0, 0, 0,29221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29221, 0,29221, 0,29221, 0, 0,29221, 29221, 0, 0, 0,29221, 0, 0,29221, 0,29221, 0,29221, 0,29221,29221,29221,29224, 0,29224, 0, 0, 0, 0, 0, 0,29224, 0, 0,29224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29224, 0, 0, 0, 0, 0, 0,29224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29224, 0,29224, 0,29224, 0, 0,29224, 29224, 0, 0, 0,29224, 0, 0,29224, 0,29224, 0,29224, 0,29224,29224,29224,29225, 0,29225, 0, 0, 0, 0, 0, 0,29225, 0, 0,29225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29225, 0, 0, 0, 0, 0, 0,29225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29225, 0,29225,29225,29225, 0, 0,29225, 29225, 0, 0, 0,29225,29225, 0,29225, 0,29225, 0,29225, 0,29225,29225,29225,29228, 0, 0, 0, 0, 0, 0, 0, 0, 0,29228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29228, 0, 0, 0, 0, 0, 0,29228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29228, 0,29228,29228,29228, 0, 0,29228,29228, 0, 0, 0,29228, 0, 0,29228, 0,29228,29228,29228, 0,29228,29228,29228,29229, 0, 0, 0, 0, 0, 0, 0,29229, 0,29229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29229, 0, 0, 0, 0, 0, 0,29229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29229, 0, 29229, 0,29229, 0, 0,29229,29229, 0, 0, 0, 29229, 0, 0,29229, 0,29229, 0,29229, 0,29229, 29229,29229,29232, 0,29232, 0, 0, 0, 0, 0, 0,29232, 0, 0,29232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29232, 0, 0, 0, 0, 0, 0,29232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29232, 0, 29232, 0,29232, 0, 0,29232,29232, 0, 0, 0, 29232, 0, 0,29232, 0,29232, 0,29232, 0,29232, 29232,29232,29233, 0,29233, 0, 0, 0, 0, 0, 0,29233, 0, 0,29233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29233, 0, 0, 0, 0, 0, 0,29233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29233, 0, 29233,29233,29233, 0, 0,29233,29233, 0, 0, 0, 29233,29233, 0,29233, 0,29233, 0,29233, 0,29233, 29233,29233,29251,29251,29251,29251,29251,29251,29251,29251, 29251, 0, 0, 0, 0, 0, 0, 0,29251,29251, 29251,29251,29251,29251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29251,29251,29251,29251,29251, 29251,29254,29254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29254,29254,29254,29254,29254,29254,29254, 29254,29254, 0,29254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29254,29254, 29271, 0,29271, 0, 0, 0, 0, 0, 0,29271, 0, 0,29271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29271, 0, 0, 0, 0, 0, 0, 0, 0,29271, 0, 0, 0, 0, 0, 0,29271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29271, 0,29271, 0, 29271, 0, 0,29271,29271, 0, 0, 0,29271, 0, 29271,29271, 0,29271, 0,29271, 0,29271,29271,29271, 29272, 0,29272, 0, 0, 0, 0, 0, 0,29272, 0, 0,29272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29272, 0, 0, 0, 0, 0, 0,29272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29272, 0,29272, 0, 29272, 0, 0,29272,29272, 0, 0, 0,29272, 0, 0,29272, 0,29272, 0,29272, 0,29272,29272,29272, 29275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29275, 0, 0, 0, 0, 0, 0,29275, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29275, 0,29275, 0,29275, 0, 0,29275,29275, 0, 0, 0,29275, 0, 0,29275, 0,29275, 0,29275, 0,29275,29275,29275,29276, 0, 0, 0, 0, 0, 0, 0, 0, 0,29276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29276, 0, 0, 0, 0, 0, 0,29276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29276, 0,29276,29276,29276, 0, 0,29276, 29276, 0, 0, 0,29276,29276, 0,29276, 0,29276, 0,29276, 0,29276,29276,29276,29279, 0,29279, 0, 0, 0, 0, 0, 0,29279, 0, 0,29279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29279, 0, 0, 0, 0, 0, 0, 0, 0, 29279, 0, 0, 0, 0, 0, 0,29279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29279, 0,29279, 0,29279, 0, 0,29279, 29279, 0, 0, 0,29279, 0,29279,29279, 0,29279, 0,29279, 0,29279,29279,29279,29280, 0,29280, 0, 0, 0, 0, 0, 0,29280, 0, 0,29280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29280, 0, 0, 0, 0, 0, 0,29280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29280, 0,29280, 0,29280, 0, 0,29280, 29280, 0, 0, 0,29280, 0, 0,29280, 0,29280, 0,29280, 0,29280,29280,29280,29283, 0, 0, 0, 0, 0, 0, 0, 0, 0,29283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29283, 0, 0, 0, 0, 0, 0,29283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29283, 0,29283, 0,29283, 0, 0,29283,29283, 0, 0, 0,29283, 0, 0,29283, 0,29283, 0,29283, 0,29283,29283,29283,29284, 0, 0, 0, 0, 0, 0, 0, 0, 0,29284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29284, 0, 0, 0, 0, 0, 0,29284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29284, 0, 29284,29284,29284, 0, 0,29284,29284, 0, 0, 0, 29284,29284, 0,29284, 0,29284, 0,29284, 0,29284, 29284,29284,29287, 0,29287, 0, 0, 0, 0, 0, 0,29287, 0, 0,29287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29287, 0, 0, 0, 0, 0, 0, 0, 0,29287, 0, 0, 0, 0, 0, 0,29287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29287, 0, 29287, 0,29287, 0, 0,29287,29287, 0, 0, 0, 29287, 0,29287,29287, 0,29287, 0,29287, 0,29287, 29287,29287,29288, 0,29288, 0, 0, 0, 0, 0, 0,29288, 0, 0,29288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29288, 0, 0, 0, 0, 0, 0,29288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29288, 0, 29288, 0,29288, 0, 0,29288,29288, 0, 0, 0, 29288, 0, 0,29288, 0,29288, 0,29288, 0,29288, 29288,29288,29306,29306,29306,29306,29306,29306,29306,29306, 29306, 0, 0, 0, 0, 0, 0, 0,29306,29306, 29306,29306,29306,29306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29306,29306,29306,29306,29306, 29306,29327, 0,29327, 0, 0, 0, 0, 0, 0, 29327, 0, 0,29327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29327, 0, 0, 0, 0, 0, 0,29327, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29327, 0,29327, 0,29327, 0, 0,29327,29327, 0, 0, 0,29327, 0, 0,29327, 0,29327, 0,29327, 0,29327,29327, 29327,29328, 0,29328, 0, 0, 0, 0, 0, 0, 29328, 0, 0,29328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29328, 0, 0, 0, 0, 0, 0,29328, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29328, 0,29328, 0,29328, 0, 0,29328,29328, 0, 0, 0,29328, 0, 0,29328, 0,29328, 0,29328, 0,29328,29328, 29328,29331, 0, 0, 0, 0, 0, 0, 0, 0, 0,29331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29331, 0, 0, 0, 0, 0, 0, 0, 0,29331, 0, 0, 0, 0, 0, 0, 29331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29331, 0,29331, 0,29331, 0, 0,29331,29331, 0, 0, 0,29331, 0,29331, 29331, 0,29331, 0,29331, 0,29331,29331,29331,29332, 0, 0, 0, 0, 0, 0, 0, 0, 0,29332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29332, 0, 0, 0, 0, 0, 0,29332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29332, 0,29332, 0,29332, 0, 0, 29332,29332, 0, 0, 0,29332, 0, 0,29332, 0, 29332, 0,29332, 0,29332,29332,29332,29333,29333, 0, 0, 0, 0, 0, 0, 0, 0,29333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29333, 0,29333, 0, 0, 0, 0,29333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29333, 0,29333, 0,29333, 0, 0,29333,29333, 0, 0, 0,29333, 0, 0,29333, 0,29333, 0, 29333, 0,29333,29333,29333,29335, 0,29335, 0, 0, 0, 0, 0, 0,29335, 0, 0,29335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29335, 0, 0, 0, 0, 0, 0,29335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29335, 0,29335, 0,29335, 0, 0,29335,29335, 0, 0, 0,29335, 0, 0,29335, 0,29335, 0, 29335, 0,29335,29335,29335,29336, 0,29336, 0, 0, 0, 0, 0, 0,29336, 0, 0,29336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29336, 0, 0, 0, 0, 0, 0,29336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29336, 0,29336, 0,29336, 0, 0,29336,29336, 0, 0, 0,29336, 0, 0,29336, 0,29336, 0, 29336, 0,29336,29336,29336,29339, 0, 0, 0, 0, 0, 0, 0, 0, 0,29339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29339, 0, 0, 0, 0, 0, 0, 0, 0,29339, 0, 0, 0, 0, 0, 0,29339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29339, 0,29339, 0,29339, 0, 0,29339,29339, 0, 0, 0,29339, 0,29339,29339, 0,29339, 0,29339, 0, 29339,29339,29339,29340, 0, 0, 0, 0, 0, 0, 0, 0, 0,29340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29340, 0, 0, 0, 0, 0, 0,29340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29340, 0,29340, 0,29340, 0, 0,29340,29340, 0, 0, 0,29340, 0, 0,29340, 0,29340, 0,29340, 0,29340,29340, 29340,29341,29341, 0, 0, 0, 0, 0, 0, 0, 0,29341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29341, 0,29341, 0, 0, 0, 0, 29341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29341, 0,29341, 0,29341, 0, 0,29341,29341, 0, 0, 0,29341, 0, 0, 29341, 0,29341, 0,29341, 0,29341,29341,29341,29343, 0,29343, 0, 0, 0, 0, 0, 0,29343, 0, 0,29343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29343, 0, 0, 0, 0, 0, 0, 29343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29343, 0,29343, 0,29343, 0, 0,29343,29343, 0, 0, 0,29343, 0, 0, 29343, 0,29343, 0,29343, 0,29343,29343,29343,29344, 0,29344, 0, 0, 0, 0, 0, 0,29344, 0, 0,29344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29344, 0, 0, 0, 0, 0, 0, 29344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29344, 0,29344, 0,29344, 0, 0,29344,29344, 0, 0, 0,29344, 0, 0, 29344, 0,29344, 0,29344, 0,29344,29344,29344,29348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29348,29348,29348,29348,29348,29348,29348,29348,29348, 0, 0, 0, 0, 0, 0, 0,29348,29348,29348,29348, 29348,29348, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29348,29348,29348,29348,29348,29348,29366, 29366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29366,29366,29366,29366,29366,29366,29366,29366,29366, 0,29366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29366,29377, 0, 29377, 0, 0, 0, 0, 0, 0,29377, 0, 0, 29377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29377, 0, 0, 0, 0, 0, 0, 0, 0,29377, 0, 0, 0, 0, 0, 0,29377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29377, 0,29377, 0,29377, 0, 0,29377,29377, 0, 0, 0,29377, 0,29377,29377, 0,29377, 0,29377, 0,29377,29377,29377,29378, 0, 0, 0, 0, 0, 0, 0, 0, 0,29378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29378, 0, 0, 0, 0, 0, 0,29378, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29378, 0,29378, 0,29378, 0, 0,29378, 29378, 0, 0, 0,29378, 0, 0,29378, 0,29378, 0,29378, 0,29378,29378,29378,29379, 0, 0, 0, 0, 0, 0, 0, 0, 0,29379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29379, 0, 0, 0, 0, 0, 0,29379, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29379, 0,29379, 0,29379, 0, 0,29379,29379, 0, 0, 0,29379, 0, 0,29379, 0,29379, 0,29379, 0,29379,29379,29379,29380, 0, 0, 0, 0, 0, 0, 0, 0, 0,29380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29380, 0, 0, 0, 0, 0, 0,29380, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29380, 0, 29380, 0,29380, 0, 0,29380,29380, 0, 0, 0, 29380, 0, 0,29380, 0,29380, 0,29380, 0,29380, 29380,29380,29381, 0, 0, 0, 0, 0, 0, 0, 0, 0,29381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29381, 0, 0, 0, 0, 0, 0,29381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29381,29381, 0,29381, 0, 29381, 0, 0,29381,29381, 0, 0, 0,29381, 0, 0,29381, 0,29381, 0,29381, 0,29381,29381,29381, 29381,29382, 0,29382, 0, 0, 0, 0, 0, 0, 29382, 0, 0,29382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29382, 0, 0, 0, 0, 0, 0, 0, 0,29382, 0, 0, 0, 0, 0, 0,29382, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29382, 0,29382, 0,29382, 0, 0,29382,29382, 0, 0, 0,29382, 0,29382,29382, 0,29382, 0,29382, 0,29382,29382, 29382,29404,29404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29404,29404,29404,29404,29404,29404,29404, 29404,29404, 0,29404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29404,29404, 29426, 0, 0, 0,29426,29426, 0, 0, 0, 0, 0, 0,29426,29426,29426,29426,29426,29426,29426,29426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,29426,29841, 0,29841,29841,29841,29841,29841,29841, 29842, 0,29842,29842,29842,29842,29842,29842,29843, 0, 29843,29843,29843,29843,29843,29843,29844,29844,29844,29844, 29844,29844,29844,29844,29845, 0,29845,29845,29845,29845, 29845,29845,29846,29846,29846,29846,29846,29846,29846,29846, 29847,29847,29847,29847,29847,29847,29847,29847,29848,29848, 29848,29848,29848,29848,29848,29848,29849, 0,29849,29849, 29849,29849,29849,29849,29850, 0,29850,29850,29850,29850, 29850,29850,29851, 0,29851,29851,29851,29851,29851,29851, 29852, 0,29852,29852,29852,29852,29852,29852,29853, 0, 29853,29853,29853,29853,29853,29853,29854, 0,29854,29854, 29854,29854,29854,29854,29855, 0,29855,29855,29855,29855, 29855,29855,29856, 0,29856,29856,29856,29856,29856,29856, 29857, 0,29857,29857,29857,29857,29857,29857,29858, 0, 29858,29858,29858,29858,29858,29858,29859, 0,29859,29859, 29859,29859,29859,29859,29860, 0,29860,29860,29860,29860, 29860,29860,29861, 0,29861,29861,29861,29861,29861,29861, 29862, 0,29862,29862,29862,29862,29862,29862,29863, 0, 29863,29863,29863,29863,29863,29863,29864, 0,29864,29864, 29864,29864,29864,29864,29865, 0,29865,29865,29865,29865, 29865,29865,29866, 0,29866,29866,29866,29866,29866,29866, 29867, 0,29867,29867,29867,29867,29867,29867,29868, 0, 29868,29868,29868,29868,29868,29868,29869, 0,29869,29869, 29869,29869,29869,29869,29870, 0,29870,29870,29870,29870, 29870,29870,29871, 0,29871,29871,29871,29871,29871,29871, 29872, 0,29872,29872,29872,29872,29872,29872,29873, 0, 29873,29873,29873,29873,29873,29873,29874, 0,29874,29874, 29874,29874,29874,29874,29875, 0,29875,29875,29875,29875, 29875,29875,29876, 0,29876,29876,29876,29876,29876,29876, 29877, 0,29877,29877,29877,29877,29877,29877,29878, 0, 29878,29878,29878,29878,29878,29878,29879, 0,29879,29879, 29879,29879,29879,29879,29880, 0,29880,29880,29880,29880, 29880,29880,29881, 0,29881,29881,29881,29881,29881,29881, 29882, 0,29882,29882,29882,29882,29882,29882,29883, 0, 29883,29883,29883,29883,29883,29883,29884, 0,29884,29884, 29884,29884,29884,29884,29885, 0,29885,29885,29885,29885, 29885,29885,29886, 0,29886,29886,29886,29886,29886,29886, 29887, 0,29887,29887,29887,29887,29887,29887,29888, 0, 29888,29888,29888,29888,29888,29888,29889, 0,29889,29889, 29889,29889,29889,29889,29890, 0,29890,29890,29890,29890, 29890,29890,29891, 0,29891,29891,29891,29891,29891,29891, 29892, 0,29892,29892,29892,29892,29892,29892,29893, 0, 29893,29893,29893,29893,29893,29893,29894, 0,29894,29894, 29894,29894,29894,29894,29895, 0,29895,29895,29895,29895, 29895,29895,29896,29896,29896,29896,29896,29896,29896,29896, 29897, 0,29897,29897,29897,29897,29897,29897,29898, 0, 29898,29898,29898,29898,29898,29898,29899, 0,29899,29899, 29899,29899,29899,29899,29900, 0,29900,29900,29900,29900, 29900,29900,29901, 0,29901,29901,29901,29901,29901,29901, 29902, 0,29902,29902,29902,29902,29902,29902,29903, 0, 29903,29903,29903,29903,29903,29903,29904, 0,29904,29904, 29904,29904,29904,29904,29905, 0,29905,29905,29905,29905, 29905,29905,29906, 0,29906,29906,29906,29906,29906,29906, 29907, 0,29907,29907,29907,29907,29907,29907,29908, 0, 29908,29908,29908,29908,29908,29908,29909, 0,29909,29909, 29909,29909,29909,29909,29910,29910,29910,29910,29910,29910, 29910,29910,29911, 0,29911,29911,29911,29911,29911,29911, 29912, 0,29912,29912,29912,29912,29912,29912,29913,29913, 29913,29913,29913,29913,29913,29913,29914, 0,29914,29914, 29914,29914,29914,29914,29915, 0,29915,29915,29915,29915, 29915,29915,29916,29916,29916,29916,29916,29916,29916,29916, 29917, 0,29917,29917,29917,29917,29917,29917,29918, 0, 29918,29918,29918,29918,29918,29918,29919, 0,29919,29919, 29919,29919,29919,29919,29920, 0,29920,29920,29920,29920, 29920,29920,29921, 0,29921,29921,29921,29921,29921,29921, 29922, 0,29922,29922,29922,29922,29922,29922,29923, 0, 29923,29923,29923,29923,29923,29923,29924, 0,29924,29924, 29924,29924,29924,29924,29925, 0,29925,29925,29925,29925, 29925,29925,29926, 0,29926,29926,29926,29926,29926,29926, 29927,29927,29927,29927,29927,29927,29927,29927,29928, 0, 29928,29928,29928,29928,29928,29928,29929, 0,29929,29929, 29929,29929,29929,29929,29930, 0,29930,29930,29930,29930, 29930,29930,29931,29931,29931,29931,29931,29931,29931,29931, 29932,29932,29932,29932,29932,29932,29932,29933, 0,29933, 29933,29933,29933,29933,29933,29934, 0,29934,29934,29934, 29934,29934,29934,29935, 0,29935,29935,29935,29935,29935, 29935,29936, 0,29936,29936,29936,29936,29936,29936,29937, 0,29937,29937,29937,29937,29937,29937,29938, 0,29938, 29938,29938,29938,29938,29938,29939, 0,29939,29939,29939, 29939,29939,29939,29940, 0,29940,29940,29940,29940,29940, 29940,29941, 0,29941,29941,29941,29941,29941,29941,29942, 0,29942,29942,29942,29942,29942,29942,29943, 0,29943, 29943,29943,29943,29943,29943,29944, 0,29944,29944,29944, 29944,29944,29944,29945, 0,29945,29945,29945,29945,29945, 29945,29946, 0,29946,29946,29946,29946,29946,29946,29947, 29947,29947,29947,29947,29947,29947,29947,29948,29948,29948, 29948,29948,29948,29948,29948,29949, 0,29949,29949,29949, 29949,29949,29949,29950, 0,29950,29950,29950,29950,29950, 29950,29951, 0,29951,29951,29951,29951,29951,29951,29952, 0,29952,29952,29952,29952,29952,29952,29953, 0,29953, 29953,29953,29953,29953,29953,29954, 0,29954,29954,29954, 29954,29954,29954,29955, 0,29955,29955,29955,29955,29955, 29955,29956,29956,29956,29956,29956,29956,29956,29956,29957, 29957,29957,29957,29957,29957,29957,29957,29958, 0,29958, 29958,29958,29958,29958,29958,29959, 0,29959,29959,29959, 29959,29959,29959,29960,29960,29960,29960,29960,29960,29960, 29960,29961,29961,29961,29961,29961,29961,29961,29961,29962, 0,29962,29962,29962,29962,29962,29962,29963, 0,29963, 29963,29963,29963,29963,29963,29964, 0,29964,29964,29964, 29964,29964,29964,29965, 0,29965,29965,29965,29965,29965, 29965,29966, 0,29966,29966,29966,29966,29966,29966,29967, 0,29967,29967,29967,29967,29967,29967,29968, 0,29968, 29968,29968,29968,29968,29968,29969, 0,29969,29969,29969, 29969,29969,29969,29970, 0,29970,29970,29970,29970,29970, 29970,29971, 0,29971,29971,29971,29971,29971,29971,29972, 0,29972,29972,29972,29972,29972,29972,29973, 0,29973, 29973,29973,29973,29973,29973,29974, 0,29974,29974,29974, 29974,29974,29974,29975, 0,29975,29975,29975,29975,29975, 29975,29976,29976,29976,29976,29976,29976,29976,29976,29977, 29977,29977,29977,29977,29977,29977,29977,29978,29978,29978, 29978,29978,29978,29978,29978,29979, 0,29979,29979,29979, 29979,29979,29979,29980, 0,29980,29980,29980,29980,29980, 29980,29981, 0,29981,29981,29981,29981,29981,29981,29982, 0,29982,29982,29982,29982,29982,29982,29983, 0,29983, 29983,29983,29983,29983,29983,29984, 0,29984,29984,29984, 29984,29984,29984,29985, 0,29985,29985,29985,29985,29985, 29985,29986, 0,29986,29986,29986,29986,29986,29986,29987, 0,29987,29987,29987,29987,29987,29987,29988, 0,29988, 29988,29988,29988,29988,29988,29989, 0,29989,29989,29989, 29989,29989,29989,29990, 0,29990,29990,29990,29990,29990, 29990,29991, 0,29991,29991,29991,29991,29991,29991,29992, 29992,29992,29992,29992,29992,29992,29992,29993, 0,29993, 29993,29993,29993,29993,29993,29994, 0,29994,29994,29994, 29994,29994,29994,29995, 0,29995,29995,29995,29995,29995, 29995,29996, 0,29996,29996,29996,29996,29996,29996,29997, 0,29997,29997,29997,29997,29997,29997,29998, 0,29998, 29998,29998,29998,29998,29998,29999, 0,29999,29999,29999, 29999,29999,29999,30000, 0,30000,30000,30000,30000,30000, 30000,30001, 0,30001,30001,30001,30001,30001,30001,30002, 0,30002,30002,30002,30002,30002,30002,30003, 0,30003, 30003,30003,30003,30003,30003,30004, 0,30004,30004,30004, 30004,30004,30004,30005, 0,30005,30005,30005,30005,30005, 30005,30006, 0,30006,30006,30006,30006,30006,30006,30007, 0,30007,30007,30007,30007,30007,30007,30008, 0,30008, 30008,30008,30008,30008,30008,30009, 0,30009,30009,30009, 30009,30009,30009,30010, 0,30010,30010,30010,30010,30010, 30010,30011,30011,30011,30011,30011,30011,30011,30011,30012, 30012,30012,30012,30012,30012,30012,30012,30013, 0,30013, 30013,30013,30013,30013,30013,30014, 0,30014,30014,30014, 30014,30014,30014,30015, 0,30015,30015,30015,30015,30015, 30015,30016, 0,30016,30016,30016,30016,30016,30016,30017, 30017,30017,30017,30017,30017,30017,30017,30018,30018,30018, 30018,30018,30018,30018,30018,30019, 0,30019,30019,30019, 30019,30019,30019,30020, 0,30020,30020,30020,30020,30020, 30020,30021, 0,30021,30021,30021,30021,30021,30021,30022, 0,30022,30022,30022,30022,30022,30022,30023, 0,30023, 30023,30023,30023,30023,30023,30024, 0,30024,30024,30024, 30024,30024,30024,30025, 0,30025,30025,30025,30025,30025, 30025,30026, 0,30026,30026,30026,30026,30026,30026,30027, 0,30027,30027,30027,30027,30027,30027,30028, 0,30028, 30028,30028,30028,30028,30028,30029, 0,30029,30029,30029, 30029,30029,30029,30030, 0,30030,30030,30030,30030,30030, 30030,30031, 0,30031,30031,30031,30031,30031,30031,30032, 0,30032,30032,30032,30032,30032,30032,30033, 0,30033, 30033,30033,30033,30033,30033,30034, 0,30034,30034,30034, 30034,30034,30034,30035, 0,30035,30035,30035,30035,30035, 30035,30036, 0,30036,30036,30036,30036,30036,30036,30037, 30037,30037,30037,30037,30037,30037,30037,30038, 0,30038, 30038,30038,30038,30038,30038,30039, 0,30039,30039,30039, 30039,30039,30039,30040, 0,30040,30040,30040,30040,30040, 30040,30041,30041,30041,30041,30041,30041,30041,30041,30042, 0,30042,30042,30042,30042,30042,30042,30043, 0,30043, 30043,30043,30043,30043,30043,30044, 0,30044,30044,30044, 30044,30044,30044,30045, 0,30045,30045,30045,30045,30045, 30045,30046, 0,30046,30046,30046,30046,30046,30046,30047, 0,30047,30047,30047,30047,30047,30047,30048, 0,30048, 30048,30048,30048,30048,30048,30049, 0,30049,30049,30049, 30049,30049,30049,30050, 0,30050,30050,30050,30050,30050, 30050,30051, 0,30051,30051,30051,30051,30051,30051,30052, 0,30052,30052,30052,30052,30052,30052,30053, 0,30053, 30053,30053,30053,30053,30053,30054,30054,30054,30054,30054, 30054,30054,30054,30055, 0,30055,30055,30055,30055,30055, 30055,30056, 0,30056,30056,30056,30056,30056,30056,30057, 0,30057,30057,30057,30057,30057,30057,30058, 0,30058, 30058,30058,30058,30058,30058,30059, 0,30059,30059,30059, 30059,30059,30059,30060, 0,30060,30060,30060,30060,30060, 30060,30061, 0,30061,30061,30061,30061,30061,30061,30062, 0,30062,30062,30062,30062,30062,30062,30063, 0,30063, 30063,30063,30063,30063,30063,30064, 0,30064,30064,30064, 30064,30064,30064,30065, 0,30065,30065,30065,30065,30065, 30065,30066, 0,30066,30066,30066,30066,30066,30066,30067, 30067,30067,30067,30067,30067,30067,30067,30068, 0,30068, 30068,30068,30068,30068,30068,30069, 0,30069,30069,30069, 30069,30069,30069,30070, 0,30070,30070,30070,30070,30070, 30070,30071, 0,30071,30071,30071,30071,30071,30071,30072, 0,30072,30072,30072,30072,30072,30072,30073, 0,30073, 30073,30073,30073,30073,30073,30074, 0,30074,30074,30074, 30074,30074,30074,30075, 0,30075,30075,30075,30075,30075, 30075,30076, 0,30076,30076,30076,30076,30076,30076,30077, 0,30077,30077,30077,30077,30077,30077,30078, 0,30078, 30078,30078,30078,30078,30078,30079, 0,30079,30079,30079, 30079,30079,30079,30080, 0,30080,30080,30080,30080,30080, 30080,30081, 0,30081,30081,30081,30081,30081,30081,30082, 0,30082,30082,30082,30082,30082,30082,30083, 0,30083, 30083,30083,30083,30083,30083,30084, 0,30084,30084,30084, 30084,30084,30084,30085, 0,30085,30085,30085,30085,30085, 30085,30086,30086,30086,30086,30086,30086,30086,30086,30087, 30087,30087,30087,30087,30087,30087,30087,30088, 0,30088, 30088,30088,30088,30088,30088,30089, 0,30089,30089,30089, 30089,30089,30089,30090, 0,30090,30090,30090,30090,30090, 30090,30091,30091,30091,30091,30091,30091,30091,30091,30092, 30092,30092,30092,30092,30092,30092,30092,30093, 0,30093, 30093,30093,30093,30093,30093,30094, 0,30094,30094,30094, 30094,30094,30094,30095, 0,30095,30095,30095,30095,30095, 30095,30096, 0,30096,30096,30096,30096,30096,30096,30097, 0,30097,30097,30097,30097,30097,30097,30098, 0,30098, 30098,30098,30098,30098,30098,30099, 0,30099,30099,30099, 30099,30099,30099,30100, 0,30100,30100,30100,30100,30100, 30100,30101, 0,30101,30101,30101,30101,30101,30101,30102, 0,30102,30102,30102,30102,30102,30102,30103, 0,30103, 30103,30103,30103,30103,30103,30104, 0,30104,30104,30104, 30104,30104,30104,30105, 0,30105,30105,30105,30105,30105, 30105,30106, 0,30106,30106,30106,30106,30106,30106,30107, 0,30107,30107,30107,30107,30107,30107,30108, 0,30108, 30108,30108,30108,30108,30108,30109, 0,30109,30109,30109, 30109,30109,30109,30110, 0,30110,30110,30110,30110,30110, 30110,30111,30111,30111,30111,30111,30111,30111,30111,30112, 0,30112,30112,30112,30112,30112,30112,30113, 0,30113, 30113,30113,30113,30113,30113,30114,30114,30114,30114,30114, 30114,30114,30114,30115,30115,30115,30115,30115,30115,30115, 30115,30116, 0,30116,30116,30116,30116,30116,30116,30117, 0,30117,30117,30117,30117,30117,30117,30118, 0,30118, 30118,30118,30118,30118,30118,30119, 0,30119,30119,30119, 30119,30119,30119,30120, 0,30120,30120,30120,30120,30120, 30120,30121, 0,30121,30121,30121,30121,30121,30121,30122, 0,30122,30122,30122,30122,30122,30122,30123,30123,30123, 30123,30123,30123,30123,30123,30124, 0,30124,30124,30124, 30124,30124,30124,30125, 0,30125,30125,30125,30125,30125, 30125,30126, 0,30126,30126,30126,30126,30126,30126,30127, 0,30127,30127,30127,30127,30127,30127,30128, 0,30128, 30128,30128,30128,30128,30128,30129, 0,30129,30129,30129, 30129,30129,30129,30130, 0,30130,30130,30130,30130,30130, 30130,30131, 0,30131,30131,30131,30131,30131,30131,30132, 0,30132,30132,30132,30132,30132,30132,30133, 0,30133, 30133,30133,30133,30133,30133,30134, 0,30134,30134,30134, 30134,30134,30134,30135, 0,30135,30135,30135,30135,30135, 30135,30136, 0,30136,30136,30136,30136,30136,30136,30137, 30137,30137,30137,30137,30137,30137,30137,30138,30138,30138, 30138,30138,30138,30138,30138,30139,30139,30139,30139,30139, 30139,30139,30139,30140,30140,30140,30140,30140,30140,30140, 30140,30141, 0,30141,30141,30141,30141,30141,30141,30142, 0,30142,30142,30142,30142,30142,30142,30143, 0,30143, 30143,30143,30143,30143,30143,30144, 0,30144,30144,30144, 30144,30144,30144,30145, 0,30145,30145,30145,30145,30145, 30145,30146, 0,30146,30146,30146,30146,30146,30146,30147, 0,30147,30147,30147,30147,30147,30147,30148, 0,30148, 30148,30148,30148,30148,30148,30149, 0,30149,30149,30149, 30149,30149,30149,30150, 0,30150,30150,30150,30150,30150, 30150,30151, 0,30151,30151,30151,30151,30151,30151,30152, 0,30152,30152,30152,30152,30152,30152,30153, 0,30153, 30153,30153,30153,30153,30153,30154, 0,30154,30154,30154, 30154,30154,30154,30155, 0,30155,30155,30155,30155,30155, 30155,30156, 0,30156,30156,30156,30156,30156,30156,30157, 0,30157,30157,30157,30157,30157,30157,30158, 0,30158, 30158,30158,30158,30158,30158,30159, 0,30159,30159,30159, 30159,30159,30159,30160, 0,30160,30160,30160,30160,30160, 30160,30161, 0,30161,30161,30161,30161,30161,30161,30162, 0,30162,30162,30162,30162,30162,30162,30163, 0,30163, 30163,30163,30163,30163,30163,30164, 0,30164,30164,30164, 30164,30164,30164,30165, 0,30165,30165,30165,30165,30165, 30165,30166, 0,30166,30166,30166,30166,30166,30166,30167, 0,30167,30167,30167,30167,30167,30167,30168,30168,30168, 30168,30168,30168,30168,30168,30169,30169,30169,30169,30169, 30169,30169,30169,30170, 0,30170,30170,30170,30170,30170, 30170,30171, 0,30171,30171,30171,30171,30171,30171,30172, 0,30172,30172,30172,30172,30172,30172,30173, 0,30173, 30173,30173,30173,30173,30173,30174,30174,30174,30174,30174, 30174,30174,30174,30175,30175,30175,30175,30175,30175,30175, 30175,30176, 0,30176,30176,30176,30176,30176,30176,30177, 0,30177,30177,30177,30177,30177,30177,30178, 0,30178, 30178,30178,30178,30178,30178,30179, 0,30179,30179,30179, 30179,30179,30179,30180, 0,30180,30180,30180,30180,30180, 30180,30181, 0,30181,30181,30181,30181,30181,30181,30182, 0,30182,30182,30182,30182,30182,30182,30183, 0,30183, 30183,30183,30183,30183,30183,30184, 0,30184,30184,30184, 30184,30184,30184,30185, 0,30185,30185,30185,30185,30185, 30185,30186, 0,30186,30186,30186,30186,30186,30186,30187, 0,30187,30187,30187,30187,30187,30187,30188, 0,30188, 30188,30188,30188,30188,30188,30189, 0,30189,30189,30189, 30189,30189,30189,30190, 0,30190,30190,30190,30190,30190, 30190,30191, 0,30191,30191,30191,30191,30191,30191,30192, 0,30192,30192,30192,30192,30192,30192,30193, 0,30193, 30193,30193,30193,30193,30193,30194, 0,30194,30194,30194, 30194,30194,30194,30195,30195,30195,30195,30195,30195,30195, 30195,30196, 0,30196,30196,30196,30196,30196,30196,30197, 30197,30197,30197,30197,30197,30197,30197,30198,30198,30198, 30198,30198,30198,30198,30198,30199, 0,30199,30199,30199, 30199,30199,30199,30200, 0,30200,30200,30200,30200,30200, 30200,30201, 0,30201,30201,30201,30201,30201,30201,30202, 0,30202,30202,30202,30202,30202,30202,30203, 0,30203, 30203,30203,30203,30203,30203,30204, 0,30204,30204,30204, 30204,30204,30204,30205,30205,30205,30205,30205,30205,30205, 30205,30206, 0,30206,30206,30206,30206,30206,30206,30207, 0,30207,30207,30207,30207,30207,30207,30208,30208,30208, 30208,30208,30208,30208,30208,30209, 0,30209,30209,30209, 30209,30209,30209,30210, 0,30210,30210,30210,30210,30210, 30210,30211, 0,30211,30211,30211,30211,30211,30211,30212, 0,30212,30212,30212,30212,30212,30212,30213, 0,30213, 30213,30213,30213,30213,30213,30214, 0,30214,30214,30214, 30214,30214,30214,30215, 0,30215,30215,30215,30215,30215, 30215,30216, 0,30216,30216,30216,30216,30216,30216,30217, 0,30217,30217,30217,30217,30217,30217,30218,30218,30218, 30218,30218,30218,30218,30218,30219, 0,30219,30219,30219, 30219,30219,30219,30220, 0,30220,30220,30220,30220,30220, 30220,30221, 0,30221,30221,30221,30221,30221,30221,30222, 0,30222,30222,30222,30222,30222,30222,30223,30223,30223, 30223,30223,30223,30223,30223,30224,30224,30224,30224,30224, 30224,30224,30224,30225,30225,30225,30225,30225,30225,30225, 30225,30226, 0,30226,30226,30226,30226,30226,30226,30227, 0,30227,30227,30227,30227,30227,30227,30228, 0,30228, 30228,30228,30228,30228,30228,30229, 0,30229,30229,30229, 30229,30229,30229,30230, 0,30230,30230,30230,30230,30230, 30230,30231, 0,30231,30231,30231,30231,30231,30231,30232, 0,30232,30232,30232,30232,30232,30232,30233, 0,30233, 30233,30233,30233,30233,30233,30234, 0,30234,30234,30234, 30234,30234,30234,30235, 0,30235,30235,30235,30235,30235, 30235,30236, 0,30236,30236,30236,30236,30236,30236,30237, 0,30237,30237,30237,30237,30237,30237,30238, 0,30238, 30238,30238,30238,30238,30238,30239, 0,30239,30239,30239, 30239,30239,30239,30240, 0,30240,30240,30240,30240,30240, 30240,30241, 0,30241,30241,30241,30241,30241,30241,30242, 0,30242,30242,30242,30242,30242,30242,30243, 0,30243, 30243,30243,30243,30243,30243,30244, 0,30244,30244,30244, 30244,30244,30244,30245, 0,30245,30245,30245,30245,30245, 30245,30246, 0,30246,30246,30246,30246,30246,30246,30247, 0,30247,30247,30247,30247,30247,30247,30248, 0,30248, 30248,30248,30248,30248,30248,30249, 0,30249,30249,30249, 30249,30249,30249,30250, 0,30250,30250,30250,30250,30250, 30250,30251, 0,30251,30251,30251,30251,30251,30251,30252, 0,30252,30252,30252,30252,30252,30252,30253, 0,30253, 30253,30253,30253,30253,30253,30254, 0,30254,30254,30254, 30254,30254,30254,30255, 0,30255,30255,30255,30255,30255, 30255,30256, 0,30256,30256,30256,30256,30256,30256,30257, 30257,30257,30257,30257,30257,30257,30257,30258,30258,30258, 30258,30258,30258,30258,30258,30259, 0,30259,30259,30259, 30259,30259,30259,30260, 0,30260,30260,30260,30260,30260, 30260,30261, 0,30261,30261,30261,30261,30261,30261,30262, 30262,30262,30262,30262,30262,30262,30262,30263,30263,30263, 30263,30263,30263,30263,30263,30264, 0,30264,30264,30264, 30264,30264,30264,30265, 0,30265,30265,30265,30265,30265, 30265,30266, 0,30266,30266,30266,30266,30266,30266,30267, 0,30267,30267,30267,30267,30267,30267,30268, 0,30268, 30268,30268,30268,30268,30268,30269, 0,30269,30269,30269, 30269,30269,30269,30270, 0,30270,30270,30270,30270,30270, 30270,30271, 0,30271,30271,30271,30271,30271,30271,30272, 0,30272,30272,30272,30272,30272,30272,30273, 0,30273, 30273,30273,30273,30273,30273,30274, 0,30274,30274,30274, 30274,30274,30274,30275, 0,30275,30275,30275,30275,30275, 30275,30276, 0,30276,30276,30276,30276,30276,30276,30277, 0,30277,30277,30277,30277,30277,30277,30278, 0,30278, 30278,30278,30278,30278,30278,30279, 0,30279,30279,30279, 30279,30279,30279,30280,30280,30280,30280,30280,30280,30280, 30280,30281, 0,30281,30281,30281,30281,30281,30281,30282, 0,30282,30282,30282,30282,30282,30282,30283, 0,30283, 30283,30283,30283,30283,30283,30284,30284,30284,30284,30284, 30284,30284,30284,30285,30285,30285,30285,30285,30285,30285, 30285,30286,30286,30286,30286,30286,30286,30286,30286,30287, 0,30287,30287,30287,30287,30287,30287,30288, 0,30288, 30288,30288,30288,30288,30288,30289, 0,30289,30289,30289, 30289,30289,30289,30290, 0,30290,30290,30290,30290,30290, 30290,30291, 0,30291,30291,30291,30291,30291,30291,30292, 0,30292,30292,30292,30292,30292,30292,30293, 0,30293, 30293,30293,30293,30293,30293,30294, 0,30294,30294,30294, 30294,30294,30294,30295, 0,30295,30295,30295,30295,30295, 30295,30296, 0,30296,30296,30296,30296,30296,30296,30297, 0,30297,30297,30297,30297,30297,30297,30298,30298,30298, 30298,30298,30298,30298,30298,30299, 0,30299,30299,30299, 30299,30299,30299,30300, 0,30300,30300,30300,30300,30300, 30300,30301,30301,30301,30301,30301,30301,30301,30301,30302, 0,30302,30302,30302,30302,30302,30302,30303, 0,30303, 30303,30303,30303,30303,30303,30304, 0,30304,30304,30304, 30304,30304,30304,30305, 0,30305,30305,30305,30305,30305, 30305,30306, 0,30306,30306,30306,30306,30306,30306,30307, 0,30307,30307,30307,30307,30307,30307,30308, 0,30308, 30308,30308,30308,30308,30308,30309, 0,30309,30309,30309, 30309,30309,30309,30310, 0,30310,30310,30310,30310,30310, 30310,30311,30311,30311,30311,30311,30311,30311,30311,30312, 0,30312,30312,30312,30312,30312,30312,30313, 0,30313, 30313,30313,30313,30313,30313,30314, 0,30314,30314,30314, 30314,30314,30314,30315, 0,30315,30315,30315,30315,30315, 30315,30316,30316,30316,30316,30316,30316,30316,30316,30317, 30317,30317,30317,30317,30317,30317,30317,30318,30318,30318, 30318,30318,30318,30318,30318,30319, 0,30319,30319,30319, 30319,30319,30319,30320,30320,30320,30320,30320,30320,30320, 30320,30321, 0,30321,30321,30321,30321,30321,30321,30322, 0,30322,30322,30322,30322,30322,30322,30323, 0,30323, 30323,30323,30323,30323,30323,30324, 0,30324,30324,30324, 30324,30324,30324,30325, 0,30325,30325,30325,30325,30325, 30325,30326, 0,30326,30326,30326,30326,30326,30326,30327, 0,30327,30327,30327,30327,30327,30327,30328, 0,30328, 30328,30328,30328,30328,30328,30329, 0,30329,30329,30329, 30329,30329,30329,30330,30330,30330,30330,30330,30330,30330, 30330,30331, 0,30331,30331,30331,30331,30331,30331,30332, 0,30332,30332,30332,30332,30332,30332,30333, 0,30333, 30333,30333,30333,30333,30333,30334, 0,30334,30334,30334, 30334,30334,30334,30335, 0,30335,30335,30335,30335,30335, 30335,30336, 0,30336,30336,30336,30336,30336,30336,30337, 0,30337,30337,30337,30337,30337,30337,30338, 0,30338, 30338,30338,30338,30338,30338,30339, 0,30339,30339,30339, 30339,30339,30339,30340, 0,30340,30340,30340,30340,30340, 30340,30341, 0,30341,30341,30341,30341,30341,30341,30342, 0,30342,30342,30342,30342,30342,30342,30343, 0,30343, 30343,30343,30343,30343,30343,30344, 0,30344,30344,30344, 30344,30344,30344,30345, 0,30345,30345,30345,30345,30345, 30345,30346, 0,30346,30346,30346,30346,30346,30346,30347, 0,30347,30347,30347,30347,30347,30347,30348, 0,30348, 30348,30348,30348,30348,30348,30349, 0,30349,30349,30349, 30349,30349,30349,30350,30350,30350,30350,30350,30350,30350, 30350,30351, 0,30351,30351,30351,30351,30351,30351,30352, 0,30352,30352,30352,30352,30352,30352,30353, 0,30353, 30353,30353,30353,30353,30353,30354, 0,30354,30354,30354, 30354,30354,30354,30355, 0,30355,30355,30355,30355,30355, 30355,30356, 0,30356,30356,30356,30356,30356,30356,30357, 0,30357,30357,30357,30357,30357,30357,30358, 0,30358, 30358,30358,30358,30358,30358,30359, 0,30359,30359,30359, 30359,30359,30359,30360,30360,30360,30360,30360,30360,30360, 30360,30361,30361,30361,30361,30361,30361,30361,30361,30362, 0,30362,30362,30362,30362,30362,30362,30363, 0,30363, 30363,30363,30363,30363,30363,30364, 0,30364,30364,30364, 30364,30364,30364,30365, 0,30365,30365,30365,30365,30365, 30365,30366,30366,30366,30366,30366,30366,30366,30366,30367, 30367,30367,30367,30367,30367,30367,30367,30368, 0,30368, 30368,30368,30368,30368,30368,30369, 0,30369,30369,30369, 30369,30369,30369,30370, 0,30370,30370,30370,30370,30370, 30370,30371, 0,30371,30371,30371,30371,30371,30371,30372, 0,30372,30372,30372,30372,30372,30372,30373, 0,30373, 30373,30373,30373,30373,30373,30374, 0,30374,30374,30374, 30374,30374,30374,30375, 0,30375,30375,30375,30375,30375, 30375,30376, 0,30376,30376,30376,30376,30376,30376,30377, 0,30377,30377,30377,30377,30377,30377,30378, 0,30378, 30378,30378,30378,30378,30378,30379, 0,30379,30379,30379, 30379,30379,30379,30380, 0,30380,30380,30380,30380,30380, 30380,30381, 0,30381,30381,30381,30381,30381,30381,30382, 0,30382,30382,30382,30382,30382,30382,30383, 0,30383, 30383,30383,30383,30383,30383,30384, 0,30384,30384,30384, 30384,30384,30384,30385, 0,30385,30385,30385,30385,30385, 30385,30386, 0,30386,30386,30386,30386,30386,30386,30387, 30387,30387,30387,30387,30387,30387,30387,30388,30388,30388, 30388, 0,30388,30388,30388,30389, 0,30389,30389,30389, 30389,30389,30389,30390,30390,30390,30390,30390,30390,30390, 30390,30391, 0,30391,30391,30391,30391,30391,30391,30392, 0,30392,30392,30392,30392,30392,30392,30393,30393,30393, 30393,30393,30393,30393,30393,30394,30394,30394,30394,30394, 30394,30394,30394,30395,30395,30395,30395,30395,30395,30395, 30395,30396, 0,30396,30396,30396,30396,30396,30396,30397, 0,30397,30397,30397,30397,30397,30397,30398, 0,30398, 30398,30398,30398,30398,30398,30399, 0,30399,30399,30399, 30399,30399,30399,30400, 0,30400,30400,30400,30400,30400, 30400,30401, 0,30401,30401,30401,30401,30401,30401,30402, 0,30402,30402,30402,30402,30402,30402,30403, 0,30403, 30403,30403,30403,30403,30403,30404, 0,30404,30404,30404, 30404,30404,30404,30405, 0,30405,30405,30405,30405,30405, 30405,30406, 0,30406,30406,30406,30406,30406,30406,30407, 0,30407,30407,30407,30407,30407,30407,30408, 0,30408, 30408,30408,30408,30408,30408,30409,30409,30409,30409,30409, 30409,30409,30409,30410, 0,30410,30410,30410,30410,30410, 30410,30411, 0,30411,30411,30411,30411,30411,30411,30412, 30412,30412,30412,30412,30412,30412,30412,30413, 0,30413, 30413,30413,30413,30413,30413,30414, 0,30414,30414,30414, 30414,30414,30414,30415, 0,30415,30415,30415,30415,30415, 30415,30416, 0,30416,30416,30416,30416,30416,30416,30417, 0,30417,30417,30417,30417,30417,30417,30418, 0,30418, 30418,30418,30418,30418,30418,30419, 0,30419,30419,30419, 30419,30419,30419,30420, 0,30420,30420,30420,30420,30420, 30420,30421, 0,30421,30421,30421,30421,30421,30421,30422, 30422,30422,30422,30422,30422,30422,30422,30423, 0,30423, 30423,30423,30423,30423,30423,30424, 0,30424,30424,30424, 30424,30424,30424,30425,30425,30425,30425,30425,30425,30425, 30425,30426,30426,30426,30426,30426,30426,30426,30426,30427, 30427,30427,30427,30427,30427,30427,30427,30428, 0,30428, 30428,30428,30428,30428,30428,30429,30429,30429,30429,30429, 30429,30429,30429,30430, 0,30430,30430,30430,30430,30430, 30430,30431, 0,30431,30431,30431,30431,30431,30431,30432, 0,30432,30432,30432,30432,30432,30432,30433, 0,30433, 30433,30433,30433,30433,30433,30434, 0,30434,30434,30434, 30434,30434,30434,30435, 0,30435,30435,30435,30435,30435, 30435,30436, 0,30436,30436,30436,30436,30436,30436,30437, 0,30437,30437,30437,30437,30437,30437,30438, 0,30438, 30438,30438,30438,30438,30438,30439,30439,30439,30439,30439, 30439,30439,30439,30440, 0,30440,30440,30440,30440,30440, 30440,30441, 0,30441,30441,30441,30441,30441,30441,30442, 0,30442,30442,30442,30442,30442,30442,30443, 0,30443, 30443,30443,30443,30443,30443,30444, 0,30444,30444,30444, 30444,30444,30444,30445, 0,30445,30445,30445,30445,30445, 30445,30446, 0,30446,30446,30446,30446,30446,30446,30447, 0,30447,30447,30447,30447,30447,30447,30448, 0,30448, 30448,30448,30448,30448,30448,30449, 0,30449,30449,30449, 30449,30449,30449,30450, 0,30450,30450,30450,30450,30450, 30450,30451, 0,30451,30451,30451,30451,30451,30451,30452, 0,30452,30452,30452,30452,30452,30452,30453, 0,30453, 30453,30453,30453,30453,30453,30454, 0,30454,30454,30454, 30454,30454,30454,30455, 0,30455,30455,30455,30455,30455, 30455,30456, 0,30456,30456,30456,30456,30456,30456,30457, 0,30457,30457,30457,30457,30457,30457,30458, 0,30458, 30458,30458,30458,30458,30458,30459,30459,30459,30459,30459, 30459,30459,30459,30460,30460,30460,30460,30460,30460,30460, 30460,30461, 0,30461,30461,30461,30461,30461,30461,30462, 0,30462,30462,30462,30462,30462,30462,30463, 0,30463, 30463,30463,30463,30463,30463,30464, 0,30464,30464,30464, 30464,30464,30464,30465, 0,30465,30465,30465,30465,30465, 30465,30466, 0,30466,30466,30466,30466,30466,30466,30467, 0,30467,30467,30467,30467,30467,30467,30468,30468,30468, 30468,30468,30468,30468,30468,30469,30469,30469,30469,30469, 30469,30469,30469,30470, 0,30470,30470,30470,30470,30470, 30470,30471, 0,30471,30471,30471,30471,30471,30471,30472, 0,30472,30472,30472,30472,30472,30472,30473,30473,30473, 30473,30473,30473,30473,30473,30474,30474,30474,30474,30474, 30474,30474,30474,30475, 0,30475,30475,30475,30475,30475, 30475,30476, 0,30476,30476,30476,30476,30476,30476,30477, 0,30477,30477,30477,30477,30477,30477,30478, 0,30478, 30478,30478,30478,30478,30478,30479, 0,30479,30479,30479, 30479,30479,30479,30480, 0,30480,30480,30480,30480,30480, 30480,30481, 0,30481,30481,30481,30481,30481,30481,30482, 0,30482,30482,30482,30482,30482,30482,30483, 0,30483, 30483,30483,30483,30483,30483,30484, 0,30484,30484,30484, 30484,30484,30484,30485, 0,30485,30485,30485,30485,30485, 30485,30486, 0,30486,30486,30486,30486,30486,30486,30487, 0,30487,30487,30487,30487,30487,30487,30488, 0,30488, 30488,30488,30488,30488,30488,30489, 0,30489,30489,30489, 30489,30489,30489,30490, 0,30490,30490,30490,30490,30490, 30490,30491, 0,30491,30491,30491,30491,30491,30491,30492, 0,30492,30492,30492,30492,30492,30492,30493,30493,30493, 30493,30493,30493,30493,30493,30494,30494,30494,30494, 0, 30494,30494,30494,30495, 0,30495,30495,30495,30495,30495, 30495,30496,30496,30496,30496,30496,30496,30496,30496,30497, 0,30497,30497,30497,30497,30497,30497,30498,30498,30498, 30498,30498,30498,30498,30498,30499, 0, 0,30499,30500, 30500,30500,30500,30500,30500,30500,30500,30501,30501,30501, 30501,30501,30501,30501,30501,30502, 0,30502,30502,30502, 30502,30502,30502,30503, 0,30503,30503,30503,30503,30503, 30503,30504, 0,30504,30504,30504,30504,30504,30504,30505, 0,30505,30505,30505,30505,30505,30505,30506, 0,30506, 30506,30506,30506,30506,30506,30507, 0,30507,30507,30507, 30507,30507,30507,30508, 0,30508,30508,30508,30508,30508, 30508,30509, 0,30509,30509,30509,30509,30509,30509,30510, 0,30510,30510,30510,30510,30510,30510,30511, 0,30511, 30511,30511,30511,30511,30511,30512, 0,30512,30512,30512, 30512,30512,30512,30513, 0,30513,30513,30513,30513,30513, 30513,30514, 0,30514,30514,30514,30514,30514,30514,30515, 0,30515,30515,30515,30515,30515,30515,30516, 0,30516, 30516,30516,30516,30516,30516,30517, 0,30517,30517,30517, 30517,30517,30517,30518,30518,30518,30518,30518,30518,30518, 30518,30519, 0,30519,30519,30519,30519,30519,30519,30520, 30520,30520,30520,30520,30520,30520,30520,30521, 0,30521, 30521,30521,30521,30521,30521,30522, 0,30522,30522,30522, 30522,30522,30522,30523, 0,30523,30523,30523,30523,30523, 30523,30524, 0,30524,30524,30524,30524,30524,30524,30525, 0,30525,30525,30525,30525,30525,30525,30526, 0,30526, 30526,30526,30526,30526,30526,30527,30527,30527,30527,30527, 30527,30527,30527,30528, 0,30528,30528,30528,30528,30528, 30528,30529,30529,30529,30529,30529,30529,30529,30529,30530, 30530,30530,30530,30530,30530,30530,30530,30531,30531,30531, 30531,30531,30531,30531,30531,30532, 0,30532,30532,30532, 30532,30532,30532,30533,30533,30533,30533,30533,30533,30533, 30533,30534, 0,30534,30534,30534,30534,30534,30534,30535, 0,30535,30535,30535,30535,30535,30535,30536, 0,30536, 30536,30536,30536,30536,30536,30537, 0,30537,30537,30537, 30537,30537,30537,30538, 0,30538,30538,30538,30538,30538, 30538,30539, 0,30539,30539,30539,30539,30539,30539,30540, 0,30540,30540,30540,30540,30540,30540,30541, 0,30541, 30541,30541,30541,30541,30541,30542, 0,30542,30542,30542, 30542,30542,30542,30543,30543,30543,30543,30543,30543,30543, 30543,30544, 0,30544,30544,30544,30544,30544,30544,30545, 0,30545,30545,30545,30545,30545,30545,30546, 0,30546, 30546,30546,30546,30546,30546,30547,30547,30547,30547,30547, 30547,30547,30547,30548, 0,30548,30548,30548,30548,30548, 30548,30549, 0,30549,30549,30549,30549,30549,30549,30550, 0,30550,30550,30550,30550,30550,30550,30551, 0,30551, 30551,30551,30551,30551,30551,30552, 0,30552,30552,30552, 30552,30552,30552,30553, 0,30553,30553,30553,30553,30553, 30553,30554, 0,30554,30554,30554,30554,30554,30554,30555, 0,30555,30555,30555,30555,30555,30555,30556, 0,30556, 30556,30556,30556,30556,30556,30557,30557,30557,30557,30557, 30557,30557,30557,30558, 0,30558,30558,30558,30558,30558, 30558,30559, 0,30559,30559,30559,30559,30559,30559,30560, 0,30560,30560,30560,30560,30560,30560,30561, 0,30561, 30561,30561,30561,30561,30561,30562, 0,30562,30562,30562, 30562,30562,30562,30563,30563,30563,30563,30563,30563,30563, 30563,30564, 0,30564,30564,30564,30564,30564,30564,30565, 0,30565,30565,30565,30565,30565,30565,30566, 0,30566, 30566,30566,30566,30566,30566,30567, 0,30567,30567,30567, 30567,30567,30567,30568, 0,30568,30568,30568,30568,30568, 30568,30569, 0,30569,30569,30569,30569,30569,30569,30570, 30570,30570,30570,30570,30570,30570,30570,30571,30571,30571, 30571,30571,30571,30571,30571,30572, 0,30572,30572,30572, 30572,30572,30572,30573, 0,30573,30573,30573,30573,30573, 30573,30574, 0,30574,30574,30574,30574,30574,30574,30575, 0,30575,30575,30575,30575,30575,30575,30576,30576,30576, 30576,30576,30576,30576,30576,30577,30577,30577,30577,30577, 30577,30577,30577,30578, 0,30578,30578,30578,30578,30578, 30578,30579, 0,30579,30579,30579,30579,30579,30579,30580, 0,30580,30580,30580,30580,30580,30580,30581, 0,30581, 30581,30581,30581,30581,30581,30582, 0,30582,30582,30582, 30582,30582,30582,30583, 0,30583,30583,30583,30583,30583, 30583,30584, 0,30584,30584,30584,30584,30584,30584,30585, 0,30585,30585,30585,30585,30585,30585,30586,30586,30586, 30586,30586,30586,30586,30586,30587, 0,30587,30587,30587, 30587,30587,30587,30588, 0,30588,30588,30588,30588,30588, 30588,30589, 0,30589,30589,30589,30589,30589,30589,30590, 0,30590,30590,30590,30590,30590,30590,30591, 0,30591, 30591,30591,30591,30591,30591,30592, 0,30592,30592,30592, 30592,30592,30592,30593, 0,30593,30593,30593,30593,30593, 30593,30594, 0,30594,30594,30594,30594,30594,30594,30595, 0,30595,30595,30595,30595,30595,30595,30596, 0,30596, 30596,30596,30596,30596,30596,30597, 0,30597,30597,30597, 30597,30597,30597,30598, 0,30598,30598,30598,30598,30598, 30598,30599,30599,30599,30599, 0,30599,30599,30599,30600, 30600,30600,30600,30600,30600,30600,30600,30601, 0,30601, 30601,30601,30601,30601,30601,30602,30602,30602,30602,30602, 30602,30602,30602,30603,30603,30603,30603,30603,30603,30603, 30603,30604, 0,30604,30604,30604,30604,30604,30604,30605, 30605,30605,30605,30605,30605,30605,30605,30606,30606,30606, 30606,30606,30606,30606,30606,30607, 0,30607,30607,30607, 30607,30607,30607,30608, 0,30608,30608,30608,30608,30608, 30608,30609, 0,30609,30609,30609,30609,30609,30609,30610, 0,30610,30610,30610,30610,30610,30610,30611, 0,30611, 30611,30611,30611,30611,30611,30612, 0,30612,30612,30612, 30612,30612,30612,30613, 0,30613,30613,30613,30613,30613, 30613,30614, 0,30614,30614,30614,30614,30614,30614,30615, 0,30615,30615,30615,30615,30615,30615,30616, 0,30616, 30616,30616,30616,30616,30616,30617, 0,30617,30617,30617, 30617,30617,30617,30618, 0,30618,30618,30618,30618,30618, 30618,30619, 0,30619,30619,30619,30619,30619,30619,30620, 0,30620,30620,30620,30620,30620,30620,30621, 0,30621, 30621,30621,30621,30621,30621,30622, 0,30622,30622,30622, 30622,30622,30622,30623, 0,30623,30623,30623,30623,30623, 30623,30624, 0,30624,30624,30624,30624,30624,30624,30625, 0,30625,30625,30625,30625,30625,30625,30626, 0,30626, 30626,30626,30626,30626,30626,30627,30627,30627,30627,30627, 30627,30627,30627,30628, 0,30628,30628,30628,30628,30628, 30628,30629,30629,30629,30629,30629,30629,30629,30629,30630, 0,30630,30630,30630,30630,30630,30630,30631, 0,30631, 30631,30631,30631,30631,30631,30632, 0,30632,30632,30632, 30632,30632,30632,30633, 0,30633,30633,30633,30633,30633, 30633,30634, 0,30634,30634,30634,30634,30634,30634,30635, 0,30635,30635,30635,30635,30635,30635,30636, 0,30636, 30636,30636,30636,30636,30636,30637, 0,30637,30637,30637, 30637,30637,30637,30638,30638,30638,30638,30638,30638,30638, 30638,30639, 0,30639,30639,30639,30639,30639,30639,30640, 0,30640,30640,30640,30640,30640,30640,30641, 0,30641, 30641,30641,30641,30641,30641,30642,30642,30642,30642,30642, 30642,30642,30642,30643,30643,30643, 0,30643,30643,30643, 30643,30644,30644,30644,30644,30644,30644,30644,30644,30645, 30645,30645,30645,30645,30645,30645,30645,30646, 0,30646, 30646,30646,30646,30646,30646,30647,30647,30647,30647,30647, 30647,30647,30647,30648, 0,30648,30648,30648,30648,30648, 30648,30649, 0,30649,30649,30649,30649,30649,30649,30650, 0,30650,30650,30650,30650,30650,30650,30651, 0,30651, 30651,30651,30651,30651,30651,30652, 0,30652,30652,30652, 30652,30652,30652,30653, 0,30653,30653,30653,30653,30653, 30653,30654,30654,30654,30654,30654,30654,30654,30654,30655, 0,30655,30655,30655,30655,30655,30655,30656, 0,30656, 30656,30656,30656,30656,30656,30657, 0,30657,30657,30657, 30657,30657,30657,30658,30658,30658,30658,30658,30658,30658, 30658,30659, 0,30659,30659,30659,30659,30659,30659,30660, 0,30660,30660,30660,30660,30660,30660,30661, 0,30661, 30661,30661,30661,30661,30661,30662, 0,30662,30662,30662, 30662,30662,30662,30663, 0,30663,30663,30663,30663,30663, 30663,30664, 0,30664,30664,30664,30664,30664,30664,30665, 0,30665,30665,30665,30665,30665,30665,30666, 0,30666, 30666,30666,30666,30666,30666,30667, 0,30667,30667,30667, 30667,30667,30667,30668,30668,30668,30668,30668,30668,30668, 30668,30669, 0,30669,30669,30669,30669,30669,30669,30670, 0,30670,30670,30670,30670,30670,30670,30671, 0,30671, 30671,30671,30671,30671,30671,30672, 0,30672,30672,30672, 30672,30672,30672,30673, 0,30673,30673,30673,30673,30673, 30673,30674,30674,30674,30674,30674,30674,30674,30674,30675, 0,30675,30675,30675,30675,30675,30675,30676, 0,30676, 30676,30676,30676,30676,30676,30677, 0,30677,30677,30677, 30677,30677,30677,30678, 0,30678,30678,30678,30678,30678, 30678,30679, 0,30679,30679,30679,30679,30679,30679,30680, 0,30680,30680,30680,30680,30680,30680,30681,30681,30681, 30681,30681,30681,30681,30681,30682,30682,30682,30682,30682, 30682,30682,30682,30683, 0,30683,30683,30683,30683,30683, 30683,30684, 0,30684,30684,30684,30684,30684,30684,30685, 0,30685,30685,30685,30685,30685,30685,30686, 0,30686, 30686,30686,30686,30686,30686,30687,30687,30687,30687,30687, 30687,30687,30687,30688,30688,30688,30688,30688,30688,30688, 30688,30689, 0,30689,30689,30689,30689,30689,30689,30690, 0,30690,30690,30690,30690,30690,30690,30691, 0,30691, 30691,30691,30691,30691,30691,30692, 0,30692,30692,30692, 30692,30692,30692,30693, 0,30693,30693,30693,30693,30693, 30693,30694, 0,30694,30694,30694,30694,30694,30694,30695, 0,30695,30695,30695,30695,30695,30695,30696, 0,30696, 30696,30696,30696,30696,30696,30697, 0,30697,30697,30697, 30697,30697,30697,30698, 0,30698,30698,30698,30698,30698, 30698,30699, 0,30699,30699,30699,30699,30699,30699,30700, 0,30700,30700,30700,30700,30700,30700,30701, 0,30701, 30701,30701,30701,30701,30701,30702, 0,30702,30702,30702, 30702,30702,30702,30703, 0,30703,30703,30703,30703,30703, 30703,30704, 0,30704,30704,30704,30704,30704,30704,30705, 0,30705,30705,30705,30705,30705,30705,30706, 0,30706, 30706,30706,30706,30706,30706,30707, 0,30707,30707,30707, 30707,30707,30707,30708,30708,30708,30708,30708,30708,30708, 30708,30709,30709,30709,30709, 0,30709,30709,30709,30710, 0,30710,30710,30710,30710,30710,30710,30711,30711,30711, 30711,30711,30711,30711,30711,30712,30712,30712,30712,30712, 30712,30712,30712,30713, 0,30713,30713,30713,30713,30713, 30713,30714,30714,30714,30714,30714,30714,30714,30714,30715, 30715,30715,30715,30715,30715,30715,30715,30716, 0,30716, 30716,30716,30716,30716,30716,30717, 0,30717,30717,30717, 30717,30717,30717,30718, 0,30718,30718,30718,30718,30718, 30718,30719, 0,30719,30719,30719,30719,30719,30719,30720, 0,30720,30720,30720,30720,30720,30720,30721, 0,30721, 30721,30721,30721,30721,30721,30722, 0,30722,30722,30722, 30722,30722,30722,30723, 0,30723,30723,30723,30723,30723, 30723,30724, 0,30724,30724,30724,30724,30724,30724,30725, 0,30725,30725,30725,30725,30725,30725,30726, 0,30726, 30726,30726,30726,30726,30726,30727, 0,30727,30727,30727, 30727,30727,30727,30728, 0,30728,30728,30728,30728,30728, 30728,30729, 0,30729,30729,30729,30729,30729,30729,30730, 0,30730,30730,30730,30730,30730,30730,30731, 0,30731, 30731,30731,30731,30731,30731,30732, 0,30732,30732,30732, 30732,30732,30732,30733,30733,30733,30733,30733,30733,30733, 30733,30734, 0,30734,30734,30734,30734,30734,30734,30735, 30735,30735,30735,30735,30735,30735,30735,30736, 0,30736, 30736,30736,30736,30736,30736,30737, 0,30737,30737,30737, 30737,30737,30737,30738, 0,30738,30738,30738,30738,30738, 30738,30739, 0,30739,30739,30739,30739,30739,30739,30740, 0,30740,30740,30740,30740,30740,30740,30741, 0,30741, 30741,30741,30741,30741,30741,30742, 0,30742,30742,30742, 30742,30742,30742,30743, 0,30743,30743,30743,30743,30743, 30743,30744, 0,30744,30744,30744,30744,30744,30744,30745, 0,30745,30745,30745,30745,30745,30745,30746,30746,30746, 30746,30746,30746,30746,30746,30747, 0,30747,30747,30747, 30747,30747,30747,30748, 0,30748,30748,30748,30748,30748, 30748,30749,30749,30749,30749,30749,30749,30749,30749,30750, 30750,30750,30750,30750,30750,30750,30750,30751,30751,30751, 30751,30751,30751,30751,30751,30752,30752,30752,30752,30752, 30752,30752,30752,30753, 0,30753,30753,30753,30753,30753, 30753,30754,30754,30754,30754,30754,30754,30754,30754,30755, 0,30755,30755,30755,30755,30755,30755,30756, 0,30756, 30756,30756,30756,30756,30756,30757, 0,30757,30757,30757, 30757,30757,30757,30758, 0,30758,30758,30758,30758,30758, 30758,30759, 0,30759,30759,30759,30759,30759,30759,30760, 0,30760,30760,30760,30760,30760,30760,30761, 0,30761, 30761,30761,30761,30761,30761,30762, 0,30762,30762,30762, 30762,30762,30762,30763,30763,30763,30763,30763,30763,30763, 30763,30764, 0,30764,30764,30764,30764,30764,30764,30765, 0,30765,30765,30765,30765,30765,30765,30766, 0,30766, 30766,30766,30766,30766,30766,30767, 0,30767,30767,30767, 30767,30767,30767,30768,30768,30768,30768,30768,30768,30768, 30768,30769, 0,30769,30769,30769,30769,30769,30769,30770, 0,30770,30770,30770,30770,30770,30770,30771, 0,30771, 30771,30771,30771,30771,30771,30772, 0,30772,30772,30772, 30772,30772,30772,30773, 0,30773,30773,30773,30773,30773, 30773,30774, 0,30774,30774,30774,30774,30774,30774,30775, 0,30775,30775,30775,30775,30775,30775,30776, 0,30776, 30776,30776,30776,30776,30776,30777, 0,30777,30777,30777, 30777,30777,30777,30778,30778,30778,30778,30778,30778,30778, 30778,30779, 0,30779,30779,30779,30779,30779,30779,30780, 0,30780,30780,30780,30780,30780,30780,30781, 0,30781, 30781,30781,30781,30781,30781,30782, 0,30782,30782,30782, 30782,30782,30782,30783,30783,30783,30783,30783,30783,30783, 30783,30784, 0,30784,30784,30784,30784,30784,30784,30785, 0,30785,30785,30785,30785,30785,30785,30786, 0,30786, 30786,30786,30786,30786,30786,30787, 0,30787,30787,30787, 30787,30787,30787,30788, 0,30788,30788,30788,30788,30788, 30788,30789, 0,30789,30789,30789,30789,30789,30789,30790, 30790,30790,30790,30790,30790,30790,30790,30791,30791,30791, 30791,30791,30791,30791,30791,30792, 0,30792,30792,30792, 30792,30792,30792,30793, 0,30793,30793,30793,30793,30793, 30793,30794, 0,30794,30794,30794,30794,30794,30794,30795, 0,30795,30795,30795,30795,30795,30795,30796, 0,30796, 30796,30796,30796,30796,30796,30797,30797,30797,30797,30797, 30797,30797,30797,30798,30798,30798,30798,30798,30798,30798, 30798,30799, 0,30799,30799,30799,30799,30799,30799,30800, 0,30800,30800,30800,30800,30800,30800,30801, 0,30801, 30801,30801,30801,30801,30801,30802, 0,30802,30802,30802, 30802,30802,30802,30803, 0,30803,30803,30803,30803,30803, 30803,30804, 0,30804,30804,30804,30804,30804,30804,30805, 0,30805,30805,30805,30805,30805,30805,30806, 0,30806, 30806,30806,30806,30806,30806,30807, 0,30807,30807,30807, 30807,30807,30807,30808, 0,30808,30808,30808,30808,30808, 30808,30809, 0,30809,30809,30809,30809,30809,30809,30810, 0,30810,30810,30810,30810,30810,30810,30811, 0,30811, 30811,30811,30811,30811,30811,30812, 0,30812,30812,30812, 30812,30812,30812,30813, 0,30813,30813,30813,30813,30813, 30813,30814, 0,30814,30814,30814,30814,30814,30814,30815, 0,30815,30815,30815,30815,30815,30815,30816, 0,30816, 30816,30816,30816,30816,30816,30817, 0,30817,30817,30817, 30817,30817,30817,30818, 0,30818,30818,30818,30818,30818, 30818,30819,30819,30819,30819,30819,30819,30819,30819,30820, 30820,30820,30820, 0,30820,30820,30820,30821, 0,30821, 30821,30821,30821,30821,30821,30822,30822,30822,30822,30822, 30822,30822,30822,30823,30823,30823,30823,30823,30823,30823, 30823,30824, 0,30824,30824,30824,30824,30824,30824,30826, 0, 0,30826,30827,30827,30827,30827,30827,30827,30827, 30827,30828, 0,30828,30828,30828,30828,30828,30828,30829, 0,30829,30829,30829,30829,30829,30829,30830, 0,30830, 30830,30830,30830,30830,30830,30831, 0,30831,30831,30831, 30831,30831,30831,30832, 0,30832,30832,30832,30832,30832, 30832,30833, 0,30833,30833,30833,30833,30833,30833,30834, 0,30834,30834,30834,30834,30834,30834,30835, 0,30835, 30835,30835,30835,30835,30835,30836, 0,30836,30836,30836, 30836,30836,30836,30837, 0,30837,30837,30837,30837,30837, 30837,30838, 0,30838,30838,30838,30838,30838,30838,30839, 0,30839,30839,30839,30839,30839,30839,30840, 0,30840, 30840,30840,30840,30840,30840,30841, 0,30841,30841,30841, 30841,30841,30841,30842, 0,30842,30842,30842,30842,30842, 30842,30843, 0,30843,30843,30843,30843,30843,30843,30844, 0,30844,30844,30844,30844,30844,30844,30845, 0,30845, 30845,30845,30845,30845,30845,30846,30846,30846,30846,30846, 30846,30846,30846,30847, 0,30847,30847,30847,30847,30847, 30847,30848,30848,30848,30848,30848,30848,30848,30848,30849, 0,30849,30849,30849,30849,30849,30849,30850, 0,30850, 30850,30850,30850,30850,30850,30851, 0,30851,30851,30851, 30851,30851,30851,30852, 0,30852,30852,30852,30852,30852, 30852,30853, 0,30853,30853,30853,30853,30853,30853,30854, 0,30854,30854,30854,30854,30854,30854,30855, 0,30855, 30855,30855,30855,30855,30855,30856, 0,30856,30856,30856, 30856,30856,30856,30857, 0,30857,30857,30857,30857,30857, 30857,30858, 0,30858,30858,30858,30858,30858,30858,30859, 0,30859,30859,30859,30859,30859,30859,30860, 0,30860, 30860,30860,30860,30860,30860,30861, 0,30861,30861,30861, 30861,30861,30861,30862,30862,30862,30862,30862,30862,30862, 30862,30863, 0,30863,30863,30863,30863,30863,30863,30864, 0,30864,30864,30864,30864,30864,30864,30865, 0,30865, 30865,30865,30865,30865,30865,30866,30866,30866,30866,30866, 30866,30866,30866,30867,30867,30867,30867,30867,30867,30867, 30867,30868, 0,30868,30868,30868,30868,30868,30868,30869, 30869,30869,30869,30869,30869,30869,30869,30870, 0,30870, 30870,30870,30870,30870,30870,30871, 0,30871,30871,30871, 30871,30871,30871,30872, 0,30872,30872,30872,30872,30872, 30872,30873, 0,30873,30873,30873,30873,30873,30873,30874, 0,30874,30874,30874,30874,30874,30874,30875, 0,30875, 30875,30875,30875,30875,30875,30876, 0,30876,30876,30876, 30876,30876,30876,30877, 0,30877,30877,30877,30877,30877, 30877,30878, 0,30878,30878,30878,30878,30878,30878,30879, 0,30879,30879,30879,30879,30879,30879,30880,30880,30880, 30880,30880,30880,30880,30880,30881, 0,30881,30881,30881, 30881,30881,30881,30882, 0,30882,30882,30882,30882,30882, 30882,30883, 0,30883,30883,30883,30883,30883,30883,30884, 0,30884,30884,30884,30884,30884,30884,30885, 0,30885, 30885,30885,30885,30885,30885,30886,30886,30886,30886,30886, 30886,30886,30886,30887, 0,30887,30887,30887,30887,30887, 30887,30888, 0,30888,30888,30888,30888,30888,30888,30889, 0,30889,30889,30889,30889,30889,30889,30890, 0,30890, 30890,30890,30890,30890,30890,30891, 0,30891,30891,30891, 30891,30891,30891,30892, 0,30892,30892,30892,30892,30892, 30892,30893,30893,30893,30893,30893,30893,30893,30893,30894, 0,30894,30894,30894,30894,30894,30894,30895, 0,30895, 30895,30895,30895,30895,30895,30896, 0,30896,30896,30896, 30896,30896,30896,30897,30897,30897,30897,30897,30897,30897, 30897,30898, 0,30898,30898,30898,30898,30898,30898,30899, 0,30899,30899,30899,30899,30899,30899,30900, 0,30900, 30900,30900,30900,30900,30900,30901, 0,30901,30901,30901, 30901,30901,30901,30902, 0,30902,30902,30902,30902,30902, 30902,30903, 0,30903,30903,30903,30903,30903,30903,30904, 30904,30904,30904,30904,30904,30904,30904,30905,30905,30905, 30905,30905,30905,30905,30905,30906, 0,30906,30906,30906, 30906,30906,30906,30907, 0,30907,30907,30907,30907,30907, 30907,30908, 0,30908,30908,30908,30908,30908,30908,30909, 0,30909,30909,30909,30909,30909,30909,30910,30910,30910, 30910,30910,30910,30910,30910,30911,30911,30911,30911,30911, 30911,30911,30911,30912, 0,30912,30912,30912,30912,30912, 30912,30913, 0,30913,30913,30913,30913,30913,30913,30914, 0,30914,30914,30914,30914,30914,30914,30915, 0,30915, 30915,30915,30915,30915,30915,30916, 0,30916,30916,30916, 30916,30916,30916,30917, 0,30917,30917,30917,30917,30917, 30917,30918, 0,30918,30918,30918,30918,30918,30918,30919, 0,30919,30919,30919,30919,30919,30919,30920, 0,30920, 30920,30920,30920,30920,30920,30921, 0,30921,30921,30921, 30921,30921,30921,30922, 0,30922,30922,30922,30922,30922, 30922,30923, 0,30923,30923,30923,30923,30923,30923,30924, 0,30924,30924,30924,30924,30924,30924,30925, 0,30925, 30925,30925,30925,30925,30925,30926, 0,30926,30926,30926, 30926,30926,30926,30927, 0,30927,30927,30927,30927,30927, 30927,30928, 0,30928,30928,30928,30928,30928,30928,30929, 30929,30929,30929,30929,30929,30929,30929,30930,30930,30930, 30930, 0,30930,30930,30930,30931, 0,30931,30931,30931, 30931,30931,30931,30932,30932,30932,30932,30932,30932,30932, 30932,30933,30933,30933,30933,30933,30933,30933,30933,30934, 0,30934,30934,30934,30934,30934,30934,30935,30935,30935, 30935,30935,30935,30935,30935,30936, 0,30936,30936,30936, 30936,30936,30936,30937, 0,30937,30937,30937,30937,30937, 30937,30938, 0,30938,30938,30938,30938,30938,30938,30939, 0,30939,30939,30939,30939,30939,30939,30940, 0,30940, 30940,30940,30940,30940,30940,30941, 0,30941,30941,30941, 30941,30941,30941,30942, 0,30942,30942,30942,30942,30942, 30942,30943, 0,30943,30943,30943,30943,30943,30943,30944, 0,30944,30944,30944,30944,30944,30944,30945, 0,30945, 30945,30945,30945,30945,30945,30946, 0,30946,30946,30946, 30946,30946,30946,30947, 0,30947,30947,30947,30947,30947, 30947,30948, 0,30948,30948,30948,30948,30948,30948,30949, 0,30949,30949,30949,30949,30949,30949,30950, 0,30950, 30950,30950,30950,30950,30950,30951, 0,30951,30951,30951, 30951,30951,30951,30952, 0,30952,30952,30952,30952,30952, 30952,30953, 0,30953,30953,30953,30953,30953,30953,30954, 0,30954,30954,30954,30954,30954,30954,30955, 0,30955, 30955,30955,30955,30955,30955,30956, 0,30956,30956,30956, 30956,30956,30956,30957, 0,30957,30957,30957,30957,30957, 30957,30958, 0,30958,30958,30958,30958,30958,30958,30959, 30959,30959,30959,30959,30959,30959,30959,30960, 0,30960, 30960,30960,30960,30960,30960,30961, 0,30961,30961,30961, 30961,30961,30961,30962, 0,30962,30962,30962,30962,30962, 30962,30963, 0,30963,30963,30963,30963,30963,30963,30964, 0,30964,30964,30964,30964,30964,30964,30965, 0,30965, 30965,30965,30965,30965,30965,30966,30966,30966,30966,30966, 30966,30966,30966,30967, 0,30967,30967,30967,30967,30967, 30967,30968, 0,30968,30968,30968,30968,30968,30968,30969, 0,30969,30969,30969,30969,30969,30969,30970, 0,30970, 30970,30970,30970,30970,30970,30971, 0,30971,30971,30971, 30971,30971,30971,30972, 0,30972,30972,30972,30972,30972, 30972,30973, 0,30973,30973,30973,30973,30973,30973,30974, 0,30974,30974,30974,30974,30974,30974,30975, 0,30975, 30975,30975,30975,30975,30975,30976, 0,30976,30976,30976, 30976,30976,30976,30977, 0,30977,30977,30977,30977,30977, 30977,30978, 0,30978,30978,30978,30978,30978,30978,30979, 0,30979,30979,30979,30979,30979,30979,30980, 0,30980, 30980,30980,30980,30980,30980,30981, 0,30981,30981,30981, 30981,30981,30981,30982, 0,30982,30982,30982,30982,30982, 30982,30983, 0,30983,30983,30983,30983,30983,30983,30984, 0,30984,30984,30984,30984,30984,30984,30985, 0,30985, 30985,30985,30985,30985,30985,30986,30986,30986,30986,30986, 30986,30986,30986,30987, 0,30987,30987,30987,30987,30987, 30987,30988, 0,30988,30988,30988,30988,30988,30988,30989, 30989,30989,30989,30989,30989,30989,30989,30990,30990,30990, 30990,30990,30990,30990,30990,30991, 0,30991,30991,30991, 30991,30991,30991,30992,30992,30992,30992,30992,30992,30992, 30992,30993, 0,30993,30993,30993,30993,30993,30993,30994, 0,30994,30994,30994,30994,30994,30994,30995, 0,30995, 30995,30995,30995,30995,30995,30996, 0,30996,30996,30996, 30996,30996,30996,30997, 0,30997,30997,30997,30997,30997, 30997,30998, 0,30998,30998,30998,30998,30998,30998,30999, 0,30999,30999,30999,30999,30999,30999,31000, 0,31000, 31000,31000,31000,31000,31000,31001, 0,31001,31001,31001, 31001,31001,31001,31002, 0,31002,31002,31002,31002,31002, 31002,31003, 0,31003,31003,31003,31003,31003,31003,31004, 0,31004,31004,31004,31004,31004,31004,31005, 0,31005, 31005,31005,31005,31005,31005,31006,31006,31006,31006,31006, 31006,31006,31006,31007, 0,31007,31007,31007,31007,31007, 31007,31008, 0,31008,31008,31008,31008,31008,31008,31009, 0,31009,31009,31009,31009,31009,31009,31010, 0,31010, 31010,31010,31010,31010,31010,31011, 0,31011,31011,31011, 31011,31011,31011,31012,31012,31012,31012,31012,31012,31012, 31012,31013, 0,31013,31013,31013,31013,31013,31013,31014, 0,31014,31014,31014,31014,31014,31014,31015, 0,31015, 31015,31015,31015,31015,31015,31016, 0,31016,31016,31016, 31016,31016,31016,31017, 0,31017,31017,31017,31017,31017, 31017,31018, 0,31018,31018,31018,31018,31018,31018,31019, 0,31019,31019,31019,31019,31019,31019,31020, 0,31020, 31020,31020,31020,31020,31020,31021,31021,31021,31021,31021, 31021,31021,31021,31022, 0,31022,31022,31022,31022,31022, 31022,31023, 0,31023,31023,31023,31023,31023,31023,31024, 0,31024,31024,31024,31024,31024,31024,31025,31025,31025, 31025,31025,31025,31025,31025,31026, 0,31026,31026,31026, 31026,31026,31026,31027, 0,31027,31027,31027,31027,31027, 31027,31028, 0,31028,31028,31028,31028,31028,31028,31029, 0,31029,31029,31029,31029,31029,31029,31030, 0,31030, 31030,31030,31030,31030,31030,31031, 0,31031,31031,31031, 31031,31031,31031,31032,31032,31032,31032,31032,31032,31032, 31032,31033,31033,31033,31033,31033,31033,31033,31033,31034, 0,31034,31034,31034,31034,31034,31034,31035, 0,31035, 31035,31035,31035,31035,31035,31036, 0,31036,31036,31036, 31036,31036,31036,31037, 0,31037,31037,31037,31037,31037, 31037,31038, 0,31038,31038,31038,31038,31038,31038,31039, 31039,31039,31039,31039,31039,31039,31039,31040,31040,31040, 31040,31040,31040,31040,31040,31041,31041,31041,31041,31041, 31041,31041,31041,31042, 0,31042,31042,31042,31042,31042, 31042,31043, 0,31043,31043,31043,31043,31043,31043,31044, 0,31044,31044,31044,31044,31044,31044,31045, 0,31045, 31045,31045,31045,31045,31045,31046, 0,31046,31046,31046, 31046,31046,31046,31047, 0,31047,31047,31047,31047,31047, 31047,31048, 0,31048,31048,31048,31048,31048,31048,31049, 0,31049,31049,31049,31049,31049,31049,31050, 0,31050, 31050,31050,31050,31050,31050,31051, 0,31051,31051,31051, 31051,31051,31051,31052, 0,31052,31052,31052,31052,31052, 31052,31053, 0,31053,31053,31053,31053,31053,31053,31054, 0,31054,31054,31054,31054,31054,31054,31055, 0,31055, 31055,31055,31055,31055,31055,31056, 0,31056,31056,31056, 31056,31056,31056,31057, 0,31057,31057,31057,31057,31057, 31057,31058, 0,31058,31058,31058,31058,31058,31058,31059, 0,31059,31059,31059,31059,31059,31059,31060, 0,31060, 31060,31060,31060,31060,31060,31061, 0,31061,31061,31061, 31061,31061,31061,31062,31062,31062,31062,31062,31062,31062, 31062,31063,31063,31063,31063, 0,31063,31063,31063,31064, 0,31064,31064,31064,31064,31064,31064,31065, 0,31065, 31065,31065,31065,31065,31065,31066,31066,31066,31066,31066, 31066,31066,31066,31067,31067,31067,31067,31067,31067,31067, 31067,31068, 0,31068,31068,31068,31068,31068,31068,31069, 31069,31069,31069,31069,31069,31069,31069,31070, 0,31070, 31070,31070,31070,31070,31070,31071, 0,31071,31071,31071, 31071,31071,31071,31072, 0,31072,31072,31072,31072,31072, 31072,31073, 0,31073,31073,31073,31073,31073,31073,31074, 0,31074,31074,31074,31074,31074,31074,31075, 0,31075, 31075,31075,31075,31075,31075,31076, 0,31076,31076,31076, 31076,31076,31076,31077, 0,31077,31077,31077,31077,31077, 31077,31078, 0,31078,31078,31078,31078,31078,31078,31079, 0,31079,31079,31079,31079,31079,31079,31080, 0,31080, 31080,31080,31080,31080,31080,31081, 0,31081,31081,31081, 31081,31081,31081,31082, 0,31082,31082,31082,31082,31082, 31082,31083, 0,31083,31083,31083,31083,31083,31083,31084, 0,31084,31084,31084,31084,31084,31084,31085, 0,31085, 31085,31085,31085,31085,31085,31086, 0,31086,31086,31086, 31086,31086,31086,31087,31087,31087,31087,31087,31087,31087, 31087,31088, 0,31088,31088,31088,31088,31088,31088,31089, 0,31089,31089,31089,31089,31089,31089,31090, 0,31090, 31090,31090,31090,31090,31090,31091, 0,31091,31091,31091, 31091,31091,31091,31092, 0,31092,31092,31092,31092,31092, 31092,31093, 0,31093,31093,31093,31093,31093,31093,31094, 0,31094,31094,31094,31094,31094,31094,31095, 0,31095, 31095,31095,31095,31095,31095,31096, 0,31096,31096,31096, 31096,31096,31096,31097, 0,31097,31097,31097,31097,31097, 31097,31098, 0,31098,31098,31098,31098,31098,31098,31099, 0,31099,31099,31099,31099,31099,31099,31100, 0,31100, 31100,31100,31100,31100,31100,31101,31101,31101,31101,31101, 31101,31101,31101,31102, 0,31102,31102,31102,31102,31102, 31102,31103, 0,31103,31103,31103,31103,31103,31103,31104, 0,31104,31104,31104,31104,31104,31104,31105, 0,31105, 31105,31105,31105,31105,31105,31106, 0,31106,31106,31106, 31106,31106,31106,31107, 0,31107,31107,31107,31107,31107, 31107,31108, 0,31108,31108,31108,31108,31108,31108,31109, 0,31109,31109,31109,31109,31109,31109,31110, 0,31110, 31110,31110,31110,31110,31110,31111, 0,31111,31111,31111, 31111,31111,31111,31112, 0,31112,31112,31112,31112,31112, 31112,31113, 0,31113,31113,31113,31113,31113,31113,31114, 0,31114,31114,31114,31114,31114,31114,31115, 0,31115, 31115,31115,31115,31115,31115,31116,31116,31116,31116,31116, 31116,31116,31116,31117, 0,31117,31117,31117,31117,31117, 31117,31118, 0,31118,31118,31118,31118,31118,31118,31119, 31119,31119,31119,31119,31119,31119,31119,31120,31120,31120, 31120,31120,31120,31120,31120,31121, 0,31121,31121,31121, 31121,31121,31121,31122,31122,31122,31122,31122,31122,31122, 31122,31123, 0,31123,31123,31123,31123,31123,31123,31124, 0,31124,31124,31124,31124,31124,31124,31125, 0,31125, 31125,31125,31125,31125,31125,31126, 0,31126,31126,31126, 31126,31126,31126,31127, 0,31127,31127,31127,31127,31127, 31127,31128, 0,31128,31128,31128,31128,31128,31128,31129, 0,31129,31129,31129,31129,31129,31129,31130, 0,31130, 31130,31130,31130,31130,31130,31131, 0,31131,31131,31131, 31131,31131,31131,31132, 0,31132,31132,31132,31132,31132, 31132,31133, 0,31133,31133,31133,31133,31133,31133,31134, 0,31134,31134,31134,31134,31134,31134,31135, 0,31135, 31135,31135,31135,31135,31135,31136, 0,31136,31136,31136, 31136,31136,31136,31137, 0,31137,31137,31137,31137,31137, 31137,31138, 0,31138,31138,31138,31138,31138,31138,31139, 0,31139,31139,31139,31139,31139,31139,31140, 0,31140, 31140,31140,31140,31140,31140,31141, 0,31141,31141,31141, 31141,31141,31141,31142,31142,31142,31142,31142,31142,31142, 31142,31143, 0,31143,31143,31143,31143,31143,31143,31144, 0,31144,31144,31144,31144,31144,31144,31145, 0,31145, 31145,31145,31145,31145,31145,31146,31146,31146,31146,31146, 31146,31146,31146,31147, 0,31147,31147,31147,31147,31147, 31147,31148, 0,31148,31148,31148,31148,31148,31148,31149, 0,31149,31149,31149,31149,31149,31149,31150, 0,31150, 31150,31150,31150,31150,31150,31151, 0,31151,31151,31151, 31151,31151,31151,31152, 0,31152,31152,31152,31152,31152, 31152,31153, 0,31153,31153,31153,31153,31153,31153,31154, 0,31154,31154,31154,31154,31154,31154,31155, 0,31155, 31155,31155,31155,31155,31155,31156, 0,31156,31156,31156, 31156,31156,31156,31157,31157,31157,31157,31157,31157,31157, 31157,31158, 0,31158,31158,31158,31158,31158,31158,31159, 0,31159,31159,31159,31159,31159,31159,31160, 0,31160, 31160,31160,31160,31160,31160,31161, 0,31161,31161,31161, 31161,31161,31161,31162,31162,31162,31162,31162,31162,31162, 31162,31163, 0,31163,31163,31163,31163,31163,31163,31164, 0,31164,31164,31164,31164,31164,31164,31165, 0,31165, 31165,31165,31165,31165,31165,31166, 0,31166,31166,31166, 31166,31166,31166,31167, 0,31167,31167,31167,31167,31167, 31167,31168, 0,31168,31168,31168,31168,31168,31168,31169, 31169,31169,31169,31169,31169,31169,31169,31170,31170,31170, 31170,31170,31170,31170,31170,31171, 0,31171,31171,31171, 31171,31171,31171,31172, 0,31172,31172,31172,31172,31172, 31172,31173, 0,31173,31173,31173,31173,31173,31173,31174, 0,31174,31174,31174,31174,31174,31174,31175,31175,31175, 31175,31175,31175,31175,31175,31176,31176,31176,31176,31176, 31176,31176,31176,31177,31177,31177,31177,31177,31177,31177, 31177,31178,31178,31178,31178,31178,31178,31178,31178,31179, 0,31179,31179,31179,31179,31179,31179,31180, 0,31180, 31180,31180,31180,31180,31180,31181, 0,31181,31181,31181, 31181,31181,31181,31182, 0,31182,31182,31182,31182,31182, 31182,31183, 0,31183,31183,31183,31183,31183,31183,31184, 0,31184,31184,31184,31184,31184,31184,31185, 0,31185, 31185,31185,31185,31185,31185,31186, 0,31186,31186,31186, 31186,31186,31186,31187, 0,31187,31187,31187,31187,31187, 31187,31188, 0,31188,31188,31188,31188,31188,31188,31189, 0,31189,31189,31189,31189,31189,31189,31190, 0,31190, 31190,31190,31190,31190,31190,31191, 0,31191,31191,31191, 31191,31191,31191,31192, 0,31192,31192,31192,31192,31192, 31192,31193, 0,31193,31193,31193,31193,31193,31193,31194, 0,31194,31194,31194,31194,31194,31194,31195, 0,31195, 31195,31195,31195,31195,31195,31196, 0,31196,31196,31196, 31196,31196,31196,31197, 0,31197,31197,31197,31197,31197, 31197,31198,31198,31198,31198,31198,31198,31198,31198,31199, 31199,31199,31199, 0,31199,31199,31199,31200, 0,31200, 31200,31200,31200,31200,31200,31201, 0,31201,31201,31201, 31201,31201,31201,31202,31202,31202,31202,31202,31202,31202, 31202,31203,31203,31203,31203,31203,31203,31203,31203,31204, 0,31204,31204,31204,31204,31204,31204,31205,31205,31205, 31205,31205,31205,31205,31205,31206, 0,31206,31206,31206, 31206,31206,31206,31207, 0,31207,31207,31207,31207,31207, 31207,31208, 0,31208,31208,31208,31208,31208,31208,31209, 0,31209,31209,31209,31209,31209,31209,31210, 0,31210, 31210,31210,31210,31210,31210,31211, 0,31211,31211,31211, 31211,31211,31211,31212, 0,31212,31212,31212,31212,31212, 31212,31213, 0,31213,31213,31213,31213,31213,31213,31214, 0,31214,31214,31214,31214,31214,31214,31215, 0,31215, 31215,31215,31215,31215,31215,31216, 0,31216,31216,31216, 31216,31216,31216,31217, 0,31217,31217,31217,31217,31217, 31217,31218, 0,31218,31218,31218,31218,31218,31218,31219, 0,31219,31219,31219,31219,31219,31219,31220, 0,31220, 31220,31220,31220,31220,31220,31221, 0,31221,31221,31221, 31221,31221,31221,31222,31222,31222,31222,31222,31222,31222, 31222,31223, 0,31223,31223,31223,31223,31223,31223,31224, 0,31224,31224,31224,31224,31224,31224,31225, 0,31225, 31225,31225,31225,31225,31225,31226, 0,31226,31226,31226, 31226,31226,31226,31227, 0,31227,31227,31227,31227,31227, 31227,31228, 0,31228,31228,31228,31228,31228,31228,31229, 0,31229,31229,31229,31229,31229,31229,31230, 0,31230, 31230,31230,31230,31230,31230,31231, 0,31231,31231,31231, 31231,31231,31231,31232, 0,31232,31232,31232,31232,31232, 31232,31233, 0,31233,31233,31233,31233,31233,31233,31234, 0,31234,31234,31234,31234,31234,31234,31235, 0,31235, 31235,31235,31235,31235,31235,31236, 0,31236,31236,31236, 31236,31236,31236,31237, 0,31237,31237,31237,31237,31237, 31237,31238, 0,31238,31238,31238,31238,31238,31238,31239, 0,31239,31239,31239,31239,31239,31239,31240, 0,31240, 31240,31240,31240,31240,31240,31241, 0,31241,31241,31241, 31241,31241,31241,31242, 0,31242,31242,31242,31242,31242, 31242,31243, 0,31243,31243,31243,31243,31243,31243,31244, 0,31244,31244,31244,31244,31244,31244,31245, 0,31245, 31245,31245,31245,31245,31245,31246, 0,31246,31246,31246, 31246,31246,31246,31247, 0,31247,31247,31247,31247,31247, 31247,31248, 0,31248,31248,31248,31248,31248,31248,31249, 0,31249,31249,31249,31249,31249,31249,31250, 0,31250, 31250,31250,31250,31250,31250,31251, 0,31251,31251,31251, 31251,31251,31251,31252,31252,31252,31252,31252,31252,31252, 31252,31253, 0,31253,31253,31253,31253,31253,31253,31254, 0,31254,31254,31254,31254,31254,31254,31255, 0,31255, 31255,31255,31255,31255,31255,31256, 0,31256,31256,31256, 31256,31256,31256,31257, 0,31257,31257,31257,31257,31257, 31257,31258, 0,31258,31258,31258,31258,31258,31258,31259, 0,31259,31259,31259,31259,31259,31259,31260, 0,31260, 31260,31260,31260,31260,31260,31261, 0,31261,31261,31261, 31261,31261,31261,31262, 0,31262,31262,31262,31262,31262, 31262,31263, 0,31263,31263,31263,31263,31263,31263,31264, 0,31264,31264,31264,31264,31264,31264,31265, 0,31265, 31265,31265,31265,31265,31265,31266, 0,31266,31266,31266, 31266,31266,31266,31267, 0,31267,31267,31267,31267,31267, 31267,31268, 0,31268,31268,31268,31268,31268,31268,31269, 0,31269,31269,31269,31269,31269,31269,31270,31270,31270, 31270,31270,31270,31270,31270,31271, 0,31271,31271,31271, 31271,31271,31271,31272, 0,31272,31272,31272,31272,31272, 31272,31273,31273,31273,31273,31273,31273,31273,31273,31274, 31274,31274,31274,31274,31274,31274,31274,31275,31275,31275, 31275,31275,31275,31275,31275,31276, 0,31276,31276,31276, 31276,31276,31276,31277, 0,31277,31277,31277,31277,31277, 31277,31278, 0,31278,31278,31278,31278,31278,31278,31279, 0,31279,31279,31279,31279,31279,31279,31280, 0,31280, 31280,31280,31280,31280,31280,31281, 0,31281,31281,31281, 31281,31281,31281,31282, 0,31282,31282,31282,31282,31282, 31282,31283, 0,31283,31283,31283,31283,31283,31283,31284, 0,31284,31284,31284,31284,31284,31284,31285, 0,31285, 31285,31285,31285,31285,31285,31286, 0,31286,31286,31286, 31286,31286,31286,31287, 0,31287,31287,31287,31287,31287, 31287,31288, 0,31288,31288,31288,31288,31288,31288,31289, 0,31289,31289,31289,31289,31289,31289,31290,31290,31290, 31290,31290,31290,31290,31290,31291, 0,31291,31291,31291, 31291,31291,31291,31292, 0,31292,31292,31292,31292,31292, 31292,31293,31293,31293,31293,31293,31293,31293,31293,31294, 0,31294,31294,31294,31294,31294,31294,31295,31295,31295, 31295,31295,31295,31295,31295,31296, 0,31296,31296,31296, 31296,31296,31296,31297, 0,31297,31297,31297,31297,31297, 31297,31298, 0,31298,31298,31298,31298,31298,31298,31299, 0,31299,31299,31299,31299,31299,31299,31300, 0,31300, 31300,31300,31300,31300,31300,31301, 0,31301,31301,31301, 31301,31301,31301,31302, 0,31302,31302,31302,31302,31302, 31302,31303, 0,31303,31303,31303,31303,31303,31303,31304, 0,31304,31304,31304,31304,31304,31304,31305, 0,31305, 31305,31305,31305,31305,31305,31306, 0,31306,31306,31306, 31306,31306,31306,31307, 0,31307,31307,31307,31307,31307, 31307,31308, 0,31308,31308,31308,31308,31308,31308,31309, 31309,31309,31309,31309,31309,31309,31309,31310, 0,31310, 31310,31310,31310,31310,31310,31311, 0,31311,31311,31311, 31311,31311,31311,31312, 0,31312,31312,31312,31312,31312, 31312,31313, 0,31313,31313,31313,31313,31313,31313,31314, 0,31314,31314,31314,31314,31314,31314,31315,31315,31315, 31315,31315,31315,31315,31315,31316, 0,31316,31316,31316, 31316,31316,31316,31317, 0,31317,31317,31317,31317,31317, 31317,31318, 0,31318,31318,31318,31318,31318,31318,31319, 0,31319,31319,31319,31319,31319,31319,31320, 0,31320, 31320,31320,31320,31320,31320,31321, 0,31321,31321,31321, 31321,31321,31321,31322,31322,31322,31322,31322,31322,31322, 31322,31323,31323,31323,31323,31323,31323,31323,31323,31324, 0,31324,31324,31324,31324,31324,31324,31325, 0,31325, 31325,31325,31325,31325,31325,31326, 0,31326,31326,31326, 31326,31326,31326,31327, 0,31327,31327,31327,31327,31327, 31327,31328, 0,31328,31328,31328,31328,31328,31328,31329, 0,31329,31329,31329,31329,31329,31329,31330,31330,31330, 31330,31330,31330,31330,31330,31331,31331,31331,31331,31331, 31331,31331,31331,31332,31332,31332,31332,31332,31332,31332, 31332,31333,31333,31333,31333,31333,31333,31333,31333,31334, 0,31334,31334,31334,31334,31334,31334,31335, 0,31335, 31335,31335,31335,31335,31335,31336, 0,31336,31336,31336, 31336,31336,31336,31337, 0,31337,31337,31337,31337,31337, 31337,31338, 0,31338,31338,31338,31338,31338,31338,31339, 0,31339,31339,31339,31339,31339,31339,31340, 0,31340, 31340,31340,31340,31340,31340,31341, 0,31341,31341,31341, 31341,31341,31341,31342, 0,31342,31342,31342,31342,31342, 31342,31343, 0,31343,31343,31343,31343,31343,31343,31344, 0,31344,31344,31344,31344,31344,31344,31345, 0,31345, 31345,31345,31345,31345,31345,31346, 0,31346,31346,31346, 31346,31346,31346,31347, 0,31347,31347,31347,31347,31347, 31347,31348, 0,31348,31348,31348,31348,31348,31348,31349, 0,31349,31349,31349,31349,31349,31349,31350, 0,31350, 31350,31350,31350,31350,31350,31351, 0,31351,31351,31351, 31351,31351,31351,31352, 0,31352,31352,31352,31352,31352, 31352,31353, 0,31353,31353,31353,31353,31353,31353,31354, 0,31354,31354,31354,31354,31354,31354,31355,31355,31355, 31355,31355,31355,31355,31355,31356,31356,31356,31356, 0, 31356,31356,31356,31357, 0,31357,31357,31357,31357,31357, 31357,31358, 0,31358,31358,31358,31358,31358,31358,31359, 31359,31359,31359,31359,31359,31359,31359,31360,31360,31360, 31360,31360,31360,31360,31360,31361, 0,31361,31361,31361, 31361,31361,31361,31362,31362,31362,31362,31362,31362,31362, 31362,31363, 0,31363,31363,31363,31363,31363,31363,31364, 0,31364,31364,31364,31364,31364,31364,31365, 0,31365, 31365,31365,31365,31365,31365,31366, 0,31366,31366,31366, 31366,31366,31366,31367, 0,31367,31367,31367,31367,31367, 31367,31368, 0,31368,31368,31368,31368,31368,31368,31369, 0,31369,31369,31369,31369,31369,31369,31370, 0,31370, 31370,31370,31370,31370,31370,31371, 0,31371,31371,31371, 31371,31371,31371,31372, 0,31372,31372,31372,31372,31372, 31372,31373, 0,31373,31373,31373,31373,31373,31373,31374, 0,31374,31374,31374,31374,31374,31374,31375, 0,31375, 31375,31375,31375,31375,31375,31376, 0,31376,31376,31376, 31376,31376,31376,31377, 0,31377,31377,31377,31377,31377, 31377,31378, 0,31378,31378,31378,31378,31378,31378,31379, 0,31379,31379,31379,31379,31379,31379,31380, 0,31380, 31380,31380,31380,31380,31380,31381, 0,31381,31381,31381, 31381,31381,31381,31382, 0,31382,31382,31382,31382,31382, 31382,31383, 0,31383,31383,31383,31383,31383,31383,31384, 0,31384,31384,31384,31384,31384,31384,31385, 0,31385, 31385,31385,31385,31385,31385,31386, 0,31386,31386,31386, 31386,31386,31386,31387, 0,31387,31387,31387,31387,31387, 31387,31388, 0,31388,31388,31388,31388,31388,31388,31389, 0,31389,31389,31389,31389,31389,31389,31390, 0,31390, 31390,31390,31390,31390,31390,31391, 0,31391,31391,31391, 31391,31391,31391,31392,31392,31392,31392,31392,31392,31392, 31392,31393, 0,31393,31393,31393,31393,31393,31393,31394, 0,31394,31394,31394,31394,31394,31394,31395, 0,31395, 31395,31395,31395,31395,31395,31396, 0,31396,31396,31396, 31396,31396,31396,31397, 0,31397,31397,31397,31397,31397, 31397,31398, 0,31398,31398,31398,31398,31398,31398,31399, 0,31399,31399,31399,31399,31399,31399,31400, 0,31400, 31400,31400,31400,31400,31400,31401, 0,31401,31401,31401, 31401,31401,31401,31402, 0,31402,31402,31402,31402,31402, 31402,31403, 0,31403,31403,31403,31403,31403,31403,31404, 0,31404,31404,31404,31404,31404,31404,31405, 0,31405, 31405,31405,31405,31405,31405,31406, 0,31406,31406,31406, 31406,31406,31406,31407, 0,31407,31407,31407,31407,31407, 31407,31408, 0,31408,31408,31408,31408,31408,31408,31409, 0,31409,31409,31409,31409,31409,31409,31410, 0,31410, 31410,31410,31410,31410,31410,31411, 0,31411,31411,31411, 31411,31411,31411,31412, 0,31412,31412,31412,31412,31412, 31412,31413, 0,31413,31413,31413,31413,31413,31413,31414, 0,31414,31414,31414,31414,31414,31414,31415, 0,31415, 31415,31415,31415,31415,31415,31416, 0,31416,31416,31416, 31416,31416,31416,31417, 0,31417,31417,31417,31417,31417, 31417,31418, 0,31418,31418,31418,31418,31418,31418,31419, 0,31419,31419,31419,31419,31419,31419,31420, 0,31420, 31420,31420,31420,31420,31420,31421, 0,31421,31421,31421, 31421,31421,31421,31422, 0,31422,31422,31422,31422,31422, 31422,31423, 0,31423,31423,31423,31423,31423,31423,31424, 0,31424,31424,31424,31424,31424,31424,31425, 0,31425, 31425,31425,31425,31425,31425,31426, 0,31426,31426,31426, 31426,31426,31426,31427, 0,31427,31427,31427,31427,31427, 31427,31428, 0,31428,31428,31428,31428,31428,31428,31429, 0,31429,31429,31429,31429,31429,31429,31430, 0,31430, 31430,31430,31430,31430,31430,31431, 0,31431,31431,31431, 31431,31431,31431,31432, 0,31432,31432,31432,31432,31432, 31432,31433, 0,31433,31433,31433,31433,31433,31433,31434, 0,31434,31434,31434,31434,31434,31434,31435, 0,31435, 31435,31435,31435,31435,31435,31436, 0,31436,31436,31436, 31436,31436,31436,31437, 0,31437,31437,31437,31437,31437, 31437,31438, 0,31438,31438,31438,31438,31438,31438,31439, 31439,31439,31439,31439,31439,31439,31439,31440, 0,31440, 31440,31440,31440,31440,31440,31441, 0,31441,31441,31441, 31441,31441,31441,31442, 0,31442,31442,31442,31442,31442, 31442,31443, 0,31443,31443,31443,31443,31443,31443,31444, 0,31444,31444,31444,31444,31444,31444,31445, 0,31445, 31445,31445,31445,31445,31445,31446, 0,31446,31446,31446, 31446,31446,31446,31447, 0,31447,31447,31447,31447,31447, 31447,31448, 0,31448,31448,31448,31448,31448,31448,31449, 0,31449,31449,31449,31449,31449,31449,31450, 0,31450, 31450,31450,31450,31450,31450,31451, 0,31451,31451,31451, 31451,31451,31451,31452, 0,31452,31452,31452,31452,31452, 31452,31453, 0,31453,31453,31453,31453,31453,31453,31454, 0,31454,31454,31454,31454,31454,31454,31455, 0,31455, 31455,31455,31455,31455,31455,31456, 0,31456,31456,31456, 31456,31456,31456,31457, 0,31457,31457,31457,31457,31457, 31457,31458, 0,31458,31458,31458,31458,31458,31458,31459, 0,31459,31459,31459,31459,31459,31459,31460, 0,31460, 31460,31460,31460,31460,31460,31461,31461,31461,31461,31461, 31461,31461,31461,31462, 0,31462,31462,31462,31462,31462, 31462,31463, 0,31463,31463,31463,31463,31463,31463,31464, 31464,31464,31464,31464,31464,31464,31464,31465,31465,31465, 31465,31465,31465,31465,31465,31466,31466,31466,31466,31466, 31466,31466,31466,31467, 0,31467,31467,31467,31467,31467, 31467,31468, 0,31468,31468,31468,31468,31468,31468,31469, 0,31469,31469,31469,31469,31469,31469,31470, 0,31470, 31470,31470,31470,31470,31470,31471, 0,31471,31471,31471, 31471,31471,31471,31472, 0,31472,31472,31472,31472,31472, 31472,31473, 0,31473,31473,31473,31473,31473,31473,31474, 0,31474,31474,31474,31474,31474,31474,31475, 0,31475, 31475,31475,31475,31475,31475,31476, 0,31476,31476,31476, 31476,31476,31476,31477, 0,31477,31477,31477,31477,31477, 31477,31478, 0,31478,31478,31478,31478,31478,31478,31479, 0,31479,31479,31479,31479,31479,31479,31480, 0,31480, 31480,31480,31480,31480,31480,31481, 0,31481,31481,31481, 31481,31481,31481,31482, 0,31482,31482,31482,31482,31482, 31482,31483, 0,31483,31483,31483,31483,31483,31483,31484, 31484,31484,31484,31484,31484,31484,31484,31485, 0,31485, 31485,31485,31485,31485,31485,31486, 0,31486,31486,31486, 31486,31486,31486,31487,31487,31487,31487,31487,31487,31487, 31487,31488,31488,31488,31488,31488,31488,31488,31488,31489, 31489,31489,31489,31489,31489,31489,31489,31490, 0,31490, 31490,31490,31490,31490,31490,31491,31491,31491,31491,31491, 31491,31491,31491,31492, 0,31492,31492,31492,31492,31492, 31492,31493, 0,31493,31493,31493,31493,31493,31493,31494, 0,31494,31494,31494,31494,31494,31494,31495, 0,31495, 31495,31495,31495,31495,31495,31496, 0,31496,31496,31496, 31496,31496,31496,31497, 0,31497,31497,31497,31497,31497, 31497,31498, 0,31498,31498,31498,31498,31498,31498,31499, 0,31499,31499,31499,31499,31499,31499,31500, 0,31500, 31500,31500,31500,31500,31500,31501, 0,31501,31501,31501, 31501,31501,31501,31502, 0,31502,31502,31502,31502,31502, 31502,31503, 0,31503,31503,31503,31503,31503,31503,31504, 0,31504,31504,31504,31504,31504,31504,31505, 0,31505, 31505,31505,31505,31505,31505,31506, 0,31506,31506,31506, 31506,31506,31506,31507, 0,31507,31507,31507,31507,31507, 31507,31508, 0,31508,31508,31508,31508,31508,31508,31509, 0,31509,31509,31509,31509,31509,31509,31510, 0,31510, 31510,31510,31510,31510,31510,31511,31511,31511,31511,31511, 31511,31511,31511,31512, 0,31512,31512,31512,31512,31512, 31512,31513, 0,31513,31513,31513,31513,31513,31513,31514, 0,31514,31514,31514,31514,31514,31514,31515, 0,31515, 31515,31515,31515,31515,31515,31516,31516,31516,31516,31516, 31516,31516,31516,31517, 0,31517,31517,31517,31517,31517, 31517,31518, 0,31518,31518,31518,31518,31518,31518,31519, 0,31519,31519,31519,31519,31519,31519,31520, 0,31520, 31520,31520,31520,31520,31520,31521, 0,31521,31521,31521, 31521,31521,31521,31522, 0,31522,31522,31522,31522,31522, 31522,31523,31523,31523,31523,31523,31523,31523,31523,31524, 31524,31524,31524,31524,31524,31524,31524,31525, 0,31525, 31525,31525,31525,31525,31525,31526, 0,31526,31526,31526, 31526,31526,31526,31527, 0,31527,31527,31527,31527,31527, 31527,31528, 0,31528,31528,31528,31528,31528,31528,31529, 0,31529,31529,31529,31529,31529,31529,31530, 0,31530, 31530,31530,31530,31530,31530,31531,31531,31531,31531,31531, 31531,31531,31531,31532,31532,31532,31532,31532,31532,31532, 31532,31533,31533,31533,31533,31533,31533,31533,31533,31534, 31534,31534,31534,31534,31534,31534,31534,31535, 0,31535, 31535,31535,31535,31535,31535,31536, 0,31536,31536,31536, 31536,31536,31536,31537, 0,31537,31537,31537,31537,31537, 31537,31538, 0,31538,31538,31538,31538,31538,31538,31539, 0,31539,31539,31539,31539,31539,31539,31540, 0,31540, 31540,31540,31540,31540,31540,31541, 0,31541,31541,31541, 31541,31541,31541,31542, 0,31542,31542,31542,31542,31542, 31542,31543, 0,31543,31543,31543,31543,31543,31543,31544, 0,31544,31544,31544,31544,31544,31544,31545, 0,31545, 31545,31545,31545,31545,31545,31546, 0,31546,31546,31546, 31546,31546,31546,31547, 0,31547,31547,31547,31547,31547, 31547,31548, 0,31548,31548,31548,31548,31548,31548,31549, 0,31549,31549,31549,31549,31549,31549,31550, 0,31550, 31550,31550,31550,31550,31550,31551, 0,31551,31551,31551, 31551,31551,31551,31552, 0,31552,31552,31552,31552,31552, 31552,31553, 0,31553,31553,31553,31553,31553,31553,31554, 0,31554,31554,31554,31554,31554,31554,31555,31555,31555, 31555,31555,31555,31555,31555,31556,31556,31556,31556, 0, 31556,31556,31556,31557, 0,31557,31557,31557,31557,31557, 31557,31558, 0,31558,31558,31558,31558,31558,31558,31559, 0,31559,31559,31559,31559,31559,31559,31560,31560,31560, 31560,31560,31560,31560,31560,31561,31561,31561,31561,31561, 31561,31561,31561,31562, 0,31562,31562,31562,31562,31562, 31562,31563,31563,31563,31563,31563,31563,31563,31563,31564, 0,31564,31564,31564,31564,31564,31564,31565,31565,31565, 31565,31565,31565,31565,31565,31566, 0,31566,31566,31566, 31566,31566,31566,31567, 0,31567,31567,31567,31567,31567, 31567,31568, 0,31568,31568,31568,31568,31568,31568,31569, 0,31569,31569,31569,31569,31569,31569,31570, 0,31570, 31570,31570,31570,31570,31570,31571, 0,31571,31571,31571, 31571,31571,31571,31572, 0,31572,31572,31572,31572,31572, 31572,31573, 0,31573,31573,31573,31573,31573,31573,31574, 0,31574,31574,31574,31574,31574,31574,31575, 0,31575, 31575,31575,31575,31575,31575,31576, 0,31576,31576,31576, 31576,31576,31576,31577, 0,31577,31577,31577,31577,31577, 31577,31578, 0,31578,31578,31578,31578,31578,31578,31579, 0,31579,31579,31579,31579,31579,31579,31580, 0,31580, 31580,31580,31580,31580,31580,31581, 0,31581,31581,31581, 31581,31581,31581,31582, 0,31582,31582,31582,31582,31582, 31582,31583, 0,31583,31583,31583,31583,31583,31583,31584, 0,31584,31584,31584,31584,31584,31584,31585, 0,31585, 31585,31585,31585,31585,31585,31586, 0,31586,31586,31586, 31586,31586,31586,31587, 0,31587,31587,31587,31587,31587, 31587,31588, 0,31588,31588,31588,31588,31588,31588,31589, 0,31589,31589,31589,31589,31589,31589,31590, 0,31590, 31590,31590,31590,31590,31590,31591,31591,31591,31591,31591, 31591,31591,31591,31592, 0,31592,31592,31592,31592,31592, 31592,31593, 0,31593,31593,31593,31593,31593,31593,31594, 0,31594,31594,31594,31594,31594,31594,31595, 0,31595, 31595,31595,31595,31595,31595,31596, 0,31596,31596,31596, 31596,31596,31596,31597, 0,31597,31597,31597,31597,31597, 31597,31598, 0,31598,31598,31598,31598,31598,31598,31599, 0,31599,31599,31599,31599,31599,31599,31600, 0,31600, 31600,31600,31600,31600,31600,31601, 0,31601,31601,31601, 31601,31601,31601,31602, 0,31602,31602,31602,31602,31602, 31602,31603, 0,31603,31603,31603,31603,31603,31603,31604, 0,31604,31604,31604,31604,31604,31604,31605, 0,31605, 31605,31605,31605,31605,31605,31606, 0,31606,31606,31606, 31606,31606,31606,31607, 0,31607,31607,31607,31607,31607, 31607,31608, 0,31608,31608,31608,31608,31608,31608,31609, 0,31609,31609,31609,31609,31609,31609,31610, 0,31610, 31610,31610,31610,31610,31610,31611, 0,31611,31611,31611, 31611,31611,31611,31612, 0,31612,31612,31612,31612,31612, 31612,31613, 0,31613,31613,31613,31613,31613,31613,31614, 0,31614,31614,31614,31614,31614,31614,31615, 0,31615, 31615,31615,31615,31615,31615,31616, 0,31616,31616,31616, 31616,31616,31616,31617, 0,31617,31617,31617,31617,31617, 31617,31618, 0,31618,31618,31618,31618,31618,31618,31619, 0,31619,31619,31619,31619,31619,31619,31620, 0,31620, 31620,31620,31620,31620,31620,31621, 0,31621,31621,31621, 31621,31621,31621,31622, 0,31622,31622,31622,31622,31622, 31622,31623, 0,31623,31623,31623,31623,31623,31623,31624, 0,31624,31624,31624,31624,31624,31624,31625, 0,31625, 31625,31625,31625,31625,31625,31626, 0,31626,31626,31626, 31626,31626,31626,31627, 0,31627,31627,31627,31627,31627, 31627,31628, 0,31628,31628,31628,31628,31628,31628,31629, 0,31629,31629,31629,31629,31629,31629,31630, 0,31630, 31630,31630,31630,31630,31630,31631, 0,31631,31631,31631, 31631,31631,31631,31632, 0,31632,31632,31632,31632,31632, 31632,31633, 0,31633,31633,31633,31633,31633,31633,31634, 0,31634,31634,31634,31634,31634,31634,31635, 0,31635, 31635,31635,31635,31635,31635,31636, 0,31636,31636,31636, 31636,31636,31636,31637, 0,31637,31637,31637,31637,31637, 31637,31638, 0,31638,31638,31638,31638,31638,31638,31639, 0,31639,31639,31639,31639,31639,31639,31640, 0,31640, 31640,31640,31640,31640,31640,31641, 0,31641,31641,31641, 31641,31641,31641,31642, 0,31642,31642,31642,31642,31642, 31642,31643, 0,31643,31643,31643,31643,31643,31643,31644, 0,31644,31644,31644,31644,31644,31644,31645, 0,31645, 31645,31645,31645,31645,31645,31646, 0,31646,31646,31646, 31646,31646,31646,31647, 0,31647,31647,31647,31647,31647, 31647,31648, 0,31648,31648,31648,31648,31648,31648,31649, 0,31649,31649,31649,31649,31649,31649,31650, 0,31650, 31650,31650,31650,31650,31650,31651, 0,31651,31651,31651, 31651,31651,31651,31652, 0,31652,31652,31652,31652,31652, 31652,31653, 0,31653,31653,31653,31653,31653,31653,31654, 0,31654,31654,31654,31654,31654,31654,31655, 0,31655, 31655,31655,31655,31655,31655,31656, 0,31656,31656,31656, 31656,31656,31656,31657, 0,31657,31657,31657,31657,31657, 31657,31658,31658,31658,31658,31658,31658,31658,31658,31659, 0,31659,31659,31659,31659,31659,31659,31660, 0,31660, 31660,31660,31660,31660,31660,31661, 0,31661,31661,31661, 31661,31661,31661,31662, 0,31662,31662,31662,31662,31662, 31662,31663, 0,31663,31663,31663,31663,31663,31663,31664, 0,31664,31664,31664,31664,31664,31664,31665, 0,31665, 31665,31665,31665,31665,31665,31666, 0,31666,31666,31666, 31666,31666,31666,31667, 0,31667,31667,31667,31667,31667, 31667,31668, 0,31668,31668,31668,31668,31668,31668,31669, 0,31669,31669,31669,31669,31669,31669,31670, 0,31670, 31670,31670,31670,31670,31670,31671, 0,31671,31671,31671, 31671,31671,31671,31672,31672,31672,31672,31672,31672,31672, 31672,31673, 0,31673,31673,31673,31673,31673,31673,31674, 0,31674,31674,31674,31674,31674,31674,31675,31675,31675, 31675,31675,31675,31675,31675,31676,31676,31676,31676,31676, 31676,31676,31676,31677,31677,31677,31677,31677,31677,31677, 31677,31678, 0,31678,31678,31678,31678,31678,31678,31679, 0,31679,31679,31679,31679,31679,31679,31680, 0,31680, 31680,31680,31680,31680,31680,31681, 0,31681,31681,31681, 31681,31681,31681,31682, 0,31682,31682,31682,31682,31682, 31682,31683, 0,31683,31683,31683,31683,31683,31683,31684, 0,31684,31684,31684,31684,31684,31684,31685, 0,31685, 31685,31685,31685,31685,31685,31686, 0,31686,31686,31686, 31686,31686,31686,31687, 0,31687,31687,31687,31687,31687, 31687,31688, 0,31688,31688,31688,31688,31688,31688,31689, 0,31689,31689,31689,31689,31689,31689,31690, 0,31690, 31690,31690,31690,31690,31690,31691, 0,31691,31691,31691, 31691,31691,31691,31692, 0,31692,31692,31692,31692,31692, 31692,31693, 0,31693,31693,31693,31693,31693,31693,31694, 0,31694,31694,31694,31694,31694,31694,31695, 0,31695, 31695,31695,31695,31695,31695,31696, 0,31696,31696,31696, 31696,31696,31696,31697, 0,31697,31697,31697,31697,31697, 31697,31698, 0,31698,31698,31698,31698,31698,31698,31699, 31699,31699,31699,31699,31699,31699,31699,31700, 0,31700, 31700,31700,31700,31700,31700,31701,31701,31701,31701,31701, 31701,31701,31701,31702,31702,31702, 0,31702,31702,31702, 31702,31703, 0,31703,31703,31703,31703,31703,31703,31704, 31704,31704,31704,31704,31704,31704,31704,31705,31705,31705, 31705,31705,31705,31705,31705,31706, 0,31706,31706,31706, 31706,31706,31706,31707, 0,31707,31707,31707,31707,31707, 31707,31708, 0,31708,31708,31708,31708,31708,31708,31709, 0,31709,31709,31709,31709,31709,31709,31710, 0,31710, 31710,31710,31710,31710,31710,31711, 0,31711,31711,31711, 31711,31711,31711,31712, 0,31712,31712,31712,31712,31712, 31712,31713, 0,31713,31713,31713,31713,31713,31713,31714, 0,31714,31714,31714,31714,31714,31714,31715, 0,31715, 31715,31715,31715,31715,31715,31716, 0,31716,31716,31716, 31716,31716,31716,31717, 0,31717,31717,31717,31717,31717, 31717,31718, 0,31718,31718,31718,31718,31718,31718,31719, 0,31719,31719,31719,31719,31719,31719,31720,31720,31720, 31720,31720,31720,31720,31720,31721, 0,31721,31721,31721, 31721,31721,31721,31722, 0,31722,31722,31722,31722,31722, 31722,31723, 0,31723,31723,31723,31723,31723,31723,31724, 0,31724,31724,31724,31724,31724,31724,31725,31725,31725, 31725,31725,31725,31725,31725,31726, 0,31726,31726,31726, 31726,31726,31726,31727, 0,31727,31727,31727,31727,31727, 31727,31728, 0,31728,31728,31728,31728,31728,31728,31729, 0,31729,31729,31729,31729,31729,31729,31730, 0,31730, 31730,31730,31730,31730,31730,31731,31731,31731,31731,31731, 31731,31731,31731,31732,31732,31732,31732,31732,31732,31732, 31732,31733, 0,31733,31733,31733,31733,31733,31733,31734, 0,31734,31734,31734,31734,31734,31734,31735, 0,31735, 31735,31735,31735,31735,31735,31736, 0,31736,31736,31736, 31736,31736,31736,31737, 0,31737,31737,31737,31737,31737, 31737,31738, 0,31738,31738,31738,31738,31738,31738,31739, 31739,31739,31739,31739,31739,31739,31739,31740,31740,31740, 31740,31740,31740,31740,31740,31741,31741,31741,31741,31741, 31741,31741,31741,31742,31742,31742,31742,31742,31742,31742, 31742,31743, 0,31743,31743,31743,31743,31743,31743,31744, 0,31744,31744,31744,31744,31744,31744,31745, 0,31745, 31745,31745,31745,31745,31745,31746, 0,31746,31746,31746, 31746,31746,31746,31747, 0,31747,31747,31747,31747,31747, 31747,31748, 0,31748,31748,31748,31748,31748,31748,31749, 0,31749,31749,31749,31749,31749,31749,31750, 0,31750, 31750,31750,31750,31750,31750,31751, 0,31751,31751,31751, 31751,31751,31751,31752, 0,31752,31752,31752,31752,31752, 31752,31753, 0,31753,31753,31753,31753,31753,31753,31754, 0,31754,31754,31754,31754,31754,31754,31755, 0,31755, 31755,31755,31755,31755,31755,31756, 0,31756,31756,31756, 31756,31756,31756,31757, 0,31757,31757,31757,31757,31757, 31757,31758, 0,31758,31758,31758,31758,31758,31758,31759, 0,31759,31759,31759,31759,31759,31759,31760, 0,31760, 31760,31760,31760,31760,31760,31761, 0,31761,31761,31761, 31761,31761,31761,31762, 0,31762,31762,31762,31762,31762, 31762,31763,31763,31763,31763,31763,31763,31763,31763,31764, 31764,31764,31764, 0,31764,31764,31764,31765, 0,31765, 31765,31765,31765,31765,31765,31766, 0,31766,31766,31766, 31766,31766,31766,31767, 0,31767,31767,31767,31767,31767, 31767,31768,31768,31768,31768,31768,31768,31768,31768,31769, 31769,31769,31769,31769,31769,31769,31769,31770, 0,31770, 31770,31770,31770,31770,31770,31771,31771,31771,31771,31771, 31771,31771,31771,31772, 0,31772,31772,31772,31772,31772, 31772,31773,31773,31773,31773,31773,31773,31773,31773,31774, 0,31774,31774,31774,31774,31774,31774,31775, 0,31775, 31775,31775,31775,31775,31775,31776, 0,31776,31776,31776, 31776,31776,31776,31777, 0,31777,31777,31777,31777,31777, 31777,31778, 0,31778,31778,31778,31778,31778,31778,31779, 0,31779,31779,31779,31779,31779,31779,31780, 0,31780, 31780,31780,31780,31780,31780,31781, 0,31781,31781,31781, 31781,31781,31781,31782, 0,31782,31782,31782,31782,31782, 31782,31783, 0,31783,31783,31783,31783,31783,31783,31784, 0,31784,31784,31784,31784,31784,31784,31785, 0,31785, 31785,31785,31785,31785,31785,31786, 0,31786,31786,31786, 31786,31786,31786,31787, 0,31787,31787,31787,31787,31787, 31787,31788, 0,31788,31788,31788,31788,31788,31788,31789, 0,31789,31789,31789,31789,31789,31789,31790, 0,31790, 31790,31790,31790,31790,31790,31791, 0,31791,31791,31791, 31791,31791,31791,31792, 0,31792,31792,31792,31792,31792, 31792,31793, 0,31793,31793,31793,31793,31793,31793,31794, 0,31794,31794,31794,31794,31794,31794,31795, 0,31795, 31795,31795,31795,31795,31795,31796, 0,31796,31796,31796, 31796,31796,31796,31797, 0,31797,31797,31797,31797,31797, 31797,31798, 0,31798,31798,31798,31798,31798,31798,31799, 0,31799,31799,31799,31799,31799,31799,31800, 0,31800, 31800,31800,31800,31800,31800,31801, 0,31801,31801,31801, 31801,31801,31801,31802, 0,31802,31802,31802,31802,31802, 31802,31803, 0,31803,31803,31803,31803,31803,31803,31804, 0,31804,31804,31804,31804,31804,31804,31805, 0,31805, 31805,31805,31805,31805,31805,31806,31806,31806,31806,31806, 31806,31806,31806,31807, 0,31807,31807,31807,31807,31807, 31807,31808, 0,31808,31808,31808,31808,31808,31808,31809, 0,31809,31809,31809,31809,31809,31809,31810, 0,31810, 31810,31810,31810,31810,31810,31811, 0,31811,31811,31811, 31811,31811,31811,31812, 0,31812,31812,31812,31812,31812, 31812,31813, 0,31813,31813,31813,31813,31813,31813,31814, 0,31814,31814,31814,31814,31814,31814,31815, 0,31815, 31815,31815,31815,31815,31815,31816, 0,31816,31816,31816, 31816,31816,31816,31817, 0,31817,31817,31817,31817,31817, 31817,31818, 0,31818,31818,31818,31818,31818,31818,31819, 0,31819,31819,31819,31819,31819,31819,31820, 0,31820, 31820,31820,31820,31820,31820,31821, 0,31821,31821,31821, 31821,31821,31821,31822, 0,31822,31822,31822,31822,31822, 31822,31823, 0,31823,31823,31823,31823,31823,31823,31824, 0,31824,31824,31824,31824,31824,31824,31825, 0,31825, 31825,31825,31825,31825,31825,31826, 0,31826,31826,31826, 31826,31826,31826,31827, 0,31827,31827,31827,31827,31827, 31827,31828, 0,31828,31828,31828,31828,31828,31828,31829, 0,31829,31829,31829,31829,31829,31829,31830, 0,31830, 31830,31830,31830,31830,31830,31831, 0,31831,31831,31831, 31831,31831,31831,31832, 0,31832,31832,31832,31832,31832, 31832,31833, 0,31833,31833,31833,31833,31833,31833,31834, 0,31834,31834,31834,31834,31834,31834,31835, 0,31835, 31835,31835,31835,31835,31835,31836, 0,31836,31836,31836, 31836,31836,31836,31837, 0,31837,31837,31837,31837,31837, 31837,31838, 0,31838,31838,31838,31838,31838,31838,31839, 0,31839,31839,31839,31839,31839,31839,31840, 0,31840, 31840,31840,31840,31840,31840,31841, 0,31841,31841,31841, 31841,31841,31841,31842, 0,31842,31842,31842,31842,31842, 31842,31843, 0,31843,31843,31843,31843,31843,31843,31844, 0,31844,31844,31844,31844,31844,31844,31845, 0,31845, 31845,31845,31845,31845,31845,31846, 0,31846,31846,31846, 31846,31846,31846,31847, 0,31847,31847,31847,31847,31847, 31847,31848, 0,31848,31848,31848,31848,31848,31848,31849, 0,31849,31849,31849,31849,31849,31849,31850, 0,31850, 31850,31850,31850,31850,31850,31851, 0,31851,31851,31851, 31851,31851,31851,31852, 0,31852,31852,31852,31852,31852, 31852,31853, 0,31853,31853,31853,31853,31853,31853,31854, 0,31854,31854,31854,31854,31854,31854,31855, 0,31855, 31855,31855,31855,31855,31855,31856, 0,31856,31856,31856, 31856,31856,31856,31857, 0,31857,31857,31857,31857,31857, 31857,31858, 0,31858,31858,31858,31858,31858,31858,31859, 0,31859,31859,31859,31859,31859,31859,31860, 0,31860, 31860,31860,31860,31860,31860,31861, 0,31861,31861,31861, 31861,31861,31861,31862, 0,31862,31862,31862,31862,31862, 31862,31863, 0,31863,31863,31863,31863,31863,31863,31864, 0,31864,31864,31864,31864,31864,31864,31865, 0,31865, 31865,31865,31865,31865,31865,31866, 0,31866,31866,31866, 31866,31866,31866,31867, 0,31867,31867,31867,31867,31867, 31867,31868, 0,31868,31868,31868,31868,31868,31868,31869, 0,31869,31869,31869,31869,31869,31869,31870, 0,31870, 31870,31870,31870,31870,31870,31871, 0,31871,31871,31871, 31871,31871,31871,31872, 0,31872,31872,31872,31872,31872, 31872,31873, 0,31873,31873,31873,31873,31873,31873,31874, 0,31874,31874,31874,31874,31874,31874,31875, 0,31875, 31875,31875,31875,31875,31875,31876, 0,31876,31876,31876, 31876,31876,31876,31877, 0,31877,31877,31877,31877,31877, 31877,31878, 0,31878,31878,31878,31878,31878,31878,31879, 0,31879,31879,31879,31879,31879,31879,31880, 0,31880, 31880,31880,31880,31880,31880,31881, 0,31881,31881,31881, 31881,31881,31881,31882, 0,31882,31882,31882,31882,31882, 31882,31883, 0,31883,31883,31883,31883,31883,31883,31884, 0,31884,31884,31884,31884,31884,31884,31885, 0,31885, 31885,31885,31885,31885,31885,31886, 0,31886,31886,31886, 31886,31886,31886,31887, 0,31887,31887,31887,31887,31887, 31887,31888, 0,31888,31888,31888,31888,31888,31888,31889, 0,31889,31889,31889,31889,31889,31889,31890, 0,31890, 31890,31890,31890,31890,31890,31891, 0,31891,31891,31891, 31891,31891,31891,31892, 0,31892,31892,31892,31892,31892, 31892,31893, 0,31893,31893,31893,31893,31893,31893,31894, 31894,31894,31894,31894,31894,31894,31894,31895, 0,31895, 31895,31895,31895,31895,31895,31896, 0,31896,31896,31896, 31896,31896,31896,31897, 0,31897,31897,31897,31897,31897, 31897,31898, 0,31898,31898,31898,31898,31898,31898,31899, 0,31899,31899,31899,31899,31899,31899,31900, 0,31900, 31900,31900,31900,31900,31900,31901, 0,31901,31901,31901, 31901,31901,31901,31902, 0,31902,31902,31902,31902,31902, 31902,31903, 0,31903,31903,31903,31903,31903,31903,31904, 0,31904,31904,31904,31904,31904,31904,31905, 0,31905, 31905,31905,31905,31905,31905,31906, 0,31906,31906,31906, 31906,31906,31906,31907,31907,31907,31907,31907,31907,31907, 31907,31908, 0,31908,31908,31908,31908,31908,31908,31909, 0,31909,31909,31909,31909,31909,31909,31910, 0,31910, 31910,31910,31910,31910,31910,31911,31911,31911,31911,31911, 31911,31911,31911,31912,31912,31912,31912,31912,31912,31912, 31912,31913,31913,31913,31913,31913,31913,31913,31913,31914, 0,31914,31914,31914,31914,31914,31914,31915, 0,31915, 31915,31915,31915,31915,31915,31916, 0,31916,31916,31916, 31916,31916,31916,31917, 0,31917,31917,31917,31917,31917, 31917,31918, 0,31918,31918,31918,31918,31918,31918,31919, 0,31919,31919,31919,31919,31919,31919,31920, 0,31920, 31920,31920,31920,31920,31920,31921, 0,31921,31921,31921, 31921,31921,31921,31922, 0,31922,31922,31922,31922,31922, 31922,31923, 0,31923,31923,31923,31923,31923,31923,31924, 0,31924,31924,31924,31924,31924,31924,31925, 0,31925, 31925,31925,31925,31925,31925,31926, 0,31926,31926,31926, 31926,31926,31926,31927,31927,31927,31927,31927,31927,31927, 31927,31928, 0,31928,31928,31928,31928,31928,31928,31929, 0,31929,31929,31929,31929,31929,31929,31930,31930,31930, 31930,31930,31930,31930,31930,31931,31931,31931,31931,31931, 31931,31931,31931,31932,31932,31932,31932,31932,31932,31932, 31932,31933, 0,31933,31933,31933,31933,31933,31933,31934, 0,31934,31934,31934,31934,31934,31934,31935, 0,31935, 31935,31935,31935,31935,31935,31936, 0,31936,31936,31936, 31936,31936,31936,31937, 0,31937,31937,31937,31937,31937, 31937,31938, 0,31938,31938,31938,31938,31938,31938,31939, 0,31939,31939,31939,31939,31939,31939,31940, 0,31940, 31940,31940,31940,31940,31940,31941, 0,31941,31941,31941, 31941,31941,31941,31942, 0,31942,31942,31942,31942,31942, 31942,31943, 0,31943,31943,31943,31943,31943,31943,31944, 0,31944,31944,31944,31944,31944,31944,31945, 0,31945, 31945,31945,31945,31945,31945,31946, 0,31946,31946,31946, 31946,31946,31946,31947, 0,31947,31947,31947,31947,31947, 31947,31948, 0,31948,31948,31948,31948,31948,31948,31949, 0,31949,31949,31949,31949,31949,31949,31950,31950,31950, 31950,31950,31950,31950,31950,31951, 0,31951,31951,31951, 31951,31951,31951,31952, 0,31952,31952,31952,31952,31952, 31952,31953, 0,31953,31953,31953,31953,31953,31953,31954, 0,31954,31954,31954,31954,31954,31954,31955,31955,31955, 31955,31955,31955,31955,31955,31956, 0,31956,31956,31956, 31956,31956,31956,31957, 0,31957,31957,31957,31957,31957, 31957,31958, 0,31958,31958,31958,31958,31958,31958,31959, 0,31959,31959,31959,31959,31959,31959,31960, 0,31960, 31960,31960,31960,31960,31960,31961, 0,31961,31961,31961, 31961,31961,31961,31962,31962,31962,31962,31962,31962,31962, 31962,31963,31963,31963,31963,31963,31963,31963,31963,31964, 0,31964,31964,31964,31964,31964,31964,31965, 0,31965, 31965,31965,31965,31965,31965,31966, 0,31966,31966,31966, 31966,31966,31966,31967, 0,31967,31967,31967,31967,31967, 31967,31968, 0,31968,31968,31968,31968,31968,31968,31969, 0,31969,31969,31969,31969,31969,31969,31970,31970,31970, 31970,31970,31970,31970,31970,31971,31971,31971,31971,31971, 31971,31971,31971,31972,31972,31972,31972,31972,31972,31972, 31972,31973,31973,31973,31973,31973,31973,31973,31973,31974, 0,31974,31974,31974,31974,31974,31974,31975, 0,31975, 31975,31975,31975,31975,31975,31976, 0,31976,31976,31976, 31976,31976,31976,31977, 0,31977,31977,31977,31977,31977, 31977,31978, 0,31978,31978,31978,31978,31978,31978,31979, 0,31979,31979,31979,31979,31979,31979,31980, 0,31980, 31980,31980,31980,31980,31980,31981, 0,31981,31981,31981, 31981,31981,31981,31982, 0,31982,31982,31982,31982,31982, 31982,31983, 0,31983,31983,31983,31983,31983,31983,31984, 0,31984,31984,31984,31984,31984,31984,31985, 0,31985, 31985,31985,31985,31985,31985,31986, 0,31986,31986,31986, 31986,31986,31986,31987, 0,31987,31987,31987,31987,31987, 31987,31988, 0,31988,31988,31988,31988,31988,31988,31989, 0,31989,31989,31989,31989,31989,31989,31990, 0,31990, 31990,31990,31990,31990,31990,31991, 0,31991,31991,31991, 31991,31991,31991,31992, 0,31992,31992,31992,31992,31992, 31992,31993, 0,31993,31993,31993,31993,31993,31993,31994, 31994,31994,31994,31994,31994,31994,31994,31995, 0,31995, 31995,31995,31995,31995,31995,31996,31996,31996,31996,31996, 31996,31996,31996,31997,31997,31997,31997, 0,31997,31997, 31997,31998,31998,31998,31998,31998,31998,31998,31998,31999, 31999,31999,31999,31999,31999,31999,31999,32000, 0,32000, 32000,32000,32000,32000,32000,32001, 0,32001,32001,32001, 32001,32001,32001,32002, 0,32002,32002,32002,32002,32002, 32002,32003,32003,32003,32003,32003,32003,32003,32003,32004, 32004,32004,32004,32004,32004,32004,32004,32005, 0,32005, 32005,32005,32005,32005,32005,32006,32006,32006,32006,32006, 32006,32006,32006,32007, 0,32007,32007,32007,32007,32007, 32007,32008,32008,32008,32008,32008,32008,32008,32008,32009, 0,32009,32009,32009,32009,32009,32009,32010, 0,32010, 32010,32010,32010,32010,32010,32011, 0,32011,32011,32011, 32011,32011,32011,32012, 0,32012,32012,32012,32012,32012, 32012,32013, 0,32013,32013,32013,32013,32013,32013,32014, 0,32014,32014,32014,32014,32014,32014,32015, 0,32015, 32015,32015,32015,32015,32015,32016, 0,32016,32016,32016, 32016,32016,32016,32017, 0,32017,32017,32017,32017,32017, 32017,32018, 0,32018,32018,32018,32018,32018,32018,32019, 0,32019,32019,32019,32019,32019,32019,32020, 0,32020, 32020,32020,32020,32020,32020,32021, 0,32021,32021,32021, 32021,32021,32021,32022, 0,32022,32022,32022,32022,32022, 32022,32023, 0,32023,32023,32023,32023,32023,32023,32024, 0,32024,32024,32024,32024,32024,32024,32025, 0,32025, 32025,32025,32025,32025,32025,32026, 0,32026,32026,32026, 32026,32026,32026,32027, 0,32027,32027,32027,32027,32027, 32027,32028, 0,32028,32028,32028,32028,32028,32028,32029, 0,32029,32029,32029,32029,32029,32029,32030, 0,32030, 32030,32030,32030,32030,32030,32031, 0,32031,32031,32031, 32031,32031,32031,32032, 0,32032,32032,32032,32032,32032, 32032,32033, 0,32033,32033,32033,32033,32033,32033,32034, 0,32034,32034,32034,32034,32034,32034,32035, 0,32035, 32035,32035,32035,32035,32035,32036, 0,32036,32036,32036, 32036,32036,32036,32037, 0,32037,32037,32037,32037,32037, 32037,32038, 0,32038,32038,32038,32038,32038,32038,32039, 0,32039,32039,32039,32039,32039,32039,32040, 0,32040, 32040,32040,32040,32040,32040,32041, 0,32041,32041,32041, 32041,32041,32041,32042, 0,32042,32042,32042,32042,32042, 32042,32043, 0,32043,32043,32043,32043,32043,32043,32044, 0,32044,32044,32044,32044,32044,32044,32045, 0,32045, 32045,32045,32045,32045,32045,32046, 0,32046,32046,32046, 32046,32046,32046,32047, 0,32047,32047,32047,32047,32047, 32047,32048, 0,32048,32048,32048,32048,32048,32048,32049, 0,32049,32049,32049,32049,32049,32049,32050, 0,32050, 32050,32050,32050,32050,32050,32051, 0,32051,32051,32051, 32051,32051,32051,32052,32052,32052,32052,32052,32052,32052, 32052,32053, 0,32053,32053,32053,32053,32053,32053,32054, 0,32054,32054,32054,32054,32054,32054,32055, 0,32055, 32055,32055,32055,32055,32055,32056, 0,32056,32056,32056, 32056,32056,32056,32057, 0,32057,32057,32057,32057,32057, 32057,32058, 0,32058,32058,32058,32058,32058,32058,32059, 0,32059,32059,32059,32059,32059,32059,32060, 0,32060, 32060,32060,32060,32060,32060,32061, 0,32061,32061,32061, 32061,32061,32061,32062, 0,32062,32062,32062,32062,32062, 32062,32063, 0,32063,32063,32063,32063,32063,32063,32064, 0,32064,32064,32064,32064,32064,32064,32065, 0,32065, 32065,32065,32065,32065,32065,32066, 0,32066,32066,32066, 32066,32066,32066,32067, 0,32067,32067,32067,32067,32067, 32067,32068, 0,32068,32068,32068,32068,32068,32068,32069, 0,32069,32069,32069,32069,32069,32069,32070, 0,32070, 32070,32070,32070,32070,32070,32071, 0,32071,32071,32071, 32071,32071,32071,32072, 0,32072,32072,32072,32072,32072, 32072,32073, 0,32073,32073,32073,32073,32073,32073,32074, 0,32074,32074,32074,32074,32074,32074,32075, 0,32075, 32075,32075,32075,32075,32075,32076, 0,32076,32076,32076, 32076,32076,32076,32077, 0,32077,32077,32077,32077,32077, 32077,32078, 0,32078,32078,32078,32078,32078,32078,32079, 0,32079,32079,32079,32079,32079,32079,32080, 0,32080, 32080,32080,32080,32080,32080,32081, 0,32081,32081,32081, 32081,32081,32081,32082, 0,32082,32082,32082,32082,32082, 32082,32083, 0,32083,32083,32083,32083,32083,32083,32084, 0,32084,32084,32084,32084,32084,32084,32085, 0,32085, 32085,32085,32085,32085,32085,32086, 0,32086,32086,32086, 32086,32086,32086,32087, 0,32087,32087,32087,32087,32087, 32087,32088, 0,32088,32088,32088,32088,32088,32088,32089, 0,32089,32089,32089,32089,32089,32089,32090, 0,32090, 32090,32090,32090,32090,32090,32091, 0,32091,32091,32091, 32091,32091,32091,32092, 0,32092,32092,32092,32092,32092, 32092,32093, 0,32093,32093,32093,32093,32093,32093,32094, 0,32094,32094,32094,32094,32094,32094,32095, 0,32095, 32095,32095,32095,32095,32095,32096, 0,32096,32096,32096, 32096,32096,32096,32097, 0,32097,32097,32097,32097,32097, 32097,32098, 0,32098,32098,32098,32098,32098,32098,32099, 0,32099,32099,32099,32099,32099,32099,32100, 0,32100, 32100,32100,32100,32100,32100,32101, 0,32101,32101,32101, 32101,32101,32101,32102, 0,32102,32102,32102,32102,32102, 32102,32103, 0,32103,32103,32103,32103,32103,32103,32104, 0,32104,32104,32104,32104,32104,32104,32105, 0,32105, 32105,32105,32105,32105,32105,32106, 0,32106,32106,32106, 32106,32106,32106,32107, 0,32107,32107,32107,32107,32107, 32107,32108, 0,32108,32108,32108,32108,32108,32108,32109, 0,32109,32109,32109,32109,32109,32109,32110, 0,32110, 32110,32110,32110,32110,32110,32111, 0,32111,32111,32111, 32111,32111,32111,32112, 0,32112,32112,32112,32112,32112, 32112,32113, 0,32113,32113,32113,32113,32113,32113,32114, 0,32114,32114,32114,32114,32114,32114,32115, 0,32115, 32115,32115,32115,32115,32115,32116, 0,32116,32116,32116, 32116,32116,32116,32117, 0,32117,32117,32117,32117,32117, 32117,32118, 0,32118,32118,32118,32118,32118,32118,32119, 0,32119,32119,32119,32119,32119,32119,32120, 0,32120, 32120,32120,32120,32120,32120,32121, 0,32121,32121,32121, 32121,32121,32121,32122, 0,32122,32122,32122,32122,32122, 32122,32123, 0,32123,32123,32123,32123,32123,32123,32124, 0,32124,32124,32124,32124,32124,32124,32125, 0,32125, 32125,32125,32125,32125,32125,32126, 0,32126,32126,32126, 32126,32126,32126,32127, 0,32127,32127,32127,32127,32127, 32127,32128, 0,32128,32128,32128,32128,32128,32128,32129, 0,32129,32129,32129,32129,32129,32129,32130, 0,32130, 32130,32130,32130,32130,32130,32131, 0,32131,32131,32131, 32131,32131,32131,32132, 0,32132,32132,32132,32132,32132, 32132,32133, 0,32133,32133,32133,32133,32133,32133,32134, 0,32134,32134,32134,32134,32134,32134,32135, 0,32135, 32135,32135,32135,32135,32135,32136, 0,32136,32136,32136, 32136,32136,32136,32137, 0,32137,32137,32137,32137,32137, 32137,32138, 0,32138,32138,32138,32138,32138,32138,32139, 0,32139,32139,32139,32139,32139,32139,32140, 0,32140, 32140,32140,32140,32140,32140,32141, 0,32141,32141,32141, 32141,32141,32141,32142, 0,32142,32142,32142,32142,32142, 32142,32143, 0,32143,32143,32143,32143,32143,32143,32144, 0,32144,32144,32144,32144,32144,32144,32145, 0,32145, 32145,32145,32145,32145,32145,32146, 0,32146,32146,32146, 32146,32146,32146,32147,32147,32147,32147,32147,32147,32147, 32147,32148, 0,32148,32148,32148,32148,32148,32148,32149, 0,32149,32149,32149,32149,32149,32149,32150, 0,32150, 32150,32150,32150,32150,32150,32151, 0,32151,32151,32151, 32151,32151,32151,32152, 0,32152,32152,32152,32152,32152, 32152,32153, 0,32153,32153,32153,32153,32153,32153,32154, 0,32154,32154,32154,32154,32154,32154,32155, 0,32155, 32155,32155,32155,32155,32155,32156, 0,32156,32156,32156, 32156,32156,32156,32157, 0,32157,32157,32157,32157,32157, 32157,32158, 0,32158,32158,32158,32158,32158,32158,32159, 0,32159,32159,32159,32159,32159,32159,32160, 0,32160, 32160,32160,32160,32160,32160,32161, 0,32161,32161,32161, 32161,32161,32161,32162, 0,32162,32162,32162,32162,32162, 32162,32163,32163,32163,32163,32163,32163,32163,32163,32164, 0,32164,32164,32164,32164,32164,32164,32165, 0,32165, 32165,32165,32165,32165,32165,32166,32166,32166,32166,32166, 32166,32166,32166,32167,32167,32167,32167,32167,32167,32167, 32167,32168, 0,32168,32168,32168,32168,32168,32168,32169, 0,32169,32169,32169,32169,32169,32169,32170, 0,32170, 32170,32170,32170,32170,32170,32171, 0,32171,32171,32171, 32171,32171,32171,32172, 0,32172,32172,32172,32172,32172, 32172,32173, 0,32173,32173,32173,32173,32173,32173,32174, 0,32174,32174,32174,32174,32174,32174,32175, 0,32175, 32175,32175,32175,32175,32175,32176, 0,32176,32176,32176, 32176,32176,32176,32177, 0,32177,32177,32177,32177,32177, 32177,32178, 0,32178,32178,32178,32178,32178,32178,32179, 0,32179,32179,32179,32179,32179,32179,32180,32180,32180, 32180,32180,32180,32180,32180,32181, 0,32181,32181,32181, 32181,32181,32181,32182, 0,32182,32182,32182,32182,32182, 32182,32183, 0,32183,32183,32183,32183,32183,32183,32184, 32184,32184,32184,32184,32184,32184,32184,32185,32185,32185, 32185,32185,32185,32185,32185,32186,32186,32186,32186,32186, 32186,32186,32186,32187, 0,32187,32187,32187,32187,32187, 32187,32188, 0,32188,32188,32188,32188,32188,32188,32189, 0,32189,32189,32189,32189,32189,32189,32190, 0,32190, 32190,32190,32190,32190,32190,32191, 0,32191,32191,32191, 32191,32191,32191,32192, 0,32192,32192,32192,32192,32192, 32192,32193, 0,32193,32193,32193,32193,32193,32193,32194, 0,32194,32194,32194,32194,32194,32194,32195, 0,32195, 32195,32195,32195,32195,32195,32196, 0,32196,32196,32196, 32196,32196,32196,32197, 0,32197,32197,32197,32197,32197, 32197,32198, 0,32198,32198,32198,32198,32198,32198,32199, 0,32199,32199,32199,32199,32199,32199,32200, 0,32200, 32200,32200,32200,32200,32200,32201, 0,32201,32201,32201, 32201,32201,32201,32202, 0,32202,32202,32202,32202,32202, 32202,32203, 0,32203,32203,32203,32203,32203,32203,32204, 0,32204,32204,32204,32204,32204,32204,32205, 0,32205, 32205,32205,32205,32205,32205,32206, 0,32206,32206,32206, 32206,32206,32206,32207, 0,32207,32207,32207,32207,32207, 32207,32208,32208,32208,32208,32208,32208,32208,32208,32209, 0,32209,32209,32209,32209,32209,32209,32210, 0,32210, 32210,32210,32210,32210,32210,32211, 0,32211,32211,32211, 32211,32211,32211,32212, 0,32212,32212,32212,32212,32212, 32212,32213,32213,32213,32213,32213,32213,32213,32213,32214, 0,32214,32214,32214,32214,32214,32214,32215, 0,32215, 32215,32215,32215,32215,32215,32216, 0,32216,32216,32216, 32216,32216,32216,32217, 0,32217,32217,32217,32217,32217, 32217,32218, 0,32218,32218,32218,32218,32218,32218,32219, 32219,32219,32219,32219,32219,32219,32219,32220,32220,32220, 32220,32220,32220,32220,32220,32221, 0,32221,32221,32221, 32221,32221,32221,32222, 0,32222,32222,32222,32222,32222, 32222,32223, 0,32223,32223,32223,32223,32223,32223,32224, 0,32224,32224,32224,32224,32224,32224,32225, 0,32225, 32225,32225,32225,32225,32225,32226, 0,32226,32226,32226, 32226,32226,32226,32227,32227,32227,32227,32227,32227,32227, 32227,32228,32228,32228,32228,32228,32228,32228,32228,32229, 32229,32229,32229,32229,32229,32229,32229,32230,32230,32230, 32230,32230,32230,32230,32230,32231,32231,32231,32231,32231, 32231,32231,32231,32232, 0,32232,32232,32232,32232,32232, 32232,32233, 0,32233,32233,32233,32233,32233,32233,32234, 0,32234,32234,32234,32234,32234,32234,32235, 0,32235, 32235,32235,32235,32235,32235,32236, 0,32236,32236,32236, 32236,32236,32236,32237, 0,32237,32237,32237,32237,32237, 32237,32238, 0,32238,32238,32238,32238,32238,32238,32239, 0,32239,32239,32239,32239,32239,32239,32240, 0,32240, 32240,32240,32240,32240,32240,32241, 0,32241,32241,32241, 32241,32241,32241,32242, 0,32242,32242,32242,32242,32242, 32242,32243, 0,32243,32243,32243,32243,32243,32243,32244, 0,32244,32244,32244,32244,32244,32244,32245, 0,32245, 32245,32245,32245,32245,32245,32246, 0,32246,32246,32246, 32246,32246,32246,32247, 0,32247,32247,32247,32247,32247, 32247,32248, 0,32248,32248,32248,32248,32248,32248,32249, 0,32249,32249,32249,32249,32249,32249,32250,32250,32250, 32250,32250,32250,32250,32250,32251, 0,32251,32251,32251, 32251,32251,32251,32252,32252,32252,32252,32252,32252,32252, 32252,32253,32253,32253,32253,32253,32253,32253,32253,32254, 32254,32254,32254,32254,32254,32254,32254,32255, 0,32255, 32255,32255,32255,32255,32255,32256,32256,32256,32256,32256, 32256,32256,32256,32257, 0,32257,32257,32257,32257,32257, 32257,32258, 0,32258,32258,32258,32258,32258,32258,32259, 32259,32259,32259,32259,32259,32259,32259,32260, 0,32260, 32260,32260,32260,32260,32260,32261, 0,32261,32261,32261, 32261,32261,32261,32262,32262,32262,32262,32262,32262,32262, 32262,32263,32263,32263,32263,32263,32263,32263,32263,32264, 32264,32264,32264,32264,32264,32264,32264,32265,32265,32265, 32265,32265,32265,32265,32265,32266, 0,32266,32266,32266, 32266,32266,32266,32267,32267,32267,32267,32267,32267,32267, 32267,32268, 0,32268,32268,32268,32268,32268,32268,32269, 32269,32269,32269,32269,32269,32269,32269,32270,32270,32270, 32270,32270,32270,32270,32270,32271, 0,32271,32271,32271, 32271,32271,32271,32272, 0,32272,32272,32272,32272,32272, 32272,32273, 0,32273,32273,32273,32273,32273,32273,32274, 0,32274,32274,32274,32274,32274,32274,32275, 0,32275, 32275,32275,32275,32275,32275,32276, 0,32276,32276,32276, 32276,32276,32276,32277, 0,32277,32277,32277,32277,32277, 32277,32278, 0,32278,32278,32278,32278,32278,32278,32279, 0,32279,32279,32279,32279,32279,32279,32280, 0,32280, 32280,32280,32280,32280,32280,32281, 0,32281,32281,32281, 32281,32281,32281,32282, 0,32282,32282,32282,32282,32282, 32282,32283, 0,32283,32283,32283,32283,32283,32283,32284, 0,32284,32284,32284,32284,32284,32284,32285, 0,32285, 32285,32285,32285,32285,32285,32286, 0,32286,32286,32286, 32286,32286,32286,32287, 0,32287,32287,32287,32287,32287, 32287,32288, 0,32288,32288,32288,32288,32288,32288,32289, 0,32289,32289,32289,32289,32289,32289,32290, 0,32290, 32290,32290,32290,32290,32290,32291, 0,32291,32291,32291, 32291,32291,32291,32292, 0,32292,32292,32292,32292,32292, 32292,32293, 0,32293,32293,32293,32293,32293,32293,32294, 0,32294,32294,32294,32294,32294,32294,32295, 0,32295, 32295,32295,32295,32295,32295,32296, 0,32296,32296,32296, 32296,32296,32296,32297, 0,32297,32297,32297,32297,32297, 32297,32298, 0,32298,32298,32298,32298,32298,32298,32299, 0,32299,32299,32299,32299,32299,32299,32300, 0,32300, 32300,32300,32300,32300,32300,32301, 0,32301,32301,32301, 32301,32301,32301,32302, 0,32302,32302,32302,32302,32302, 32302,32303, 0,32303,32303,32303,32303,32303,32303,32304, 0,32304,32304,32304,32304,32304,32304,32305, 0,32305, 32305,32305,32305,32305,32305,32306, 0,32306,32306,32306, 32306,32306,32306,32307, 0,32307,32307,32307,32307,32307, 32307,32308, 0,32308,32308,32308,32308,32308,32308,32309, 0,32309,32309,32309,32309,32309,32309,32310, 0,32310, 32310,32310,32310,32310,32310,32311, 0,32311,32311,32311, 32311,32311,32311,32312, 0,32312,32312,32312,32312,32312, 32312,32313, 0,32313,32313,32313,32313,32313,32313,32314, 0,32314,32314,32314,32314,32314,32314,32315, 0,32315, 32315,32315,32315,32315,32315,32316, 0,32316,32316,32316, 32316,32316,32316,32317, 0,32317,32317,32317,32317,32317, 32317,32318, 0,32318,32318,32318,32318,32318,32318,32319, 0,32319,32319,32319,32319,32319,32319,32320, 0,32320, 32320,32320,32320,32320,32320,32321, 0,32321,32321,32321, 32321,32321,32321,32322, 0,32322,32322,32322,32322,32322, 32322,32323,32323,32323,32323,32323,32323,32323,32323,32324, 0,32324,32324,32324,32324,32324,32324,32325, 0,32325, 32325,32325,32325,32325,32325,32326,32326,32326,32326,32326, 32326,32326,32326,32327, 0,32327,32327,32327,32327,32327, 32327,32328, 0,32328,32328,32328,32328,32328,32328,32329, 0,32329,32329,32329,32329,32329,32329,32330, 0,32330, 32330,32330,32330,32330,32330,32331, 0,32331,32331,32331, 32331,32331,32331,32332, 0,32332,32332,32332,32332,32332, 32332,32333, 0,32333,32333,32333,32333,32333,32333,32334, 0,32334,32334,32334,32334,32334,32334,32335, 0,32335, 32335,32335,32335,32335,32335,32336, 0,32336,32336,32336, 32336,32336,32336,32337, 0,32337,32337,32337,32337,32337, 32337,32338, 0,32338,32338,32338,32338,32338,32338,32339, 0,32339,32339,32339,32339,32339,32339,32340, 0,32340, 32340,32340,32340,32340,32340,32341, 0,32341,32341,32341, 32341,32341,32341,32342, 0,32342,32342,32342,32342,32342, 32342,32343, 0,32343,32343,32343,32343,32343,32343,32344, 0,32344,32344,32344,32344,32344,32344,32345, 0,32345, 32345,32345,32345,32345,32345,32346, 0,32346,32346,32346, 32346,32346,32346,32347, 0,32347,32347,32347,32347,32347, 32347,32348, 0,32348,32348,32348,32348,32348,32348,32349, 0,32349,32349,32349,32349,32349,32349,32350, 0,32350, 32350,32350,32350,32350,32350,32351, 0,32351,32351,32351, 32351,32351,32351,32352, 0,32352,32352,32352,32352,32352, 32352,32353, 0,32353,32353,32353,32353,32353,32353,32354, 0,32354,32354,32354,32354,32354,32354,32355, 0,32355, 32355,32355,32355,32355,32355,32356, 0,32356,32356,32356, 32356,32356,32356,32357, 0,32357,32357,32357,32357,32357, 32357,32358, 0,32358,32358,32358,32358,32358,32358,32359, 0,32359,32359,32359,32359,32359,32359,32360, 0,32360, 32360,32360,32360,32360,32360,32361, 0,32361,32361,32361, 32361,32361,32361,32362, 0,32362,32362,32362,32362,32362, 32362,32363, 0,32363,32363,32363,32363,32363,32363,32364, 0,32364,32364,32364,32364,32364,32364,32365, 0,32365, 32365,32365,32365,32365,32365,32366, 0,32366,32366,32366, 32366,32366,32366,32367, 0,32367,32367,32367,32367,32367, 32367,32368, 0,32368,32368,32368,32368,32368,32368,32369, 0,32369,32369,32369,32369,32369,32369,32370, 0,32370, 32370,32370,32370,32370,32370,32371, 0,32371,32371,32371, 32371,32371,32371,32372, 0,32372,32372,32372,32372,32372, 32372,32373, 0,32373,32373,32373,32373,32373,32373,32374, 0,32374,32374,32374,32374,32374,32374,32375, 0,32375, 32375,32375,32375,32375,32375,32376, 0,32376,32376,32376, 32376,32376,32376,32377, 0,32377,32377,32377,32377,32377, 32377,32378, 0,32378,32378,32378,32378,32378,32378,32379, 0,32379,32379,32379,32379,32379,32379,32380, 0,32380, 32380,32380,32380,32380,32380,32381, 0,32381,32381,32381, 32381,32381,32381,32382, 0,32382,32382,32382,32382,32382, 32382,32383, 0,32383,32383,32383,32383,32383,32383,32384, 0,32384,32384,32384,32384,32384,32384,32385, 0,32385, 32385,32385,32385,32385,32385,32386, 0,32386,32386,32386, 32386,32386,32386,32387, 0,32387,32387,32387,32387,32387, 32387,32388, 0,32388,32388,32388,32388,32388,32388,32389, 0,32389,32389,32389,32389,32389,32389,32390, 0,32390, 32390,32390,32390,32390,32390,32391, 0,32391,32391,32391, 32391,32391,32391,32392, 0,32392,32392,32392,32392,32392, 32392,32393, 0,32393,32393,32393,32393,32393,32393,32394, 0,32394,32394,32394,32394,32394,32394,32395, 0,32395, 32395,32395,32395,32395,32395,32396, 0,32396,32396,32396, 32396,32396,32396,32397, 0,32397,32397,32397,32397,32397, 32397,32398, 0,32398,32398,32398,32398,32398,32398,32399, 0,32399,32399,32399,32399,32399,32399,32400, 0,32400, 32400,32400,32400,32400,32400,32401,32401,32401,32401,32401, 32401,32401,32401,32402, 0,32402,32402,32402,32402,32402, 32402,32403, 0,32403,32403,32403,32403,32403,32403,32404, 0,32404,32404,32404,32404,32404,32404,32405, 0,32405, 32405,32405,32405,32405,32405,32406, 0,32406,32406,32406, 32406,32406,32406,32407, 0,32407,32407,32407,32407,32407, 32407,32408,32408,32408,32408,32408,32408,32408,32408,32409, 0,32409,32409,32409,32409,32409,32409,32410,32410,32410, 32410,32410,32410,32410,32410,32411,32411,32411,32411,32411, 32411,32411,32411,32412, 0,32412,32412,32412,32412,32412, 32412,32413, 0,32413,32413,32413,32413,32413,32413,32414, 0,32414,32414,32414,32414,32414,32414,32415, 0,32415, 32415,32415,32415,32415,32415,32416, 0,32416,32416,32416, 32416,32416,32416,32417, 0,32417,32417,32417,32417,32417, 32417,32418, 0,32418,32418,32418,32418,32418,32418,32419, 0,32419,32419,32419,32419,32419,32419,32420, 0,32420, 32420,32420,32420,32420,32420,32421, 0,32421,32421,32421, 32421,32421,32421,32422, 0,32422,32422,32422,32422,32422, 32422,32423, 0,32423,32423,32423,32423,32423,32423,32424, 0,32424,32424,32424,32424,32424,32424,32425, 0,32425, 32425,32425,32425,32425,32425,32426, 0,32426,32426,32426, 32426,32426,32426,32427,32427,32427,32427,32427,32427,32427, 32427,32428, 0,32428,32428,32428,32428,32428,32428,32429, 0,32429,32429,32429,32429,32429,32429,32430, 0,32430, 32430,32430,32430,32430,32430,32431,32431,32431,32431,32431, 32431,32431,32431,32432, 0,32432,32432,32432,32432,32432, 32432,32433,32433,32433,32433,32433,32433,32433,32433,32434, 0,32434,32434,32434,32434,32434,32434,32435, 0,32435, 32435,32435,32435,32435,32435,32436, 0,32436,32436,32436, 32436,32436,32436,32437, 0,32437,32437,32437,32437,32437, 32437,32438, 0,32438,32438,32438,32438,32438,32438,32439, 0,32439,32439,32439,32439,32439,32439,32440, 0,32440, 32440,32440,32440,32440,32440,32441, 0,32441,32441,32441, 32441,32441,32441,32442, 0,32442,32442,32442,32442,32442, 32442,32443, 0,32443,32443,32443,32443,32443,32443,32444, 0,32444,32444,32444,32444,32444,32444,32445, 0,32445, 32445,32445,32445,32445,32445,32446, 0,32446,32446,32446, 32446,32446,32446,32447,32447,32447,32447,32447,32447,32447, 32447,32448, 0,32448,32448,32448,32448,32448,32448,32449, 0,32449,32449,32449,32449,32449,32449,32450, 0,32450, 32450,32450,32450,32450,32450,32451,32451,32451,32451,32451, 32451,32451,32451,32452,32452,32452,32452,32452,32452,32452, 32452,32453, 0,32453,32453,32453,32453,32453,32453,32454, 0,32454,32454,32454,32454,32454,32454,32455, 0,32455, 32455,32455,32455,32455,32455,32456, 0,32456,32456,32456, 32456,32456,32456,32457, 0,32457,32457,32457,32457,32457, 32457,32458,32458,32458,32458,32458,32458,32458,32458,32459, 32459,32459,32459,32459,32459,32459,32459,32460, 0,32460, 32460,32460,32460,32460,32460,32461, 0,32461,32461,32461, 32461,32461,32461,32462, 0,32462,32462,32462,32462,32462, 32462,32463, 0,32463,32463,32463,32463,32463,32463,32464, 0,32464,32464,32464,32464,32464,32464,32465, 0,32465, 32465,32465,32465,32465,32465,32466,32466,32466,32466,32466, 32466,32466,32466,32467,32467,32467,32467,32467,32467,32467, 32467,32468,32468,32468,32468,32468,32468,32468,32468,32469, 32469,32469,32469,32469,32469,32469,32469,32470,32470,32470, 32470,32470,32470,32470,32470,32471,32471,32471,32471,32471, 32471,32471,32471,32472, 0,32472,32472,32472,32472,32472, 32472,32473, 0,32473,32473,32473,32473,32473,32473,32474, 0,32474,32474,32474,32474,32474,32474,32475, 0,32475, 32475,32475,32475,32475,32475,32476, 0,32476,32476,32476, 32476,32476,32476,32477, 0,32477,32477,32477,32477,32477, 32477,32478, 0,32478,32478,32478,32478,32478,32478,32479, 0,32479,32479,32479,32479,32479,32479,32480, 0,32480, 32480,32480,32480,32480,32480,32481, 0,32481,32481,32481, 32481,32481,32481,32482, 0,32482,32482,32482,32482,32482, 32482,32483, 0,32483,32483,32483,32483,32483,32483,32484, 0,32484,32484,32484,32484,32484,32484,32485, 0,32485, 32485,32485,32485,32485,32485,32486, 0,32486,32486,32486, 32486,32486,32486,32487,32487,32487,32487,32487,32487,32487, 32487,32488, 0,32488,32488,32488,32488,32488,32488,32489, 32489,32489,32489,32489,32489,32489,32489,32490, 0,32490, 32490,32490,32490,32490,32490,32491,32491,32491,32491,32491, 32491,32491,32491,32492, 0,32492,32492,32492,32492,32492, 32492,32493,32493,32493,32493,32493,32493,32493,32493,32494, 0,32494,32494,32494,32494,32494,32494,32495,32495,32495, 32495,32495,32495,32495,32495,32496, 0,32496,32496,32496, 32496,32496,32496,32497,32497,32497,32497,32497,32497,32497, 32497,32498, 0,32498,32498,32498,32498,32498,32498,32499, 0,32499,32499,32499,32499,32499,32499,32500,32500,32500, 32500,32500,32500,32500,32500,32501,32501,32501,32501,32501, 32501,32501,32501,32502,32502,32502,32502,32502,32502,32502, 32502,32503, 0,32503,32503,32503,32503,32503,32503,32504, 32504,32504,32504,32504,32504,32504,32504,32505, 0,32505, 32505,32505,32505,32505,32505,32506, 0,32506,32506,32506, 32506,32506,32506,32507,32507,32507,32507,32507,32507,32507, 32507,32508, 0,32508,32508,32508,32508,32508,32508,32509, 32509,32509,32509,32509,32509,32509,32509,32510,32510,32510, 32510,32510,32510,32510,32510,32511, 0,32511,32511,32511, 32511,32511,32511,32512, 0,32512,32512,32512,32512,32512, 32512,32513, 0,32513,32513,32513,32513,32513,32513,32514, 0,32514,32514,32514,32514,32514,32514,32515, 0,32515, 32515,32515,32515,32515,32515,32516, 0,32516,32516,32516, 32516,32516,32516,32517, 0,32517,32517,32517,32517,32517, 32517,32518, 0,32518,32518,32518,32518,32518,32518,32519, 0,32519,32519,32519,32519,32519,32519,32520, 0,32520, 32520,32520,32520,32520,32520,32521, 0,32521,32521,32521, 32521,32521,32521,32522, 0,32522,32522,32522,32522,32522, 32522,32523, 0,32523,32523,32523,32523,32523,32523,32524, 32524,32524,32524,32524,32524,32524,32524,32525, 0,32525, 32525,32525,32525,32525,32525,32526,32526,32526,32526,32526, 32526,32526,32526,32527, 0,32527,32527,32527,32527,32527, 32527,32528, 0,32528,32528,32528,32528,32528,32528,32529, 0,32529,32529,32529,32529,32529,32529,32530, 0,32530, 32530,32530,32530,32530,32530,32531, 0,32531,32531,32531, 32531,32531,32531,32532, 0,32532,32532,32532,32532,32532, 32532,32533, 0,32533,32533,32533,32533,32533,32533,32534, 0,32534,32534,32534,32534,32534,32534,32535, 0,32535, 32535,32535,32535,32535,32535,32536, 0,32536,32536,32536, 32536,32536,32536,32537, 0,32537,32537,32537,32537,32537, 32537,32538, 0,32538,32538,32538,32538,32538,32538,32539, 0,32539,32539,32539,32539,32539,32539,32540, 0,32540, 32540,32540,32540,32540,32540,32541, 0,32541,32541,32541, 32541,32541,32541,32542, 0,32542,32542,32542,32542,32542, 32542,32543, 0,32543,32543,32543,32543,32543,32543,32544, 0,32544,32544,32544,32544,32544,32544,32545, 0,32545, 32545,32545,32545,32545,32545,32546, 0,32546,32546,32546, 32546,32546,32546,32547, 0,32547,32547,32547,32547,32547, 32547,32548, 0,32548,32548,32548,32548,32548,32548,32549, 0,32549,32549,32549,32549,32549,32549,32550, 0,32550, 32550,32550,32550,32550,32550,32551, 0,32551,32551,32551, 32551,32551,32551,32552, 0,32552,32552,32552,32552,32552, 32552,32553, 0,32553,32553,32553,32553,32553,32553,32554, 0,32554,32554,32554,32554,32554,32554,32555, 0,32555, 32555,32555,32555,32555,32555,32556, 0,32556,32556,32556, 32556,32556,32556,32557, 0,32557,32557,32557,32557,32557, 32557,32558, 0,32558,32558,32558,32558,32558,32558,32559, 0,32559,32559,32559,32559,32559,32559,32560, 0,32560, 32560,32560,32560,32560,32560,32561, 0,32561,32561,32561, 32561,32561,32561,32562, 0,32562,32562,32562,32562,32562, 32562,32563, 0,32563,32563,32563,32563,32563,32563,32564, 0,32564,32564,32564,32564,32564,32564,32565, 0,32565, 32565,32565,32565,32565,32565,32566, 0,32566,32566,32566, 32566,32566,32566,32567, 0,32567,32567,32567,32567,32567, 32567,32568, 0,32568,32568,32568,32568,32568,32568,32569, 0,32569,32569,32569,32569,32569,32569,32570, 0,32570, 32570,32570,32570,32570,32570,32571, 0,32571,32571,32571, 32571,32571,32571,32572, 0,32572,32572,32572,32572,32572, 32572,32573, 0,32573,32573,32573,32573,32573,32573,32574, 0,32574,32574,32574,32574,32574,32574,32575, 0,32575, 32575,32575,32575,32575,32575,32576, 0,32576,32576,32576, 32576,32576,32576,32577, 0,32577,32577,32577,32577,32577, 32577,32578, 0,32578,32578,32578,32578,32578,32578,32579, 0,32579,32579,32579,32579,32579,32579,32580, 0,32580, 32580,32580,32580,32580,32580,32581, 0,32581,32581,32581, 32581,32581,32581,32582, 0,32582,32582,32582,32582,32582, 32582,32583, 0,32583,32583,32583,32583,32583,32583,32584, 0,32584,32584,32584,32584,32584,32584,32585, 0,32585, 32585,32585,32585,32585,32585,32586, 0,32586,32586,32586, 32586,32586,32586,32587, 0,32587,32587,32587,32587,32587, 32587,32588, 0,32588,32588,32588,32588,32588,32588,32589, 0,32589,32589,32589,32589,32589,32589,32590, 0,32590, 32590,32590,32590,32590,32590,32591, 0,32591,32591,32591, 32591,32591,32591,32592, 0,32592,32592,32592,32592,32592, 32592,32593, 0,32593,32593,32593,32593,32593,32593,32594, 0,32594,32594,32594,32594,32594,32594,32595, 0,32595, 32595,32595,32595,32595,32595,32596, 0,32596,32596,32596, 32596,32596,32596,32597, 0,32597,32597,32597,32597,32597, 32597,32598, 0,32598,32598,32598,32598,32598,32598,32599, 0,32599,32599,32599,32599,32599,32599,32600, 0,32600, 32600,32600,32600,32600,32600,32601, 0,32601,32601,32601, 32601,32601,32601,32602, 0,32602,32602,32602,32602,32602, 32602,32603,32603,32603,32603,32603,32603,32603,32603,32604, 0,32604,32604,32604,32604,32604,32604,32605, 0,32605, 32605,32605,32605,32605,32605,32606, 0,32606,32606,32606, 32606,32606,32606,32607,32607,32607,32607,32607,32607,32607, 32607,32608, 0,32608,32608,32608,32608,32608,32608,32609, 32609,32609,32609,32609,32609,32609,32609,32610,32610,32610, 32610,32610,32610,32610,32610,32611, 0,32611,32611,32611, 32611,32611,32611,32612, 0,32612,32612,32612,32612,32612, 32612,32613, 0,32613,32613,32613,32613,32613,32613,32614, 0,32614,32614,32614,32614,32614,32614,32615, 0,32615, 32615,32615,32615,32615,32615,32616, 0,32616,32616,32616, 32616,32616,32616,32617,32617,32617,32617,32617,32617,32617, 32617,32618, 0,32618,32618,32618,32618,32618,32618,32619, 0,32619,32619,32619,32619,32619,32619,32620, 0,32620, 32620,32620,32620,32620,32620,32621,32621,32621,32621,32621, 32621,32621,32621,32622, 0,32622,32622,32622,32622,32622, 32622,32623, 0,32623,32623,32623,32623,32623,32623,32624, 0,32624,32624,32624,32624,32624,32624,32625, 0,32625, 32625,32625,32625,32625,32625,32626, 0,32626,32626,32626, 32626,32626,32626,32627, 0,32627,32627,32627,32627,32627, 32627,32628, 0,32628,32628,32628,32628,32628,32628,32629, 0,32629,32629,32629,32629,32629,32629,32630, 0,32630, 32630,32630,32630,32630,32630,32631, 0,32631,32631,32631, 32631,32631,32631,32632, 0,32632,32632,32632,32632,32632, 32632,32633, 0,32633,32633,32633,32633,32633,32633,32634, 32634,32634,32634,32634,32634,32634,32634,32635, 0,32635, 32635,32635,32635,32635,32635,32636, 0,32636,32636,32636, 32636,32636,32636,32637, 0,32637,32637,32637,32637,32637, 32637,32638, 0,32638,32638,32638,32638,32638,32638,32639, 32639,32639,32639,32639,32639,32639,32639,32640,32640,32640, 32640,32640, 0,32640,32640,32641,32641,32641,32641,32641, 32641,32641,32641,32642,32642,32642,32642,32642,32642,32642, 32642,32643, 0,32643,32643,32643,32643,32643,32643,32644, 0,32644,32644,32644,32644,32644,32644,32645, 0,32645, 32645,32645,32645,32645,32645,32646, 0,32646,32646,32646, 32646,32646,32646,32647, 0,32647,32647,32647,32647,32647, 32647,32648, 0,32648,32648,32648,32648,32648,32648,32649, 32649,32649,32649,32649,32649,32649,32649,32650,32650,32650, 32650,32650,32650,32650,32650,32651, 0,32651,32651,32651, 32651,32651,32651,32652, 0,32652,32652,32652,32652,32652, 32652,32653, 0,32653,32653,32653,32653,32653,32653,32654, 0,32654,32654,32654,32654,32654,32654,32655, 0,32655, 32655,32655,32655,32655,32655,32656, 0,32656,32656,32656, 32656,32656,32656,32657, 0,32657,32657,32657,32657,32657, 32657,32658,32658,32658,32658,32658,32658,32658,32658,32659, 32659,32659,32659,32659,32659,32659,32659,32660,32660,32660, 32660,32660,32660,32660,32660,32661,32661,32661,32661,32661, 32661,32661,32661,32662,32662,32662,32662,32662,32662,32662, 32662,32663,32663,32663,32663,32663,32663,32663,32663,32664, 0,32664,32664,32664,32664,32664,32664,32665, 0,32665, 32665,32665,32665,32665,32665,32666, 0,32666,32666,32666, 32666,32666,32666,32667, 0,32667,32667,32667,32667,32667, 32667,32668, 0,32668,32668,32668,32668,32668,32668,32669, 0,32669,32669,32669,32669,32669,32669,32670, 0,32670, 32670,32670,32670,32670,32670,32671, 0,32671,32671,32671, 32671,32671,32671,32672, 0,32672,32672,32672,32672,32672, 32672,32673, 0,32673,32673,32673,32673,32673,32673,32674, 0,32674,32674,32674,32674,32674,32674,32675, 0,32675, 32675,32675,32675,32675,32675,32676, 0,32676,32676,32676, 32676,32676,32676,32677, 0,32677,32677,32677,32677,32677, 32677,32678, 0,32678,32678,32678,32678,32678,32678,32679, 32679,32679,32679,32679,32679,32679,32679,32680, 0,32680, 32680,32680,32680,32680,32680,32681,32681,32681,32681,32681, 32681,32681,32681,32682,32682,32682,32682,32682,32682,32682, 32682,32683, 0,32683,32683,32683,32683,32683,32683,32684, 32684,32684,32684,32684,32684,32684,32684,32685, 0,32685, 32685,32685,32685,32685,32685,32686,32686,32686,32686,32686, 32686,32686,32686,32687, 0,32687,32687,32687,32687,32687, 32687,32688,32688,32688,32688,32688,32688,32688,32688,32689, 0,32689,32689,32689,32689,32689,32689,32690, 0,32690, 32690,32690,32690,32690,32690,32691,32691,32691,32691,32691, 32691,32691,32691,32692,32692,32692,32692,32692,32692,32692, 32692,32693, 0,32693,32693,32693,32693,32693,32693,32694, 32694,32694,32694,32694,32694,32694,32694,32695, 0,32695, 32695,32695,32695,32695,32695,32696,32696,32696,32696,32696, 32696,32696,32696,32697, 0,32697,32697,32697,32697,32697, 32697,32698,32698,32698,32698,32698,32698,32698,32698,32699, 0,32699,32699,32699,32699,32699,32699,32700,32700,32700, 32700,32700,32700,32700,32700,32701, 0,32701,32701,32701, 32701,32701,32701,32702,32702,32702,32702,32702,32702,32702, 32702,32703, 0,32703,32703,32703,32703,32703,32703,32704, 0,32704,32704,32704,32704,32704,32704,32705, 0,32705, 32705,32705,32705,32705,32705,32706, 0,32706,32706,32706, 32706,32706,32706,32707, 0,32707,32707,32707,32707,32707, 32707,32708, 0,32708,32708,32708,32708,32708,32708,32709, 0,32709,32709,32709,32709,32709,32709,32710, 0,32710, 32710,32710,32710,32710,32710,32711, 0,32711,32711,32711, 32711,32711,32711,32712, 0,32712,32712,32712,32712,32712, 32712,32713, 0,32713,32713,32713,32713,32713,32713,32714, 0,32714,32714,32714,32714,32714,32714,32715, 0,32715, 32715,32715,32715,32715,32715,32716, 0,32716,32716,32716, 32716,32716,32716,32717, 0,32717,32717,32717,32717,32717, 32717,32718, 0,32718,32718,32718,32718,32718,32718,32719, 0,32719,32719,32719,32719,32719,32719,32720, 0,32720, 32720,32720,32720,32720,32720,32721, 0,32721,32721,32721, 32721,32721,32721,32722, 0,32722,32722,32722,32722,32722, 32722,32723, 0,32723,32723,32723,32723,32723,32723,32724, 0,32724,32724,32724,32724,32724,32724,32725, 0,32725, 32725,32725,32725,32725,32725,32726, 0,32726,32726,32726, 32726,32726,32726,32727, 0,32727,32727,32727,32727,32727, 32727,32728, 0,32728,32728,32728,32728,32728,32728,32729, 0,32729,32729,32729,32729,32729,32729,32730, 0,32730, 32730,32730,32730,32730,32730,32731, 0,32731,32731,32731, 32731,32731,32731,32732, 0,32732,32732,32732,32732,32732, 32732,32733, 0,32733,32733,32733,32733,32733,32733,32734, 0,32734,32734,32734,32734,32734,32734,32735, 0,32735, 32735,32735,32735,32735,32735,32736, 0,32736,32736,32736, 32736,32736,32736,32737, 0,32737,32737,32737,32737,32737, 32737,32738, 0,32738,32738,32738,32738,32738,32738,32739, 0,32739,32739,32739,32739,32739,32739,32740, 0,32740, 32740,32740,32740,32740,32740,32741, 0,32741,32741,32741, 32741,32741,32741,32742, 0,32742,32742,32742,32742,32742, 32742,32743, 0,32743,32743,32743,32743,32743,32743,32744, 0,32744,32744,32744,32744,32744,32744,32745, 0,32745, 32745,32745,32745,32745,32745,32746, 0,32746,32746,32746, 32746,32746,32746,32747, 0,32747,32747,32747,32747,32747, 32747,32748, 0,32748,32748,32748,32748,32748,32748,32749, 0,32749,32749,32749,32749,32749,32749,32750, 0,32750, 32750,32750,32750,32750,32750,32751, 0,32751,32751,32751, 32751,32751,32751,32752, 0,32752,32752,32752,32752,32752, 32752,32753, 0,32753,32753,32753,32753,32753,32753,32754, 0,32754,32754,32754,32754,32754,32754,32755, 0,32755, 32755,32755,32755,32755,32755,32756, 0,32756,32756,32756, 32756,32756,32756,32757, 0,32757,32757,32757,32757,32757, 32757,32758, 0,32758,32758,32758,32758,32758,32758,32759, 0,32759,32759,32759,32759,32759,32759,32760, 0,32760, 32760,32760,32760,32760,32760,32761, 0,32761,32761,32761, 32761,32761,32761,32762, 0,32762,32762,32762,32762,32762, 32762,32763, 0,32763,32763,32763,32763,32763,32763,32764, 0,32764,32764,32764,32764,32764,32764,32765, 0,32765, 32765,32765,32765,32765,32765,32766, 0,32766,32766,32766, 32766,32766,32766,32767, 0,32767,32767,32767,32767,32767, 32767,32768, 0,32768,32768,32768,32768,32768,32768,32769, 0,32769,32769,32769,32769,32769,32769,32770, 0,32770, 32770,32770,32770,32770,32770,32771, 0,32771,32771,32771, 32771,32771,32771,32772, 0,32772,32772,32772,32772,32772, 32772,32773, 0,32773,32773,32773,32773,32773,32773,32774, 0,32774,32774,32774,32774,32774,32774,32775, 0,32775, 32775,32775,32775,32775,32775,32776, 0,32776,32776,32776, 32776,32776,32776,32777, 0,32777,32777,32777,32777,32777, 32777,32778,32778,32778,32778,32778,32778,32778,32778,32779, 0,32779,32779,32779,32779,32779,32779,32780, 0,32780, 32780,32780,32780,32780,32780,32781, 0,32781,32781,32781, 32781,32781,32781,32782, 0,32782,32782,32782,32782,32782, 32782,32783,32783,32783,32783,32783,32783,32783,32783,32784, 0,32784,32784,32784,32784,32784,32784,32785, 0,32785, 32785,32785,32785,32785,32785,32786,32786,32786,32786,32786, 32786,32786,32786,32787,32787,32787,32787,32787,32787,32787, 32787,32788, 0,32788,32788,32788,32788,32788,32788,32789, 0,32789,32789,32789,32789,32789,32789,32790, 0,32790, 32790,32790,32790,32790,32790,32791,32791,32791,32791,32791, 32791,32791,32791,32792, 0,32792,32792,32792,32792,32792, 32792,32793, 0,32793,32793,32793,32793,32793,32793,32794, 0,32794,32794,32794,32794,32794,32794,32795,32795,32795, 32795,32795,32795,32795,32795,32796,32796,32796,32796,32796, 32796,32796,32796,32797,32797,32797,32797,32797,32797,32797, 32797,32798, 0,32798,32798,32798,32798,32798,32798,32799, 0,32799,32799,32799,32799,32799,32799,32800, 0,32800, 32800,32800,32800,32800,32800,32801, 0,32801,32801,32801, 32801,32801,32801,32802, 0,32802,32802,32802,32802,32802, 32802,32803, 0,32803,32803,32803,32803,32803,32803,32804, 0,32804,32804,32804,32804,32804,32804,32805, 0,32805, 32805,32805,32805,32805,32805,32806, 0,32806,32806,32806, 32806,32806,32806,32807, 0,32807,32807,32807,32807,32807, 32807,32808, 0,32808,32808,32808,32808,32808,32808,32809, 0,32809,32809,32809,32809,32809,32809,32810, 0,32810, 32810,32810,32810,32810,32810,32811, 0,32811,32811,32811, 32811,32811,32811,32812, 0,32812,32812,32812,32812,32812, 32812,32813,32813,32813,32813,32813,32813,32813,32813,32814, 0,32814,32814,32814,32814,32814,32814,32815, 0,32815, 32815,32815,32815,32815,32815,32816, 0,32816,32816,32816, 32816,32816,32816,32817, 0,32817,32817,32817,32817,32817, 32817,32818,32818,32818,32818,32818,32818,32818,32818,32819, 0,32819,32819,32819,32819,32819,32819,32820,32820,32820, 32820,32820,32820,32820,32820,32821,32821,32821,32821,32821, 32821,32821,32821,32822, 0,32822,32822,32822,32822,32822, 32822,32823, 0,32823,32823,32823,32823,32823,32823,32824, 0,32824,32824,32824,32824,32824,32824,32825, 0,32825, 32825,32825,32825,32825,32825,32826, 0,32826,32826,32826, 32826,32826,32826,32827, 0,32827,32827,32827,32827,32827, 32827,32828,32828,32828,32828,32828,32828,32828,32828,32829, 0,32829,32829,32829,32829,32829,32829,32830, 0,32830, 32830,32830,32830,32830,32830,32831, 0,32831,32831,32831, 32831,32831,32831,32832, 0,32832,32832,32832,32832,32832, 32832,32833, 0,32833,32833,32833,32833,32833,32833,32834, 0,32834,32834,32834,32834,32834,32834,32835, 0,32835, 32835,32835,32835,32835,32835,32836,32836,32836,32836,32836, 32836,32836,32836,32837,32837,32837,32837,32837,32837,32837, 32837,32838,32838,32838,32838,32838,32838,32838,32838,32839, 32839,32839,32839,32839,32839,32839,32839,32840,32840,32840, 32840,32840,32840,32840,32840,32841, 0,32841,32841,32841, 32841,32841,32841,32842, 0,32842,32842,32842,32842,32842, 32842,32843, 0,32843,32843,32843,32843,32843,32843,32844, 0,32844,32844,32844,32844,32844,32844,32845, 0,32845, 32845,32845,32845,32845,32845,32846, 0,32846,32846,32846, 32846,32846,32846,32847, 0,32847,32847,32847,32847,32847, 32847,32848, 0,32848,32848,32848,32848,32848,32848,32849, 0,32849,32849,32849,32849,32849,32849,32850, 0,32850, 32850,32850,32850,32850,32850,32851, 0,32851,32851,32851, 32851,32851,32851,32852, 0,32852,32852,32852,32852,32852, 32852,32853, 0,32853,32853,32853,32853,32853,32853,32854, 0,32854,32854,32854,32854,32854,32854,32855, 0,32855, 32855,32855,32855,32855,32855,32856,32856,32856,32856,32856, 32856,32856,32856,32857, 0,32857,32857,32857,32857,32857, 32857,32858,32858,32858,32858,32858,32858,32858,32858,32859, 32859,32859,32859,32859,32859,32859,32859,32860, 0,32860, 32860,32860,32860,32860,32860,32861,32861,32861,32861,32861, 32861,32861,32861,32862, 0,32862,32862,32862,32862,32862, 32862,32863,32863,32863,32863,32863,32863,32863,32863,32864, 0,32864,32864,32864,32864,32864,32864,32865,32865,32865, 32865,32865,32865,32865,32865,32866, 0,32866,32866,32866, 32866,32866,32866,32867, 0,32867,32867,32867,32867,32867, 32867,32868,32868,32868,32868,32868,32868,32868,32868,32869, 32869,32869,32869,32869,32869,32869,32869,32870, 0,32870, 32870,32870,32870,32870,32870,32871,32871,32871,32871,32871, 32871,32871,32871,32872, 0,32872,32872,32872,32872,32872, 32872,32873,32873,32873,32873,32873,32873,32873,32873,32874, 0,32874,32874,32874,32874,32874,32874,32875,32875,32875, 32875,32875,32875,32875,32875,32876, 0,32876,32876,32876, 32876,32876,32876,32877,32877,32877,32877,32877,32877,32877, 32877,32878, 0,32878,32878,32878,32878,32878,32878,32879, 32879,32879,32879,32879,32879,32879,32879,32880, 0,32880, 32880,32880,32880,32880,32880,32881, 0,32881,32881,32881, 32881,32881,32881,32882, 0,32882,32882,32882,32882,32882, 32882,32883, 0,32883,32883,32883,32883,32883,32883,32884, 0,32884,32884,32884,32884,32884,32884,32885, 0,32885, 32885,32885,32885,32885,32885,32886, 0,32886,32886,32886, 32886,32886,32886,32887, 0,32887,32887,32887,32887,32887, 32887,32888, 0,32888,32888,32888,32888,32888,32888,32889, 0,32889,32889,32889,32889,32889,32889,32890, 0,32890, 32890,32890,32890,32890,32890,32891, 0,32891,32891,32891, 32891,32891,32891,32892, 0,32892,32892,32892,32892,32892, 32892,32893, 0,32893,32893,32893,32893,32893,32893,32894, 0,32894,32894,32894,32894,32894,32894,32895, 0,32895, 32895,32895,32895,32895,32895,32896, 0,32896,32896,32896, 32896,32896,32896,32897, 0,32897,32897,32897,32897,32897, 32897,32898, 0,32898,32898,32898,32898,32898,32898,32899, 0,32899,32899,32899,32899,32899,32899,32900, 0,32900, 32900,32900,32900,32900,32900,32901, 0,32901,32901,32901, 32901,32901,32901,32902, 0,32902,32902,32902,32902,32902, 32902,32903, 0,32903,32903,32903,32903,32903,32903,32904, 0,32904,32904,32904,32904,32904,32904,32905, 0,32905, 32905,32905,32905,32905,32905,32906, 0,32906,32906,32906, 32906,32906,32906,32907, 0,32907,32907,32907,32907,32907, 32907,32908, 0,32908,32908,32908,32908,32908,32908,32909, 0,32909,32909,32909,32909,32909,32909,32910, 0,32910, 32910,32910,32910,32910,32910,32911, 0,32911,32911,32911, 32911,32911,32911,32912, 0,32912,32912,32912,32912,32912, 32912,32913, 0,32913,32913,32913,32913,32913,32913,32914, 0,32914,32914,32914,32914,32914,32914,32915, 0,32915, 32915,32915,32915,32915,32915,32916, 0,32916,32916,32916, 32916,32916,32916,32917, 0,32917,32917,32917,32917,32917, 32917,32918, 0,32918,32918,32918,32918,32918,32918,32919, 0,32919,32919,32919,32919,32919,32919,32920, 0,32920, 32920,32920,32920,32920,32920,32921, 0,32921,32921,32921, 32921,32921,32921,32922, 0,32922,32922,32922,32922,32922, 32922,32923, 0,32923,32923,32923,32923,32923,32923,32924, 0,32924,32924,32924,32924,32924,32924,32925, 0,32925, 32925,32925,32925,32925,32925,32926, 0,32926,32926,32926, 32926,32926,32926,32927, 0,32927,32927,32927,32927,32927, 32927,32928, 0,32928,32928,32928,32928,32928,32928,32929, 0,32929,32929,32929,32929,32929,32929,32930, 0,32930, 32930,32930,32930,32930,32930,32931, 0,32931,32931,32931, 32931,32931,32931,32932, 0,32932,32932,32932,32932,32932, 32932,32933, 0,32933,32933,32933,32933,32933,32933,32934, 0,32934,32934,32934,32934,32934,32934,32935, 0,32935, 32935,32935,32935,32935,32935,32936, 0,32936,32936,32936, 32936,32936,32936,32937, 0,32937,32937,32937,32937,32937, 32937,32938, 0,32938,32938,32938,32938,32938,32938,32939, 0,32939,32939,32939,32939,32939,32939,32940, 0,32940, 32940,32940,32940,32940,32940,32941, 0,32941,32941,32941, 32941,32941,32941,32942, 0,32942,32942,32942,32942,32942, 32942,32943, 0,32943,32943,32943,32943,32943,32943,32944, 0,32944,32944,32944,32944,32944,32944,32945, 0,32945, 32945,32945,32945,32945,32945,32946, 0,32946,32946,32946, 32946,32946,32946,32947, 0,32947,32947,32947,32947,32947, 32947,32948, 0,32948,32948,32948,32948,32948,32948,32949, 32949,32949,32949,32949,32949,32949,32949,32950, 0,32950, 32950,32950,32950,32950,32950,32951, 0,32951,32951,32951, 32951,32951,32951,32952, 0,32952,32952,32952,32952,32952, 32952,32953, 0,32953,32953,32953,32953,32953,32953,32954, 0,32954,32954,32954,32954,32954,32954,32955,32955,32955, 32955,32955,32955,32955,32955,32956, 0,32956,32956,32956, 32956,32956,32956,32957,32957,32957,32957,32957,32957,32957, 32957,32958,32958,32958,32958,32958,32958,32958,32958,32959, 0,32959,32959,32959,32959,32959,32959,32960, 0,32960, 32960,32960,32960,32960,32960,32961, 0,32961,32961,32961, 32961,32961,32961,32962, 0,32962,32962,32962,32962,32962, 32962,32963,32963,32963,32963,32963,32963,32963,32963,32964, 0,32964,32964,32964,32964,32964,32964,32965, 0,32965, 32965,32965,32965,32965,32965,32966, 0,32966,32966,32966, 32966,32966,32966,32967, 0,32967,32967,32967,32967,32967, 32967,32968,32968,32968,32968,32968,32968,32968,32968,32969, 32969,32969,32969,32969,32969,32969,32969,32970,32970,32970, 32970,32970,32970,32970,32970,32971, 0,32971,32971,32971, 32971,32971,32971,32972, 0,32972,32972,32972,32972,32972, 32972,32973, 0,32973,32973,32973,32973,32973,32973,32974, 0,32974,32974,32974,32974,32974,32974,32975, 0,32975, 32975,32975,32975,32975,32975,32976, 0,32976,32976,32976, 32976,32976,32976,32977,32977,32977,32977,32977,32977,32977, 32977,32978, 0,32978,32978,32978,32978,32978,32978,32979, 0,32979,32979,32979,32979,32979,32979,32980, 0,32980, 32980,32980,32980,32980,32980,32981,32981,32981,32981,32981, 32981,32981,32981,32982, 0,32982,32982,32982,32982,32982, 32982,32983,32983,32983,32983,32983,32983,32983,32983,32984, 32984,32984,32984,32984,32984,32984,32984,32985, 0,32985, 32985,32985,32985,32985,32985,32986, 0,32986,32986,32986, 32986,32986,32986,32987, 0,32987,32987,32987,32987,32987, 32987,32988, 0,32988,32988,32988,32988,32988,32988,32989, 0,32989,32989,32989,32989,32989,32989,32990, 0,32990, 32990,32990,32990,32990,32990,32991, 0,32991,32991,32991, 32991,32991,32991,32992, 0,32992,32992,32992,32992,32992, 32992,32993, 0,32993,32993,32993,32993,32993,32993,32994, 0,32994,32994,32994,32994,32994,32994,32995, 0,32995, 32995,32995,32995,32995,32995,32996, 0,32996,32996,32996, 32996,32996,32996,32997, 0,32997,32997,32997,32997,32997, 32997,32998,32998,32998,32998,32998,32998,32998,32998,32999, 32999,32999,32999,32999,32999,32999,32999,33000,33000,33000, 33000,33000,33000,33000,33000,33001,33001,33001,33001,33001, 33001,33001,33001,33002, 0,33002,33002,33002,33002,33002, 33002,33003, 0,33003,33003,33003,33003,33003,33003,33004, 0,33004,33004,33004,33004,33004,33004,33005, 0,33005, 33005,33005,33005,33005,33005,33006, 0,33006,33006,33006, 33006,33006,33006,33007, 0,33007,33007,33007,33007,33007, 33007,33008, 0,33008,33008,33008,33008,33008,33008,33009, 0,33009,33009,33009,33009,33009,33009,33010, 0,33010, 33010,33010,33010,33010,33010,33011, 0,33011,33011,33011, 33011,33011,33011,33012, 0,33012,33012,33012,33012,33012, 33012,33013, 0,33013,33013,33013,33013,33013,33013,33014, 0,33014,33014,33014,33014,33014,33014,33015, 0,33015, 33015,33015,33015,33015,33015,33016, 0,33016,33016,33016, 33016,33016,33016,33017,33017,33017,33017,33017,33017,33017, 33017,33018, 0,33018,33018,33018,33018,33018,33018,33019, 33019,33019,33019,33019,33019,33019,33019,33020,33020,33020, 33020,33020,33020,33020,33020,33021, 0,33021,33021,33021, 33021,33021,33021,33022,33022,33022,33022,33022,33022,33022, 33022,33023, 0,33023,33023,33023,33023,33023,33023,33024, 33024,33024,33024,33024,33024,33024,33024,33025, 0,33025, 33025,33025,33025,33025,33025,33026,33026,33026,33026,33026, 33026,33026,33026,33027, 0,33027,33027,33027,33027,33027, 33027,33028, 0,33028,33028,33028,33028,33028,33028,33029, 33029,33029,33029,33029,33029,33029,33029,33030,33030,33030, 33030,33030,33030,33030,33030,33031, 0,33031,33031,33031, 33031,33031,33031,33032,33032,33032,33032,33032,33032,33032, 33032,33033, 0,33033,33033,33033,33033,33033,33033,33034, 33034,33034,33034,33034,33034,33034,33034,33035, 0,33035, 33035,33035,33035,33035,33035,33036,33036,33036,33036,33036, 33036,33036,33036,33037, 0,33037,33037,33037,33037,33037, 33037,33038,33038,33038,33038,33038,33038,33038,33038,33039, 33039,33039,33039,33039,33039,33039,33039,33040, 0,33040, 33040,33040,33040,33040,33040,33041, 0,33041,33041,33041, 33041,33041,33041,33042, 0,33042,33042,33042,33042,33042, 33042,33043, 0,33043,33043,33043,33043,33043,33043,33044, 0,33044,33044,33044,33044,33044,33044,33045, 0,33045, 33045,33045,33045,33045,33045,33046, 0,33046,33046,33046, 33046,33046,33046,33047, 0,33047,33047,33047,33047,33047, 33047,33048, 0,33048,33048,33048,33048,33048,33048,33049, 0,33049,33049,33049,33049,33049,33049,33050, 0,33050, 33050,33050,33050,33050,33050,33051, 0,33051,33051,33051, 33051,33051,33051,33052, 0,33052,33052,33052,33052,33052, 33052,33053, 0,33053,33053,33053,33053,33053,33053,33054, 0,33054,33054,33054,33054,33054,33054,33055, 0,33055, 33055,33055,33055,33055,33055,33056, 0,33056,33056,33056, 33056,33056,33056,33057, 0,33057,33057,33057,33057,33057, 33057,33058, 0,33058,33058,33058,33058,33058,33058,33059, 0,33059,33059,33059,33059,33059,33059,33060, 0,33060, 33060,33060,33060,33060,33060,33061, 0,33061,33061,33061, 33061,33061,33061,33062, 0,33062,33062,33062,33062,33062, 33062,33063, 0,33063,33063,33063,33063,33063,33063,33064, 0,33064,33064,33064,33064,33064,33064,33065, 0,33065, 33065,33065,33065,33065,33065,33066, 0,33066,33066,33066, 33066,33066,33066,33067, 0,33067,33067,33067,33067,33067, 33067,33068, 0,33068,33068,33068,33068,33068,33068,33069, 0,33069,33069,33069,33069,33069,33069,33070, 0,33070, 33070,33070,33070,33070,33070,33071, 0,33071,33071,33071, 33071,33071,33071,33072, 0,33072,33072,33072,33072,33072, 33072,33073, 0,33073,33073,33073,33073,33073,33073,33074, 0,33074,33074,33074,33074,33074,33074,33075, 0,33075, 33075,33075,33075,33075,33075,33076, 0,33076,33076,33076, 33076,33076,33076,33077, 0,33077,33077,33077,33077,33077, 33077,33078, 0,33078,33078,33078,33078,33078,33078,33079, 0,33079,33079,33079,33079,33079,33079,33080, 0,33080, 33080,33080,33080,33080,33080,33081, 0,33081,33081,33081, 33081,33081,33081,33082, 0,33082,33082,33082,33082,33082, 33082,33083, 0,33083,33083,33083,33083,33083,33083,33084, 0,33084,33084,33084,33084,33084,33084,33085, 0,33085, 33085,33085,33085,33085,33085,33086, 0,33086,33086,33086, 33086,33086,33086,33087, 0,33087,33087,33087,33087,33087, 33087,33088, 0,33088,33088,33088,33088,33088,33088,33089, 0,33089,33089,33089,33089,33089,33089,33090, 0,33090, 33090,33090,33090,33090,33090,33091, 0,33091,33091,33091, 33091,33091,33091,33092, 0,33092,33092,33092,33092,33092, 33092,33093, 0,33093,33093,33093,33093,33093,33093,33094, 0,33094,33094,33094,33094,33094,33094,33095, 0,33095, 33095,33095,33095,33095,33095,33096, 0,33096,33096,33096, 33096,33096,33096,33097, 0,33097,33097,33097,33097,33097, 33097,33098, 0,33098,33098,33098,33098,33098,33098,33099, 0,33099,33099,33099,33099,33099,33099,33100, 0,33100, 33100,33100,33100,33100,33100,33101, 0,33101,33101,33101, 33101,33101,33101,33102, 0,33102,33102,33102,33102,33102, 33102,33103, 0,33103,33103,33103,33103,33103,33103,33104, 33104,33104,33104,33104,33104,33104,33104,33105, 0,33105, 33105,33105,33105,33105,33105,33106, 0,33106,33106,33106, 33106,33106,33106,33107, 0,33107,33107,33107,33107,33107, 33107,33108,33108,33108,33108,33108,33108,33108,33108,33109, 0,33109,33109,33109,33109,33109,33109,33110,33110,33110, 33110,33110,33110,33110,33110,33111,33111,33111,33111,33111, 33111,33111,33111,33112,33112,33112,33112,33112,33112,33112, 33112,33113, 0,33113,33113,33113,33113,33113,33113,33114, 0,33114,33114,33114,33114,33114,33114,33115, 0,33115, 33115,33115,33115,33115,33115,33116, 0,33116,33116,33116, 33116,33116,33116,33117, 0,33117,33117,33117,33117,33117, 33117,33118,33118,33118,33118,33118,33118,33118,33118,33119, 0,33119,33119,33119,33119,33119,33119,33120, 0,33120, 33120,33120,33120,33120,33120,33121, 0,33121,33121,33121, 33121,33121,33121,33122,33122,33122,33122,33122,33122,33122, 33122,33123,33123,33123,33123,33123,33123,33123,33123,33124, 0,33124,33124,33124,33124,33124,33124,33125, 0,33125, 33125,33125,33125,33125,33125,33126, 0,33126,33126,33126, 33126,33126,33126,33127,33127,33127,33127,33127,33127,33127, 33127,33128, 0,33128,33128,33128,33128,33128,33128,33129, 0,33129,33129,33129,33129,33129,33129,33130, 0,33130, 33130,33130,33130,33130,33130,33131,33131,33131,33131,33131, 33131,33131,33131,33132, 0,33132,33132,33132,33132,33132, 33132,33133,33133,33133,33133,33133,33133,33133,33133,33134, 33134,33134,33134,33134,33134,33134,33134,33135, 0,33135, 33135,33135,33135,33135,33135,33136, 0,33136,33136,33136, 33136,33136,33136,33137, 0,33137,33137,33137,33137,33137, 33137,33138, 0,33138,33138,33138,33138,33138,33138,33139, 0,33139,33139,33139,33139,33139,33139,33140, 0,33140, 33140,33140,33140,33140,33140,33141, 0,33141,33141,33141, 33141,33141,33141,33142, 0,33142,33142,33142,33142,33142, 33142,33143, 0,33143,33143,33143,33143,33143,33143,33144, 0,33144,33144,33144,33144,33144,33144,33145, 0,33145, 33145,33145,33145,33145,33145,33146,33146,33146,33146,33146, 33146,33146,33146,33147,33147,33147,33147,33147,33147,33147, 33147,33148,33148,33148,33148,33148,33148,33148,33148,33149, 33149,33149,33149,33149,33149,33149,33149,33150, 0,33150, 33150,33150,33150,33150,33150,33151, 0,33151,33151,33151, 33151,33151,33151,33152, 0,33152,33152,33152,33152,33152, 33152,33153, 0,33153,33153,33153,33153,33153,33153,33154, 0,33154,33154,33154,33154,33154,33154,33155, 0,33155, 33155,33155,33155,33155,33155,33156, 0,33156,33156,33156, 33156,33156,33156,33157, 0,33157,33157,33157,33157,33157, 33157,33158, 0,33158,33158,33158,33158,33158,33158,33159, 0,33159,33159,33159,33159,33159,33159,33160, 0,33160, 33160,33160,33160,33160,33160,33161,33161,33161,33161,33161, 33161,33161,33161,33162,33162,33162,33162,33162,33162,33162, 33162,33163,33163,33163,33163,33163,33163,33163,33163,33164, 0,33164,33164,33164,33164,33164,33164,33165,33165,33165, 33165,33165,33165,33165,33165,33166, 0,33166,33166,33166, 33166,33166,33166,33167,33167,33167,33167,33167,33167,33167, 33167,33168, 0,33168,33168,33168,33168,33168,33168,33169, 33169,33169,33169,33169,33169,33169,33169,33170, 0,33170, 33170,33170,33170,33170,33170,33171, 0,33171,33171,33171, 33171,33171,33171,33172,33172,33172,33172,33172,33172,33172, 33172,33173,33173,33173,33173,33173,33173,33173,33173,33174, 0,33174,33174,33174,33174,33174,33174,33175,33175,33175, 33175,33175,33175,33175,33175,33176, 0,33176,33176,33176, 33176,33176,33176,33177,33177,33177,33177,33177,33177,33177, 33177,33178, 0,33178,33178,33178,33178,33178,33178,33179, 33179,33179,33179,33179,33179,33179,33179,33180, 0,33180, 33180,33180,33180,33180,33180,33181,33181,33181,33181,33181, 33181,33181,33181,33182,33182,33182,33182,33182,33182,33182, 33182,33183, 0,33183,33183,33183,33183,33183,33183,33184, 0,33184,33184,33184,33184,33184,33184,33185, 0,33185, 33185,33185,33185,33185,33185,33186, 0,33186,33186,33186, 33186,33186,33186,33187, 0,33187,33187,33187,33187,33187, 33187,33188, 0,33188,33188,33188,33188,33188,33188,33189, 0,33189,33189,33189,33189,33189,33189,33190, 0,33190, 33190,33190,33190,33190,33190,33191, 0,33191,33191,33191, 33191,33191,33191,33192, 0,33192,33192,33192,33192,33192, 33192,33193, 0,33193,33193,33193,33193,33193,33193,33194, 0,33194,33194,33194,33194,33194,33194,33195, 0,33195, 33195,33195,33195,33195,33195,33196, 0,33196,33196,33196, 33196,33196,33196,33197, 0,33197,33197,33197,33197,33197, 33197,33198, 0,33198,33198,33198,33198,33198,33198,33199, 0,33199,33199,33199,33199,33199,33199,33200, 0,33200, 33200,33200,33200,33200,33200,33201, 0,33201,33201,33201, 33201,33201,33201,33202, 0,33202,33202,33202,33202,33202, 33202,33203, 0,33203,33203,33203,33203,33203,33203,33204, 0,33204,33204,33204,33204,33204,33204,33205, 0,33205, 33205,33205,33205,33205,33205,33206, 0,33206,33206,33206, 33206,33206,33206,33207, 0,33207,33207,33207,33207,33207, 33207,33208, 0,33208,33208,33208,33208,33208,33208,33209, 0,33209,33209,33209,33209,33209,33209,33210, 0,33210, 33210,33210,33210,33210,33210,33211, 0,33211,33211,33211, 33211,33211,33211,33212, 0,33212,33212,33212,33212,33212, 33212,33213, 0,33213,33213,33213,33213,33213,33213,33214, 0,33214,33214,33214,33214,33214,33214,33215, 0,33215, 33215,33215,33215,33215,33215,33216, 0,33216,33216,33216, 33216,33216,33216,33217, 0,33217,33217,33217,33217,33217, 33217,33218, 0,33218,33218,33218,33218,33218,33218,33219, 0,33219,33219,33219,33219,33219,33219,33220, 0,33220, 33220,33220,33220,33220,33220,33221, 0,33221,33221,33221, 33221,33221,33221,33222, 0,33222,33222,33222,33222,33222, 33222,33223, 0,33223,33223,33223,33223,33223,33223,33224, 0,33224,33224,33224,33224,33224,33224,33225, 0,33225, 33225,33225,33225,33225,33225,33226, 0,33226,33226,33226, 33226,33226,33226,33227, 0,33227,33227,33227,33227,33227, 33227,33228, 0,33228,33228,33228,33228,33228,33228,33229, 0,33229,33229,33229,33229,33229,33229,33230, 0,33230, 33230,33230,33230,33230,33230,33231, 0,33231,33231,33231, 33231,33231,33231,33232, 0,33232,33232,33232,33232,33232, 33232,33233, 0,33233,33233,33233,33233,33233,33233,33234, 0,33234,33234,33234,33234,33234,33234,33235, 0,33235, 33235,33235,33235,33235,33235,33236, 0,33236,33236,33236, 33236,33236,33236,33237, 0,33237,33237,33237,33237,33237, 33237,33238, 0,33238,33238,33238,33238,33238,33238,33239, 0,33239,33239,33239,33239,33239,33239,33240,33240,33240, 33240,33240,33240,33240,33240,33241, 0,33241,33241,33241, 33241,33241,33241,33242, 0,33242,33242,33242,33242,33242, 33242,33243,33243,33243,33243,33243,33243,33243,33243,33244, 0,33244,33244,33244,33244,33244,33244,33245,33245,33245, 33245,33245,33245,33245,33245,33246,33246,33246,33246,33246, 33246,33246,33246,33247,33247,33247,33247,33247,33247,33247, 33247,33248, 0,33248,33248,33248,33248,33248,33248,33249, 0,33249,33249,33249,33249,33249,33249,33250, 0,33250, 33250,33250,33250,33250,33250,33251,33251,33251,33251,33251, 33251,33251,33251,33252, 0,33252,33252,33252,33252,33252, 33252,33253, 0,33253,33253,33253,33253,33253,33253,33254, 33254,33254,33254,33254,33254,33254,33254,33255,33255,33255, 33255,33255,33255,33255,33255,33256, 0,33256,33256,33256, 33256,33256,33256,33257, 0,33257,33257,33257,33257,33257, 33257,33258, 0,33258,33258,33258,33258,33258,33258,33259, 0,33259,33259,33259,33259,33259,33259,33260,33260,33260, 33260,33260,33260,33260,33260,33261, 0,33261,33261,33261, 33261,33261,33261,33262, 0,33262,33262,33262,33262,33262, 33262,33263, 0,33263,33263,33263,33263,33263,33263,33264, 0,33264,33264,33264,33264,33264,33264,33265,33265,33265, 33265,33265,33265,33265,33265,33266, 0,33266,33266,33266, 33266,33266,33266,33267,33267,33267,33267,33267,33267,33267, 33267,33268,33268,33268,33268,33268,33268,33268,33268,33269, 33269,33269,33269,33269,33269,33269,33269,33270, 0,33270, 33270,33270,33270,33270,33270,33271, 0,33271,33271,33271, 33271,33271,33271,33272, 0,33272,33272,33272,33272,33272, 33272,33273, 0,33273,33273,33273,33273,33273,33273,33274, 0,33274,33274,33274,33274,33274,33274,33275, 0,33275, 33275,33275,33275,33275,33275,33276, 0,33276,33276,33276, 33276,33276,33276,33277, 0,33277,33277,33277,33277,33277, 33277,33278, 0,33278,33278,33278,33278,33278,33278,33279, 0,33279,33279,33279,33279,33279,33279,33280, 0,33280, 33280,33280,33280,33280,33280,33281,33281,33281,33281,33281, 33281,33281,33281,33282,33282,33282,33282,33282,33282,33282, 33282,33283,33283,33283,33283,33283,33283,33283,33283,33284, 33284,33284,33284,33284,33284,33284,33284,33285, 0,33285, 33285,33285,33285,33285,33285,33286, 0,33286,33286,33286, 33286,33286,33286,33287, 0,33287,33287,33287,33287,33287, 33287,33288, 0,33288,33288,33288,33288,33288,33288,33289, 0,33289,33289,33289,33289,33289,33289,33290, 0,33290, 33290,33290,33290,33290,33290,33291, 0,33291,33291,33291, 33291,33291,33291,33292, 0,33292,33292,33292,33292,33292, 33292,33293, 0,33293,33293,33293,33293,33293,33293,33294, 0,33294,33294,33294,33294,33294,33294,33295, 0,33295, 33295,33295,33295,33295,33295,33296,33296,33296,33296,33296, 33296,33296,33296,33297,33297,33297,33297,33297,33297,33297, 33297,33298,33298,33298,33298,33298,33298,33298,33298,33299, 0,33299,33299,33299,33299,33299,33299,33300,33300,33300, 33300,33300,33300,33300,33300,33301, 0,33301,33301,33301, 33301,33301,33301,33302,33302,33302,33302,33302,33302,33302, 33302,33303, 0,33303,33303,33303,33303,33303,33303,33304, 0,33304,33304,33304,33304,33304,33304,33305,33305,33305, 33305,33305,33305,33305,33305,33306, 0,33306,33306,33306, 33306,33306,33306,33307, 0,33307,33307,33307,33307,33307, 33307,33308, 0,33308,33308,33308,33308,33308,33308,33309, 33309,33309,33309,33309,33309,33309,33309,33310,33310,33310, 33310,33310,33310,33310,33310,33311, 0,33311,33311,33311, 33311,33311,33311,33312,33312,33312,33312,33312,33312,33312, 33312,33313, 0,33313,33313,33313,33313,33313,33313,33314, 33314,33314,33314,33314,33314,33314,33314,33315, 0,33315, 33315,33315,33315,33315,33315,33316, 0,33316,33316,33316, 33316,33316,33316,33317,33317,33317,33317,33317,33317,33317, 33317,33318,33318,33318,33318,33318,33318,33318,33318,33319, 0,33319,33319,33319,33319,33319,33319,33320, 0,33320, 33320,33320,33320,33320,33320,33321, 0,33321,33321,33321, 33321,33321,33321,33322, 0,33322,33322,33322,33322,33322, 33322,33323, 0,33323,33323,33323,33323,33323,33323,33324, 0,33324,33324,33324,33324,33324,33324,33325, 0,33325, 33325,33325,33325,33325,33325,33326, 0,33326,33326,33326, 33326,33326,33326,33327, 0,33327,33327,33327,33327,33327, 33327,33328, 0,33328,33328,33328,33328,33328,33328,33329, 0,33329,33329,33329,33329,33329,33329,33330, 0,33330, 33330,33330,33330,33330,33330,33331, 0,33331,33331,33331, 33331,33331,33331,33332, 0,33332,33332,33332,33332,33332, 33332,33333, 0,33333,33333,33333,33333,33333,33333,33334, 0,33334,33334,33334,33334,33334,33334,33335, 0,33335, 33335,33335,33335,33335,33335,33336, 0,33336,33336,33336, 33336,33336,33336,33337, 0,33337,33337,33337,33337,33337, 33337,33338, 0,33338,33338,33338,33338,33338,33338,33339, 0,33339,33339,33339,33339,33339,33339,33340, 0,33340, 33340,33340,33340,33340,33340,33341, 0,33341,33341,33341, 33341,33341,33341,33342, 0,33342,33342,33342,33342,33342, 33342,33343, 0,33343,33343,33343,33343,33343,33343,33344, 0,33344,33344,33344,33344,33344,33344,33345, 0,33345, 33345,33345,33345,33345,33345,33346, 0,33346,33346,33346, 33346,33346,33346,33347, 0,33347,33347,33347,33347,33347, 33347,33348, 0,33348,33348,33348,33348,33348,33348,33349, 0,33349,33349,33349,33349,33349,33349,33350, 0,33350, 33350,33350,33350,33350,33350,33351, 0,33351,33351,33351, 33351,33351,33351,33352, 0,33352,33352,33352,33352,33352, 33352,33353, 0,33353,33353,33353,33353,33353,33353,33354, 0,33354,33354,33354,33354,33354,33354,33355, 0,33355, 33355,33355,33355,33355,33355,33356, 0,33356,33356,33356, 33356,33356,33356,33357, 0,33357,33357,33357,33357,33357, 33357,33358, 0,33358,33358,33358,33358,33358,33358,33359, 0,33359,33359,33359,33359,33359,33359,33360, 0,33360, 33360,33360,33360,33360,33360,33361, 0,33361,33361,33361, 33361,33361,33361,33362, 0,33362,33362,33362,33362,33362, 33362,33363, 0,33363,33363,33363,33363,33363,33363,33364, 0,33364,33364,33364,33364,33364,33364,33365, 0,33365, 33365,33365,33365,33365,33365,33366, 0,33366,33366,33366, 33366,33366,33366,33367, 0,33367,33367,33367,33367,33367, 33367,33368, 0,33368,33368,33368,33368,33368,33368,33369, 0,33369,33369,33369,33369,33369,33369,33370, 0,33370, 33370,33370,33370,33370,33370,33371, 0,33371,33371,33371, 33371,33371,33371,33372, 0,33372,33372,33372,33372,33372, 33372,33373, 0,33373,33373,33373,33373,33373,33373,33374, 33374,33374,33374,33374,33374,33374,33374,33375, 0,33375, 33375,33375,33375,33375,33375,33376, 0,33376,33376,33376, 33376,33376,33376,33377,33377,33377,33377,33377,33377,33377, 33377,33378, 0,33378,33378,33378,33378,33378,33378,33379, 33379,33379,33379,33379,33379,33379,33379,33380,33380,33380, 33380,33380,33380,33380,33380,33381, 0,33381,33381,33381, 33381,33381,33381,33382, 0,33382,33382,33382,33382,33382, 33382,33383,33383,33383,33383,33383,33383,33383,33383,33384, 0,33384,33384,33384,33384,33384,33384,33385, 0,33385, 33385,33385,33385,33385,33385,33386,33386,33386,33386,33386, 33386,33386,33386,33387,33387,33387,33387,33387,33387,33387, 33387,33388, 0,33388,33388,33388,33388,33388,33388,33389, 0,33389,33389,33389,33389,33389,33389,33390, 0,33390, 33390,33390,33390,33390,33390,33391, 0,33391,33391,33391, 33391,33391,33391,33392, 0,33392,33392,33392,33392,33392, 33392,33393,33393,33393,33393,33393,33393,33393,33393,33394, 0,33394,33394,33394,33394,33394,33394,33395, 0,33395, 33395,33395,33395,33395,33395,33396, 0,33396,33396,33396, 33396,33396,33396,33397, 0,33397,33397,33397,33397,33397, 33397,33398,33398,33398,33398,33398,33398,33398,33398,33399, 0,33399,33399,33399,33399,33399,33399,33400,33400,33400, 33400,33400,33400,33400,33400,33401, 0,33401,33401,33401, 33401,33401,33401,33402,33402,33402,33402,33402,33402,33402, 33402,33403, 0,33403,33403,33403,33403,33403,33403,33404, 0,33404,33404,33404,33404,33404,33404,33405, 0,33405, 33405,33405,33405,33405,33405,33406, 0,33406,33406,33406, 33406,33406,33406,33407, 0,33407,33407,33407,33407,33407, 33407,33408, 0,33408,33408,33408,33408,33408,33408,33409, 0,33409,33409,33409,33409,33409,33409,33410, 0,33410, 33410,33410,33410,33410,33410,33411, 0,33411,33411,33411, 33411,33411,33411,33412, 0,33412,33412,33412,33412,33412, 33412,33413, 0,33413,33413,33413,33413,33413,33413,33414, 0,33414,33414,33414,33414,33414,33414,33415,33415,33415, 33415,33415,33415,33415,33415,33416,33416,33416,33416,33416, 33416,33416,33416,33417,33417,33417,33417,33417,33417,33417, 33417,33418,33418,33418,33418,33418,33418,33418,33418,33419, 0,33419,33419,33419,33419,33419,33419,33420, 0,33420, 33420,33420,33420,33420,33420,33421, 0,33421,33421,33421, 33421,33421,33421,33422, 0,33422,33422,33422,33422,33422, 33422,33423, 0,33423,33423,33423,33423,33423,33423,33424, 0,33424,33424,33424,33424,33424,33424,33425, 0,33425, 33425,33425,33425,33425,33425,33426, 0,33426,33426,33426, 33426,33426,33426,33427, 0,33427,33427,33427,33427,33427, 33427,33428, 0,33428,33428,33428,33428,33428,33428,33429, 0,33429,33429,33429,33429,33429,33429,33430,33430,33430, 33430,33430,33430,33430,33430,33431,33431,33431,33431,33431, 33431,33431,33431,33432,33432,33432,33432,33432,33432,33432, 33432,33433, 0,33433,33433,33433,33433,33433,33433,33434, 33434,33434,33434,33434,33434,33434,33434,33435, 0,33435, 33435,33435,33435,33435,33435,33436,33436,33436,33436,33436, 33436,33436,33436,33437, 0,33437,33437,33437,33437,33437, 33437,33438, 0,33438,33438,33438,33438,33438,33438,33439, 33439,33439,33439,33439,33439,33439,33439,33440, 0,33440, 33440,33440,33440,33440,33440,33441, 0,33441,33441,33441, 33441,33441,33441,33442,33442,33442,33442,33442,33442,33442, 33442,33443,33443,33443,33443,33443,33443,33443,33443,33444, 0,33444,33444,33444,33444,33444,33444,33445,33445,33445, 33445,33445,33445,33445,33445,33446, 0,33446,33446,33446, 33446,33446,33446,33447,33447,33447,33447,33447,33447,33447, 33447,33448, 0,33448,33448,33448,33448,33448,33448,33449, 0,33449,33449,33449,33449,33449,33449,33450,33450,33450, 33450,33450,33450,33450,33450,33451, 0,33451,33451,33451, 33451,33451,33451,33452, 0,33452,33452,33452,33452,33452, 33452,33453, 0,33453,33453,33453,33453,33453,33453,33454, 0,33454,33454,33454,33454,33454,33454,33455, 0,33455, 33455,33455,33455,33455,33455,33456, 0,33456,33456,33456, 33456,33456,33456,33457, 0,33457,33457,33457,33457,33457, 33457,33458, 0,33458,33458,33458,33458,33458,33458,33459, 0,33459,33459,33459,33459,33459,33459,33460, 0,33460, 33460,33460,33460,33460,33460,33461, 0,33461,33461,33461, 33461,33461,33461,33462, 0,33462,33462,33462,33462,33462, 33462,33463, 0,33463,33463,33463,33463,33463,33463,33464, 0,33464,33464,33464,33464,33464,33464,33465, 0,33465, 33465,33465,33465,33465,33465,33466, 0,33466,33466,33466, 33466,33466,33466,33467, 0,33467,33467,33467,33467,33467, 33467,33468, 0,33468,33468,33468,33468,33468,33468,33469, 0,33469,33469,33469,33469,33469,33469,33470, 0,33470, 33470,33470,33470,33470,33470,33471, 0,33471,33471,33471, 33471,33471,33471,33472, 0,33472,33472,33472,33472,33472, 33472,33473, 0,33473,33473,33473,33473,33473,33473,33474, 0,33474,33474,33474,33474,33474,33474,33475, 0,33475, 33475,33475,33475,33475,33475,33476, 0,33476,33476,33476, 33476,33476,33476,33477, 0,33477,33477,33477,33477,33477, 33477,33478, 0,33478,33478,33478,33478,33478,33478,33479, 0,33479,33479,33479,33479,33479,33479,33480, 0,33480, 33480,33480,33480,33480,33480,33481, 0,33481,33481,33481, 33481,33481,33481,33482, 0,33482,33482,33482,33482,33482, 33482,33483, 0,33483,33483,33483,33483,33483,33483,33484, 0,33484,33484,33484,33484,33484,33484,33485, 0,33485, 33485,33485,33485,33485,33485,33486, 0,33486,33486,33486, 33486,33486,33486,33487, 0,33487,33487,33487,33487,33487, 33487,33488, 0,33488,33488,33488,33488,33488,33488,33489, 0,33489,33489,33489,33489,33489,33489,33490, 0,33490, 33490,33490,33490,33490,33490,33491, 0,33491,33491,33491, 33491,33491,33491,33492,33492,33492,33492,33492,33492,33492, 33492,33493,33493,33493,33493,33493,33493,33493,33493,33494, 0,33494,33494,33494,33494,33494,33494,33495, 0,33495, 33495,33495,33495,33495,33495,33496,33496,33496,33496,33496, 33496,33496,33496,33497, 0,33497,33497,33497,33497,33497, 33497,33498, 0,33498,33498,33498,33498,33498,33498,33499, 33499,33499,33499,33499,33499,33499,33499,33500, 0,33500, 33500,33500,33500,33500,33500,33501, 0,33501,33501,33501, 33501,33501,33501,33502, 0,33502,33502,33502,33502,33502, 33502,33503,33503,33503,33503,33503,33503,33503,33503,33504, 0,33504,33504,33504,33504,33504,33504,33505, 0,33505, 33505,33505,33505,33505,33505,33506, 0,33506,33506,33506, 33506,33506,33506,33507, 0,33507,33507,33507,33507,33507, 33507,33508,33508,33508,33508,33508,33508,33508,33508,33509, 0,33509,33509,33509,33509,33509,33509,33510,33510,33510, 33510,33510,33510,33510,33510,33511,33511,33511,33511,33511, 33511,33511,33511,33512, 0,33512,33512,33512,33512,33512, 33512,33513, 0,33513,33513,33513,33513,33513,33513,33514, 0,33514,33514,33514,33514,33514,33514,33515, 0,33515, 33515,33515,33515,33515,33515,33516, 0,33516,33516,33516, 33516,33516,33516,33517, 0,33517,33517,33517,33517,33517, 33517,33518, 0,33518,33518,33518,33518,33518,33518,33519, 0,33519,33519,33519,33519,33519,33519,33520, 0,33520, 33520,33520,33520,33520,33520,33521, 0,33521,33521,33521, 33521,33521,33521,33522, 0,33522,33522,33522,33522,33522, 33522,33523, 0,33523,33523,33523,33523,33523,33523,33524, 33524,33524,33524,33524,33524,33524,33524,33525,33525,33525, 33525,33525,33525,33525,33525,33526,33526,33526,33526,33526, 33526,33526,33526,33527,33527,33527,33527,33527,33527,33527, 33527,33528, 0,33528,33528,33528,33528,33528,33528,33529, 0,33529,33529,33529,33529,33529,33529,33530, 0,33530, 33530,33530,33530,33530,33530,33531, 0,33531,33531,33531, 33531,33531,33531,33532, 0,33532,33532,33532,33532,33532, 33532,33533, 0,33533,33533,33533,33533,33533,33533,33534, 0,33534,33534,33534,33534,33534,33534,33535, 0,33535, 33535,33535,33535,33535,33535,33536, 0,33536,33536,33536, 33536,33536,33536,33537, 0,33537,33537,33537,33537,33537, 33537,33538, 0,33538,33538,33538,33538,33538,33538,33539, 33539,33539,33539,33539,33539,33539,33539,33540,33540,33540, 33540,33540,33540,33540,33540,33541,33541,33541,33541,33541, 33541,33541,33541,33542, 0,33542,33542,33542,33542,33542, 33542,33543,33543,33543,33543,33543,33543,33543,33543,33544, 0,33544,33544,33544,33544,33544,33544,33545, 0,33545, 33545,33545,33545,33545,33545,33546, 0,33546,33546,33546, 33546,33546,33546,33547,33547,33547,33547,33547,33547,33547, 33547,33548, 0,33548,33548,33548,33548,33548,33548,33549, 0,33549,33549,33549,33549,33549,33549,33550,33550,33550, 33550,33550,33550,33550,33550,33551,33551,33551,33551,33551, 33551,33551,33551,33552, 0,33552,33552,33552,33552,33552, 33552,33553,33553,33553,33553,33553,33553,33553,33553,33554, 0,33554,33554,33554,33554,33554,33554,33555,33555,33555, 33555,33555,33555,33555,33555,33556, 0,33556,33556,33556, 33556,33556,33556,33557, 0,33557,33557,33557,33557,33557, 33557,33558,33558,33558,33558,33558,33558,33558,33558,33559, 0,33559,33559,33559,33559,33559,33559,33560, 0,33560, 33560,33560,33560,33560,33560,33561, 0,33561,33561,33561, 33561,33561,33561,33562, 0,33562,33562,33562,33562,33562, 33562,33563, 0,33563,33563,33563,33563,33563,33563,33564, 0,33564,33564,33564,33564,33564,33564,33565, 0,33565, 33565,33565,33565,33565,33565,33566, 0,33566,33566,33566, 33566,33566,33566,33567, 0,33567,33567,33567,33567,33567, 33567,33568, 0,33568,33568,33568,33568,33568,33568,33569, 0,33569,33569,33569,33569,33569,33569,33570, 0,33570, 33570,33570,33570,33570,33570,33571, 0,33571,33571,33571, 33571,33571,33571,33572, 0,33572,33572,33572,33572,33572, 33572,33573, 0,33573,33573,33573,33573,33573,33573,33574, 0,33574,33574,33574,33574,33574,33574,33575, 0,33575, 33575,33575,33575,33575,33575,33576, 0,33576,33576,33576, 33576,33576,33576,33577, 0,33577,33577,33577,33577,33577, 33577,33578, 0,33578,33578,33578,33578,33578,33578,33579, 0,33579,33579,33579,33579,33579,33579,33580, 0,33580, 33580,33580,33580,33580,33580,33581, 0,33581,33581,33581, 33581,33581,33581,33582, 0,33582,33582,33582,33582,33582, 33582,33583, 0,33583,33583,33583,33583,33583,33583,33584, 0,33584,33584,33584,33584,33584,33584,33585, 0,33585, 33585,33585,33585,33585,33585,33586, 0,33586,33586,33586, 33586,33586,33586,33587,33587,33587,33587,33587,33587,33587, 33587,33588,33588,33588,33588,33588,33588,33588,33588,33589, 0,33589,33589,33589,33589,33589,33589,33590, 0,33590, 33590,33590,33590,33590,33590,33591, 0,33591,33591,33591, 33591,33591,33591,33592, 0,33592,33592,33592,33592,33592, 33592,33593,33593,33593,33593,33593,33593,33593,33593,33594, 33594,33594, 0,33594,33594,33594,33594,33595,33595,33595, 33595,33595,33595,33595,33595,33596, 0,33596,33596,33596, 33596,33596,33596,33597, 0,33597,33597,33597,33597,33597, 33597,33598,33598,33598,33598,33598,33598,33598,33598,33599, 0,33599,33599,33599,33599,33599,33599,33600, 0,33600, 33600,33600,33600,33600,33600,33601, 0,33601,33601,33601, 33601,33601,33601,33602, 0,33602,33602,33602,33602,33602, 33602,33603,33603,33603,33603,33603,33603,33603,33603,33604, 0,33604,33604,33604,33604,33604,33604,33605,33605,33605, 33605,33605,33605,33605,33605,33606,33606,33606,33606,33606, 33606,33606,33606,33607, 0,33607,33607,33607,33607,33607, 33607,33608, 0,33608,33608,33608,33608,33608,33608,33609, 0,33609,33609,33609,33609,33609,33609,33610, 0,33610, 33610,33610,33610,33610,33610,33611, 0,33611,33611,33611, 33611,33611,33611,33612, 0,33612,33612,33612,33612,33612, 33612,33613, 0,33613,33613,33613,33613,33613,33613,33614, 0,33614,33614,33614,33614,33614,33614,33615, 0,33615, 33615,33615,33615,33615,33615,33616, 0,33616,33616,33616, 33616,33616,33616,33617, 0,33617,33617,33617,33617,33617, 33617,33618, 0,33618,33618,33618,33618,33618,33618,33619, 33619,33619,33619,33619,33619,33619,33619,33620,33620,33620, 33620,33620,33620,33620,33620,33621,33621,33621,33621,33621, 33621,33621,33621,33622,33622,33622,33622,33622,33622,33622, 33622,33623, 0,33623,33623,33623,33623,33623,33623,33624, 0,33624,33624,33624,33624,33624,33624,33625, 0,33625, 33625,33625,33625,33625,33625,33626, 0,33626,33626,33626, 33626,33626,33626,33627, 0,33627,33627,33627,33627,33627, 33627,33628, 0,33628,33628,33628,33628,33628,33628,33629, 0,33629,33629,33629,33629,33629,33629,33630, 0,33630, 33630,33630,33630,33630,33630,33631, 0,33631,33631,33631, 33631,33631,33631,33632, 0,33632,33632,33632,33632,33632, 33632,33633, 0,33633,33633,33633,33633,33633,33633,33634, 33634,33634,33634,33634,33634,33634,33634,33635,33635,33635, 33635,33635,33635,33635,33635,33636,33636,33636,33636,33636, 33636,33636,33636,33637, 0,33637,33637,33637,33637,33637, 33637,33638,33638,33638,33638,33638,33638,33638,33638,33639, 0,33639,33639,33639,33639,33639,33639,33640, 0,33640, 33640,33640,33640,33640,33640,33641, 0,33641,33641,33641, 33641,33641,33641,33642,33642,33642,33642,33642,33642,33642, 33642,33643,33643,33643,33643,33643,33643,33643,33643,33644, 0,33644,33644,33644,33644,33644,33644,33645,33645,33645, 33645,33645,33645,33645,33645,33646, 0,33646,33646,33646, 33646,33646,33646,33647,33647,33647,33647,33647,33647,33647, 33647,33648,33648,33648,33648,33648,33648,33648,33648,33649, 33649,33649,33649,33649,33649,33649,33649,33650,33650,33650, 33650,33650,33650,33650,33650,33651, 0,33651,33651,33651, 33651,33651,33651,33652,33652,33652,33652,33652,33652,33652, 33652,33653, 0,33653,33653,33653,33653,33653,33653,33654, 33654,33654,33654,33654,33654,33654,33654,33655, 0,33655, 33655,33655,33655,33655,33655,33656, 0,33656,33656,33656, 33656,33656,33656,33657,33657,33657,33657,33657,33657,33657, 33657,33658, 0,33658,33658,33658,33658,33658,33658,33659, 0,33659,33659,33659,33659,33659,33659,33660, 0,33660, 33660,33660,33660,33660,33660,33661, 0,33661,33661,33661, 33661,33661,33661,33662, 0,33662,33662,33662,33662,33662, 33662,33663, 0,33663,33663,33663,33663,33663,33663,33664, 0,33664,33664,33664,33664,33664,33664,33665, 0,33665, 33665,33665,33665,33665,33665,33666, 0,33666,33666,33666, 33666,33666,33666,33667, 0,33667,33667,33667,33667,33667, 33667,33668, 0,33668,33668,33668,33668,33668,33668,33669, 0,33669,33669,33669,33669,33669,33669,33670, 0,33670, 33670,33670,33670,33670,33670,33671, 0,33671,33671,33671, 33671,33671,33671,33672, 0,33672,33672,33672,33672,33672, 33672,33673, 0,33673,33673,33673,33673,33673,33673,33674, 0,33674,33674,33674,33674,33674,33674,33675, 0,33675, 33675,33675,33675,33675,33675,33676, 0,33676,33676,33676, 33676,33676,33676,33677, 0,33677,33677,33677,33677,33677, 33677,33678, 0,33678,33678,33678,33678,33678,33678,33679, 0,33679,33679,33679,33679,33679,33679,33680, 0,33680, 33680,33680,33680,33680,33680,33681, 0,33681,33681,33681, 33681,33681,33681,33682, 0,33682,33682,33682,33682,33682, 33682,33683, 0,33683,33683,33683,33683,33683,33683,33684, 0,33684,33684,33684,33684,33684,33684,33685, 0,33685, 33685,33685,33685,33685,33685,33686, 0,33686,33686,33686, 33686,33686,33686,33687, 0,33687,33687,33687,33687,33687, 33687,33688, 0,33688,33688,33688,33688,33688,33688,33689, 0,33689,33689,33689,33689,33689,33689,33690,33690,33690, 33690,33690,33690,33690,33690,33691,33691,33691,33691,33691, 33691,33691,33691,33692, 0,33692,33692,33692,33692,33692, 33692,33693, 0,33693,33693,33693,33693,33693,33693,33694, 0,33694,33694,33694,33694,33694,33694,33695,33695,33695, 33695,33695,33695,33695,33695,33696,33696,33696,33696,33696, 33696,33696,33696,33697,33697,33697,33697,33697,33697,33697, 33697,33698, 0,33698,33698,33698,33698,33698,33698,33699, 0,33699,33699,33699,33699,33699,33699,33700,33700,33700, 33700,33700,33700,33700,33700,33701, 0,33701,33701,33701, 33701,33701,33701,33702, 0,33702,33702,33702,33702,33702, 33702,33703, 0,33703,33703,33703,33703,33703,33703,33704, 0,33704,33704,33704,33704,33704,33704,33705,33705,33705, 33705,33705,33705,33705,33705,33706, 0,33706,33706,33706, 33706,33706,33706,33707,33707,33707,33707,33707,33707,33707, 33707,33708,33708,33708,33708,33708,33708,33708,33708,33709, 0,33709,33709,33709,33709,33709,33709,33710, 0,33710, 33710,33710,33710,33710,33710,33711, 0,33711,33711,33711, 33711,33711,33711,33712, 0,33712,33712,33712,33712,33712, 33712,33713, 0,33713,33713,33713,33713,33713,33713,33714, 0,33714,33714,33714,33714,33714,33714,33715, 0,33715, 33715,33715,33715,33715,33715,33716, 0,33716,33716,33716, 33716,33716,33716,33717, 0,33717,33717,33717,33717,33717, 33717,33718, 0,33718,33718,33718,33718,33718,33718,33719, 0,33719,33719,33719,33719,33719,33719,33720, 0,33720, 33720,33720,33720,33720,33720,33721, 0,33721,33721,33721, 33721,33721,33721,33722, 0,33722,33722,33722,33722,33722, 33722,33723,33723,33723,33723,33723,33723,33723,33723,33724, 33724,33724,33724,33724,33724,33724,33724,33725,33725,33725, 33725,33725,33725,33725,33725,33726,33726,33726,33726,33726, 33726,33726,33726,33727, 0,33727,33727,33727,33727,33727, 33727,33728, 0,33728,33728,33728,33728,33728,33728,33729, 0,33729,33729,33729,33729,33729,33729,33730, 0,33730, 33730,33730,33730,33730,33730,33731, 0,33731,33731,33731, 33731,33731,33731,33732, 0,33732,33732,33732,33732,33732, 33732,33733, 0,33733,33733,33733,33733,33733,33733,33734, 0,33734,33734,33734,33734,33734,33734,33735, 0,33735, 33735,33735,33735,33735,33735,33736, 0,33736,33736,33736, 33736,33736,33736,33737, 0,33737,33737,33737,33737,33737, 33737,33738,33738,33738,33738,33738,33738,33738,33738,33739, 33739,33739,33739,33739,33739,33739,33739,33740,33740,33740, 33740,33740,33740,33740,33740,33741, 0,33741,33741,33741, 33741,33741,33741,33742,33742,33742,33742,33742,33742,33742, 33742,33743, 0,33743,33743,33743,33743,33743,33743,33744, 0,33744,33744,33744,33744,33744,33744,33745, 0,33745, 33745,33745,33745,33745,33745,33746,33746,33746,33746,33746, 33746,33746,33746,33747,33747,33747,33747,33747,33747,33747, 33747,33748, 0,33748,33748,33748,33748,33748,33748,33749, 33749,33749,33749,33749,33749,33749,33749,33750, 0,33750, 33750,33750,33750,33750,33750,33751,33751,33751,33751,33751, 33751,33751,33751,33752,33752,33752,33752,33752,33752,33752, 33752,33753, 0,33753,33753,33753,33753,33753,33753,33754, 33754,33754,33754,33754,33754,33754,33754,33755, 0,33755, 33755,33755,33755,33755,33755,33756,33756,33756,33756,33756, 33756,33756,33756,33757, 0,33757,33757,33757,33757,33757, 33757,33758,33758,33758,33758,33758,33758,33758,33758,33759, 0,33759,33759,33759,33759,33759,33759,33760, 0,33760, 33760,33760,33760,33760,33760,33761, 0,33761,33761,33761, 33761,33761,33761,33762,33762,33762,33762,33762,33762,33762, 33762,33763, 0,33763,33763,33763,33763,33763,33763,33764, 0,33764,33764,33764,33764,33764,33764,33765, 0,33765, 33765,33765,33765,33765,33765,33766, 0,33766,33766,33766, 33766,33766,33766,33767, 0,33767,33767,33767,33767,33767, 33767,33768, 0,33768,33768,33768,33768,33768,33768,33769, 0,33769,33769,33769,33769,33769,33769,33770, 0,33770, 33770,33770,33770,33770,33770,33771, 0,33771,33771,33771, 33771,33771,33771,33772, 0,33772,33772,33772,33772,33772, 33772,33773, 0,33773,33773,33773,33773,33773,33773,33774, 0,33774,33774,33774,33774,33774,33774,33775, 0,33775, 33775,33775,33775,33775,33775,33776, 0,33776,33776,33776, 33776,33776,33776,33777, 0,33777,33777,33777,33777,33777, 33777,33778, 0,33778,33778,33778,33778,33778,33778,33779, 0,33779,33779,33779,33779,33779,33779,33780, 0,33780, 33780,33780,33780,33780,33780,33781, 0,33781,33781,33781, 33781,33781,33781,33782, 0,33782,33782,33782,33782,33782, 33782,33783,33783,33783,33783,33783,33783,33783,33783,33784, 0,33784,33784,33784,33784,33784,33784,33785, 0,33785, 33785,33785,33785,33785,33785,33786, 0,33786,33786,33786, 33786,33786,33786,33787,33787,33787,33787,33787,33787,33787, 33787,33788, 0,33788,33788,33788,33788,33788,33788,33789, 0,33789,33789,33789,33789,33789,33789,33790, 0,33790, 33790,33790,33790,33790,33790,33791, 0,33791,33791,33791, 33791,33791,33791,33792,33792,33792,33792,33792,33792,33792, 33792,33793, 0,33793,33793,33793,33793,33793,33793,33794, 0,33794,33794,33794,33794,33794,33794,33795, 0,33795, 33795,33795,33795,33795,33795,33796, 0,33796,33796,33796, 33796,33796,33796,33797, 0,33797,33797,33797,33797,33797, 33797,33798, 0,33798,33798,33798,33798,33798,33798,33799, 33799,33799,33799,33799,33799,33799,33799,33800, 0,33800, 33800,33800,33800,33800,33800,33801,33801,33801,33801,33801, 33801,33801,33801,33802,33802,33802,33802,33802,33802,33802, 33802,33803, 0,33803,33803,33803,33803,33803,33803,33804, 0,33804,33804,33804,33804,33804,33804,33805, 0,33805, 33805,33805,33805,33805,33805,33806, 0,33806,33806,33806, 33806,33806,33806,33807, 0,33807,33807,33807,33807,33807, 33807,33808, 0,33808,33808,33808,33808,33808,33808,33809, 0,33809,33809,33809,33809,33809,33809,33810, 0,33810, 33810,33810,33810,33810,33810,33811, 0,33811,33811,33811, 33811,33811,33811,33812, 0,33812,33812,33812,33812,33812, 33812,33813, 0,33813,33813,33813,33813,33813,33813,33814, 0,33814,33814,33814,33814,33814,33814,33815, 0,33815, 33815,33815,33815,33815,33815,33816, 0,33816,33816,33816, 33816,33816,33816,33817, 0,33817,33817,33817,33817,33817, 33817,33818, 0,33818,33818,33818,33818,33818,33818,33819, 33819,33819,33819,33819,33819,33819,33819,33820,33820,33820, 33820,33820,33820,33820,33820,33821,33821,33821,33821,33821, 33821,33821,33821,33822,33822,33822,33822,33822,33822,33822, 33822,33823, 0,33823,33823,33823,33823,33823,33823,33824, 0,33824,33824,33824,33824,33824,33824,33825, 0,33825, 33825,33825,33825,33825,33825,33826, 0,33826,33826,33826, 33826,33826,33826,33827, 0,33827,33827,33827,33827,33827, 33827,33828, 0,33828,33828,33828,33828,33828,33828,33829, 0,33829,33829,33829,33829,33829,33829,33830, 0,33830, 33830,33830,33830,33830,33830,33831, 0,33831,33831,33831, 33831,33831,33831,33832, 0,33832,33832,33832,33832,33832, 33832,33833,33833,33833,33833,33833,33833,33833,33833,33834, 33834,33834,33834,33834,33834,33834,33834,33835,33835,33835, 33835,33835,33835,33835,33835,33836, 0,33836,33836,33836, 33836,33836,33836,33837,33837,33837,33837,33837,33837,33837, 33837,33838, 0,33838,33838,33838,33838,33838,33838,33839, 0,33839,33839,33839,33839,33839,33839,33840, 0,33840, 33840,33840,33840,33840,33840,33841,33841,33841,33841,33841, 33841,33841,33841,33842,33842,33842,33842,33842,33842,33842, 33842,33843, 0,33843,33843,33843,33843,33843,33843,33844, 33844,33844,33844,33844,33844,33844,33844,33845, 0,33845, 33845,33845,33845,33845,33845,33846,33846,33846,33846,33846, 33846,33846,33846,33847, 0,33847,33847,33847,33847,33847, 33847,33848,33848,33848,33848,33848,33848,33848,33848,33849, 0,33849,33849,33849,33849,33849,33849,33850,33850,33850, 33850,33850,33850,33850,33850,33851,33851,33851,33851,33851, 33851,33851,33851,33852, 0,33852,33852,33852,33852,33852, 33852,33853,33853,33853,33853,33853,33853,33853,33853,33854, 0,33854,33854,33854,33854,33854,33854,33855, 0,33855, 33855,33855,33855,33855,33855,33856, 0,33856,33856,33856, 33856,33856,33856,33857,33857,33857,33857,33857,33857,33857, 33857,33858, 0,33858,33858,33858,33858,33858,33858,33859, 0,33859,33859,33859,33859,33859,33859,33860, 0,33860, 33860,33860,33860,33860,33860,33861, 0,33861,33861,33861, 33861,33861,33861,33862, 0,33862,33862,33862,33862,33862, 33862,33863, 0,33863,33863,33863,33863,33863,33863,33864, 0,33864,33864,33864,33864,33864,33864,33865, 0,33865, 33865,33865,33865,33865,33865,33866, 0,33866,33866,33866, 33866,33866,33866,33867, 0,33867,33867,33867,33867,33867, 33867,33868, 0,33868,33868,33868,33868,33868,33868,33869, 0,33869,33869,33869,33869,33869,33869,33870, 0,33870, 33870,33870,33870,33870,33870,33871, 0,33871,33871,33871, 33871,33871,33871,33872, 0,33872,33872,33872,33872,33872, 33872,33873, 0,33873,33873,33873,33873,33873,33873,33874, 33874,33874,33874,33874,33874,33874,33874,33875,33875,33875, 33875,33875,33875,33875,33875,33876, 0,33876,33876,33876, 33876,33876,33876,33877, 0,33877,33877,33877,33877,33877, 33877,33878, 0,33878,33878,33878,33878,33878,33878,33879, 33879,33879,33879,33879,33879,33879,33879,33880, 0,33880, 33880,33880,33880,33880,33880,33881, 0,33881,33881,33881, 33881,33881,33881,33882, 0,33882,33882,33882,33882,33882, 33882,33883, 0,33883,33883,33883,33883,33883,33883,33884, 0,33884,33884,33884,33884,33884,33884,33885,33885,33885, 33885,33885,33885,33885,33885,33886, 0,33886,33886,33886, 33886,33886,33886,33887, 0,33887,33887,33887,33887,33887, 33887,33888, 0,33888,33888,33888,33888,33888,33888,33889, 0,33889,33889,33889,33889,33889,33889,33890, 0,33890, 33890,33890,33890,33890,33890,33891,33891,33891,33891,33891, 33891,33891,33891,33892, 0,33892,33892,33892,33892,33892, 33892,33893,33893,33893,33893,33893,33893,33893,33893,33894, 33894,33894,33894,33894,33894,33894,33894,33895, 0,33895, 33895,33895,33895,33895,33895,33896, 0,33896,33896,33896, 33896,33896,33896,33897, 0,33897,33897,33897,33897,33897, 33897,33898, 0,33898,33898,33898,33898,33898,33898,33899, 0,33899,33899,33899,33899,33899,33899,33900, 0,33900, 33900,33900,33900,33900,33900,33901, 0,33901,33901,33901, 33901,33901,33901,33902, 0,33902,33902,33902,33902,33902, 33902,33903, 0,33903,33903,33903,33903,33903,33903,33904, 0,33904,33904,33904,33904,33904,33904,33905, 0,33905, 33905,33905,33905,33905,33905,33906, 0,33906,33906,33906, 33906,33906,33906,33907, 0,33907,33907,33907,33907,33907, 33907,33908, 0,33908,33908,33908,33908,33908,33908,33909, 0,33909,33909,33909,33909,33909,33909,33910,33910,33910, 33910,33910,33910,33910,33910,33911,33911,33911,33911,33911, 33911,33911,33911,33912,33912,33912,33912,33912,33912,33912, 33912,33913,33913,33913,33913,33913,33913,33913,33913,33914, 0,33914,33914,33914,33914,33914,33914,33915, 0,33915, 33915,33915,33915,33915,33915,33916, 0,33916,33916,33916, 33916,33916,33916,33917, 0,33917,33917,33917,33917,33917, 33917,33918, 0,33918,33918,33918,33918,33918,33918,33919, 0,33919,33919,33919,33919,33919,33919,33920, 0,33920, 33920,33920,33920,33920,33920,33921, 0,33921,33921,33921, 33921,33921,33921,33922, 0,33922,33922,33922,33922,33922, 33922,33923, 0,33923,33923,33923,33923,33923,33923,33924, 33924,33924,33924,33924,33924,33924,33924,33925, 0,33925, 33925,33925,33925,33925,33925,33926, 0,33926,33926,33926, 33926,33926,33926,33927,33927,33927,33927,33927,33927,33927, 33927,33928,33928,33928,33928,33928,33928,33928,33928,33929, 0,33929,33929,33929,33929,33929,33929,33930, 0,33930, 33930,33930,33930,33930,33930,33931,33931,33931,33931,33931, 33931,33931,33931,33932,33932,33932,33932,33932,33932,33932, 33932,33933,33933,33933,33933,33933,33933,33933,33933,33934, 0,33934,33934,33934,33934,33934,33934,33935,33935,33935, 33935,33935,33935,33935,33935,33936, 0,33936,33936,33936, 33936,33936,33936,33937,33937,33937,33937,33937,33937,33937, 33937,33938, 0,33938,33938,33938,33938,33938,33938,33939, 33939,33939,33939,33939,33939,33939,33939,33940, 0,33940, 33940,33940,33940,33940,33940,33941,33941,33941,33941,33941, 33941,33941,33941,33942, 0,33942,33942,33942,33942,33942, 33942,33943,33943,33943,33943,33943,33943,33943,33943,33944, 0,33944,33944,33944,33944,33944,33944,33945, 0,33945, 33945,33945,33945,33945,33945,33946, 0,33946,33946,33946, 33946,33946,33946,33947,33947,33947,33947,33947,33947,33947, 33947,33948, 0,33948,33948,33948,33948,33948,33948,33949, 0,33949,33949,33949,33949,33949,33949,33950, 0,33950, 33950,33950,33950,33950,33950,33951, 0,33951,33951,33951, 33951,33951,33951,33952, 0,33952,33952,33952,33952,33952, 33952,33953, 0,33953,33953,33953,33953,33953,33953,33954, 0,33954,33954,33954,33954,33954,33954,33955, 0,33955, 33955,33955,33955,33955,33955,33956, 0,33956,33956,33956, 33956,33956,33956,33957, 0,33957,33957,33957,33957,33957, 33957,33958, 0,33958,33958,33958,33958,33958,33958,33959, 0,33959,33959,33959,33959,33959,33959,33960, 0,33960, 33960,33960,33960,33960,33960,33961, 0,33961,33961,33961, 33961,33961,33961,33962, 0,33962,33962,33962,33962,33962, 33962,33963, 0,33963,33963,33963,33963,33963,33963,33964, 0,33964,33964,33964,33964,33964,33964,33965, 0,33965, 33965,33965,33965,33965,33965,33966, 0,33966,33966,33966, 33966,33966,33966,33967,33967,33967,33967,33967,33967,33967, 33967,33968, 0,33968,33968,33968,33968,33968,33968,33969, 0,33969,33969,33969,33969,33969,33969,33970, 0,33970, 33970,33970,33970,33970,33970,33971,33971,33971,33971,33971, 33971,33971,33971,33972, 0,33972,33972,33972,33972,33972, 33972,33973, 0,33973,33973,33973,33973,33973,33973,33974, 0,33974,33974,33974,33974,33974,33974,33975, 0,33975, 33975,33975,33975,33975,33975,33976, 0,33976,33976,33976, 33976,33976,33976,33977,33977,33977,33977,33977,33977,33977, 33977,33978, 0,33978,33978,33978,33978,33978,33978,33979, 0,33979,33979,33979,33979,33979,33979,33980, 0,33980, 33980,33980,33980,33980,33980,33981, 0,33981,33981,33981, 33981,33981,33981,33982, 0,33982,33982,33982,33982,33982, 33982,33983, 0,33983,33983,33983,33983,33983,33983,33984, 33984,33984,33984,33984,33984,33984,33984,33985, 0,33985, 33985,33985,33985,33985,33985,33986,33986,33986,33986,33986, 33986,33986,33986,33987,33987,33987,33987,33987,33987,33987, 33987,33988,33988,33988,33988,33988,33988,33988,33988,33989, 0,33989,33989,33989,33989,33989,33989,33990, 0,33990, 33990,33990,33990,33990,33990,33991, 0,33991,33991,33991, 33991,33991,33991,33992, 0,33992,33992,33992,33992,33992, 33992,33993, 0,33993,33993,33993,33993,33993,33993,33994, 0,33994,33994,33994,33994,33994,33994,33995, 0,33995, 33995,33995,33995,33995,33995,33996, 0,33996,33996,33996, 33996,33996,33996,33997, 0,33997,33997,33997,33997,33997, 33997,33998, 0,33998,33998,33998,33998,33998,33998,33999, 0,33999,33999,33999,33999,33999,33999,34000, 0,34000, 34000,34000,34000,34000,34000,34001, 0,34001,34001,34001, 34001,34001,34001,34002, 0,34002,34002,34002,34002,34002, 34002,34003, 0,34003,34003,34003,34003,34003,34003,34004, 0,34004,34004,34004,34004,34004,34004,34005, 0,34005, 34005,34005,34005,34005,34005,34006,34006,34006,34006,34006, 34006,34006,34006,34007,34007,34007,34007,34007,34007,34007, 34007,34008, 0,34008,34008,34008,34008,34008,34008,34009, 34009,34009,34009,34009,34009,34009,34009,34010,34010,34010, 34010,34010,34010,34010,34010,34011, 0,34011,34011,34011, 34011,34011,34011,34012, 0,34012,34012,34012,34012,34012, 34012,34013, 0,34013,34013,34013,34013,34013,34013,34014, 0,34014,34014,34014,34014,34014,34014,34015, 0,34015, 34015,34015,34015,34015,34015,34016, 0,34016,34016,34016, 34016,34016,34016,34017, 0,34017,34017,34017,34017,34017, 34017,34018, 0,34018,34018,34018,34018,34018,34018,34019, 0,34019,34019,34019,34019,34019,34019,34020, 0,34020, 34020,34020,34020,34020,34020,34021,34021,34021,34021,34021, 34021,34021,34021,34022, 0,34022,34022,34022,34022,34022, 34022,34023,34023,34023,34023,34023,34023,34023,34023,34024, 0,34024,34024,34024,34024,34024,34024,34025,34025,34025, 34025,34025,34025,34025,34025,34026, 0,34026,34026,34026, 34026,34026,34026,34027, 0,34027,34027,34027,34027,34027, 34027,34028,34028,34028,34028,34028,34028,34028,34028,34029, 34029,34029,34029,34029,34029,34029,34029,34030, 0,34030, 34030,34030,34030,34030,34030,34031,34031,34031,34031,34031, 34031,34031,34031,34032, 0,34032,34032,34032,34032,34032, 34032,34033,34033,34033,34033,34033,34033,34033,34033,34034, 0,34034,34034,34034,34034,34034,34034,34035,34035,34035, 34035,34035,34035,34035,34035,34036, 0,34036,34036,34036, 34036,34036,34036,34037,34037,34037,34037,34037,34037,34037, 34037,34038, 0,34038,34038,34038,34038,34038,34038,34039, 0,34039,34039,34039,34039,34039,34039,34040,34040,34040, 34040,34040,34040,34040,34040,34041,34041,34041,34041,34041, 34041,34041,34041,34042, 0,34042,34042,34042,34042,34042, 34042,34043, 0,34043,34043,34043,34043,34043,34043,34044, 34044,34044,34044,34044,34044,34044,34044,34045, 0,34045, 34045,34045,34045,34045,34045,34046, 0,34046,34046,34046, 34046,34046,34046,34047, 0,34047,34047,34047,34047,34047, 34047,34048, 0,34048,34048,34048,34048,34048,34048,34049, 0,34049,34049,34049,34049,34049,34049,34050, 0,34050, 34050,34050,34050,34050,34050,34051, 0,34051,34051,34051, 34051,34051,34051,34052, 0,34052,34052,34052,34052,34052, 34052,34053, 0,34053,34053,34053,34053,34053,34053,34054, 34054,34054,34054,34054,34054,34054,34054,34055, 0,34055, 34055,34055,34055,34055,34055,34056, 0,34056,34056,34056, 34056,34056,34056,34057, 0,34057,34057,34057,34057,34057, 34057,34058, 0,34058,34058,34058,34058,34058,34058,34059, 0,34059,34059,34059,34059,34059,34059,34060, 0,34060, 34060,34060,34060,34060,34060,34061, 0,34061,34061,34061, 34061,34061,34061,34062, 0,34062,34062,34062,34062,34062, 34062,34063, 0,34063,34063,34063,34063,34063,34063,34064, 0,34064,34064,34064,34064,34064,34064,34065, 0,34065, 34065,34065,34065,34065,34065,34066, 0,34066,34066,34066, 34066,34066,34066,34067, 0,34067,34067,34067,34067,34067, 34067,34068,34068,34068,34068,34068,34068,34068,34068,34069, 0,34069,34069,34069,34069,34069,34069,34070,34070,34070, 34070,34070,34070,34070,34070,34071, 0,34071,34071,34071, 34071,34071,34071,34072,34072,34072,34072,34072,34072,34072, 34072,34073,34073,34073,34073,34073,34073,34073,34073,34074, 0,34074,34074,34074,34074,34074,34074,34075, 0,34075, 34075,34075,34075,34075,34075,34076, 0,34076,34076,34076, 34076,34076,34076,34077, 0,34077,34077,34077,34077,34077, 34077,34078, 0,34078,34078,34078,34078,34078,34078,34079, 0,34079,34079,34079,34079,34079,34079,34080, 0,34080, 34080,34080,34080,34080,34080,34081, 0,34081,34081,34081, 34081,34081,34081,34082, 0,34082,34082,34082,34082,34082, 34082,34083, 0,34083,34083,34083,34083,34083,34083,34084, 0,34084,34084,34084,34084,34084,34084,34085, 0,34085, 34085,34085,34085,34085,34085,34086, 0,34086,34086,34086, 34086,34086,34086,34087, 0,34087,34087,34087,34087,34087, 34087,34088, 0,34088,34088,34088,34088,34088,34088,34089, 0,34089,34089,34089,34089,34089,34089,34090, 0,34090, 34090,34090,34090,34090,34090,34091,34091,34091,34091,34091, 34091,34091,34091,34092,34092,34092,34092,34092,34092,34092, 34092,34093, 0,34093,34093,34093,34093,34093,34093,34094, 34094,34094,34094,34094,34094,34094,34094,34095,34095,34095, 34095,34095,34095,34095,34095,34096, 0,34096,34096,34096, 34096,34096,34096,34097, 0,34097,34097,34097,34097,34097, 34097,34098, 0,34098,34098,34098,34098,34098,34098,34099, 0,34099,34099,34099,34099,34099,34099,34100, 0,34100, 34100,34100,34100,34100,34100,34101, 0,34101,34101,34101, 34101,34101,34101,34102, 0,34102,34102,34102,34102,34102, 34102,34103, 0,34103,34103,34103,34103,34103,34103,34104, 0,34104,34104,34104,34104,34104,34104,34105, 0,34105, 34105,34105,34105,34105,34105,34106, 0,34106,34106,34106, 34106,34106,34106,34107,34107,34107,34107,34107,34107,34107, 34107,34108, 0,34108,34108,34108,34108,34108,34108,34109, 34109,34109,34109,34109,34109,34109,34109,34110, 0,34110, 34110,34110,34110,34110,34110,34111,34111,34111,34111,34111, 34111,34111,34111,34112, 0,34112,34112,34112,34112,34112, 34112,34113, 0,34113,34113,34113,34113,34113,34113,34114, 34114,34114,34114,34114,34114,34114,34114,34115,34115,34115, 34115,34115,34115,34115,34115,34116, 0,34116,34116,34116, 34116,34116,34116,34117,34117,34117,34117,34117,34117,34117, 34117,34118, 0,34118,34118,34118,34118,34118,34118,34119, 34119,34119,34119,34119,34119,34119,34119,34120, 0,34120, 34120,34120,34120,34120,34120,34121,34121,34121,34121,34121, 34121,34121,34121,34122, 0,34122,34122,34122,34122,34122, 34122,34123,34123,34123,34123,34123,34123,34123,34123,34124, 0,34124,34124,34124,34124,34124,34124,34125,34125,34125, 34125,34125,34125,34125,34125,34126, 0,34126,34126,34126, 34126,34126,34126,34127,34127,34127,34127,34127,34127,34127, 34127,34128, 0,34128,34128,34128,34128,34128,34128,34129, 0,34129,34129,34129,34129,34129,34129,34130,34130,34130, 34130,34130,34130,34130,34130,34131, 0,34131,34131,34131, 34131,34131,34131,34132, 0,34132,34132,34132,34132,34132, 34132,34133, 0,34133,34133,34133,34133,34133,34133,34134, 0,34134,34134,34134,34134,34134,34134,34135, 0,34135, 34135,34135,34135,34135,34135,34136,34136,34136,34136,34136, 34136,34136,34136,34137, 0,34137,34137,34137,34137,34137, 34137,34138, 0,34138,34138,34138,34138,34138,34138,34139, 0,34139,34139,34139,34139,34139,34139,34140, 0,34140, 34140,34140,34140,34140,34140,34141, 0,34141,34141,34141, 34141,34141,34141,34142, 0,34142,34142,34142,34142,34142, 34142,34143, 0,34143,34143,34143,34143,34143,34143,34144, 0,34144,34144,34144,34144,34144,34144,34145, 0,34145, 34145,34145,34145,34145,34145,34146, 0,34146,34146,34146, 34146,34146,34146,34147, 0,34147,34147,34147,34147,34147, 34147,34148, 0,34148,34148,34148,34148,34148,34148,34149, 0,34149,34149,34149,34149,34149,34149,34150,34150,34150, 34150,34150,34150,34150,34150,34151, 0,34151,34151,34151, 34151,34151,34151,34152,34152,34152,34152,34152,34152,34152, 34152,34153,34153,34153,34153,34153,34153,34153,34153,34154, 34154,34154,34154,34154,34154,34154,34154,34155, 0,34155, 34155,34155,34155,34155,34155,34156, 0,34156,34156,34156, 34156,34156,34156,34157, 0,34157,34157,34157,34157,34157, 34157,34158, 0,34158,34158,34158,34158,34158,34158,34159, 0,34159,34159,34159,34159,34159,34159,34160, 0,34160, 34160,34160,34160,34160,34160,34161, 0,34161,34161,34161, 34161,34161,34161,34162, 0,34162,34162,34162,34162,34162, 34162,34163, 0,34163,34163,34163,34163,34163,34163,34164, 0,34164,34164,34164,34164,34164,34164,34165, 0,34165, 34165,34165,34165,34165,34165,34166, 0,34166,34166,34166, 34166,34166,34166,34167, 0,34167,34167,34167,34167,34167, 34167,34168, 0,34168,34168,34168,34168,34168,34168,34169, 0,34169,34169,34169,34169,34169,34169,34170, 0,34170, 34170,34170,34170,34170,34170,34171,34171,34171,34171,34171, 34171,34171,34171,34172,34172,34172,34172,34172,34172,34172, 34172,34173, 0,34173,34173,34173,34173,34173,34173,34174, 34174,34174,34174,34174,34174,34174,34174,34175, 0,34175, 34175,34175,34175,34175,34175,34176, 0,34176,34176,34176, 34176,34176,34176,34177, 0,34177,34177,34177,34177,34177, 34177,34178, 0,34178,34178,34178,34178,34178,34178,34179, 0,34179,34179,34179,34179,34179,34179,34180, 0,34180, 34180,34180,34180,34180,34180,34181, 0,34181,34181,34181, 34181,34181,34181,34182, 0,34182,34182,34182,34182,34182, 34182,34183, 0,34183,34183,34183,34183,34183,34183,34184, 0,34184,34184,34184,34184,34184,34184,34185,34185,34185, 34185,34185,34185,34185,34185,34186, 0,34186,34186,34186, 34186,34186,34186,34187,34187,34187,34187,34187,34187,34187, 34187,34188, 0,34188,34188,34188,34188,34188,34188,34189, 34189,34189,34189,34189,34189,34189,34189,34190, 0,34190, 34190,34190,34190,34190,34190,34191, 0,34191,34191,34191, 34191,34191,34191,34192,34192,34192,34192,34192,34192,34192, 34192,34193,34193,34193,34193,34193,34193,34193,34193,34194, 0,34194,34194,34194,34194,34194,34194,34195,34195,34195, 34195,34195,34195,34195,34195,34196, 0,34196,34196,34196, 34196,34196,34196,34197,34197,34197,34197,34197,34197,34197, 34197,34198, 0,34198,34198,34198,34198,34198,34198,34199, 34199,34199,34199,34199,34199,34199,34199,34200, 0,34200, 34200,34200,34200,34200,34200,34201,34201,34201,34201,34201, 34201,34201,34201,34202, 0,34202,34202,34202,34202,34202, 34202,34203,34203,34203,34203,34203,34203,34203,34203,34204, 0,34204,34204,34204,34204,34204,34204,34205,34205,34205, 34205,34205,34205,34205,34205,34206, 0,34206,34206,34206, 34206,34206,34206,34207, 0,34207,34207,34207,34207,34207, 34207,34208,34208,34208,34208,34208,34208,34208,34208,34209, 0,34209,34209,34209,34209,34209,34209,34210, 0,34210, 34210,34210,34210,34210,34210,34211, 0,34211,34211,34211, 34211,34211,34211,34212, 0,34212,34212,34212,34212,34212, 34212,34213, 0,34213,34213,34213,34213,34213,34213,34214, 0,34214,34214,34214,34214,34214,34214,34215, 0,34215, 34215,34215,34215,34215,34215,34216, 0,34216,34216,34216, 34216,34216,34216,34217, 0,34217,34217,34217,34217,34217, 34217,34218, 0,34218,34218,34218,34218,34218,34218,34219, 0,34219,34219,34219,34219,34219,34219,34220, 0,34220, 34220,34220,34220,34220,34220,34221, 0,34221,34221,34221, 34221,34221,34221,34222, 0,34222,34222,34222,34222,34222, 34222,34223, 0,34223,34223,34223,34223,34223,34223,34224, 0,34224,34224,34224,34224,34224,34224,34225, 0,34225, 34225,34225,34225,34225,34225,34226, 0,34226,34226,34226, 34226,34226,34226,34227, 0,34227,34227,34227,34227,34227, 34227,34228,34228,34228,34228,34228,34228,34228,34228,34229, 0,34229,34229,34229,34229,34229,34229,34230,34230,34230, 34230,34230,34230,34230,34230,34231,34231,34231,34231,34231, 34231,34231,34231,34232,34232,34232,34232,34232,34232,34232, 34232,34233, 0,34233,34233,34233,34233,34233,34233,34234, 0,34234,34234,34234,34234,34234,34234,34235, 0,34235, 34235,34235,34235,34235,34235,34236, 0,34236,34236,34236, 34236,34236,34236,34237, 0,34237,34237,34237,34237,34237, 34237,34238, 0,34238,34238,34238,34238,34238,34238,34239, 0,34239,34239,34239,34239,34239,34239,34240, 0,34240, 34240,34240,34240,34240,34240,34241, 0,34241,34241,34241, 34241,34241,34241,34242, 0,34242,34242,34242,34242,34242, 34242,34243, 0,34243,34243,34243,34243,34243,34243,34244, 0,34244,34244,34244,34244,34244,34244,34245, 0,34245, 34245,34245,34245,34245,34245,34246, 0,34246,34246,34246, 34246,34246,34246,34247, 0,34247,34247,34247,34247,34247, 34247,34248, 0,34248,34248,34248,34248,34248,34248,34249, 0,34249,34249,34249,34249,34249,34249,34250,34250,34250, 34250,34250,34250,34250,34250,34251, 0,34251,34251,34251, 34251,34251,34251,34252,34252,34252,34252,34252,34252,34252, 34252,34253, 0,34253,34253,34253,34253,34253,34253,34254, 0,34254,34254,34254,34254,34254,34254,34255, 0,34255, 34255,34255,34255,34255,34255,34256, 0,34256,34256,34256, 34256,34256,34256,34257, 0,34257,34257,34257,34257,34257, 34257,34258, 0,34258,34258,34258,34258,34258,34258,34259, 0,34259,34259,34259,34259,34259,34259,34260, 0,34260, 34260,34260,34260,34260,34260,34261, 0,34261,34261,34261, 34261,34261,34261,34262, 0,34262,34262,34262,34262,34262, 34262,34263,34263,34263,34263,34263,34263,34263,34263,34264, 0,34264,34264,34264,34264,34264,34264,34265,34265,34265, 34265,34265,34265,34265,34265,34266, 0,34266,34266,34266, 34266,34266,34266,34267,34267,34267,34267,34267,34267,34267, 34267,34268, 0,34268,34268,34268,34268,34268,34268,34269, 0,34269,34269,34269,34269,34269,34269,34270,34270,34270, 34270,34270,34270,34270,34270,34271,34271,34271,34271,34271, 34271,34271,34271,34272, 0,34272,34272,34272,34272,34272, 34272,34273,34273,34273,34273,34273,34273,34273,34273,34274, 34274,34274,34274,34274,34274,34274,34274,34275, 0,34275, 34275,34275,34275,34275,34275,34276,34276,34276,34276,34276, 34276,34276,34276,34277, 0,34277,34277,34277,34277,34277, 34277,34278,34278,34278,34278,34278,34278,34278,34278,34279, 0,34279,34279,34279,34279,34279,34279,34280,34280,34280, 34280,34280,34280,34280,34280,34281, 0,34281,34281,34281, 34281,34281,34281,34282,34282,34282,34282,34282,34282,34282, 34282,34283, 0,34283,34283,34283,34283,34283,34283,34284, 0,34284,34284,34284,34284,34284,34284,34285,34285,34285, 34285,34285,34285,34285,34285,34286, 0,34286,34286,34286, 34286,34286,34286,34287, 0,34287,34287,34287,34287,34287, 34287,34288, 0,34288,34288,34288,34288,34288,34288,34289, 0,34289,34289,34289,34289,34289,34289,34290, 0,34290, 34290,34290,34290,34290,34290,34291, 0,34291,34291,34291, 34291,34291,34291,34292, 0,34292,34292,34292,34292,34292, 34292,34293, 0,34293,34293,34293,34293,34293,34293,34294, 0,34294,34294,34294,34294,34294,34294,34295, 0,34295, 34295,34295,34295,34295,34295,34296, 0,34296,34296,34296, 34296,34296,34296,34297, 0,34297,34297,34297,34297,34297, 34297,34298, 0,34298,34298,34298,34298,34298,34298,34299, 0,34299,34299,34299,34299,34299,34299,34300, 0,34300, 34300,34300,34300,34300,34300,34301, 0,34301,34301,34301, 34301,34301,34301,34302, 0,34302,34302,34302,34302,34302, 34302,34303, 0,34303,34303,34303,34303,34303,34303,34304, 0,34304,34304,34304,34304,34304,34304,34305,34305,34305, 34305,34305,34305,34305,34305,34306, 0,34306,34306,34306, 34306,34306,34306,34307,34307,34307,34307,34307,34307,34307, 34307,34308,34308,34308,34308,34308,34308,34308,34308,34309, 34309,34309,34309,34309,34309,34309,34309,34310, 0,34310, 34310,34310,34310,34310,34310,34311, 0,34311,34311,34311, 34311,34311,34311,34312, 0,34312,34312,34312,34312,34312, 34312,34313, 0,34313,34313,34313,34313,34313,34313,34314, 0,34314,34314,34314,34314,34314,34314,34315, 0,34315, 34315,34315,34315,34315,34315,34316, 0,34316,34316,34316, 34316,34316,34316,34317, 0,34317,34317,34317,34317,34317, 34317,34318, 0,34318,34318,34318,34318,34318,34318,34319, 0,34319,34319,34319,34319,34319,34319,34320, 0,34320, 34320,34320,34320,34320,34320,34321, 0,34321,34321,34321, 34321,34321,34321,34322, 0,34322,34322,34322,34322,34322, 34322,34323, 0,34323,34323,34323,34323,34323,34323,34324, 34324,34324,34324,34324,34324,34324,34324,34325, 0,34325, 34325,34325,34325,34325,34325,34326,34326,34326,34326,34326, 34326,34326,34326,34327, 0,34327,34327,34327,34327,34327, 34327,34328, 0,34328,34328,34328,34328,34328,34328,34329, 0,34329,34329,34329,34329,34329,34329,34330, 0,34330, 34330,34330,34330,34330,34330,34331, 0,34331,34331,34331, 34331,34331,34331,34332, 0,34332,34332,34332,34332,34332, 34332,34333, 0,34333,34333,34333,34333,34333,34333,34334, 0,34334,34334,34334,34334,34334,34334,34335, 0,34335, 34335,34335,34335,34335,34335,34336,34336,34336,34336,34336, 34336,34336,34336,34337, 0,34337,34337,34337,34337,34337, 34337,34338,34338,34338,34338,34338,34338,34338,34338,34339, 0,34339,34339,34339,34339,34339,34339,34340,34340,34340, 34340,34340,34340,34340,34340,34341, 0,34341,34341,34341, 34341,34341,34341,34342, 0,34342,34342,34342,34342,34342, 34342,34343,34343,34343,34343,34343,34343,34343,34343,34344, 34344,34344,34344,34344,34344,34344,34344,34345, 0,34345, 34345,34345,34345,34345,34345,34346,34346,34346,34346,34346, 34346,34346,34346,34347,34347,34347,34347,34347,34347,34347, 34347,34348, 0,34348,34348,34348,34348,34348,34348,34349, 34349,34349,34349,34349,34349,34349,34349,34350, 0,34350, 34350,34350,34350,34350,34350,34351,34351,34351,34351,34351, 34351,34351,34351,34352, 0,34352,34352,34352,34352,34352, 34352,34353,34353,34353,34353,34353,34353,34353,34353,34354, 0,34354,34354,34354,34354,34354,34354,34355,34355,34355, 34355,34355,34355,34355,34355,34356, 0,34356,34356,34356, 34356,34356,34356,34357, 0,34357,34357,34357,34357,34357, 34357,34358,34358,34358,34358,34358,34358,34358,34358,34359, 0,34359,34359,34359,34359,34359,34359,34360, 0,34360, 34360,34360,34360,34360,34360,34361, 0,34361,34361,34361, 34361,34361,34361,34362, 0,34362,34362,34362,34362,34362, 34362,34363, 0,34363,34363,34363,34363,34363,34363,34364, 0,34364,34364,34364,34364,34364,34364,34365, 0,34365, 34365,34365,34365,34365,34365,34366, 0,34366,34366,34366, 34366,34366,34366,34367, 0,34367,34367,34367,34367,34367, 34367,34368, 0,34368,34368,34368,34368,34368,34368,34369, 0,34369,34369,34369,34369,34369,34369,34370, 0,34370, 34370,34370,34370,34370,34370,34371, 0,34371,34371,34371, 34371,34371,34371,34372, 0,34372,34372,34372,34372,34372, 34372,34373, 0,34373,34373,34373,34373,34373,34373,34374, 0,34374,34374,34374,34374,34374,34374,34375, 0,34375, 34375,34375,34375,34375,34375,34376, 0,34376,34376,34376, 34376,34376,34376,34377,34377,34377,34377,34377,34377,34377, 34377,34378, 0,34378,34378,34378,34378,34378,34378,34379, 34379,34379,34379,34379,34379,34379,34379,34380,34380,34380, 34380,34380,34380,34380,34380,34381,34381,34381,34381,34381, 34381,34381,34381,34382, 0,34382,34382,34382,34382,34382, 34382,34383, 0,34383,34383,34383,34383,34383,34383,34384, 0,34384,34384,34384,34384,34384,34384,34385, 0,34385, 34385,34385,34385,34385,34385,34386, 0,34386,34386,34386, 34386,34386,34386,34387, 0,34387,34387,34387,34387,34387, 34387,34388, 0,34388,34388,34388,34388,34388,34388,34389, 0,34389,34389,34389,34389,34389,34389,34390, 0,34390, 34390,34390,34390,34390,34390,34391, 0,34391,34391,34391, 34391,34391,34391,34392, 0,34392,34392,34392,34392,34392, 34392,34393, 0,34393,34393,34393,34393,34393,34393,34394, 0,34394,34394,34394,34394,34394,34394,34395, 0,34395, 34395,34395,34395,34395,34395,34396,34396,34396,34396,34396, 34396,34396,34396,34397, 0,34397,34397,34397,34397,34397, 34397,34398,34398,34398,34398,34398,34398,34398,34398,34399, 0,34399,34399,34399,34399,34399,34399,34400, 0,34400, 34400,34400,34400,34400,34400,34401, 0,34401,34401,34401, 34401,34401,34401,34402, 0,34402,34402,34402,34402,34402, 34402,34403, 0,34403,34403,34403,34403,34403,34403,34404, 0,34404,34404,34404,34404,34404,34404,34405, 0,34405, 34405,34405,34405,34405,34405,34406, 0,34406,34406,34406, 34406,34406,34406,34407, 0,34407,34407,34407,34407,34407, 34407,34408,34408,34408,34408,34408,34408,34408,34408,34409, 0,34409,34409,34409,34409,34409,34409,34410,34410,34410, 34410,34410,34410,34410,34410,34411, 0,34411,34411,34411, 34411,34411,34411,34412,34412,34412,34412,34412,34412,34412, 34412,34413, 0,34413,34413,34413,34413,34413,34413,34414, 0,34414,34414,34414,34414,34414,34414,34415, 0,34415, 34415,34415,34415,34415,34415,34416,34416,34416,34416,34416, 34416,34416,34416,34417,34417,34417,34417,34417,34417,34417, 34417,34418, 0,34418,34418,34418,34418,34418,34418,34419, 34419,34419,34419,34419,34419,34419,34419,34420,34420,34420, 34420,34420,34420,34420,34420,34421, 0,34421,34421,34421, 34421,34421,34421,34422,34422,34422,34422,34422,34422,34422, 34422,34423, 0,34423,34423,34423,34423,34423,34423,34424, 34424,34424,34424,34424,34424,34424,34424,34425, 0,34425, 34425,34425,34425,34425,34425,34426,34426,34426,34426,34426, 34426,34426,34426,34427, 0,34427,34427,34427,34427,34427, 34427,34428,34428,34428,34428,34428,34428,34428,34428,34429, 0,34429,34429,34429,34429,34429,34429,34430,34430,34430, 34430,34430,34430,34430,34430,34431, 0,34431,34431,34431, 34431,34431,34431,34432, 0,34432,34432,34432,34432,34432, 34432,34433, 0,34433,34433,34433,34433,34433,34433,34434, 0,34434,34434,34434,34434,34434,34434,34435, 0,34435, 34435,34435,34435,34435,34435,34436, 0,34436,34436,34436, 34436,34436,34436,34437, 0,34437,34437,34437,34437,34437, 34437,34438, 0,34438,34438,34438,34438,34438,34438,34439, 0,34439,34439,34439,34439,34439,34439,34440, 0,34440, 34440,34440,34440,34440,34440,34441, 0,34441,34441,34441, 34441,34441,34441,34442, 0,34442,34442,34442,34442,34442, 34442,34443, 0,34443,34443,34443,34443,34443,34443,34444, 0,34444,34444,34444,34444,34444,34444,34445, 0,34445, 34445,34445,34445,34445,34445,34446, 0,34446,34446,34446, 34446,34446,34446,34447, 0,34447,34447,34447,34447,34447, 34447,34448, 0,34448,34448,34448,34448,34448,34448,34449, 34449,34449,34449,34449,34449,34449,34449,34450, 0,34450, 34450,34450,34450,34450,34450,34451,34451,34451,34451,34451, 34451,34451,34451,34452,34452,34452,34452,34452,34452,34452, 34452,34453,34453,34453,34453,34453,34453,34453,34453,34454, 0,34454,34454,34454,34454,34454,34454,34455, 0,34455, 34455,34455,34455,34455,34455,34456, 0,34456,34456,34456, 34456,34456,34456,34457, 0,34457,34457,34457,34457,34457, 34457,34458, 0,34458,34458,34458,34458,34458,34458,34459, 0,34459,34459,34459,34459,34459,34459,34460, 0,34460, 34460,34460,34460,34460,34460,34461, 0,34461,34461,34461, 34461,34461,34461,34462, 0,34462,34462,34462,34462,34462, 34462,34463, 0,34463,34463,34463,34463,34463,34463,34464, 0,34464,34464,34464,34464,34464,34464,34465, 0,34465, 34465,34465,34465,34465,34465,34466, 0,34466,34466,34466, 34466,34466,34466,34467,34467,34467,34467,34467,34467,34467, 34467,34468, 0,34468,34468,34468,34468,34468,34468,34469, 34469,34469,34469,34469,34469,34469,34469,34470, 0,34470, 34470,34470,34470,34470,34470,34471, 0,34471,34471,34471, 34471,34471,34471,34472, 0,34472,34472,34472,34472,34472, 34472,34473, 0,34473,34473,34473,34473,34473,34473,34474, 0,34474,34474,34474,34474,34474,34474,34475, 0,34475, 34475,34475,34475,34475,34475,34476, 0,34476,34476,34476, 34476,34476,34476,34477, 0,34477,34477,34477,34477,34477, 34477,34478, 0,34478,34478,34478,34478,34478,34478,34479, 34479,34479,34479,34479,34479,34479,34479,34480, 0,34480, 34480,34480,34480,34480,34480,34481,34481,34481,34481,34481, 34481,34481,34481,34482, 0,34482,34482,34482,34482,34482, 34482,34483,34483,34483,34483,34483,34483,34483,34483,34484, 0,34484,34484,34484,34484,34484,34484,34485, 0,34485, 34485,34485,34485,34485,34485,34486,34486,34486,34486,34486, 34486,34486,34486,34487,34487,34487,34487,34487,34487,34487, 34487,34488, 0,34488,34488,34488,34488,34488,34488,34489, 34489,34489,34489,34489,34489,34489,34489,34490,34490,34490, 34490,34490,34490,34490,34490,34491, 0,34491,34491,34491, 34491,34491,34491,34492,34492,34492,34492,34492,34492,34492, 34492,34493, 0,34493,34493,34493,34493,34493,34493,34494, 0,34494,34494,34494,34494,34494,34494,34495,34495,34495, 34495,34495,34495,34495,34495,34496, 0,34496,34496,34496, 34496,34496,34496,34497,34497,34497,34497,34497,34497,34497, 34497,34498, 0,34498,34498,34498,34498,34498,34498,34499, 0,34499,34499,34499,34499,34499,34499,34500,34500,34500, 34500,34500,34500,34500,34500,34501, 0,34501,34501,34501, 34501,34501,34501,34502, 0,34502,34502,34502,34502,34502, 34502,34503, 0,34503,34503,34503,34503,34503,34503,34504, 0,34504,34504,34504,34504,34504,34504,34505, 0,34505, 34505,34505,34505,34505,34505,34506, 0,34506,34506,34506, 34506,34506,34506,34507, 0,34507,34507,34507,34507,34507, 34507,34508, 0,34508,34508,34508,34508,34508,34508,34509, 0,34509,34509,34509,34509,34509,34509,34510, 0,34510, 34510,34510,34510,34510,34510,34511, 0,34511,34511,34511, 34511,34511,34511,34512, 0,34512,34512,34512,34512,34512, 34512,34513, 0,34513,34513,34513,34513,34513,34513,34514, 0,34514,34514,34514,34514,34514,34514,34515, 0,34515, 34515,34515,34515,34515,34515,34516, 0,34516,34516,34516, 34516,34516,34516,34517,34517,34517,34517,34517,34517,34517, 34517,34518, 0,34518,34518,34518,34518,34518,34518,34519, 34519,34519,34519,34519,34519,34519,34519,34520,34520,34520, 34520,34520,34520,34520,34520,34521,34521,34521,34521,34521, 34521,34521,34521,34522, 0,34522,34522,34522,34522,34522, 34522,34523, 0,34523,34523,34523,34523,34523,34523,34524, 0,34524,34524,34524,34524,34524,34524,34525, 0,34525, 34525,34525,34525,34525,34525,34526, 0,34526,34526,34526, 34526,34526,34526,34527, 0,34527,34527,34527,34527,34527, 34527,34528, 0,34528,34528,34528,34528,34528,34528,34529, 0,34529,34529,34529,34529,34529,34529,34530, 0,34530, 34530,34530,34530,34530,34530,34531, 0,34531,34531,34531, 34531,34531,34531,34532, 0,34532,34532,34532,34532,34532, 34532,34533, 0,34533,34533,34533,34533,34533,34533,34534, 34534,34534,34534,34534,34534,34534,34534,34535, 0,34535, 34535,34535,34535,34535,34535,34536,34536,34536,34536,34536, 34536,34536,34536,34537, 0,34537,34537,34537,34537,34537, 34537,34538, 0,34538,34538,34538,34538,34538,34538,34539, 0,34539,34539,34539,34539,34539,34539,34540, 0,34540, 34540,34540,34540,34540,34540,34541, 0,34541,34541,34541, 34541,34541,34541,34542, 0,34542,34542,34542,34542,34542, 34542,34543, 0,34543,34543,34543,34543,34543,34543,34544, 0,34544,34544,34544,34544,34544,34544,34545, 0,34545, 34545,34545,34545,34545,34545,34546, 0,34546,34546,34546, 34546,34546,34546,34547, 0,34547,34547,34547,34547,34547, 34547,34548, 0,34548,34548,34548,34548,34548,34548,34549, 0,34549,34549,34549,34549,34549,34549,34550, 0,34550, 34550,34550,34550,34550,34550,34551,34551,34551,34551,34551, 34551,34551,34551,34552,34552,34552,34552,34552,34552,34552, 34552,34553, 0,34553,34553,34553,34553,34553,34553,34554, 34554,34554,34554,34554,34554,34554,34554,34555,34555,34555, 34555,34555,34555,34555,34555,34556, 0,34556,34556,34556, 34556,34556,34556,34557,34557,34557,34557,34557,34557,34557, 34557,34558, 0,34558,34558,34558,34558,34558,34558,34559, 0,34559,34559,34559,34559,34559,34559,34560,34560,34560, 34560,34560,34560,34560,34560,34561, 0,34561,34561,34561, 34561,34561,34561,34562,34562,34562,34562,34562,34562,34562, 34562,34563, 0,34563,34563,34563,34563,34563,34563,34564, 0,34564,34564,34564,34564,34564,34564,34565,34565,34565, 34565,34565,34565,34565,34565,34566, 0,34566,34566,34566, 34566,34566,34566,34567, 0,34567,34567,34567,34567,34567, 34567,34568, 0,34568,34568,34568,34568,34568,34568,34569, 0,34569,34569,34569,34569,34569,34569,34570, 0,34570, 34570,34570,34570,34570,34570,34571, 0,34571,34571,34571, 34571,34571,34571,34572, 0,34572,34572,34572,34572,34572, 34572,34573, 0,34573,34573,34573,34573,34573,34573,34574, 0,34574,34574,34574,34574,34574,34574,34575, 0,34575, 34575,34575,34575,34575,34575,34576, 0,34576,34576,34576, 34576,34576,34576,34577, 0,34577,34577,34577,34577,34577, 34577,34578, 0,34578,34578,34578,34578,34578,34578,34579, 0,34579,34579,34579,34579,34579,34579,34580, 0,34580, 34580,34580,34580,34580,34580,34581,34581,34581,34581,34581, 34581,34581,34581,34582, 0,34582,34582,34582,34582,34582, 34582,34583,34583,34583,34583,34583,34583,34583,34583,34584, 34584,34584,34584,34584,34584,34584,34584,34585,34585,34585, 34585,34585,34585,34585,34585,34586, 0,34586,34586,34586, 34586,34586,34586,34587, 0,34587,34587,34587,34587,34587, 34587,34588, 0,34588,34588,34588,34588,34588,34588,34589, 0,34589,34589,34589,34589,34589,34589,34590, 0,34590, 34590,34590,34590,34590,34590,34591, 0,34591,34591,34591, 34591,34591,34591,34592, 0,34592,34592,34592,34592,34592, 34592,34593, 0,34593,34593,34593,34593,34593,34593,34594, 0,34594,34594,34594,34594,34594,34594,34595, 0,34595, 34595,34595,34595,34595,34595,34596, 0,34596,34596,34596, 34596,34596,34596,34597, 0,34597,34597,34597,34597,34597, 34597,34598,34598,34598,34598,34598,34598,34598,34598,34599, 0,34599,34599,34599,34599,34599,34599,34600, 0,34600, 34600,34600,34600,34600,34600,34601, 0,34601,34601,34601, 34601,34601,34601,34602, 0,34602,34602,34602,34602,34602, 34602,34603, 0,34603,34603,34603,34603,34603,34603,34604, 0,34604,34604,34604,34604,34604,34604,34605, 0,34605, 34605,34605,34605,34605,34605,34606, 0,34606,34606,34606, 34606,34606,34606,34607, 0,34607,34607,34607,34607,34607, 34607,34608, 0,34608,34608,34608,34608,34608,34608,34609, 0,34609,34609,34609,34609,34609,34609,34610, 0,34610, 34610,34610,34610,34610,34610,34611, 0,34611,34611,34611, 34611,34611,34611,34612,34612,34612,34612,34612,34612,34612, 34612,34613, 0,34613,34613,34613,34613,34613,34613,34614, 34614,34614,34614,34614,34614,34614,34614,34615,34615,34615, 34615,34615,34615,34615,34615,34616,34616,34616,34616,34616, 34616,34616,34616,34617, 0,34617,34617,34617,34617,34617, 34617,34618,34618,34618,34618,34618,34618,34618,34618,34619, 34619,34619,34619,34619,34619,34619,34619,34620,34620,34620, 34620,34620,34620,34620,34620,34621, 0,34621,34621,34621, 34621,34621,34621,34622,34622,34622,34622,34622,34622,34622, 34622,34623, 0,34623,34623,34623,34623,34623,34623,34624, 0,34624,34624,34624,34624,34624,34624,34625,34625,34625, 34625,34625,34625,34625,34625,34626, 0,34626,34626,34626, 34626,34626,34626,34627,34627,34627,34627,34627,34627,34627, 34627,34628, 0,34628,34628,34628,34628,34628,34628,34629, 0,34629,34629,34629,34629,34629,34629,34630, 0,34630, 34630,34630,34630,34630,34630,34631,34631,34631,34631,34631, 34631,34631,34631,34632, 0,34632,34632,34632,34632,34632, 34632,34633, 0,34633,34633,34633,34633,34633,34633,34634, 0,34634,34634,34634,34634,34634,34634,34635, 0,34635, 34635,34635,34635,34635,34635,34636, 0,34636,34636,34636, 34636,34636,34636,34637, 0,34637,34637,34637,34637,34637, 34637,34638, 0,34638,34638,34638,34638,34638,34638,34639, 0,34639,34639,34639,34639,34639,34639,34640, 0,34640, 34640,34640,34640,34640,34640,34641, 0,34641,34641,34641, 34641,34641,34641,34642, 0,34642,34642,34642,34642,34642, 34642,34643, 0,34643,34643,34643,34643,34643,34643,34644, 0,34644,34644,34644,34644,34644,34644,34645, 0,34645, 34645,34645,34645,34645,34645,34646, 0,34646,34646,34646, 34646,34646,34646,34647, 0,34647,34647,34647,34647,34647, 34647,34648,34648,34648,34648,34648,34648,34648,34648,34649, 34649,34649,34649,34649,34649,34649,34649,34650,34650,34650, 34650,34650,34650,34650,34650,34651, 0,34651,34651,34651, 34651,34651,34651,34652, 0,34652,34652,34652,34652,34652, 34652,34653, 0,34653,34653,34653,34653,34653,34653,34654, 0,34654,34654,34654,34654,34654,34654,34655, 0,34655, 34655,34655,34655,34655,34655,34656, 0,34656,34656,34656, 34656,34656,34656,34657, 0,34657,34657,34657,34657,34657, 34657,34658, 0,34658,34658,34658,34658,34658,34658,34659, 0,34659,34659,34659,34659,34659,34659,34660, 0,34660, 34660,34660,34660,34660,34660,34661, 0,34661,34661,34661, 34661,34661,34661,34662, 0,34662,34662,34662,34662,34662, 34662,34663, 0,34663,34663,34663,34663,34663,34663,34664, 0,34664,34664,34664,34664,34664,34664,34665, 0,34665, 34665,34665,34665,34665,34665,34666, 0,34666,34666,34666, 34666,34666,34666,34667, 0,34667,34667,34667,34667,34667, 34667,34668, 0,34668,34668,34668,34668,34668,34668,34669, 0,34669,34669,34669,34669,34669,34669,34670, 0,34670, 34670,34670,34670,34670,34670,34671, 0,34671,34671,34671, 34671,34671,34671,34672, 0,34672,34672,34672,34672,34672, 34672,34673, 0,34673,34673,34673,34673,34673,34673,34674, 0,34674,34674,34674,34674,34674,34674,34675, 0,34675, 34675,34675,34675,34675,34675,34676, 0,34676,34676,34676, 34676,34676,34676,34677,34677,34677,34677,34677,34677,34677, 34677,34678, 0,34678,34678,34678,34678,34678,34678,34679, 34679,34679,34679,34679,34679,34679,34679,34680, 0,34680, 34680,34680,34680,34680,34680,34681,34681,34681,34681,34681, 34681,34681,34681,34682,34682,34682,34682,34682,34682,34682, 34682,34683, 0,34683,34683,34683,34683,34683,34683,34684, 34684,34684,34684,34684,34684,34684,34684,34685, 0,34685, 34685,34685,34685,34685,34685,34686, 0,34686,34686,34686, 34686,34686,34686,34687, 0,34687,34687,34687,34687,34687, 34687,34688,34688,34688,34688,34688,34688,34688,34688,34689, 34689,34689,34689,34689,34689,34689,34689,34690, 0,34690, 34690,34690,34690,34690,34690,34691, 0,34691,34691,34691, 34691,34691,34691,34692, 0,34692,34692,34692,34692,34692, 34692,34693, 0,34693,34693,34693,34693,34693,34693,34694, 0,34694,34694,34694,34694,34694,34694,34695,34695,34695, 34695,34695,34695,34695,34695,34696, 0,34696,34696,34696, 34696,34696,34696,34697, 0,34697,34697,34697,34697,34697, 34697,34698, 0,34698,34698,34698,34698,34698,34698,34699, 0,34699,34699,34699,34699,34699,34699,34700, 0,34700, 34700,34700,34700,34700,34700,34701, 0,34701,34701,34701, 34701,34701,34701,34702, 0,34702,34702,34702,34702,34702, 34702,34703, 0,34703,34703,34703,34703,34703,34703,34704, 0,34704,34704,34704,34704,34704,34704,34705, 0,34705, 34705,34705,34705,34705,34705,34706, 0,34706,34706,34706, 34706,34706,34706,34707, 0,34707,34707,34707,34707,34707, 34707,34708, 0,34708,34708,34708,34708,34708,34708,34709, 0,34709,34709,34709,34709,34709,34709,34710, 0,34710, 34710,34710,34710,34710,34710,34711, 0,34711,34711,34711, 34711,34711,34711,34712,34712,34712,34712,34712,34712,34712, 34712,34713,34713,34713,34713,34713,34713,34713,34713,34714, 34714,34714,34714,34714,34714,34714,34714,34715, 0,34715, 34715,34715,34715,34715,34715,34716, 0,34716,34716,34716, 34716,34716,34716,34717, 0,34717,34717,34717,34717,34717, 34717,34718, 0,34718,34718,34718,34718,34718,34718,34719, 0,34719,34719,34719,34719,34719,34719,34720, 0,34720, 34720,34720,34720,34720,34720,34721, 0,34721,34721,34721, 34721,34721,34721,34722, 0,34722,34722,34722,34722,34722, 34722,34723, 0,34723,34723,34723,34723,34723,34723,34724, 0,34724,34724,34724,34724,34724,34724,34725, 0,34725, 34725,34725,34725,34725,34725,34726, 0,34726,34726,34726, 34726,34726,34726,34727, 0,34727,34727,34727,34727,34727, 34727,34728, 0,34728,34728,34728,34728,34728,34728,34729, 0,34729,34729,34729,34729,34729,34729,34730, 0,34730, 34730,34730,34730,34730,34730,34731, 0,34731,34731,34731, 34731,34731,34731,34732, 0,34732,34732,34732,34732,34732, 34732,34733, 0,34733,34733,34733,34733,34733,34733,34734, 0,34734,34734,34734,34734,34734,34734,34735, 0,34735, 34735,34735,34735,34735,34735,34736, 0,34736,34736,34736, 34736,34736,34736,34737, 0,34737,34737,34737,34737,34737, 34737,34738, 0,34738,34738,34738,34738,34738,34738,34739, 0,34739,34739,34739,34739,34739,34739,34740, 0,34740, 34740,34740,34740,34740,34740,34741,34741,34741,34741,34741, 34741,34741,34741,34742, 0,34742,34742,34742,34742,34742, 34742,34743,34743,34743,34743,34743,34743,34743,34743,34744, 0,34744,34744,34744,34744,34744,34744,34745,34745,34745, 34745,34745,34745,34745,34745,34746, 0,34746,34746,34746, 34746,34746,34746,34747,34747,34747,34747,34747,34747,34747, 34747,34748, 0,34748,34748,34748,34748,34748,34748,34749, 34749,34749,34749,34749,34749,34749,34749,34750, 0,34750, 34750,34750,34750,34750,34750,34751,34751,34751,34751,34751, 34751,34751,34751,34752, 0,34752,34752,34752,34752,34752, 34752,34753,34753,34753,34753,34753,34753,34753,34753,34754, 0,34754,34754,34754,34754,34754,34754,34755, 0,34755, 34755,34755,34755,34755,34755,34756, 0,34756,34756,34756, 34756,34756,34756,34757,34757,34757,34757,34757,34757,34757, 34757,34758, 0,34758,34758,34758,34758,34758,34758,34759, 0,34759,34759,34759,34759,34759,34759,34760, 0,34760, 34760,34760,34760,34760,34760,34761, 0,34761,34761,34761, 34761,34761,34761,34762, 0,34762,34762,34762,34762,34762, 34762,34763, 0,34763,34763,34763,34763,34763,34763,34764, 0,34764,34764,34764,34764,34764,34764,34765, 0,34765, 34765,34765,34765,34765,34765,34766, 0,34766,34766,34766, 34766,34766,34766,34767, 0,34767,34767,34767,34767,34767, 34767,34768, 0,34768,34768,34768,34768,34768,34768,34769, 0,34769,34769,34769,34769,34769,34769,34770, 0,34770, 34770,34770,34770,34770,34770,34771, 0,34771,34771,34771, 34771,34771,34771,34772,34772,34772,34772,34772,34772,34772, 34772,34773,34773,34773,34773,34773,34773,34773,34773,34774, 34774,34774,34774,34774,34774,34774,34774,34775, 0,34775, 34775,34775,34775,34775,34775,34776, 0,34776,34776,34776, 34776,34776,34776,34777, 0,34777,34777,34777,34777,34777, 34777,34778, 0,34778,34778,34778,34778,34778,34778,34779, 0,34779,34779,34779,34779,34779,34779,34780, 0,34780, 34780,34780,34780,34780,34780,34781, 0,34781,34781,34781, 34781,34781,34781,34782, 0,34782,34782,34782,34782,34782, 34782,34783, 0,34783,34783,34783,34783,34783,34783,34784, 0,34784,34784,34784,34784,34784,34784,34785, 0,34785, 34785,34785,34785,34785,34785,34786, 0,34786,34786,34786, 34786,34786,34786,34787, 0,34787,34787,34787,34787,34787, 34787,34788, 0,34788,34788,34788,34788,34788,34788,34789, 0,34789,34789,34789,34789,34789,34789,34790, 0,34790, 34790,34790,34790,34790,34790,34791, 0,34791,34791,34791, 34791,34791,34791,34792, 0,34792,34792,34792,34792,34792, 34792,34793, 0,34793,34793,34793,34793,34793,34793,34794, 0,34794,34794,34794,34794,34794,34794,34795, 0,34795, 34795,34795,34795,34795,34795,34796, 0,34796,34796,34796, 34796,34796,34796,34797, 0,34797,34797,34797,34797,34797, 34797,34798, 0,34798,34798,34798,34798,34798,34798,34799, 0,34799,34799,34799,34799,34799,34799,34800, 0,34800, 34800,34800,34800,34800,34800,34801,34801,34801,34801,34801, 34801,34801,34801,34802, 0,34802,34802,34802,34802,34802, 34802,34803,34803,34803,34803,34803,34803,34803,34803,34804, 0,34804,34804,34804,34804,34804,34804,34805,34805,34805, 34805,34805,34805,34805,34805,34806, 0,34806,34806,34806, 34806,34806,34806,34807,34807,34807,34807,34807,34807,34807, 34807,34808, 0,34808,34808,34808,34808,34808,34808,34809, 34809,34809,34809,34809,34809,34809,34809,34810, 0,34810, 34810,34810,34810,34810,34810,34811,34811,34811,34811,34811, 34811,34811,34811,34812, 0,34812,34812,34812,34812,34812, 34812,34813,34813,34813,34813,34813,34813,34813,34813,34814, 0,34814,34814,34814,34814,34814,34814,34815, 0,34815, 34815,34815,34815,34815,34815,34816, 0,34816,34816,34816, 34816,34816,34816,34817,34817,34817,34817,34817,34817,34817, 34817,34818, 0,34818,34818,34818,34818,34818,34818,34819, 0,34819,34819,34819,34819,34819,34819,34820, 0,34820, 34820,34820,34820,34820,34820,34821, 0,34821,34821,34821, 34821,34821,34821,34822, 0,34822,34822,34822,34822,34822, 34822,34823, 0,34823,34823,34823,34823,34823,34823,34824, 0,34824,34824,34824,34824,34824,34824,34825, 0,34825, 34825,34825,34825,34825,34825,34826, 0,34826,34826,34826, 34826,34826,34826,34827, 0,34827,34827,34827,34827,34827, 34827,34828, 0,34828,34828,34828,34828,34828,34828,34829, 0,34829,34829,34829,34829,34829,34829,34830, 0,34830, 34830,34830,34830,34830,34830,34831,34831,34831,34831,34831, 34831,34831,34831,34832,34832,34832,34832,34832,34832,34832, 34832,34833,34833,34833,34833,34833,34833,34833,34833,34834, 0,34834,34834,34834,34834,34834,34834,34835, 0,34835, 34835,34835,34835,34835,34835,34836, 0,34836,34836,34836, 34836,34836,34836,34837, 0,34837,34837,34837,34837,34837, 34837,34838, 0,34838,34838,34838,34838,34838,34838,34839, 0,34839,34839,34839,34839,34839,34839,34840, 0,34840, 34840,34840,34840,34840,34840,34841, 0,34841,34841,34841, 34841,34841,34841,34842, 0,34842,34842,34842,34842,34842, 34842,34843, 0,34843,34843,34843,34843,34843,34843,34844, 0,34844,34844,34844,34844,34844,34844,34845, 0,34845, 34845,34845,34845,34845,34845,34846, 0,34846,34846,34846, 34846,34846,34846,34847, 0,34847,34847,34847,34847,34847, 34847,34848, 0,34848,34848,34848,34848,34848,34848,34849, 0,34849,34849,34849,34849,34849,34849,34850, 0,34850, 34850,34850,34850,34850,34850,34851, 0,34851,34851,34851, 34851,34851,34851,34852, 0,34852,34852,34852,34852,34852, 34852,34853, 0,34853,34853,34853,34853,34853,34853,34854, 0,34854,34854,34854,34854,34854,34854,34855, 0,34855, 34855,34855,34855,34855,34855,34856, 0,34856,34856,34856, 34856,34856,34856,34857, 0,34857,34857,34857,34857,34857, 34857,34858, 0,34858,34858,34858,34858,34858,34858,34859, 0,34859,34859,34859,34859,34859,34859,34860, 0,34860, 34860,34860,34860,34860,34860,34861,34861,34861,34861,34861, 34861,34861,34861,34862, 0,34862,34862,34862,34862,34862, 34862,34863,34863,34863,34863,34863,34863,34863,34863,34864, 0,34864,34864,34864,34864,34864,34864,34865,34865,34865, 34865,34865,34865,34865,34865,34866, 0,34866,34866,34866, 34866,34866,34866,34867,34867,34867,34867,34867,34867,34867, 34867,34868, 0,34868,34868,34868,34868,34868,34868,34869, 34869,34869,34869,34869,34869,34869,34869,34870, 0,34870, 34870,34870,34870,34870,34870,34871,34871,34871,34871,34871, 34871,34871,34871,34872, 0,34872,34872,34872,34872,34872, 34872,34873,34873,34873,34873,34873,34873,34873,34873,34874, 0,34874,34874,34874,34874,34874,34874,34875, 0,34875, 34875,34875,34875,34875,34875,34876, 0,34876,34876,34876, 34876,34876,34876,34877,34877,34877,34877,34877,34877,34877, 34877,34878, 0,34878,34878,34878,34878,34878,34878,34879, 0,34879,34879,34879,34879,34879,34879,34880, 0,34880, 34880,34880,34880,34880,34880,34881, 0,34881,34881,34881, 34881,34881,34881,34882, 0,34882,34882,34882,34882,34882, 34882,34883, 0,34883,34883,34883,34883,34883,34883,34884, 0,34884,34884,34884,34884,34884,34884,34885, 0,34885, 34885,34885,34885,34885,34885,34886, 0,34886,34886,34886, 34886,34886,34886,34887, 0,34887,34887,34887,34887,34887, 34887,34888, 0,34888,34888,34888,34888,34888,34888,34889, 0,34889,34889,34889,34889,34889,34889,34890, 0,34890, 34890,34890,34890,34890,34890,34891,34891,34891,34891,34891, 34891,34891,34891,34892,34892,34892,34892,34892,34892,34892, 34892,34893,34893,34893,34893,34893,34893,34893,34893,34894, 0,34894,34894,34894,34894,34894,34894,34895, 0,34895, 34895,34895,34895,34895,34895,34896, 0,34896,34896,34896, 34896,34896,34896,34897, 0,34897,34897,34897,34897,34897, 34897,34898, 0,34898,34898,34898,34898,34898,34898,34899, 0,34899,34899,34899,34899,34899,34899,34900, 0,34900, 34900,34900,34900,34900,34900,34901, 0,34901,34901,34901, 34901,34901,34901,34902, 0,34902,34902,34902,34902,34902, 34902,34903, 0,34903,34903,34903,34903,34903,34903,34904, 0,34904,34904,34904,34904,34904,34904,34905, 0,34905, 34905,34905,34905,34905,34905,34906, 0,34906,34906,34906, 34906,34906,34906,34907, 0,34907,34907,34907,34907,34907, 34907,34908, 0,34908,34908,34908,34908,34908,34908,34909, 0,34909,34909,34909,34909,34909,34909,34910, 0,34910, 34910,34910,34910,34910,34910,34911, 0,34911,34911,34911, 34911,34911,34911,34912, 0,34912,34912,34912,34912,34912, 34912,34913, 0,34913,34913,34913,34913,34913,34913,34914, 0,34914,34914,34914,34914,34914,34914,34915, 0,34915, 34915,34915,34915,34915,34915,34916, 0,34916,34916,34916, 34916,34916,34916,34917, 0,34917,34917,34917,34917,34917, 34917,34918, 0,34918,34918,34918,34918,34918,34918,34919, 0,34919,34919,34919,34919,34919,34919,34920, 0,34920, 34920,34920,34920,34920,34920,34921,34921,34921,34921,34921, 34921,34921,34921,34922, 0,34922,34922,34922,34922,34922, 34922,34923,34923,34923,34923,34923,34923,34923,34923,34924, 0,34924,34924,34924,34924,34924,34924,34925,34925,34925, 34925,34925,34925,34925,34925,34926, 0,34926,34926,34926, 34926,34926,34926,34927,34927,34927,34927,34927,34927,34927, 34927,34928, 0,34928,34928,34928,34928,34928,34928,34929, 34929,34929,34929,34929,34929,34929,34929,34930, 0,34930, 34930,34930,34930,34930,34930,34931,34931,34931,34931,34931, 34931,34931,34931,34932, 0,34932,34932,34932,34932,34932, 34932,34933,34933,34933,34933,34933,34933,34933,34933,34934, 0,34934,34934,34934,34934,34934,34934,34935, 0,34935, 34935,34935,34935,34935,34935,34936, 0,34936,34936,34936, 34936,34936,34936,34937,34937,34937,34937,34937,34937,34937, 34937,34938, 0,34938,34938,34938,34938,34938,34938,34939, 0,34939,34939,34939,34939,34939,34939,34940, 0,34940, 34940,34940,34940,34940,34940,34941, 0,34941,34941,34941, 34941,34941,34941,34942, 0,34942,34942,34942,34942,34942, 34942,34943, 0,34943,34943,34943,34943,34943,34943,34944, 0,34944,34944,34944,34944,34944,34944,34945, 0,34945, 34945,34945,34945,34945,34945,34946, 0,34946,34946,34946, 34946,34946,34946,34947, 0,34947,34947,34947,34947,34947, 34947,34948, 0,34948,34948,34948,34948,34948,34948,34949, 34949,34949,34949,34949,34949,34949,34949,34950,34950,34950, 34950,34950,34950,34950,34950,34951, 0,34951,34951,34951, 34951,34951,34951,34952, 0,34952,34952,34952,34952,34952, 34952,34953, 0,34953,34953,34953,34953,34953,34953,34954, 0,34954,34954,34954,34954,34954,34954,34955, 0,34955, 34955,34955,34955,34955,34955,34956, 0,34956,34956,34956, 34956,34956,34956,34957, 0,34957,34957,34957,34957,34957, 34957,34958, 0,34958,34958,34958,34958,34958,34958,34959, 0,34959,34959,34959,34959,34959,34959,34960, 0,34960, 34960,34960,34960,34960,34960,34961, 0,34961,34961,34961, 34961,34961,34961,34962, 0,34962,34962,34962,34962,34962, 34962,34963, 0,34963,34963,34963,34963,34963,34963,34964, 0,34964,34964,34964,34964,34964,34964,34965, 0,34965, 34965,34965,34965,34965,34965,34966, 0,34966,34966,34966, 34966,34966,34966,34967, 0,34967,34967,34967,34967,34967, 34967,34968, 0,34968,34968,34968,34968,34968,34968,34969, 0,34969,34969,34969,34969,34969,34969,34970, 0,34970, 34970,34970,34970,34970,34970,34971, 0,34971,34971,34971, 34971,34971,34971,34972, 0,34972,34972,34972,34972,34972, 34972,34973, 0,34973,34973,34973,34973,34973,34973,34974, 0,34974,34974,34974,34974,34974,34974,34975, 0,34975, 34975,34975,34975,34975,34975,34976, 0,34976,34976,34976, 34976,34976,34976,34977, 0,34977,34977,34977,34977,34977, 34977,34978, 0,34978,34978,34978,34978,34978,34978,34979, 34979,34979,34979,34979,34979,34979,34979,34980, 0,34980, 34980,34980,34980,34980,34980,34981,34981,34981,34981,34981, 34981,34981,34981,34982, 0,34982,34982,34982,34982,34982, 34982,34983,34983,34983,34983,34983,34983,34983,34983,34984, 0,34984,34984,34984,34984,34984,34984,34985,34985,34985, 34985,34985,34985,34985,34985,34986, 0,34986,34986,34986, 34986,34986,34986,34987,34987,34987,34987,34987,34987,34987, 34987,34988, 0,34988,34988,34988,34988,34988,34988,34989, 34989,34989,34989,34989,34989,34989,34989,34990, 0,34990, 34990,34990,34990,34990,34990,34991,34991,34991,34991,34991, 34991,34991,34991,34992, 0,34992,34992,34992,34992,34992, 34992,34993, 0,34993,34993,34993,34993,34993,34993,34994, 0,34994,34994,34994,34994,34994,34994,34995,34995,34995, 34995,34995,34995,34995,34995,34996, 0,34996,34996,34996, 34996,34996,34996,34997, 0,34997,34997,34997,34997,34997, 34997,34998, 0,34998,34998,34998,34998,34998,34998,34999, 0,34999,34999,34999,34999,34999,34999,35000, 0,35000, 35000,35000,35000,35000,35000,35001, 0,35001,35001,35001, 35001,35001,35001,35002, 0,35002,35002,35002,35002,35002, 35002,35003, 0,35003,35003,35003,35003,35003,35003,35004, 0,35004,35004,35004,35004,35004,35004,35005, 0,35005, 35005,35005,35005,35005,35005,35006,35006,35006,35006,35006, 35006,35006,35006,35007,35007,35007,35007,35007,35007,35007, 35007,35008, 0,35008,35008,35008,35008,35008,35008,35009, 0,35009,35009,35009,35009,35009,35009,35010, 0,35010, 35010,35010,35010,35010,35010,35011, 0,35011,35011,35011, 35011,35011,35011,35012, 0,35012,35012,35012,35012,35012, 35012,35013, 0,35013,35013,35013,35013,35013,35013,35014, 0,35014,35014,35014,35014,35014,35014,35015, 0,35015, 35015,35015,35015,35015,35015,35016, 0,35016,35016,35016, 35016,35016,35016,35017, 0,35017,35017,35017,35017,35017, 35017,35018, 0,35018,35018,35018,35018,35018,35018,35019, 0,35019,35019,35019,35019,35019,35019,35020, 0,35020, 35020,35020,35020,35020,35020,35021, 0,35021,35021,35021, 35021,35021,35021,35022, 0,35022,35022,35022,35022,35022, 35022,35023, 0,35023,35023,35023,35023,35023,35023,35024, 0,35024,35024,35024,35024,35024,35024,35025, 0,35025, 35025,35025,35025,35025,35025,35026, 0,35026,35026,35026, 35026,35026,35026,35027, 0,35027,35027,35027,35027,35027, 35027,35028, 0,35028,35028,35028,35028,35028,35028,35029, 0,35029,35029,35029,35029,35029,35029,35030, 0,35030, 35030,35030,35030,35030,35030,35031, 0,35031,35031,35031, 35031,35031,35031,35032,35032,35032,35032,35032,35032,35032, 35032,35033,35033,35033,35033,35033,35033,35033,35033,35034, 35034,35034,35034,35034,35034,35034,35034,35035, 0,35035, 35035,35035,35035,35035,35035,35036,35036,35036,35036,35036, 35036,35036,35036,35037, 0,35037,35037,35037,35037,35037, 35037,35038,35038,35038,35038,35038,35038,35038,35038,35039, 0,35039,35039,35039,35039,35039,35039,35040,35040,35040, 35040,35040,35040,35040,35040,35041, 0,35041,35041,35041, 35041,35041,35041,35042,35042,35042,35042,35042,35042,35042, 35042,35043, 0,35043,35043,35043,35043,35043,35043,35044, 0,35044,35044,35044,35044,35044,35044,35045, 0,35045, 35045,35045,35045,35045,35045,35046,35046,35046,35046,35046, 35046,35046,35046,35047, 0,35047,35047,35047,35047,35047, 35047,35048, 0,35048,35048,35048,35048,35048,35048,35049, 0,35049,35049,35049,35049,35049,35049,35050, 0,35050, 35050,35050,35050,35050,35050,35051, 0,35051,35051,35051, 35051,35051,35051,35052, 0,35052,35052,35052,35052,35052, 35052,35053, 0,35053,35053,35053,35053,35053,35053,35054, 0,35054,35054,35054,35054,35054,35054,35055, 0,35055, 35055,35055,35055,35055,35055,35056, 0,35056,35056,35056, 35056,35056,35056,35057,35057,35057,35057,35057,35057,35057, 35057,35058,35058,35058,35058,35058,35058,35058,35058,35059, 0,35059,35059,35059,35059,35059,35059,35060, 0,35060, 35060,35060,35060,35060,35060,35061, 0,35061,35061,35061, 35061,35061,35061,35062, 0,35062,35062,35062,35062,35062, 35062,35063, 0,35063,35063,35063,35063,35063,35063,35064, 0,35064,35064,35064,35064,35064,35064,35065, 0,35065, 35065,35065,35065,35065,35065,35066, 0,35066,35066,35066, 35066,35066,35066,35067, 0,35067,35067,35067,35067,35067, 35067,35068, 0,35068,35068,35068,35068,35068,35068,35069, 0,35069,35069,35069,35069,35069,35069,35070, 0,35070, 35070,35070,35070,35070,35070,35071, 0,35071,35071,35071, 35071,35071,35071,35072, 0,35072,35072,35072,35072,35072, 35072,35073, 0,35073,35073,35073,35073,35073,35073,35074, 0,35074,35074,35074,35074,35074,35074,35075, 0,35075, 35075,35075,35075,35075,35075,35076, 0,35076,35076,35076, 35076,35076,35076,35077, 0,35077,35077,35077,35077,35077, 35077,35078, 0,35078,35078,35078,35078,35078,35078,35079, 0,35079,35079,35079,35079,35079,35079,35080, 0,35080, 35080,35080,35080,35080,35080,35081, 0,35081,35081,35081, 35081,35081,35081,35082, 0,35082,35082,35082,35082,35082, 35082,35083,35083,35083,35083,35083,35083,35083,35083,35084, 35084,35084,35084,35084,35084,35084,35084,35085,35085,35085, 35085,35085,35085,35085,35085,35086, 0,35086,35086,35086, 35086,35086,35086,35087,35087,35087,35087,35087,35087,35087, 35087,35088, 0,35088,35088,35088,35088,35088,35088,35089, 35089,35089,35089,35089,35089,35089,35089,35090, 0,35090, 35090,35090,35090,35090,35090,35091,35091,35091,35091,35091, 35091,35091,35091,35092, 0,35092,35092,35092,35092,35092, 35092,35093,35093,35093,35093,35093,35093,35093,35093,35094, 0,35094,35094,35094,35094,35094,35094,35095, 0,35095, 35095,35095,35095,35095,35095,35096, 0,35096,35096,35096, 35096,35096,35096,35097,35097,35097,35097,35097,35097,35097, 35097,35098, 0,35098,35098,35098,35098,35098,35098,35099, 0,35099,35099,35099,35099,35099,35099,35100, 0,35100, 35100,35100,35100,35100,35100,35101, 0,35101,35101,35101, 35101,35101,35101,35102, 0,35102,35102,35102,35102,35102, 35102,35103, 0,35103,35103,35103,35103,35103,35103,35104, 0,35104,35104,35104,35104,35104,35104,35105, 0,35105, 35105,35105,35105,35105,35105,35106, 0,35106,35106,35106, 35106,35106,35106,35107, 0,35107,35107,35107,35107,35107, 35107,35108,35108,35108,35108,35108,35108,35108,35108,35109, 35109,35109,35109,35109,35109,35109,35109,35110, 0,35110, 35110,35110,35110,35110,35110,35111, 0,35111,35111,35111, 35111,35111,35111,35112, 0,35112,35112,35112,35112,35112, 35112,35113, 0,35113,35113,35113,35113,35113,35113,35114, 0,35114,35114,35114,35114,35114,35114,35115, 0,35115, 35115,35115,35115,35115,35115,35116, 0,35116,35116,35116, 35116,35116,35116,35117, 0,35117,35117,35117,35117,35117, 35117,35118, 0,35118,35118,35118,35118,35118,35118,35119, 0,35119,35119,35119,35119,35119,35119,35120, 0,35120, 35120,35120,35120,35120,35120,35121, 0,35121,35121,35121, 35121,35121,35121,35122, 0,35122,35122,35122,35122,35122, 35122,35123, 0,35123,35123,35123,35123,35123,35123,35124, 0,35124,35124,35124,35124,35124,35124,35125, 0,35125, 35125,35125,35125,35125,35125,35126, 0,35126,35126,35126, 35126,35126,35126,35127, 0,35127,35127,35127,35127,35127, 35127,35128, 0,35128,35128,35128,35128,35128,35128,35129, 0,35129,35129,35129,35129,35129,35129,35130, 0,35130, 35130,35130,35130,35130,35130,35131, 0,35131,35131,35131, 35131,35131,35131,35132, 0,35132,35132,35132,35132,35132, 35132,35133, 0,35133,35133,35133,35133,35133,35133,35134, 0,35134,35134,35134,35134,35134,35134,35135,35135,35135, 35135,35135,35135,35135,35135,35136,35136,35136,35136,35136, 35136,35136,35136,35137,35137,35137,35137,35137,35137,35137, 35137,35138, 0,35138,35138,35138,35138,35138,35138,35139, 35139,35139,35139,35139,35139,35139,35139,35140, 0,35140, 35140,35140,35140,35140,35140,35141,35141,35141,35141,35141, 35141,35141,35141,35142, 0,35142,35142,35142,35142,35142, 35142,35143,35143,35143,35143,35143,35143,35143,35143,35144, 0,35144,35144,35144,35144,35144,35144,35145,35145,35145, 35145,35145,35145,35145,35145,35146, 0,35146,35146,35146, 35146,35146,35146,35147, 0,35147,35147,35147,35147,35147, 35147,35148, 0,35148,35148,35148,35148,35148,35148,35149, 35149,35149,35149,35149,35149,35149,35149,35150, 0,35150, 35150,35150,35150,35150,35150,35151, 0,35151,35151,35151, 35151,35151,35151,35152, 0,35152,35152,35152,35152,35152, 35152,35153, 0,35153,35153,35153,35153,35153,35153,35154, 0,35154,35154,35154,35154,35154,35154,35155, 0,35155, 35155,35155,35155,35155,35155,35156, 0,35156,35156,35156, 35156,35156,35156,35157, 0,35157,35157,35157,35157,35157, 35157,35158, 0,35158,35158,35158,35158,35158,35158,35159, 35159,35159,35159,35159,35159,35159,35159,35160,35160,35160, 35160,35160,35160,35160,35160,35161, 0,35161,35161,35161, 35161,35161,35161,35162, 0,35162,35162,35162,35162,35162, 35162,35163, 0,35163,35163,35163,35163,35163,35163,35164, 0,35164,35164,35164,35164,35164,35164,35165, 0,35165, 35165,35165,35165,35165,35165,35166, 0,35166,35166,35166, 35166,35166,35166,35167, 0,35167,35167,35167,35167,35167, 35167,35168, 0,35168,35168,35168,35168,35168,35168,35169, 0,35169,35169,35169,35169,35169,35169,35170, 0,35170, 35170,35170,35170,35170,35170,35171, 0,35171,35171,35171, 35171,35171,35171,35172, 0,35172,35172,35172,35172,35172, 35172,35173, 0,35173,35173,35173,35173,35173,35173,35174, 0,35174,35174,35174,35174,35174,35174,35175, 0,35175, 35175,35175,35175,35175,35175,35176, 0,35176,35176,35176, 35176,35176,35176,35177, 0,35177,35177,35177,35177,35177, 35177,35178, 0,35178,35178,35178,35178,35178,35178,35179, 0,35179,35179,35179,35179,35179,35179,35180, 0,35180, 35180,35180,35180,35180,35180,35181, 0,35181,35181,35181, 35181,35181,35181,35182, 0,35182,35182,35182,35182,35182, 35182,35183, 0,35183,35183,35183,35183,35183,35183,35184, 0,35184,35184,35184,35184,35184,35184,35185, 0,35185, 35185,35185,35185,35185,35185,35186,35186,35186,35186,35186, 35186,35186,35186,35187,35187,35187,35187,35187,35187,35187, 35187,35188, 0,35188,35188,35188,35188,35188,35188,35189, 35189,35189,35189,35189,35189,35189,35189,35190, 0,35190, 35190,35190,35190,35190,35190,35191, 0,35191,35191,35191, 35191,35191,35191,35192, 0,35192,35192,35192,35192,35192, 35192,35193, 0,35193,35193,35193,35193,35193,35193,35194, 0,35194,35194,35194,35194,35194,35194,35195, 0,35195, 35195,35195,35195,35195,35195,35196,35196,35196,35196,35196, 35196,35196,35196,35197, 0,35197,35197,35197,35197,35197, 35197,35198, 0,35198,35198,35198,35198,35198,35198,35199, 0,35199,35199,35199,35199,35199,35199,35200, 0,35200, 35200,35200,35200,35200,35200,35201, 0,35201,35201,35201, 35201,35201,35201,35202, 0,35202,35202,35202,35202,35202, 35202,35203, 0,35203,35203,35203,35203,35203,35203,35204, 0,35204,35204,35204,35204,35204,35204,35205,35205,35205, 35205,35205,35205,35205,35205,35206,35206,35206,35206,35206, 35206,35206,35206,35207, 0,35207,35207,35207,35207,35207, 35207,35208, 0,35208,35208,35208,35208,35208,35208,35209, 0,35209,35209,35209,35209,35209,35209,35210, 0,35210, 35210,35210,35210,35210,35210,35211, 0,35211,35211,35211, 35211,35211,35211,35212, 0,35212,35212,35212,35212,35212, 35212,35213, 0,35213,35213,35213,35213,35213,35213,35214, 0,35214,35214,35214,35214,35214,35214,35215, 0,35215, 35215,35215,35215,35215,35215,35216, 0,35216,35216,35216, 35216,35216,35216,35217, 0,35217,35217,35217,35217,35217, 35217,35218, 0,35218,35218,35218,35218,35218,35218,35219, 0,35219,35219,35219,35219,35219,35219,35220, 0,35220, 35220,35220,35220,35220,35220,35221, 0,35221,35221,35221, 35221,35221,35221,35222, 0,35222,35222,35222,35222,35222, 35222,35223, 0,35223,35223,35223,35223,35223,35223,35224, 0,35224,35224,35224,35224,35224,35224,35225, 0,35225, 35225,35225,35225,35225,35225,35226, 0,35226,35226,35226, 35226,35226,35226,35227, 0,35227,35227,35227,35227,35227, 35227,35228, 0,35228,35228,35228,35228,35228,35228,35229, 0,35229,35229,35229,35229,35229,35229,35230, 0,35230, 35230,35230,35230,35230,35230,35231, 0,35231,35231,35231, 35231,35231,35231,35232,35232,35232,35232,35232,35232,35232, 35232,35233,35233,35233,35233,35233,35233,35233,35233,35234, 0,35234,35234,35234,35234,35234,35234,35235,35235,35235, 35235,35235,35235,35235,35235,35236, 0,35236,35236,35236, 35236,35236,35236,35237, 0,35237,35237,35237,35237,35237, 35237,35238, 0,35238,35238,35238,35238,35238,35238,35239, 35239,35239,35239,35239,35239,35239,35239,35240, 0,35240, 35240,35240,35240,35240,35240,35241, 0,35241,35241,35241, 35241,35241,35241,35242, 0,35242,35242,35242,35242,35242, 35242,35243, 0,35243,35243,35243,35243,35243,35243,35244, 0,35244,35244,35244,35244,35244,35244,35245, 0,35245, 35245,35245,35245,35245,35245,35246, 0,35246,35246,35246, 35246,35246,35246,35247, 0,35247,35247,35247,35247,35247, 35247,35248,35248,35248,35248,35248,35248,35248,35248,35249, 35249,35249,35249,35249,35249,35249,35249,35250, 0,35250, 35250,35250,35250,35250,35250,35251, 0,35251,35251,35251, 35251,35251,35251,35252, 0,35252,35252,35252,35252,35252, 35252,35253, 0,35253,35253,35253,35253,35253,35253,35254, 0,35254,35254,35254,35254,35254,35254,35255, 0,35255, 35255,35255,35255,35255,35255,35256, 0,35256,35256,35256, 35256,35256,35256,35257, 0,35257,35257,35257,35257,35257, 35257,35258, 0,35258,35258,35258,35258,35258,35258,35259, 0,35259,35259,35259,35259,35259,35259,35260, 0,35260, 35260,35260,35260,35260,35260,35261, 0,35261,35261,35261, 35261,35261,35261,35262, 0,35262,35262,35262,35262,35262, 35262,35263, 0,35263,35263,35263,35263,35263,35263,35264, 0,35264,35264,35264,35264,35264,35264,35265, 0,35265, 35265,35265,35265,35265,35265,35266, 0,35266,35266,35266, 35266,35266,35266,35267, 0,35267,35267,35267,35267,35267, 35267,35268, 0,35268,35268,35268,35268,35268,35268,35269, 0,35269,35269,35269,35269,35269,35269,35270, 0,35270, 35270,35270,35270,35270,35270,35271, 0,35271,35271,35271, 35271,35271,35271,35272, 0,35272,35272,35272,35272,35272, 35272,35273, 0,35273,35273,35273,35273,35273,35273,35274, 0,35274,35274,35274,35274,35274,35274,35275,35275,35275, 35275,35275,35275,35275,35275,35276,35276,35276,35276,35276, 35276,35276,35276,35277, 0,35277,35277,35277,35277,35277, 35277,35278,35278,35278,35278,35278,35278,35278,35278,35279, 0,35279,35279,35279,35279,35279,35279,35280, 0,35280, 35280,35280,35280,35280,35280,35281, 0,35281,35281,35281, 35281,35281,35281,35282,35282,35282,35282,35282,35282,35282, 35282,35283, 0,35283,35283,35283,35283,35283,35283,35284, 0,35284,35284,35284,35284,35284,35284,35285, 0,35285, 35285,35285,35285,35285,35285,35286, 0,35286,35286,35286, 35286,35286,35286,35287, 0,35287,35287,35287,35287,35287, 35287,35288, 0,35288,35288,35288,35288,35288,35288,35289, 35289,35289,35289,35289,35289,35289,35289,35290, 0,35290, 35290,35290,35290,35290,35290,35291, 0,35291,35291,35291, 35291,35291,35291,35292, 0,35292,35292,35292,35292,35292, 35292,35293, 0,35293,35293,35293,35293,35293,35293,35294, 0,35294,35294,35294,35294,35294,35294,35295, 0,35295, 35295,35295,35295,35295,35295,35296, 0,35296,35296,35296, 35296,35296,35296,35297, 0,35297,35297,35297,35297,35297, 35297,35298, 0,35298,35298,35298,35298,35298,35298,35299, 0,35299,35299,35299,35299,35299,35299,35300, 0,35300, 35300,35300,35300,35300,35300,35301, 0,35301,35301,35301, 35301,35301,35301,35302, 0,35302,35302,35302,35302,35302, 35302,35303, 0,35303,35303,35303,35303,35303,35303,35304, 0,35304,35304,35304,35304,35304,35304,35305, 0,35305, 35305,35305,35305,35305,35305,35306, 0,35306,35306,35306, 35306,35306,35306,35307, 0,35307,35307,35307,35307,35307, 35307,35308, 0,35308,35308,35308,35308,35308,35308,35309, 0,35309,35309,35309,35309,35309,35309,35310, 0,35310, 35310,35310,35310,35310,35310,35311,35311,35311,35311,35311, 35311,35311,35311,35312, 0,35312,35312,35312,35312,35312, 35312,35313, 0,35313,35313,35313,35313,35313,35313,35314, 35314,35314,35314,35314,35314,35314,35314,35315,35315,35315, 35315,35315,35315,35315,35315,35316, 0,35316,35316,35316, 35316,35316,35316,35317, 0,35317,35317,35317,35317,35317, 35317,35318,35318,35318,35318,35318,35318,35318,35318,35319, 0,35319,35319,35319,35319,35319,35319,35320, 0,35320, 35320,35320,35320,35320,35320,35321, 0,35321,35321,35321, 35321,35321,35321,35322, 0,35322,35322,35322,35322,35322, 35322,35323, 0,35323,35323,35323,35323,35323,35323,35324, 0,35324,35324,35324,35324,35324,35324,35325,35325,35325, 35325,35325,35325,35325,35325,35326, 0,35326,35326,35326, 35326,35326,35326,35327, 0,35327,35327,35327,35327,35327, 35327,35328, 0,35328,35328,35328,35328,35328,35328,35329, 0,35329,35329,35329,35329,35329,35329,35330, 0,35330, 35330,35330,35330,35330,35330,35331, 0,35331,35331,35331, 35331,35331,35331,35332, 0,35332,35332,35332,35332,35332, 35332,35333, 0,35333,35333,35333,35333,35333,35333,35334, 0,35334,35334,35334,35334,35334,35334,35335, 0,35335, 35335,35335,35335,35335,35335,35336, 0,35336,35336,35336, 35336,35336,35336,35337, 0,35337,35337,35337,35337,35337, 35337,35338, 0,35338,35338,35338,35338,35338,35338,35339, 0,35339,35339,35339,35339,35339,35339,35340, 0,35340, 35340,35340,35340,35340,35340,35341, 0,35341,35341,35341, 35341,35341,35341,35342, 0,35342,35342,35342,35342,35342, 35342,35343, 0,35343,35343,35343,35343,35343,35343,35344, 0,35344,35344,35344,35344,35344,35344,35345, 0,35345, 35345,35345,35345,35345,35345,35346,35346,35346,35346,35346, 35346,35346,35346,35347, 0,35347,35347,35347,35347,35347, 35347,35348,35348,35348,35348,35348,35348,35348,35348,35349, 0,35349,35349,35349,35349,35349,35349,35350,35350,35350, 35350,35350,35350,35350,35350,35351, 0,35351,35351,35351, 35351,35351,35351,35352, 0,35352,35352,35352,35352,35352, 35352,35353,35353,35353,35353,35353,35353,35353,35353,35354, 0,35354,35354,35354,35354,35354,35354,35355, 0,35355, 35355,35355,35355,35355,35355,35356, 0,35356,35356,35356, 35356,35356,35356,35357, 0,35357,35357,35357,35357,35357, 35357,35358, 0,35358,35358,35358,35358,35358,35358,35359, 0,35359,35359,35359,35359,35359,35359,35360,35360,35360, 35360,35360,35360,35360,35360,35361, 0,35361,35361,35361, 35361,35361,35361,35362, 0,35362,35362,35362,35362,35362, 35362,35363, 0,35363,35363,35363,35363,35363,35363,35364, 0,35364,35364,35364,35364,35364,35364,35365, 0,35365, 35365,35365,35365,35365,35365,35366, 0,35366,35366,35366, 35366,35366,35366,35367, 0,35367,35367,35367,35367,35367, 35367,35368, 0,35368,35368,35368,35368,35368,35368,35369, 0,35369,35369,35369,35369,35369,35369,35370, 0,35370, 35370,35370,35370,35370,35370,35371, 0,35371,35371,35371, 35371,35371,35371,35372, 0,35372,35372,35372,35372,35372, 35372,35373, 0,35373,35373,35373,35373,35373,35373,35374, 0,35374,35374,35374,35374,35374,35374,35375, 0,35375, 35375,35375,35375,35375,35375,35376, 0,35376,35376,35376, 35376,35376,35376,35377, 0,35377,35377,35377,35377,35377, 35377,35378, 0,35378,35378,35378,35378,35378,35378,35379, 0,35379,35379,35379,35379,35379,35379,35380, 0,35380, 35380,35380,35380,35380,35380,35381,35381,35381,35381,35381, 35381,35381,35381,35382, 0,35382,35382,35382,35382,35382, 35382,35383,35383,35383,35383,35383,35383,35383,35383,35384, 0,35384,35384,35384,35384,35384,35384,35385,35385,35385, 35385,35385,35385,35385,35385,35386, 0,35386,35386,35386, 35386,35386,35386,35387, 0,35387,35387,35387,35387,35387, 35387,35388,35388,35388,35388,35388,35388,35388,35388,35389, 0,35389,35389,35389,35389,35389,35389,35390, 0,35390, 35390,35390,35390,35390,35390,35391, 0,35391,35391,35391, 35391,35391,35391,35392, 0,35392,35392,35392,35392,35392, 35392,35393, 0,35393,35393,35393,35393,35393,35393,35394, 0,35394,35394,35394,35394,35394,35394,35395,35395,35395, 35395,35395,35395,35395,35395,35396, 0,35396,35396,35396, 35396,35396,35396,35397, 0,35397,35397,35397,35397,35397, 35397,35398, 0,35398,35398,35398,35398,35398,35398,35399, 0,35399,35399,35399,35399,35399,35399,35400, 0,35400, 35400,35400,35400,35400,35400,35401, 0,35401,35401,35401, 35401,35401,35401,35402, 0,35402,35402,35402,35402,35402, 35402,35403, 0,35403,35403,35403,35403,35403,35403,35404, 0,35404,35404,35404,35404,35404,35404,35405, 0,35405, 35405,35405,35405,35405,35405,35406, 0,35406,35406,35406, 35406,35406,35406,35407, 0,35407,35407,35407,35407,35407, 35407,35408, 0,35408,35408,35408,35408,35408,35408,35409, 0,35409,35409,35409,35409,35409,35409,35410, 0,35410, 35410,35410,35410,35410,35410,35411, 0,35411,35411,35411, 35411,35411,35411,35412, 0,35412,35412,35412,35412,35412, 35412,35413, 0,35413,35413,35413,35413,35413,35413,35414, 0,35414,35414,35414,35414,35414,35414,35415,35415,35415, 35415,35415,35415,35415,35415,35416, 0,35416,35416,35416, 35416,35416,35416,35417,35417,35417,35417,35417,35417,35417, 35417,35418, 0,35418,35418,35418,35418,35418,35418,35419, 35419,35419,35419,35419,35419,35419,35419,35420, 0,35420, 35420,35420,35420,35420,35420,35421, 0,35421,35421,35421, 35421,35421,35421,35422, 0,35422,35422,35422,35422,35422, 35422,35423, 0,35423,35423,35423,35423,35423,35423,35424, 0,35424,35424,35424,35424,35424,35424,35425,35425,35425, 35425,35425,35425,35425,35425,35426, 0,35426,35426,35426, 35426,35426,35426,35427, 0,35427,35427,35427,35427,35427, 35427,35428, 0,35428,35428,35428,35428,35428,35428,35429, 0,35429,35429,35429,35429,35429,35429,35430, 0,35430, 35430,35430,35430,35430,35430,35431, 0,35431,35431,35431, 35431,35431,35431,35432, 0,35432,35432,35432,35432,35432, 35432,35433, 0,35433,35433,35433,35433,35433,35433,35434, 0,35434,35434,35434,35434,35434,35434,35435, 0,35435, 35435,35435,35435,35435,35435,35436, 0,35436,35436,35436, 35436,35436,35436,35437, 0,35437,35437,35437,35437,35437, 35437,35438, 0,35438,35438,35438,35438,35438,35438,35439, 0,35439,35439,35439,35439,35439,35439,35440, 0,35440, 35440,35440,35440,35440,35440,35441, 0,35441,35441,35441, 35441,35441,35441,35442, 0,35442,35442,35442,35442,35442, 35442,35443, 0,35443,35443,35443,35443,35443,35443,35444, 35444,35444,35444,35444,35444,35444,35444,35445, 0,35445, 35445,35445,35445,35445,35445,35446,35446,35446,35446,35446, 35446,35446,35446,35447, 0,35447,35447,35447,35447,35447, 35447,35448,35448,35448,35448,35448,35448,35448,35448,35449, 0,35449,35449,35449,35449,35449,35449,35450, 0,35450, 35450,35450,35450,35450,35450,35451, 0,35451,35451,35451, 35451,35451,35451,35452, 0,35452,35452,35452,35452,35452, 35452,35453,35453,35453,35453,35453,35453,35453,35453,35454, 0,35454,35454,35454,35454,35454,35454,35455, 0,35455, 35455,35455,35455,35455,35455,35456, 0,35456,35456,35456, 35456,35456,35456,35457, 0,35457,35457,35457,35457,35457, 35457,35458, 0,35458,35458,35458,35458,35458,35458,35459, 0,35459,35459,35459,35459,35459,35459,35460, 0,35460, 35460,35460,35460,35460,35460,35461, 0,35461,35461,35461, 35461,35461,35461,35462, 0,35462,35462,35462,35462,35462, 35462,35463, 0,35463,35463,35463,35463,35463,35463,35464, 0,35464,35464,35464,35464,35464,35464,35465, 0,35465, 35465,35465,35465,35465,35465,35466, 0,35466,35466,35466, 35466,35466,35466,35467, 0,35467,35467,35467,35467,35467, 35467,35468, 0,35468,35468,35468,35468,35468,35468,35469, 0,35469,35469,35469,35469,35469,35469,35470, 0,35470, 35470,35470,35470,35470,35470,35471, 0,35471,35471,35471, 35471,35471,35471,35472,35472,35472,35472,35472,35472,35472, 35472,35473, 0,35473,35473,35473,35473,35473,35473,35474, 35474,35474,35474,35474,35474,35474,35474,35475, 0,35475, 35475,35475,35475,35475,35475,35476,35476,35476,35476,35476, 35476,35476,35476,35477, 0,35477,35477,35477,35477,35477, 35477,35478, 0,35478,35478,35478,35478,35478,35478,35479, 0,35479,35479,35479,35479,35479,35479,35480,35480,35480, 35480,35480,35480,35480,35480,35481, 0,35481,35481,35481, 35481,35481,35481,35482, 0,35482,35482,35482,35482,35482, 35482,35483, 0,35483,35483,35483,35483,35483,35483,35484, 0,35484,35484,35484,35484,35484,35484,35485, 0,35485, 35485,35485,35485,35485,35485,35486, 0,35486,35486,35486, 35486,35486,35486,35487, 0,35487,35487,35487,35487,35487, 35487,35488, 0,35488,35488,35488,35488,35488,35488,35489, 0,35489,35489,35489,35489,35489,35489,35490, 0,35490, 35490,35490,35490,35490,35490,35491, 0,35491,35491,35491, 35491,35491,35491,35492, 0,35492,35492,35492,35492,35492, 35492,35493, 0,35493,35493,35493,35493,35493,35493,35494, 0,35494,35494,35494,35494,35494,35494,35495, 0,35495, 35495,35495,35495,35495,35495,35496, 0,35496,35496,35496, 35496,35496,35496,35497,35497,35497,35497,35497,35497,35497, 35497,35498, 0,35498,35498,35498,35498,35498,35498,35499, 35499,35499,35499,35499,35499,35499,35499,35500, 0,35500, 35500,35500,35500,35500,35500,35501,35501,35501,35501,35501, 35501,35501,35501,35502, 0,35502,35502,35502,35502,35502, 35502,35503, 0,35503,35503,35503,35503,35503,35503,35504, 0,35504,35504,35504,35504,35504,35504,35505,35505,35505, 35505,35505,35505,35505,35505,35506, 0,35506,35506,35506, 35506,35506,35506,35507, 0,35507,35507,35507,35507,35507, 35507,35508, 0,35508,35508,35508,35508,35508,35508,35509, 0,35509,35509,35509,35509,35509,35509,35510, 0,35510, 35510,35510,35510,35510,35510,35511, 0,35511,35511,35511, 35511,35511,35511,35512, 0,35512,35512,35512,35512,35512, 35512,35513, 0,35513,35513,35513,35513,35513,35513,35514, 0,35514,35514,35514,35514,35514,35514,35515, 0,35515, 35515,35515,35515,35515,35515,35516, 0,35516,35516,35516, 35516,35516,35516,35517, 0,35517,35517,35517,35517,35517, 35517,35518, 0,35518,35518,35518,35518,35518,35518,35519, 0,35519,35519,35519,35519,35519,35519,35520, 0,35520, 35520,35520,35520,35520,35520,35521,35521,35521,35521,35521, 35521,35521,35521,35522, 0,35522,35522,35522,35522,35522, 35522,35523,35523,35523,35523,35523,35523,35523,35523,35524, 0,35524,35524,35524,35524,35524,35524,35525,35525,35525, 35525,35525,35525,35525,35525,35526, 0,35526,35526,35526, 35526,35526,35526,35527,35527,35527,35527,35527,35527,35527, 35527,35528, 0,35528,35528,35528,35528,35528,35528,35529, 0,35529,35529,35529,35529,35529,35529,35530, 0,35530, 35530,35530,35530,35530,35530,35531, 0,35531,35531,35531, 35531,35531,35531,35532, 0,35532,35532,35532,35532,35532, 35532,35533, 0,35533,35533,35533,35533,35533,35533,35534, 0,35534,35534,35534,35534,35534,35534,35535, 0,35535, 35535,35535,35535,35535,35535,35536, 0,35536,35536,35536, 35536,35536,35536,35537, 0,35537,35537,35537,35537,35537, 35537,35538, 0,35538,35538,35538,35538,35538,35538,35539, 0,35539,35539,35539,35539,35539,35539,35540, 0,35540, 35540,35540,35540,35540,35540,35541, 0,35541,35541,35541, 35541,35541,35541,35542,35542,35542,35542,35542,35542,35542, 35542,35543, 0,35543,35543,35543,35543,35543,35543,35544, 35544,35544,35544,35544,35544,35544,35544,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840,29840,29840,29840,29840,29840,29840,29840,29840,29840, 29840 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 1; static const flex_int16_t yy_rule_linenum[105] = { 0, 142, 148, 151, 154, 158, 167, 172, 178, 184, 185, 188, 189, 192, 194, 196, 197, 200, 201, 205, 208, 209, 212, 213, 214, 215, 218, 219, 221, 222, 225, 226, 227, 228, 231, 232, 235, 238, 239, 241, 242, 245, 246, 249, 250, 253, 254, 257, 260, 261, 264, 265, 266, 268, 269, 271, 272, 274, 275, 276, 277, 280, 281, 284, 285, 287, 288, 291, 292, 295, 296, 299, 300, 303, 304, 307, 310, 311, 315, 319, 320, 322, 325, 328, 331, 332, 335, 336, 339, 340, 341, 342, 346, 347, 351, 354, 355, 358, 361, 362, 365, 367, 370, 371, 374 } ; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET #ifndef YYLMAX #define YYLMAX 8192 #endif char yytext[YYLMAX]; char *yytext_ptr; #line 1 "attack_scanner.l" /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #line 22 "attack_scanner.l" #include #include #include "attack.h" #include "attack_parser.h" static int getsyslogpid(char *syslogbanner, int length); #line 128443 "attack_scanner.c" #define YY_NO_INPUT 1 #line 39 "attack_scanner.l" /* Start Conditions */ /* for Login services */ /* for SSHGuard */ /* for Mail services */ /* for FTP services */ /* for HTTP services */ /* for git services */ /* Mon Jan 01 21:00:00 2010 */ /* all words but "sshguard" provided that posix regex don't support negation nor intersection: * 1) all words of 2 to 7 characters or 8-* chars * 2) words of 7 chars different to "sshguard" (^s.* | s^s.* | ss^h.* */ /* IPv4 address (used in IPv6 address too, for IPv4 encapsulation) */ /* IPv6 addresses including compressed variants (RFC 2373) */ /* an IPv4 packed in IPv6 as IPv4-mapped IPv6 address */ /* Common Log Format. */ /* Common configuration for http botsearch * Adapted from fail2ban botsearch filters & tweaked by alip☮exherbo.org, * Original author: Frantisek Sumsal */ #line 128473 "attack_scanner.c" #define INITIAL 0 #define ssh_notallowed 1 #define ssh_reversemap 2 #define ssh_disconnect 3 #define ssh_badproto 4 #define ssh_badkex 5 #define cockpit_authfail 6 #define sshguard_attack 7 #define sshguard_block 8 #define bind 9 #define dovecot_loginerr 10 #define cyrusimap_loginerr 11 #define exim_esmtp_autherr 12 #define exim_esmtp_loginerr 13 #define sendmail_relaydenied 14 #define sendmail_authfailure 15 #define postfix_loginerr 16 #define postfix_greylist 17 #define opensmtpd_failedcmd 18 #define postscreen 19 #define freebsdftpd_loginerr 20 #define proftpd_loginerr 21 #define pureftpd_loginerr 22 #define vsftpd_loginerr 23 #define clf_request 24 #define clf_request_withuser 25 #define clf_unauhtorized 26 #define clfwebprobes_botsearch 27 #define gitea_autherr 28 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ /* %if-c-only */ #include /* %endif */ /* %if-c++-only */ /* %endif */ #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif /* %if-c-only Reentrant structure and macros (non-C++). */ /* %if-reentrant */ /* %if-c-only */ static int yy_init_globals ( void ); /* %endif */ /* %if-reentrant */ /* %endif */ /* %endif End reentrant structures and macros. */ /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy ( void ); int yyget_debug ( void ); void yyset_debug ( int debug_flag ); YY_EXTRA_TYPE yyget_extra ( void ); void yyset_extra ( YY_EXTRA_TYPE user_defined ); FILE *yyget_in ( void ); void yyset_in ( FILE * _in_str ); FILE *yyget_out ( void ); void yyset_out ( FILE * _out_str ); int yyget_leng ( void ); char *yyget_text ( void ); int yyget_lineno ( void ); void yyset_lineno ( int _line_number ); /* %if-bison-bridge */ /* %endif */ /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap ( void ); #else extern int yywrap ( void ); #endif #endif /* %not-for-header */ #ifndef YY_NO_UNPUT #endif /* %ok-for-header */ /* %endif */ #ifndef yytext_ptr static void yy_flex_strncpy ( char *, const char *, int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen ( const char * ); #endif #ifndef YY_NO_INPUT /* %if-c-only Standard (non-C++) definition */ /* %not-for-header */ #ifdef __cplusplus static int yyinput ( void ); #else static int input ( void ); #endif /* %ok-for-header */ /* %endif */ #endif /* %if-c-only */ /* %endif */ /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k */ #define YY_READ_BUF_SIZE 16384 #else #define YY_READ_BUF_SIZE 8192 #endif /* __ia64__ */ #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* %if-c-only Standard (non-C++) definition */ /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) /* %endif */ /* %if-c++-only C++ definition */ /* %endif */ #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ /* %% [5.0] fread()/read() definition of YY_INPUT goes here unless we're doing C++ \ */\ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ int n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ /* %if-c++-only C++ definition \ */\ /* %endif */ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR /* %if-c-only */ #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) /* %endif */ /* %if-c++-only */ /* %endif */ #endif /* %if-tables-serialization structures and prototypes */ /* %not-for-header */ /* %ok-for-header */ /* %not-for-header */ /* %tables-yydmap generated elements */ /* %endif */ /* end tables serialization structures and prototypes */ /* %ok-for-header */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 /* %if-c-only Standard (non-C++) definition */ extern int yylex (void); #define YY_DECL int yylex (void) /* %endif */ /* %if-c++-only C++ definition */ /* %endif */ #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK /*LINTED*/break; #endif /* %% [6.0] YY_RULE_SETUP definition goes here */ #define YY_RULE_SETUP \ YY_USER_ACTION /* %not-for-header */ /** The main scanner function which does all the work. */ YY_DECL { yy_state_type yy_current_state; char *yy_cp, *yy_bp; int yy_act; if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) /* %if-c-only */ yyin = stdin; /* %endif */ /* %if-c++-only */ /* %endif */ if ( ! yyout ) /* %if-c-only */ yyout = stdout; /* %endif */ /* %if-c++-only */ /* %endif */ if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer( yyin, YY_BUF_SIZE ); } yy_load_buffer_state( ); } { /* %% [7.0] user's declarations go here */ #line 130 "attack_scanner.l" /* * syslog banner, eg "Nov 22 09:58:58 freyja sshd[94637]: " * tokenized as: timestamp hostname procname(subname) [pid]: * both the subname and pid parts can be missing * * return SYSLOG_BANNER_PID or SYSLOG_BANNER depending on the presence of [pid] */ /* handle entries with PID and without PID from processes other than sshguard */ #line 128792 "attack_scanner.c" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { /* %% [8.0] yymore()-related code goes here */ yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; /* %% [9.0] code to set up and find next match goes here */ yy_current_state = (yy_start); yy_match: do { YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 29841 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 530678 ); yy_find_action: /* %% [10.0] code to find the action number goes here */ yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; /* %% [11.0] code for yylineno update goes here */ do_action: /* This label is used only to access EOF actions. */ /* %% [12.0] debug code goes here */ if ( yy_flex_debug ) { if ( yy_act == 0 ) fprintf( stderr, "--scanner backing up\n" ); else if ( yy_act < 105 ) fprintf( stderr, "--accepting rule at line %ld (\"%s\")\n", (long)yy_rule_linenum[yy_act], yytext ); else if ( yy_act == 105 ) fprintf( stderr, "--accepting default rule (\"%s\")\n", yytext ); else if ( yy_act == 106 ) fprintf( stderr, "--(end of buffer or a NUL)\n" ); else fprintf( stderr, "--EOF (start condition %d)\n", YY_START ); } switch ( yy_act ) { /* beginning of action switch */ /* %% [13.0] actions go here */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 142 "attack_scanner.l" { /* extract PID */ yylval.num = getsyslogpid(yytext, yyleng); return SYSLOG_BANNER_PID; } YY_BREAK case 2: YY_RULE_SETUP #line 148 "attack_scanner.l" { return SYSLOG_BANNER; } YY_BREAK /* busybox syslog -S */ case 3: YY_RULE_SETUP #line 151 "attack_scanner.l" { return SYSLOG_BANNER; } YY_BREAK /* RFC 5424 banner */ case 4: YY_RULE_SETUP #line 154 "attack_scanner.l" { return RFC_5234_BANNER; } YY_BREAK /* metalog banner */ case 5: YY_RULE_SETUP #line 158 "attack_scanner.l" { return METALOG_BANNER; } YY_BREAK /* * socklog banner, eg * "2015-05-27T04:31:28.10040 auth.info: May 27 04:31:28 sshd[30993]: " * * Some strip the redundant timestamp, eg * "2015-05-27T04:31:28.10040 auth.info: sshd[30993]: " */ case 6: YY_RULE_SETUP #line 167 "attack_scanner.l" { yylval.num = getsyslogpid(yytext, yyleng); return SOCKLOG_BANNER_PID; } YY_BREAK case 7: YY_RULE_SETUP #line 172 "attack_scanner.l" { return SOCKLOG_BANNER; } YY_BREAK /* * Busybox syslog banner, e/g/ * "Jun 20 02:18:39 vps auth.info sshd[13482]: " */ case 8: YY_RULE_SETUP #line 178 "attack_scanner.l" { yylval.num = getsyslogpid(yytext, yyleng); return BUSYBOX_SYSLOG_BANNER_PID; } YY_BREAK /* SSH: invalid or rejected user (cross platform [generated by openssh]) */ case 9: /* rule 9 can match eol */ YY_RULE_SETUP #line 184 "attack_scanner.l" { return SSH_INVALUSERPREF; } YY_BREAK case 10: YY_RULE_SETUP #line 185 "attack_scanner.l" { return SSH_INVALUSERPREF; } YY_BREAK /* match disallowed user (not in AllowUsers/AllowGroups or in DenyUsers/DenyGroups) on Linux Ubuntu/FreeBSD */ /* "User tinydns from 1.2.3.4 not allowed because not listed in AllowUsers" */ case 11: YY_RULE_SETUP #line 188 "attack_scanner.l" { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } YY_BREAK case 12: YY_RULE_SETUP #line 189 "attack_scanner.l" { BEGIN(INITIAL); return SSH_NOTALLOWEDSUFF; } YY_BREAK /* match disallowed user root (with PermitRootLogin = no) */ /* "ROOT LOGIN REFUSED FROM 1.2.3.4" */ case 13: YY_RULE_SETUP #line 192 "attack_scanner.l" { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } YY_BREAK case 14: YY_RULE_SETUP #line 194 "attack_scanner.l" { return SSH_MAXAUTH; } YY_BREAK case 15: YY_RULE_SETUP #line 196 "attack_scanner.l" { return SSH_ADDR_SUFF; } YY_BREAK case 16: YY_RULE_SETUP #line 197 "attack_scanner.l" { return SSH_ADDR_SUFF; } YY_BREAK /* Solaris-own */ case 17: YY_RULE_SETUP #line 200 "attack_scanner.l" { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } YY_BREAK case 18: YY_RULE_SETUP #line 201 "attack_scanner.l" { BEGIN(INITIAL); return SSH_NOTALLOWEDSUFF; } YY_BREAK /* get this instead: match invalid login @ Linux Ubuntu */ /* "Failed password for validuser from 1.2.3.4 port 54609 ssh2" */ case 19: /* rule 19 can match eol */ YY_RULE_SETUP #line 205 "attack_scanner.l" { return SSH_LOGINERR_PREF; } YY_BREAK /* wrong password for valid user @ FreeBSD, Debian */ case 20: YY_RULE_SETUP #line 208 "attack_scanner.l" { return SSH_LOGINERR_PAM; } YY_BREAK case 21: YY_RULE_SETUP #line 209 "attack_scanner.l" { return SSH_VIA; } YY_BREAK /* SSH: connections open and closed without auth attempts */ case 22: YY_RULE_SETUP #line 212 "attack_scanner.l" { return SSH_NOIDENTIFSTR; } YY_BREAK case 23: /* rule 23 can match eol */ YY_RULE_SETUP #line 213 "attack_scanner.l" { BEGIN(ssh_disconnect); return SSH_DISCONNECT_PREF; } YY_BREAK case 24: /* rule 24 can match eol */ YY_RULE_SETUP #line 214 "attack_scanner.l" { BEGIN(ssh_disconnect); return SSH_CONNECTION_CLOSED; } YY_BREAK case 25: YY_RULE_SETUP #line 215 "attack_scanner.l" { BEGIN(INITIAL); return SSH_PREAUTH_SUFF; } YY_BREAK /* SSH: clients connecting with other application protocols */ case 26: YY_RULE_SETUP #line 218 "attack_scanner.l" { BEGIN(ssh_badproto); return SSH_BADPROTOCOLIDENTIF; } YY_BREAK case 27: /* rule 27 can match eol */ YY_RULE_SETUP #line 219 "attack_scanner.l" { BEGIN(INITIAL); return SSH_BADPROTOCOLIDENTIF_SUFF; } YY_BREAK case 28: YY_RULE_SETUP #line 221 "attack_scanner.l" { BEGIN(ssh_badkex); return SSH_BADKEX_PREF; } YY_BREAK case 29: YY_RULE_SETUP #line 222 "attack_scanner.l" { BEGIN(INITIAL); return SSH_BADKEX_SUFF; } YY_BREAK /* SSHGuard */ case 30: YY_RULE_SETUP #line 225 "attack_scanner.l" { BEGIN(sshguard_attack); return SSHGUARD_ATTACK_PREF; } YY_BREAK case 31: YY_RULE_SETUP #line 226 "attack_scanner.l" { BEGIN(INITIAL); return SSHGUARD_ATTACK_SUFF; } YY_BREAK case 32: YY_RULE_SETUP #line 227 "attack_scanner.l" { BEGIN(sshguard_block); return SSHGUARD_BLOCK_PREF; } YY_BREAK case 33: YY_RULE_SETUP #line 228 "attack_scanner.l" { BEGIN(INITIAL); return SSHGUARD_BLOCK_SUFF; } YY_BREAK /* BIND */ case 34: YY_RULE_SETUP #line 231 "attack_scanner.l" { BEGIN(bind); return BIND_PREF; } YY_BREAK case 35: YY_RULE_SETUP #line 232 "attack_scanner.l" { BEGIN(INITIAL); return BIND_QUERY_DENIED; } YY_BREAK /* Cucipop */ case 36: /* rule 36 can match eol */ YY_RULE_SETUP #line 235 "attack_scanner.l" { return CUCIPOP_AUTHFAIL; } YY_BREAK /* Exim */ case 37: YY_RULE_SETUP #line 238 "attack_scanner.l" { BEGIN(exim_esmtp_autherr); return EXIM_ESMTP_AUTHFAIL_PREF; } YY_BREAK case 38: YY_RULE_SETUP #line 239 "attack_scanner.l" { BEGIN(INITIAL); return EXIM_ESMTP_AUTHFAIL_SUFF; } YY_BREAK case 39: YY_RULE_SETUP #line 241 "attack_scanner.l" { BEGIN(exim_esmtp_loginerr); return EXIM_ESMTP_LOGINFAIL_PREF; } YY_BREAK case 40: YY_RULE_SETUP #line 242 "attack_scanner.l" { BEGIN(INITIAL); return EXIM_ESMTP_LOGINFAIL_SUFF; } YY_BREAK /* Sendmail */ case 41: YY_RULE_SETUP #line 245 "attack_scanner.l" { BEGIN(sendmail_relaydenied); return SENDMAIL_RELAYDENIED_PREF; } YY_BREAK case 42: YY_RULE_SETUP #line 246 "attack_scanner.l" { BEGIN(INITIAL); return SENDMAIL_RELAYDENIED_SUFF; } YY_BREAK /* Sendmail */ case 43: YY_RULE_SETUP #line 249 "attack_scanner.l" { BEGIN(sendmail_authfailure); return SENDMAIL_AUTHFAILURE_PREF; } YY_BREAK case 44: YY_RULE_SETUP #line 250 "attack_scanner.l" { BEGIN(INITIAL); return SENDMAIL_AUTHFAILURE_SUFF; } YY_BREAK /* dovecot */ case 45: YY_RULE_SETUP #line 253 "attack_scanner.l" { BEGIN(dovecot_loginerr); return DOVECOT_IMAP_LOGINERR_PREF; } YY_BREAK case 46: YY_RULE_SETUP #line 254 "attack_scanner.l" { BEGIN(INITIAL); return DOVECOT_IMAP_LOGINERR_SUFF; } YY_BREAK /* UWimap login errors */ case 47: /* rule 47 can match eol */ YY_RULE_SETUP #line 257 "attack_scanner.l" { return UWIMAP_LOGINERR; } YY_BREAK /* cyrus-imap login error */ case 48: /* rule 48 can match eol */ YY_RULE_SETUP #line 260 "attack_scanner.l" { BEGIN(cyrusimap_loginerr); return CYRUSIMAP_SASL_LOGINERR_PREF; } YY_BREAK case 49: *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ (yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP #line 261 "attack_scanner.l" { BEGIN(INITIAL); return CYRUSIMAP_SASL_LOGINERR_SUFF; } YY_BREAK /* postfix */ case 50: YY_RULE_SETUP #line 264 "attack_scanner.l" { BEGIN(postfix_loginerr); return POSTFIX_SASL_LOGINERR_PREF; } YY_BREAK case 51: YY_RULE_SETUP #line 265 "attack_scanner.l" { BEGIN(INITIAL); return POSTFIX_SASL_LOGINERR_SUFF; } YY_BREAK case 52: YY_RULE_SETUP #line 266 "attack_scanner.l" { return POSTFIX_NO_AUTH_PREF; } YY_BREAK /* non-SMTP on an SMTP port suggests port-scanning activity */ case 53: YY_RULE_SETUP #line 268 "attack_scanner.l" { BEGIN(postfix_loginerr); return POSTFIX_NONSMTP; } YY_BREAK case 54: YY_RULE_SETUP #line 269 "attack_scanner.l" { BEGIN(INITIAL); return POSTFIX_NONSMTP_SUFF; } YY_BREAK case 55: YY_RULE_SETUP #line 271 "attack_scanner.l" { BEGIN(postfix_greylist); return POSTFIX_GREYLIST; } YY_BREAK case 56: YY_RULE_SETUP #line 272 "attack_scanner.l" { BEGIN(INITIAL); return POSTFIX_GREYLIST_SUFF; } YY_BREAK case 57: YY_RULE_SETUP #line 274 "attack_scanner.l" { BEGIN(postscreen); return POSTSCREEN_PREF; } YY_BREAK case 58: YY_RULE_SETUP #line 275 "attack_scanner.l" { BEGIN(postscreen); return POSTSCREEN_PREF; } YY_BREAK case 59: YY_RULE_SETUP #line 276 "attack_scanner.l" { BEGIN(postscreen); return POSTSCREEN_PREF; } YY_BREAK case 60: YY_RULE_SETUP #line 277 "attack_scanner.l" { BEGIN(INITIAL); return POSTSCREEN_SUFF; } YY_BREAK /* FreeBSD's ftpd login errors */ case 61: YY_RULE_SETUP #line 280 "attack_scanner.l" { BEGIN(freebsdftpd_loginerr); return FREEBSDFTPD_LOGINERR_PREF; } YY_BREAK case 62: YY_RULE_SETUP #line 281 "attack_scanner.l" { BEGIN(INITIAL); return FREEBSDFTPD_LOGINERR_SUFF; } YY_BREAK /* ProFTPd */ case 63: /* rule 63 can match eol */ YY_RULE_SETUP #line 284 "attack_scanner.l" { BEGIN(proftpd_loginerr); return PROFTPD_LOGINERR_PREF; } YY_BREAK case 64: YY_RULE_SETUP #line 285 "attack_scanner.l" { BEGIN(INITIAL); return PROFTPD_LOGINERR_SUFF; } YY_BREAK /* another log entry from ProFTPd */ case 65: YY_RULE_SETUP #line 287 "attack_scanner.l" { BEGIN(proftpd_loginerr); return PROFTPD_LOGINERR_PREF; } YY_BREAK case 66: YY_RULE_SETUP #line 288 "attack_scanner.l" { BEGIN(INITIAL); return PROFTPD_LOGINERR_SUFF; } YY_BREAK /* Pure-FTPd */ case 67: YY_RULE_SETUP #line 291 "attack_scanner.l" { BEGIN(pureftpd_loginerr); return PUREFTPD_LOGINERR_PREF; } YY_BREAK case 68: YY_RULE_SETUP #line 292 "attack_scanner.l" { BEGIN(INITIAL); return PUREFTPD_LOGINERR_SUFF; } YY_BREAK /* vsftpd */ case 69: YY_RULE_SETUP #line 295 "attack_scanner.l" { BEGIN(vsftpd_loginerr); return VSFTPD_LOGINERR_PREF; } YY_BREAK case 70: YY_RULE_SETUP #line 296 "attack_scanner.l" { BEGIN(INITIAL); return VSFTPD_LOGINERR_SUFF; } YY_BREAK /* cockpit */ case 71: YY_RULE_SETUP #line 299 "attack_scanner.l" { BEGIN(cockpit_authfail); return COCKPIT_AUTHFAIL_PREF; } YY_BREAK case 72: YY_RULE_SETUP #line 300 "attack_scanner.l" { BEGIN(INITIAL); return COCKPIT_AUTHFAIL_SUFF; } YY_BREAK /* HTTP Basic AUTH – unauthorized. */ case 73: YY_RULE_SETUP #line 303 "attack_scanner.l" { BEGIN(clf_request_withuser); return CLF_UNAUTHOIRIZED_PREF; } YY_BREAK case 74: YY_RULE_SETUP #line 304 "attack_scanner.l" { BEGIN(INITIAL); return CLF_UNAUTHOIRIZED_SUFF; } YY_BREAK /* Common Log Format */ case 75: YY_RULE_SETUP #line 307 "attack_scanner.l" { BEGIN(clf_request); return CLF_REQUEST_PREF; } YY_BREAK /* HTTP probes for common web services. */ case 76: /* rule 76 can match eol */ YY_RULE_SETUP #line 310 "attack_scanner.l" { BEGIN(INITIAL); return CLFWEBPROBES_BOTSEARCH_SUFF; } YY_BREAK case 77: YY_RULE_SETUP #line 311 "attack_scanner.l" { BEGIN(INITIAL); return CLFWEBPROBES_BOTSEARCH_SUFF; } YY_BREAK /* Bad login URLs. HTTP 200 OK responses via POST are failed requests */ case 78: YY_RULE_SETUP #line 315 "attack_scanner.l" { BEGIN(INITIAL); return CLF_LOGIN_URL_SUFF; } YY_BREAK /* OpenSMTPD. */ /* Unsupported command when attempting to log in. */ case 79: YY_RULE_SETUP #line 319 "attack_scanner.l" { BEGIN(opensmtpd_failedcmd); return OPENSMTPD_FAILED_CMD_PREF; } YY_BREAK case 80: YY_RULE_SETUP #line 320 "attack_scanner.l" { BEGIN(INITIAL); return OPENSMTPD_UNSUPPORTED_CMD_SUFF; } YY_BREAK /* Bad credentials */ case 81: YY_RULE_SETUP #line 322 "attack_scanner.l" { BEGIN(INITIAL); return OPENSMTPD_AUTHFAIL_SUFF; } YY_BREAK /* Courier IMAP/POP */ case 82: /* rule 82 can match eol */ YY_RULE_SETUP #line 325 "attack_scanner.l" { return COURIER_AUTHFAIL_PREF; } YY_BREAK /* OpenVPN */ case 83: YY_RULE_SETUP #line 328 "attack_scanner.l" { return OPENVPN_TLS_ERR_SUFF; } YY_BREAK /* Gitea - also with color codes */ case 84: /* rule 84 can match eol */ YY_RULE_SETUP #line 331 "attack_scanner.l" { BEGIN(gitea_autherr); return GITEA_ERR_PREF; } YY_BREAK case 85: YY_RULE_SETUP #line 332 "attack_scanner.l" { BEGIN(INITIAL); return GITEA_ERR_SUFF; } YY_BREAK /* OpenVPN Portshare */ case 86: YY_RULE_SETUP #line 335 "attack_scanner.l" { return OPENVPN_PS_TERM_PREF; } YY_BREAK case 87: YY_RULE_SETUP #line 336 "attack_scanner.l" { return OPENVPN_PS_TERM_SUFF; } YY_BREAK /* MSSQL Failed login */ case 88: YY_RULE_SETUP #line 339 "attack_scanner.l" { return MSSQL_AUTHFAIL_PREF; } YY_BREAK case 89: YY_RULE_SETUP #line 340 "attack_scanner.l" { return MSSQL_AUTHFAIL_PREF; } YY_BREAK case 90: YY_RULE_SETUP #line 341 "attack_scanner.l" { return MSSQL_AUTHFAIL_PREF; } YY_BREAK case 91: YY_RULE_SETUP #line 342 "attack_scanner.l" { return MSSQL_AUTHFAIL_PREF; } YY_BREAK /** COMMON-USE TOKENS do not touch these **/ /* an IPv4 address */ case 92: YY_RULE_SETUP #line 346 "attack_scanner.l" { yylval.str = yytext; return IPv4; } YY_BREAK case 93: YY_RULE_SETUP #line 347 "attack_scanner.l" { yylval.str = strrchr(yytext, ':')+1; return IPv4; } YY_BREAK /* an IPv6 address */ /* standard | clouds implied | embedded IPv4 */ case 94: YY_RULE_SETUP #line 351 "attack_scanner.l" { yylval.str = strdup(yytext); return IPv6; } YY_BREAK /* an host address (PTR) */ case 95: YY_RULE_SETUP #line 354 "attack_scanner.l" { yylval.str = yytext; return HOSTADDR; } YY_BREAK case 96: YY_RULE_SETUP #line 355 "attack_scanner.l" { yylval.num = (int)strtol(yytext, (char **)NULL, 10); return INTEGER; } YY_BREAK /* syslog timestamp */ /*{MONTH}\ +{DAYNO}\ +{HOUR}:{MINPS}:{MINPS} { return TIMESTAMP_SYSLOG; }*/ case 97: YY_RULE_SETUP #line 358 "attack_scanner.l" { return TIMESTAMP_SYSLOG; } YY_BREAK /* TAI64 timestamp */ case 98: YY_RULE_SETUP #line 361 "attack_scanner.l" { return AT_TIMESTAMP_TAI64; } YY_BREAK case 99: YY_RULE_SETUP #line 362 "attack_scanner.l" { return TIMESTAMP_TAI64; } YY_BREAK /* iso8601 timestamp */ case 100: YY_RULE_SETUP #line 365 "attack_scanner.l" { return TIMESTAMP_ISO8601; } YY_BREAK case 101: YY_RULE_SETUP #line 367 "attack_scanner.l" return REPETITIONS; YY_BREAK /*[^ :]+:[^ ]+ { return FACILITYPRIORITY; } */ case 102: YY_RULE_SETUP #line 370 "attack_scanner.l" { yylval.str = yytext; return WORD; } YY_BREAK case 103: /* rule 103 can match eol */ YY_RULE_SETUP #line 371 "attack_scanner.l" /* eat blanks */ YY_BREAK /* literals */ /*\n { return NEWLINE; } */ case 104: YY_RULE_SETUP #line 374 "attack_scanner.l" { return yytext[0]; } YY_BREAK /** end of COMMON-USE TOKENS **/ case 105: YY_RULE_SETUP #line 378 "attack_scanner.l" ECHO; YY_BREAK #line 129491 "attack_scanner.c" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(ssh_notallowed): case YY_STATE_EOF(ssh_reversemap): case YY_STATE_EOF(ssh_disconnect): case YY_STATE_EOF(ssh_badproto): case YY_STATE_EOF(ssh_badkex): case YY_STATE_EOF(cockpit_authfail): case YY_STATE_EOF(sshguard_attack): case YY_STATE_EOF(sshguard_block): case YY_STATE_EOF(bind): case YY_STATE_EOF(dovecot_loginerr): case YY_STATE_EOF(cyrusimap_loginerr): case YY_STATE_EOF(exim_esmtp_autherr): case YY_STATE_EOF(exim_esmtp_loginerr): case YY_STATE_EOF(sendmail_relaydenied): case YY_STATE_EOF(sendmail_authfailure): case YY_STATE_EOF(postfix_loginerr): case YY_STATE_EOF(postfix_greylist): case YY_STATE_EOF(opensmtpd_failedcmd): case YY_STATE_EOF(postscreen): case YY_STATE_EOF(freebsdftpd_loginerr): case YY_STATE_EOF(proftpd_loginerr): case YY_STATE_EOF(pureftpd_loginerr): case YY_STATE_EOF(vsftpd_loginerr): case YY_STATE_EOF(clf_request): case YY_STATE_EOF(clf_request_withuser): case YY_STATE_EOF(clf_unauhtorized): case YY_STATE_EOF(clfwebprobes_botsearch): case YY_STATE_EOF(gitea_autherr): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; /* %if-c-only */ YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; /* %endif */ /* %if-c++-only */ /* %endif */ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { /* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */ yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of user's declarations */ } /* end of yylex */ /* %ok-for-header */ /* %if-c++-only */ /* %not-for-header */ /* %ok-for-header */ /* %endif */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ /* %if-c-only */ static int yy_get_next_buffer (void) /* %endif */ /* %if-c++-only */ /* %endif */ { char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = (yytext_ptr); int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1); for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc( (void *) b->yy_ch_buf, (yy_size_t) (b->yy_buf_size + 2) ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = NULL; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); /* "- 2" to take care of EOB's */ YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ /* %if-c-only */ /* %not-for-header */ static yy_state_type yy_get_previous_state (void) /* %endif */ /* %if-c++-only */ /* %endif */ { yy_state_type yy_current_state; char *yy_cp; /* %% [15.0] code to get the start state into yy_current_state goes here */ yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { /* %% [16.0] code to find the next state goes here */ YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 29841 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ /* %if-c-only */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) /* %endif */ /* %if-c++-only */ /* %endif */ { int yy_is_jam; /* %% [17.0] code to find the next state, and perhaps do backing up, goes here */ char *yy_cp = (yy_c_buf_p); YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 29841 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; yy_is_jam = (yy_current_state == 29840); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT /* %if-c-only */ /* %endif */ #endif /* %if-c-only */ #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif /* %endif */ /* %if-c++-only */ /* %endif */ { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ int offset = (int) ((yy_c_buf_p) - (yytext_ptr)); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart( yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) #ifdef YY_FLEX_LEX_COMPAT return 0; #else return EOF; #endif if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); /* %% [19.0] update BOL and yylineno */ return c; } /* %if-c-only */ #endif /* ifndef YY_NO_INPUT */ /* %endif */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ /* %if-c-only */ void yyrestart (FILE * input_file ) /* %endif */ /* %if-c++-only */ /* %endif */ { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer( yyin, YY_BUF_SIZE ); } yy_init_buffer( YY_CURRENT_BUFFER, input_file ); yy_load_buffer_state( ); } /* %if-c++-only */ /* %endif */ /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ /* %if-c-only */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) /* %endif */ /* %if-c++-only */ /* %endif */ { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } /* %if-c-only */ static void yy_load_buffer_state (void) /* %endif */ /* %if-c++-only */ /* %endif */ { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; /* %if-c-only */ yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; /* %endif */ /* %if-c++-only */ /* %endif */ (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ /* %if-c-only */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) /* %endif */ /* %if-c++-only */ /* %endif */ { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer( b, file ); return b; } /* %if-c++-only */ /* %endif */ /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ /* %if-c-only */ void yy_delete_buffer (YY_BUFFER_STATE b ) /* %endif */ /* %if-c++-only */ /* %endif */ { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree( (void *) b->yy_ch_buf ); yyfree( (void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ /* %if-c-only */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) /* %endif */ /* %if-c++-only */ /* %endif */ { int oerrno = errno; yy_flush_buffer( b ); /* %if-c-only */ b->yy_input_file = file; /* %endif */ /* %if-c++-only */ /* %endif */ b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } /* %if-c-only */ b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; /* %endif */ /* %if-c++-only */ /* %endif */ errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ /* %if-c-only */ void yy_flush_buffer (YY_BUFFER_STATE b ) /* %endif */ /* %if-c++-only */ /* %endif */ { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /* %if-c-or-c++ */ /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ /* %if-c-only */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) /* %endif */ /* %if-c++-only */ /* %endif */ { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /* %endif */ /* %if-c-or-c++ */ /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ /* %if-c-only */ void yypop_buffer_state (void) /* %endif */ /* %if-c++-only */ /* %endif */ { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* %endif */ /* %if-c-or-c++ */ /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ /* %if-c-only */ static void yyensure_buffer_stack (void) /* %endif */ /* %if-c++-only */ /* %endif */ { yy_size_t num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ yy_size_t grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return NULL; b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = NULL; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (const char * yystr ) { return yy_scan_bytes( yystr, (int) strlen(yystr) ); } /* %endif */ /* %if-c-only */ /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = (yy_size_t) (_yybytes_len + 2); buf = (char *) yyalloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer( buf, n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } /* %endif */ #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif /* %if-c-only */ static void yynoreturn yy_fatal_error (const char* msg ) { fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* %endif */ /* %if-c++-only */ /* %endif */ /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /* %if-c-only */ /* %if-reentrant */ /* %endif */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /* %if-reentrant */ /* %endif */ /** Set the current line number. * @param _line_number line number * */ void yyset_lineno (int _line_number ) { yylineno = _line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param _in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * _in_str ) { yyin = _in_str ; } void yyset_out (FILE * _out_str ) { yyout = _out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int _bdebug ) { yy_flex_debug = _bdebug ; } /* %endif */ /* %if-reentrant */ /* %if-bison-bridge */ /* %endif */ /* %endif if-c-only */ /* %if-c-only */ static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ (yy_buffer_stack) = NULL; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = NULL; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = NULL; yyout = NULL; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* %endif */ /* %if-c-only SNIP! this currently causes conflicts with the c++ scanner */ /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer( YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); /* %if-reentrant */ /* %endif */ return 0; } /* %endif */ /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, const char * s2, int n ) { int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (const char * s ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return malloc(size); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return realloc(ptr, size); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } /* %if-tables-serialization definitions */ /* %define-yytables The name for this specific scanner's tables. */ #define YYTABLES_NAME "yytables" /* %endif */ /* %ok-for-header */ #line 378 "attack_scanner.l" void scanner_init(char *str) { yy_scan_string(str); } void scanner_fin() { yy_delete_buffer(YY_CURRENT_BUFFER); } static int getsyslogpid(char *syslogbanner, int length) { int i; syslogbanner[length-2] = '\0'; for (i = length; syslogbanner[i] != '['; i--); return strtol(& syslogbanner[i+1], (char **)NULL, 10); } sshguard-2.4.3/src/parser/attack_parser.y000644 001751 001751 00000025761 14446624521 021343 0ustar00kevinzkevinz000000 000000 %{ /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include "parser.h" #define DEFAULT_ATTACKS_DANGEROUSNESS 10 /* stuff exported by the scanner */ extern void scanner_init(); extern void scanner_fin(); extern int yylex(); static void yyerror(attack_t *, const char *); %} %parse-param { attack_t *attack } /* %pure-parser */ %start text %union { char *str; int num; } /* semantic values for tokens */ %token IPv4 IPv6 HOSTADDR WORD %token INTEGER SYSLOG_BANNER_PID SOCKLOG_BANNER_PID BUSYBOX_SYSLOG_BANNER_PID /* flat tokens */ %token SYSLOG_BANNER TIMESTAMP_SYSLOG TIMESTAMP_ISO8601 TIMESTAMP_TAI64 AT_TIMESTAMP_TAI64 RFC_5234_BANNER METALOG_BANNER SOCKLOG_BANNER %token REPETITIONS %token HTTP_REQUEST HTTP_VERSION HTTP_REDIRECT HTTP_AUTHFAIL HTTP_CLIERROR %token HTTP_BOTSEARCH_WEBMAIL HTTP_BOTSEARCH_PHPMYADMIN HTTP_BOTSEARCH_WORDPRESS HTTP_BOTSEARCH_JOOMLA HTTP_BOTSEARCH /* ssh */ %token SSH_INVALUSERPREF SSH_NOTALLOWEDPREF SSH_NOTALLOWEDSUFF %token SSH_LOGINERR_PREF SSH_LOGINERR_PAM %token SSH_VIA %token SSH_MAXAUTH %token SSH_ADDR_SUFF %token SSH_NOIDENTIFSTR SSH_BADPROTOCOLIDENTIF SSH_BADPROTOCOLIDENTIF_SUFF %token SSH_BADKEX_PREF SSH_BADKEX_SUFF %token SSH_DISCONNECT_PREF SSH_CONNECTION_CLOSED SSH_PREAUTH_SUFF /* SSHGuard */ %token SSHGUARD_ATTACK_PREF SSHGUARD_ATTACK_SUFF %token SSHGUARD_BLOCK_PREF SSHGUARD_BLOCK_SUFF /* BIND */ %token BIND_PREF BIND_QUERY_DENIED /* dovecot */ %token DOVECOT_IMAP_LOGINERR_PREF DOVECOT_IMAP_LOGINERR_SUFF /* uwimap */ %token UWIMAP_LOGINERR /* cyrus-imap */ %token CYRUSIMAP_SASL_LOGINERR_PREF CYRUSIMAP_SASL_LOGINERR_SUFF /* cucipop */ %token CUCIPOP_AUTHFAIL /* exim */ %token EXIM_ESMTP_AUTHFAIL_PREF EXIM_ESMTP_AUTHFAIL_SUFF %token EXIM_ESMTP_LOGINFAIL_PREF EXIM_ESMTP_LOGINFAIL_SUFF /* sendmail */ %token SENDMAIL_RELAYDENIED_PREF SENDMAIL_RELAYDENIED_SUFF %token SENDMAIL_AUTHFAILURE_PREF SENDMAIL_AUTHFAILURE_SUFF /* postfix */ %token POSTFIX_NO_AUTH_PREF POSTFIX_SASL_LOGINERR_PREF POSTFIX_SASL_LOGINERR_SUFF %token POSTFIX_NONSMTP POSTFIX_NONSMTP_SUFF %token POSTFIX_GREYLIST POSTFIX_GREYLIST_SUFF %token POSTSCREEN_PREF POSTSCREEN_SUFF /* FreeBSD's FTPd */ %token FREEBSDFTPD_LOGINERR_PREF FREEBSDFTPD_LOGINERR_SUFF /* proFTPd */ %token PROFTPD_LOGINERR_PREF PROFTPD_LOGINERR_SUFF /* PureFTPd */ %token PUREFTPD_LOGINERR_PREF PUREFTPD_LOGINERR_SUFF /* vsftpd */ %token VSFTPD_LOGINERR_PREF VSFTPD_LOGINERR_SUFF /* cockpit */ %token COCKPIT_AUTHFAIL_PREF COCKPIT_AUTHFAIL_SUFF /* CLF request */ %token CLF_REQUEST_PREF /* CLF, unauhtorized */ %token CLF_UNAUTHOIRIZED_PREF CLF_UNAUTHOIRIZED_SUFF /* CLF, common webapp probes */ %token CLFWEBPROBES_BOTSEARCH_SUFF /* CLF, common CMS frameworks brute-force attacks */ %token CLF_LOGIN_URL_SUFF /* OpenSMTPD */ %token OPENSMTPD_FAILED_CMD_PREF OPENSMTPD_AUTHFAIL_SUFF OPENSMTPD_UNSUPPORTED_CMD_SUFF /* courier */ %token COURIER_AUTHFAIL_PREF /* OpenVPN */ %token OPENVPN_TLS_ERR_SUFF /* Gitea */ %token GITEA_ERR_PREF GITEA_ERR_SUFF /* OpenVPN Portshare */ %token OPENVPN_PS_TERM_PREF %token OPENVPN_PS_TERM_SUFF /* MSSQL */ %token MSSQL_AUTHFAIL_PREF %% /* log source */ text: log_prefix msg_single repetition_suffix | msg_single ; log_prefix: syslogent | multilogent | RFC_5234_BANNER | metalogent | socklogent | busyboxent ; /* a syslog-generated log entry */ syslogent: SYSLOG_BANNER | SYSLOG_BANNER_PID /* timestamp hostname procname[pid]: logmsg */ | TIMESTAMP_ISO8601 /* some have different timestamps */ | TIMESTAMP_ISO8601 WORD /* handle different timestamp with proc name */ ; /* a multilog-generated log entry */ multilogent: AT_TIMESTAMP_TAI64 ; metalogent: METALOG_BANNER ; /* a socklog-generated log entry */ socklogent: SOCKLOG_BANNER | SOCKLOG_BANNER_PID ; /* a busybox syslog log entry */ busyboxent: BUSYBOX_SYSLOG_BANNER_PID ; repetition_suffix: /* epsilon */ | REPETITIONS ; msg_single: sshmsg { attack->service = SERVICES_SSH; } | sshguardmsg { attack->service = SERVICES_SSHGUARD; } | bindmsg { attack->service = SERVICES_BIND; } | dovecotmsg { attack->service = SERVICES_DOVECOT; } | uwimapmsg { attack->service = SERVICES_UWIMAP; } | cyrusimapmsg { attack->service = SERVICES_CYRUSIMAP; } | cucipopmsg { attack->service = SERVICES_CUCIPOP; } | eximmsg { attack->service = SERVICES_EXIM; } | sendmailmsg { attack->service = SERVICES_SENDMAIL; } | postfixmsg { attack->service = SERVICES_POSTFIX; } | freebsdftpdmsg { attack->service = SERVICES_FREEBSDFTPD; } | proftpdmsg { attack->service = SERVICES_PROFTPD; } | pureftpdmsg { attack->service = SERVICES_PUREFTPD; } | vsftpdmsg { attack->service = SERVICES_VSFTPD; } | cockpitmsg { attack->service = SERVICES_COCKPIT; } | clfunauhtdmsg { attack->service = SERVICES_CLF_UNAUTH; } | clfwebprobesmsg { attack->service = SERVICES_CLF_PROBES; } | clfcmsmsg { attack->service = SERVICES_CLF_LOGIN_URL; } | opensmtpdmsg { attack->service = SERVICES_OPENSMTPD; } | couriermsg { attack->service = SERVICES_COURIER; } | openvpnmsg { attack->service = SERVICES_OPENVPN; } | giteamsg { attack->service = SERVICES_GITEA; } | openvpnpsmsg { attack->service = SERVICES_OPENVPN_PS; } | sqlservrmsg { attack->service = SERVICES_MSSQL; } ; /* an address */ addr: IPv4 { attack->address.kind = ADDRKIND_IPv4; strcpy(attack->address.value, $1); } | IPv6 { attack->address.kind = ADDRKIND_IPv6; strcpy(attack->address.value, $1); } | IPv6 '%' WORD { /* IPv6 address with interface name */ attack->address.kind = ADDRKIND_IPv6; strcpy(attack->address.value, $1); } | HOSTADDR { if (!attack_from_hostname(attack, $1)) { YYABORT; } } ; /* attack rules for SSHd */ sshmsg: /* login attempt from non-existent user, or from existent but non-allowed user */ ssh_illegaluser /* incorrect login attempt from valid and allowed user */ | ssh_authfail | ssh_noidentifstring | ssh_badprotocol | ssh_badkex ; ssh_illegaluser: /* nonexistent user */ SSH_INVALUSERPREF addr | SSH_INVALUSERPREF addr SSH_ADDR_SUFF /* existent, unallowed user */ | SSH_NOTALLOWEDPREF addr SSH_NOTALLOWEDSUFF ; ssh_authfail: SSH_LOGINERR_PREF addr SSH_ADDR_SUFF | SSH_LOGINERR_PAM addr | SSH_LOGINERR_PAM addr SSH_VIA | SSH_MAXAUTH addr SSH_ADDR_SUFF ; ssh_noidentifstring: SSH_NOIDENTIFSTR addr | SSH_NOIDENTIFSTR addr SSH_ADDR_SUFF | SSH_DISCONNECT_PREF addr SSH_PREAUTH_SUFF | SSH_CONNECTION_CLOSED addr SSH_PREAUTH_SUFF { attack->dangerousness = 2; } ; ssh_badprotocol: SSH_BADPROTOCOLIDENTIF addr SSH_BADPROTOCOLIDENTIF_SUFF ; ssh_badkex: SSH_BADKEX_PREF addr SSH_BADKEX_SUFF ; /* attacks and blocks from SSHGuard */ sshguardmsg: SSHGUARD_ATTACK_PREF addr SSHGUARD_ATTACK_SUFF | SSHGUARD_BLOCK_PREF addr SSHGUARD_BLOCK_SUFF ; bindmsg: BIND_PREF addr BIND_QUERY_DENIED ; /* attack rules for dovecot imap */ dovecotmsg: DOVECOT_IMAP_LOGINERR_PREF addr DOVECOT_IMAP_LOGINERR_SUFF ; /* attack rules for UWIMAP */ uwimapmsg: UWIMAP_LOGINERR '[' addr ']' ; cyrusimapmsg: CYRUSIMAP_SASL_LOGINERR_PREF addr CYRUSIMAP_SASL_LOGINERR_SUFF ; /* cucipop reports @addr@ tried to log in with wrong password */ cucipopmsg: CUCIPOP_AUTHFAIL addr ; /* */ eximmsg: EXIM_ESMTP_AUTHFAIL_PREF addr EXIM_ESMTP_AUTHFAIL_SUFF | EXIM_ESMTP_LOGINFAIL_PREF addr EXIM_ESMTP_LOGINFAIL_SUFF ; sendmailmsg: SENDMAIL_RELAYDENIED_PREF addr SENDMAIL_RELAYDENIED_SUFF | SENDMAIL_AUTHFAILURE_PREF addr SENDMAIL_AUTHFAILURE_SUFF; ; postfixmsg: POSTFIX_SASL_LOGINERR_PREF addr POSTFIX_SASL_LOGINERR_SUFF | POSTFIX_NO_AUTH_PREF addr ']' | POSTFIX_GREYLIST addr POSTFIX_GREYLIST_SUFF | POSTFIX_NONSMTP addr POSTFIX_NONSMTP_SUFF | POSTSCREEN_PREF addr POSTSCREEN_SUFF ; /* attack rules for FreeBSD's ftpd */ freebsdftpdmsg: FREEBSDFTPD_LOGINERR_PREF addr FREEBSDFTPD_LOGINERR_SUFF ; /* attack rules for ProFTPd */ proftpdmsg: PROFTPD_LOGINERR_PREF addr PROFTPD_LOGINERR_SUFF ; /* attack rules for Pure-FTPd */ pureftpdmsg: PUREFTPD_LOGINERR_PREF addr PUREFTPD_LOGINERR_SUFF ; /* attack rules for vsftpd */ vsftpdmsg: VSFTPD_LOGINERR_PREF addr VSFTPD_LOGINERR_SUFF ; /* attack rules for cockpit */ cockpitmsg: COCKPIT_AUTHFAIL_PREF addr COCKPIT_AUTHFAIL_SUFF | COCKPIT_AUTHFAIL_PREF addr ; /* attack rules for HTTP 401 Unauhtorized in common log format */ clfunauhtdmsg: addr CLF_UNAUTHOIRIZED_PREF CLF_UNAUTHOIRIZED_SUFF ; /* attack rules for probes for common web services */ clfwebprobesmsg: addr CLF_REQUEST_PREF CLFWEBPROBES_BOTSEARCH_SUFF ; /* attack rules against common CMS frameworks */ clfcmsmsg: addr CLF_REQUEST_PREF CLF_LOGIN_URL_SUFF ; /* opensmtpd */ opensmtpdmsg: OPENSMTPD_FAILED_CMD_PREF addr OPENSMTPD_AUTHFAIL_SUFF | OPENSMTPD_FAILED_CMD_PREF addr OPENSMTPD_UNSUPPORTED_CMD_SUFF ; /* attack rules for courier imap/pop */ couriermsg: COURIER_AUTHFAIL_PREF '[' addr ']' ; /* attack rules for openvpn */ openvpnmsg: addr OPENVPN_TLS_ERR_SUFF | '[' addr ']' OPENVPN_TLS_ERR_SUFF ; /* attack rules for gitea */ giteamsg: GITEA_ERR_PREF addr | GITEA_ERR_PREF addr GITEA_ERR_SUFF | GITEA_ERR_PREF '[' addr ']' | GITEA_ERR_PREF '[' addr ']' GITEA_ERR_SUFF ; /* attack rules for mssql */ sqlservrmsg: MSSQL_AUTHFAIL_PREF addr ']' ; /* attack rules for openvpn portshare */ openvpnpsmsg: OPENVPN_PS_TERM_PREF addr OPENVPN_PS_TERM_SUFF | OPENVPN_PS_TERM_PREF '[' addr ']' OPENVPN_PS_TERM_SUFF ; %% static void yyerror(__attribute__((unused)) attack_t *a, __attribute__((unused)) const char *s) { /* do nothing */ } int parse_line(char *str, attack_t *attack) { /* TODO: reduce danger for SERVICES_CLF_PROBES */ attack->dangerousness = DEFAULT_ATTACKS_DANGEROUSNESS; scanner_init(str); int ret = yyparse(attack); scanner_fin(); return ret; } sshguard-2.4.3/src/parser/tests.txt000644 001751 001751 00000053143 14446624521 020224 0ustar00kevinzkevinz000000 000000 #### SSH Invalid user inexu from 6.6.6.0 100 6.6.6.0 4 10 M Invalid user inexu from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M Invalid user inexu from 2001:db8::a11:beef:7ac0%abcdefgh1234567 100 2001:db8::a11:beef:7ac0 6 10 M User mario from 6.6.6.0 not allowed because XYZ 100 6.6.6.0 4 10 M ROOT LOGIN REFUSED FROM 6.6.6.0 port 14423 100 6.6.6.0 4 10 M ROOT LOGIN REFUSED FROM 2001:db8::a11:beef:7ac1 port 14423 100 2001:db8::a11:beef:7ac1 6 10 M ROOT LOGIN REFUSED FROM 1.2.3.4 port 14423 [preauth] 100 1.2.3.4 4 10 M ROOT LOGIN REFUSED FROM 2001:db8::a11:beef:7ac1 port 14423 [preauth] 100 2001:db8::a11:beef:7ac1 6 10 M User mario from 2001:db8::a11:beef:7ac0 not allowed because XYZ 100 2001:db8::a11:beef:7ac0 6 10 M User mario from 2001:db8::a11:beef:7ac0%lo not allowed because XYZ 100 2001:db8::a11:beef:7ac0 6 10 M Failed XYZ for XYZ from 6.6.6.0 port 14423 ssh2 100 6.6.6.0 4 10 M Failed XYZ for XYZ from 2001:db8::a11:beef:7ac0 port 14423 ssh2 100 2001:db8::a11:beef:7ac0 6 10 M Failed XYZ for XYZ from 2001:db8::a11:beef:7ac1 port 14423 ssh2: ED25519 SHA256:0123456789ABCDEF+/0123456789ABCDEF+/0123456 100 2001:db8::a11:beef:7ac1 6 10 M Failed XYZ for XYZ from 1.2.3.4 port 14423 ssh2: ECDSA sha256:0123456789abcdef+/0123456789abcdef+/0123456 100 1.2.3.4 4 10 M Failed XYZ for XYZ from 2001:db8::a11:beef:7ac1 port 14423 ssh2: rsa MD5:01:23:45:67:89:AB:CD:EF:01:23:45:67:89:AB:CD:EF 100 2001:db8::a11:beef:7ac1 6 10 M Failed XYZ for XYZ from 1.2.3.4 port 14423 ssh2: dsa md5:01:23:45:67:89:ab:cd:ef:01:23:45:67:89:ab:cd:ef 100 1.2.3.4 4 10 M Failed XYZ for XYZ from 2001:db8::a11:beef:7ac0%enp3s0 port 14423 ssh2 100 2001:db8::a11:beef:7ac0 6 10 M fatal: Unable to negotiate with 6.6.6.6 port 2222: no matching key exchange method found. Their offer: diffie-hellman-group14-sha1 100 6.6.6.6 4 10 M error: PAM: authentication failure for mario from 6.6.6.0 100 6.6.6.0 4 10 M error: PAM: authentication failure for mario from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M error: PAM: authentication failure for mario from 2001:db8::a11:beef:7ac0%vbr1 100 2001:db8::a11:beef:7ac0 6 10 M error: PAM: unknown user for illegal user mario from 6.6.6.6 100 6.6.6.6 4 10 M Did not receive identification string from 6.6.6.0 100 6.6.6.0 4 10 M Did not receive identification string from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M Did not receive identification string from 2001:db8::a11:beef:7ac0%eth0 100 2001:db8::a11:beef:7ac0 6 10 M Bad protocol version identification XYZ from 6.6.6.0 100 6.6.6.0 4 10 M Bad protocol version identification XYZ from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M Apr 10 02:43:29 quasar sshd[50112]: Connection closed by 66.240.236.119 [preauth] 100 66.240.236.119 4 2 M Apr 10 02:43:29 quasar sshd[50112]: Connection closed by 2001:db8::a11:beef:7ac0 [preauth] 100 2001:db8::a11:beef:7ac0 6 2 M Jun 19 09:08:14 isori sshd[93628]: Connection closed by authenticating user root 192.168.7.7 port 42728 [preauth] 100 192.168.7.7 4 2 M Connection reset by invalid user username 1.2.3.4 port 55895 [preauth] 100 1.2.3.4 4 2 M Connection closed by invalid user gpadmin 1.2.3.4 port 9224 [preauth] 100 1.2.3.4 4 2 M Apr 10 13:50:24 quasar sshd[53269]: error: Received disconnect from 95.9.156.208: 3: com.jcraft.jsch.JSchException: Auth fail [preauth] * M Apr 10 13:50:24 quasar sshd[53269]: error: Received disconnect from 2001:db8::a11:beef:7ac0: 3: com.jcraft.jsch.JSchException: Auth fail [preauth] * M Apr 10 06:55:42 quasar sshd[50880]: Received disconnect from 130.207.203.56: 11: These aren't the droids we're looking for. [preauth] * M Apr 10 06:55:42 quasar sshd[50880]: Received disconnect from 2001:db8::a11:beef:7ac0: 11: These aren't the droids we're looking for. [preauth] * M Apr 9 13:24:07 quasar sshd[44787]: Received disconnect from 103.237.33.58: 11: Bye Bye [preauth] * M Apr 9 13:24:07 quasar sshd[44787]: Received disconnect from 2001:db8::a11:beef:7ac0: 11: Bye Bye [preauth] * M 2015-05-27T04:31:27.46667 auth.info: Invalid user admin from 192.168.2.1 100 192.168.2.1 4 10 M 2015-05-27T04:31:27.46667 auth.info: Invalid user admin from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M Jun 20 02:18:39 vps auth.info sshd[13482]: Invalid user admin from 192.168.2.2 100 192.168.2.2 4 10 M Jun 20 02:18:39 vps auth.info sshd[13482]: Invalid user admin from 2001:db8::a11:beef:7ac0 100 2001:db8::a11:beef:7ac0 6 10 M May 29 14:44:30 epsilon sshd[4564]: error: Received disconnect from 192.168.2.200: 14: No supported authentication methods available [preauth] * M May 29 14:44:30 epsilon sshd[4564]: error: Received disconnect from 2001:db8::a11:beef:7ac0: 14: No supported authentication methods available [preauth] * M error: maximum authentication attempts exceeded for root from 117.81.26.226 port 4919 ssh2 [preauth] 100 117.81.26.226 4 10 M error: maximum authentication attempts exceeded for root from 2001:db8::a11:beef:7ac0 port 4919 ssh2 [preauth] 100 2001:db8::a11:beef:7ac0 6 10 M Invalid user support from 190.50.238.98 port 32836 100 190.50.238.98 4 10 M Invalid user support from 2001:db8::a11:beef:7ac0 port 32836 100 2001:db8::a11:beef:7ac0 6 10 M Failed password for invalid user admin from 172.22.10.15 port 39065 ssh2 100 172.22.10.15 4 10 M Failed password for invalid user admin from 2001:db8::a11:beef:7ac1 port 39065 ssh2 100 2001:db8::a11:beef:7ac1 6 10 M Jul 4 13:55:09 karpov sshd[64301]: Disconnecting invalid user user 10.42.42.42 port 38987: Change of username or service not allowed: (user,ssh-connection) -> (manager,ssh-connection) [preauth] 100 10.42.42.42 4 10 M Disconnected from authenticating user root 1.2.3.4 port 57142 [preauth] 100 1.2.3.4 4 10 M Disconnected from invalid user support 1.2.3.4 port 56636 [preauth] 100 1.2.3.4 4 10 M Disconnected from 1.2.3.4 port 30761 [preauth] 100 1.2.3.4 4 10 M <35>1 2020-01-03T11:57:14.257387-05:00 1.2.3.4 sshd 86784 - - error: PAM: Authentication error for root from 1.2.3.4 100 1.2.3.4 4 10 M Dec 1 06:25:27 server sshd[19956]: Accepted publickey for User from 1.2.3.4 port 21563 ssh2: RSA SHA256:... * M Dec 1 06:25:27 server sshd[19471]: Received disconnect from 1.2.3.4 port 60058:11: disconnected by user * M Dec 1 06:25:27 server sshd[19471]: Disconnected from 1.2.3.4 port 60058 * M #### Remote SSHGuard Attack from "2001:db8::a11:beef:456e" on service 100 with danger 10. 110 2001:db8::a11:beef:456e 6 10 M Attack from "192.68.18.1" on service 100 with danger 10. 110 192.68.18.1 4 10 M Blocking "192.68.18.2/32" for 300 secs (3 attacks in 5 secs, after 1 abuses over 5 secs.) 110 192.68.18.2 4 10 M Blocking "2001:db8::a11:beef:456f/64" for 300 secs (3 attacks in 5 secs, after 1 abuses over 5 secs.) 110 2001:db8::a11:beef:456f 6 10 M #### Mail authentication failure XYZ 6.6.6.0 230 6.6.6.0 4 10 M authentication failure XYZ 2001:db8::a11:beef:7ac0 230 2001:db8::a11:beef:7ac0 6 10 M authenticator failed for XYZ [6.6.6.0]:14432 I=XYZ : 535 Incorrect authentication data (set_id=test) 240 6.6.6.0 4 10 M authenticator failed for XYZ [2001:db8::a11:beef:7ac0]:14432 I=XYZ : 535 Incorrect authentication data (set_id=test) 240 2001:db8::a11:beef:7ac0 6 10 M SMTP protocol error in "AUTH LOGIN" H=(XYZ) [6.6.6.0] AUTH command used when not advertised 240 6.6.6.0 4 10 M SMTP protocol error in "AUTH LOGIN" H=(XYZ) [2001:db8::a11:beef:7ac0] AUTH command used when not advertised 240 2001:db8::a11:beef:7ac0 6 10 M SMTP protocol error in "AUTH LOGIN" H=(XYZ) [6.6.6.0] LOGIN authentication mechanism not supported 240 6.6.6.0 4 10 M SMTP protocol error in "AUTH LOGIN" H=(XYZ) [2001:db8::a11:beef:7ac0] LOGIN authentication mechanism not supported 240 2001:db8::a11:beef:7ac0 6 10 M 2018-06-03 13:16:08 SMTP protocol error in "AUTH LOGIN" H=(mail.example.com) [123.24.161.123] AUTH command used when not advertised: 1 Time(s) 240 123.24.161.123 4 10 M 2018-06-03 13:35:07 SMTP protocol error in "AUTH LOGIN" H=dynamic-186-31-81-98.dynamic.etb.net.co (mail.example.com) [186.31.81.98] AUTH command used when not advertised: 1 Time(s) 240 186.31.81.98 4 10 M Relaying denied. IP name lookup failed [6.6.6.0] 250 6.6.6.0 4 10 M Relaying denied. IP name lookup failed [2001:db8::a11:beef:7ac0] 250 2001:db8::a11:beef:7ac0 6 10 M imap-login: Aborted login (auth failed, 6 attempts): XYZ rip=6.6.6.0, lip=127.0.0.1 210 6.6.6.0 4 10 M imap-login: Aborted login (auth failed, 6 attempts): XYZ rip=2001:db8::a11:beef:7ac0, lip=127.0.0.1 210 2001:db8::a11:beef:7ac0 6 10 M 2019-10-15 08:08:52 imap-login: Info: Disconnected (auth failed, 1 attempts in 2 secs): user=, method=PLAIN, rip=172.21.0.1, lip=172.21.0.3, TLS, session=<1MyTfu0USIqsFQAB> 210 172.21.0.1 4 10 M submission-login: Disconnected: Aborted login by logging out (auth failed, 1 attempts in 2 secs): user=, method=LOGIN, rip=1.2.3.4, lip=1.1.1.1, TLS, session= 210 1.2.3.4 4 10 M Login failed user=XYZ auth=XYZ host=XYZ [6.6.6.0] 200 6.6.6.0 4 10 M Login failed user=XYZ auth=XYZ host=XYZ [2001:db8::a11:beef:7ac0] 200 2001:db8::a11:beef:7ac0 6 10 M badlogin: XYZ [6.6.6.0] XYZ SASL XYZ checkpass failed 220 6.6.6.0 4 10 M badlogin: XYZ [2001:db8::a11:beef:7ac0] XYZ SASL XYZ checkpass failed 220 2001:db8::a11:beef:7ac0 6 10 M Oct 19 19:56:07 longbeach postfix/smtpd[2309]: warning: unknown[199.19.110.207]: SASL LOGIN authentication failed: UGFzc3dvcmQ6 260 199.19.110.207 4 10 M Oct 19 19:56:07 longbeach postfix/smtpd[2309]: warning: unknown[2001:db8::a11:beef:7ac0]: SASL LOGIN authentication failed: UGFzc3dvcmQ6 260 2001:db8::a11:beef:7ac0 6 10 M Jun 21 12:00:56 acme postfix/submission/smtpd[20201]: warning: non-SMTP command from unknown[1.2.3.4]: GET / HTTP/1.1 260 1.2.3.4 4 10 M warning: unknown[1.2.3.4]: SASL LOGIN authentication failed: authentication failure 260 1.2.3.4 4 10 M 2015-03-12 03:17:22 login authenticator failed for vps.o2c.net (User) [87.76.31.6]: 535 Incorrect authentication data (set_id=dog) 240 87.76.31.6 4 10 M 2015-03-12 03:17:22 login authenticator failed for vps.o2c.net (User) [2001:db8::a11:beef:7ac0]: 535 Incorrect authentication data (set_id=dog) 240 2001:db8::a11:beef:7ac0 6 10 M 1999-03-02 09:44:33 expanded_prompt_plain authenticator failed for (test.host) [10.0.0.1] U=CALLER: 535 Incorrect authentication data (set_id=userx) 240 10.0.0.1 4 10 M 1999-03-02 09:44:33 expanded_prompt_plain authenticator failed for (test.host) [2001:db8::a11:beef:7ac0] U=CALLER: 535 Incorrect authentication data (set_id=userx) 240 2001:db8::a11:beef:7ac0 6 10 M Dec 13 09:32:50 marcos postfix/smtpd[24754]: lost connection after AUTH from rrcs-24-213-217-114.nys.biz.rr.com[24.213.217.114] 260 24.213.217.114 4 10 M Dec 13 09:32:50 marcos postfix/smtpd[24754]: lost connection after AUTH from rrcs-24-213-217-114.nys.biz.rr.com[2001:db8::a11:beef:7ac0] 260 2001:db8::a11:beef:7ac0 6 10 M Jun 20 16:46:17 ares postgrey[919]: action=greylist, reason=early-retry (295s missing), client_name=r244.mail.kbc.be, client_address=172.82.231.244, sender=bounce@mail.kbc.be, recipient=lilydehoux@zeelandned.nl 260 172.82.231.244 4 10 M Sep 6 11:47:43 poseidon postfix/postscreen[14766]: PREGREET 14 after 0.04 from [1.2.3.4]:55868: EHLO ylmf-pc\r\n 260 1.2.3.4 4 10 M Sep 10 07:01:57 poseidon postfix/postscreen[25914]: DNSBL rank 3 for [1.2.3.4]:64273 260 1.2.3.4 4 10 M Sep 6 11:47:43 poseidon postfix/postscreen[14766]: HANGUP after 0.07 from [1.2.3.4]:55868 in tests after SMTP handshake 260 1.2.3.4 4 10 M #### OpenSMTPD 38dd06274cde1fd7 smtp event=failed-command address=185.236.202.133 host=no-mans-land.m247.com command="AUTH LOGIN" result="503 5.5.1 Invalid command: Command not supported" 270 185.236.202.133 4 10 M 45addba89269aeaa smtp event=failed-command address=128.237.183.69 host=zeta.wv.cc.cmu.edu command="AUTH PLAIN (...)" result="535 Authentication failed" 270 128.237.183.69 4 10 M #### SMTP 2018-06-03 13:16:08 SMTP protocol error in "AUTH LOGIN" H=(mail.example.com) [123.24.161.123] AUTH command used when not advertised: 1 Time(s) 240 123.24.161.123 4 10 M imaps TLS negotiation failed: [196.52.43.55] * M imaps TLS negotiation failed: [2001:470:df49:2:9df9:4e98:31e1:1720] * M STARTTLS negotiation failed: [196.52.43.55] * M STARTTLS negotiation failed: [2001:470:df49:2:9df9:4e98:31e1:1720] * M Jun 24 15:34:21 mail imapd: LOGIN FAILED, user=fakeemail@example.com, ip=[1.2.3.4] 280 1.2.3.4 4 10 M Jun 24 15:34:21 mail imapd: LOGIN FAILED, user=fakeemail@example.com, ip=[2001:470:df49:2:9df9:4e98:31e1:1720] 280 2001:470:df49:2:9df9:4e98:31e1:1720 6 10 M Jun 24 15:34:21 mail imapd: LOGIN FAILED, user=fakeemail@example.com, ip=[::ffff:121.226.61.81] 280 121.226.61.81 4 10 M Jun 24 11:53:25 mail pop3d: LOGIN FAILED, user=britton, ip=[1.2.3.4] 280 1.2.3.4 4 10 M Jun 24 11:53:25 mail pop3d: LOGIN FAILED, user=britton, ip=[2001:470:df49:2:9df9:4e98:31e1:1720] 280 2001:470:df49:2:9df9:4e98:31e1:1720 6 10 M Jun 24 11:53:25 mail pop3d: LOGIN FAILED, user=britton, ip=[::ffff:121.226.61.81] 280 121.226.61.81 4 10 M Nov 20 04:12:45 mail imapd-ssl[20815]: LOGIN FAILED, method=PLAIN, ip=[::ffff:177.19.165.26] 280 177.19.165.26 4 10 M #### FTP FTP LOGIN FAILED FROM 6.6.6.0, XYZ 300 6.6.6.0 4 10 M FTP LOGIN FAILED FROM 2001:db8::a11:beef:7ac0, XYZ 300 2001:db8::a11:beef:7ac0 6 10 M foo.com (foo.com [6.6.6.0]) XYZ no such user XYZ 310 6.6.6.0 4 10 M foo.com (foo.com [2001:db8::a11:beef:7ac0]) XYZ no such user XYZ 310 2001:db8::a11:beef:7ac0 6 10 M (XYZ@6.6.6.0) [WARNING] Authentication failed for user XYZ 320 6.6.6.0 4 10 M (XYZ@2001:db8::a11:beef:7ac0) [WARNING] Authentication failed for user XYZ 320 2001:db8::a11:beef:7ac0 6 10 M XYZ FAIL LOGIN: Client "6.6.6.0" 330 6.6.6.0 4 10 M XYZ FAIL LOGIN: Client "2001:db8::a11:beef:7ac0" 330 2001:db8::a11:beef:7ac0 6 10 M #### Cockpit pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=172.22.10.15 user=jeff 340 172.22.10.15 4 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=2001:db8::a11:beef:7ac0 user=root 340 2001:db8::a11:beef:7ac0 6 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=172.22.10.15 340 172.22.10.15 4 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=2001:db8::a11:beef:7ac1 340 2001:db8::a11:beef:7ac1 6 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=172.22.10.15 user=jeff 340 172.22.10.15 4 10 M pam_unix(cockpit:auth): authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=2001:db8::a11:beef:7ac1 user=jeff 340 2001:db8::a11:beef:7ac1 6 10 M #### OpenVPN Sep 04 00:00:06 hostname openvpn[23718]: 54.183.149.10:34791 TLS Error: TLS handshake failed 400 54.183.149.10 4 10 M Sep 04 00:00:06 hostname openvpn[23718]: [2001:db8::a11:beef:7ac0]:34791 TLS Error: TLS handshake failed 400 2001:db8::a11:beef:7ac0 6 10 M #### Web 10.42.42.39 - "jeff" [19/Apr/1943:03:14:13 +0000] "GET /secret-base HTTP/1.1" 401 356 "EvilAgent/2.0" 350 10.42.42.39 4 10 M 10.42.42.40 - - [19/Apr/1943:03:14:10 +0000] "GET /wp-login.php HTTP/1.1" 404 1 "-" "Mozilla/5.0" 360 10.42.42.40 4 10 M 10.42.42.41 - - [19/Apr/1943:03:14:11 +0000] "GET /wp-admin.php HTTP/1" 401 - "-" "Mozilla/5.0" 360 10.42.42.41 4 10 M 10.42.42.42 - - [19/Apr/1943:03:14:12 +0000] "GET /wordress/wp-login.php HTTP/2.0" 404 2571 "-" "Mozilla/5.0" "extra-field" "more-data" 360 10.42.42.42 4 10 M 10.42.42.43 - - [19/Apr/1943:03:14:13 +0000] "GET /roundcube HTTP/1.1" 410 3 360 10.42.42.43 4 10 M 2001:db8::a11:beef:7aa0 - - [19/Apr/1943:03:14:14 +0000] "GET /roundcube HTTP/2.0" 403 0 "-" "Mozilla/4.0" 360 2001:db8::a11:beef:7aa0 6 10 M 10.42.42.44 - - [19/Apr/1943:03:14:15 +0000] "GET /wp-login.php HTTP/1.1" 404 56 "-" 360 10.42.42.44 4 10 M 2001:db8::a11:beef:7aa1 - - [19/Apr/1943:03:14:14 +0000] "GET /roundcube HTTP/2.0" 404 - 360 2001:db8::a11:beef:7aa1 6 10 M 10.42.42.45 - - [19/Apr/1943:03:14:17 +0000] "GET /roundcube/ HTTP/2.0" 410 - "-" "Mozilla/4.0" 360 10.42.42.45 4 10 M 10.42.42.46 - - [17/Jun/2020:00:26:51 +0200] "GET /administrator/index.php?option=com_login HTTP/1.1" 404 286 "-" "Mozilla/5.0" 360 10.42.42.46 4 10 M 2001:db8::a11:b2ef:78f2 - - [19/Apr/1943:03:14:11 +0000] "POST /wordpress/wp-login.php HTTP/1.1" 200 781 "-" "Googlebot" 370 2001:db8::a11:b2ef:78f2 6 10 M 10.42.57.1 - - [19/Apr/1943:03:14:10 +0000] "POST /wp-login.php HTTP/1.1" 200 1056 370 10.42.57.1 4 10 M 2001:db8::a11:beef:7aa2 - - [19/Apr/1943:03:14:11 +0000] "POST /wordpress/wp-login.php HTTP/1.1" 200 781 "-" "Googlebot" 370 2001:db8::a11:beef:7aa2 6 10 M 192.68.11.1 - - [19/Apr/1943:03:14:11 +0000] "POST /wordpress/wp-login.php HTTP/1.1" 200 781 "-" "Googlebot" 370 192.68.11.1 4 10 M 192.68.11.1 - - [19/Apr/1943:03:14:12 +0000] "POST /wp/wp-login.php HTTP/1.1" 200 - "-" "Mozilla/5.0" 370 192.68.11.1 4 10 M 2001:db8::a11:beef:7aa3 - "admin" [19/Apr/1943:03:14:13 +0000] "GET /admin/system HTTP/1.1" 401 - 350 2001:db8::a11:beef:7aa3 6 10 M 127.1.2.3 - - [18/Jun/2020:16:05:21 +0200] "POST /typo3/?loginProvider=1433416747 HTTP/2.0" 200 3714 "-" "Mozilla/5.0" "-" 370 127.1.2.3 4 10 M 127.1.2.4 - - [18/Jun/2020:16:05:21 +0200] "POST /contao/login?_hash=tw9jzczttzj9twxzjztwx9twzjtwxjtzj9ztwdjzxwt%3D&redirect=https%3A%2F%2Fexample.org%2Fcontao HTTP/2.0" 200 654 "-" "Mozilla/5.0" "-" 370 127.1.2.4 4 10 M 1.2.3.4 - - [28/Dec/2022:20:45:56 +0200] "GET /LICENSE.txt HTTP/2.0" 444 0 "-" "curl/7.74.0" (0.000) 360 1.2.3.4 4 10 M reverse mapping checking getaddrinfo for XYZ [6.6.6.0] XYZ POSSIBLE BREAK-IN ATTEMPT! * M 10.42.42.40 - - [19/Apr/1943:03:14:15 +0000] "GET / HTTP/1.1" 401 314 "-" "Mozilla/5.0" * M 2001:db8::a11:beef:7ac0 - - [19/Apr/1943:03:14:15 +0000] "GET / HTTP/2.0" 301 401 "-" "Mozilla/5.0" * M 10.42.42.42 - - [19/Apr/1943:03:14:15 +0000] "GET / HTTP/2.0" 301 401 314 "-" "Mozilla/5.0" * M 10.42.42.44 - [19/Apr/1943:03:14:15 +0000] "GET / HTTP/2.0" 301 401 314 "-" "Mozilla/5.0" * M 10.42.42.45 - - [19/Apr/1943:03:14:15 +0000] "GET wp-login.php HTTP/1.1" 200 "-" "Mozilla/5.0" * M 10.42.42.46 - - [19/Apr/1943:03:14:15 +0000] "GET /wp-login.php HTTP/1.1" 200 "-" "Mozilla/5.0" * M 10.42.42.47 - - [19/Apr/1943:03:14:15 +0000] "POST /wp-login.php HTTP/1.1" 302 200 "-" "Mozilla/5.0" * M 10.42.42.48 - - [19/Apr/1943:03:14:15 +0000] "GET /wp-login.php HTTP/1.1" 301 201 "-" "Mozilla/5.0" * M 2001:db8::a11:beef:7ac1 - - [19/Apr/1943:03:14:15 +0000] "POST /wp-login.php HTTP/1.1" 302 201 "-" "Mozilla/5.0" * M 10.42.42.49 - - [19/Apr/1943:03:14:15 +0000] "GET /wp-login.php HTTP/1.1" 302 200 "-" "Mozilla/5.0" * M 10.42.42.50 - - [19/Apr/1943:03:14:15 +0000] "GET roundcube HTTP/1.1" 200 "-" "Mozilla/4.0" * M 10.42.42.51 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube HTTP/1.1" 200 "-" "Mozilla/4.0" * M 10.42.42.52 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube HTTP/1.1" 301 200 "-" "Mozilla/4.0" * M 10.42.42.53 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube HTTP/1.1" 301 201 "-" "Mozilla/4.0" "extra-field" "more-data" * M 2001:db8::a11:beef:7ac2 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube/ HTTP/1.1" 200 "-" "Mozilla/4.0" * M 10.42.42.54 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube/ HTTP/1.1" 301 200 "-" "Mozilla/4.0" * M 10.42.42.55 - - [19/Apr/1943:03:14:15 +0000] "GET /roundcube/ HTTP/1.1" 301 201 "-" "Mozilla/4.0" * M 10.42.42.56 - - [19/Apr/1943:03:14:15 +0000] "GET /somewhere HTTP/1.1" 200 "https://example.com/wp-admin.php" "Mozilla/5.0" * M # Greedy SYSLOG_BANNER token (#93) 2018-06-26 13:22:02.108781500 Failed password for woold from 10.10.10.76 port 34718 ssh2 100 10.10.10.76 4 10 M # macOS log format (#106) 2018-12-20 10:09:05.180218+0000 localhost sshd[67566]: Invalid user git from 185.52.1.9 port 35968 100 185.52.1.9 4 10 M # OpenSSH 7 (#81) Dec 29 16:48:56 xxx sshd[24924]: Did not receive identification string from 5.20.95.202 port 56452 100 5.20.95.202 4 10 M # Gitea Mar 07 08:34:31 myhost gitea[15884]: 2019/03/07 08:34:31 [I] Failed authentication attempt for blabla from [::1] 500 ::1 6 10 M Failed authentication attempt for blabla from 213.60.123.190 500 213.60.123.190 4 10 M # Rsyslog 8 (#128) 2020-05-29T11:28:56.058908+02:00 bastion sshd[20974] error: PAM: Authentication error for illegal user plop from 10.11.12.13 100 10.11.12.13 4 10 M # Busybox 'syslog -S' hides host names (#115) May 9 11:11:17 sshd[30876]: Invalid user www from 139.59.34.17 port 51066 100 139.59.34.17 4 10 M # OpenVPN Portshare 2019-10-21T23:07:09+0200 [stdout#info] [OVPN 0] OUT: 'Mon Oct 21 21:07:09 2019 192.168.0.1:28288 SIGTERM[soft,port-share-redirect] received, client-instance exiting' 410 192.168.0.1 4 10 M # BIND query denied Jul 28 08:45:16 router1 named[135105]: client @0x7f13c4158c00 1.2.3.4#3074 (example.com): query (cache) example.com/RRSIG/IN' denied 120 1.2.3.4 4 10 M # Gitea 1.17.x FreeBSD 2023/01/01 15:33:04 ...ers/web/auth/auth.go:200:SignInPost() [I] [63b199a0] Failed authentication attempt for test from 192.168.1.2:13798: user does not exist [uid: 0, name: test, keyid: 0] 500 192.168.1.2 4 10 M # Gitea 1.17 colored 2023/01/01 17:25:12 ...ers/web/auth/auth.go:200:SignInPost() [I] [63b1b3e8] Failed authentication attempt for test from 1.2.3.4:0: user does not exist [uid: 0, name: test, keyid: 0] 500 1.2.3.4 4 10 M #MSSQL 2023-04-21 23:17:02.54 Logon Login failed for user 'sa'. Reason: Password did not match that for the login provided. [CLIENT: 87.251.75.20] 600 87.251.75.20 4 10 M #MSSQL 2023-04-21 23:17:02.54 Logon Login failed for user 'admin'. Reason: Could not find a login matching the name provided. [CLIENT: 80.66.76.21] 600 80.66.76.21 4 10 M #MSSQL 2023-05-01 15:32:57.55 Logon Login failed. The login is from an untrusted domain and cannot be used with Integrated authentication. [CLIENT: 87.236.176.168] 600 87.236.176.168 4 10 M #MSSQL 2023-05-01 15:05:09.16 Logon Length specified in network packet payload did not match number of bytes read; the connection has been closed. Please contact the vendor of the client library. [CLIENT: 198.199.105.106] 600 198.199.105.106 4 10 M sshguard-2.4.3/src/parser/attack_parser.c000644 001751 001751 00000232624 14447664715 021325 0ustar00kevinzkevinz000000 000000 /* A Bison parser, made by GNU Bison 3.8.2. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual, especially those whose name start with YY_ or yy_. They are private implementation details that can be changed or removed. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output, and Bison version. */ #define YYBISON 30802 /* Bison version string. */ #define YYBISON_VERSION "3.8.2" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* First part of user prologue. */ #line 1 "attack_parser.y" /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #include #include "parser.h" #define DEFAULT_ATTACKS_DANGEROUSNESS 10 /* stuff exported by the scanner */ extern void scanner_init(); extern void scanner_fin(); extern int yylex(); static void yyerror(attack_t *, const char *); #line 108 "attack_parser.c" # ifndef YY_CAST # ifdef __cplusplus # define YY_CAST(Type, Val) static_cast (Val) # define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast (Val) # else # define YY_CAST(Type, Val) ((Type) (Val)) # define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val)) # endif # endif # ifndef YY_NULLPTR # if defined __cplusplus # if 201103L <= __cplusplus # define YY_NULLPTR nullptr # else # define YY_NULLPTR 0 # endif # else # define YY_NULLPTR ((void*)0) # endif # endif /* Use api.header.include to #include this header instead of duplicating it here. */ #ifndef YY_YY_ATTACK_PARSER_H_INCLUDED # define YY_YY_ATTACK_PARSER_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int yydebug; #endif /* Token kinds. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { YYEMPTY = -2, YYEOF = 0, /* "end of file" */ YYerror = 256, /* error */ YYUNDEF = 257, /* "invalid token" */ IPv4 = 258, /* IPv4 */ IPv6 = 259, /* IPv6 */ HOSTADDR = 260, /* HOSTADDR */ WORD = 261, /* WORD */ INTEGER = 262, /* INTEGER */ SYSLOG_BANNER_PID = 263, /* SYSLOG_BANNER_PID */ SOCKLOG_BANNER_PID = 264, /* SOCKLOG_BANNER_PID */ BUSYBOX_SYSLOG_BANNER_PID = 265, /* BUSYBOX_SYSLOG_BANNER_PID */ SYSLOG_BANNER = 266, /* SYSLOG_BANNER */ TIMESTAMP_SYSLOG = 267, /* TIMESTAMP_SYSLOG */ TIMESTAMP_ISO8601 = 268, /* TIMESTAMP_ISO8601 */ TIMESTAMP_TAI64 = 269, /* TIMESTAMP_TAI64 */ AT_TIMESTAMP_TAI64 = 270, /* AT_TIMESTAMP_TAI64 */ RFC_5234_BANNER = 271, /* RFC_5234_BANNER */ METALOG_BANNER = 272, /* METALOG_BANNER */ SOCKLOG_BANNER = 273, /* SOCKLOG_BANNER */ REPETITIONS = 274, /* REPETITIONS */ HTTP_REQUEST = 275, /* HTTP_REQUEST */ HTTP_VERSION = 276, /* HTTP_VERSION */ HTTP_REDIRECT = 277, /* HTTP_REDIRECT */ HTTP_AUTHFAIL = 278, /* HTTP_AUTHFAIL */ HTTP_CLIERROR = 279, /* HTTP_CLIERROR */ HTTP_BOTSEARCH_WEBMAIL = 280, /* HTTP_BOTSEARCH_WEBMAIL */ HTTP_BOTSEARCH_PHPMYADMIN = 281, /* HTTP_BOTSEARCH_PHPMYADMIN */ HTTP_BOTSEARCH_WORDPRESS = 282, /* HTTP_BOTSEARCH_WORDPRESS */ HTTP_BOTSEARCH_JOOMLA = 283, /* HTTP_BOTSEARCH_JOOMLA */ HTTP_BOTSEARCH = 284, /* HTTP_BOTSEARCH */ SSH_INVALUSERPREF = 285, /* SSH_INVALUSERPREF */ SSH_NOTALLOWEDPREF = 286, /* SSH_NOTALLOWEDPREF */ SSH_NOTALLOWEDSUFF = 287, /* SSH_NOTALLOWEDSUFF */ SSH_LOGINERR_PREF = 288, /* SSH_LOGINERR_PREF */ SSH_LOGINERR_PAM = 289, /* SSH_LOGINERR_PAM */ SSH_VIA = 290, /* SSH_VIA */ SSH_MAXAUTH = 291, /* SSH_MAXAUTH */ SSH_ADDR_SUFF = 292, /* SSH_ADDR_SUFF */ SSH_NOIDENTIFSTR = 293, /* SSH_NOIDENTIFSTR */ SSH_BADPROTOCOLIDENTIF = 294, /* SSH_BADPROTOCOLIDENTIF */ SSH_BADPROTOCOLIDENTIF_SUFF = 295, /* SSH_BADPROTOCOLIDENTIF_SUFF */ SSH_BADKEX_PREF = 296, /* SSH_BADKEX_PREF */ SSH_BADKEX_SUFF = 297, /* SSH_BADKEX_SUFF */ SSH_DISCONNECT_PREF = 298, /* SSH_DISCONNECT_PREF */ SSH_CONNECTION_CLOSED = 299, /* SSH_CONNECTION_CLOSED */ SSH_PREAUTH_SUFF = 300, /* SSH_PREAUTH_SUFF */ SSHGUARD_ATTACK_PREF = 301, /* SSHGUARD_ATTACK_PREF */ SSHGUARD_ATTACK_SUFF = 302, /* SSHGUARD_ATTACK_SUFF */ SSHGUARD_BLOCK_PREF = 303, /* SSHGUARD_BLOCK_PREF */ SSHGUARD_BLOCK_SUFF = 304, /* SSHGUARD_BLOCK_SUFF */ BIND_PREF = 305, /* BIND_PREF */ BIND_QUERY_DENIED = 306, /* BIND_QUERY_DENIED */ DOVECOT_IMAP_LOGINERR_PREF = 307, /* DOVECOT_IMAP_LOGINERR_PREF */ DOVECOT_IMAP_LOGINERR_SUFF = 308, /* DOVECOT_IMAP_LOGINERR_SUFF */ UWIMAP_LOGINERR = 309, /* UWIMAP_LOGINERR */ CYRUSIMAP_SASL_LOGINERR_PREF = 310, /* CYRUSIMAP_SASL_LOGINERR_PREF */ CYRUSIMAP_SASL_LOGINERR_SUFF = 311, /* CYRUSIMAP_SASL_LOGINERR_SUFF */ CUCIPOP_AUTHFAIL = 312, /* CUCIPOP_AUTHFAIL */ EXIM_ESMTP_AUTHFAIL_PREF = 313, /* EXIM_ESMTP_AUTHFAIL_PREF */ EXIM_ESMTP_AUTHFAIL_SUFF = 314, /* EXIM_ESMTP_AUTHFAIL_SUFF */ EXIM_ESMTP_LOGINFAIL_PREF = 315, /* EXIM_ESMTP_LOGINFAIL_PREF */ EXIM_ESMTP_LOGINFAIL_SUFF = 316, /* EXIM_ESMTP_LOGINFAIL_SUFF */ SENDMAIL_RELAYDENIED_PREF = 317, /* SENDMAIL_RELAYDENIED_PREF */ SENDMAIL_RELAYDENIED_SUFF = 318, /* SENDMAIL_RELAYDENIED_SUFF */ SENDMAIL_AUTHFAILURE_PREF = 319, /* SENDMAIL_AUTHFAILURE_PREF */ SENDMAIL_AUTHFAILURE_SUFF = 320, /* SENDMAIL_AUTHFAILURE_SUFF */ POSTFIX_NO_AUTH_PREF = 321, /* POSTFIX_NO_AUTH_PREF */ POSTFIX_SASL_LOGINERR_PREF = 322, /* POSTFIX_SASL_LOGINERR_PREF */ POSTFIX_SASL_LOGINERR_SUFF = 323, /* POSTFIX_SASL_LOGINERR_SUFF */ POSTFIX_NONSMTP = 324, /* POSTFIX_NONSMTP */ POSTFIX_NONSMTP_SUFF = 325, /* POSTFIX_NONSMTP_SUFF */ POSTFIX_GREYLIST = 326, /* POSTFIX_GREYLIST */ POSTFIX_GREYLIST_SUFF = 327, /* POSTFIX_GREYLIST_SUFF */ POSTSCREEN_PREF = 328, /* POSTSCREEN_PREF */ POSTSCREEN_SUFF = 329, /* POSTSCREEN_SUFF */ FREEBSDFTPD_LOGINERR_PREF = 330, /* FREEBSDFTPD_LOGINERR_PREF */ FREEBSDFTPD_LOGINERR_SUFF = 331, /* FREEBSDFTPD_LOGINERR_SUFF */ PROFTPD_LOGINERR_PREF = 332, /* PROFTPD_LOGINERR_PREF */ PROFTPD_LOGINERR_SUFF = 333, /* PROFTPD_LOGINERR_SUFF */ PUREFTPD_LOGINERR_PREF = 334, /* PUREFTPD_LOGINERR_PREF */ PUREFTPD_LOGINERR_SUFF = 335, /* PUREFTPD_LOGINERR_SUFF */ VSFTPD_LOGINERR_PREF = 336, /* VSFTPD_LOGINERR_PREF */ VSFTPD_LOGINERR_SUFF = 337, /* VSFTPD_LOGINERR_SUFF */ COCKPIT_AUTHFAIL_PREF = 338, /* COCKPIT_AUTHFAIL_PREF */ COCKPIT_AUTHFAIL_SUFF = 339, /* COCKPIT_AUTHFAIL_SUFF */ CLF_REQUEST_PREF = 340, /* CLF_REQUEST_PREF */ CLF_UNAUTHOIRIZED_PREF = 341, /* CLF_UNAUTHOIRIZED_PREF */ CLF_UNAUTHOIRIZED_SUFF = 342, /* CLF_UNAUTHOIRIZED_SUFF */ CLFWEBPROBES_BOTSEARCH_SUFF = 343, /* CLFWEBPROBES_BOTSEARCH_SUFF */ CLF_LOGIN_URL_SUFF = 344, /* CLF_LOGIN_URL_SUFF */ OPENSMTPD_FAILED_CMD_PREF = 345, /* OPENSMTPD_FAILED_CMD_PREF */ OPENSMTPD_AUTHFAIL_SUFF = 346, /* OPENSMTPD_AUTHFAIL_SUFF */ OPENSMTPD_UNSUPPORTED_CMD_SUFF = 347, /* OPENSMTPD_UNSUPPORTED_CMD_SUFF */ COURIER_AUTHFAIL_PREF = 348, /* COURIER_AUTHFAIL_PREF */ OPENVPN_TLS_ERR_SUFF = 349, /* OPENVPN_TLS_ERR_SUFF */ GITEA_ERR_PREF = 350, /* GITEA_ERR_PREF */ GITEA_ERR_SUFF = 351, /* GITEA_ERR_SUFF */ OPENVPN_PS_TERM_PREF = 352, /* OPENVPN_PS_TERM_PREF */ OPENVPN_PS_TERM_SUFF = 353, /* OPENVPN_PS_TERM_SUFF */ MSSQL_AUTHFAIL_PREF = 354 /* MSSQL_AUTHFAIL_PREF */ }; typedef enum yytokentype yytoken_kind_t; #endif /* Token kinds. */ #define YYEMPTY -2 #define YYEOF 0 #define YYerror 256 #define YYUNDEF 257 #define IPv4 258 #define IPv6 259 #define HOSTADDR 260 #define WORD 261 #define INTEGER 262 #define SYSLOG_BANNER_PID 263 #define SOCKLOG_BANNER_PID 264 #define BUSYBOX_SYSLOG_BANNER_PID 265 #define SYSLOG_BANNER 266 #define TIMESTAMP_SYSLOG 267 #define TIMESTAMP_ISO8601 268 #define TIMESTAMP_TAI64 269 #define AT_TIMESTAMP_TAI64 270 #define RFC_5234_BANNER 271 #define METALOG_BANNER 272 #define SOCKLOG_BANNER 273 #define REPETITIONS 274 #define HTTP_REQUEST 275 #define HTTP_VERSION 276 #define HTTP_REDIRECT 277 #define HTTP_AUTHFAIL 278 #define HTTP_CLIERROR 279 #define HTTP_BOTSEARCH_WEBMAIL 280 #define HTTP_BOTSEARCH_PHPMYADMIN 281 #define HTTP_BOTSEARCH_WORDPRESS 282 #define HTTP_BOTSEARCH_JOOMLA 283 #define HTTP_BOTSEARCH 284 #define SSH_INVALUSERPREF 285 #define SSH_NOTALLOWEDPREF 286 #define SSH_NOTALLOWEDSUFF 287 #define SSH_LOGINERR_PREF 288 #define SSH_LOGINERR_PAM 289 #define SSH_VIA 290 #define SSH_MAXAUTH 291 #define SSH_ADDR_SUFF 292 #define SSH_NOIDENTIFSTR 293 #define SSH_BADPROTOCOLIDENTIF 294 #define SSH_BADPROTOCOLIDENTIF_SUFF 295 #define SSH_BADKEX_PREF 296 #define SSH_BADKEX_SUFF 297 #define SSH_DISCONNECT_PREF 298 #define SSH_CONNECTION_CLOSED 299 #define SSH_PREAUTH_SUFF 300 #define SSHGUARD_ATTACK_PREF 301 #define SSHGUARD_ATTACK_SUFF 302 #define SSHGUARD_BLOCK_PREF 303 #define SSHGUARD_BLOCK_SUFF 304 #define BIND_PREF 305 #define BIND_QUERY_DENIED 306 #define DOVECOT_IMAP_LOGINERR_PREF 307 #define DOVECOT_IMAP_LOGINERR_SUFF 308 #define UWIMAP_LOGINERR 309 #define CYRUSIMAP_SASL_LOGINERR_PREF 310 #define CYRUSIMAP_SASL_LOGINERR_SUFF 311 #define CUCIPOP_AUTHFAIL 312 #define EXIM_ESMTP_AUTHFAIL_PREF 313 #define EXIM_ESMTP_AUTHFAIL_SUFF 314 #define EXIM_ESMTP_LOGINFAIL_PREF 315 #define EXIM_ESMTP_LOGINFAIL_SUFF 316 #define SENDMAIL_RELAYDENIED_PREF 317 #define SENDMAIL_RELAYDENIED_SUFF 318 #define SENDMAIL_AUTHFAILURE_PREF 319 #define SENDMAIL_AUTHFAILURE_SUFF 320 #define POSTFIX_NO_AUTH_PREF 321 #define POSTFIX_SASL_LOGINERR_PREF 322 #define POSTFIX_SASL_LOGINERR_SUFF 323 #define POSTFIX_NONSMTP 324 #define POSTFIX_NONSMTP_SUFF 325 #define POSTFIX_GREYLIST 326 #define POSTFIX_GREYLIST_SUFF 327 #define POSTSCREEN_PREF 328 #define POSTSCREEN_SUFF 329 #define FREEBSDFTPD_LOGINERR_PREF 330 #define FREEBSDFTPD_LOGINERR_SUFF 331 #define PROFTPD_LOGINERR_PREF 332 #define PROFTPD_LOGINERR_SUFF 333 #define PUREFTPD_LOGINERR_PREF 334 #define PUREFTPD_LOGINERR_SUFF 335 #define VSFTPD_LOGINERR_PREF 336 #define VSFTPD_LOGINERR_SUFF 337 #define COCKPIT_AUTHFAIL_PREF 338 #define COCKPIT_AUTHFAIL_SUFF 339 #define CLF_REQUEST_PREF 340 #define CLF_UNAUTHOIRIZED_PREF 341 #define CLF_UNAUTHOIRIZED_SUFF 342 #define CLFWEBPROBES_BOTSEARCH_SUFF 343 #define CLF_LOGIN_URL_SUFF 344 #define OPENSMTPD_FAILED_CMD_PREF 345 #define OPENSMTPD_AUTHFAIL_SUFF 346 #define OPENSMTPD_UNSUPPORTED_CMD_SUFF 347 #define COURIER_AUTHFAIL_PREF 348 #define OPENVPN_TLS_ERR_SUFF 349 #define GITEA_ERR_PREF 350 #define GITEA_ERR_SUFF 351 #define OPENVPN_PS_TERM_PREF 352 #define OPENVPN_PS_TERM_SUFF 353 #define MSSQL_AUTHFAIL_PREF 354 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED union YYSTYPE { #line 43 "attack_parser.y" char *str; int num; #line 364 "attack_parser.c" }; typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif extern YYSTYPE yylval; int yyparse (attack_t *attack); #endif /* !YY_YY_ATTACK_PARSER_H_INCLUDED */ /* Symbol kind. */ enum yysymbol_kind_t { YYSYMBOL_YYEMPTY = -2, YYSYMBOL_YYEOF = 0, /* "end of file" */ YYSYMBOL_YYerror = 1, /* error */ YYSYMBOL_YYUNDEF = 2, /* "invalid token" */ YYSYMBOL_IPv4 = 3, /* IPv4 */ YYSYMBOL_IPv6 = 4, /* IPv6 */ YYSYMBOL_HOSTADDR = 5, /* HOSTADDR */ YYSYMBOL_WORD = 6, /* WORD */ YYSYMBOL_INTEGER = 7, /* INTEGER */ YYSYMBOL_SYSLOG_BANNER_PID = 8, /* SYSLOG_BANNER_PID */ YYSYMBOL_SOCKLOG_BANNER_PID = 9, /* SOCKLOG_BANNER_PID */ YYSYMBOL_BUSYBOX_SYSLOG_BANNER_PID = 10, /* BUSYBOX_SYSLOG_BANNER_PID */ YYSYMBOL_SYSLOG_BANNER = 11, /* SYSLOG_BANNER */ YYSYMBOL_TIMESTAMP_SYSLOG = 12, /* TIMESTAMP_SYSLOG */ YYSYMBOL_TIMESTAMP_ISO8601 = 13, /* TIMESTAMP_ISO8601 */ YYSYMBOL_TIMESTAMP_TAI64 = 14, /* TIMESTAMP_TAI64 */ YYSYMBOL_AT_TIMESTAMP_TAI64 = 15, /* AT_TIMESTAMP_TAI64 */ YYSYMBOL_RFC_5234_BANNER = 16, /* RFC_5234_BANNER */ YYSYMBOL_METALOG_BANNER = 17, /* METALOG_BANNER */ YYSYMBOL_SOCKLOG_BANNER = 18, /* SOCKLOG_BANNER */ YYSYMBOL_REPETITIONS = 19, /* REPETITIONS */ YYSYMBOL_HTTP_REQUEST = 20, /* HTTP_REQUEST */ YYSYMBOL_HTTP_VERSION = 21, /* HTTP_VERSION */ YYSYMBOL_HTTP_REDIRECT = 22, /* HTTP_REDIRECT */ YYSYMBOL_HTTP_AUTHFAIL = 23, /* HTTP_AUTHFAIL */ YYSYMBOL_HTTP_CLIERROR = 24, /* HTTP_CLIERROR */ YYSYMBOL_HTTP_BOTSEARCH_WEBMAIL = 25, /* HTTP_BOTSEARCH_WEBMAIL */ YYSYMBOL_HTTP_BOTSEARCH_PHPMYADMIN = 26, /* HTTP_BOTSEARCH_PHPMYADMIN */ YYSYMBOL_HTTP_BOTSEARCH_WORDPRESS = 27, /* HTTP_BOTSEARCH_WORDPRESS */ YYSYMBOL_HTTP_BOTSEARCH_JOOMLA = 28, /* HTTP_BOTSEARCH_JOOMLA */ YYSYMBOL_HTTP_BOTSEARCH = 29, /* HTTP_BOTSEARCH */ YYSYMBOL_SSH_INVALUSERPREF = 30, /* SSH_INVALUSERPREF */ YYSYMBOL_SSH_NOTALLOWEDPREF = 31, /* SSH_NOTALLOWEDPREF */ YYSYMBOL_SSH_NOTALLOWEDSUFF = 32, /* SSH_NOTALLOWEDSUFF */ YYSYMBOL_SSH_LOGINERR_PREF = 33, /* SSH_LOGINERR_PREF */ YYSYMBOL_SSH_LOGINERR_PAM = 34, /* SSH_LOGINERR_PAM */ YYSYMBOL_SSH_VIA = 35, /* SSH_VIA */ YYSYMBOL_SSH_MAXAUTH = 36, /* SSH_MAXAUTH */ YYSYMBOL_SSH_ADDR_SUFF = 37, /* SSH_ADDR_SUFF */ YYSYMBOL_SSH_NOIDENTIFSTR = 38, /* SSH_NOIDENTIFSTR */ YYSYMBOL_SSH_BADPROTOCOLIDENTIF = 39, /* SSH_BADPROTOCOLIDENTIF */ YYSYMBOL_SSH_BADPROTOCOLIDENTIF_SUFF = 40, /* SSH_BADPROTOCOLIDENTIF_SUFF */ YYSYMBOL_SSH_BADKEX_PREF = 41, /* SSH_BADKEX_PREF */ YYSYMBOL_SSH_BADKEX_SUFF = 42, /* SSH_BADKEX_SUFF */ YYSYMBOL_SSH_DISCONNECT_PREF = 43, /* SSH_DISCONNECT_PREF */ YYSYMBOL_SSH_CONNECTION_CLOSED = 44, /* SSH_CONNECTION_CLOSED */ YYSYMBOL_SSH_PREAUTH_SUFF = 45, /* SSH_PREAUTH_SUFF */ YYSYMBOL_SSHGUARD_ATTACK_PREF = 46, /* SSHGUARD_ATTACK_PREF */ YYSYMBOL_SSHGUARD_ATTACK_SUFF = 47, /* SSHGUARD_ATTACK_SUFF */ YYSYMBOL_SSHGUARD_BLOCK_PREF = 48, /* SSHGUARD_BLOCK_PREF */ YYSYMBOL_SSHGUARD_BLOCK_SUFF = 49, /* SSHGUARD_BLOCK_SUFF */ YYSYMBOL_BIND_PREF = 50, /* BIND_PREF */ YYSYMBOL_BIND_QUERY_DENIED = 51, /* BIND_QUERY_DENIED */ YYSYMBOL_DOVECOT_IMAP_LOGINERR_PREF = 52, /* DOVECOT_IMAP_LOGINERR_PREF */ YYSYMBOL_DOVECOT_IMAP_LOGINERR_SUFF = 53, /* DOVECOT_IMAP_LOGINERR_SUFF */ YYSYMBOL_UWIMAP_LOGINERR = 54, /* UWIMAP_LOGINERR */ YYSYMBOL_CYRUSIMAP_SASL_LOGINERR_PREF = 55, /* CYRUSIMAP_SASL_LOGINERR_PREF */ YYSYMBOL_CYRUSIMAP_SASL_LOGINERR_SUFF = 56, /* CYRUSIMAP_SASL_LOGINERR_SUFF */ YYSYMBOL_CUCIPOP_AUTHFAIL = 57, /* CUCIPOP_AUTHFAIL */ YYSYMBOL_EXIM_ESMTP_AUTHFAIL_PREF = 58, /* EXIM_ESMTP_AUTHFAIL_PREF */ YYSYMBOL_EXIM_ESMTP_AUTHFAIL_SUFF = 59, /* EXIM_ESMTP_AUTHFAIL_SUFF */ YYSYMBOL_EXIM_ESMTP_LOGINFAIL_PREF = 60, /* EXIM_ESMTP_LOGINFAIL_PREF */ YYSYMBOL_EXIM_ESMTP_LOGINFAIL_SUFF = 61, /* EXIM_ESMTP_LOGINFAIL_SUFF */ YYSYMBOL_SENDMAIL_RELAYDENIED_PREF = 62, /* SENDMAIL_RELAYDENIED_PREF */ YYSYMBOL_SENDMAIL_RELAYDENIED_SUFF = 63, /* SENDMAIL_RELAYDENIED_SUFF */ YYSYMBOL_SENDMAIL_AUTHFAILURE_PREF = 64, /* SENDMAIL_AUTHFAILURE_PREF */ YYSYMBOL_SENDMAIL_AUTHFAILURE_SUFF = 65, /* SENDMAIL_AUTHFAILURE_SUFF */ YYSYMBOL_POSTFIX_NO_AUTH_PREF = 66, /* POSTFIX_NO_AUTH_PREF */ YYSYMBOL_POSTFIX_SASL_LOGINERR_PREF = 67, /* POSTFIX_SASL_LOGINERR_PREF */ YYSYMBOL_POSTFIX_SASL_LOGINERR_SUFF = 68, /* POSTFIX_SASL_LOGINERR_SUFF */ YYSYMBOL_POSTFIX_NONSMTP = 69, /* POSTFIX_NONSMTP */ YYSYMBOL_POSTFIX_NONSMTP_SUFF = 70, /* POSTFIX_NONSMTP_SUFF */ YYSYMBOL_POSTFIX_GREYLIST = 71, /* POSTFIX_GREYLIST */ YYSYMBOL_POSTFIX_GREYLIST_SUFF = 72, /* POSTFIX_GREYLIST_SUFF */ YYSYMBOL_POSTSCREEN_PREF = 73, /* POSTSCREEN_PREF */ YYSYMBOL_POSTSCREEN_SUFF = 74, /* POSTSCREEN_SUFF */ YYSYMBOL_FREEBSDFTPD_LOGINERR_PREF = 75, /* FREEBSDFTPD_LOGINERR_PREF */ YYSYMBOL_FREEBSDFTPD_LOGINERR_SUFF = 76, /* FREEBSDFTPD_LOGINERR_SUFF */ YYSYMBOL_PROFTPD_LOGINERR_PREF = 77, /* PROFTPD_LOGINERR_PREF */ YYSYMBOL_PROFTPD_LOGINERR_SUFF = 78, /* PROFTPD_LOGINERR_SUFF */ YYSYMBOL_PUREFTPD_LOGINERR_PREF = 79, /* PUREFTPD_LOGINERR_PREF */ YYSYMBOL_PUREFTPD_LOGINERR_SUFF = 80, /* PUREFTPD_LOGINERR_SUFF */ YYSYMBOL_VSFTPD_LOGINERR_PREF = 81, /* VSFTPD_LOGINERR_PREF */ YYSYMBOL_VSFTPD_LOGINERR_SUFF = 82, /* VSFTPD_LOGINERR_SUFF */ YYSYMBOL_COCKPIT_AUTHFAIL_PREF = 83, /* COCKPIT_AUTHFAIL_PREF */ YYSYMBOL_COCKPIT_AUTHFAIL_SUFF = 84, /* COCKPIT_AUTHFAIL_SUFF */ YYSYMBOL_CLF_REQUEST_PREF = 85, /* CLF_REQUEST_PREF */ YYSYMBOL_CLF_UNAUTHOIRIZED_PREF = 86, /* CLF_UNAUTHOIRIZED_PREF */ YYSYMBOL_CLF_UNAUTHOIRIZED_SUFF = 87, /* CLF_UNAUTHOIRIZED_SUFF */ YYSYMBOL_CLFWEBPROBES_BOTSEARCH_SUFF = 88, /* CLFWEBPROBES_BOTSEARCH_SUFF */ YYSYMBOL_CLF_LOGIN_URL_SUFF = 89, /* CLF_LOGIN_URL_SUFF */ YYSYMBOL_OPENSMTPD_FAILED_CMD_PREF = 90, /* OPENSMTPD_FAILED_CMD_PREF */ YYSYMBOL_OPENSMTPD_AUTHFAIL_SUFF = 91, /* OPENSMTPD_AUTHFAIL_SUFF */ YYSYMBOL_OPENSMTPD_UNSUPPORTED_CMD_SUFF = 92, /* OPENSMTPD_UNSUPPORTED_CMD_SUFF */ YYSYMBOL_COURIER_AUTHFAIL_PREF = 93, /* COURIER_AUTHFAIL_PREF */ YYSYMBOL_OPENVPN_TLS_ERR_SUFF = 94, /* OPENVPN_TLS_ERR_SUFF */ YYSYMBOL_GITEA_ERR_PREF = 95, /* GITEA_ERR_PREF */ YYSYMBOL_GITEA_ERR_SUFF = 96, /* GITEA_ERR_SUFF */ YYSYMBOL_OPENVPN_PS_TERM_PREF = 97, /* OPENVPN_PS_TERM_PREF */ YYSYMBOL_OPENVPN_PS_TERM_SUFF = 98, /* OPENVPN_PS_TERM_SUFF */ YYSYMBOL_MSSQL_AUTHFAIL_PREF = 99, /* MSSQL_AUTHFAIL_PREF */ YYSYMBOL_100_ = 100, /* '%' */ YYSYMBOL_101_ = 101, /* '[' */ YYSYMBOL_102_ = 102, /* ']' */ YYSYMBOL_YYACCEPT = 103, /* $accept */ YYSYMBOL_text = 104, /* text */ YYSYMBOL_log_prefix = 105, /* log_prefix */ YYSYMBOL_syslogent = 106, /* syslogent */ YYSYMBOL_multilogent = 107, /* multilogent */ YYSYMBOL_metalogent = 108, /* metalogent */ YYSYMBOL_socklogent = 109, /* socklogent */ YYSYMBOL_busyboxent = 110, /* busyboxent */ YYSYMBOL_repetition_suffix = 111, /* repetition_suffix */ YYSYMBOL_msg_single = 112, /* msg_single */ YYSYMBOL_addr = 113, /* addr */ YYSYMBOL_sshmsg = 114, /* sshmsg */ YYSYMBOL_ssh_illegaluser = 115, /* ssh_illegaluser */ YYSYMBOL_ssh_authfail = 116, /* ssh_authfail */ YYSYMBOL_ssh_noidentifstring = 117, /* ssh_noidentifstring */ YYSYMBOL_ssh_badprotocol = 118, /* ssh_badprotocol */ YYSYMBOL_ssh_badkex = 119, /* ssh_badkex */ YYSYMBOL_sshguardmsg = 120, /* sshguardmsg */ YYSYMBOL_bindmsg = 121, /* bindmsg */ YYSYMBOL_dovecotmsg = 122, /* dovecotmsg */ YYSYMBOL_uwimapmsg = 123, /* uwimapmsg */ YYSYMBOL_cyrusimapmsg = 124, /* cyrusimapmsg */ YYSYMBOL_cucipopmsg = 125, /* cucipopmsg */ YYSYMBOL_eximmsg = 126, /* eximmsg */ YYSYMBOL_sendmailmsg = 127, /* sendmailmsg */ YYSYMBOL_postfixmsg = 128, /* postfixmsg */ YYSYMBOL_freebsdftpdmsg = 129, /* freebsdftpdmsg */ YYSYMBOL_proftpdmsg = 130, /* proftpdmsg */ YYSYMBOL_pureftpdmsg = 131, /* pureftpdmsg */ YYSYMBOL_vsftpdmsg = 132, /* vsftpdmsg */ YYSYMBOL_cockpitmsg = 133, /* cockpitmsg */ YYSYMBOL_clfunauhtdmsg = 134, /* clfunauhtdmsg */ YYSYMBOL_clfwebprobesmsg = 135, /* clfwebprobesmsg */ YYSYMBOL_clfcmsmsg = 136, /* clfcmsmsg */ YYSYMBOL_opensmtpdmsg = 137, /* opensmtpdmsg */ YYSYMBOL_couriermsg = 138, /* couriermsg */ YYSYMBOL_openvpnmsg = 139, /* openvpnmsg */ YYSYMBOL_giteamsg = 140, /* giteamsg */ YYSYMBOL_sqlservrmsg = 141, /* sqlservrmsg */ YYSYMBOL_openvpnpsmsg = 142 /* openvpnpsmsg */ }; typedef enum yysymbol_kind_t yysymbol_kind_t; #ifdef short # undef short #endif /* On compilers that do not define __PTRDIFF_MAX__ etc., make sure and (if available) are included so that the code can choose integer types of a good width. */ #ifndef __PTRDIFF_MAX__ # include /* INFRINGES ON USER NAME SPACE */ # if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__ # include /* INFRINGES ON USER NAME SPACE */ # define YY_STDINT_H # endif #endif /* Narrow types that promote to a signed type and that can represent a signed or unsigned integer of at least N bits. In tables they can save space and decrease cache pressure. Promoting to a signed type helps avoid bugs in integer arithmetic. */ #ifdef __INT_LEAST8_MAX__ typedef __INT_LEAST8_TYPE__ yytype_int8; #elif defined YY_STDINT_H typedef int_least8_t yytype_int8; #else typedef signed char yytype_int8; #endif #ifdef __INT_LEAST16_MAX__ typedef __INT_LEAST16_TYPE__ yytype_int16; #elif defined YY_STDINT_H typedef int_least16_t yytype_int16; #else typedef short yytype_int16; #endif /* Work around bug in HP-UX 11.23, which defines these macros incorrectly for preprocessor constants. This workaround can likely be removed in 2023, as HPE has promised support for HP-UX 11.23 (aka HP-UX 11i v2) only through the end of 2022; see Table 2 of . */ #ifdef __hpux # undef UINT_LEAST8_MAX # undef UINT_LEAST16_MAX # define UINT_LEAST8_MAX 255 # define UINT_LEAST16_MAX 65535 #endif #if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__ typedef __UINT_LEAST8_TYPE__ yytype_uint8; #elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \ && UINT_LEAST8_MAX <= INT_MAX) typedef uint_least8_t yytype_uint8; #elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX typedef unsigned char yytype_uint8; #else typedef short yytype_uint8; #endif #if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__ typedef __UINT_LEAST16_TYPE__ yytype_uint16; #elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \ && UINT_LEAST16_MAX <= INT_MAX) typedef uint_least16_t yytype_uint16; #elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX typedef unsigned short yytype_uint16; #else typedef int yytype_uint16; #endif #ifndef YYPTRDIFF_T # if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__ # define YYPTRDIFF_T __PTRDIFF_TYPE__ # define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__ # elif defined PTRDIFF_MAX # ifndef ptrdiff_t # include /* INFRINGES ON USER NAME SPACE */ # endif # define YYPTRDIFF_T ptrdiff_t # define YYPTRDIFF_MAXIMUM PTRDIFF_MAX # else # define YYPTRDIFF_T long # define YYPTRDIFF_MAXIMUM LONG_MAX # endif #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__ # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned # endif #endif #define YYSIZE_MAXIMUM \ YY_CAST (YYPTRDIFF_T, \ (YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \ ? YYPTRDIFF_MAXIMUM \ : YY_CAST (YYSIZE_T, -1))) #define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X)) /* Stored state numbers (used for stacks). */ typedef yytype_uint8 yy_state_t; /* State numbers in computations. */ typedef int yy_state_fast_t; #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(Msgid) dgettext ("bison-runtime", Msgid) # endif # endif # ifndef YY_ # define YY_(Msgid) Msgid # endif #endif #ifndef YY_ATTRIBUTE_PURE # if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__) # define YY_ATTRIBUTE_PURE __attribute__ ((__pure__)) # else # define YY_ATTRIBUTE_PURE # endif #endif #ifndef YY_ATTRIBUTE_UNUSED # if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__) # define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__)) # else # define YY_ATTRIBUTE_UNUSED # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YY_USE(E) ((void) (E)) #else # define YY_USE(E) /* empty */ #endif /* Suppress an incorrect diagnostic about yylval being uninitialized. */ #if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__ # if __GNUC__ * 100 + __GNUC_MINOR__ < 407 # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") # else # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") # endif # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ _Pragma ("GCC diagnostic pop") #else # define YY_INITIAL_VALUE(Value) Value #endif #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN # define YY_IGNORE_MAYBE_UNINITIALIZED_END #endif #ifndef YY_INITIAL_VALUE # define YY_INITIAL_VALUE(Value) /* Nothing. */ #endif #if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__ # define YY_IGNORE_USELESS_CAST_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"") # define YY_IGNORE_USELESS_CAST_END \ _Pragma ("GCC diagnostic pop") #endif #ifndef YY_IGNORE_USELESS_CAST_BEGIN # define YY_IGNORE_USELESS_CAST_BEGIN # define YY_IGNORE_USELESS_CAST_END #endif #define YY_ASSERT(E) ((void) (0 && (E))) #if !defined yyoverflow /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS # include /* INFRINGES ON USER NAME SPACE */ /* Use EXIT_SUCCESS as a witness for stdlib.h. */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's 'empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* !defined yyoverflow */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yy_state_t yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYPTRDIFF_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / YYSIZEOF (*yyptr); \ } \ while (0) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from SRC to DST. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(Dst, Src, Count) \ __builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src))) # else # define YYCOPY(Dst, Src, Count) \ do \ { \ YYPTRDIFF_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (Dst)[yyi] = (Src)[yyi]; \ } \ while (0) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 129 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 266 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 103 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 40 /* YYNRULES -- Number of rules. */ #define YYNRULES 103 /* YYNSTATES -- Number of states. */ #define YYNSTATES 186 /* YYMAXUTOK -- Last valid token kind. */ #define YYMAXUTOK 354 /* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM as returned by yylex, with out-of-bounds checking. */ #define YYTRANSLATE(YYX) \ (0 <= (YYX) && (YYX) <= YYMAXUTOK \ ? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \ : YYSYMBOL_YYUNDEF) /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM as returned by yylex. */ static const yytype_int8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 100, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 101, 2, 102, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99 }; #if YYDEBUG /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ static const yytype_int16 yyrline[] = { 0, 126, 126, 127, 131, 132, 133, 134, 135, 136, 141, 142, 143, 144, 149, 153, 158, 159, 164, 167, 169, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 201, 205, 209, 213, 223, 225, 226, 227, 228, 233, 234, 236, 240, 241, 242, 243, 247, 248, 249, 250, 254, 258, 263, 264, 268, 273, 278, 282, 287, 292, 293, 297, 298, 302, 303, 304, 305, 306, 311, 316, 321, 326, 331, 332, 337, 342, 347, 352, 353, 358, 363, 364, 369, 370, 371, 372, 377, 382, 383 }; #endif /** Accessing symbol of state STATE. */ #define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State]) #if YYDEBUG || 0 /* The user-facing name of the symbol whose (internal) number is YYSYMBOL. No bounds checking. */ static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED; /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "\"end of file\"", "error", "\"invalid token\"", "IPv4", "IPv6", "HOSTADDR", "WORD", "INTEGER", "SYSLOG_BANNER_PID", "SOCKLOG_BANNER_PID", "BUSYBOX_SYSLOG_BANNER_PID", "SYSLOG_BANNER", "TIMESTAMP_SYSLOG", "TIMESTAMP_ISO8601", "TIMESTAMP_TAI64", "AT_TIMESTAMP_TAI64", "RFC_5234_BANNER", "METALOG_BANNER", "SOCKLOG_BANNER", "REPETITIONS", "HTTP_REQUEST", "HTTP_VERSION", "HTTP_REDIRECT", "HTTP_AUTHFAIL", "HTTP_CLIERROR", "HTTP_BOTSEARCH_WEBMAIL", "HTTP_BOTSEARCH_PHPMYADMIN", "HTTP_BOTSEARCH_WORDPRESS", "HTTP_BOTSEARCH_JOOMLA", "HTTP_BOTSEARCH", "SSH_INVALUSERPREF", "SSH_NOTALLOWEDPREF", "SSH_NOTALLOWEDSUFF", "SSH_LOGINERR_PREF", "SSH_LOGINERR_PAM", "SSH_VIA", "SSH_MAXAUTH", "SSH_ADDR_SUFF", "SSH_NOIDENTIFSTR", "SSH_BADPROTOCOLIDENTIF", "SSH_BADPROTOCOLIDENTIF_SUFF", "SSH_BADKEX_PREF", "SSH_BADKEX_SUFF", "SSH_DISCONNECT_PREF", "SSH_CONNECTION_CLOSED", "SSH_PREAUTH_SUFF", "SSHGUARD_ATTACK_PREF", "SSHGUARD_ATTACK_SUFF", "SSHGUARD_BLOCK_PREF", "SSHGUARD_BLOCK_SUFF", "BIND_PREF", "BIND_QUERY_DENIED", "DOVECOT_IMAP_LOGINERR_PREF", "DOVECOT_IMAP_LOGINERR_SUFF", "UWIMAP_LOGINERR", "CYRUSIMAP_SASL_LOGINERR_PREF", "CYRUSIMAP_SASL_LOGINERR_SUFF", "CUCIPOP_AUTHFAIL", "EXIM_ESMTP_AUTHFAIL_PREF", "EXIM_ESMTP_AUTHFAIL_SUFF", "EXIM_ESMTP_LOGINFAIL_PREF", "EXIM_ESMTP_LOGINFAIL_SUFF", "SENDMAIL_RELAYDENIED_PREF", "SENDMAIL_RELAYDENIED_SUFF", "SENDMAIL_AUTHFAILURE_PREF", "SENDMAIL_AUTHFAILURE_SUFF", "POSTFIX_NO_AUTH_PREF", "POSTFIX_SASL_LOGINERR_PREF", "POSTFIX_SASL_LOGINERR_SUFF", "POSTFIX_NONSMTP", "POSTFIX_NONSMTP_SUFF", "POSTFIX_GREYLIST", "POSTFIX_GREYLIST_SUFF", "POSTSCREEN_PREF", "POSTSCREEN_SUFF", "FREEBSDFTPD_LOGINERR_PREF", "FREEBSDFTPD_LOGINERR_SUFF", "PROFTPD_LOGINERR_PREF", "PROFTPD_LOGINERR_SUFF", "PUREFTPD_LOGINERR_PREF", "PUREFTPD_LOGINERR_SUFF", "VSFTPD_LOGINERR_PREF", "VSFTPD_LOGINERR_SUFF", "COCKPIT_AUTHFAIL_PREF", "COCKPIT_AUTHFAIL_SUFF", "CLF_REQUEST_PREF", "CLF_UNAUTHOIRIZED_PREF", "CLF_UNAUTHOIRIZED_SUFF", "CLFWEBPROBES_BOTSEARCH_SUFF", "CLF_LOGIN_URL_SUFF", "OPENSMTPD_FAILED_CMD_PREF", "OPENSMTPD_AUTHFAIL_SUFF", "OPENSMTPD_UNSUPPORTED_CMD_SUFF", "COURIER_AUTHFAIL_PREF", "OPENVPN_TLS_ERR_SUFF", "GITEA_ERR_PREF", "GITEA_ERR_SUFF", "OPENVPN_PS_TERM_PREF", "OPENVPN_PS_TERM_SUFF", "MSSQL_AUTHFAIL_PREF", "'%'", "'['", "']'", "$accept", "text", "log_prefix", "syslogent", "multilogent", "metalogent", "socklogent", "busyboxent", "repetition_suffix", "msg_single", "addr", "sshmsg", "ssh_illegaluser", "ssh_authfail", "ssh_noidentifstring", "ssh_badprotocol", "ssh_badkex", "sshguardmsg", "bindmsg", "dovecotmsg", "uwimapmsg", "cyrusimapmsg", "cucipopmsg", "eximmsg", "sendmailmsg", "postfixmsg", "freebsdftpdmsg", "proftpdmsg", "pureftpdmsg", "vsftpdmsg", "cockpitmsg", "clfunauhtdmsg", "clfwebprobesmsg", "clfcmsmsg", "opensmtpdmsg", "couriermsg", "openvpnmsg", "giteamsg", "sqlservrmsg", "openvpnpsmsg", YY_NULLPTR }; static const char * yysymbol_name (yysymbol_kind_t yysymbol) { return yytname[yysymbol]; } #endif #define YYPACT_NINF (-87) #define yypact_value_is_default(Yyn) \ ((Yyn) == YYPACT_NINF) #define YYTABLE_NINF (-1) #define yytable_value_is_error(Yyn) \ 0 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const yytype_int16 yypact[] = { 84, -87, -86, -87, -87, -87, -87, -87, 26, -87, -87, -87, -87, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, -53, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, -47, 34, 39, 42, 42, 55, 165, -87, -87, -87, -87, -87, -87, -45, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, 50, -87, 20, 27, 21, 25, 24, 28, 22, 29, 18, 19, 23, 17, 16, 15, 42, 13, -87, 14, 11, 12, 9, -26, 10, 7, 8, 5, 6, 3, 4, 1, 2, -41, 42, 42, -11, 42, -8, -6, -4, -87, 85, -36, 32, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, 31, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, 35, 41, -87, 43, -87, -87, 30, -87, -87, -87, -87, -87, -87, -87, 33, 49, -87, -87, -87 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. Performed when YYTABLE does not specify something else to do. Zero means the default is an error. */ static const yytype_int8 yydefact[] = { 0, 45, 46, 48, 11, 17, 18, 10, 12, 14, 6, 15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 7, 8, 9, 3, 0, 21, 49, 50, 51, 52, 53, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 43, 0, 13, 54, 0, 0, 58, 0, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 97, 0, 0, 0, 0, 1, 19, 0, 0, 95, 47, 55, 56, 57, 59, 60, 62, 65, 66, 63, 64, 67, 68, 69, 70, 0, 72, 74, 75, 76, 77, 79, 78, 81, 80, 82, 83, 84, 85, 86, 87, 92, 93, 0, 0, 98, 0, 102, 101, 0, 20, 2, 90, 91, 89, 71, 94, 99, 0, 96, 100, 103 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int8 yypgoto[] = { -87, -87, -87, -87, -87, -87, -87, -87, -87, 52, -13, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87, -87 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_uint8 yydefgoto[] = { 0, 50, 51, 52, 53, 54, 55, 56, 175, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule whose number is the opposite. If YYTABLE_NINF, syntax error. */ static const yytype_uint8 yytable[] = { 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 88, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 89, 124, 126, 127, 128, 1, 2, 3, 131, 132, 1, 2, 3, 1, 2, 3, 104, 133, 165, 166, 176, 177, 122, 129, 134, 135, 137, 136, 138, 139, 141, 143, 144, 140, 146, 147, 148, 150, 145, 142, 152, 151, 154, 153, 155, 157, 156, 159, 158, 161, 160, 163, 162, 169, 164, 1, 2, 3, 171, 149, 4, 5, 6, 7, 172, 8, 173, 9, 10, 11, 12, 130, 174, 0, 0, 0, 0, 167, 168, 0, 170, 0, 13, 14, 0, 15, 16, 178, 17, 0, 18, 19, 183, 20, 0, 21, 22, 184, 23, 0, 24, 179, 25, 123, 26, 180, 27, 28, 125, 29, 30, 181, 31, 182, 32, 185, 33, 0, 34, 35, 0, 36, 0, 37, 0, 38, 0, 39, 0, 40, 0, 41, 0, 42, 0, 43, 1, 2, 3, 0, 0, 0, 44, 0, 0, 45, 0, 46, 0, 47, 0, 48, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 14, 0, 15, 16, 0, 17, 0, 18, 19, 0, 20, 0, 21, 22, 0, 23, 0, 24, 0, 25, 0, 26, 0, 27, 28, 0, 29, 30, 0, 31, 0, 32, 0, 33, 0, 34, 35, 0, 36, 0, 37, 0, 38, 0, 39, 0, 40, 0, 41, 0, 42, 0, 43, 0, 0, 0, 0, 0, 0, 44, 0, 0, 45, 0, 46, 0, 47, 0, 48, 0, 49 }; static const yytype_int8 yycheck[] = { 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 100, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 6, 46, 47, 48, 49, 3, 4, 5, 85, 86, 3, 4, 5, 3, 4, 5, 101, 94, 91, 92, 88, 89, 101, 0, 6, 37, 37, 32, 35, 37, 40, 45, 45, 37, 49, 51, 53, 56, 47, 42, 61, 59, 65, 63, 102, 70, 68, 74, 72, 78, 76, 82, 80, 96, 84, 3, 4, 5, 98, 104, 8, 9, 10, 11, 102, 13, 102, 15, 16, 17, 18, 51, 19, -1, -1, -1, -1, 122, 123, -1, 125, -1, 30, 31, -1, 33, 34, 87, 36, -1, 38, 39, 94, 41, -1, 43, 44, 96, 46, -1, 48, 102, 50, 101, 52, 102, 54, 55, 101, 57, 58, 102, 60, 102, 62, 98, 64, -1, 66, 67, -1, 69, -1, 71, -1, 73, -1, 75, -1, 77, -1, 79, -1, 81, -1, 83, 3, 4, 5, -1, -1, -1, 90, -1, -1, 93, -1, 95, -1, 97, -1, 99, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, 30, 31, -1, 33, 34, -1, 36, -1, 38, 39, -1, 41, -1, 43, 44, -1, 46, -1, 48, -1, 50, -1, 52, -1, 54, 55, -1, 57, 58, -1, 60, -1, 62, -1, 64, -1, 66, 67, -1, 69, -1, 71, -1, 73, -1, 75, -1, 77, -1, 79, -1, 81, -1, 83, -1, -1, -1, -1, -1, -1, 90, -1, -1, 93, -1, 95, -1, 97, -1, 99, -1, 101 }; /* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { 0, 3, 4, 5, 8, 9, 10, 11, 13, 15, 16, 17, 18, 30, 31, 33, 34, 36, 38, 39, 41, 43, 44, 46, 48, 50, 52, 54, 55, 57, 58, 60, 62, 64, 66, 67, 69, 71, 73, 75, 77, 79, 81, 83, 90, 93, 95, 97, 99, 101, 104, 105, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 100, 6, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 101, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 113, 101, 101, 113, 101, 113, 113, 113, 0, 112, 85, 86, 94, 6, 37, 32, 37, 35, 37, 37, 40, 42, 45, 45, 47, 49, 51, 53, 113, 56, 59, 61, 63, 65, 102, 68, 70, 72, 74, 76, 78, 80, 82, 84, 91, 92, 113, 113, 96, 113, 98, 102, 102, 19, 111, 88, 89, 87, 102, 102, 102, 102, 94, 96, 98 }; /* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */ static const yytype_uint8 yyr1[] = { 0, 103, 104, 104, 105, 105, 105, 105, 105, 105, 106, 106, 106, 106, 107, 108, 109, 109, 110, 111, 111, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 113, 113, 113, 113, 114, 114, 114, 114, 114, 115, 115, 115, 116, 116, 116, 116, 117, 117, 117, 117, 118, 119, 120, 120, 121, 122, 123, 124, 125, 126, 126, 127, 127, 128, 128, 128, 128, 128, 129, 130, 131, 132, 133, 133, 134, 135, 136, 137, 137, 138, 139, 139, 140, 140, 140, 140, 141, 142, 142 }; /* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */ static const yytype_int8 yyr2[] = { 0, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 2, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 4, 2, 4, 2, 3, 4, 5, 3, 3, 5 }; enum { YYENOMEM = -2 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab #define YYNOMEM goto yyexhaustedlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (yylen); \ yystate = *yyssp; \ goto yybackup; \ } \ else \ { \ yyerror (attack, YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (0) /* Backward compatibility with an undocumented macro. Use YYerror or YYUNDEF. */ #define YYERRCODE YYUNDEF /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (0) # define YY_SYMBOL_PRINT(Title, Kind, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Kind, Value, attack); \ YYFPRINTF (stderr, "\n"); \ } \ } while (0) /*-----------------------------------. | Print this symbol's value on YYO. | `-----------------------------------*/ static void yy_symbol_value_print (FILE *yyo, yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, attack_t *attack) { FILE *yyoutput = yyo; YY_USE (yyoutput); YY_USE (attack); if (!yyvaluep) return; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YY_USE (yykind); YY_IGNORE_MAYBE_UNINITIALIZED_END } /*---------------------------. | Print this symbol on YYO. | `---------------------------*/ static void yy_symbol_print (FILE *yyo, yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep, attack_t *attack) { YYFPRINTF (yyo, "%s %s (", yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind)); yy_symbol_value_print (yyo, yykind, yyvaluep, attack); YYFPRINTF (yyo, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ static void yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop) { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (0) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ static void yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp, int yyrule, attack_t *attack) { int yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]), &yyvsp[(yyi + 1) - (yynrhs)], attack); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyssp, yyvsp, Rule, attack); \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) ((void) 0) # define YY_SYMBOL_PRINT(Title, Kind, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void yydestruct (const char *yymsg, yysymbol_kind_t yykind, YYSTYPE *yyvaluep, attack_t *attack) { YY_USE (yyvaluep); YY_USE (attack); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp); YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN YY_USE (yykind); YY_IGNORE_MAYBE_UNINITIALIZED_END } /* Lookahead token kind. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ int yyparse (attack_t *attack) { yy_state_fast_t yystate = 0; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus = 0; /* Refer to the stacks through separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* Their size. */ YYPTRDIFF_T yystacksize = YYINITDEPTH; /* The state stack: array, bottom, top. */ yy_state_t yyssa[YYINITDEPTH]; yy_state_t *yyss = yyssa; yy_state_t *yyssp = yyss; /* The semantic value stack: array, bottom, top. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs = yyvsa; YYSTYPE *yyvsp = yyvs; int yyn; /* The return value of yyparse. */ int yyresult; /* Lookahead symbol kind. */ yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; YYDPRINTF ((stderr, "Starting parse\n")); yychar = YYEMPTY; /* Cause a token to be read. */ goto yysetstate; /*------------------------------------------------------------. | yynewstate -- push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; /*--------------------------------------------------------------------. | yysetstate -- set current state (the top of the stack) to yystate. | `--------------------------------------------------------------------*/ yysetstate: YYDPRINTF ((stderr, "Entering state %d\n", yystate)); YY_ASSERT (0 <= yystate && yystate < YYNSTATES); YY_IGNORE_USELESS_CAST_BEGIN *yyssp = YY_CAST (yy_state_t, yystate); YY_IGNORE_USELESS_CAST_END YY_STACK_PRINT (yyss, yyssp); if (yyss + yystacksize - 1 <= yyssp) #if !defined yyoverflow && !defined YYSTACK_RELOCATE YYNOMEM; #else { /* Get the current used size of the three stacks, in elements. */ YYPTRDIFF_T yysize = yyssp - yyss + 1; # if defined yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ yy_state_t *yyss1 = yyss; YYSTYPE *yyvs1 = yyvs; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * YYSIZEOF (*yyssp), &yyvs1, yysize * YYSIZEOF (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } # else /* defined YYSTACK_RELOCATE */ /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) YYNOMEM; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yy_state_t *yyss1 = yyss; union yyalloc *yyptr = YY_CAST (union yyalloc *, YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize)))); if (! yyptr) YYNOMEM; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YY_IGNORE_USELESS_CAST_BEGIN YYDPRINTF ((stderr, "Stack size increased to %ld\n", YY_CAST (long, yystacksize))); YY_IGNORE_USELESS_CAST_END if (yyss + yystacksize - 1 <= yyssp) YYABORT; } #endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */ if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either empty, or end-of-input, or a valid lookahead. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token\n")); yychar = yylex (); } if (yychar <= YYEOF) { yychar = YYEOF; yytoken = YYSYMBOL_YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else if (yychar == YYerror) { /* The scanner already issued an error message, process directly to error recovery. But do not keep the error token as lookahead, it is too special and may lead us to an endless loop in error recovery. */ yychar = YYUNDEF; yytoken = YYSYMBOL_YYerror; goto yyerrlab1; } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); yystate = yyn; YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END /* Discard the shifted token. */ yychar = YYEMPTY; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: '$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 21: /* msg_single: sshmsg */ #line 173 "attack_parser.y" { attack->service = SERVICES_SSH; } #line 1668 "attack_parser.c" break; case 22: /* msg_single: sshguardmsg */ #line 174 "attack_parser.y" { attack->service = SERVICES_SSHGUARD; } #line 1674 "attack_parser.c" break; case 23: /* msg_single: bindmsg */ #line 175 "attack_parser.y" { attack->service = SERVICES_BIND; } #line 1680 "attack_parser.c" break; case 24: /* msg_single: dovecotmsg */ #line 176 "attack_parser.y" { attack->service = SERVICES_DOVECOT; } #line 1686 "attack_parser.c" break; case 25: /* msg_single: uwimapmsg */ #line 177 "attack_parser.y" { attack->service = SERVICES_UWIMAP; } #line 1692 "attack_parser.c" break; case 26: /* msg_single: cyrusimapmsg */ #line 178 "attack_parser.y" { attack->service = SERVICES_CYRUSIMAP; } #line 1698 "attack_parser.c" break; case 27: /* msg_single: cucipopmsg */ #line 179 "attack_parser.y" { attack->service = SERVICES_CUCIPOP; } #line 1704 "attack_parser.c" break; case 28: /* msg_single: eximmsg */ #line 180 "attack_parser.y" { attack->service = SERVICES_EXIM; } #line 1710 "attack_parser.c" break; case 29: /* msg_single: sendmailmsg */ #line 181 "attack_parser.y" { attack->service = SERVICES_SENDMAIL; } #line 1716 "attack_parser.c" break; case 30: /* msg_single: postfixmsg */ #line 182 "attack_parser.y" { attack->service = SERVICES_POSTFIX; } #line 1722 "attack_parser.c" break; case 31: /* msg_single: freebsdftpdmsg */ #line 183 "attack_parser.y" { attack->service = SERVICES_FREEBSDFTPD; } #line 1728 "attack_parser.c" break; case 32: /* msg_single: proftpdmsg */ #line 184 "attack_parser.y" { attack->service = SERVICES_PROFTPD; } #line 1734 "attack_parser.c" break; case 33: /* msg_single: pureftpdmsg */ #line 185 "attack_parser.y" { attack->service = SERVICES_PUREFTPD; } #line 1740 "attack_parser.c" break; case 34: /* msg_single: vsftpdmsg */ #line 186 "attack_parser.y" { attack->service = SERVICES_VSFTPD; } #line 1746 "attack_parser.c" break; case 35: /* msg_single: cockpitmsg */ #line 187 "attack_parser.y" { attack->service = SERVICES_COCKPIT; } #line 1752 "attack_parser.c" break; case 36: /* msg_single: clfunauhtdmsg */ #line 188 "attack_parser.y" { attack->service = SERVICES_CLF_UNAUTH; } #line 1758 "attack_parser.c" break; case 37: /* msg_single: clfwebprobesmsg */ #line 189 "attack_parser.y" { attack->service = SERVICES_CLF_PROBES; } #line 1764 "attack_parser.c" break; case 38: /* msg_single: clfcmsmsg */ #line 190 "attack_parser.y" { attack->service = SERVICES_CLF_LOGIN_URL; } #line 1770 "attack_parser.c" break; case 39: /* msg_single: opensmtpdmsg */ #line 191 "attack_parser.y" { attack->service = SERVICES_OPENSMTPD; } #line 1776 "attack_parser.c" break; case 40: /* msg_single: couriermsg */ #line 192 "attack_parser.y" { attack->service = SERVICES_COURIER; } #line 1782 "attack_parser.c" break; case 41: /* msg_single: openvpnmsg */ #line 193 "attack_parser.y" { attack->service = SERVICES_OPENVPN; } #line 1788 "attack_parser.c" break; case 42: /* msg_single: giteamsg */ #line 194 "attack_parser.y" { attack->service = SERVICES_GITEA; } #line 1794 "attack_parser.c" break; case 43: /* msg_single: openvpnpsmsg */ #line 195 "attack_parser.y" { attack->service = SERVICES_OPENVPN_PS; } #line 1800 "attack_parser.c" break; case 44: /* msg_single: sqlservrmsg */ #line 196 "attack_parser.y" { attack->service = SERVICES_MSSQL; } #line 1806 "attack_parser.c" break; case 45: /* addr: IPv4 */ #line 201 "attack_parser.y" { attack->address.kind = ADDRKIND_IPv4; strcpy(attack->address.value, (yyvsp[0].str)); } #line 1815 "attack_parser.c" break; case 46: /* addr: IPv6 */ #line 205 "attack_parser.y" { attack->address.kind = ADDRKIND_IPv6; strcpy(attack->address.value, (yyvsp[0].str)); } #line 1824 "attack_parser.c" break; case 47: /* addr: IPv6 '%' WORD */ #line 209 "attack_parser.y" { /* IPv6 address with interface name */ attack->address.kind = ADDRKIND_IPv6; strcpy(attack->address.value, (yyvsp[-2].str)); } #line 1833 "attack_parser.c" break; case 48: /* addr: HOSTADDR */ #line 213 "attack_parser.y" { if (!attack_from_hostname(attack, (yyvsp[0].str))) { YYABORT; } } #line 1843 "attack_parser.c" break; case 64: /* ssh_noidentifstring: SSH_CONNECTION_CLOSED addr SSH_PREAUTH_SUFF */ #line 250 "attack_parser.y" { attack->dangerousness = 2; } #line 1849 "attack_parser.c" break; #line 1853 "attack_parser.c" default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; *++yyvsp = yyval; /* Now 'shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ { const int yylhs = yyr1[yyn] - YYNTOKENS; const int yyi = yypgoto[yylhs] + *yyssp; yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp ? yytable[yyi] : yydefgoto[yylhs]); } goto yynewstate; /*--------------------------------------. | yyerrlab -- here on detecting error. | `--------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; yyerror (attack, YY_("syntax error")); } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval, attack); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (0) YYERROR; ++yynerrs; /* Do not reclaim the symbols of the rule whose action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ /* Pop stack until we find a state that shifts the error token. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYSYMBOL_YYerror; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", YY_ACCESSING_SYMBOL (yystate), yyvsp, attack); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; YY_IGNORE_MAYBE_UNINITIALIZED_END /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturnlab; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturnlab; /*-----------------------------------------------------------. | yyexhaustedlab -- YYNOMEM (memory exhaustion) comes here. | `-----------------------------------------------------------*/ yyexhaustedlab: yyerror (attack, YY_("memory exhausted")); yyresult = 2; goto yyreturnlab; /*----------------------------------------------------------. | yyreturnlab -- parsing is finished, clean up and return. | `----------------------------------------------------------*/ yyreturnlab: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval, attack); } /* Do not reclaim the symbols of the rule whose action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", YY_ACCESSING_SYMBOL (+*yyssp), yyvsp, attack); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif return yyresult; } #line 386 "attack_parser.y" static void yyerror(__attribute__((unused)) attack_t *a, __attribute__((unused)) const char *s) { /* do nothing */ } int parse_line(char *str, attack_t *attack) { /* TODO: reduce danger for SERVICES_CLF_PROBES */ attack->dangerousness = DEFAULT_ATTACKS_DANGEROUSNESS; scanner_init(str); int ret = yyparse(attack); scanner_fin(); return ret; } sshguard-2.4.3/src/parser/test-sshg-parser000755 001751 001751 00000000057 14152213136 021444 0ustar00kevinzkevinz000000 000000 #!/bin/sh ./sshg-parser -t < $srcdir/tests.txt sshguard-2.4.3/src/parser/parser.h000644 001751 001751 00000002303 14152213136 017744 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ #pragma once /* also define global var yydebug = 1 for enabling debugging at runtime */ #define YYDEBUG 1 #ifdef YYDEBUG extern int yydebug; extern int yy_flex_debug; #endif #include "attack.h" /** * Parse a single line of a log for an attack. If an attack is found, return * zero and store the attack in the given pointer. */ int parse_line(char *str, attack_t *attack); sshguard-2.4.3/src/parser/attack.c000644 001751 001751 00000003655 14446632410 017733 0ustar00kevinzkevinz000000 000000 #include #include #include #include #include #include #include #include #include "attack.h" #include "sandbox.h" int attack_from_hostname(attack_t *attack, const char *name) { struct addrinfo addrinfo_hints; struct addrinfo *addrinfo_result; int res; /* look up IPv4 first */ memset(&addrinfo_hints, 0x00, sizeof(addrinfo_hints)); addrinfo_hints.ai_family = AF_INET; res = getaddrinfo(name, NULL, &addrinfo_hints, &addrinfo_result); if (res == 0) { struct sockaddr_in *foo4; /* pick the first (IPv4) result address and return */ attack->address.kind = ADDRKIND_IPv4; foo4 = (struct sockaddr_in *)(addrinfo_result->ai_addr); if (inet_ntop(AF_INET, &foo4->sin_addr, attack->address.value, sizeof(attack->address.value)) == NULL) { freeaddrinfo(addrinfo_result); perror("Unable to resolve hostname to IP4 address"); return false; } } else { /* try IPv6 */ addrinfo_hints.ai_family = AF_INET6; res = getaddrinfo(name, NULL, &addrinfo_hints, &addrinfo_result); if (res == 0) { struct sockaddr_in6 *foo6; /* pick the first (IPv6) result address and return */ attack->address.kind = ADDRKIND_IPv6; foo6 = (struct sockaddr_in6 *)(addrinfo_result->ai_addr); if (inet_ntop(AF_INET6, &foo6->sin6_addr, attack->address.value, sizeof(attack->address.value)) == NULL) { perror("Unable to resolve hostname to IP6 address"); freeaddrinfo(addrinfo_result); return false; } } else { fprintf(stderr, "Could not resolve '%s' to address\n", name); return false; } } freeaddrinfo(addrinfo_result); return true; } sshguard-2.4.3/src/parser/Makefile.in000644 001751 001751 00000106432 14447664672 020402 0ustar00kevinzkevinz000000 000000 # Makefile.in generated by automake 1.16.5 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2021 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : libexec_PROGRAMS = sshg-parser$(EXEEXT) subdir = src/parser ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/common/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(libexecdir)" PROGRAMS = $(libexec_PROGRAMS) am_sshg_parser_OBJECTS = sandbox.$(OBJEXT) attack.$(OBJEXT) \ attack_parser.$(OBJEXT) attack_scanner.$(OBJEXT) \ parser.$(OBJEXT) sshg_parser_OBJECTS = $(am_sshg_parser_OBJECTS) sshg_parser_LDADD = $(LDADD) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/common depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/attack.Po \ ./$(DEPDIR)/attack_parser.Po ./$(DEPDIR)/attack_scanner.Po \ ./$(DEPDIR)/parser.Po ./$(DEPDIR)/sandbox.Po am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = @MAINTAINER_MODE_FALSE@am__skiplex = test -f $@ || LEXCOMPILE = $(LEX) $(AM_LFLAGS) $(LFLAGS) AM_V_LEX = $(am__v_LEX_@AM_V@) am__v_LEX_ = $(am__v_LEX_@AM_DEFAULT_V@) am__v_LEX_0 = @echo " LEX " $@; am__v_LEX_1 = YLWRAP = $(top_srcdir)/ylwrap @MAINTAINER_MODE_FALSE@am__skipyacc = test -f $@ || am__yacc_c2h = sed -e s/cc$$/hh/ -e s/cpp$$/hpp/ -e s/cxx$$/hxx/ \ -e s/c++$$/h++/ -e s/c$$/h/ YACCCOMPILE = $(YACC) $(AM_YFLAGS) $(YFLAGS) AM_V_YACC = $(am__v_YACC_@AM_V@) am__v_YACC_ = $(am__v_YACC_@AM_DEFAULT_V@) am__v_YACC_0 = @echo " YACC " $@; am__v_YACC_1 = SOURCES = $(sshg_parser_SOURCES) DIST_SOURCES = $(sshg_parser_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)' RECHECK_LOGS = $(TEST_LOGS) AM_RECURSIVE_TARGETS = check recheck TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ $(top_srcdir)/test-driver $(top_srcdir)/ylwrap attack_parser.c \ attack_parser.h attack_scanner.c DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RST2MAN_PROG = @RST2MAN_PROG@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE AM_LFLAGS = -v AM_YFLAGS = -d BUILT_SOURCES = attack_parser.h EXTRA_DIST = tests.txt $(TESTS) LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \ $(top_srcdir)/tap-driver.sh TESTS = test-sshg-parser sshg_parser_SOURCES = \ ../common/sandbox.c \ attack.c \ attack_parser.y \ attack_scanner.l \ parser.c \ parser.h all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .l .log .o .obj .test .test$(EXEEXT) .trs .y $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/parser/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/parser/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libexecdir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \ } \ ; done uninstall-libexecPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(libexecdir)" && rm -f $$files clean-libexecPROGRAMS: -test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS) attack_parser.h: attack_parser.c @if test ! -f $@; then rm -f attack_parser.c; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) attack_parser.c; else :; fi sshg-parser$(EXEEXT): $(sshg_parser_OBJECTS) $(sshg_parser_DEPENDENCIES) $(EXTRA_sshg_parser_DEPENDENCIES) @rm -f sshg-parser$(EXEEXT) $(AM_V_CCLD)$(LINK) $(sshg_parser_OBJECTS) $(sshg_parser_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attack.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attack_parser.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/attack_scanner.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parser.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sandbox.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` sandbox.o: ../common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sandbox.o -MD -MP -MF $(DEPDIR)/sandbox.Tpo -c -o sandbox.o `test -f '../common/sandbox.c' || echo '$(srcdir)/'`../common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sandbox.Tpo $(DEPDIR)/sandbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/sandbox.c' object='sandbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sandbox.o `test -f '../common/sandbox.c' || echo '$(srcdir)/'`../common/sandbox.c sandbox.obj: ../common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sandbox.obj -MD -MP -MF $(DEPDIR)/sandbox.Tpo -c -o sandbox.obj `if test -f '../common/sandbox.c'; then $(CYGPATH_W) '../common/sandbox.c'; else $(CYGPATH_W) '$(srcdir)/../common/sandbox.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sandbox.Tpo $(DEPDIR)/sandbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='../common/sandbox.c' object='sandbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sandbox.obj `if test -f '../common/sandbox.c'; then $(CYGPATH_W) '../common/sandbox.c'; else $(CYGPATH_W) '$(srcdir)/../common/sandbox.c'; fi` .l.c: $(AM_V_LEX)$(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ -- $(LEXCOMPILE) .y.c: $(AM_V_YACC)$(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h `echo $@ | $(am__yacc_c2h)` y.output $*.output -- $(YACCCOMPILE) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ if test -n "$(PACKAGE_BUGREPORT)"; then \ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ trs_list=`for i in $$bases; do echo $$i.trs; done`; \ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? test-sshg-parser.log: test-sshg-parser @p='test-sshg-parser'; \ b='test-sshg-parser'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(libexecdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-am install-exec: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -rm -f attack_parser.c -rm -f attack_parser.h -rm -f attack_scanner.c -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-generic clean-libexecPROGRAMS mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/attack.Po -rm -f ./$(DEPDIR)/attack_parser.Po -rm -f ./$(DEPDIR)/attack_scanner.Po -rm -f ./$(DEPDIR)/parser.Po -rm -f ./$(DEPDIR)/sandbox.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libexecPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/attack.Po -rm -f ./$(DEPDIR)/attack_parser.Po -rm -f ./$(DEPDIR)/attack_scanner.Po -rm -f ./$(DEPDIR)/parser.Po -rm -f ./$(DEPDIR)/sandbox.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libexecPROGRAMS .MAKE: all check check-am install install-am install-exec \ install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \ check-am clean clean-generic clean-libexecPROGRAMS \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libexecPROGRAMS install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ recheck tags tags-am uninstall uninstall-am \ uninstall-libexecPROGRAMS .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: sshguard-2.4.3/src/parser/parser.c000644 001751 001751 00000007255 14446627276 017776 0ustar00kevinzkevinz000000 000000 /** * @file * Parse and display individual attacks from standard input */ #include #include #include #include #include #include "parser.h" #include "sandbox.h" #define MAX_LEN 1000 unsigned int test_counter = 0; static void print_attack(const attack_t *attack) { printf("%d %s %d %d\n", attack->service, attack->address.value, attack->address.kind, attack->dangerousness); } static void parse_to_buf(char buf[static 1], char dst[static MAX_LEN]) { attack_t attack; bool is_attack = !parse_line(buf, &attack); if (is_attack) { snprintf(dst, MAX_LEN, "%d %s %d %d\n", attack.service, attack.address.value, attack.address.kind, attack.dangerousness); } else { strncpy(dst, "*\n", MAX_LEN); } } static void print_usage() { fprintf(stderr, "usage: sshg-parser [-adht]\n"); } static void test_next_line(char buf[static MAX_LEN]) { static unsigned char state = 0; static char expected[MAX_LEN], result[MAX_LEN]; static bool match; if (buf[0] == '\n' || buf[0] == '#') { // skip blank lines and comments return; } switch (state) { case 0: // line with input strncpy(expected, buf, sizeof(expected)); parse_to_buf(buf, result); state++; break; case 1: // line with expected output match = strcmp(buf, result) == 0; state++; break; case 2: // line with type of test test_counter += 1; if (match) { printf("ok %d", test_counter); } else { printf("not ok %d", test_counter); } switch (buf[0]) { case 'M': // expected match if (match) { putchar('\n'); } else { printf(" # actual: %s", result); } break; case 'X': // expected fail printf(" # TODO\n"); break; default: puts("Bail out! Malformed expected test result"); exit(99); } printf("# %s", expected); state = 0; break; default: abort(); } } int main(int argc, char *argv[]) { bool annotate = false, debug = false, test_mode = false; char buf[MAX_LEN]; int flag; sandbox_init(); while ((flag = getopt(argc, argv, "adht")) != -1) { switch (flag) { case 'a': annotate = true; break; case 'd': debug = true; break; case 'h': print_usage(); return 0; case 't': test_mode = true; break; case '?': print_usage(); return 1; } } yydebug = yy_flex_debug = debug; while (fgets(buf, sizeof(buf), stdin) != NULL) { if (test_mode) { test_next_line(buf); } else { attack_t attack; bool is_attack = !parse_line(buf, &attack); if (annotate) { if (is_attack) { fputs("* ", stdout); } else { fputs(" ", stdout); } fputs(buf, stdout); fflush(stdout); } else { if (is_attack) { print_attack(&attack); fflush(stdout); } } } } if (test_mode) { printf("1..%d\n", test_counter); } } sshguard-2.4.3/src/parser/Makefile.am000644 001751 001751 00000000642 14446632410 020345 0ustar00kevinzkevinz000000 000000 AM_CFLAGS=-I$(top_srcdir)/src/common -DSIMCLIST_NO_DUMPRESTORE AM_LFLAGS = -v AM_YFLAGS = -d libexec_PROGRAMS = sshg-parser BUILT_SOURCES = attack_parser.h EXTRA_DIST = tests.txt $(TESTS) LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \ $(top_srcdir)/tap-driver.sh TESTS = test-sshg-parser sshg_parser_SOURCES = \ ../common/sandbox.c \ attack.c \ attack_parser.y \ attack_scanner.l \ parser.c \ parser.h sshguard-2.4.3/src/parser/attack_scanner.l000644 001751 001751 00000053346 14446624521 021463 0ustar00kevinzkevinz000000 000000 /* * Copyright (c) 2007,2008,2009,2010 Mij * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * SSHGuard. See http://www.sshguard.net */ %{ #include #include #include "attack.h" #include "attack_parser.h" static int getsyslogpid(char *syslogbanner, int length); %} %option debug %option noinput %option nounput %option noyywrap %array /* Start Conditions */ /* for Login services */ %s ssh_notallowed ssh_reversemap ssh_disconnect ssh_badproto ssh_badkex cockpit_authfail /* for SSHGuard */ %s sshguard_attack sshguard_block %s bind /* for Mail services */ %s dovecot_loginerr cyrusimap_loginerr exim_esmtp_autherr exim_esmtp_loginerr sendmail_relaydenied sendmail_authfailure postfix_loginerr postfix_greylist opensmtpd_failedcmd postscreen /* for FTP services */ %s freebsdftpd_loginerr proftpd_loginerr pureftpd_loginerr vsftpd_loginerr /* for HTTP services */ %s clf_request clf_request_withuser clf_unauhtorized clfwebprobes_botsearch /* for git services */ %s gitea_autherr MONTH (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) MONTHNO 0[0-9]|1[0-2] DAYNO [0-9][0-9]? HOUR (0|1)[0-9]|2[0-4] MINPS [0-5][0-9] SECONDFRAC [0-5][0-9]([.,][0-9]+)? WORD [a-zA-Z0-9][-_a-zA-Z0-9]+ NUMBER [1-9][0-9]* FILENAME [a-zA-Z0-9\/.-]+ YEAR (1|2)[0-9]{3} TIMEZONE Z|[-+]{HOUR}(:?{MINPS})? TIMESTAMP_SYSLOG {MONTH}\ +{DAYNO}\ +{HOUR}:{MINPS}:{MINPS} TIMESTAMP_TAI64 [0-9A-Fa-f]{24} SOLARIS_MSGID_TAG "[ID "[0-9]+" "{WORD}"."{WORD}"]" TIMESTAMP_ISO8601 {YEAR}-{MONTHNO}-{DAYNO}(T|" "){HOUR}:?{MINPS}:?{SECONDFRAC}{TIMEZONE}? RFC5234_HEADER "<"{NUMBER}">"{NUMBER} TIMESTAMP_LOCAL {DAYNO}"/"{MONTH}"/"{YEAR}":"{HOUR}":"{MINPS}":"{MINPS}" "{TIMEZONE} TIMESTAMP_YMD_HMS {YEAR}"/"{MONTHNO}"/"{DAYNO}" "{HOUR}":"{MINPS}":"{MINPS} COLOR_CODE \x1b"["[0-9;]+"m" /* Mon Jan 01 21:00:00 2010 */ TIMESTAMP_DM24H_Y (Mon|Tue|Wed|Thu|Fri|Sat|Sun)\ {MONTH}\ {DAYNO}\ [0-9:]{8}\ {YEAR} /* all words but "sshguard" provided that posix regex don't support negation nor intersection: * 1) all words of 2 to 7 characters or 8-* chars * 2) words of 7 chars different to "sshguard" (^s.* | s^s.* | ss^h.* */ PROCESSNAME ([-_a-zA-Z0-9]{2,7})|([-_a-zA-Z0-9]{9,})|([-_a-rt-zA-RT-Z0-9][-_a-zA-Z0-9]{7})|([sS][-_a-rt-zA-RT-Z0-9][-_a-zA-Z0-9]{6})|([sS]{2}[-_a-gi-zA-gI-Z0-9][-_a-zA-Z0-9]{5})|([sS]{2}[hH][-_a-fh-zA-FH-Z0-9][-_a-zA-Z0-9]{4})|([sS]{2}[hH][gG][-_a-tv-zA-TV-Z0-9][-_a-zA-Z0-9]{3})|([sS]{2}[hH][gG][uU][b-zB-Z0-9][-_a-zA-Z0-9]{2})|([sS]{2}[hH][gG][uU][-_aA][-_a-qs-zA-QS-Z0-9][-_a-zA-Z0-9])|([sS]{2}[hH][gG][uU][-_aA][rR][-_a-ce-zA-CE-Z0-9]) /* IPv4 address (used in IPv6 address too, for IPv4 encapsulation) */ IPV4 ((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?|0)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?|0)){3}) /* IPv6 addresses including compressed variants (RFC 2373) */ IPV6 (::|:(:[0-9a-fA-F]{1,4}){1,7}|[0-9a-fA-F]{1,4}:([0-9a-fA-F]{1,4}:(:[0-9a-fA-F]{1,4}){1,5}|(:[0-9a-fA-F]{1,4}){1,6})|([0-9a-fA-F]{1,4}:){3}([0-9a-fA-F]{1,4}:(:[0-9a-fA-F]{1,4}){1,3}|(:[0-9a-fA-F]{1,4}){1,4})|([0-9a-fA-F]{1,4}:){5}([0-9a-fA-F]{1,4}:[0-9a-fA-F]{0,4}:[0-9a-fA-F]{1,4}|(:[0-9a-fA-F]{1,4}){1,2})|([0-9a-fA-F]{1,4}:){1,7}:) /* an IPv4 packed in IPv6 as IPv4-mapped IPv6 address */ IPV4MAPPED6 ((:(:0{1,4}){0,4}|0{1,4}:(:0{1,4}){1,3}|(0{1,4}:){2}(0{1,4}:0{0,4}:0{1,4}|(:0{1,4}){1,2})|(0{1,4}:){1,4}):[fF]{4}:(((2[0-4]|1[0-9]|[1-9])?[0-9]|25[0-5])\.){3}((2[0-4]|1[0-9]|[1-9])?[0-9]|25[0-5])) KEY_ALGORITHM (?i:(RSA|DSA|ECDSA|ED25519)) KEY_FINGERPRINT (?i:(MD5|SHA256)((:[a-f0-9]{2}){16}|:[0-9a-z+\/]{43})) HOSTNAME ([-a-zA-Z0-9]+\.)*[-a-zA-Z0-9]+ HOSTADDR localhost|([-a-zA-Z0-9]+\.)+[a-zA-Z]+|{IPV4}|{IPV6}|{IPV4MAPPED6} FACLEVEL (<[a-zA-Z0-9]+\.[a-zA-Z0-9]+>) HTTP_REQUEST (GET|HEAD|PUT|POST|DELETE) HTTP_VERSION HTTP"/"[0-9]("."[0-9])? HTTP_STATUSCODE [0-9]{3} HTTP_SUCCESS 200 HTTP_REDIRECT 3[0-9]{2} HTTP_AUTHFAIL 401 HTTP_CLIERROR 4[0-9]{2} /* Common Log Format. */ CLF_MISSING "-"|"\"-\"" CLF_USER_ID {WORD}|"\""{WORD}"\"" CLF_USER_NAME {WORD}|"\""{WORD}"\"" CLF_OPT_USER_ID {CLF_MISSING}|{WORD} CLF_OPT_USER_NAME {CLF_MISSING}|{WORD} CLF_TIMESTAMP "["({TIMESTAMP_LOCAL}|{TIMESTAMP_ISO8601})"]" CLF_REQUEST "\""{HTTP_REQUEST}" "{FILENAME}" "{HTTP_VERSION}"\"" /* Common configuration for http botsearch * Adapted from fail2ban botsearch filters & tweaked by alip☮exherbo.org, * Original author: Frantisek Sumsal */ HTTP_BOTSEARCH_WEBMAIL roundcube|(ext)?mail|horde|(v-?)?webmail HTTP_BOTSEARCH_PHPMYADMIN (typo3"/"|xampp"/"|admin"/")?(pma|(php)?[Mm]y[Aa]dmin) HTTP_BOTSEARCH_WORDPRESS wp-(admin|config|login|signup)"."php HTTP_BOTSEARCH_JOOMLA ("administrator/")?"index.php?option=com_" HTTP_BOTSEARCH .*({HTTP_BOTSEARCH_WEBMAIL}|{HTTP_BOTSEARCH_PHPMYADMIN}|{HTTP_BOTSEARCH_WORDPRESS}|{HTTP_BOTSEARCH_JOOMLA}|cgi-bin|mysqladmin)[^,]* WORDPRESS_LOGIN "/wp-login"(\.php)? TYPO3_LOGIN "/typo3/?loginProvider=" CONTAO_LOGIN "/contao/login?_hash=" HTTP_LOGIN_200OK_BAD .*({WORDPRESS_LOGIN}|{TYPO3_LOGIN}|{CONTAO_LOGIN}).* %% /* * syslog banner, eg "Nov 22 09:58:58 freyja sshd[94637]: " * tokenized as: timestamp hostname procname(subname) [pid]: * both the subname and pid parts can be missing * * return SYSLOG_BANNER_PID or SYSLOG_BANNER depending on the presence of [pid] */ /* handle entries with PID and without PID from processes other than sshguard */ ({TIMESTAMP_SYSLOG}|{TIMESTAMP_ISO8601})[ ]+{FACLEVEL}?[ ]*([a-zA-Z0-9]|{WORD}|{HOSTADDR})[ ]+{PROCESSNAME}("/"{PROCESSNAME}){0,2}"["{NUMBER}"]":?" "{SOLARIS_MSGID_TAG}? { /* extract PID */ yylval.num = getsyslogpid(yytext, yyleng); return SYSLOG_BANNER_PID; } ({TIMESTAMP_SYSLOG}|{TIMESTAMP_ISO8601})[ ]+{FACLEVEL}?[ ]*([a-zA-Z0-9]|{WORD}|{HOSTADDR})[ ]+({PROCESSNAME}("/"{PROCESSNAME}){0,2})?":" { return SYSLOG_BANNER; } /* busybox syslog -S */ ({TIMESTAMP_SYSLOG}|{TIMESTAMP_ISO8601})[ ]+({PROCESSNAME}("/"{PROCESSNAME}){0,2}"["{NUMBER}"]")?":" { return SYSLOG_BANNER; } /* RFC 5424 banner */ {RFC5234_HEADER}" "{TIMESTAMP_ISO8601}" "{HOSTNAME}" "{PROCESSNAME}" "{NUMBER}" - - " { return RFC_5234_BANNER; } /* metalog banner */ {TIMESTAMP_SYSLOG}" ["{PROCESSNAME}("/"{PROCESSNAME}){0,2}"] " { return METALOG_BANNER; } /* * socklog banner, eg * "2015-05-27T04:31:28.10040 auth.info: May 27 04:31:28 sshd[30993]: " * * Some strip the redundant timestamp, eg * "2015-05-27T04:31:28.10040 auth.info: sshd[30993]: " */ ({TIMESTAMP_ISO8601}" ")?{WORD}"."{WORD}": "({TIMESTAMP_SYSLOG}" ")?{PROCESSNAME}("/"{PROCESSNAME}){0,2}"["{NUMBER}"]: "{SOLARIS_MSGID_TAG}? { yylval.num = getsyslogpid(yytext, yyleng); return SOCKLOG_BANNER_PID; } ({TIMESTAMP_ISO8601}" ")?{WORD}"."{WORD}": "({TIMESTAMP_SYSLOG}" ")?({PROCESSNAME}("/"{PROCESSNAME}){0,2}"["{NUMBER}"]:")? { return SOCKLOG_BANNER; } /* * Busybox syslog banner, e/g/ * "Jun 20 02:18:39 vps auth.info sshd[13482]: " */ {TIMESTAMP_SYSLOG}" "([a-zA-Z0-9]|{WORD}|{HOSTADDR})" "{WORD}"."{WORD}" "{PROCESSNAME}("/"{PROCESSNAME}){0,2}"["{NUMBER}"]: " { yylval.num = getsyslogpid(yytext, yyleng); return BUSYBOX_SYSLOG_BANNER_PID; } /* SSH: invalid or rejected user (cross platform [generated by openssh]) */ "Disconnecting "[Ii]"nvalid user "[^ ]+" " { return SSH_INVALUSERPREF; } "Failed password for "?[Ii]"nvalid user ".+" from " { return SSH_INVALUSERPREF; } /* match disallowed user (not in AllowUsers/AllowGroups or in DenyUsers/DenyGroups) on Linux Ubuntu/FreeBSD */ /* "User tinydns from 1.2.3.4 not allowed because not listed in AllowUsers" */ "User ".+" from " { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } " not allowed because ".+ { BEGIN(INITIAL); return SSH_NOTALLOWEDSUFF; } /* match disallowed user root (with PermitRootLogin = no) */ /* "ROOT LOGIN REFUSED FROM 1.2.3.4" */ "ROOT LOGIN REFUSED FROM " { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } "error: "?"maximum authentication attempts exceeded for".*"from" { return SSH_MAXAUTH; } "port "{NUMBER}" ssh"?." [preauth]"?(": "{KEY_ALGORITHM}" "{KEY_FINGERPRINT})? { return SSH_ADDR_SUFF; } "port "{NUMBER}": Change of username or service not allowed".*" [preauth]"? { return SSH_ADDR_SUFF; } /* Solaris-own */ "Failed none for from " { BEGIN(ssh_notallowed); return SSH_NOTALLOWEDPREF; } " port ".+ { BEGIN(INITIAL); return SSH_NOTALLOWEDSUFF; } /* get this instead: match invalid login @ Linux Ubuntu */ /* "Failed password for validuser from 1.2.3.4 port 54609 ssh2" */ "Failed "[^ ]+" for "[^ ]+" from " { return SSH_LOGINERR_PREF; } /* wrong password for valid user @ FreeBSD, Debian */ "error: PAM: "(([aA]"uthentication "(error|failure))|"unknown user")" for "("illegal user ")?.+" from " { return SSH_LOGINERR_PAM; } "via ".* { return SSH_VIA; } /* SSH: connections open and closed without auth attempts */ "Did not receive identification string from " { return SSH_NOIDENTIFSTR; } "Disconnected from "(("invalid"|"authenticating")" user "[^ ]+" ")? { BEGIN(ssh_disconnect); return SSH_DISCONNECT_PREF; } "Connection "(closed|reset)" by "(("invalid"|"authenticating")" user "[^ ]+" ")? { BEGIN(ssh_disconnect); return SSH_CONNECTION_CLOSED; } [: ].*"[preauth]" { BEGIN(INITIAL); return SSH_PREAUTH_SUFF; } /* SSH: clients connecting with other application protocols */ "Bad protocol version identification".*" from " { BEGIN(ssh_badproto); return SSH_BADPROTOCOLIDENTIF; } [ \n].* { BEGIN(INITIAL); return SSH_BADPROTOCOLIDENTIF_SUFF; } "fatal: "?"Unable to negotiate with " { BEGIN(ssh_badkex); return SSH_BADKEX_PREF; } (" port ".*)?[: ].*"no matching ".*" found".* { BEGIN(INITIAL); return SSH_BADKEX_SUFF; } /* SSHGuard */ "Attack from \"" { BEGIN(sshguard_attack); return SSHGUARD_ATTACK_PREF; } "\" on service "{NUMBER}" with danger "{NUMBER}"." { BEGIN(INITIAL); return SSHGUARD_ATTACK_SUFF; } "Blocking \"" { BEGIN(sshguard_block); return SSHGUARD_BLOCK_PREF; } "/"{NUMBER}"\" for "{NUMBER}" secs ("{NUMBER}" attacks in "{NUMBER}" secs,".+ { BEGIN(INITIAL); return SSHGUARD_BLOCK_SUFF; } /* BIND */ "client @"{WORD}" " { BEGIN(bind); return BIND_PREF; } "#".*"query".*"denied".* { BEGIN(INITIAL); return BIND_QUERY_DENIED; } /* Cucipop */ "authentication failure "[^0-9]+ { return CUCIPOP_AUTHFAIL; } /* Exim */ "authenticator failed for ".+" [" { BEGIN(exim_esmtp_autherr); return EXIM_ESMTP_AUTHFAIL_PREF; } "]"(:{NUMBER})?(" I=".+)?(" U=".+)?": 535 Incorrect authentication data"(" (set_id=".+")")? { BEGIN(INITIAL); return EXIM_ESMTP_AUTHFAIL_SUFF; } "SMTP protocol error in \"AUTH LOGIN\" H="({HOSTNAME}" ")?"(".*") [" { BEGIN(exim_esmtp_loginerr); return EXIM_ESMTP_LOGINFAIL_PREF; } "] "("AUTH command used when not advertised"|"LOGIN authentication mechanism not supported") { BEGIN(INITIAL); return EXIM_ESMTP_LOGINFAIL_SUFF; } /* Sendmail */ "Relaying denied. IP name lookup failed [" { BEGIN(sendmail_relaydenied); return SENDMAIL_RELAYDENIED_PREF; } "]" { BEGIN(INITIAL); return SENDMAIL_RELAYDENIED_SUFF; } /* Sendmail */ [A-Za-z0-9]+": AUTH failure ("[A-Za-z0-9-]+"): ".+"relay=".*"[" { BEGIN(sendmail_authfailure); return SENDMAIL_AUTHFAILURE_PREF; } "]".* { BEGIN(INITIAL); return SENDMAIL_AUTHFAILURE_SUFF; } /* dovecot */ ("(libdovecot."[0-9\.]+".dylib) ")?(imap|pop3|submission)"-login: ""Info: "?("Aborted login"|Disconnected).*" (auth failed, "{NUMBER}" attempts".*"): ".+" rip=" { BEGIN(dovecot_loginerr); return DOVECOT_IMAP_LOGINERR_PREF; } ", lip=".+ { BEGIN(INITIAL); return DOVECOT_IMAP_LOGINERR_SUFF; } /* UWimap login errors */ "Login failed user="[^ ]+" auth="[^ ]*" host="[^ ]+" " { return UWIMAP_LOGINERR; } /* cyrus-imap login error */ "badlogin: "[^\[]*"[" { BEGIN(cyrusimap_loginerr); return CYRUSIMAP_SASL_LOGINERR_PREF; } "] ".*"SASL".*"failed".?$ { BEGIN(INITIAL); return CYRUSIMAP_SASL_LOGINERR_SUFF; } /* postfix */ "warning: "({WORD}|{HOSTADDR})"[" { BEGIN(postfix_loginerr); return POSTFIX_SASL_LOGINERR_PREF; } "]: SASL "[-A-Z0-9]+" authentication fail".* { BEGIN(INITIAL); return POSTFIX_SASL_LOGINERR_SUFF; } "lost connection after AUTH from ".*"[" { return POSTFIX_NO_AUTH_PREF; } /* non-SMTP on an SMTP port suggests port-scanning activity */ "warning: non-SMTP command from "({WORD}|{HOSTADDR})"[" { BEGIN(postfix_loginerr); return POSTFIX_NONSMTP; } "]:".* { BEGIN(INITIAL); return POSTFIX_NONSMTP_SUFF; } "action=greylist".*"client_address=" { BEGIN(postfix_greylist); return POSTFIX_GREYLIST; } ",".* { BEGIN(INITIAL); return POSTFIX_GREYLIST_SUFF; } "PREGREET".*"[" { BEGIN(postscreen); return POSTSCREEN_PREF; } "DNSBL".*"[" { BEGIN(postscreen); return POSTSCREEN_PREF; } "HANGUP".*"[" { BEGIN(postscreen); return POSTSCREEN_PREF; } "]:".* { BEGIN(INITIAL); return POSTSCREEN_SUFF; } /* FreeBSD's ftpd login errors */ "FTP LOGIN FAILED FROM " { BEGIN(freebsdftpd_loginerr); return FREEBSDFTPD_LOGINERR_PREF; } ", ".+ { BEGIN(INITIAL); return FREEBSDFTPD_LOGINERR_SUFF; } /* ProFTPd */ {HOSTADDR}" ("[^\[]+"[" { BEGIN(proftpd_loginerr); return PROFTPD_LOGINERR_PREF; } "])".*" no such user "("found ")?.+ { BEGIN(INITIAL); return PROFTPD_LOGINERR_SUFF; } /* another log entry from ProFTPd */ {HOSTADDR}" ("[[]+"[" { BEGIN(proftpd_loginerr); return PROFTPD_LOGINERR_PREF; } "]) - USER "{WORD}" (Login failed): ".* { BEGIN(INITIAL); return PROFTPD_LOGINERR_SUFF; } /* Pure-FTPd */ "pure-ftpd: "?"("("?"|{WORD}|{HOSTADDR})"@" { BEGIN(pureftpd_loginerr); return PUREFTPD_LOGINERR_PREF; } ") [WARNING] Authentication failed for user ".+ { BEGIN(INITIAL); return PUREFTPD_LOGINERR_SUFF; } /* vsftpd */ .+"FAIL LOGIN: Client \"" { BEGIN(vsftpd_loginerr); return VSFTPD_LOGINERR_PREF; } "\"" { BEGIN(INITIAL); return VSFTPD_LOGINERR_SUFF; } /* cockpit */ "pam_unix(cockpit:auth): "?"authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=" { BEGIN(cockpit_authfail); return COCKPIT_AUTHFAIL_PREF; } " "+"user=".+ { BEGIN(INITIAL); return COCKPIT_AUTHFAIL_SUFF; } /* HTTP Basic AUTH – unauthorized. */ {CLF_OPT_USER_ID}" "{CLF_USER_NAME}" "{CLF_TIMESTAMP} { BEGIN(clf_request_withuser); return CLF_UNAUTHOIRIZED_PREF; } " "{CLF_REQUEST}" "{HTTP_AUTHFAIL}.+ { BEGIN(INITIAL); return CLF_UNAUTHOIRIZED_SUFF; } /* Common Log Format */ {CLF_OPT_USER_ID}" "{CLF_OPT_USER_NAME}" "{CLF_TIMESTAMP} { BEGIN(clf_request); return CLF_REQUEST_PREF; } /* HTTP probes for common web services. */ " \""{HTTP_REQUEST}" "{HTTP_BOTSEARCH}" "{HTTP_VERSION}"\" "{HTTP_CLIERROR}.+ { BEGIN(INITIAL); return CLFWEBPROBES_BOTSEARCH_SUFF; } " \""{HTTP_REQUEST}" ".*" "{HTTP_VERSION}"\" 444".+ { BEGIN(INITIAL); return CLFWEBPROBES_BOTSEARCH_SUFF; } /* Bad login URLs. HTTP 200 OK responses via POST are failed requests */ " \"POST "{HTTP_LOGIN_200OK_BAD}" "{HTTP_VERSION}"\" 200".+ { BEGIN(INITIAL); return CLF_LOGIN_URL_SUFF; } /* OpenSMTPD. */ /* Unsupported command when attempting to log in. */ [a-z0-9]+" smtp event=failed-command address=" { BEGIN(opensmtpd_failedcmd); return OPENSMTPD_FAILED_CMD_PREF; } "host="{HOSTNAME}" command=\"".+"\" result=\"503 5.5.1 Invalid command: Command not supported\"" { BEGIN(INITIAL); return OPENSMTPD_UNSUPPORTED_CMD_SUFF; } /* Bad credentials */ "host="{HOSTNAME}" command=\"AUTH ".+"\" result=\"535 Authentication failed\"" { BEGIN(INITIAL); return OPENSMTPD_AUTHFAIL_SUFF; } /* Courier IMAP/POP */ "LOGIN FAILED, "(user|method)=[^ ,]+", ip=" { return COURIER_AUTHFAIL_PREF; } /* OpenVPN */ ":"{NUMBER}" TLS Error: TLS handshake failed" { return OPENVPN_TLS_ERR_SUFF; } /* Gitea - also with color codes */ (({COLOR_CODE})?{TIMESTAMP_YMD_HMS}" "({COLOR_CODE})?)?(({COLOR_CODE})?[a-zA-Z0-9\:\(\)\/\.]*({COLOR_CODE}[^[]*{COLOR_CODE})?" ")?(({COLOR_CODE})?"["[A-Z]"]"({COLOR_CODE})?" ")?("["({COLOR_CODE})?[0-9a-f]*({COLOR_CODE})?"] ")?"Failed authentication attempt for "({COLOR_CODE})?.*({COLOR_CODE})?" from "({COLOR_CODE})? { BEGIN(gitea_autherr); return GITEA_ERR_PREF; } (":"[0-9]{1,5}({COLOR_CODE})?":".*)?({COLOR_CODE})? { BEGIN(INITIAL); return GITEA_ERR_SUFF; } /* OpenVPN Portshare */ {TIMESTAMP_ISO8601}" \[stdout#info\] \[OVPN "[0-9]+"\] OUT: \'"{TIMESTAMP_DM24H_Y}" " { return OPENVPN_PS_TERM_PREF; } ":"{NUMBER}" SIGTERM\[soft,port-share-redirect\] received, client-instance exiting\'" { return OPENVPN_PS_TERM_SUFF; } /* MSSQL Failed login */ "Login failed for user \'"{WORD}"\'. Reason: Password did not match that for the login provided. [CLIENT: " { return MSSQL_AUTHFAIL_PREF; } "Login failed for user \'"{WORD}"\'. Reason: Could not find a login matching the name provided. [CLIENT: " { return MSSQL_AUTHFAIL_PREF; } "Login failed. The login is from an untrusted domain and cannot be used with Integrated authentication. [CLIENT: " { return MSSQL_AUTHFAIL_PREF; } "Length specified in network packet payload did not match number of bytes read; the connection has been closed. Please contact the vendor of the client library. [CLIENT: " { return MSSQL_AUTHFAIL_PREF; } /** COMMON-USE TOKENS do not touch these **/ /* an IPv4 address */ {IPV4} { yylval.str = yytext; return IPv4; } {IPV4MAPPED6} { yylval.str = strrchr(yytext, ':')+1; return IPv4; } /* an IPv6 address */ /* standard | clouds implied | embedded IPv4 */ {IPV6} { yylval.str = strdup(yytext); return IPv6; } /* an host address (PTR) */ {HOSTADDR} { yylval.str = yytext; return HOSTADDR; } {NUMBER} { yylval.num = (int)strtol(yytext, (char **)NULL, 10); return INTEGER; } /* syslog timestamp */ /*{MONTH}\ +{DAYNO}\ +{HOUR}:{MINPS}:{MINPS} { return TIMESTAMP_SYSLOG; }*/ {TIMESTAMP_SYSLOG} { return TIMESTAMP_SYSLOG; } /* TAI64 timestamp */ "@"{TIMESTAMP_TAI64} { return AT_TIMESTAMP_TAI64; } {TIMESTAMP_TAI64} { return TIMESTAMP_TAI64; } /* iso8601 timestamp */ {TIMESTAMP_ISO8601} { return TIMESTAMP_ISO8601; } ": "[0-9]+" Time(s)" return REPETITIONS; /*[^ :]+:[^ ]+ { return FACILITYPRIORITY; } */ {WORD} { yylval.str = yytext; return WORD; } [ \n\r\t]+ /* eat blanks */ /* literals */ /*\n { return NEWLINE; } */ . { return yytext[0]; } /** end of COMMON-USE TOKENS **/ %% void scanner_init(char *str) { yy_scan_string(str); } void scanner_fin() { yy_delete_buffer(YY_CURRENT_BUFFER); } static int getsyslogpid(char *syslogbanner, int length) { int i; syslogbanner[length-2] = '\0'; for (i = length; syslogbanner[i] != '['; i--); return strtol(& syslogbanner[i+1], (char **)NULL, 10); } sshguard-2.4.3/src/parser/attack_parser.h000644 001751 001751 00000027040 14447664715 021324 0ustar00kevinzkevinz000000 000000 /* A Bison parser, made by GNU Bison 3.8.2. */ /* Bison interface for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual, especially those whose name start with YY_ or yy_. They are private implementation details that can be changed or removed. */ #ifndef YY_YY_ATTACK_PARSER_H_INCLUDED # define YY_YY_ATTACK_PARSER_H_INCLUDED /* Debug traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif #if YYDEBUG extern int yydebug; #endif /* Token kinds. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE enum yytokentype { YYEMPTY = -2, YYEOF = 0, /* "end of file" */ YYerror = 256, /* error */ YYUNDEF = 257, /* "invalid token" */ IPv4 = 258, /* IPv4 */ IPv6 = 259, /* IPv6 */ HOSTADDR = 260, /* HOSTADDR */ WORD = 261, /* WORD */ INTEGER = 262, /* INTEGER */ SYSLOG_BANNER_PID = 263, /* SYSLOG_BANNER_PID */ SOCKLOG_BANNER_PID = 264, /* SOCKLOG_BANNER_PID */ BUSYBOX_SYSLOG_BANNER_PID = 265, /* BUSYBOX_SYSLOG_BANNER_PID */ SYSLOG_BANNER = 266, /* SYSLOG_BANNER */ TIMESTAMP_SYSLOG = 267, /* TIMESTAMP_SYSLOG */ TIMESTAMP_ISO8601 = 268, /* TIMESTAMP_ISO8601 */ TIMESTAMP_TAI64 = 269, /* TIMESTAMP_TAI64 */ AT_TIMESTAMP_TAI64 = 270, /* AT_TIMESTAMP_TAI64 */ RFC_5234_BANNER = 271, /* RFC_5234_BANNER */ METALOG_BANNER = 272, /* METALOG_BANNER */ SOCKLOG_BANNER = 273, /* SOCKLOG_BANNER */ REPETITIONS = 274, /* REPETITIONS */ HTTP_REQUEST = 275, /* HTTP_REQUEST */ HTTP_VERSION = 276, /* HTTP_VERSION */ HTTP_REDIRECT = 277, /* HTTP_REDIRECT */ HTTP_AUTHFAIL = 278, /* HTTP_AUTHFAIL */ HTTP_CLIERROR = 279, /* HTTP_CLIERROR */ HTTP_BOTSEARCH_WEBMAIL = 280, /* HTTP_BOTSEARCH_WEBMAIL */ HTTP_BOTSEARCH_PHPMYADMIN = 281, /* HTTP_BOTSEARCH_PHPMYADMIN */ HTTP_BOTSEARCH_WORDPRESS = 282, /* HTTP_BOTSEARCH_WORDPRESS */ HTTP_BOTSEARCH_JOOMLA = 283, /* HTTP_BOTSEARCH_JOOMLA */ HTTP_BOTSEARCH = 284, /* HTTP_BOTSEARCH */ SSH_INVALUSERPREF = 285, /* SSH_INVALUSERPREF */ SSH_NOTALLOWEDPREF = 286, /* SSH_NOTALLOWEDPREF */ SSH_NOTALLOWEDSUFF = 287, /* SSH_NOTALLOWEDSUFF */ SSH_LOGINERR_PREF = 288, /* SSH_LOGINERR_PREF */ SSH_LOGINERR_PAM = 289, /* SSH_LOGINERR_PAM */ SSH_VIA = 290, /* SSH_VIA */ SSH_MAXAUTH = 291, /* SSH_MAXAUTH */ SSH_ADDR_SUFF = 292, /* SSH_ADDR_SUFF */ SSH_NOIDENTIFSTR = 293, /* SSH_NOIDENTIFSTR */ SSH_BADPROTOCOLIDENTIF = 294, /* SSH_BADPROTOCOLIDENTIF */ SSH_BADPROTOCOLIDENTIF_SUFF = 295, /* SSH_BADPROTOCOLIDENTIF_SUFF */ SSH_BADKEX_PREF = 296, /* SSH_BADKEX_PREF */ SSH_BADKEX_SUFF = 297, /* SSH_BADKEX_SUFF */ SSH_DISCONNECT_PREF = 298, /* SSH_DISCONNECT_PREF */ SSH_CONNECTION_CLOSED = 299, /* SSH_CONNECTION_CLOSED */ SSH_PREAUTH_SUFF = 300, /* SSH_PREAUTH_SUFF */ SSHGUARD_ATTACK_PREF = 301, /* SSHGUARD_ATTACK_PREF */ SSHGUARD_ATTACK_SUFF = 302, /* SSHGUARD_ATTACK_SUFF */ SSHGUARD_BLOCK_PREF = 303, /* SSHGUARD_BLOCK_PREF */ SSHGUARD_BLOCK_SUFF = 304, /* SSHGUARD_BLOCK_SUFF */ BIND_PREF = 305, /* BIND_PREF */ BIND_QUERY_DENIED = 306, /* BIND_QUERY_DENIED */ DOVECOT_IMAP_LOGINERR_PREF = 307, /* DOVECOT_IMAP_LOGINERR_PREF */ DOVECOT_IMAP_LOGINERR_SUFF = 308, /* DOVECOT_IMAP_LOGINERR_SUFF */ UWIMAP_LOGINERR = 309, /* UWIMAP_LOGINERR */ CYRUSIMAP_SASL_LOGINERR_PREF = 310, /* CYRUSIMAP_SASL_LOGINERR_PREF */ CYRUSIMAP_SASL_LOGINERR_SUFF = 311, /* CYRUSIMAP_SASL_LOGINERR_SUFF */ CUCIPOP_AUTHFAIL = 312, /* CUCIPOP_AUTHFAIL */ EXIM_ESMTP_AUTHFAIL_PREF = 313, /* EXIM_ESMTP_AUTHFAIL_PREF */ EXIM_ESMTP_AUTHFAIL_SUFF = 314, /* EXIM_ESMTP_AUTHFAIL_SUFF */ EXIM_ESMTP_LOGINFAIL_PREF = 315, /* EXIM_ESMTP_LOGINFAIL_PREF */ EXIM_ESMTP_LOGINFAIL_SUFF = 316, /* EXIM_ESMTP_LOGINFAIL_SUFF */ SENDMAIL_RELAYDENIED_PREF = 317, /* SENDMAIL_RELAYDENIED_PREF */ SENDMAIL_RELAYDENIED_SUFF = 318, /* SENDMAIL_RELAYDENIED_SUFF */ SENDMAIL_AUTHFAILURE_PREF = 319, /* SENDMAIL_AUTHFAILURE_PREF */ SENDMAIL_AUTHFAILURE_SUFF = 320, /* SENDMAIL_AUTHFAILURE_SUFF */ POSTFIX_NO_AUTH_PREF = 321, /* POSTFIX_NO_AUTH_PREF */ POSTFIX_SASL_LOGINERR_PREF = 322, /* POSTFIX_SASL_LOGINERR_PREF */ POSTFIX_SASL_LOGINERR_SUFF = 323, /* POSTFIX_SASL_LOGINERR_SUFF */ POSTFIX_NONSMTP = 324, /* POSTFIX_NONSMTP */ POSTFIX_NONSMTP_SUFF = 325, /* POSTFIX_NONSMTP_SUFF */ POSTFIX_GREYLIST = 326, /* POSTFIX_GREYLIST */ POSTFIX_GREYLIST_SUFF = 327, /* POSTFIX_GREYLIST_SUFF */ POSTSCREEN_PREF = 328, /* POSTSCREEN_PREF */ POSTSCREEN_SUFF = 329, /* POSTSCREEN_SUFF */ FREEBSDFTPD_LOGINERR_PREF = 330, /* FREEBSDFTPD_LOGINERR_PREF */ FREEBSDFTPD_LOGINERR_SUFF = 331, /* FREEBSDFTPD_LOGINERR_SUFF */ PROFTPD_LOGINERR_PREF = 332, /* PROFTPD_LOGINERR_PREF */ PROFTPD_LOGINERR_SUFF = 333, /* PROFTPD_LOGINERR_SUFF */ PUREFTPD_LOGINERR_PREF = 334, /* PUREFTPD_LOGINERR_PREF */ PUREFTPD_LOGINERR_SUFF = 335, /* PUREFTPD_LOGINERR_SUFF */ VSFTPD_LOGINERR_PREF = 336, /* VSFTPD_LOGINERR_PREF */ VSFTPD_LOGINERR_SUFF = 337, /* VSFTPD_LOGINERR_SUFF */ COCKPIT_AUTHFAIL_PREF = 338, /* COCKPIT_AUTHFAIL_PREF */ COCKPIT_AUTHFAIL_SUFF = 339, /* COCKPIT_AUTHFAIL_SUFF */ CLF_REQUEST_PREF = 340, /* CLF_REQUEST_PREF */ CLF_UNAUTHOIRIZED_PREF = 341, /* CLF_UNAUTHOIRIZED_PREF */ CLF_UNAUTHOIRIZED_SUFF = 342, /* CLF_UNAUTHOIRIZED_SUFF */ CLFWEBPROBES_BOTSEARCH_SUFF = 343, /* CLFWEBPROBES_BOTSEARCH_SUFF */ CLF_LOGIN_URL_SUFF = 344, /* CLF_LOGIN_URL_SUFF */ OPENSMTPD_FAILED_CMD_PREF = 345, /* OPENSMTPD_FAILED_CMD_PREF */ OPENSMTPD_AUTHFAIL_SUFF = 346, /* OPENSMTPD_AUTHFAIL_SUFF */ OPENSMTPD_UNSUPPORTED_CMD_SUFF = 347, /* OPENSMTPD_UNSUPPORTED_CMD_SUFF */ COURIER_AUTHFAIL_PREF = 348, /* COURIER_AUTHFAIL_PREF */ OPENVPN_TLS_ERR_SUFF = 349, /* OPENVPN_TLS_ERR_SUFF */ GITEA_ERR_PREF = 350, /* GITEA_ERR_PREF */ GITEA_ERR_SUFF = 351, /* GITEA_ERR_SUFF */ OPENVPN_PS_TERM_PREF = 352, /* OPENVPN_PS_TERM_PREF */ OPENVPN_PS_TERM_SUFF = 353, /* OPENVPN_PS_TERM_SUFF */ MSSQL_AUTHFAIL_PREF = 354 /* MSSQL_AUTHFAIL_PREF */ }; typedef enum yytokentype yytoken_kind_t; #endif /* Token kinds. */ #define YYEMPTY -2 #define YYEOF 0 #define YYerror 256 #define YYUNDEF 257 #define IPv4 258 #define IPv6 259 #define HOSTADDR 260 #define WORD 261 #define INTEGER 262 #define SYSLOG_BANNER_PID 263 #define SOCKLOG_BANNER_PID 264 #define BUSYBOX_SYSLOG_BANNER_PID 265 #define SYSLOG_BANNER 266 #define TIMESTAMP_SYSLOG 267 #define TIMESTAMP_ISO8601 268 #define TIMESTAMP_TAI64 269 #define AT_TIMESTAMP_TAI64 270 #define RFC_5234_BANNER 271 #define METALOG_BANNER 272 #define SOCKLOG_BANNER 273 #define REPETITIONS 274 #define HTTP_REQUEST 275 #define HTTP_VERSION 276 #define HTTP_REDIRECT 277 #define HTTP_AUTHFAIL 278 #define HTTP_CLIERROR 279 #define HTTP_BOTSEARCH_WEBMAIL 280 #define HTTP_BOTSEARCH_PHPMYADMIN 281 #define HTTP_BOTSEARCH_WORDPRESS 282 #define HTTP_BOTSEARCH_JOOMLA 283 #define HTTP_BOTSEARCH 284 #define SSH_INVALUSERPREF 285 #define SSH_NOTALLOWEDPREF 286 #define SSH_NOTALLOWEDSUFF 287 #define SSH_LOGINERR_PREF 288 #define SSH_LOGINERR_PAM 289 #define SSH_VIA 290 #define SSH_MAXAUTH 291 #define SSH_ADDR_SUFF 292 #define SSH_NOIDENTIFSTR 293 #define SSH_BADPROTOCOLIDENTIF 294 #define SSH_BADPROTOCOLIDENTIF_SUFF 295 #define SSH_BADKEX_PREF 296 #define SSH_BADKEX_SUFF 297 #define SSH_DISCONNECT_PREF 298 #define SSH_CONNECTION_CLOSED 299 #define SSH_PREAUTH_SUFF 300 #define SSHGUARD_ATTACK_PREF 301 #define SSHGUARD_ATTACK_SUFF 302 #define SSHGUARD_BLOCK_PREF 303 #define SSHGUARD_BLOCK_SUFF 304 #define BIND_PREF 305 #define BIND_QUERY_DENIED 306 #define DOVECOT_IMAP_LOGINERR_PREF 307 #define DOVECOT_IMAP_LOGINERR_SUFF 308 #define UWIMAP_LOGINERR 309 #define CYRUSIMAP_SASL_LOGINERR_PREF 310 #define CYRUSIMAP_SASL_LOGINERR_SUFF 311 #define CUCIPOP_AUTHFAIL 312 #define EXIM_ESMTP_AUTHFAIL_PREF 313 #define EXIM_ESMTP_AUTHFAIL_SUFF 314 #define EXIM_ESMTP_LOGINFAIL_PREF 315 #define EXIM_ESMTP_LOGINFAIL_SUFF 316 #define SENDMAIL_RELAYDENIED_PREF 317 #define SENDMAIL_RELAYDENIED_SUFF 318 #define SENDMAIL_AUTHFAILURE_PREF 319 #define SENDMAIL_AUTHFAILURE_SUFF 320 #define POSTFIX_NO_AUTH_PREF 321 #define POSTFIX_SASL_LOGINERR_PREF 322 #define POSTFIX_SASL_LOGINERR_SUFF 323 #define POSTFIX_NONSMTP 324 #define POSTFIX_NONSMTP_SUFF 325 #define POSTFIX_GREYLIST 326 #define POSTFIX_GREYLIST_SUFF 327 #define POSTSCREEN_PREF 328 #define POSTSCREEN_SUFF 329 #define FREEBSDFTPD_LOGINERR_PREF 330 #define FREEBSDFTPD_LOGINERR_SUFF 331 #define PROFTPD_LOGINERR_PREF 332 #define PROFTPD_LOGINERR_SUFF 333 #define PUREFTPD_LOGINERR_PREF 334 #define PUREFTPD_LOGINERR_SUFF 335 #define VSFTPD_LOGINERR_PREF 336 #define VSFTPD_LOGINERR_SUFF 337 #define COCKPIT_AUTHFAIL_PREF 338 #define COCKPIT_AUTHFAIL_SUFF 339 #define CLF_REQUEST_PREF 340 #define CLF_UNAUTHOIRIZED_PREF 341 #define CLF_UNAUTHOIRIZED_SUFF 342 #define CLFWEBPROBES_BOTSEARCH_SUFF 343 #define CLF_LOGIN_URL_SUFF 344 #define OPENSMTPD_FAILED_CMD_PREF 345 #define OPENSMTPD_AUTHFAIL_SUFF 346 #define OPENSMTPD_UNSUPPORTED_CMD_SUFF 347 #define COURIER_AUTHFAIL_PREF 348 #define OPENVPN_TLS_ERR_SUFF 349 #define GITEA_ERR_PREF 350 #define GITEA_ERR_SUFF 351 #define OPENVPN_PS_TERM_PREF 352 #define OPENVPN_PS_TERM_SUFF 353 #define MSSQL_AUTHFAIL_PREF 354 /* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED union YYSTYPE { #line 43 "attack_parser.y" char *str; int num; #line 270 "attack_parser.h" }; typedef union YYSTYPE YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define YYSTYPE_IS_DECLARED 1 #endif extern YYSTYPE yylval; int yyparse (attack_t *attack); #endif /* !YY_YY_ATTACK_PARSER_H_INCLUDED */ sshguard-2.4.3/examples/sshguard.service000644 001751 001751 00000000560 14152213136 021237 0ustar00kevinzkevinz000000 000000 # sshguard.service -- sample systemd unit file [Unit] Description=SSHGuard - blocks brute-force login attempts After=syslog.target After=iptables.target After=ip6tables.target After=libvirtd.service After=firewalld.service [Service] ExecStartPre=-/usr/sbin/iptables -N sshguard ExecStart=/usr/local/sbin/sshguard Restart=always [Install] WantedBy=multi-user.target sshguard-2.4.3/examples/net.sshguard.plist000644 001751 001751 00000000610 14152213136 021513 0ustar00kevinzkevinz000000 000000 Label net.sshguard KeepAlive ProgramArguments /usr/local/sbin/sshguard RunAtLoad sshguard-2.4.3/examples/sshguard.conf.sample000644 001751 001751 00000004564 14152213136 022014 0ustar00kevinzkevinz000000 000000 #!/bin/sh # sshguard.conf -- SSHGuard configuration # Options that are uncommented in this example are set to their default # values. Options without defaults are commented out. #### REQUIRED CONFIGURATION #### # Full path to backend executable (required, no default) #BACKEND="/usr/local/libexec/sshg-fw-iptables" # Space-separated list of log files to monitor. (optional, no default) #FILES="/var/log/auth.log /var/log/authlog /var/log/maillog" # Shell command that provides logs on standard output. (optional, no default) # Example 1: ssh and sendmail from systemd journal: #LOGREADER="LANG=C /usr/bin/journalctl -afb -p info -n1 -t sshd -t sendmail -o cat" # Example 2: ssh from os_log (macOS 10.12+) #LOGREADER="/usr/bin/log stream --style syslog --predicate '(processImagePath contains \"sshd\")'" #### OPTIONS #### # Block attackers when their cumulative attack score exceeds THRESHOLD. # Most attacks have a score of 10. (optional, default 30) THRESHOLD=30 # Block attackers for initially BLOCK_TIME seconds after exceeding THRESHOLD. # Subsequent blocks increase by a factor of 1.5. (optional, default 120) BLOCK_TIME=120 # Remember potential attackers for up to DETECTION_TIME seconds before # resetting their score. (optional, default 1800) DETECTION_TIME=1800 # Size of IPv6 'subnet to block. Defaults to a single address, CIDR notation. (optional, default to 128) IPV6_SUBNET=128 # Size of IPv4 subnet to block. Defaults to a single address, CIDR notation. (optional, default to 32) IPV4_SUBNET=32 #### EXTRAS #### # Full path to PID file (optional, no default) #PID_FILE=/run/sshguard.pid # Colon-separated blacklist threshold and full path to blacklist file. # (optional, no default) #BLACKLIST_FILE=90:/var/lib/sshguard/enemies # IP addresses listed in the WHITELIST_FILE are considered to be # friendlies and will never be blocked. #WHITELIST_FILE=/etc/friends # If PARSER is unset, SSHGuard will use the installed sshg-parser as its # parser. Setting PARSER overrides this, so that you can use your own parser. #PARSER= # Run POST_PARSER as a filter after the parser. POST_PARSER must read as input # and produce as output lines in the format used by sshg-parser. This example # implements primitive whitelisting, preventing sshg-blocker from seeing # attacks from 1.2.3.4. Unlike whitelisting, attacks filtered by POST_PARSER # are not logged by SSHGuard. #POST_PARSER="grep -v 1.2.3.4" sshguard-2.4.3/examples/whitelistfile.example000644 001751 001751 00000000407 14152213136 022266 0ustar00kevinzkevinz000000 000000 # comment line (a '#' as very first character) # a single IPv4 and IPv6 address 1.2.3.4 2001:0db8:85a3:08d3:1319:8a2e:0370:7344 # address blocks in CIDR notation 127.0.0.0/8 10.11.128.0/17 192.168.0.0/24 # hostnames rome-fw.enterprise.com hosts.friends.com sshguard-2.4.3/doc/sshguard.8000644 001751 001751 00000012373 14447664715 016726 0ustar00kevinzkevinz000000 000000 .\" Man page generated from reStructuredText. . . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .TH "SSHGUARD" 8 "March 16, 2021" "2.4" "SSHGuard Manual" .SH NAME sshguard \- block brute-force attacks by aggregating system logs .\" Copyright (c) 2007,2008,2009,2010 Mij . .\" Permission to use, copy, modify, and distribute this software for any . .\" purpose with or without fee is hereby granted, provided that the above . .\" copyright notice and this permission notice appear in all copies. . .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES . .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF . .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR . .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES . .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN . .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF . .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. . .SH SYNOPSIS .sp \fBsshguard\fP [\fB\-hv\fP] [\fB\-a\fP \fIthreshold\fP] [\fB\-b\fP \fIthreshold\fP:\fIblacklist_file\fP] [\fB\-i\fP \fIpidfile\fP] [\fB\-p\fP \fIblocktime\fP] [\fB\-s\fP \fIdetection_time\fP] [\fB\-w\fP \fIaddress\fP | \fIwhitelist_file\fP] [\fIfile\fP ...] .SH DESCRIPTION .sp \fBsshguard\fP protects hosts from brute\-force attacks against SSH and other services. It aggregates system logs and blocks repeat offenders using one of several firewall backends. .sp \fBsshguard\fP can monitor log files and the standard output of running a shell command. Log messages are parsed line\-by\-line for recognized attack patterns. Attackers are blocked when enough attack patterns are detected in a configurable time interval. Attackers are blocked temporarily but can also be permanently blocked using the blacklist option. .sp \fBsshguard\fP must be configured before its first run. See \fBsshguard\-setup(7)\fP\&. .SH OPTIONS .INDENT 0.0 .TP .B \fB\-a\fP \fIthreshold\fP (default 30) Each detected attack increases an attacker\(aqs attack score, usually by 10. Block attackers when their attack score exceeds \fIthreshold\fP\&. .TP .B \fB\-b\fP \fIthreshold\fP:\fIblacklist_file\fP Blacklist an attacker when its attack score exceeds \fIthreshold\fP\&. Blacklisted addresses are written to \fIblacklist\-file\fP and never unblocked, even after restarting \fBsshguard\fP\&. .TP .B \fB\-i\fP \fIpidfile\fP Write the PID of \fBsshguard\fP to \fIpidfile\fP\&. \fIpidfile\fP is removed when \fBsshguard\fP exits. .TP .B \fB\-p\fP \fIblocktime\fP (default 120) Block first\-time attackers for \fIblocktime\fP seconds. Subsequent blocks increase in duration by a factor of 1.5. Since \fBsshguard\fP unblocks attackers at random intervals, actual block times may be somewhat longer. .TP .B \fB\-s\fP \fIdetection_time\fP (default 1800) Reset an attacker\(aqs attack score after \fIdetection_time\fP seconds since the last attack. This means that attackers who attack every \fIdetection_time\fP seconds are never blocked by \fBsshguard\fP\&. However, an increased \fIdetection_time\fP may have an impact on legitimate users. .TP .B [\fB\-w\fP \fIaddress\fP | \fIwhitelist_file\fP] Whitelist a single address, hostname, or address block given as \fIaddress\fP\&. This option can be given multiple times. Alternatively, provide an absolute path to a \fIwhitelist_file\fP containing addresses to whitelist. See \fI\%WHITELISTING\fP\&. .TP .B \fB\-h\fP Print usage information and exit. .TP .B \fB\-v\fP Print version information and exit. .UNINDENT .SH ENVIRONMENT .INDENT 0.0 .TP .B SSHGUARD_DEBUG Set to enable verbose output from \fBsshg\-blocker\fP\&. .UNINDENT .SH FILES .INDENT 0.0 .TP .B %PREFIX%/etc/sshguard.conf See sample configuration file. .UNINDENT .SH WHITELISTING .sp Whitelisted addresses are never blocked. Addresses can be specified on the command line or be stored in a file. .sp On the command line, give the \fB\-w\fP option one or more times with an IP address, CIDR address block, or hostname as an argument. Hostnames are resolved once at startup. If a hostname resolves to multiple addresses, all of them are whitelisted. For example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C sshguard \-w 192.168.1.10 \-w 192.168.0.0/24 \-w friend.example.com \-w 2001:0db8:85a3:0000:0000:8a2e:0370:7334 \-w 2002:836b:4179::836b:0000/126 .ft P .fi .UNINDENT .UNINDENT .sp If the argument to \fB\-w\fP begins with a forward slash (\(aq/\(aq) or dot (\(aq.\(aq), the argument is treated as the path to a whitelist file. .sp The whitelist file contains comments (lines beginning with \(aq#\(aq), addresses, address blocks, or hostnames, one per line. .SH SEE ALSO .sp sshguard\-setup(7) .\" Generated by docutils manpage writer. . sshguard-2.4.3/doc/sshguard-setup.7.rst000644 001751 001751 00000020500 14152213136 020635 0ustar00kevinzkevinz000000 000000 ============== sshguard-setup ============== ---------------------------------- setting up SSHGuard on your system ---------------------------------- :Date: August 27, 2020 :Manual group: SSHGuard Manual :Manual section: 7 :Version: 2.4 DESCRIPTION =========== To set up SSHGuard, write *sshguard.conf* and set up the backend, if necessary. Configuration options are documented in the sample configuration file. A good starting point is to copy it and make the necessary changes: 1. Set **BACKEND**. You may also need to set it up to work with SSHGuard (see `BACKENDS`_). 2. Set **FILES**, **LOGREADER**, or both. Alternatively, give **sshguard** a list of files to monitor as positional arguments on the command-line. Use **FILES** to specify a space-separated list of log files to monitor. Use **LOGREADER** to specify a shell command to run to obtain logs. Both settings are ignored if files are given on the command-line. Sample **LOGREADER** commands for **journalctl(1)** and macOS 10.12+ are available in the sample configuration. OTHER LOGS ========== syslog-ng --------- For **syslog-ng 2.x**, add the following lines to *syslog-ng.conf*:: # pass only entries with auth+authpriv facilities from programs other than sshguard filter sshlogs { facility(auth, authpriv) and not match("sshguard"); }; # pass to this process with this template (avoids <ID> prefixes) destination sshguardproc { program("/usr/local/sbin/sshguard" template("$DATE $FULLHOST $MESSAGE\n")); }; log { source(src); filter(sshlogs); destination(sshguardproc); }; For **syslog-ng 3.x**, add the following lines to *syslog-ng.conf*:: # enable 3.x mode @version:3.0 # pass only entries with auth+authpriv facilities from programs other than sshguard filter f_sshguard { facility(auth, authpriv) and not program("sshguard"); }; # pass entries built with this format destination sshguard { program("/usr/sbin/sshguard" template("$DATE $FULLHOST $MSGHDR$MESSAGE\n") ); }; log { source(src); filter(f_sshguard); destination(sshguard); }; After restarting **syslog-ng**, SSHGuard should start as soon as a log entry with facility ``auth`` or ``authpriv`` arrives. If you are monitoring services other than **sshd**, add the appropriate log facilities to *syslog-ng.conf*. metalog ------- Add the following lines to *metalog.conf*:: Stuff to protect from brute force attacks : # for ssh facility = "*" program = "sshd" # other services ... # log to /var/log/sshguard directory logdir = "/var/log/sshguard" After restarting **metalog**, log entries will appear in */var/log/sshguard*. Use *log polling* to monitor the *current* log. BACKENDS ======== SSHGuard can block attackers using one of several firewall backends that is selected at compile-time. .. warning:: Read the documentation for your firewall. Make sure you fully understand each rule or command in the examples below before using them. They may need to be adjusted to suit your particular configuration. pf -- SSHGuard adds attackers to table **. Create the table and block attackers by adding the following lines to the end of *pf.conf*:: table persist block in proto tcp from After reloading the **pf** configuration, you can inspect the contents of the table using:: # pfctl -t sshguard -T show ipfw ---- SSHGuard creates and adds attackers to table 22. The table can be used to block attackers in your ruleset. For example:: # ipfw add 5000 reset ip from table\(22\) to me You can inspect the contents of the table using:: # ipfw table 22 list firewalld --------- Blocked attackers are added to two ipsets named sshguard4 and sshguard6. The entries in the ipsets are blocked by default in the default firewall zone. Additional firewall zones can be configured using:: # firewall-cmd --zone=zone-name --permanent \ --add-rich-rule="rule source ipset=sshguard4 drop" # firewall-cmd --zone=zone-name --permanent \ --add-rich-rule="rule source ipset=sshguard6 drop" You can inspect the entries in the two ipsets using:: # firewall-cmd --permanent --info-ipset=sshguard4 # firewall-cmd --permanent --info-ipset=sshguard6 ipset ----- Blocked attackers are added to two ipsets named sshguard4 and sshguard6. Nothing is blocked by default, but can used as a source for iptables and other tools. E.g.:: # iptables -I INPUT -m set --match-set sshguard4 src -j DROP # ip6tables -I INPUT -m set --match-set sshguard6 src -j DROP netfilter/iptables ------------------ Create a chain for SSHGuard:: # iptables -N sshguard # for IPv4 # ip6tables -N sshguard # for IPv6 Update the INPUT chain to also pass the traffic to the sshguard chain at the very end of its processing. Specify in --dport all the ports of services your sshguard protects. If you want to prevent attackers from doing any traffic to the host, remove the option completely:: # block any traffic from abusers iptables -A INPUT -j sshguard ip6tables -A INPUT -j sshguard Or:: # block abusers only for SSH, FTP, POP, IMAP services (use "multiport" module) iptables -A INPUT -m multiport -p tcp --destination-ports 21,22,110,143 -j sshguard ip6tables -A INPUT -m multiport -p tcp --destination-ports 21,22,110,143 -j sshguard Verify that you have NOT a default allow rule passing all ssh traffic higher in the chain. Verify that you have NOT a default deny rule blocking all ssh traffic in your firewall. In either case, you already have the skill to adjust your firewall setup. Here is a sample ruleset that makes sense:: iptables -N sshguard # block whatever SSHGuard says be bad ... iptables -A INPUT -j sshguard # enable ssh, dns, http, https iptables -A INPUT -p tcp --dport 22 -j ACCEPT iptables -A INPUT -p udp --dport 53 -j ACCEPT iptables -A INPUT -p tcp --dport 80 -j ACCEPT iptables -A INPUT -p tcp --dport 443 -j ACCEPT # and block everything else (default deny) iptables -P INPUT DROP When rebooting, most systems reset the firewall configuration by default. To preserve your configuration, you usually use the iptables-save and iptables-restore utilities. However, each Linux variant has its own "right way". nftables -------- SSHGuard creates tables with a high priority and adds attackers to a set automatically. You can inspect the contents of the sets using:: # nft list set ip sshguard attackers # nft list set ip6 sshguard attackers Moreover, you can display sshguard's tables with:: # nft list table ip sshguard # nft list table ip6 sshguard TROUBLESHOOTING =============== Is SSHGuard configured correctly? --------------------------------- Check that the correct **FILES** (or **LOGREADER**) and BACKEND are set in *sshguard.conf*. Is SSHGuard running? -------------------- SSHGuard spawns a pipeline of cooperating processes. You can verify that SSHGuard is started correctly by viewing your process list using ``ps`` or ``top``. Shown here are the processes associated with an example configuration:: /bin/sh /opt/sshguard/sbin/sshguard tail -F -n 0 /tmp/log.txt /opt/sshguard/libexec/sshg-parser /opt/sshguard/libexec/sshg-blocker -a 30 -p 120 -s 1800 -N 128 -n 32 /bin/sh /usr/local/libexec/sshg-fw-null In order: - SSHGuard, installed in */opt/sshguard*, is being interpreted by */bin/sh*. - SSHGuard launched ``tail -F -n 0``, which is monitoring */tmp/log.txt*. - The default parser ``sshg-parser`` is running. - The blocker is running with options ``-a 30 -p 120 -s 1800 -N 128 -n 32``. - The firewall ``sshg-fw-null`` is running. The null backend doesn't actually block any attacks. Is SSHGuard recognizing attacks? -------------------------------- SSHGuard recognizes attacks by parsing log messages. The format of log messages can occasionally change. If you are using the default, built-in attack parser, you can check if SSHGuard recognizes your attacks by running:: $ cat /var/log/auth.log | %PREFIX%/libexec/sshg-parser -a Log messages that are recognized as attacks are prefixed with a '*' at the beginning of each line. If a log message that should be recognized as an attack is not, consider reporting it. EXAMPLES ======== Ignore **FILES** and monitor these files instead:: # sshguard /var/log/auth.log /var/log/maillog SEE ALSO ======== sshguard(8) sshguard-2.4.3/doc/sshguard.8.rst000644 001751 001751 00000010525 14152213136 017506 0ustar00kevinzkevinz000000 000000 .. Copyright (c) 2007,2008,2009,2010 Mij .. Permission to use, copy, modify, and distribute this software for any .. purpose with or without fee is hereby granted, provided that the above .. copyright notice and this permission notice appear in all copies. .. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES .. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF .. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR .. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES .. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN .. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ======== sshguard ======== ---------------------------------------------------- block brute-force attacks by aggregating system logs ---------------------------------------------------- :Date: March 16, 2021 :Manual group: SSHGuard Manual :Manual section: 8 :Version: 2.4 SYNOPSIS ======== **sshguard** [**-hv**] [**-a** *threshold*] [**-b** *threshold*:*blacklist_file*] [**-i** *pidfile*] [**-p** *blocktime*] [**-s** *detection_time*] [**-w** *address* | *whitelist_file*] [*file* ...] DESCRIPTION =========== **sshguard** protects hosts from brute-force attacks against SSH and other services. It aggregates system logs and blocks repeat offenders using one of several firewall backends. **sshguard** can monitor log files and the standard output of running a shell command. Log messages are parsed line-by-line for recognized attack patterns. Attackers are blocked when enough attack patterns are detected in a configurable time interval. Attackers are blocked temporarily but can also be permanently blocked using the blacklist option. **sshguard** must be configured before its first run. See **sshguard-setup(7)**. OPTIONS ======= **-a** *threshold* (default 30) Each detected attack increases an attacker's attack score, usually by 10. Block attackers when their attack score exceeds *threshold*. **-b** *threshold*:*blacklist_file* Blacklist an attacker when its attack score exceeds *threshold*. Blacklisted addresses are written to *blacklist-file* and never unblocked, even after restarting **sshguard**. **-i** *pidfile* Write the PID of **sshguard** to *pidfile*. *pidfile* is removed when **sshguard** exits. **-p** *blocktime* (default 120) Block first-time attackers for *blocktime* seconds. Subsequent blocks increase in duration by a factor of 1.5. Since **sshguard** unblocks attackers at random intervals, actual block times may be somewhat longer. **-s** *detection_time* (default 1800) Reset an attacker's attack score after *detection_time* seconds since the last attack. This means that attackers who attack every *detection_time* seconds are never blocked by **sshguard**. However, an increased *detection_time* may have an impact on legitimate users. [**-w** *address* | *whitelist_file*] Whitelist a single address, hostname, or address block given as *address*. This option can be given multiple times. Alternatively, provide an absolute path to a *whitelist_file* containing addresses to whitelist. See `WHITELISTING`_. **-h** Print usage information and exit. **-v** Print version information and exit. ENVIRONMENT =========== SSHGUARD_DEBUG Set to enable verbose output from **sshg-blocker**. FILES ===== %PREFIX%/etc/sshguard.conf See sample configuration file. WHITELISTING ============ Whitelisted addresses are never blocked. Addresses can be specified on the command line or be stored in a file. On the command line, give the **-w** option one or more times with an IP address, CIDR address block, or hostname as an argument. Hostnames are resolved once at startup. If a hostname resolves to multiple addresses, all of them are whitelisted. For example:: sshguard -w 192.168.1.10 -w 192.168.0.0/24 -w friend.example.com -w 2001:0db8:85a3:0000:0000:8a2e:0370:7334 -w 2002:836b:4179::836b:0000/126 If the argument to **-w** begins with a forward slash ('/') or dot ('.'), the argument is treated as the path to a whitelist file. The whitelist file contains comments (lines beginning with '#'), addresses, address blocks, or hostnames, one per line. SEE ALSO ======== sshguard-setup(7) sshguard-2.4.3/doc/sshguard-setup.7000644 001751 001751 00000024510 14447664714 020056 0ustar00kevinzkevinz000000 000000 .\" Man page generated from reStructuredText. . . .nr rst2man-indent-level 0 . .de1 rstReportMargin \\$1 \\n[an-margin] level \\n[rst2man-indent-level] level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] - \\n[rst2man-indent0] \\n[rst2man-indent1] \\n[rst2man-indent2] .. .de1 INDENT .\" .rstReportMargin pre: . RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .\" .rstReportMargin post: .. .de UNINDENT . RE .\" indent \\n[an-margin] .\" old: \\n[rst2man-indent\\n[rst2man-indent-level]] .nr rst2man-indent-level -1 .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. .TH "SSHGUARD-SETUP" 7 "August 27, 2020" "2.4" "SSHGuard Manual" .SH NAME sshguard-setup \- setting up SSHGuard on your system .SH DESCRIPTION .sp To set up SSHGuard, write \fIsshguard.conf\fP and set up the backend, if necessary. Configuration options are documented in the sample configuration file. A good starting point is to copy it and make the necessary changes: .INDENT 0.0 .IP 1. 3 Set \fBBACKEND\fP\&. You may also need to set it up to work with SSHGuard (see \fI\%BACKENDS\fP). .IP 2. 3 Set \fBFILES\fP, \fBLOGREADER\fP, or both. Alternatively, give \fBsshguard\fP a list of files to monitor as positional arguments on the command\-line. .UNINDENT .sp Use \fBFILES\fP to specify a space\-separated list of log files to monitor. Use \fBLOGREADER\fP to specify a shell command to run to obtain logs. Both settings are ignored if files are given on the command\-line. .sp Sample \fBLOGREADER\fP commands for \fBjournalctl(1)\fP and macOS 10.12+ are available in the sample configuration. .SH OTHER LOGS .SS syslog\-ng .sp For \fBsyslog\-ng 2.x\fP, add the following lines to \fIsyslog\-ng.conf\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # pass only entries with auth+authpriv facilities from programs other than sshguard filter sshlogs { facility(auth, authpriv) and not match(\(dqsshguard\(dq); }; # pass to this process with this template (avoids <ID> prefixes) destination sshguardproc { program(\(dq/usr/local/sbin/sshguard\(dq template(\(dq$DATE $FULLHOST $MESSAGE\en\(dq)); }; log { source(src); filter(sshlogs); destination(sshguardproc); }; .ft P .fi .UNINDENT .UNINDENT .sp For \fBsyslog\-ng 3.x\fP, add the following lines to \fIsyslog\-ng.conf\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # enable 3.x mode @version:3.0 # pass only entries with auth+authpriv facilities from programs other than sshguard filter f_sshguard { facility(auth, authpriv) and not program(\(dqsshguard\(dq); }; # pass entries built with this format destination sshguard { program(\(dq/usr/sbin/sshguard\(dq template(\(dq$DATE $FULLHOST $MSGHDR$MESSAGE\en\(dq) ); }; log { source(src); filter(f_sshguard); destination(sshguard); }; .ft P .fi .UNINDENT .UNINDENT .sp After restarting \fBsyslog\-ng\fP, SSHGuard should start as soon as a log entry with facility \fBauth\fP or \fBauthpriv\fP arrives. If you are monitoring services other than \fBsshd\fP, add the appropriate log facilities to \fIsyslog\-ng.conf\fP\&. .SS metalog .sp Add the following lines to \fImetalog.conf\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C Stuff to protect from brute force attacks : # for ssh facility = \(dq*\(dq program = \(dqsshd\(dq # other services ... # log to /var/log/sshguard directory logdir = \(dq/var/log/sshguard\(dq .ft P .fi .UNINDENT .UNINDENT .sp After restarting \fBmetalog\fP, log entries will appear in \fI/var/log/sshguard\fP\&. Use \fIlog polling\fP to monitor the \fIcurrent\fP log. .SH BACKENDS .sp SSHGuard can block attackers using one of several firewall backends that is selected at compile\-time. .sp \fBWARNING:\fP .INDENT 0.0 .INDENT 3.5 Read the documentation for your firewall. Make sure you fully understand each rule or command in the examples below before using them. They may need to be adjusted to suit your particular configuration. .UNINDENT .UNINDENT .SS pf .sp SSHGuard adds attackers to table \fI\fP\&. Create the table and block attackers by adding the following lines to the end of \fIpf.conf\fP: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C table persist block in proto tcp from .ft P .fi .UNINDENT .UNINDENT .sp After reloading the \fBpf\fP configuration, you can inspect the contents of the table using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # pfctl \-t sshguard \-T show .ft P .fi .UNINDENT .UNINDENT .SS ipfw .sp SSHGuard creates and adds attackers to table 22. The table can be used to block attackers in your ruleset. For example: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # ipfw add 5000 reset ip from table\e(22\e) to me .ft P .fi .UNINDENT .UNINDENT .sp You can inspect the contents of the table using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # ipfw table 22 list .ft P .fi .UNINDENT .UNINDENT .SS firewalld .sp Blocked attackers are added to two ipsets named sshguard4 and sshguard6. The entries in the ipsets are blocked by default in the default firewall zone. Additional firewall zones can be configured using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # firewall\-cmd \-\-zone=zone\-name \-\-permanent \e \-\-add\-rich\-rule=\(dqrule source ipset=sshguard4 drop\(dq # firewall\-cmd \-\-zone=zone\-name \-\-permanent \e \-\-add\-rich\-rule=\(dqrule source ipset=sshguard6 drop\(dq .ft P .fi .UNINDENT .UNINDENT .sp You can inspect the entries in the two ipsets using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # firewall\-cmd \-\-permanent \-\-info\-ipset=sshguard4 # firewall\-cmd \-\-permanent \-\-info\-ipset=sshguard6 .ft P .fi .UNINDENT .UNINDENT .SS ipset .sp Blocked attackers are added to two ipsets named sshguard4 and sshguard6. Nothing is blocked by default, but can used as a source for iptables and other tools. E.g.: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # iptables \-I INPUT \-m set \-\-match\-set sshguard4 src \-j DROP # ip6tables \-I INPUT \-m set \-\-match\-set sshguard6 src \-j DROP .ft P .fi .UNINDENT .UNINDENT .SS netfilter/iptables .sp Create a chain for SSHGuard: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # iptables \-N sshguard # for IPv4 # ip6tables \-N sshguard # for IPv6 .ft P .fi .UNINDENT .UNINDENT .sp Update the INPUT chain to also pass the traffic to the sshguard chain at the very end of its processing. Specify in \-\-dport all the ports of services your sshguard protects. If you want to prevent attackers from doing any traffic to the host, remove the option completely: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # block any traffic from abusers iptables \-A INPUT \-j sshguard ip6tables \-A INPUT \-j sshguard .ft P .fi .UNINDENT .UNINDENT .sp Or: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # block abusers only for SSH, FTP, POP, IMAP services (use \(dqmultiport\(dq module) iptables \-A INPUT \-m multiport \-p tcp \-\-destination\-ports 21,22,110,143 \-j sshguard ip6tables \-A INPUT \-m multiport \-p tcp \-\-destination\-ports 21,22,110,143 \-j sshguard .ft P .fi .UNINDENT .UNINDENT .sp Verify that you have NOT a default allow rule passing all ssh traffic higher in the chain. Verify that you have NOT a default deny rule blocking all ssh traffic in your firewall. In either case, you already have the skill to adjust your firewall setup. .sp Here is a sample ruleset that makes sense: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C iptables \-N sshguard # block whatever SSHGuard says be bad ... iptables \-A INPUT \-j sshguard # enable ssh, dns, http, https iptables \-A INPUT \-p tcp \-\-dport 22 \-j ACCEPT iptables \-A INPUT \-p udp \-\-dport 53 \-j ACCEPT iptables \-A INPUT \-p tcp \-\-dport 80 \-j ACCEPT iptables \-A INPUT \-p tcp \-\-dport 443 \-j ACCEPT # and block everything else (default deny) iptables \-P INPUT DROP .ft P .fi .UNINDENT .UNINDENT .sp When rebooting, most systems reset the firewall configuration by default. To preserve your configuration, you usually use the iptables\-save and iptables\-restore utilities. However, each Linux variant has its own \(dqright way\(dq. .SS nftables .sp SSHGuard creates tables with a high priority and adds attackers to a set automatically. .sp You can inspect the contents of the sets using: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # nft list set ip sshguard attackers # nft list set ip6 sshguard attackers .ft P .fi .UNINDENT .UNINDENT .sp Moreover, you can display sshguard\(aqs tables with: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # nft list table ip sshguard # nft list table ip6 sshguard .ft P .fi .UNINDENT .UNINDENT .SH TROUBLESHOOTING .SS Is SSHGuard configured correctly? .sp Check that the correct \fBFILES\fP (or \fBLOGREADER\fP) and BACKEND are set in \fIsshguard.conf\fP\&. .SS Is SSHGuard running? .sp SSHGuard spawns a pipeline of cooperating processes. You can verify that SSHGuard is started correctly by viewing your process list using \fBps\fP or \fBtop\fP\&. Shown here are the processes associated with an example configuration: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C /bin/sh /opt/sshguard/sbin/sshguard tail \-F \-n 0 /tmp/log.txt /opt/sshguard/libexec/sshg\-parser /opt/sshguard/libexec/sshg\-blocker \-a 30 \-p 120 \-s 1800 \-N 128 \-n 32 /bin/sh /usr/local/libexec/sshg\-fw\-null .ft P .fi .UNINDENT .UNINDENT .sp In order: .INDENT 0.0 .INDENT 3.5 .INDENT 0.0 .IP \(bu 2 SSHGuard, installed in \fI/opt/sshguard\fP, is being interpreted by \fI/bin/sh\fP\&. .IP \(bu 2 SSHGuard launched \fBtail \-F \-n 0\fP, which is monitoring \fI/tmp/log.txt\fP\&. .IP \(bu 2 The default parser \fBsshg\-parser\fP is running. .IP \(bu 2 The blocker is running with options \fB\-a 30 \-p 120 \-s 1800 \-N 128 \-n 32\fP\&. .IP \(bu 2 The firewall \fBsshg\-fw\-null\fP is running. The null backend doesn\(aqt actually block any attacks. .UNINDENT .UNINDENT .UNINDENT .SS Is SSHGuard recognizing attacks? .sp SSHGuard recognizes attacks by parsing log messages. The format of log messages can occasionally change. If you are using the default, built\-in attack parser, you can check if SSHGuard recognizes your attacks by running: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C $ cat /var/log/auth.log | %PREFIX%/libexec/sshg\-parser \-a .ft P .fi .UNINDENT .UNINDENT .sp Log messages that are recognized as attacks are prefixed with a \(aq*\(aq at the beginning of each line. If a log message that should be recognized as an attack is not, consider reporting it. .SH EXAMPLES .sp Ignore \fBFILES\fP and monitor these files instead: .INDENT 0.0 .INDENT 3.5 .sp .nf .ft C # sshguard /var/log/auth.log /var/log/maillog .ft P .fi .UNINDENT .UNINDENT .SH SEE ALSO .sp sshguard(8) .\" Generated by docutils manpage writer. . sshguard-2.4.3/doc/sshguard.dot000644 001751 001751 00000001241 14152213136 017311 0ustar00kevinzkevinz000000 000000 /* * sshguard.dot -- graph of SSHGuard architecture * See CONTRIBUTING.rst for an explanation of this graph. */ digraph { rankdir=LR; driver [label=src/sshguard.in>]; logtail [label=src/sshg-logtail>]; parser [label=src/parser/> style=dashed]; blocker [label=src/blocker/> style=dashed]; fw [label=src/fw/>]; logs [label=Logs> shape=note]; driver -> logtail[label="spawns"]; logs -> logtail[label="file I/O"]; subgraph cluster_0 { logtail -> parser -> blocker -> fw[label="pipe"]; } }