Compare commits

..

1 commit

Author SHA1 Message Date
Hello=)
f349e7f028 Visually differentiate tame and normal scorpions a bit 2025-08-27 02:41:49 +03:00
123 changed files with 1256 additions and 2480 deletions

View file

@ -1,7 +1,7 @@
stages:
- test
image: debian:bullseye
image: debian:buster
before_script:
- uname -a
@ -17,26 +17,11 @@ imagemagiccheck:
- ./.tools/imagemagiccheck.sh
allow_failure: true
manaverse:
manaplus:
stage: test
image: ubuntu:20.04
variables:
GIT_SUBMODULE_STRATEGY: recursive
script:
- ./.tools/manaplus.sh master deb_pkg manaverse.log
artifacts:
paths:
- shared
when: always
expire_in: 3 week
old_manaplus:
stage: test
image: ubuntu:20.04
variables:
GIT_SUBMODULE_STRATEGY: recursive
script:
- ./.tools/manaplus.sh master4old deb_pkg_old manaplus.log
- ./.tools/manaplus.sh
image: debian:unstable
artifacts:
paths:
- shared

26
.tools/downloadlib.sh Executable file
View file

@ -0,0 +1,26 @@
#!/bin/bash
export zipname="lib.zip"
export libname="$1_$2"
mkdir libdownload
cd libdownload
rm "${zipname}"
wget --retry-connrefused --retry-on-host-error --tries=10 --waitretry=5 \
-O "$zipname" \
"https://git.themanaworld.org/mana/spm/builds/artifacts/$1/download?job=${libname}"
unzip "${zipname}"
cp -r "bin/${libname}" ..
cd ..
rm -rf /usr/local/spm/bin/${libname}
mkdir -p /usr/local/spm/bin
cp -r libdownload/bin/${libname} /usr/local/spm/bin/
ls /usr/local/spm/bin/${libname}
if [ "$?" != 0 ]; then
echo "Library $1 $2 unpack failed"
exit 1
fi

View file

@ -69,7 +69,7 @@ function update_repos {
function aptget_update {
update_repos
retry_with_increasing_wait apt-get -y -qq update
retry_with_increasing_wait apt-get update
check_error $?
}
@ -80,9 +80,7 @@ function aptget_install {
function clientdata_init {
mkdir shared
if [[ "${PWD##*/}" != clientdata && ! -L ../clientdata ]]; then
ln -s "$PWD" ../clientdata
check_error $?
fi
cd ..
ln -s clientdata client-data
check_error $?
}

View file

@ -1,62 +1,33 @@
#!/bin/bash
client_branch="$1"
client_job_name="$2"
logfile="$3"
set -e
source ./.tools/init.sh
clientdata_init
# Stop tzdata from asking to pick a location, hanging the pipeline
export DEBIAN_FRONTEND=noninteractive
aptget_update
# Evidently libcurl3-gnutls ships libcurl4-gnutls.so.4
aptget_install \
x11-utils xdg-utils xsel \
ttf-dejavu-core fonts-liberation \
libcurl3-gnutls \
libsdl-gfx1.2 libsdl-image1.2 libsdl-mixer1.2 libsdl-net1.2 libsdl-ttf2.0 \
wget unzip
pwd
ls -la
ls
# --retry-on-host-error unknown option?
wget --retry-connrefused --tries=10 --waitretry=5 \
--progress=dot:mega \
-O "$client_job_name.zip" \
"https://git.themanaworld.org/mana/appimg-builder/-/jobs/artifacts/$client_branch/download?job=$client_job_name"
./clientdata/.tools/downloadlib.sh manaplus master || exit 1
# Docker will cache the unpacked files, so make unzip only extract
# if the archive contains newer ones. The same filesystem will
# most likely contain exctracted MV/M+ from both CI jobs.
unzip -o -u "$client_job_name.zip" -d "$client_job_name"
pushd "$client_job_name"
# Print package sums to troubleshoot docker caching
printf "Using debian packages with the following checksums:\n"
cat deb-sha256checksum.txt
dpkg -i "manaplus-data_latest_all.deb"
dpkg -i "manaplus_latest_amd64.deb"
dpkg -i "manaplus-dbg_latest_amd64.deb"
popd
export HOME=`pwd`/clientdata/shared
PATH="$PATH:/usr/games"
cd manaplus_master || exit 1
export SDL_VIDEODRIVER=dummy
manaplus --version || exit 1
manaplus --validate -u -d clientdata || exit 1
./bin/manaplus --validate -u -d ../clientdata || exit 1
log_path="$HOME/.local/share/mana/$logfile"
if [[ ! -f "$log_path" ]]; then
printf "Error: logfile %s not found\n" "$log_path"
ls "${HOME}/.local/share/mana/manaplus.log" || exit 1
grep -A 10 "Assert:" "${HOME}/.local/share/mana/manaplus.log"
if [ "$?" == 0 ]; then
echo "Asserts found"
exit 1
fi
# grep exits 0 (OK) if it found matches, this condition inverts it
if grep -A 10 "Assert:" "$log_path"; then
echo "Error: Asserts found"
exit 1
fi
cd ..

18
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,18 @@
# Contributing
*This repository is* ***feature-frozen****. Anything that adds new content will NOT be merged.*
Only patches for the following will be accepted:
## High priority patches
- Missing sprites for already-released content [(green Error boxes)](https://github.com/themanaworld/tmwa-client-data/blob/master/graphics/sprites/error.png).
- XML errors.
## Low priority patches
- Typos.
- Missing or incorrect item stats.
- Missing or incorrect translation information in XML files.
- Mapping errors (tiles on the wrong layer).
- Quest log modifications.
- Missing frames in sprites.
- Misc visual improvements (avatars, icons, ...).

View file

@ -101,7 +101,6 @@
<effect id="72" particle="graphics/particles/rainbow-hit.xml"/>
<effect id="73" audio="system/boom.ogg" particle="graphics/particles/rainbow-crit.xml"/>
<effect id="74" audio="weapons/gun/gun-hit1.ogg"/>
<effect id="75" audio="system/warp.ogg" particle="graphics/particles/magic-blue-teleport.particle.xml"/>
<!-- #betsanc (protect) end -->
<effect id="111" audio="magic/betsanc-off.ogg" particle="graphics/particles/magic.shield.xml"/>
<!-- <effect id="112" particle="graphics/particles/magic.haste-ends.xml"/>-->

Binary file not shown.

Before

Width:  |  Height:  |  Size: 326 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 438 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 569 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 613 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 865 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 158 B

View file

@ -1,226 +0,0 @@
<?xml version="1.0"?>
<!--
Raindrops in two different sizes fall to the ground and splash on the ground.
-->
<effect>
<particle position-x="0" position-y="0" position-z="22" lifetime="1">
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-8" max="8"/>
<property name="position-y" min="-8" max="8"/>
<property name="position-z" min="-8" max="8"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.5"/>
<property name="momentum" value="0"/>
<property name="lifetime" value="50"/>
<property name="fade-in" value="1"/>
<property name="fade-out" value="30"/>
<property name="bounce" value="0"/>
<property name="output" min="0" max="1"/>
<property name="output-pause" value="0"/>
<property name="power" min="1" max="1"/>
<property name="randomness" value="0"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/bubble-ani_6x6.png" width="6" height="6">
<sequence start="0" end="1" delay="66"/>
</animation>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-8" max="8"/>
<property name="position-y" min="-8" max="8"/>
<property name="position-z" min="-8" max="8"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="22"/>
<property name="output" min="0" max="1"/>
<property name="lifetime" value="50"/>
<property name="fade-in" value="1"/>
<property name="fade-out" value="40"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.7"/>
<property name="momentum" value="0"/>
<property name="power" min="1" max="1"/>
<property name="bounce" value="0.000001"/>
<property name="randomness" value="0"/>
<property name="follow-parent" value="0"/>
<property name="image" value="graphics/particles/raindrop_3x5.png"/>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="222"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="180"/>
<property name="fade-in" value="40"/>
<property name="fade-out" value="160"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.7"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/raindrop-hit_8x8.png" width="8" height="8">
<frame index="0" delay="80"/>
<sequence start="1" end="3" delay="22"/>
<frame index="4" delay="5000"/>
</animation>
</emitter>
</emitter>
</emitter>
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-8" max="8"/>
<property name="position-y" min="-8" max="8"/>
<property name="position-z" min="-8" max="8"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.5"/>
<property name="momentum" value="0"/>
<property name="lifetime" value="50"/>
<property name="fade-in" value="1"/>
<property name="fade-out" value="30"/>
<property name="bounce" value="0"/>
<property name="output" min="0" max="1"/>
<property name="output-pause" value="0"/>
<property name="power" min="1" max="1"/>
<property name="randomness" value="0"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/bubble-ani_8x8.png" width="8" height="8">
<sequence start="0" end="1" delay="66"/>
</animation>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-8" max="8"/>
<property name="position-y" min="-8" max="8"/>
<property name="position-z" min="-8" max="8"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="44"/>
<property name="output" min="0" max="1"/>
<property name="lifetime" value="50"/>
<property name="fade-in" value="1"/>
<property name="fade-out" value="40"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.7"/>
<property name="momentum" value="0"/>
<property name="power" min="1" max="1"/>
<property name="bounce" value="0.000001"/>
<property name="randomness" value="0"/>
<property name="follow-parent" value="0"/>
<property name="image" value="graphics/particles/raindrop_8x8.png"/>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="444"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="180"/>
<property name="fade-in" value="40"/>
<property name="fade-out" value="160"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.7"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/raindrop-hit_16x16.png" width="16" height="16">
<frame index="0" delay="80"/>
<sequence start="1" end="3" delay="22"/>
<frame index="4" delay="5000"/>
</animation>
</emitter>
</emitter>
</emitter>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-8" max="8"/>
<property name="position-y" min="-8" max="8"/>
<property name="position-z" min="-8" max="8"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="0"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="50"/>
<property name="fade-in" value="1"/>
<property name="fade-out" value="40"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.7"/>
<property name="momentum" value="0"/>
<property name="power" min="1" max="1"/>
<property name="bounce" value="0.000001"/>
<property name="randomness" value="0"/>
<property name="follow-parent" value="0"/>
<property name="image" value="graphics/particles/raindrop_3x5.png"/>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="222"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="180"/>
<property name="fade-in" value="40"/>
<property name="fade-out" value="160"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.7"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/raindrop-hit_8x8.png" width="8" height="8">
<frame index="0" delay="80"/>
<sequence start="1" end="3" delay="22"/>
<frame index="4" delay="5000"/>
</animation>
</emitter>
</emitter>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-8" max="8"/>
<property name="position-y" min="-8" max="8"/>
<property name="position-z" min="-8" max="8"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="2"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="50"/>
<property name="fade-in" value="1"/>
<property name="fade-out" value="40"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.7"/>
<property name="momentum" value="0"/>
<property name="power" min="1" max="1"/>
<property name="bounce" value="0.000001"/>
<property name="randomness" value="0"/>
<property name="follow-parent" value="0"/>
<property name="image" value="graphics/particles/raindrop_8x8.png"/>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="222"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="200"/>
<property name="fade-in" value="40"/>
<property name="fade-out" value="180"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.7"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/raindrop-hit_16x16.png" width="16" height="16">
<frame index="0" delay="80"/>
<sequence start="1" end="6" delay="22"/>
<frame index="7" delay="5000"/>
</animation>
</emitter>
</emitter>
</particle>
</effect>

View file

@ -1,92 +0,0 @@
<?xml version="1.0"?>
<!--
Raindrops in two different sizes fall to the ground and splash on the ground.
-->
<effect>
<particle position-x="0" position-y="0" position-z="10">
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-16" max="24"/>
<property name="position-y" min="-28" max="-8"/>
<property name="position-z" min="32" max="28"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="8"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="50"/>
<property name="fade-in" value="1"/>
<property name="fade-out" value="40"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.6"/>
<property name="momentum" value="0"/>
<property name="power" min="1" max="1"/>
<property name="bounce" value="0.000001"/>
<property name="randomness" value="0"/>
<property name="image" value="graphics/particles/raindrop_3x5.png"/>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="222"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="180"/>
<property name="fade-in" value="40"/>
<property name="fade-out" value="160"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.6"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/raindrop-hit_8x8.png" width="8" height="8">
<frame index="0" delay="80"/>
<sequence start="1" end="3" delay="22"/>
<frame index="4" delay="5000"/>
</animation>
</emitter>
</emitter>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-16" max="24"/>
<property name="position-y" min="-28" max="-8"/>
<property name="position-z" min="32" max="28"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="111"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="50"/>
<property name="fade-in" value="1"/>
<property name="fade-out" value="40"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.6"/>
<property name="momentum" value="0"/>
<property name="power" min="1" max="1"/>
<property name="bounce" value="0.000001"/>
<property name="randomness" value="0"/>
<property name="image" value="graphics/particles/raindrop_8x8.png"/>
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="output-pause" value="222"/>
<property name="output" min="1" max="1"/>
<property name="lifetime" value="200"/>
<property name="fade-in" value="40"/>
<property name="fade-out" value="180"/>
<property name="alpha" value="1"/>
<property name="gravity" value="0.6"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/raindrop-hit_16x16.png" width="16" height="16">
<frame index="0" delay="80"/>
<sequence start="1" end="6" delay="22"/>
<frame index="7" delay="5000"/>
</animation>
</emitter>
</emitter>
</particle>
</effect>

View file

@ -7,15 +7,14 @@ Small white particles (spores/snowflakes) which float to the ground and is shot
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.03"/>
<property name="gravity" value="0.01"/>
<property name="momentum" value="0.9"/>
<property name="image" value="graphics/particles/orb-small.png|W:#ffffff"/>
<property name="lifetime" value="220"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="210"/>
<property name="bounce" value="0.000001"/>
<property name="bounce" value="0.8"/>
<property name="output" min="4" max="6"/>
<property name="output-pause" value="0"/>
<property name="power" min="0.5" max="1"/>
@ -28,15 +27,14 @@ Small white particles (spores/snowflakes) which float to the ground and is shot
<property name="horizontal-angle" min="0" max="360"/>
<property name="output" min="1" max="2"/>
<property name="output-pause" value="2"/>
<property name="lifetime" value="400"/>
<property name="lifetime" value="220"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="350"/>
<property name="acceleration" value="0"/>
<property name="fade-out" value="210"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.04"/>
<property name="gravity" value="0.01"/>
<property name="momentum" value="0.9"/>
<property name="power" min="0" max="1"/>
<property name="bounce" value="0.000001"/>
<property name="bounce" value="0.1"/>
<property name="randomness" value="100"/>
<property name="follow-parent" value="0"/>
<property name="image" value="graphics/particles/snowflake-7x7.png"/>
@ -45,15 +43,14 @@ Small white particles (spores/snowflakes) which float to the ground and is shot
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.03"/>
<property name="gravity" value="0.01"/>
<property name="momentum" value="0.9"/>
<property name="image" value="graphics/particles/orb-small.png|W:#ffffff"/>
<property name="lifetime" value="220"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="210"/>
<property name="bounce" value="0.000001"/>
<property name="bounce" value="0.8"/>
<property name="output" min="4" max="6"/>
<property name="output-pause" value="0"/>
<property name="power" min="0.5" max="1"/>
@ -66,15 +63,14 @@ Small white particles (spores/snowflakes) which float to the ground and is shot
<property name="horizontal-angle" min="0" max="360"/>
<property name="output" min="2" max="3"/>
<property name="output-pause" value="1"/>
<property name="lifetime" value="400"/>
<property name="lifetime" value="180"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="350"/>
<property name="acceleration" value="0"/>
<property name="fade-out" value="170"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.04"/>
<property name="gravity" value="0.03"/>
<property name="momentum" value="0.9"/>
<property name="power" min="0" max="1"/>
<property name="bounce" value="0.000001"/>
<property name="bounce" value="0.1"/>
<property name="randomness" value="100"/>
<property name="follow-parent" value="1"/>
<property name="image" value="graphics/particles/snowflake-7x7.png"/>

View file

@ -8,18 +8,18 @@ Small white particles (spores/snowflakes) which float to the ground.
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-16" max="24"/>
<property name="position-y" min="-28" max="-8"/>
<property name="position-z" min="32" max="28"/>
<property name="acceleration" value="0"/>
<property name="position-x" min="-16" max="16"/>
<property name="position-y" min="-48" max="8"/>
<property name="position-z" min="-16" max="16"/>
<property name="acceleration" value="0.01"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.3"/>
<property name="momentum" value="0"/>
<property name="gravity" value="0.01"/>
<property name="momentum" value="0.9"/>
<property name="image" value="graphics/particles/orb-small.png|W:#ffffff"/>
<property name="lifetime" value="60"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="50"/>
<property name="bounce" value="0.000001"/>
<property name="bounce" value="0.8"/>
<property name="output-pause" value="8"/>
<property name="output" min="1" max="2"/>
<property name="power" min="0.5" max="1.5"/>
@ -29,20 +29,20 @@ Small white particles (spores/snowflakes) which float to the ground.
<emitter>
<property name="vertical-angle" min="-300" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-16" max="24"/>
<property name="position-y" min="-28" max="-8"/>
<property name="position-z" min="32" max="28"/>
<property name="acceleration" value="0"/>
<property name="position-x" min="-16" max="16"/>
<property name="position-y" min="-48" max="8"/>
<property name="position-z" min="-16" max="16"/>
<property name="acceleration" value="0.01"/>
<property name="output-pause" value="8"/>
<property name="output" min="0" max="1"/>
<property name="lifetime" value="400"/>
<property name="lifetime" value="100"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="350"/>
<property name="fade-out" value="90"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.4"/>
<property name="momentum" value="0"/>
<property name="power" min="1" max="1.5"/>
<property name="bounce" value="0.000001"/>
<property name="gravity" value="0.01"/>
<property name="momentum" value="0.9"/>
<property name="power" min="0" max="1"/>
<property name="bounce" value="0.1"/>
<property name="randomness" value="100"/>
<property name="image" value="graphics/particles/snowflake-7x7.png"/>
</emitter>

View file

@ -4,7 +4,6 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
-->
<effect>
<particle position-x="0" position-y="0" position-z="22" lifetime="1">
<!-- projectile tail -->
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
@ -15,9 +14,9 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
<property name="lifetime" value="220"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="210"/>
<property name="bounce" value="0.000001"/>
<property name="output" min="3" max="5"/>
<property name="output-pause" value="2"/>
<property name="bounce" value="0.8"/>
<property name="output" min="4" max="6"/>
<property name="output-pause" value="0"/>
<property name="power" min="0.5" max="1"/>
<property name="randomness" value="100"/>
<property name="follow-parent" value="0"/>
@ -33,34 +32,32 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
<property name="lifetime" value="220"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="210"/>
<property name="bounce" value="0.000001"/>
<property name="output" min="1" max="1"/>
<property name="output-pause" value="4"/>
<property name="bounce" value="0.8"/>
<property name="output" min="1" max="2"/>
<property name="output-pause" value="3"/>
<property name="power" min="0.5" max="1.5"/>
<property name="randomness" value="100"/>
<property name="follow-parent" value="0"/>
<emitter>
<property name="vertical-angle" min="-30" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="output" min="0" max="1"/>
<property name="output-pause" value="33"/>
<property name="lifetime" value="420"/>
<property name="fade-in" value="200"/>
<property name="fade-out" value="410"/>
<property name="output-pause" value="12"/>
<property name="lifetime" value="220"/>
<property name="fade-in" value="80"/>
<property name="fade-out" value="210"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.01"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="follow-parent" value="0"/>
<property name="gravity" value="0.1"/>
<property name="power" min="0" max="1"/>
<property name="bounce" value="0.1"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/flame_8x8.png" width="8" height="8">
<sequence start="0" end="5" delay="11"/>
<sequence start="4" end="0" delay="11"/>
<sequence start="0" end="4" delay="11"/>
<sequence start="3" end="0" delay="11"/>
</animation>
</emitter>
</emitter>
<!-- projectile -->
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
@ -71,9 +68,9 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
<property name="lifetime" value="220"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="210"/>
<property name="bounce" value="0.000001"/>
<property name="bounce" value="0.8"/>
<property name="output" min="4" max="6"/>
<property name="output-pause" value="1"/>
<property name="output-pause" value="0"/>
<property name="power" min="0.5" max="1"/>
<property name="randomness" value="100"/>
<property name="follow-parent" value="1"/>
@ -86,12 +83,12 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
<property name="gravity" value="0.01"/>
<property name="momentum" value="0.9"/>
<property name="image" value="graphics/particles/orb-small.png|W:#ffff00"/>
<property name="lifetime" value="220"/>
<property name="lifetime" value="180"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="210"/>
<property name="bounce" value="0.000001"/>
<property name="output" min="1" max="1"/>
<property name="output-pause" value="4"/>
<property name="fade-out" value="170"/>
<property name="bounce" value="0.8"/>
<property name="output" min="1" max="2"/>
<property name="output-pause" value="2"/>
<property name="power" min="0.5" max="1"/>
<property name="randomness" value="100"/>
<property name="follow-parent" value="1"/>
@ -100,15 +97,15 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
<property name="vertical-angle" min="-30" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="output" min="0" max="1"/>
<property name="output-pause" value="33"/>
<property name="lifetime" value="420"/>
<property name="fade-in" value="200"/>
<property name="fade-out" value="410"/>
<property name="output-pause" value="8"/>
<property name="lifetime" value="180"/>
<property name="fade-in" value="80"/>
<property name="fade-out" value="170"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.01"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="follow-parent" value="0"/>
<property name="gravity" value="0.1"/>
<property name="power" min="0" max="1"/>
<property name="bounce" value="0.1"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/flame_8x8.png" width="8" height="8">
<sequence start="0" end="5" delay="11"/>
<sequence start="4" end="0" delay="11"/>

View file

@ -8,20 +8,20 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-16" max="24"/>
<property name="position-y" min="-28" max="-8"/>
<property name="position-z" min="32" max="28"/>
<property name="acceleration" value="0"/>
<property name="position-x" min="-16" max="16"/>
<property name="position-y" min="-48" max="8"/>
<property name="position-z" min="-16" max="16"/>
<property name="acceleration" value="0.01"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.02"/>
<property name="momentum" value="0.9"/>
<property name="image" value="graphics/particles/orb-small.png|W:#ffff00"/>
<property name="lifetime" value="220"/>
<property name="lifetime" value="60"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="210"/>
<property name="bounce" value="0.000001"/>
<property name="output-pause" value="22"/>
<property name="output" min="1" max="1"/>
<property name="fade-out" value="50"/>
<property name="bounce" value="0.8"/>
<property name="output-pause" value="11"/>
<property name="output" min="1" max="2"/>
<property name="power" min="0.5" max="1.5"/>
<property name="randomness" value="100"/>
</emitter>
@ -29,19 +29,19 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
<emitter>
<property name="vertical-angle" min="0" max="360"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="position-x" min="-16" max="24"/>
<property name="position-y" min="-28" max="-8"/>
<property name="position-z" min="32" max="28"/>
<property name="acceleration" value="0"/>
<property name="position-x" min="-8" max="24"/>
<property name="position-y" min="-48" max="8"/>
<property name="position-z" min="-16" max="16"/>
<property name="acceleration" value="0.01"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.01"/>
<property name="momentum" value="0.9"/>
<property name="image" value="graphics/particles/orb-small.png|W:#ffff00"/>
<property name="lifetime" value="220"/>
<property name="lifetime" value="60"/>
<property name="fade-in" value="10"/>
<property name="fade-out" value="210"/>
<property name="bounce" value="0.000001"/>
<property name="output-pause" value="33"/>
<property name="fade-out" value="50"/>
<property name="bounce" value="0.8"/>
<property name="output-pause" value="22"/>
<property name="output" min="1" max="1"/>
<property name="power" min="0.5" max="1.5"/>
<property name="randomness" value="100"/>
@ -49,20 +49,20 @@ Small yellow particles (spores/sundust) which float to the ground and start to b
<emitter>
<property name="vertical-angle" min="-30" max="-150"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="acceleration" value="0"/>
<property name="acceleration" value="0.01"/>
<property name="output-pause" value="44"/>
<property name="output" min="0" max="1"/>
<property name="lifetime" value="420"/>
<property name="fade-in" value="200"/>
<property name="fade-out" value="410"/>
<property name="lifetime" value="160"/>
<property name="fade-in" value="40"/>
<property name="fade-out" value="150"/>
<property name="alpha" value="0.9"/>
<property name="gravity" value="0.02"/>
<property name="power" min="0" max="0"/>
<property name="bounce" value="0.000001"/>
<property name="gravity" value="0.09"/>
<property name="power" min="0" max="1"/>
<property name="bounce" value="0.1"/>
<property name="follow-parent" value="1"/>
<animation imageset="graphics/particles/flame_8x8.png" width="8" height="8">
<sequence start="0" end="5" delay="22"/>
<sequence start="4" end="0" delay="22"/>
<sequence start="0" end="4" delay="22"/>
<sequence start="3" end="0" delay="22"/>
</animation>
</emitter>
</emitter>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 B

View file

@ -1,5 +0,0 @@
<?xml version="1.0"?>
<sprite>
<imageset height="40" name="base" src="graphics/sprites/equipment/head/rainshroomhat.png" width="40"/>
<include file="hairstyles/hairstyle01-female.xml"/>
</sprite>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 748 B

View file

@ -1,5 +0,0 @@
<?xml version="1.0"?>
<sprite>
<imageset name="base" src="graphics/sprites/equipment/head/rainshroomhat.png" width="40" height="40"/>
<include file="hairstyles/hairstyle01-male.xml"/>
</sprite>

View file

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

Before After
Before After

View file

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<sprite>
<imageset name="base" src="graphics/sprites/monsters/wonderwoodling.png" width="112" height="112"/>
<imageset name="base" src="graphics/sprites/monsters/ent.png" width="112" height="112"/>
<action name="stand" imageset="base">
<animation direction="down">
<frame index="0"/>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 KiB

View file

@ -1,64 +0,0 @@
<?xml version="1.0"?>
<sprite>
<imageset name="base" src="graphics/sprites/monsters/mushroom-rain.png" width="42" height="33"/>
<action name="stand" imageset="base">
<animation direction="down">
<frame index="0" offsetX="7" offsetY="-10"/>
</animation>
<animation direction="left">
<frame index="10" offsetX="5" offsetY="-10"/>
</animation>
<animation direction="up">
<frame index="20" offsetX="7" offsetY="-10"/>
</animation>
<animation direction="right">
<frame index="30" offsetX="7" offsetY="-10"/>
</animation>
</action>
<action name="walk" imageset="base">
<animation direction="down">
<sequence start="1" end="4" delay="125" offsetX="7" offsetY="-10"/>
</animation>
<animation direction="left">
<sequence start="11" end="14" delay="125" offsetX="5" offsetY="-10"/>
</animation>
<animation direction="up">
<sequence start="21" end="24" delay="125" offsetX="7" offsetY="-10"/>
</animation>
<animation direction="right">
<sequence start="31" end="34" delay="250" offsetX="7" offsetY="-10"/>
</animation>
</action>
<action name="dead" imageset="base">
<animation direction="down">
<frame index="9" offsetX="7" offsetY="-10"/>
</animation>
<animation direction="left">
<frame index="19" offsetX="5" offsetY="-10"/>
</animation>
<animation direction="up">
<frame index="29" offsetX="7" offsetY="-10"/>
</animation>
<animation direction="right">
<frame index="39" offsetX="7" offsetY="-10"/>
</animation>
</action>
<action name="attack" imageset="base">
<animation direction="down">
<sequence start="5" end="8" delay="150" offsetX="7" offsetY="-10"/>
<end/>
</animation>
<animation direction="left">
<sequence start="15" end="18" delay="150" offsetX="5" offsetY="-10"/>
<end/>
</animation>
<animation direction="up">
<sequence start="25" end="28" delay="150" offsetX="7" offsetY="-10"/>
<end/>
</animation>
<animation direction="right">
<sequence start="35" end="38" delay="150" offsetX="7" offsetY="-10"/>
<end/>
</animation>
</action>
</sprite>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

View file

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<sprite>
<imageset name="base" src="graphics/sprites/npcs/portal_32x64-01.png" width="32" height="64"/>
<action name="stand" imageset="base">
<animation direction="default">
<sequence start="1" end="12" offsetY="-8" delay="222"/>
</animation>
</action>
</sprite>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 413 B

View file

@ -1,9 +0,0 @@
<?xml version="1.0"?>
<sprite variants="1" variant_offset="1">
<imageset name="base" src="graphics/sprites/npcs/teapot.png" width="32" height="32"/>
<action name="stand" imageset="base">
<animation direction="default">
<frame index="0"/>
</animation>
</action>
</sprite>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

View file

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Before After
Before After

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<tileset name="Christmas" tilewidth="32" tileheight="32">
<image source="christmas.png" width="512" height="608"/>
</tileset>

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<tileset name="LoF woodland_indoor" tilewidth="32" tileheight="32">
<image source="woodland_indoor.png" width="512" height="512"/>
</tileset>

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<tileset name="LoF woodland-indoor-extra" tilewidth="32" tileheight="32">
<image source="woodland_indoor_extra.png" width="512" height="512"/>
</tileset>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Before After
Before After

View file

@ -7,6 +7,6 @@
effect="Critical +10 / Hit +25"
type="equip-ammo"
attack="65"
weight="1"
weight="12"
/>
</items>

View file

@ -241,5 +241,4 @@
<include name="items/equip-head/item5402_RedHeadSlime.xml"/>
<include name="items/equip-head/item5403_GreenHeadSlime.xml"/>
<include name="items/equip-head/item5404_BlueHeadSlime.xml"/>
<include name="items/equip-head/item5407_RainshroomHat.xml"/>
</items>

View file

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<items>
<item id="1203" image="equipment/head/rangerhat.png" name="Ranger Hat" description="A leather hat traditionally worn by rangers." mattack="-1" type="equip-head" defense="2" weight="20">
<item id="1203" image="equipment/head/rangerhat.png" name="Ranger Hat" description="A leather hat traditionally worn by rangers." mattack="-1" type="equip-head" defense="2" weight="20" sellProtected="true">
<sprite gender="unisex">equipment/head/rangerhat.xml</sprite>
<sprite gender="female">equipment/head/rangerhat-female.xml</sprite>
</item>

View file

@ -1,7 +1,6 @@
<?xml version="1.0"?>
<items>
<item id="5203" image="equipment/head/moonshroomhat.png" name="Moonshroom Hat" description="You feel like the man in the moon with this hat." type="equip-head" defense="15" mattack="5" weight="30" sellProtected="true">
<particlefx>graphics/particles/monster-mushroom-moon.particle.xml</particlefx>
<sprite gender="unisex">equipment/head/moonshroomhat.xml</sprite>
<sprite gender="female">equipment/head/moonshroomhat-female.xml</sprite>
<replace sprite="hair">

View file

@ -1,7 +1,6 @@
<?xml version="1.0"?>
<items>
<item id="5392" image="equipment/head/sunshroomhat.png" name="Sunshroom Hat" description="Your head is always warm with this hat and you have light at night." type="equip-head" defense="15" mattack="5" weight="30" sellProtected="true">
<particlefx>graphics/particles/monster-mushroom-sun.particle.xml</particlefx>
<sprite gender="unisex">equipment/head/sunshroomhat.xml</sprite>
<sprite gender="female">equipment/head/sunshroomhat-female.xml</sprite>
<replace sprite="hair">

View file

@ -1,7 +1,6 @@
<?xml version="1.0"?>
<items>
<item id="5396" image="equipment/head/snowshroomhat.png" name="Snowshroom Hat" description="Your are pretty cool with this hat." type="equip-head" defense="15" mattack="5" weight="30" sellProtected="true">
<particlefx>graphics/particles/monster-mushroom-snow.particle.xml</particlefx>
<sprite gender="unisex">equipment/head/snowshroomhat.xml</sprite>
<sprite gender="female">equipment/head/snowshroomhat-female.xml</sprite>
<replace sprite="hair">

View file

@ -1,11 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="5407" image="equipment/head/rainshroomhat.png" name="Rainshroom Hat" description="Makes umbrellas useless, the rain is always right on your head. but plants love you when you have this hat on, they are always well watered." type="equip-head" defense="15" mattack="5" weight="30" sellProtected="true">
<particlefx>graphics/particles/monster-mushroom-rain.particle.xml</particlefx>
<sprite gender="unisex">equipment/head/rainshroomhat.xml</sprite>
<sprite gender="female">equipment/head/rainshroomhat-female.xml</sprite>
<replace sprite="hair">
<item from="-6" to="-1"/>
</replace>
</item>
</items>

View file

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<items>
<item id="731" image="equipment/legs/assassinpants.png" name="Assassin Pants" description="Pants for a master assassin. (Brawler only: Strength +2 / Dexterity +1)" mattack="-5" type="equip-torso" defense="4" agi="5" weight="20" sellProtected="true">
<item id="731" image="equipment/legs/assassinpants.png" name="Assassin Pants" description="Pants for a master assassin. (Brawler only: Strength +2 / Dexterity +1)" mattack="-5" type="equip-torso" defense="4" agi="5" flee="5" weight="20" sellProtected="true">
<sprite gender="unisex">equipment/legs/assassin.xml</sprite>
<sprite gender="female">equipment/legs/assassin-female.xml</sprite>
</item>

View file

@ -4,6 +4,7 @@
image="equipment/shield/dragonshield.png"
name="Dragon Shield"
description="A mighty shield from the dragons of another world."
effect="Unobtainable."
defense="27"
mattack="-200"
type="equip-shield"

View file

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<items>
<item id="645" image="equipment/chest/lightplatemail.png|W:#573f10,9c8226,d3c04b,ffffff" name="Golden Platemail" description="A plate mail made from gold, which only the richest of the richest can afford." mattack="-100" type="equip-torso" defense="25" criticaldefense="5" weight="4500" sellProtected="true">
<item id="645" image="equipment/chest/lightplatemail.png|W:#573f10,9c8226,d3c04b,ffffff" name="Golden Platemail" description="A plate mail made from gold, which only the richest of the richest can afford." mattack="-100" type="equip-torso" defense="25" weight="4500" sellProtected="true">
<sprite gender="unisex">equipment/chest/lightplatemail.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
<sprite gender="female">equipment/chest/lightplatemail-female.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
</item>

View file

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<items>
<item id="659" image="equipment/chest/warlordplate.png|W:#573f10,9c8226,d3c04b,ffffff" name="Golden Warlord Plate" description="Strong and decorative armor made from gold." mattack="-110" type="equip-torso" defense="27" criticaldefense="10" weight="7600" sellProtected="true">
<item id="659" image="equipment/chest/warlordplate.png|W:#573f10,9c8226,d3c04b,ffffff" name="Golden Warlord Plate" description="Strong and decorative armor made from gold." mattack="-110" type="equip-torso" defense="27" weight="7600" sellProtected="true">
<sprite gender="unisex">equipment/chest/warlordplate.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
<sprite gender="female">equipment/chest/warlordplate-female.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
</item>

View file

@ -299,10 +299,4 @@
<include name="items/generic/item5389_SpeltSeeds.xml"/>
<include name="items/generic/item5390_MoonDust.xml"/>
<include name="items/generic/item5391_SunDust.xml"/>
<include name="items/generic/item5410_WonderWood.xml"/>
<include name="items/generic/item5411_WonderWoodlingBlossom.xml"/>
<include name="items/generic/item5412_WonderWoodlingSeed.xml"/>
<include name="items/generic/item5413_Moonshiner.xml"/>
<include name="items/generic/item5414_Raindrop.xml"/>
<include name="items/generic/item5415_PinkQuartz.xml"/>
</items>

View file

@ -5,5 +5,5 @@
name="Snowflake"
description="A weightless (and worthless) snow flake. The winter has come!"
type="generic"
weight="1"/>
weight="0"/>
</items>

View file

@ -1,4 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="5410" image="generic/wonder-wood.png" name="Wonder Wood" description="A wood infused with mana it can grow without water and light." type="generic" weight="10"/>
</items>

View file

@ -1,4 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="5411" image="generic/blossom-wonderwoodling.png" name="Wonder Woodling Blossom" description="The blossom of a wonder woodling with special care it can give seeds even when broken apart." type="generic" weight="5"/>
</items>

View file

@ -1,4 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="5412" image="generic/seed-wonderwoodling.png" name="Wonder Woodling Seed" description="The seed of a wonder woodling." type="generic" weight="5"/>
</items>

View file

@ -1,4 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="5413" image="generic/bottle-moon.png" name="Moonshiner" description="A strange liquid that shines in the same color and intensity as a full moon." type="generic" weight="10"/>
</items>

View file

@ -1,4 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="5414" image="generic/raindrop.png" name="Raindrop" description="This raindrop appeared as a drop after your final chop." type="generic" weight="1"/>
</items>

View file

@ -1,4 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="5415" image="generic/crystal-pink-quartz.png" name="Pink Quartz" description="A pink crystal." type="generic" weight="20"/>
</items>

View file

@ -85,8 +85,6 @@
<include name="items/usable/item1258_GlutenFreeHoney.xml"/>
<include name="items/usable/item1280_Scissors.xml"/>
<include name="items/usable/item1281_ShockSweet.xml"/>
<include name="items/usable/item1283_ArrowBundle.xml"/>
<include name="items/usable/item1284_LightningOrb.xml"/>
<include name="items/usable/item3001_RubberBat.xml"/>
<include name="items/usable/item3006_TonoriDelight.xml"/>
<include name="items/usable/item3007_Marshmallow.xml"/>

View file

@ -1,4 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="1283" image="use/others/arrow_bundle.png" name="Arrow Bundle" description="Someone droppped a bunch of arrows." useButton="Unbundle" type="usable" weight="100"/>
</items>

View file

@ -1,13 +0,0 @@
<?xml version="1.0"?>
<items>
<item id="1284"
image="use/others/lightning-orb.png"
name="Orb of Ball Lightnings"
description="Strange thing dropped by Reaper, it allows owner to throw ball lightnings!"
effect = "Fires few lightning balls at your enemies!"
useButton="Fire!"
type="usable"
weight="100"
sellProtected="true"
/>
</items>

View file

@ -1,4 +1,4 @@
<?xml version="1.0"?>
<items>
<item id="5251" image="use/food/tomato.png" name="Tomato" description="Please be civilized and don't throw it at anyone!" type="usable" hp="200" mp="5" weight="7"/>
<item id="5251" image="use/food/tomato.png" name="Tomato" description="Please be civilized and don't throw it at anyone!" type="usable" hp="200" mp="5" weight="5"/>
</items>

View file

@ -287,7 +287,6 @@ File | Artists | Licenses
`graphics/items/equipment/head/pvpcap.png` | Black Don, kytty | GPLv2
`graphics/items/equipment/head/pvpcap-golden.png` | Black Don, kytty, Ledmitz | GPLv2
`graphics/items/equipment/head/rabbit-ears.png` | Black Don, Harufym | GPLv2
`graphics/items/equipment/head/rainshroomhat.png` | Cassy, HoraK-FDF | CC BY-SA 3.0
`graphics/items/equipment/head/rangerhat.png` | Pauan | GPLv2
`graphics/items/equipment/head/rednose.png` | ChefChelios, UntamedMonkey | GPLv2, CC BY-SA 3.0
`graphics/items/equipment/head/rosehat.png` | Nami, skipy, Alige | GPLv2
@ -406,11 +405,9 @@ File | Artists | Licenses
`graphics/items/generic/blackpearl.png` | :grey_question:, Fate, Enchilado | GPLv2
`graphics/items/generic/blackscorpionclaw.png` | Saulc | CC BY-SA 3.0
`graphics/items/generic/blanket.png` | Nami, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/blossom-wonderwoodling.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/bone.png` | Yosuhara, Enchilado | GPLv2
`graphics/items/generic/bottle-empty.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/bottle-ice.png` | FotherJ, Nami, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/bottle-moon.png` | FotherJ, Enchilado, HoraK-FDF | GPLv2, CC BY-SA 3.0
`graphics/items/generic/bottle-sand.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/brick-a.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/broken-fourleaf-amulet.png` | Alige, Fate, Enchilado | GPLv2, CC BY-SA 3.0
@ -436,7 +433,6 @@ File | Artists | Licenses
`graphics/items/generic/crystal-black-quartz.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/crystal-crozenite.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/crystal-mountain.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/crystal-pink-quartz.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/crystalized-dragon-blood.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/dark-easter-egg.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/dark-petal.png` | Enchilado | GPLv2, CC BY-SA 3.0
@ -497,7 +493,6 @@ File | Artists | Licenses
`graphics/items/generic/powder.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/pumpkinseed.png` | Enchilado | GPLv2
`graphics/items/generic/presentbox.png` | Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/raindrop.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/rags-rotten.png` | FotherJ, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/rattotail.png` | Reid, Alige | CC BY-SA 3.0
`graphics/items/generic/rattoteeth.png` | Reid, Alige | CC BY-SA 3.0
@ -518,7 +513,6 @@ File | Artists | Licenses
`graphics/items/generic/scorpionclaw.png` | Saulc | CC BY-SA 3.0
`graphics/items/generic/scorpionstinger.png` | :grey_question:, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/scroll.png` | Adamaix, Enchilado | GPLv2
`graphics/items/generic/seed-wonderwoodling.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/sealed-soul.png` | V0id, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/shipkey.png` | Hal9000, Reid | CC BY-SA 3.0
`graphics/items/generic/silkcocoon.png` | Fate, Enchilado | GPLv2, CC BY-SA 3.0
@ -555,7 +549,6 @@ File | Artists | Licenses
`graphics/items/generic/whitefur.png` | Crush, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/wolvern-pelt.png` | Len, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/wolvern-tooth.png` | Alige, Nami, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/wonder-wood.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/generic/wooden-mouboo.png` | :grey_question:, Enchilado | GPLv2
`graphics/items/generic/wrapping-paper-dotted.png` | Lizandra, Enchilado | GPLv2, CC BY-SA 3.0
`graphics/items/generic/wrapping-paper-striped.png` | Lizandra, Enchilado | GPLv2, CC BY-SA 3.0
@ -646,10 +639,8 @@ File | Artists | Licenses
---- |:-------:|:--------:
`graphics/items/use/others/anchor-stone.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/use/others/anchor-stone-anchored.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/use/others/arrow_bundle.png` Irukard, Wellvin | GPLv2, CC BY-SA 3.0
`graphics/items/use/others/croconut.png` | Hal9000 | CC BY-SA 3.0
`graphics/items/use/others/rubberducky.png` | Salmondine, dangerDuck | GPLv2
`graphics/items/use/others/lightning-orb.png` | Hello=), Horak-FDF | GPLv2, CC BY-SA 4.0
`graphics/items/use/others/shovel.png` | Alige, Reid | CC BY-SA 3.0
`graphics/items/use/others/shovel-legendary.png` | Alige, Reid, ?, HoraK-FDF | CC BY-SA 3.0
`graphics/items/use/others/treasuremap.png` | Diego, TMW-Br | GPLv2
@ -688,8 +679,6 @@ File | Artists | Licenses
`graphics/particles/arrowh-banshee.png` | :grey_question:, V0id | GPLv2
`graphics/particles/blaze.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/bubble_8px.png` | Crush | GPLv2, CC BY-SA 3.0
`graphics/particles/bubble-ani_6x6.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/particles/bubble-ani_8x8.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/particles/anibubble_8px.png` | Crush,wushin | GPLv2, CC BY-SA 3.0
`graphics/particles/anibubble_8px_green.png` | Crush,wushin | GPLv2, CC BY-SA 3.0
`graphics/particles/beam.png` | Ledmitz | GPLv2, CC BY-SA 3.0
@ -719,10 +708,6 @@ File | Artists | Licenses
`graphics/particles/pool_32x59.particle.png` | Skipy | GPLv2
`graphics/particles/pool_65x27.particle.png` | Skipy | GPLv2
`graphics/particles/pool-undyed.png` | Alige, Skipy | GPLv2
`graphics/particles/raindrop-hit_16x16.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/particles/raindrop-hit_8x8.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/particles/raindrop_3x5.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/particles/raindrop_8x8.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/particles/rainerang.png` | Ledmitz | GPLv2, CC BY-SA 3.0
`graphics/particles/snowball.png` | Ledmitz, Reid | GPLv2, CC BY-SA 3.0
`graphics/particles/star-medium.png` | Crush | GPLv2, CC BY-SA 3.0
@ -969,7 +954,6 @@ File | Artists | Licenses
`graphics/sprites/equipment/head/pvp-cap.png` | Black Don, kytty | GPLv2
`graphics/sprites/equipment/head/pvpcap-golden.png` | Black Don, kytty, Ledmitz | GPLv2
`graphics/sprites/equipment/head/rabbit-ears.png` | Black Don, Harufym | GPLv2
`graphics/sprites/equipment/head/rainhroomhat.png` | Saulc, Cassy, HoraK-FDF | CC BY-SA 3.0
`graphics/sprites/equipment/head/rangerhat.png` | Pauan | GPLv2
`graphics/sprites/equipment/head/rednose.png` | ChefChelios, UntamedMonkey | GPLv2, CC BY-SA 3.0
`graphics/sprites/equipment/head/rosehat.png` | Nami, skipy, Alige | GPLv2
@ -1077,7 +1061,7 @@ File | Artists | Licenses
`graphics/sprites/monsters/dragon.png` | Lunovox, Jesusalva | GPLv2
`graphics/sprites/monsters/duck.png` | Meway | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/element-ball.png` | Reid | GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/wonderwoodling.png` | macmanmatty, jesusalva | CC BY-SA 4.0
`graphics/sprites/monsters/ent.png` | macmanmatty, jesusalva | CC BY-SA 4.0
`graphics/sprites/monsters/frog-big.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/frog-small.png` | Hocus | MIT, GPLv2, CC BY-SA 3.0
`graphics/sprites/monsters/ghost-pumpkin.png` | :grey_question:, Modanung | GPLv2
@ -1105,7 +1089,6 @@ File | Artists | Licenses
`graphics/sprites/monsters/moubootaur.png` | Hocus | MIT
`graphics/sprites/monsters/montblanc.png` | KokoroReflections (piratehat.png | Fettsack | GPLv2) (cannon | AntumDeluge | CC BY 3.0, OGA BY 3.0) | CC BY 4.0
`graphics/sprites/monsters/mushroom-moon.png` | Cassy, Yuuki | GPLv2
`graphics/sprites/monsters/mushroom-rain.png` | Cassy, Yuuki, HoraK-FDF | GPLv2
`graphics/sprites/monsters/mushroom-red.png` | Yuuki | GPLv2
`graphics/sprites/monsters/mushroom-snow.png` | Cassy, Yuuki, HoraK-FDF | GPLv2
`graphics/sprites/monsters/mushroom-spiky.png` | Yuuki | GPLv2
@ -1227,7 +1210,6 @@ File | Artists | Licenses
`graphics/sprites/npcs/npcs.png` | :grey_question:, Crush, Fate, Haay, Lien, Qwerty Dragon, Salmondine, Skipy, Wombat | GPLv2
`graphics/sprites/npcs/npcs2.png` | Reid, Salmondine, Skipy | GPLv2
`graphics/sprites/npcs/outfits.png` | Wombat | GPLv2, CC BY-SA 3.0
`graphics/sprites/npcs/portal_32x64-01.png` | HoraK-FDF | GPLv2, CC BY-SA 4.0
`graphics/sprites/npcs/poses.png` | Lien, Meemixes, Salmondine, Wombat | GPLv2
`graphics/sprites/npcs/saboteur.png` | Wombat | GPLv2, CC BY-SA 3.0
`graphics/sprites/npcs/sages.png` | Alige, Nami, Salmondine | GPLv2
@ -1238,8 +1220,6 @@ File | Artists | Licenses
`graphics/sprites/npcs/thermin_npcs.png` | Lien, Nami, Salmondine, Varuna | GPLv2
`graphics/sprites/npcs/xmas-palm.png` | Chayenne, :grey_question:, Enchilado | GPLv2
`graphics/sprites/npcs/xmastree-nosnow.png` | Chayenne, :grey_question:, Alige, Hal9000, Enchilado, Kekskiller, FotherJ | GPLv2
`graphics/sprites/npcs/teapot.png` | Reid | CC-BY-SA 3.0
### Tilesets
File | Artists | Licenses
@ -1248,6 +1228,7 @@ File | Artists | Licenses
`graphics/tiles/artis-lamps-x1x3.png` | Alige, Reid | GPLv2, CC BY-SA
`graphics/tiles/barbarians_outdoor.png` | Salmondine | GPLv2
`graphics/tiles/barbarians_yurt_x4.png` | Alige, Meway, Nami | GPLv2, CC BY-SA 3.0
`graphics/tiles/cabana_in_fada.png` | Lunovox?, TMW-Br | GPLv2
`graphics/tiles/castle1.png` | Alige, EJlol, Irukard, Len, MerlinX420 | GPLv2
`graphics/tiles/castle2.png` | Alige, EJlol, Irukard, IvanMorve Len, MerlinX420 | GPLv2
`graphics/tiles/cave_ani_wetwall.png` | Octalot | GPLv2
@ -1364,16 +1345,12 @@ File | Artists | Licenses
### Br Tilesets
`graphics/tilesets/br/christmastree.png` | ?, TMW-BR, TMW Org | GPL 2.0
`graphics/tilesets/br/snow_x3.png` | ?, TMW-BR | GPL 2.0
### Lof Tilesets
`graphics/tiles/lof/warp_gates.png` | ?, LoF | GPL 2.0
`graphics/tiles/lof/woodland_indoor.png` | ?, LoF | GPL 2.0
`graphics/tiles/lof/woodland_indoor_extra.png` | ?, LoF, Jesusalva | GPL 2.0
### ML Tilesets
`graphics/tiles/ml/cabana_in_fada.png` | Lunovox?, TMW-Br | GPLv2
## Sounds
File | Artists | Licenses
---- |:-------:|:--------:

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="140" height="140" tilewidth="32" tileheight="32" infinite="0" nextlayerid="9" nextobjectid="55">
<map version="1.10" tiledversion="1.11.0" orientation="orthogonal" renderorder="right-down" width="140" height="140" tilewidth="32" tileheight="32" infinite="0" nextlayerid="9" nextobjectid="53">
<properties>
<property name="minimap" value="graphics/minimaps/006-1.png"/>
<property name="music" value="Clouds_Calling.ogg"/>
@ -31,7 +31,7 @@
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,150,134,135,135,135,135,135,118,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,383,384,385,3,3,3,3,3,3,3,118,3,3,3,3,399,400,401,3,3,3,3,3,3,3,134,118,3,3,3,3,3,3,3,3,3,3,3,3,3,166,150,151,150,151,151,150,151,151,134,118,3,3,3,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,166,150,151,151,151,151,151,134,118,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,399,400,401,3,3,3,3,3,3,3,134,135,135,118,3,3,3,3,3,3,3,3,3,3,3,150,102,3,3,3,3,3,3,3,352,353,354,3,3,3,3,166,167,150,151,151,150,151,151,150,134,118,3,3,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,352,353,354,3,3,3,3,3,3,3,3,120,135,118,3,166,167,167,167,167,167,150,134,118,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,458,459,459,459,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,149,150,151,151,134,135,118,3,3,3,120,121,3,3,3,3,166,150,3,3,3,3,3,3,367,368,369,3,3,3,3,3,3,3,166,167,167,150,151,151,150,150,134,135,118,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,367,368,369,3,3,3,3,3,3,3,3,120,136,151,134,118,3,3,3,3,3,3,166,150,163,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,490,491,491,492,3,3,120,121,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,150,151,134,136,136,136,136,137,3,3,3,3,3,3,3,3,3,3,3,3,383,384,385,3,3,3,3,3,3,3,3,3,3,166,167,167,150,150,150,151,134,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,367,368,369,3,3,3,3,3,3,3,3,120,136,151,134,118,3,3,3,3,3,3,166,150,163,3,3,3,3,3,3,3,519,520,3,3,3,3,3,3,3,3,3,3,3,3,3,3,490,491,491,492,3,3,120,121,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,150,151,134,136,136,136,136,137,3,3,3,3,3,3,3,3,3,3,3,3,383,384,385,3,3,3,3,3,3,3,3,3,3,166,167,167,150,150,150,151,134,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,383,384,385,3,3,3,3,9,3,3,120,136,152,167,150,134,118,3,3,3,3,3,3,166,179,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,118,3,3,3,3,3,3,3,3,3,3,3,120,136,137,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,150,151,151,151,152,153,154,3,3,3,3,3,3,3,3,3,3,3,399,400,401,3,3,3,3,3,3,3,3,3,3,3,3,3,166,150,150,151,150,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,399,400,401,3,3,3,3,3,3,120,136,152,168,3,166,150,134,118,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,134,135,118,3,3,3,3,3,3,3,3,120,136,152,153,154,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,167,168,169,3,3,3,120,118,134,118,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,166,150,151,150,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,120,136,152,168,3,3,3,166,150,163,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,149,150,151,134,135,135,135,118,3,3,120,135,136,152,168,169,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,137,137,150,134,135,135,118,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,166,167,150,
@ -52,7 +52,7 @@
3,3,65,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,352,353,354,3,3,3,3,3,3,3,3,3,3,166,134,118,3,3,3,3,3,3,3,3,3,165,166,167,167,167,150,151,151,151,151,151,151,152,167,167,167,167,168,395,396,396,397,398,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,150,151,151,151,150,151,150,151,151,151,134,135,118,3,3,3,3,3,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,367,368,369,3,3,3,3,3,3,3,3,3,3,3,3,150,102,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,167,167,167,167,168,169,3,3,3,395,412,412,412,413,397,398,3,3,3,3,120,136,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,167,150,151,151,151,151,151,150,151,134,135,135,135,118,3,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,167,168,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,383,384,385,3,3,3,3,3,3,3,3,3,3,3,3,166,134,118,3,3,3,3,3,3,3,352,353,354,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,411,428,412,429,412,413,397,398,3,3,3,152,152,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,150,151,151,150,151,150,151,151,151,134,135,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,399,400,401,3,3,3,3,3,3,3,3,3,3,3,3,3,150,134,3,3,3,3,3,3,367,368,369,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,411,412,429,412,429,412,413,414,3,3,3,152,168,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,150,151,150,151,151,151,150,151,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,519,520,3,3,399,400,401,3,3,3,3,3,3,3,3,3,3,3,3,3,150,134,3,3,3,3,3,3,367,368,369,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,411,412,429,412,429,412,413,414,3,3,3,152,168,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,150,151,150,151,151,151,150,151,
3,3,149,3,3,3,3,3,3,3,3,3,3,3,3,3,168,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,166,134,118,3,3,3,3,3,383,384,385,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,427,428,412,429,412,412,429,430,3,3,120,136,3,3,3,352,3,3,3,3,3,3,3,3,3,3,3,3,89,89,3,3,3,3,3,3,165,166,167,150,151,151,151,150,151,
3,3,165,3,3,3,3,3,3,3,3,3,3,3,3,168,3,3,3,3,3,120,135,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,150,134,135,118,3,3,3,399,400,401,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,443,428,429,412,429,412,429,446,3,3,137,152,3,3,367,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,165,166,167,167,167,150,151,
3,3,3,3,3,3,3,3,3,3,3,3,3,3,167,134,135,135,135,135,135,136,153,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,166,150,151,134,135,135,118,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,443,428,429,412,429,446,3,3,3,106,168,3,3,3,3,3,3,3,3,3,3,3,3,395,396,396,397,398,3,3,3,3,120,136,3,3,352,353,354,3,3,165,166,167,
@ -175,7 +175,7 @@
0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,524,0,564,565,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,46,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,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,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,57,41,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,519,520,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,57,41,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0,524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,57,0,0,0,0,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,101,0,0,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -196,7 +196,7 @@
0,0,101,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,101,0,0,0,0,0,0,0,0,0,0,0,0,517,0,0,120,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,86,23,0,0,596,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,117,118,0,0,0,0,120,135,135,118,0,0,0,0,120,121,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,106,0,0,596,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,133,134,135,135,135,135,136,151,151,134,118,0,0,120,136,153,154,0,0,0,0,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,519,520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,21,89,0,0,0,86,87,596,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,133,134,135,135,135,135,136,151,151,134,118,0,0,120,136,153,154,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,21,89,0,0,0,86,87,596,597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,150,151,151,151,151,152,167,167,150,134,135,135,136,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,564,565,0,0,0,0,0,0,0,0,0,0,0,102,0,0,0,0,0,0,596,597,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,166,167,167,167,167,168,169,169,166,150,151,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,169,169,169,169,0,0,0,0,166,167,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,24,0,0,0,0,0,0,19,0,0,0,524,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,
@ -1407,21 +1407,5 @@
<property name="dest_y" value="101"/>
</properties>
</object>
<object id="53" name="Sunshroom" type="spawn" x="3072" y="2976" width="672" height="512">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1231"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="54" name="Sunshroom" type="spawn" x="1760" y="1792" width="640" height="512">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1231"/>
<property name="spawn" value="100000"/>
</properties>
</object>
</objectgroup>
</map>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="162" height="120" tilewidth="32" tileheight="32" infinite="0" nextlayerid="8" nextobjectid="25">
<map version="1.10" tiledversion="1.10.2" orientation="orthogonal" renderorder="right-down" width="162" height="120" tilewidth="32" tileheight="32" infinite="0" nextlayerid="8" nextobjectid="24">
<properties>
<property name="minimap" value="graphics/minimaps/008-1.png"/>
<property name="music" value="magick-real.ogg"/>
@ -924,13 +924,5 @@
<property name="spawn" value="10000"/>
</properties>
</object>
<object id="24" name="Duck" type="spawn" x="1408" y="2560" width="192" height="160">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1048"/>
<property name="spawn" value="100000"/>
</properties>
</object>
</objectgroup>
</map>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="117" height="75" tilewidth="32" tileheight="32" infinite="0" nextlayerid="10" nextobjectid="96">
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="117" height="75" tilewidth="32" tileheight="32" infinite="0" nextlayerid="10" nextobjectid="95">
<properties>
<property name="minimap" value="graphics/minimaps/009-1.png"/>
<property name="music" value="Birdsong.ogg"/>
@ -649,7 +649,7 @@
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
</data>
</layer>
<objectgroup id="9" name="Objects">
<objectgroup id="9" name="Objects" visible="0">
<object id="1" name="To Hurnscald South Exit" type="warp" x="1504" y="1760" width="128" height="32">
<properties>
<property name="dest_map" value="008-1"/>
@ -730,9 +730,9 @@
<object id="12" name="CloverPatch" type="spawn" x="2336" y="1024" width="96" height="64">
<properties>
<property name="death" value="120000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="1"/>
<property name="monster_id" value="35"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="13" name="PinkFlower" type="spawn" x="800" y="1216" width="320" height="448">
@ -759,9 +759,9 @@
<object id="16" name="Butterfly" type="spawn" x="0" y="0">
<properties>
<property name="death" value="20"/>
<property name="spawn" value="30"/>
<property name="max_beings" value="5"/>
<property name="monster_id" value="53"/>
<property name="spawn" value="30"/>
</properties>
</object>
<object id="17" name="To Bedroom" type="warp" x="1920" y="1312" width="32" height="32">
@ -771,13 +771,5 @@
<property name="dest_y" value="91"/>
</properties>
</object>
<object id="95" name="Duck" type="spawn" x="2784" y="864" width="192" height="160">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1048"/>
<property name="spawn" value="100000"/>
</properties>
</object>
</objectgroup>
</map>

View file

@ -721,7 +721,7 @@
<object id="12" name="Mouboo" type="spawn" x="0" y="0">
<properties>
<property name="death" value="10"/>
<property name="max_beings" value="10"/>
<property name="max_beings" value="5"/>
<property name="monster_id" value="26"/>
</properties>
</object>
@ -779,6 +779,13 @@
<property name="dest_y" value="100"/>
</properties>
</object>
<object id="20" name="Mouboo" type="spawn" x="0" y="0">
<properties>
<property name="death" value="10"/>
<property name="max_beings" value="5"/>
<property name="monster_id" value="26"/>
</properties>
</object>
<object id="21" name="ManaBug" type="spawn" x="32" y="32">
<properties>
<property name="max_beings" value="18"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="140" height="120" tilewidth="32" tileheight="32" infinite="0" nextlayerid="7" nextobjectid="18">
<map version="1.10" tiledversion="1.10.2" orientation="orthogonal" renderorder="right-down" width="140" height="120" tilewidth="32" tileheight="32" infinite="0" nextlayerid="7" nextobjectid="17">
<properties>
<property name="minimap" value="graphics/minimaps/015-1.png"/>
<property name="music" value="the-forest.ogg"/>
@ -760,13 +760,5 @@
<property name="spawn" value="150000"/>
</properties>
</object>
<object id="17" name="WonderWoodling" type="spawn" x="0" y="0">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="8"/>
<property name="monster_id" value="1185"/>
<property name="spawn" value="100000"/>
</properties>
</object>
</objectgroup>
</map>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="140" height="120" tilewidth="32" tileheight="32" infinite="0" nextlayerid="7" nextobjectid="24">
<map version="1.10" tiledversion="1.10.2" orientation="orthogonal" renderorder="right-down" width="140" height="120" tilewidth="32" tileheight="32" infinite="0" nextlayerid="7" nextobjectid="22">
<properties>
<property name="minimap" value="graphics/minimaps/016-1.png"/>
<property name="music" value="the-forest.ogg"/>
@ -306,24 +306,24 @@
293,294,0,0,291,292,293,294,291,292,0,0,0,293,294,0,0,293,294,0,0,291,292,0,293,292,0,0,0,0,0,0,0,0,0,293,294,295,296,0,293,294,0,293,294,0,0,293,294,0,0,293,294,0,0,0,291,292,295,296,0,0,293,294,0,291,292,0,0,0,291,292,0,291,292,0,0,291,292,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,291,292,0,291,292,0,291,292,0,0,0,0,291,292,0,0,0,291,292,0,293,294,0,0,0,0,0,0,0,0,0,0,0,
0,0,293,294,0,0,0,0,0,0,293,294,0,0,291,292,0,0,0,0,0,0,293,294,0,0,293,294,0,0,293,294,293,294,0,0,0,0,0,291,292,0,0,0,0,0,291,292,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,291,292,0,291,292,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,296,0,291,292,0,0,0,291,292,0,0,291,292,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,
294,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,293,294,0,293,294,0,0,0,0,0,0,0,293,294,0,0,291,292,293,294,0,293,294,0,0,293,294,295,296,293,294,293,294,291,292,0,0,0,0,0,0,293,294,293,294,293,294,0,0,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,296,0,0,0,0,0,135,0,265,0,291,292,0,0,0,293,294,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,293,294,0,0,0,0,
294,293,294,0,0,0,0,293,294,0,291,292,295,296,0,0,0,0,0,0,0,0,0,0,293,294,291,292,0,0,293,294,0,291,292,0,293,294,0,0,291,292,0,0,0,0,0,0,0,0,293,294,0,0,0,0,291,292,0,0,0,0,293,294,293,294,0,0,265,0,0,0,0,291,292,0,291,292,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,293,294,291,292,291,292,0,293,294,0,291,292,295,296,0,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,293,294,0,0,293,294,0,0,0,0,293,294,0,291,292,293,294,293,294,291,292,0,0,293,294,291,292,295,296,0,293,294,0,291,292,0,0,0,0,291,292,0,291,292,0,0,291,292,291,292,0,0,0,293,294,293,294,0,0,0,0,0,0,0,0,0,265,0,295,296,0,291,292,0,293,294,291,292,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,291,292,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,
293,294,0,293,294,0,0,0,0,0,0,293,294,0,0,0,293,294,0,0,0,0,0,0,295,296,0,291,292,0,0,0,0,291,292,0,0,291,292,291,292,291,292,0,293,294,0,0,291,292,0,293,294,0,0,0,0,0,0,0,291,292,0,293,294,0,0,0,0,265,0,0,0,291,292,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,265,0,293,294,0,291,292,0,0,0,0,0,0,0,0,0,0,293,294,0,293,294,0,293,294,293,294,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,293,294,293,294,293,294,0,0,0,293,294,0,0,0,293,294,0,0,0,0,0,0,0,293,294,293,294,295,296,293,294,0,0,0,0,0,0,0,293,294,0,293,294,0,0,0,0,0,291,292,0,0,0,0,0,0,293,294,0,293,294,0,265,191,0,0,0,0,0,0,0,295,296,291,292,0,0,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,291,292,291,292,293,294,0,0,293,294,0,0,291,292,0,0,0,291,292,0,0,0,0,0,293,294,293,294,293,294,0,0,0,
292,293,294,0,291,292,0,0,0,0,0,0,0,293,294,0,293,294,293,294,0,293,294,293,294,293,294,0,291,292,0,0,0,293,294,293,294,0,291,292,295,296,0,0,291,292,0,291,292,293,294,0,0,0,295,296,0,0,291,292,0,0,0,291,292,0,0,0,0,0,0,293,294,0,293,294,0,291,292,0,0,291,292,0,291,292,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,291,292,0,293,294,0,0,291,292,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,
0,0,0,293,294,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,291,292,0,0,0,291,292,0,0,0,0,0,0,0,291,292,293,294,0,0,0,0,0,0,0,293,294,0,0,291,292,0,293,294,291,292,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,293,294,291,292,0,0,293,294,291,292,0,0,0,0,0,0,0,0,0,0,293,294,0,0,293,294,0,0,0,293,294,0,0,0,0,0,0,
293,294,0,0,0,0,0,0,0,291,292,0,293,294,291,292,0,291,292,0,0,293,294,291,292,291,292,0,0,0,0,0,0,0,295,296,0,0,291,292,0,0,293,294,291,292,0,0,291,292,0,0,0,291,292,0,0,0,0,0,293,294,0,291,292,0,293,294,0,0,0,0,0,0,291,292,0,0,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,293,294,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,
292,0,293,294,0,293,294,0,0,0,0,0,0,0,0,293,294,0,0,295,296,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,293,294,0,291,292,0,0,0,0,295,296,293,294,0,0,293,294,0,293,294,0,0,0,0,0,293,294,0,0,0,291,292,0,0,291,292,293,294,0,0,293,294,0,291,292,0,295,296,0,0,0,295,296,0,0,0,0,0,0,0,293,294,0,0,0,265,0,0,0,291,292,293,294,0,293,294,0,0,0,293,294,293,294,0,0,291,292,0,0,0,0,0,0,0,295,296,0,0,0,293,294,0,0,0,
292,0,0,0,0,291,292,293,294,0,293,294,0,0,0,0,291,292,0,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,293,294,293,294,0,293,294,291,292,0,0,291,292,0,291,292,0,0,0,0,291,292,0,53,0,0,0,291,292,293,294,0,0,293,294,0,0,0,291,292,291,292,291,292,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,291,292,0,0,0,0,0,0,0,293,294,0,0,291,292,0,0,0,0,0,0,0,0,0,
293,294,0,0,0,0,0,0,0,0,0,0,293,294,291,292,0,0,293,294,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,291,292,0,291,292,0,0,0,293,294,291,292,293,294,0,0,291,292,0,0,0,0,0,0,0,291,292,0,291,292,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,541,295,296,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,291,292,291,292,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,293,294,0,0,0,0,293,294,0,0,0,0,0,
0,0,0,0,293,294,0,293,294,291,292,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,293,294,0,0,0,291,292,0,291,292,0,0,291,292,293,294,293,294,0,0,293,294,0,0,0,0,0,0,291,292,293,294,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,291,292,0,0,0,0,293,294,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,
296,0,293,294,0,0,293,294,0,0,0,0,293,294,0,293,294,293,294,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,291,292,0,0,291,292,293,294,0,0,0,293,294,0,0,293,294,0,0,0,0,291,292,0,291,292,0,0,295,296,0,0,0,295,296,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,293,294,0,0,0,
0,293,294,0,293,294,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,291,292,293,294,0,291,292,0,293,294,291,292,293,294,0,0,291,292,0,291,292,0,0,0,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,265,0,0,0,0,0,0,295,296,0,293,294,0,0,295,296,0,293,294,0,291,292,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,293,294,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,296,0,0,291,292,0,293,294,0,291,292,0,0,295,296,0,0,0,0,0,291,292,0,0,0,0,291,292,293,294,0,291,292,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,291,292,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,293,294,0,0,
0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,291,292,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,291,292,0,0,291,292,0,0,0,0,0,0,0,0,0,0,291,292,0,0,291,292,291,292,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,293,294,0,0,293,294,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,291,292,0,293,294,0,0,291,292,0,0,0,0,0,0,0,0,0,293,294,293,294,291,292,0,293,294,0,0,293,294,291,292,0,293,294,0,0,0,0,0,0,0,293,294,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,0,0,0,291,292,0,291,292,0,0,0,0,293,294,0,291,292,293,294,0,0,0,
293,294,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,293,294,0,291,292,0,0,293,294,0,0,0,0,0,0,0,291,292,0,293,294,0,0,0,0,291,292,293,294,0,0,0,0,0,0,291,292,293,294,0,0,0,0,0,291,292,0,291,292,0,291,292,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,0,0,0,251,0,291,292,0,0,265,0,0,0,0,0,293,294,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,
0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,0,0,293,294,291,292,0,0,0,0,0,0,0,0,291,292,0,295,296,293,294,293,294,0,291,292,0,0,0,295,296,0,0,0,0,0,0,0,0,293,294,0,291,292,293,294,0,0,0,0,0,0,0,0,0,0,0,295,296,291,292,295,296,0,295,296,0,0,0,293,294,0,0,0,0,0,0,265,0,0,0,0,0,293,294,0,0,293,294,0,293,294,0,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,
294,293,294,0,0,0,0,293,294,0,291,292,295,296,0,0,0,0,0,0,0,0,0,0,293,294,291,292,0,0,293,294,0,291,292,0,293,294,0,0,291,292,0,0,0,0,0,0,0,0,293,294,0,0,0,0,291,292,0,0,0,0,293,294,293,294,0,0,265,0,0,0,0,291,292,0,291,292,0,0,0,0,0,0,0,0,0,164,167,170,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,293,294,291,292,291,292,0,293,294,0,291,292,295,296,0,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,293,294,0,0,293,294,0,0,0,0,293,294,0,291,292,293,294,293,294,291,292,0,0,293,294,291,292,295,296,0,293,294,0,291,292,0,0,0,0,291,292,0,291,292,0,0,291,292,291,292,0,0,0,293,294,293,294,0,0,0,0,0,0,0,0,0,265,0,295,296,0,291,292,0,293,294,291,292,291,292,0,0,0,179,0,187,169,0,169,167,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,291,292,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,
293,294,0,293,294,0,0,0,0,0,0,293,294,0,0,0,293,294,0,0,0,0,0,0,295,296,0,291,292,0,0,0,0,291,292,0,0,291,292,291,292,291,292,0,293,294,0,0,291,292,0,293,294,0,0,0,0,0,0,0,291,292,0,293,294,0,0,0,0,265,0,0,0,291,292,0,0,0,0,291,292,0,0,0,0,0,0,195,0,186,169,0,166,167,167,165,232,0,0,0,0,265,0,265,0,293,294,0,291,292,0,0,0,0,0,0,0,0,0,0,293,294,0,293,294,0,293,294,293,294,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,293,294,293,294,293,294,0,0,0,293,294,0,0,0,293,294,0,0,0,0,0,0,0,293,294,293,294,295,296,293,294,0,0,0,0,0,0,0,293,294,0,293,294,0,0,0,0,0,291,292,0,0,0,0,0,0,293,294,0,293,294,0,265,191,0,0,0,0,0,0,0,295,296,291,292,0,0,0,295,296,0,0,211,185,0,0,0,0,0,134,135,171,0,0,0,0,0,0,0,291,292,0,291,292,291,292,293,294,0,0,293,294,0,0,291,292,0,0,0,291,292,0,0,0,0,0,293,294,293,294,293,294,0,0,0,
292,293,294,0,291,292,0,0,0,0,0,0,0,293,294,0,293,294,293,294,0,293,294,293,294,293,294,0,291,292,0,0,0,293,294,293,294,0,291,292,295,296,0,0,291,292,0,291,292,293,294,0,0,0,295,296,0,0,291,292,0,0,0,291,292,0,0,0,0,0,0,293,294,0,293,294,0,291,292,0,0,291,292,0,291,292,0,227,218,183,184,185,0,0,291,292,186,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,291,292,0,293,294,0,0,291,292,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,
0,0,0,293,294,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,291,292,0,0,0,291,292,0,0,0,0,0,0,0,291,292,293,294,0,0,0,0,0,0,0,293,294,0,0,291,292,0,293,294,291,292,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,243,234,199,200,201,185,0,0,0,0,248,232,0,0,0,265,293,294,291,292,0,0,293,294,291,292,0,0,0,0,0,0,0,0,0,0,293,294,0,0,293,294,0,0,0,293,294,0,0,0,0,0,0,
293,294,0,0,0,0,0,0,0,291,292,0,293,294,291,292,0,291,292,0,0,293,294,291,292,291,292,0,0,0,0,0,0,0,295,296,0,0,291,292,0,0,293,294,291,292,0,0,291,292,0,0,0,291,292,0,0,0,0,0,293,294,0,291,292,0,293,294,0,0,0,0,0,0,291,292,0,0,0,295,296,0,0,0,0,0,0,0,250,215,216,217,201,185,0,0,0,0,171,187,0,0,0,0,291,292,0,0,0,0,0,0,0,293,294,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,
292,0,293,294,0,293,294,0,0,0,0,0,0,0,0,293,294,0,0,295,296,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,293,294,0,291,292,0,0,0,0,295,296,293,294,0,0,293,294,0,293,294,0,0,0,0,0,293,294,0,0,0,291,292,0,0,291,292,293,294,0,0,293,294,0,291,292,0,295,296,0,0,0,295,296,0,0,233,217,201,202,0,293,294,187,187,0,265,0,0,0,291,292,293,294,0,293,294,0,0,0,293,294,293,294,0,0,291,292,0,0,0,0,0,0,0,295,296,0,0,0,293,294,0,0,0,
292,0,0,0,0,291,292,293,294,0,293,294,0,0,0,0,291,292,0,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,293,294,293,294,0,293,294,291,292,0,0,291,292,0,291,292,0,0,0,0,291,292,0,53,0,0,0,291,292,293,294,0,0,293,294,0,0,0,291,292,291,292,291,292,0,0,0,0,0,0,0,0,0,291,292,0,0,233,217,179,0,0,0,187,187,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,291,292,0,0,0,0,0,0,0,293,294,0,0,291,292,0,0,0,0,0,0,0,0,0,
293,294,0,0,0,0,0,0,0,0,0,0,293,294,291,292,0,0,293,294,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,291,292,0,291,292,0,0,0,293,294,291,292,293,294,0,0,291,292,0,0,0,0,0,0,0,291,292,0,291,292,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,541,295,296,0,295,296,0,233,179,0,0,0,187,187,0,0,0,0,265,0,0,0,291,292,291,292,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,293,294,0,0,0,0,293,294,0,0,0,0,0,
0,0,0,0,293,294,0,293,294,291,292,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,293,294,0,0,0,291,292,0,291,292,0,0,291,292,293,294,293,294,0,0,293,294,0,0,0,0,0,0,291,292,293,294,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,480,0,0,0,179,295,296,0,187,187,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,291,292,0,0,0,0,293,294,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,
296,0,293,294,0,0,293,294,0,0,0,0,293,294,0,293,294,293,294,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,291,292,0,0,291,292,293,294,0,0,0,293,294,0,0,293,294,0,0,0,0,291,292,0,291,292,0,0,295,296,0,0,0,295,296,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,187,187,0,0,0,0,0,0,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,293,294,0,0,0,
0,293,294,0,293,294,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,291,292,293,294,0,291,292,0,293,294,291,292,293,294,0,0,291,292,0,291,292,0,0,0,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,0,0,0,187,203,0,291,292,265,0,0,0,0,0,0,295,296,0,293,294,0,0,295,296,0,293,294,0,291,292,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,293,294,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,296,0,0,291,292,0,293,294,0,291,292,0,0,295,296,0,0,0,0,0,291,292,0,0,0,0,291,292,293,294,0,291,292,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,0,0,0,203,219,0,0,0,0,0,0,0,291,292,291,292,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,293,294,0,0,
0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,291,292,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,291,292,0,0,291,292,0,0,0,0,0,0,0,0,0,0,291,292,0,0,291,292,291,292,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,185,0,196,219,251,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,293,294,0,0,293,294,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,291,292,0,293,294,0,0,291,292,0,0,0,0,0,0,0,0,0,293,294,293,294,291,292,0,293,294,0,0,293,294,291,292,0,293,294,0,0,0,0,0,0,0,293,294,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,227,218,183,212,235,0,0,0,0,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,0,0,0,291,292,0,291,292,0,0,0,0,293,294,0,291,292,293,294,0,0,0,
293,294,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,293,294,0,291,292,0,0,293,294,0,0,0,0,0,0,0,291,292,0,293,294,0,0,0,0,291,292,293,294,0,0,0,0,0,0,291,292,293,294,0,0,0,0,0,291,292,0,291,292,0,291,292,295,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,234,199,228,251,0,291,292,0,0,265,0,0,0,0,0,293,294,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,
0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,291,292,0,0,0,0,0,293,294,291,292,0,0,0,0,0,0,0,0,291,292,0,295,296,293,294,293,294,0,291,292,0,0,0,295,296,0,0,0,0,0,0,0,0,293,294,0,291,292,293,294,0,0,0,0,0,0,0,0,0,0,0,295,296,291,292,295,296,0,295,296,250,215,244,293,294,0,0,0,0,0,0,265,0,0,0,0,0,293,294,0,0,293,294,0,293,294,0,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,293,294,0,0,293,294,291,292,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,291,292,0,0,0,0,0,0,0,0,0,0,293,294,0,293,294,0,0,0,0,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,291,292,0,291,292,0,293,294,0,0,0,0,0,0,0,0,0,291,292,0,293,294,0,293,294,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,
0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,293,294,0,291,292,0,0,0,0,0,0,0,291,292,0,0,293,294,0,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,293,294,0,0,293,294,0,0,295,296,0,0,0,295,296,0,0,295,296,0,0,0,0,0,0,0,295,296,291,292,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,0,293,294,0,295,296,0,0,0,0,293,294,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,296,0,0,293,294,0,293,294,0,0,293,294,0,0,291,292,293,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,291,292,0,0,291,292,0,291,292,0,0,0,0,0,0,0,0,291,292,0,0,0,293,294,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,295,296,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,291,292,0,0,291,292,0,0,0,0,0,0,293,294,0,0,0,0,0,0,0,0,0,0,291,292,0,0,0,0,0,
@ -512,7 +512,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
</data>
</layer>
<layer id="5" name="Collision" width="140" height="120" visible="0">
<layer id="5" name="Collision" width="140" height="120">
<data encoding="csv">
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,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,
@ -694,7 +694,7 @@
<object id="9" name="MauvePlant" type="spawn" x="0" y="0">
<properties>
<property name="death" value="180000"/>
<property name="max_beings" value="8"/>
<property name="max_beings" value="4"/>
<property name="monster_id" value="27"/>
<property name="spawn" value="270000"/>
</properties>
@ -707,6 +707,14 @@
<property name="spawn" value="0"/>
</properties>
</object>
<object id="11" name="MauvePlant" type="spawn" x="0" y="0">
<properties>
<property name="death" value="180000"/>
<property name="max_beings" value="4"/>
<property name="monster_id" value="27"/>
<property name="spawn" value="270000"/>
</properties>
</object>
<object id="13" name="Silkworm" type="spawn" x="0" y="0">
<properties>
<property name="death" value="7000"/>
@ -739,21 +747,5 @@
<property name="spawn" value="10000"/>
</properties>
</object>
<object id="22" name="Rainshroom" type="spawn" x="2240" y="2400" width="640" height="512">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1237"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="23" name="Rainshroom" type="spawn" x="928" y="2208" width="640" height="512">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1237"/>
<property name="spawn" value="100000"/>
</properties>
</object>
</objectgroup>
</map>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="150" height="120" tilewidth="32" tileheight="32" infinite="0" nextlayerid="10" nextobjectid="34">
<map version="1.10" tiledversion="1.10.2" orientation="orthogonal" renderorder="right-down" width="150" height="120" tilewidth="32" tileheight="32" infinite="0" nextlayerid="10" nextobjectid="30">
<properties>
<property name="minimap" value="graphics/minimaps/027-1.png"/>
<property name="music" value="graveyard.ogg"/>
@ -1236,37 +1236,5 @@
</properties>
</object>
<object id="20" name="graphics/particles/warparea.particle.xml" type="particle_effect" x="896" y="2144" width="32" height="32"/>
<object id="30" name="WickedMushroom" type="spawn" x="1600" y="608" width="1248" height="320">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1106"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="31" name="WickedMushroom" type="spawn" x="2848" y="608" width="1248" height="320">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1106"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="32" name="Moonshroom" type="spawn" x="3616" y="2464" width="608" height="768">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1130"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="33" name="Moonshroom" type="spawn" x="3968" y="928" width="352" height="960">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1130"/>
<property name="spawn" value="100000"/>
</properties>
</object>
</objectgroup>
</map>

View file

@ -1651,7 +1651,7 @@
<object id="50" name="Bat" type="spawn" x="5760" y="8352" width="2144" height="1408">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="10"/>
<property name="max_beings" value="5"/>
<property name="monster_id" value="15"/>
<property name="spawn" value="100000"/>
</properties>
@ -1691,7 +1691,7 @@
<object id="55" name="Moggun" type="spawn" x="2432" y="8960" width="1376" height="736">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="10"/>
<property name="max_beings" value="5"/>
<property name="monster_id" value="59"/>
<property name="spawn" value="100000"/>
</properties>
@ -1731,7 +1731,7 @@
<object id="60" name="IceElement" type="spawn" x="2528" y="6144" width="1280" height="1440">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="4"/>
<property name="max_beings" value="2"/>
<property name="monster_id" value="69"/>
<property name="spawn" value="100000"/>
</properties>
@ -1752,6 +1752,14 @@
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="63" name="Moggun" type="spawn" x="2432" y="8960" width="1376" height="736">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="5"/>
<property name="monster_id" value="59"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="64" name="IceGoblin" type="spawn" x="8384" y="8800" width="1088" height="480">
<properties>
<property name="death" value="30000"/>
@ -1760,6 +1768,14 @@
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="65" name="IceElement" type="spawn" x="2528" y="6144" width="1280" height="1440">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="2"/>
<property name="monster_id" value="69"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="66" name="IceElement" type="spawn" x="8992" y="5792" width="288" height="2432">
<properties>
<property name="death" value="30000"/>
@ -1787,7 +1803,7 @@
<object id="69" name="Moggun" type="spawn" x="8032" y="6016" width="2016" height="544">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="6"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="59"/>
<property name="spawn" value="100000"/>
</properties>
@ -1808,6 +1824,14 @@
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="74" name="Bat" type="spawn" x="5760" y="8352" width="2144" height="1408">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="5"/>
<property name="monster_id" value="15"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="75" name="Pollett" type="spawn" x="5760" y="8352" width="2144" height="1408">
<properties>
<property name="death" value="30000"/>
@ -1848,10 +1872,26 @@
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="79" name="Moggun" type="spawn" x="8032" y="6016" width="2016" height="544">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="59"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="80" name="Moggun" type="spawn" x="5792" y="4832" width="2016" height="544">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="7"/>
<property name="monster_id" value="59"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="81" name="Moggun" type="spawn" x="5792" y="4832" width="2016" height="544">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="14"/>
<property name="max_beings" value="7"/>
<property name="monster_id" value="59"/>
<property name="spawn" value="100000"/>
</properties>
@ -1872,10 +1912,18 @@
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="84" name="Bat" type="spawn" x="8480" y="2208" width="1184" height="1024">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="15"/>
<property name="monster_id" value="15"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="85" name="Bat" type="spawn" x="8480" y="2208" width="1184" height="1024">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="30"/>
<property name="max_beings" value="15"/>
<property name="monster_id" value="15"/>
<property name="spawn" value="100000"/>
</properties>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="220" height="200" tilewidth="32" tileheight="32" infinite="0" nextlayerid="7" nextobjectid="40">
<map version="1.10" tiledversion="1.10.2" orientation="orthogonal" renderorder="right-down" width="220" height="200" tilewidth="32" tileheight="32" infinite="0" nextlayerid="7" nextobjectid="39">
<properties>
<property name="music" value="cavesong.ogg"/>
<property name="name" value="Troll Cave"/>
@ -1245,13 +1245,5 @@
<property name="dest_y" value="107"/>
</properties>
</object>
<object id="39" name="LavaSlime" type="spawn" x="4640" y="1664" width="448" height="384">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1132"/>
<property name="spawn" value="100000"/>
</properties>
</object>
</objectgroup>
</map>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="178" height="135" tilewidth="32" tileheight="32" infinite="0" nextlayerid="8" nextobjectid="24">
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="178" height="135" tilewidth="32" tileheight="32" infinite="0" nextlayerid="8" nextobjectid="22">
<properties>
<property name="music" value="explorers-melody.ogg"/>
<property name="name" value="Rock Plateau"/>
@ -867,61 +867,61 @@
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,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2
</data>
</layer>
<objectgroup id="7" name="Objects">
<objectgroup id="7" name="Objects" visible="0">
<object id="1" name="Reinboo" type="spawn" x="0" y="224">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="40"/>
<property name="monster_id" value="92"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="2" name="Fluffy" type="spawn" x="0" y="224">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="50"/>
<property name="monster_id" value="18"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="3" name="Squirrel" type="spawn" x="0" y="224">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="50"/>
<property name="monster_id" value="36"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="4" name="Moggun" type="spawn" x="576" y="800" width="1696" height="672">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="12"/>
<property name="monster_id" value="59"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="5" name="Yeti" type="spawn" x="0" y="224">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="2"/>
<property name="monster_id" value="70"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="6" name="Wolvern" type="spawn" x="2432" y="3040" width="768" height="448">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="5"/>
<property name="monster_id" value="88"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="7" name="WhiteBell" type="spawn" x="0" y="224">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="9"/>
<property name="monster_id" value="93"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="8" name="To Snow Forest" type="warp" x="3008" y="3968" width="64" height="32">
@ -990,33 +990,33 @@
<object id="17" name="Wolvern" type="spawn" x="2080" y="1696" width="512" height="416">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="2"/>
<property name="monster_id" value="88"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="18" name="Wolvern" type="spawn" x="992" y="3456" width="352" height="320">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="2"/>
<property name="monster_id" value="88"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="19" name="Wolvern" type="spawn" x="2976" y="768" width="1472" height="1088">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="7"/>
<property name="monster_id" value="88"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="20" name="Wolvern" type="spawn" x="4480" y="2016" width="352" height="320">
<properties>
<property name="death" value="30000"/>
<property name="spawn" value="100000"/>
<property name="max_beings" value="2"/>
<property name="monster_id" value="88"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="21" name="To Frosty Underground" type="warp" x="1984" y="832" width="32" height="32">
@ -1026,21 +1026,5 @@
<property name="dest_y" value="123"/>
</properties>
</object>
<object id="22" name="Snowshroom" type="spawn" x="4096" y="2656" width="640" height="512">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1232"/>
<property name="spawn" value="100000"/>
</properties>
</object>
<object id="23" name="Snowshroom" type="spawn" x="3936" y="2144" width="640" height="512">
<properties>
<property name="death" value="30000"/>
<property name="max_beings" value="3"/>
<property name="monster_id" value="1232"/>
<property name="spawn" value="100000"/>
</properties>
</object>
</objectgroup>
</map>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" compressionlevel="0" width="200" height="200" tilewidth="32" tileheight="32" infinite="0" nextlayerid="17" nextobjectid="1">
<map version="1.10" tiledversion="1.11.1" orientation="orthogonal" renderorder="right-down" compressionlevel="0" width="200" height="200" tilewidth="32" tileheight="32" infinite="0" nextlayerid="17" nextobjectid="1">
<properties>
<property name="author" value="poppet"/>
<property name="license" value="GPLv3 / CC BY SA 4.0"/>
@ -40,12 +40,24 @@
<property name="overlay6scrollX" value="0.2"/>
<property name="overlay6scrollY" value="0.1"/>
</properties>
<tileset firstgid="1" source="../tilesets/collision.tsx"/>
<tileset firstgid="3" source="../tilesets/woodland_ground.tsx"/>
<tileset firstgid="259" source="../tilesets/castle1.tsx"/>
<tileset firstgid="515" source="../tilesets/castle2.tsx"/>
<tileset firstgid="771" source="../tilesets/forest.tsx"/>
<tileset firstgid="1170" source="../tilesets/woodland_x3.tsx"/>
<tileset firstgid="1" name="collision" tilewidth="32" tileheight="32" tilecount="2" columns="2">
<image source="../graphics/tiles/collision.png" width="64" height="32"/>
</tileset>
<tileset firstgid="3" name="woodland_ground" tilewidth="32" tileheight="32" tilecount="256" columns="16">
<image source="../graphics/tiles/woodland_ground.png" width="512" height="512"/>
</tileset>
<tileset firstgid="259" name="castle1" tilewidth="32" tileheight="32" tilecount="256" columns="16">
<image source="../graphics/tiles/castle1.png" width="512" height="512"/>
</tileset>
<tileset firstgid="515" name="castle2" tilewidth="32" tileheight="32" tilecount="256" columns="16">
<image source="../graphics/tiles/castle2.png" width="512" height="512"/>
</tileset>
<tileset firstgid="771" name="forest" tilewidth="32" tileheight="32" tilecount="399" columns="19">
<image source="../graphics/tiles/forest.png" width="608" height="672"/>
</tileset>
<tileset firstgid="1170" name="woodland_x3" tilewidth="32" tileheight="96" tilecount="32" columns="16">
<image source="../graphics/tiles/woodland_x3.png" width="512" height="192"/>
</tileset>
<layer id="1" name="Ground1" width="200" height="200">
<data encoding="csv">
89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,89,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" compressionlevel="0" width="200" height="200" tilewidth="32" tileheight="32" infinite="0" nextlayerid="16" nextobjectid="3">
<map version="1.10" tiledversion="1.11.1" orientation="orthogonal" renderorder="right-down" compressionlevel="0" width="200" height="200" tilewidth="32" tileheight="32" infinite="0" nextlayerid="16" nextobjectid="3">
<properties>
<property name="author" value="poppet, Jesusalva"/>
<property name="background0image" value="graphics/images/ambient/aethyr.jpg"/>
@ -40,214 +40,225 @@
<property name="overlay6scrollX" value="0.2"/>
<property name="overlay6scrollY" value="0.1"/>
</properties>
<tileset firstgid="1" source="../tilesets/collision.tsx"/>
<tileset firstgid="3" source="../tilesets/woodland_ground.tsx"/>
<tileset firstgid="259" source="../tilesets/forest.tsx"/>
<tileset firstgid="658" source="../tilesets/woodland_x3.tsx"/>
<tileset firstgid="690" source="../tilesets/christmas.tsx"/>
<tileset firstgid="994" source="../tilesets/icecave.tsx"/>
<tileset firstgid="1" name="collision" tilewidth="32" tileheight="32" tilecount="2" columns="2">
<image source="../graphics/tiles/collision.png" width="64" height="32"/>
</tileset>
<tileset firstgid="3" name="woodland_ground" tilewidth="32" tileheight="32" tilecount="256" columns="16">
<image source="../graphics/tiles/woodland_ground.png" width="512" height="512"/>
</tileset>
<tileset firstgid="259" name="forest" tilewidth="32" tileheight="32" tilecount="399" columns="19">
<image source="../graphics/tiles/forest.png" width="608" height="672"/>
</tileset>
<tileset firstgid="658" name="woodland_x3" tilewidth="32" tileheight="96" tilecount="32" columns="16">
<image source="../graphics/tiles/woodland_x3.png" width="512" height="192"/>
</tileset>
<tileset firstgid="690" name="icecave" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../graphics/tiles/icecave.png" width="512" height="256"/>
</tileset>
<tileset firstgid="818" source="../tilesets/christmas.tsx"/>
<tileset firstgid="1122" source="../tilesets/icecave.tsx"/>
<layer id="1" name="Ground1" width="200" height="200">
<data encoding="csv">
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,264,264,267,994,994,994,262,264,264,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,264,281,51,51,51,286,267,994,262,281,51,51,51,286,264,264,264,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,3,3,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,281,51,51,51,51,51,51,51,365,262,281,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,281,3,3,3,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,295,295,295,51,51,286,281,51,51,51,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,3,3,3,3,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,3,295,3,3,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,3,295,3,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,295,295,295,295,295,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,3,3,3,365,994,994,994,994,994,994,994,994,994,262,264,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,295,295,295,295,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,425,425,538,994,994,994,994,994,994,994,262,264,281,3,3,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,3,3,3,3,365,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,3,3,3,3,365,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,546,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,3,3,3,519,538,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,425,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,264,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,3,51,51,35,3,67,67,35,67,51,19,19,3,35,19,67,19,35,67,51,67,35,67,67,67,3,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,262,264,264,264,264,281,51,51,51,286,264,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,35,35,19,19,19,3,19,35,35,3,3,67,19,67,35,67,35,19,35,35,35,19,35,67,3,35,51,51,51,51,51,51,51,51,51,51,286,264,264,264,267,994,994,994,262,264,281,51,51,51,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,35,3,51,19,35,19,3,3,35,19,3,19,51,51,3,51,35,67,19,67,51,3,35,35,35,51,51,51,51,69,70,71,51,51,51,51,51,51,51,286,267,994,262,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,3,67,3,35,35,51,51,51,3,3,3,51,3,67,51,3,3,3,19,51,67,19,35,35,19,19,51,51,51,51,85,86,87,51,51,51,51,51,51,51,51,286,264,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,264,264,264,264,264,267,994,994,994,262,264,264,264,264,264,264,267,994,994,994,994,994,994,262,264,281,51,51,51,51,51,51,51,51,67,67,51,51,51,51,51,51,51,51,51,51,51,35,19,3,51,51,51,51,51,51,51,51,51,3,51,51,51,51,85,86,87,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,264,281,51,51,51,51,51,51,286,264,267,262,281,51,51,51,51,51,51,286,264,264,264,264,264,264,281,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,35,51,51,51,51,101,102,103,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,264,264,264,264,264,281,51,51,51,51,51,51,51,51,51,51,51,286,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,67,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,295,35,19,51,51,51,51,51,51,51,51,51,51,51,51,51,546,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,264,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,295,295,3,3,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,35,3,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,295,295,295,3,51,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,3,3,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,35,51,3,35,35,19,35,3,3,19,19,51,67,35,19,19,51,35,19,35,67,19,19,51,51,67,67,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,35,51,19,19,3,19,35,67,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,35,67,35,67,51,51,67,35,67,3,67,19,3,3,3,19,35,67,35,51,67,35,67,67,51,19,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,67,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,3,35,35,51,51,51,3,67,3,67,51,19,35,3,35,19,51,67,3,51,35,19,35,19,19,51,3,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,3,51,3,35,35,67,51,51,51,51,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,51,67,19,35,67,35,3,67,51,35,19,51,35,67,51,19,35,67,19,35,51,67,35,19,35,35,19,35,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,35,19,35,3,35,67,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,19,51,3,51,67,51,19,19,51,19,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,546,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,19,67,3,3,67,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,301,302,302,302,303,51,51,51,295,295,51,51,35,51,19,3,35,51,19,35,3,67,3,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,546,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,547,548,548,549,51,51,295,295,295,51,51,51,19,35,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,35,51,35,67,67,51,67,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,301,323,321,321,321,324,303,51,51,295,295,51,51,35,35,19,35,3,19,19,3,3,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,547,550,567,567,568,51,51,51,295,295,51,51,51,19,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,3,51,19,3,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,301,302,323,321,321,321,321,321,324,303,51,51,295,51,51,19,19,35,3,67,35,67,3,35,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,295,295,295,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,566,567,567,567,551,549,51,51,51,51,51,51,51,67,19,51,67,3,19,19,35,67,3,51,3,67,67,51,3,3,35,67,19,3,35,67,35,35,19,19,35,51,35,3,19,51,67,19,3,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,301,323,321,321,321,321,321,321,321,321,322,51,51,51,51,51,19,35,19,67,67,3,51,51,35,67,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,547,550,567,567,567,567,568,51,51,51,51,51,51,51,19,51,67,35,35,19,35,51,19,19,67,67,67,19,3,19,35,51,35,51,3,67,67,67,35,51,3,35,67,51,51,67,35,3,3,67,19,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,322,51,51,51,51,19,67,19,35,67,35,35,51,19,35,3,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,566,567,567,567,567,567,568,51,51,51,51,51,51,51,19,51,3,3,67,35,67,51,51,35,19,19,19,3,35,51,35,35,19,3,67,3,35,67,3,67,35,19,51,19,19,67,3,67,51,51,76,77,78,19,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,295,51,51,51,51,320,321,321,321,321,321,321,321,321,343,341,51,51,51,51,67,51,35,67,19,3,51,35,67,35,19,35,35,51,3,51,51,35,3,67,35,51,19,35,67,51,51,51,51,51,51,51,51,295,295,295,295,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,566,567,567,567,567,567,568,51,51,51,51,51,51,51,67,67,35,51,35,67,51,35,67,3,35,67,35,67,51,19,19,51,3,67,51,51,67,3,35,19,19,51,19,51,19,35,51,51,51,51,92,93,94,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,295,295,295,295,51,51,51,51,339,340,342,321,321,321,321,343,340,341,51,51,51,51,51,35,67,3,3,51,19,3,51,51,35,3,67,35,19,67,19,35,67,35,51,51,67,19,35,19,51,51,51,51,51,51,51,51,51,295,295,295,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,585,569,567,567,567,570,587,51,51,51,51,51,51,51,19,67,35,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,92,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,340,340,341,51,51,51,51,51,51,51,3,19,51,76,77,78,3,51,67,67,67,67,19,19,35,51,19,3,35,51,67,51,19,51,19,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,566,567,567,570,587,51,51,51,51,51,51,51,51,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,93,61,77,77,77,77,77,77,77,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,51,51,51,51,51,51,51,51,51,92,93,94,51,51,51,51,67,51,35,51,35,35,3,67,51,19,51,35,19,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,585,586,586,587,51,51,51,51,51,51,51,51,51,19,67,51,51,301,302,302,302,302,303,51,51,51,51,51,51,51,51,92,45,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,61,77,77,77,77,77,77,77,77,77,62,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,35,51,51,320,321,321,321,321,324,303,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,108,109,109,109,109,109,109,109,109,46,45,109,109,110,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,3,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,19,51,51,320,321,321,321,321,321,322,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,469,470,471,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,475,476,477,51,51,51,51,51,51,51,51,546,92,94,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,51,51,51,3,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,546,51,51,51,51,51,546,51,51,51,69,70,71,51,51,51,35,3,51,51,339,342,321,321,321,321,324,303,51,51,51,51,51,51,92,94,51,51,51,51,51,51,487,488,489,490,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,494,495,496,497,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,546,51,51,51,51,51,51,295,295,295,295,295,51,51,51,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,546,51,51,51,51,51,85,86,87,51,51,51,3,67,51,51,51,339,342,321,321,321,321,324,303,51,51,51,546,51,92,94,69,70,71,51,51,51,506,507,508,509,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,513,514,515,516,51,51,51,51,51,51,51,51,92,94,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,35,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,546,51,51,51,546,51,51,51,51,51,51,101,102,103,51,51,51,35,51,51,51,51,51,339,342,321,321,321,321,322,51,51,51,51,51,92,94,85,86,87,51,51,67,525,526,527,528,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,532,533,534,535,3,3,19,35,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,35,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,19,51,51,51,51,51,320,321,321,321,321,322,51,51,51,51,51,92,94,85,86,87,51,51,35,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,51,3,51,67,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,19,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,3,51,51,51,51,51,339,342,321,321,321,322,51,51,51,51,51,92,94,85,86,87,51,51,67,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,35,35,51,51,546,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,3,19,35,51,3,67,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,51,51,339,340,340,340,341,51,51,51,51,51,92,94,101,102,103,51,51,35,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,35,51,19,3,51,51,546,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,3,3,51,51,35,19,51,51,51,51,51,51,51,51,51,519,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,69,70,71,51,51,19,19,3,35,19,35,51,51,51,51,51,67,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,3,35,67,3,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,35,51,19,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,85,86,87,51,51,67,35,51,51,19,51,19,67,67,35,3,35,51,35,3,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,92,94,51,51,51,51,51,67,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,35,35,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,19,3,3,67,3,3,51,51,51,546,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,101,102,103,51,51,35,67,51,67,19,19,67,35,35,67,3,19,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,51,51,19,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,337,337,51,51,51,51,51,51,51,51,51,51,546,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,35,19,35,67,3,67,51,19,51,19,19,51,19,19,67,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,92,94,51,51,51,51,51,51,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,51,3,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,295,51,3,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,19,51,67,19,35,67,19,19,19,35,3,35,35,51,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,51,3,19,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,295,295,51,51,51,3,51,51,51,295,295,295,295,295,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,3,35,35,19,51,19,51,3,3,67,35,3,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,3,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,51,67,51,3,51,51,51,51,92,94,51,51,51,51,51,51,51,51,295,295,295,51,3,51,67,51,51,51,295,295,295,295,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,295,51,51,51,51,51,51,3,19,19,19,35,19,51,3,35,35,51,3,51,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,51,67,3,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,295,295,295,51,35,67,3,19,51,51,295,295,295,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,295,295,295,51,51,51,51,51,51,51,3,51,3,35,19,67,35,67,3,51,67,19,35,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,67,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,35,67,67,19,51,51,51,51,92,94,51,51,301,302,302,303,51,51,51,295,295,51,51,67,67,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,295,295,295,51,51,51,51,51,51,67,19,67,19,19,67,3,67,3,51,35,3,35,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,92,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,35,51,35,51,51,546,51,92,94,51,51,320,321,321,324,303,51,51,295,295,295,51,67,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,295,295,295,295,51,51,51,51,51,51,19,67,19,35,19,35,67,3,3,67,19,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,92,94,51,51,51,51,51,51,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,35,67,19,51,51,51,51,92,94,51,51,320,321,321,321,322,51,51,51,295,295,51,51,67,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,295,295,295,51,51,51,51,51,51,51,67,67,35,19,51,67,51,3,35,3,3,67,35,35,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,92,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,35,19,67,51,51,51,51,92,94,51,51,339,342,321,321,324,303,51,51,51,51,51,3,35,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,295,295,295,51,51,51,51,51,51,51,19,67,35,51,19,35,35,35,19,19,51,19,19,67,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,92,94,51,51,51,51,51,67,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,35,35,51,35,51,51,51,51,92,94,51,51,51,320,321,321,321,324,303,51,51,51,51,35,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,295,295,295,51,51,51,51,51,51,51,67,67,35,19,35,35,35,19,3,67,3,67,35,19,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,92,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,3,19,19,51,51,51,51,92,94,51,51,51,339,342,321,321,321,324,303,51,51,51,19,67,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,295,295,295,295,51,51,51,51,51,51,51,51,19,19,67,3,3,35,67,3,19,76,77,78,67,35,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,92,94,51,51,51,546,51,19,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,3,67,3,51,51,51,51,92,94,51,51,51,51,320,321,321,321,321,324,303,51,51,51,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,295,295,295,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,51,51,51,92,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,19,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,51,3,67,51,51,51,51,92,94,51,546,51,51,339,342,321,321,321,321,322,51,51,67,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,295,295,295,51,51,51,92,93,61,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,94,51,51,51,51,51,67,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,51,67,35,51,546,51,51,92,94,51,51,51,51,51,339,342,321,321,321,322,51,51,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,51,295,295,295,51,51,51,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,67,35,35,51,51,51,51,92,94,51,51,51,51,301,302,323,321,321,321,322,51,51,19,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,295,295,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,35,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,51,51,67,51,51,546,51,92,94,51,51,51,301,323,321,321,321,321,321,322,51,51,19,67,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,295,295,51,51,19,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,572,573,35,51,35,19,51,51,51,51,92,94,51,51,301,323,321,321,321,321,321,343,341,51,51,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,295,295,51,51,51,546,51,51,51,51,51,51,69,70,71,51,51,51,301,302,302,302,303,51,51,51,51,92,94,51,295,295,51,51,19,582,583,584,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,590,591,592,3,51,35,3,51,51,51,51,92,94,51,51,320,321,321,321,321,321,343,341,51,51,51,19,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,546,51,51,3,67,51,51,51,51,51,51,51,51,546,51,51,51,51,51,85,86,87,51,51,51,320,321,321,321,324,303,51,51,51,92,94,51,295,295,51,51,3,565,602,603,604,605,606,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,609,610,67,3,67,67,67,51,51,51,51,92,94,51,301,323,321,321,321,321,321,322,51,546,51,51,19,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,51,546,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,101,102,103,51,51,51,320,321,321,321,321,322,51,51,51,92,94,51,295,295,51,51,35,565,621,622,623,624,625,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,628,629,51,67,19,19,19,51,51,51,51,92,94,51,320,321,321,321,321,343,340,341,51,51,51,51,3,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,342,321,321,321,322,51,51,51,92,94,51,295,295,295,51,51,35,19,51,35,51,3,35,35,3,67,19,51,19,19,35,67,3,19,3,19,67,3,35,35,19,35,3,19,19,19,3,67,35,19,67,3,67,19,3,51,35,67,67,35,67,51,3,67,51,51,51,51,92,94,51,320,321,321,321,343,341,51,51,51,51,51,51,19,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,51,51,51,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,342,321,321,322,51,51,51,92,94,51,295,295,295,51,35,3,19,19,19,35,19,3,19,51,35,67,35,19,51,67,3,3,3,67,19,3,3,76,77,77,78,3,67,35,3,51,19,67,3,35,51,19,3,3,19,51,67,3,67,35,51,51,67,51,51,51,51,92,94,51,339,342,321,321,322,51,51,51,51,295,295,51,51,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,51,19,3,51,337,337,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,341,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,108,46,45,110,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,320,321,343,341,51,51,51,295,295,295,51,51,35,35,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,295,295,51,51,51,51,51,51,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,35,35,51,51,51,51,67,3,67,19,51,19,67,35,3,19,35,67,35,3,51,51,51,51,51,51,51,51,51,51,51,92,61,77,77,77,77,77,77,77,77,77,77,77,77,77,77,78,51,51,51,51,295,295,295,295,295,295,295,295,51,51,92,94,51,51,295,295,51,51,51,51,51,51,51,76,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,94,51,51,339,340,341,51,51,51,295,295,295,295,51,67,51,51,51,19,51,35,35,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,51,51,3,67,35,67,51,3,35,19,3,51,51,3,19,35,51,67,67,51,51,51,51,51,51,546,51,51,51,51,51,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,94,51,51,295,295,295,295,295,295,295,295,51,51,51,51,92,94,51,51,51,295,295,295,51,51,51,51,51,92,45,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,110,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,51,19,67,3,67,51,51,51,51,69,70,71,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,67,3,19,35,67,67,67,19,51,19,67,51,3,19,3,35,51,35,35,51,51,51,51,546,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,546,51,51,92,94,51,51,51,51,295,295,295,295,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,19,51,67,3,51,35,3,67,67,3,35,19,3,19,3,51,3,19,51,51,51,69,100,86,99,71,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,35,67,3,35,19,51,51,35,3,3,3,67,19,51,3,3,67,35,51,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,76,62,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,35,35,35,51,35,67,19,19,35,51,3,35,3,3,51,35,3,67,67,51,51,51,85,86,86,86,87,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,3,35,35,51,51,51,51,51,51,51,51,51,51,51,51,67,67,3,19,3,51,67,19,51,67,19,67,3,51,35,19,19,19,19,19,51,67,3,51,51,51,51,51,92,94,51,51,51,546,51,51,51,51,51,51,51,51,76,77,62,61,77,78,51,51,51,51,51,51,51,76,62,93,94,51,51,51,51,19,51,51,51,3,51,3,67,3,3,51,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,85,86,86,86,87,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,51,3,51,35,19,67,19,67,3,3,35,3,19,19,51,51,35,35,3,67,67,35,19,67,51,51,51,51,51,92,61,77,77,77,77,77,77,77,77,77,77,77,77,62,93,93,93,93,61,77,77,77,77,77,77,77,62,93,45,110,51,51,51,51,51,67,3,3,35,19,3,67,51,19,35,67,35,3,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,19,51,51,51,51,85,86,86,86,99,71,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,62,45,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,93,45,109,109,110,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,85,86,86,86,86,87,51,51,51,51,51,51,51,295,295,295,295,295,51,51,546,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,45,110,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,108,46,61,78,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,85,86,86,86,86,99,71,51,51,51,51,51,51,295,295,295,295,51,51,546,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,295,295,295,295,295,51,19,3,51,51,51,51,51,51,51,51,51,51,301,302,303,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,295,295,295,295,295,51,51,108,46,94,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,67,51,51,51,85,86,86,86,86,86,99,71,51,51,51,51,51,51,295,295,295,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,3,35,51,51,51,51,51,51,51,51,51,51,320,321,324,303,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,295,295,295,295,295,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,51,51,85,86,86,86,86,86,86,99,71,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,35,19,51,51,51,51,51,51,51,51,51,51,320,321,321,324,302,303,51,51,51,51,51,51,51,51,76,62,61,78,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,62,61,78,51,51,51,51,51,51,51,51,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,19,51,51,51,101,84,86,86,86,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,301,302,302,303,51,51,295,295,295,51,19,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,322,51,51,51,51,51,35,3,67,92,93,93,94,3,3,51,3,19,51,3,67,67,3,19,19,3,67,35,19,67,19,35,3,51,3,67,92,93,93,94,3,67,51,19,51,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,101,84,86,86,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,301,323,321,321,324,303,51,295,295,295,51,67,3,67,51,19,35,19,3,51,51,51,51,320,321,321,321,321,322,51,51,546,51,67,3,3,51,92,93,93,94,3,19,35,67,67,35,3,3,35,67,67,35,3,51,3,67,51,35,3,3,19,35,3,92,93,93,94,3,35,19,35,3,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,19,51,51,51,51,51,101,84,86,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,320,321,321,321,321,324,303,51,51,51,51,3,51,19,67,3,3,35,35,51,51,51,51,339,342,321,321,321,322,51,51,51,51,51,51,51,51,108,46,45,110,519,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,520,108,46,45,110,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,67,51,51,51,51,51,51,101,84,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,320,321,321,321,321,321,322,51,51,51,51,19,3,19,35,51,19,19,67,51,51,51,51,51,339,342,321,321,322,51,51,51,51,51,295,295,51,51,92,94,51,365,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,354,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,51,51,85,86,86,83,103,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,320,321,321,321,321,321,324,303,51,51,51,67,35,3,67,35,67,35,67,51,51,51,51,51,51,339,340,340,341,51,51,51,51,295,295,295,295,51,92,94,51,286,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,281,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,101,102,102,103,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,339,342,321,321,321,321,321,322,51,51,51,51,51,51,51,51,51,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,301,302,302,303,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,339,342,321,321,321,321,324,303,51,51,51,51,51,51,51,51,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,92,94,51,51,51,51,51,51,51,51,51,51,301,302,302,323,321,321,322,51,51,51,51,51,546,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,320,321,321,321,321,321,324,302,302,302,303,51,51,51,51,3,3,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,51,51,92,94,51,51,51,51,51,51,51,51,301,302,323,321,321,321,321,321,322,51,51,51,51,546,51,51,76,62,94,51,51,19,51,67,51,67,19,67,19,51,51,51,3,51,35,67,51,19,67,3,35,35,67,51,3,51,3,35,3,67,51,19,3,67,51,19,3,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,339,342,321,321,321,321,321,321,321,321,324,303,51,51,51,19,51,19,35,51,35,51,35,51,35,67,19,35,67,3,51,51,51,51,51,51,92,61,78,51,51,51,51,51,51,51,320,321,321,321,321,321,321,343,341,51,51,51,51,51,51,76,62,45,110,51,51,19,51,3,67,3,19,3,19,67,51,35,67,35,51,51,51,19,3,19,35,3,51,19,51,3,3,51,67,19,51,3,67,3,3,3,19,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,322,51,51,51,19,35,67,19,51,35,19,35,51,19,35,67,19,67,19,51,51,51,51,51,51,108,46,61,78,51,51,51,546,51,51,339,342,321,321,343,340,340,341,51,51,51,51,51,51,76,62,45,110,51,51,51,67,3,19,35,51,3,35,51,51,19,67,67,51,51,19,35,3,51,67,35,3,51,35,35,67,19,51,35,35,3,51,67,51,19,35,3,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,339,340,340,342,321,321,321,321,321,321,322,51,51,51,19,35,67,35,3,67,51,19,35,51,3,3,35,19,3,51,51,51,51,51,51,51,108,46,61,78,51,51,51,51,51,51,339,340,340,341,51,51,51,51,51,51,51,51,76,62,45,110,51,51,51,51,51,3,35,67,19,3,51,19,35,19,67,19,19,67,35,67,35,51,35,67,51,35,19,3,67,19,51,51,51,3,51,51,51,3,19,35,35,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,339,340,342,321,321,321,343,341,51,51,51,67,3,51,67,35,51,67,67,19,19,35,35,35,51,3,51,51,51,51,51,51,51,51,108,46,61,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,45,110,51,51,295,295,51,51,3,35,19,67,51,51,19,3,19,67,3,67,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,19,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,340,341,51,51,51,51,51,3,51,35,51,35,35,3,51,67,35,51,51,35,19,51,51,51,51,51,51,51,51,51,92,45,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,45,109,110,51,51,295,295,295,51,51,3,67,51,67,67,19,3,19,67,51,51,67,19,3,51,51,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,19,35,3,67,51,3,3,35,3,67,67,3,35,19,19,51,51,51,51,51,301,302,303,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,295,295,295,295,295,51,67,35,19,19,76,77,78,35,67,19,67,3,51,19,35,51,51,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,295,295,295,295,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,3,51,51,19,51,3,51,51,19,67,35,19,51,35,51,51,51,51,51,301,323,321,322,51,92,94,51,295,295,295,51,51,51,51,51,51,51,51,295,295,295,51,92,94,51,51,295,295,295,295,51,51,51,51,51,51,92,93,94,51,51,51,51,51,51,51,67,51,51,295,295,51,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,295,295,295,295,295,295,295,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,35,35,51,3,67,35,3,51,35,51,35,19,51,51,51,51,51,320,321,321,322,51,92,94,51,295,51,51,51,51,301,302,302,303,51,51,51,51,295,51,92,61,77,77,77,77,77,77,77,77,77,77,77,77,62,93,94,51,51,51,51,51,51,35,3,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,546,51,51,51,51,547,548,548,548,549,51,51,51,51,51,51,51,51,51,51,51,67,51,3,19,3,67,19,19,35,51,51,51,67,19,51,51,51,51,51,320,321,343,341,51,92,94,51,295,51,51,51,51,320,321,321,324,303,51,51,51,295,51,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,110,51,51,51,51,51,51,3,19,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,546,51,51,51,295,295,295,295,295,295,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,547,550,567,567,567,551,548,549,51,51,51,51,51,51,51,51,51,19,35,35,67,76,77,78,35,19,19,35,51,51,51,51,51,51,51,51,339,340,341,51,51,92,94,51,51,51,51,51,51,320,321,321,321,324,303,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,51,51,51,295,295,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,546,51,51,566,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,3,67,51,51,92,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,546,51,51,51,51,339,342,321,321,321,324,303,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,546,51,51,51,51,566,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,19,51,51,51,92,93,61,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,94,51,51,51,51,51,51,51,320,321,321,321,321,324,303,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,568,51,51,69,70,71,51,51,51,67,19,51,51,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,94,51,51,51,51,51,51,51,339,342,321,321,321,321,324,303,51,51,51,51,51,51,51,51,51,51,3,67,3,51,35,35,3,67,67,67,19,19,51,3,67,19,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,585,569,567,567,567,567,567,568,51,51,85,86,87,51,51,51,51,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,339,342,321,321,321,321,322,51,51,51,51,51,51,51,51,51,51,67,35,67,3,19,19,51,19,3,3,3,19,3,19,19,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,570,587,51,51,85,86,87,51,51,51,35,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,339,340,342,321,321,322,51,51,51,51,51,51,51,51,51,51,67,67,51,3,19,3,51,35,19,67,3,51,19,35,3,67,51,51,51,51,51,51,51,51,51,51,51,51,547,548,548,548,548,548,549,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,568,51,51,51,101,102,103,51,51,51,3,19,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,339,340,340,341,51,51,51,51,51,51,51,51,51,51,3,51,3,19,35,67,3,67,51,51,35,19,19,51,67,67,35,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,51,585,569,567,567,570,587,51,51,51,51,51,51,51,51,51,35,67,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,62,61,78,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,19,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,93,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,19,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,567,568,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,69,70,70,71,51,51,51,51,51,51,51,51,51,51,51,51,35,67,67,3,51,51,51,51,51,3,3,19,51,3,51,67,51,3,51,51,51,51,51,92,93,93,94,51,51,51,51,51,19,19,67,35,3,3,51,35,19,51,51,35,51,51,51,51,51,51,51,35,67,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,295,295,51,51,51,85,86,86,99,70,70,71,51,51,51,51,295,295,51,51,51,3,3,3,51,51,51,51,51,51,51,35,19,51,19,35,19,51,67,3,51,51,51,51,92,93,93,94,51,51,51,51,3,19,67,67,51,19,19,3,51,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,295,295,295,295,51,51,85,86,86,86,86,86,99,71,51,51,295,295,295,295,295,51,35,19,3,3,3,51,19,3,19,3,51,35,3,67,67,19,35,67,51,35,19,67,51,92,93,93,94,51,67,19,51,35,67,51,3,35,19,19,51,3,67,19,67,67,67,67,19,3,3,3,51,35,67,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,570,587,51,51,51,51,51,51,51,51,51,51,51,51,519,425,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,295,295,295,295,295,295,51,85,86,86,86,86,86,86,87,51,51,295,295,295,295,295,51,3,19,35,35,51,35,51,67,67,67,51,67,67,51,67,67,35,67,35,35,19,51,51,92,93,93,94,51,51,19,67,51,67,19,51,67,51,67,51,67,35,51,35,3,3,51,51,19,3,35,51,51,3,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,519,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,295,295,295,295,295,295,51,101,84,86,86,86,86,86,99,51,51,295,295,295,295,51,51,67,35,19,3,3,67,35,35,35,19,51,51,51,51,51,51,51,19,67,51,3,67,51,92,93,93,94,51,35,3,67,3,67,51,51,51,51,51,51,51,51,51,67,35,35,67,67,3,3,67,35,51,35,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,295,295,295,295,295,295,51,51,51,101,102,102,102,102,102,103,51,51,51,295,295,51,51,51,19,35,35,51,3,51,3,35,51,35,3,35,51,51,51,51,3,67,35,19,3,67,51,92,93,93,94,51,19,19,51,67,51,35,51,51,51,51,51,51,51,51,19,51,19,67,51,67,67,35,19,3,67,35,51,51,51,51,51,546,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,67,67,51,51,295,295,295,295,295,295,51,51,51,51,51,51,295,295,295,51,35,51,92,93,93,94,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,19,3,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,69,70,70,71,51,51,51,51,585,586,569,567,567,567,567,567,567,568,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,262,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,295,51,51,3,51,92,93,93,94,51,337,51,51,295,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,85,86,86,99,70,70,71,51,51,51,585,586,569,567,567,567,570,587,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,262,264,281,286,264,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,62,93,93,61,78,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,85,86,86,86,86,86,99,71,51,51,51,51,585,586,586,586,587,51,51,51,51,51,51,51,51,286,267,994,994,994,994,994,994,354,3,3,3,3,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,548,548,548,549,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,92,93,93,93,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,85,86,86,86,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,539,425,520,3,3,3,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,262,281,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,546,51,546,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,92,93,93,93,93,94,51,51,51,51,51,51,51,51,51,69,70,71,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,101,84,86,86,86,86,86,99,71,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,539,520,3,3,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,108,109,109,109,109,110,51,51,51,51,51,51,51,51,51,85,86,87,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,547,548,548,548,549,51,51,51,51,51,51,85,86,86,86,86,86,86,99,71,51,51,51,51,51,51,301,302,302,302,303,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,539,425,425,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,567,551,548,548,548,549,51,51,51,51,51,51,51,546,51,51,51,51,301,302,302,303,301,302,302,302,302,303,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,85,86,87,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,551,548,548,549,51,51,51,85,86,86,86,86,86,86,86,99,71,51,51,51,301,302,323,321,321,321,324,302,303,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,546,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,551,549,546,51,51,51,51,51,51,51,51,301,302,323,321,321,324,323,321,321,321,321,322,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,101,102,103,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,567,567,551,548,549,51,85,86,86,86,86,86,86,86,86,87,51,51,51,320,321,321,321,321,321,321,321,324,303,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,546,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,568,51,546,51,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,321,322,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,568,51,101,84,86,86,86,86,86,86,86,87,51,51,51,320,321,321,321,321,321,321,321,321,322,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,301,323,321,321,321,321,321,321,321,321,321,343,341,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,301,302,302,303,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,568,51,51,101,102,102,102,99,86,86,86,87,51,51,51,320,321,321,321,321,321,321,321,321,322,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,301,323,321,321,321,321,321,321,321,321,343,340,341,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,301,302,302,303,301,302,323,321,321,324,303,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,101,102,102,102,103,51,51,51,339,342,321,321,321,321,321,321,321,322,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,546,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,320,321,321,321,321,321,321,343,340,340,341,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,320,321,321,324,323,321,321,321,321,321,324,303,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,342,321,321,321,321,322,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,569,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,320,321,321,321,321,321,343,341,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,321,324,303,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,551,549,547,548,548,549,51,51,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,322,51,51,51,51,51,51,286,267,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,320,321,321,321,321,321,322,51,51,51,51,51,51,51,51,51,51,51,51,519,425,425,425,425,520,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,321,321,322,51,51,51,51,51,585,586,569,567,567,567,567,567,567,567,567,551,550,567,567,551,549,51,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,322,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,339,342,321,321,343,340,341,51,51,51,51,51,51,51,51,51,51,51,519,538,994,1020,1022,994,539,425,425,520,51,51,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,321,321,322,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,51,339,342,321,321,343,341,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,339,340,340,341,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,259,1020,1022,259,994,994,994,539,425,425,520,51,51,51,51,51,339,342,321,321,321,321,321,321,321,321,321,321,324,303,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,341,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,295,295,295,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,570,587,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,259,1020,1022,259,994,994,994,994,994,994,539,520,51,51,51,51,51,339,340,340,340,342,321,321,321,321,321,321,321,322,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,354,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,585,569,567,567,567,567,567,567,567,570,587,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,259,1020,1022,259,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,339,340,342,321,321,321,321,321,324,303,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,551,548,549,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,585,586,586,569,567,567,567,570,587,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,259,1020,1022,259,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,339,342,321,321,321,321,321,322,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,567,567,551,548,549,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,585,586,586,586,587,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,1020,1022,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,339,340,342,321,321,321,322,51,51,546,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,546,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,519,425,538,994,994,994,994,994,994,1020,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,339,340,340,340,341,51,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,546,546,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,1004,1070,1069,1006,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,365,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,569,567,567,567,567,567,567,567,567,567,567,567,567,567,570,587,51,51,51,51,51,51,51,546,51,51,51,51,365,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,519,425,538,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,586,586,586,569,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,569,567,567,567,567,567,570,587,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,586,586,586,586,587,51,51,546,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,519,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,425,520,51,51,51,51,51,51,51,51,51,51,51,51,519,520,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,520,51,51,51,51,51,546,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,425,520,51,51,51,51,51,51,51,51,519,538,539,520,51,51,51,51,51,51,51,51,51,519,425,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,425,520,51,51,51,51,51,51,51,51,519,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,425,520,51,51,51,519,425,538,994,994,539,425,520,51,51,51,51,519,425,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,425,425,425,425,425,425,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,539,425,425,425,538,994,994,994,994,994,994,539,425,425,425,425,538,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,
994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,1020,1021,1021,1022,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994,994
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,264,267,1122,1122,1122,262,264,264,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,281,51,51,51,286,267,1122,262,281,51,51,51,286,264,264,264,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,281,51,51,51,51,51,51,51,365,262,281,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,281,3,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,295,295,295,51,51,286,281,51,51,51,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,3,3,3,3,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,3,295,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,3,295,3,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,295,295,295,295,295,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,3,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,295,295,295,295,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,425,538,1122,1122,1122,1122,1122,1122,1122,262,264,281,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,3,3,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,3,3,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,546,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,3,3,3,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,3,51,51,35,3,67,67,35,67,51,19,19,3,35,19,67,19,35,67,51,67,35,67,67,67,3,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,264,264,281,51,51,51,286,264,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,35,35,19,19,19,3,19,35,35,3,3,67,19,67,35,67,35,19,35,35,35,19,35,67,3,35,51,51,51,51,51,51,51,51,51,51,286,264,264,264,267,1122,1122,1122,262,264,281,51,51,51,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,35,3,51,19,35,19,3,3,35,19,3,19,51,51,3,51,35,67,19,67,51,3,35,35,35,51,51,51,51,69,70,71,51,51,51,51,51,51,51,286,267,1122,262,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,3,67,3,35,35,51,51,51,3,3,3,51,3,67,51,3,3,3,19,51,67,19,35,35,19,19,51,51,51,51,85,86,87,51,51,51,51,51,51,51,51,286,264,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,264,264,264,264,267,1122,1122,1122,262,264,264,264,264,264,264,267,1122,1122,1122,1122,1122,1122,262,264,281,51,51,51,51,51,51,51,51,67,67,51,51,51,51,51,51,51,51,51,51,51,35,19,3,51,51,51,51,51,51,51,51,51,3,51,51,51,51,85,86,87,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,281,51,51,51,51,51,51,286,264,267,262,281,51,51,51,51,51,51,286,264,264,264,264,264,264,281,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,35,51,51,51,51,101,102,103,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,264,264,264,264,264,281,51,51,51,51,51,51,51,51,51,51,51,286,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,67,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,295,35,19,51,51,51,51,51,51,51,51,51,51,51,51,51,546,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,264,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,295,295,3,3,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,35,3,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,295,295,295,3,51,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,3,3,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,35,51,3,35,35,19,35,3,3,19,19,51,67,35,19,19,51,35,19,35,67,19,19,51,51,67,67,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,35,51,19,19,3,19,35,67,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,35,67,35,67,51,51,67,35,67,3,67,19,3,3,3,19,35,67,35,51,67,35,67,67,51,19,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,67,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,3,35,35,51,51,51,3,67,3,67,51,19,35,3,35,19,51,67,3,51,35,19,35,19,19,51,3,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,3,51,3,35,35,67,51,51,51,51,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,51,67,19,35,67,35,3,67,51,35,19,51,35,67,51,19,35,67,19,35,51,67,35,19,35,35,19,35,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,35,19,35,3,35,67,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,19,51,3,51,67,51,19,19,51,19,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,546,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,19,67,3,3,67,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,301,302,302,302,303,51,51,51,295,295,51,51,35,51,19,3,35,51,19,35,3,67,3,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,546,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,547,548,548,549,51,51,295,295,295,51,51,51,19,35,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,35,51,35,67,67,51,67,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,301,323,321,321,321,324,303,51,51,295,295,51,51,35,35,19,35,3,19,19,3,3,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,547,550,567,567,568,51,51,51,295,295,51,51,51,19,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,3,51,19,3,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,301,302,323,321,321,321,321,321,324,303,51,51,295,51,51,19,19,35,3,67,35,67,3,35,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,295,295,295,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,566,567,567,567,551,549,51,51,51,51,51,51,51,67,19,51,67,3,19,19,35,67,3,51,3,67,67,51,3,3,35,67,19,3,35,67,35,35,19,19,35,51,35,3,19,51,67,19,3,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,301,323,321,321,321,321,321,321,321,321,322,51,51,51,51,51,19,35,19,67,67,3,51,51,35,67,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,547,550,567,567,567,567,568,51,51,51,51,51,51,51,19,51,67,35,35,19,35,51,19,19,67,67,67,19,3,19,35,51,35,51,3,67,67,67,35,51,3,35,67,51,51,67,35,3,3,67,19,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,322,51,51,51,51,19,67,19,35,67,35,35,51,19,35,3,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,566,567,567,567,567,567,568,51,51,51,51,51,51,51,19,51,3,3,67,35,67,51,51,35,19,19,19,3,35,51,35,35,19,3,67,3,35,67,3,67,35,19,51,19,19,67,3,67,51,51,76,77,78,19,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,295,51,51,51,51,320,321,321,321,321,321,321,321,321,343,341,51,51,51,51,67,51,35,67,19,3,51,35,67,35,19,35,35,51,3,51,51,35,3,67,35,51,19,35,67,51,51,51,51,51,51,51,51,295,295,295,295,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,566,567,567,567,567,567,568,51,51,51,51,51,51,51,67,67,35,51,35,67,51,35,67,3,35,67,35,67,51,19,19,51,3,67,51,51,67,3,35,19,19,51,19,51,19,35,51,51,51,51,92,93,94,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,295,295,295,295,51,51,51,51,339,340,342,321,321,321,321,343,340,341,51,51,51,51,51,35,67,3,3,51,19,3,51,51,35,3,67,35,19,67,19,35,67,35,51,51,67,19,35,19,51,51,51,51,51,51,51,51,51,295,295,295,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,585,569,567,567,567,570,587,51,51,51,51,51,51,51,19,67,35,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,92,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,340,340,341,51,51,51,51,51,51,51,3,19,51,76,77,78,3,51,67,67,67,67,19,19,35,51,19,3,35,51,67,51,19,51,19,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,566,567,567,570,587,51,51,51,51,51,51,51,51,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,93,61,77,77,77,77,77,77,77,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,51,51,51,51,51,51,51,51,51,92,93,94,51,51,51,51,67,51,35,51,35,35,3,67,51,19,51,35,19,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,585,586,586,587,51,51,51,51,51,51,51,51,51,19,67,51,51,301,302,302,302,302,303,51,51,51,51,51,51,51,51,92,45,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,61,77,77,77,77,77,77,77,77,77,62,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,35,51,51,320,321,321,321,321,324,303,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,108,109,109,109,109,109,109,109,109,46,45,109,109,110,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,3,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,19,51,51,320,321,321,321,321,321,322,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,469,470,471,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,472,473,474,475,476,477,51,51,51,51,51,51,51,51,546,92,94,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,51,51,51,3,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,546,51,51,51,51,51,546,51,51,51,69,70,71,51,51,51,35,3,51,51,339,342,321,321,321,321,324,303,51,51,51,51,51,51,92,94,51,51,51,51,51,51,487,488,489,490,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,491,492,493,494,495,496,497,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,546,51,51,51,51,51,51,295,295,295,295,295,51,51,51,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,546,51,51,51,51,51,85,86,87,51,51,51,3,67,51,51,51,339,342,321,321,321,321,324,303,51,51,51,546,51,92,94,69,70,71,51,51,51,506,507,508,509,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,510,511,512,513,514,515,516,51,51,51,51,51,51,51,51,92,94,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,35,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,546,51,51,51,546,51,51,51,51,51,51,101,102,103,51,51,51,35,51,51,51,51,51,339,342,321,321,321,321,322,51,51,51,51,51,92,94,85,86,87,51,51,67,525,526,527,528,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,529,530,531,532,533,534,535,3,3,19,35,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,35,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,19,51,51,51,51,51,320,321,321,321,321,322,51,51,51,51,51,92,94,85,86,87,51,51,35,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,51,3,51,67,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,19,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,3,51,51,51,51,51,339,342,321,321,321,322,51,51,51,51,51,92,94,85,86,87,51,51,67,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,35,35,51,51,546,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,3,19,35,51,3,67,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,51,51,339,340,340,340,341,51,51,51,51,51,92,94,101,102,103,51,51,35,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,35,51,19,3,51,51,546,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,3,3,51,51,35,19,51,51,51,51,51,51,51,51,51,519,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,69,70,71,51,51,19,19,3,35,19,35,51,51,51,51,51,67,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,3,35,67,3,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,35,51,19,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,85,86,87,51,51,67,35,51,51,19,51,19,67,67,35,3,35,51,35,3,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,92,94,51,51,51,51,51,67,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,35,35,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,19,3,3,67,3,3,51,51,51,546,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,101,102,103,51,51,35,67,51,67,19,19,67,35,35,67,3,19,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,51,51,19,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,337,337,51,51,51,51,51,51,51,51,51,51,546,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,35,19,35,67,3,67,51,19,51,19,19,51,19,19,67,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,92,94,51,51,51,51,51,51,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,51,3,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,295,51,3,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,19,51,67,19,35,67,19,19,19,35,3,35,35,51,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,51,3,19,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,295,295,51,51,51,3,51,51,51,295,295,295,295,295,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,3,35,35,19,51,19,51,3,3,67,35,3,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,3,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,51,67,51,3,51,51,51,51,92,94,51,51,51,51,51,51,51,51,295,295,295,51,3,51,67,51,51,51,295,295,295,295,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,295,51,51,51,51,51,51,3,19,19,19,35,19,51,3,35,35,51,3,51,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,51,67,3,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,295,295,295,51,35,67,3,19,51,51,295,295,295,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,295,295,295,51,51,51,51,51,51,51,3,51,3,35,19,67,35,67,3,51,67,19,35,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,67,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,35,67,67,19,51,51,51,51,92,94,51,51,301,302,302,303,51,51,51,295,295,51,51,67,67,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,295,295,295,51,51,51,51,51,51,67,19,67,19,19,67,3,67,3,51,35,3,35,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,92,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,35,51,35,51,51,546,51,92,94,51,51,320,321,321,324,303,51,51,295,295,295,51,67,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,295,295,295,295,51,51,51,51,51,51,19,67,19,35,19,35,67,3,3,67,19,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,92,94,51,51,51,51,51,51,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,35,67,19,51,51,51,51,92,94,51,51,320,321,321,321,322,51,51,51,295,295,51,51,67,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,295,295,295,51,51,51,51,51,51,51,67,67,35,19,51,67,51,3,35,3,3,67,35,35,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,92,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,35,19,67,51,51,51,51,92,94,51,51,339,342,321,321,324,303,51,51,51,51,51,3,35,51,51,295,295,295,295,295,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,295,295,295,51,51,51,51,51,51,51,19,67,35,51,19,35,35,35,19,19,51,19,19,67,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,92,94,51,51,51,51,51,67,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,35,35,51,35,51,51,51,51,92,94,51,51,51,320,321,321,321,324,303,51,51,51,51,35,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,295,295,295,51,51,51,51,51,51,51,67,67,35,19,35,35,35,19,3,67,3,67,35,19,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,92,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,3,19,19,51,51,51,51,92,94,51,51,51,339,342,321,321,321,324,303,51,51,51,19,67,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,295,295,295,295,51,51,51,51,51,51,51,51,19,19,67,3,3,35,67,3,19,76,77,78,67,35,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,92,94,51,51,51,546,51,19,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,3,67,3,51,51,51,51,92,94,51,51,51,51,320,321,321,321,321,324,303,51,51,51,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,295,295,295,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,51,51,51,92,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,19,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,51,3,67,51,51,51,51,92,94,51,546,51,51,339,342,321,321,321,321,322,51,51,67,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,295,295,295,51,51,51,92,93,61,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,94,51,51,51,51,51,67,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,51,67,35,51,546,51,51,92,94,51,51,51,51,51,339,342,321,321,321,322,51,51,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,51,295,295,295,51,51,51,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,94,51,51,51,51,51,3,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,67,67,35,35,51,51,51,51,92,94,51,51,51,51,301,302,323,321,321,321,322,51,51,19,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,295,295,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,35,544,545,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,553,554,19,51,51,67,51,51,546,51,92,94,51,51,51,301,323,321,321,321,321,321,322,51,51,19,67,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,295,295,51,51,19,563,564,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,572,573,35,51,35,19,51,51,51,51,92,94,51,51,301,323,321,321,321,321,321,343,341,51,51,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,295,295,51,51,51,546,51,51,51,51,51,51,69,70,71,51,51,51,301,302,302,302,303,51,51,51,51,92,94,51,295,295,51,51,19,582,583,584,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,590,591,592,3,51,35,3,51,51,51,51,92,94,51,51,320,321,321,321,321,321,343,341,51,51,51,19,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,546,51,51,3,67,51,51,51,51,51,51,51,51,546,51,51,51,51,51,85,86,87,51,51,51,320,321,321,321,324,303,51,51,51,92,94,51,295,295,51,51,3,565,602,603,604,605,606,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,604,605,606,607,608,609,610,67,3,67,67,67,51,51,51,51,92,94,51,301,323,321,321,321,321,321,322,51,546,51,51,19,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,51,546,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,101,102,103,51,51,51,320,321,321,321,321,322,51,51,51,92,94,51,295,295,51,51,35,565,621,622,623,624,625,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,623,624,625,626,627,628,629,51,67,19,19,19,51,51,51,51,92,94,51,320,321,321,321,321,343,340,341,51,51,51,51,3,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,342,321,321,321,322,51,51,51,92,94,51,295,295,295,51,51,35,19,51,35,51,3,35,35,3,67,19,51,19,19,35,67,3,19,3,19,67,3,35,35,19,35,3,19,19,19,3,67,35,19,67,3,67,19,3,51,35,67,67,35,67,51,3,67,51,51,51,51,92,94,51,320,321,321,321,343,341,51,51,51,51,51,51,19,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,51,51,51,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,342,321,321,322,51,51,51,92,94,51,295,295,295,51,35,3,19,19,19,35,19,3,19,51,35,67,35,19,51,67,3,3,3,67,19,3,3,76,77,77,78,3,67,35,3,51,19,67,3,35,51,19,3,3,19,51,67,3,67,35,51,51,67,51,51,51,51,92,94,51,339,342,321,321,322,51,51,51,51,295,295,51,51,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,51,19,3,51,337,337,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,341,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,108,46,45,110,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,320,321,343,341,51,51,51,295,295,295,51,51,35,35,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,295,295,51,51,51,51,51,51,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,35,35,51,51,51,51,67,3,67,19,51,19,67,35,3,19,35,67,35,3,51,51,51,51,51,51,51,51,51,51,51,92,61,77,77,77,77,77,77,77,77,77,77,77,77,77,77,78,51,51,51,51,295,295,295,295,295,295,295,295,51,51,92,94,51,51,295,295,51,51,51,51,51,51,51,76,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,94,51,51,339,340,341,51,51,51,295,295,295,295,51,67,51,51,51,19,51,35,35,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,51,51,3,67,35,67,51,3,35,19,3,51,51,3,19,35,51,67,67,51,51,51,51,51,51,546,51,51,51,51,51,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,94,51,51,295,295,295,295,295,295,295,295,51,51,51,51,92,94,51,51,51,295,295,295,51,51,51,51,51,92,45,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,110,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,51,19,67,3,67,51,51,51,51,69,70,71,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,67,3,19,35,67,67,67,19,51,19,67,51,3,19,3,35,51,35,35,51,51,51,51,546,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,546,51,51,92,94,51,51,51,51,295,295,295,295,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,19,51,67,3,51,35,3,67,67,3,35,19,3,19,3,51,3,19,51,51,51,69,100,86,99,71,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,35,67,3,35,19,51,51,35,3,3,3,67,19,51,3,3,67,35,51,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,76,62,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,35,35,35,51,35,67,19,19,35,51,3,35,3,3,51,35,3,67,67,51,51,51,85,86,86,86,87,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,3,35,35,51,51,51,51,51,51,51,51,51,51,51,51,67,67,3,19,3,51,67,19,51,67,19,67,3,51,35,19,19,19,19,19,51,67,3,51,51,51,51,51,92,94,51,51,51,546,51,51,51,51,51,51,51,51,76,77,62,61,77,78,51,51,51,51,51,51,51,76,62,93,94,51,51,51,51,19,51,51,51,3,51,3,67,3,3,51,3,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,85,86,86,86,87,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,51,3,51,35,19,67,19,67,3,3,35,3,19,19,51,51,35,35,3,67,67,35,19,67,51,51,51,51,51,92,61,77,77,77,77,77,77,77,77,77,77,77,77,62,93,93,93,93,61,77,77,77,77,77,77,77,62,93,45,110,51,51,51,51,51,67,3,3,35,19,3,67,51,19,35,67,35,3,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,19,51,51,51,51,85,86,86,86,99,71,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,62,45,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,93,45,109,109,110,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,85,86,86,86,86,87,51,51,51,51,51,51,51,295,295,295,295,295,51,51,546,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,45,110,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,108,46,61,78,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,85,86,86,86,86,99,71,51,51,51,51,51,51,295,295,295,295,51,51,546,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,295,295,295,295,295,51,19,3,51,51,51,51,51,51,51,51,51,51,301,302,303,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,295,295,295,295,295,51,51,108,46,94,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,67,51,51,51,85,86,86,86,86,86,99,71,51,51,51,51,51,51,295,295,295,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,3,35,51,51,51,51,51,51,51,51,51,51,320,321,324,303,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,295,295,295,295,295,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,51,51,51,51,85,86,86,86,86,86,86,99,71,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,35,19,51,51,51,51,51,51,51,51,51,51,320,321,321,324,302,303,51,51,51,51,51,51,51,51,76,62,61,78,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,62,61,78,51,51,51,51,51,51,51,51,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,19,51,51,51,101,84,86,86,86,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,301,302,302,303,51,51,295,295,295,51,19,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,322,51,51,51,51,51,35,3,67,92,93,93,94,3,3,51,3,19,51,3,67,67,3,19,19,3,67,35,19,67,19,35,3,51,3,67,92,93,93,94,3,67,51,19,51,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,101,84,86,86,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,301,323,321,321,324,303,51,295,295,295,51,67,3,67,51,19,35,19,3,51,51,51,51,320,321,321,321,321,322,51,51,546,51,67,3,3,51,92,93,93,94,3,19,35,67,67,35,3,3,35,67,67,35,3,51,3,67,51,35,3,3,19,35,3,92,93,93,94,3,35,19,35,3,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,19,51,51,51,51,51,101,84,86,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,320,321,321,321,321,324,303,51,51,51,51,3,51,19,67,3,3,35,35,51,51,51,51,339,342,321,321,321,322,51,51,51,51,51,51,51,51,108,46,45,110,519,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,425,520,108,46,45,110,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,67,51,51,51,51,51,51,101,84,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,320,321,321,321,321,321,322,51,51,51,51,19,3,19,35,51,19,19,67,51,51,51,51,51,339,342,321,321,322,51,51,51,51,51,295,295,51,51,92,94,51,365,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,259,354,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,51,51,85,86,86,83,103,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,320,321,321,321,321,321,324,303,51,51,51,67,35,3,67,35,67,35,67,51,51,51,51,51,51,339,340,340,341,51,51,51,51,295,295,295,295,51,92,94,51,286,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,264,281,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,101,102,102,103,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,339,342,321,321,321,321,321,322,51,51,51,51,51,51,51,51,51,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,301,302,302,303,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,339,342,321,321,321,321,324,303,51,51,51,51,51,51,51,51,67,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,92,94,51,51,51,51,51,51,51,51,51,51,301,302,302,323,321,321,322,51,51,51,51,51,546,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,320,321,321,321,321,321,324,302,302,302,303,51,51,51,51,3,3,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,51,51,92,94,51,51,51,51,51,51,51,51,301,302,323,321,321,321,321,321,322,51,51,51,51,546,51,51,76,62,94,51,51,19,51,67,51,67,19,67,19,51,51,51,3,51,35,67,51,19,67,3,35,35,67,51,3,51,3,35,3,67,51,19,3,67,51,19,3,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,339,342,321,321,321,321,321,321,321,321,324,303,51,51,51,19,51,19,35,51,35,51,35,51,35,67,19,35,67,3,51,51,51,51,51,51,92,61,78,51,51,51,51,51,51,51,320,321,321,321,321,321,321,343,341,51,51,51,51,51,51,76,62,45,110,51,51,19,51,3,67,3,19,3,19,67,51,35,67,35,51,51,51,19,3,19,35,3,51,19,51,3,3,51,67,19,51,3,67,3,3,3,19,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,322,51,51,51,19,35,67,19,51,35,19,35,51,19,35,67,19,67,19,51,51,51,51,51,51,108,46,61,78,51,51,51,546,51,51,339,342,321,321,343,340,340,341,51,51,51,51,51,51,76,62,45,110,51,51,51,67,3,19,35,51,3,35,51,51,19,67,67,51,51,19,35,3,51,67,35,3,51,35,35,67,19,51,35,35,3,51,67,51,19,35,3,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,339,340,340,342,321,321,321,321,321,321,322,51,51,51,19,35,67,35,3,67,51,19,35,51,3,3,35,19,3,51,51,51,51,51,51,51,108,46,61,78,51,51,51,51,51,51,339,340,340,341,51,51,51,51,51,51,51,51,76,62,45,110,51,51,51,51,51,3,35,67,19,3,51,19,35,19,67,19,19,67,35,67,35,51,35,67,51,35,19,3,67,19,51,51,51,3,51,51,51,3,19,35,35,67,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,339,340,342,321,321,321,343,341,51,51,51,67,3,51,67,35,51,67,67,19,19,35,35,35,51,3,51,51,51,51,51,51,51,51,108,46,61,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,45,110,51,51,295,295,51,51,3,35,19,67,51,51,19,3,19,67,3,67,51,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,19,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,340,341,51,51,51,51,51,3,51,35,51,35,35,3,51,67,35,51,51,35,19,51,51,51,51,51,51,51,51,51,92,45,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,45,109,110,51,51,295,295,295,51,51,3,67,51,67,67,19,3,19,67,51,51,67,19,3,51,51,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,19,35,3,67,51,3,3,35,3,67,67,3,35,19,19,51,51,51,51,51,301,302,303,51,92,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,295,295,295,295,295,51,67,35,19,19,76,77,78,35,67,19,67,3,51,19,35,51,51,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,295,295,295,295,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,3,51,51,19,51,3,51,51,19,67,35,19,51,35,51,51,51,51,51,301,323,321,322,51,92,94,51,295,295,295,51,51,51,51,51,51,51,51,295,295,295,51,92,94,51,51,295,295,295,295,51,51,51,51,51,51,92,93,94,51,51,51,51,51,51,51,67,51,51,295,295,51,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,295,295,295,295,295,295,295,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,35,35,51,3,67,35,3,51,35,51,35,19,51,51,51,51,51,320,321,321,322,51,92,94,51,295,51,51,51,51,301,302,302,303,51,51,51,51,295,51,92,61,77,77,77,77,77,77,77,77,77,77,77,77,62,93,94,51,51,51,51,51,51,35,3,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,546,51,51,51,51,547,548,548,548,549,51,51,51,51,51,51,51,51,51,51,51,67,51,3,19,3,67,19,19,35,51,51,51,67,19,51,51,51,51,51,320,321,343,341,51,92,94,51,295,51,51,51,51,320,321,321,324,303,51,51,51,295,51,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,110,51,51,51,51,51,51,3,19,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,546,51,51,51,295,295,295,295,295,295,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,547,550,567,567,567,551,548,549,51,51,51,51,51,51,51,51,51,19,35,35,67,76,77,78,35,19,19,35,51,51,51,51,51,51,51,51,339,340,341,51,51,92,94,51,51,51,51,51,51,320,321,321,321,324,303,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,51,51,51,295,295,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,546,51,51,566,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,3,67,51,51,92,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,546,51,51,51,51,339,342,321,321,321,324,303,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,546,51,51,51,51,566,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,19,51,51,51,92,93,61,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,62,94,51,51,51,51,51,51,51,320,321,321,321,321,324,303,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,568,51,51,69,70,71,51,51,51,67,19,51,51,108,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,109,46,94,51,51,51,51,51,51,51,339,342,321,321,321,321,324,303,51,51,51,51,51,51,51,51,51,51,3,67,3,51,35,35,3,67,67,67,19,19,51,3,67,19,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,585,569,567,567,567,567,567,568,51,51,85,86,87,51,51,51,51,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,339,342,321,321,321,321,322,51,51,51,51,51,51,51,51,51,51,67,35,67,3,19,19,51,19,3,3,3,19,3,19,19,67,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,570,587,51,51,85,86,87,51,51,51,35,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,339,340,342,321,321,322,51,51,51,51,51,51,51,51,51,51,67,67,51,3,19,3,51,35,19,67,3,51,19,35,3,67,51,51,51,51,51,51,51,51,51,51,51,51,547,548,548,548,548,548,549,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,568,51,51,51,101,102,103,51,51,51,3,19,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,94,51,51,51,51,51,51,51,51,51,51,51,339,340,340,341,51,51,51,51,51,51,51,51,51,51,3,51,3,19,35,67,3,67,51,51,35,19,19,51,67,67,35,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,51,585,569,567,567,570,587,51,51,51,51,51,51,51,51,51,35,67,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,62,61,78,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,67,19,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,92,93,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,3,19,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,567,568,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,69,70,70,71,51,51,51,51,51,51,51,51,51,51,51,51,35,67,67,3,51,51,51,51,51,3,3,19,51,3,51,67,51,3,51,51,51,51,51,92,93,93,94,51,51,51,51,51,19,19,67,35,3,3,51,35,19,51,51,35,51,51,51,51,51,51,51,35,67,51,51,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,295,295,51,51,51,85,86,86,99,70,70,71,51,51,51,51,295,295,51,51,51,3,3,3,51,51,51,51,51,51,51,35,19,51,19,35,19,51,67,3,51,51,51,51,92,93,93,94,51,51,51,51,3,19,67,67,51,19,19,3,51,3,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,295,295,295,295,51,51,85,86,86,86,86,86,99,71,51,51,295,295,295,295,295,51,35,19,3,3,3,51,19,3,19,3,51,35,3,67,67,19,35,67,51,35,19,67,51,92,93,93,94,51,67,19,51,35,67,51,3,35,19,19,51,3,67,19,67,67,67,67,19,3,3,3,51,35,67,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,570,587,51,51,51,51,51,51,51,51,51,51,51,51,519,425,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,295,295,295,295,295,295,51,85,86,86,86,86,86,86,87,51,51,295,295,295,295,295,51,3,19,35,35,51,35,51,67,67,67,51,67,67,51,67,67,35,67,35,35,19,51,51,92,93,93,94,51,51,19,67,51,67,19,51,67,51,67,51,67,35,51,35,3,3,51,51,19,3,35,51,51,3,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,519,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,295,295,295,295,295,295,51,101,84,86,86,86,86,86,99,51,51,295,295,295,295,51,51,67,35,19,3,3,67,35,35,35,19,51,51,51,51,51,51,51,19,67,51,3,67,51,92,93,93,94,51,35,3,67,3,67,51,51,51,51,51,51,51,51,51,67,35,35,67,67,3,3,67,35,51,35,35,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,295,295,295,295,295,295,51,51,51,101,102,102,102,102,102,103,51,51,51,295,295,51,51,51,19,35,35,51,3,51,3,35,51,35,3,35,51,51,51,51,3,67,35,19,3,67,51,92,93,93,94,51,19,19,51,67,51,35,51,51,51,51,51,51,51,51,19,51,19,67,51,67,67,35,19,3,67,35,51,51,51,51,51,546,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,35,67,67,51,51,295,295,295,295,295,295,51,51,51,51,51,51,295,295,295,51,35,51,92,93,93,94,51,51,51,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,19,19,3,19,51,51,51,51,51,51,51,51,51,51,51,51,51,51,69,70,70,71,51,51,51,51,585,586,569,567,567,567,567,567,567,568,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,262,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,51,295,51,51,3,51,92,93,93,94,51,337,51,51,295,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,85,86,86,99,70,70,71,51,51,51,585,586,569,567,567,567,570,587,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,262,264,281,286,264,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,76,62,93,93,61,78,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,85,86,86,86,86,86,99,71,51,51,51,51,585,586,586,586,587,51,51,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,354,3,3,3,3,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,548,548,548,549,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,92,93,93,93,93,94,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,85,86,86,86,86,86,86,87,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,539,425,520,3,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,262,281,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,546,51,546,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,92,93,93,93,93,94,51,51,51,51,51,51,51,51,51,69,70,71,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,101,84,86,86,86,86,86,99,71,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,539,520,3,3,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,108,109,109,109,109,110,51,51,51,51,51,51,51,51,51,85,86,87,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,547,548,548,548,549,51,51,51,51,51,51,85,86,86,86,86,86,86,99,71,51,51,51,51,51,51,301,302,302,302,303,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,567,551,548,548,548,549,51,51,51,51,51,51,51,546,51,51,51,51,301,302,302,303,301,302,302,302,302,303,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,85,86,87,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,551,548,548,549,51,51,51,85,86,86,86,86,86,86,86,99,71,51,51,51,301,302,323,321,321,321,324,302,303,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,546,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,551,549,546,51,51,51,51,51,51,51,51,301,302,323,321,321,324,323,321,321,321,321,322,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,101,102,103,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,547,550,567,567,567,567,567,567,567,551,548,549,51,85,86,86,86,86,86,86,86,86,87,51,51,51,320,321,321,321,321,321,321,321,324,303,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,546,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,568,51,546,51,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,321,322,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,568,51,101,84,86,86,86,86,86,86,86,87,51,51,51,320,321,321,321,321,321,321,321,321,322,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,301,323,321,321,321,321,321,321,321,321,321,343,341,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,301,302,302,303,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,568,51,51,101,102,102,102,99,86,86,86,87,51,51,51,320,321,321,321,321,321,321,321,321,322,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,301,323,321,321,321,321,321,321,321,321,343,340,341,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,301,302,302,303,301,302,323,321,321,324,303,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,101,102,102,102,103,51,51,51,339,342,321,321,321,321,321,321,321,322,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,546,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,320,321,321,321,321,321,321,343,340,340,341,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,320,321,321,324,323,321,321,321,321,321,324,303,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,342,321,321,321,321,322,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,569,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,320,321,321,321,321,321,343,341,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,321,324,303,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,551,549,547,548,548,549,51,51,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,322,51,51,51,51,51,51,286,267,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,320,321,321,321,321,321,322,51,51,51,51,51,51,51,51,51,51,51,51,519,425,425,425,425,520,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,321,321,322,51,51,51,51,51,585,586,569,567,567,567,567,567,567,567,567,551,550,567,567,551,549,51,51,51,51,51,51,51,51,51,51,51,51,320,321,321,321,321,322,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,51,295,295,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,339,342,321,321,343,340,341,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,716,718,1122,539,425,425,520,51,51,51,51,51,51,51,51,320,321,321,321,321,321,321,321,321,321,321,321,322,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,51,339,342,321,321,343,341,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,339,340,340,341,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,259,716,718,259,1122,1122,1122,539,425,425,520,51,51,51,51,51,339,342,321,321,321,321,321,321,321,321,321,321,324,303,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,339,340,340,341,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,295,295,295,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,570,587,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,259,716,718,259,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,339,340,340,340,342,321,321,321,321,321,321,321,322,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,354,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,585,569,567,567,567,567,567,567,567,570,587,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,259,716,718,259,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,339,340,342,321,321,321,321,321,324,303,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,551,548,549,51,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,585,586,586,569,567,567,567,570,587,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,259,716,718,259,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,339,342,321,321,321,321,321,322,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,567,567,551,548,549,51,51,51,546,51,51,51,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,585,586,586,586,587,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,716,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,339,340,342,321,321,321,322,51,51,546,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,551,549,51,51,51,51,51,51,51,51,51,51,546,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,295,295,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,51,51,51,51,51,51,51,51,519,425,538,1122,1122,1122,1122,1122,1122,716,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,339,340,340,340,341,51,51,51,51,51,51,51,51,585,569,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,546,546,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,700,766,765,702,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,566,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,569,567,567,567,567,567,567,567,567,567,567,567,567,567,570,587,51,51,51,51,51,51,51,546,51,51,51,51,365,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,295,51,51,51,51,51,51,51,519,425,538,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,586,586,586,569,567,567,567,567,567,567,567,567,568,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,295,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,569,567,567,567,567,567,570,587,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,295,295,295,295,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,585,586,586,586,586,586,587,51,51,546,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,546,51,519,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,520,51,51,51,51,51,51,51,51,51,51,51,51,519,520,51,51,51,51,51,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,520,51,51,51,51,51,546,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,520,51,51,51,51,51,51,51,51,519,538,539,520,51,51,51,51,51,51,51,51,51,519,425,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,520,51,51,51,51,51,51,51,51,519,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,520,51,51,51,519,425,538,1122,1122,539,425,520,51,51,51,51,519,425,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,425,425,425,425,425,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,539,425,425,425,538,1122,1122,1122,1122,1122,1122,539,425,425,425,425,538,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,
1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,716,717,717,718,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122,1122
</data>
</layer>
<layer id="2" name="Ground2" width="200" height="200">
@ -316,28 +327,28 @@
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,314,314,314,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,275,276,277,0,0,0,0,0,0,275,276,276,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1051,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,296,0,0,0,0,0,275,273,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,275,276,277,0,0,0,0,0,0,275,276,276,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,747,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,296,0,0,0,0,0,275,273,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,0,296,0,0,0,0,0,294,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,294,0,0,0,0,293,315,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,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,273,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,275,273,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,274,277,0,0,0,294,0,0,0,0,274,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,294,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,296,0,0,0,294,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,315,0,0,0,294,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,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,275,276,273,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,294,0,0,0,0,293,315,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,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,273,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,275,273,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,274,277,0,0,0,294,0,0,0,0,274,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,294,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,296,0,0,0,294,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,315,0,0,0,294,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,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,275,276,273,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,273,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,315,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,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,293,315,0,0,0,0,0,0,0,0,0,275,276,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,314,314,314,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,314,315,0,0,0,249,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,315,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,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,293,315,0,0,0,0,0,0,0,0,0,275,276,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,314,314,314,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,314,315,0,0,0,249,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,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,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,296,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,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,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,296,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,315,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,294,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,274,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -357,7 +368,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,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,314,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,275,273,0,0,274,277,0,0,0,0,0,0,210,0,194,0,225,0,1051,0,0,0,0,0,0,210,0,1051,0,290,291,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,275,273,0,0,274,277,0,0,0,0,0,0,210,0,194,0,225,0,747,0,0,0,0,0,0,210,0,747,0,290,291,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,296,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,0,296,0,0,0,0,0,245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -398,58 +409,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,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,272,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,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,1004,1006,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1020,1022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,700,702,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,716,718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,274,277,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309,310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,274,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,0,274,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,0,0,0,0,0,0,0,0,0,290,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,0,274,277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,276,277,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,276,276,277,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,292,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,273,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,273,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,313,314,314,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,276,273,0,0,0,0,0,296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,275,273,0,0,0,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1051,0,0,0,0,0,0,1051,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,747,0,0,0,0,0,0,747,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,0,0,0,0,293,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,313,314,314,314,314,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,0,0,1019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,0,0,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
</data>
@ -512,7 +523,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,18,18,18,18,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,33,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,18,18,17,17,18,17,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,34,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,32,31,32,32,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -536,7 +547,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,16,16,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,33,33,34,34,34,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,15,16,16,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
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,16,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,34,34,34,33,34,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,15,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
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,16,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,34,33,34,34,34,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
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,16,15,0,0,0,0,0,0,0,0,0,0,0,17,17,17,0,0,0,0,961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
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,16,15,0,0,0,0,0,0,0,0,0,0,0,17,17,17,0,0,0,0,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -546,7 +557,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,31,32,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,31,0,31,31,31,0,0,0,881,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,18,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,31,0,31,31,31,0,0,0,1009,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,18,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,31,32,32,31,32,31,31,32,0,0,0,0,0,0,17,18,17,17,0,0,0,0,0,0,0,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,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,18,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,32,31,32,31,32,31,32,31,0,0,0,0,0,0,0,17,17,18,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,18,18,17,18,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,18,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,18,18,18,18,18,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -572,11 +583,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,32,31,31,31,32,31,32,31,31,31,31,32,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,33,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,31,31,32,31,31,31,31,31,32,31,31,31,32,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,33,34,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,31,31,0,0,0,0,0,0,0,0,31,31,31,0,0,0,0,0,34,33,34,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,32,31,31,31,31,32,31,31,31,31,32,31,31,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,34,33,33,33,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,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,0,0,0,0,0,0,0,0,32,32,32,0,0,0,0,0,34,34,34,33,33,0,0,0,0,0,0,961,0,0,0,0,0,0,0,0,0,0,0,31,31,31,0,32,31,31,31,32,31,31,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,33,33,33,34,34,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,0,0,0,0,0,0,0,0,32,32,32,0,0,0,0,0,34,34,34,33,33,0,0,0,0,0,0,1089,0,0,0,0,0,0,0,0,0,0,0,31,31,31,0,32,31,31,31,32,31,31,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,33,33,33,34,34,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,31,0,0,0,0,0,0,0,0,0,0,31,32,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,31,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,33,34,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,32,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,31,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,33,33,33,33,33,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,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,32,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,34,33,33,34,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,34,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,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,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

File diff suppressed because it is too large Load diff

View file

@ -12,8 +12,12 @@
<property name="music" value="night-is-calling.ogg"/>
<property name="name" value="Northern Lights"/>
</properties>
<tileset firstgid="1" source="../tilesets/collision.tsx"/>
<tileset firstgid="3" source="../tilesets/icecave.tsx"/>
<tileset firstgid="1" name="collision" tilewidth="32" tileheight="32" tilecount="2" columns="2">
<image source="../graphics/tiles/collision.png" width="64" height="32"/>
</tileset>
<tileset firstgid="3" name="icecave" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../graphics/tiles/icecave.png" width="512" height="256"/>
</tileset>
<tileset firstgid="131" source="../tilesets/christmas.tsx"/>
<tileset firstgid="435" source="../tilesets/edges_black_rotated.tsx"/>
<layer id="2" name="Ground1" width="181" height="320">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.11.2" orientation="orthogonal" renderorder="right-down" width="90" height="70" tilewidth="32" tileheight="32" infinite="0" nextlayerid="10" nextobjectid="28">
<map version="1.10" tiledversion="1.11.1" orientation="orthogonal" renderorder="right-down" width="90" height="70" tilewidth="32" tileheight="32" infinite="0" nextlayerid="10" nextobjectid="28">
<properties>
<property name="background0image" value="graphics/images/ambient/aethyr.jpg"/>
<property name="background0parallax" value="1.0"/>
@ -12,8 +12,12 @@
<property name="name" value="Existential Frontier"/>
<property name="source" value="Moubootaur Legends"/>
</properties>
<tileset firstgid="1" source="../tilesets/collision.tsx"/>
<tileset firstgid="3" source="../tilesets/icecave.tsx"/>
<tileset firstgid="1" name="Collision" tilewidth="32" tileheight="32" tilecount="2" columns="2">
<image source="../graphics/tiles/collision.png" width="64" height="32"/>
</tileset>
<tileset firstgid="3" name="icecave" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../graphics/tiles/icecave.png" width="512" height="256"/>
</tileset>
<layer id="1" name="Ground1" width="90" height="70">
<data encoding="csv">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,30,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

View file

@ -13,14 +13,31 @@
<property name="name" value="Porthos - Frontier"/>
</properties>
<tileset firstgid="1" source="../tilesets/collision.tsx"/>
<tileset firstgid="3" source="../tilesets/ml/cabana_in_fada.tsx"/>
<tileset firstgid="59" source="../tilesets/lof/woodland_indoor.tsx"/>
<tileset firstgid="315" source="../tilesets/woodland_inn_2.tsx"/>
<tileset firstgid="635" source="../tilesets/woodland_inn_x3.tsx"/>
<tileset firstgid="715" source="../tilesets/lof/warp_gates.tsx"/>
<tileset firstgid="730" source="../tilesets/woodland_indoor.tsx"/>
<tileset firstgid="986" source="../tilesets/woodland_indoor_x3.tsx"/>
<tileset firstgid="1034" source="../tilesets/icecave.tsx"/>
<tileset firstgid="3" name="cabana_in_fada" tilewidth="32" tileheight="32" tilecount="56" columns="8">
<image source="../graphics/tiles/cabana_in_fada.png" width="256" height="224"/>
</tileset>
<tileset firstgid="59" name="woodland_indoor_extra" tilewidth="32" tileheight="32" tilecount="256" columns="16">
<image source="../graphics/tiles/lof/woodland_indoor_extra.png" width="512" height="512"/>
</tileset>
<tileset firstgid="315" name="woodland_indoor LoF" tilewidth="32" tileheight="32" tilecount="256" columns="16">
<image source="../graphics/tiles/lof/woodland_indoor.png" width="512" height="512"/>
</tileset>
<tileset firstgid="571" name="woodland_inn_2" tilewidth="32" tileheight="32" tilecount="320" columns="20">
<image source="../graphics/tiles/woodland_inn_2.png" width="640" height="512"/>
</tileset>
<tileset firstgid="891" name="woodland_inn_x3" tilewidth="32" tileheight="96" tilecount="80" columns="20">
<image source="../graphics/tiles/woodland_inn_x3.png" width="640" height="384"/>
</tileset>
<tileset firstgid="971" name="warp_gates" tilewidth="32" tileheight="96" tilecount="15" columns="15">
<image source="../graphics/tiles/lof/warp_gates.png" width="480" height="96"/>
</tileset>
<tileset firstgid="986" name="woodland_indoor" tilewidth="32" tileheight="32" tilecount="256" columns="16">
<image source="../graphics/tiles/woodland_indoor.png" width="512" height="512"/>
</tileset>
<tileset firstgid="1242" name="woodland_indoor_x3 LoF" tilewidth="32" tileheight="96" tilecount="48" columns="16">
<image source="../graphics/tiles/woodland_indoor_x3.png" width="512" height="288"/>
</tileset>
<tileset firstgid="1290" source="../tilesets/icecave.tsx"/>
<layer id="1" name="Ground1" width="110" height="50">
<data encoding="csv">
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
@ -34,31 +51,31 @@
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,3,10,7,7,7,5,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,145,146,147,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,11,18,15,15,15,13,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,345,345,327,328,329,345,47,47,47,47,47,47,47,47,47,161,162,163,47,47,173,173,173,47,173,173,173,47,173,173,173,47,173,173,173,47,35,36,36,36,36,37,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,345,347,348,349,345,47,47,47,47,47,47,47,47,47,161,162,163,173,173,173,47,173,173,173,47,173,47,173,47,173,173,173,47,173,173,40,40,40,40,40,40,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,367,368,369,47,47,47,47,47,47,47,47,47,47,161,162,163,47,47,47,47,47,47,47,47,173,173,173,47,47,47,47,47,47,47,40,40,40,40,40,40,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,345,47,47,47,47,47,47,47,47,47,47,157,177,178,179,157,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,40,40,40,40,40,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,157,157,157,157,157,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,40,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,730,730,730,59,59,763,59,59,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,730,47,59,59,59,59,59,59,730,59,59,59,59,59,59,59,59,59,59,61,59,99,100,99,101,99,100,99,47,47,59,59,59,140,59,59,47,730,730,730,730,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,746,746,746,75,75,763,75,75,746,746,746,746,746,746,746,746,746,746,746,746,746,746,746,746,746,746,746,47,75,75,75,75,75,75,746,75,75,75,75,75,75,75,75,75,75,77,75,115,116,115,117,115,116,115,47,47,75,75,75,156,75,75,47,746,746,746,746,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,762,762,762,763,763,763,763,763,762,762,762,695,696,704,704,701,704,704,702,704,704,701,704,704,702,704,704,47,762,762,762,762,762,762,762,762,762,762,762,91,91,91,91,91,91,91,91,131,131,131,131,131,131,131,47,47,91,91,91,91,91,91,47,762,762,762,762,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,763,763,763,763,763,763,763,763,345,365,344,344,366,345,345,346,364,344,345,345,346,346,364,346,346,346,366,763,763,763,763,763,763,763,763,763,763,93,92,93,93,93,93,92,92,92,92,92,92,92,92,763,763,47,92,92,92,92,92,92,47,763,763,763,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,763,763,763,763,763,763,763,763,345,345,364,346,364,345,345,345,345,345,344,345,344,366,365,365,365,364,365,346,344,763,763,763,763,763,763,763,763,763,93,92,93,93,92,93,92,92,92,92,92,92,92,763,763,763,47,47,92,92,92,92,47,47,763,47,47,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,763,763,763,763,763,47,47,47,47,345,345,345,346,47,47,47,345,364,345,345,345,346,345,344,365,345,365,346,366,344,365,763,763,763,763,763,763,763,763,93,92,93,92,92,93,92,92,92,92,92,92,92,763,763,763,763,47,47,92,92,47,47,763,763,47,47,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,763,763,763,763,763,763,47,47,345,345,345,366,364,47,366,365,364,344,366,364,366,365,344,344,344,346,365,365,345,346,366,365,763,763,763,763,763,47,47,47,93,92,92,93,93,92,92,92,92,92,92,763,763,763,763,763,763,47,47,47,47,763,763,763,763,763,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,47,47,763,763,763,763,763,345,345,345,345,345,365,345,47,346,365,344,344,346,344,345,364,345,345,344,344,345,345,345,345,365,364,345,763,763,763,763,763,47,47,47,93,92,93,93,92,92,92,92,92,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,47,47,763,763,763,763,345,345,345,345,345,345,346,47,47,47,364,344,365,346,345,346,346,365,345,345,366,345,345,345,345,346,344,346,366,763,763,763,763,763,47,47,47,93,93,93,92,92,92,92,763,763,763,763,763,763,763,763,763,763,763,763,763,763,763,1038,1038,1038,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,763,763,763,345,345,345,345,345,345,345,345,345,47,365,345,345,345,345,345,345,345,345,47,47,364,344,346,346,365,346,344,366,366,365,763,763,763,763,763,47,47,47,92,93,92,92,92,763,763,763,763,763,763,763,47,47,47,763,763,763,763,763,47,1038,1038,1038,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,763,763,345,345,345,345,345,345,345,345,364,364,47,344,345,344,364,366,366,346,47,47,47,365,345,365,344,344,344,365,365,344,345,344,345,763,763,763,763,763,47,47,47,93,92,92,763,763,763,763,763,763,47,47,47,47,47,763,763,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,763,763,763,345,345,345,345,345,345,345,345,345,345,346,47,365,346,364,364,346,365,47,47,47,47,346,366,346,346,364,344,344,345,344,365,345,366,365,763,763,763,763,763,47,47,47,92,763,763,763,763,763,763,763,47,47,47,47,763,763,763,763,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,401,402,403,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,11,18,15,15,15,13,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,601,601,583,584,585,601,47,47,47,47,47,47,47,47,47,417,418,419,47,47,429,429,429,47,429,429,429,47,429,429,429,47,429,429,429,47,35,36,36,36,36,37,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,601,603,604,605,601,47,47,47,47,47,47,47,47,47,417,418,419,429,429,429,47,429,429,429,47,429,47,429,47,429,429,429,47,429,429,40,40,40,40,40,40,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,623,624,625,47,47,47,47,47,47,47,47,47,47,417,418,419,47,47,47,47,47,47,47,47,429,429,429,47,47,47,47,47,47,47,40,40,40,40,40,40,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,601,47,47,47,47,47,47,47,47,47,47,413,433,434,435,413,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,40,40,40,40,40,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,413,413,413,413,413,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,40,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,986,986,986,315,315,1019,315,315,986,986,986,986,986,986,986,986,986,986,986,986,986,986,986,986,986,986,986,47,315,315,315,315,315,315,986,315,315,315,315,315,315,315,315,315,315,317,315,99,100,99,101,99,100,99,47,47,315,315,315,396,315,315,47,986,986,986,986,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1002,1002,1002,331,331,1019,331,331,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,1002,47,331,331,331,331,331,331,1002,331,331,331,331,331,331,331,331,331,331,333,331,115,116,115,117,115,116,115,47,47,331,331,331,412,331,331,47,1002,1002,1002,1002,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1018,1018,1018,1019,1019,1019,1019,1019,1018,1018,1018,951,952,960,960,957,960,960,958,960,960,957,960,960,958,960,960,47,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,1018,347,347,347,347,347,347,347,347,131,131,131,131,131,131,131,47,47,347,347,347,347,347,347,47,1018,1018,1018,1018,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,601,621,600,600,622,601,601,602,620,600,601,601,602,602,620,602,602,602,622,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,349,348,349,349,349,349,348,348,348,348,348,348,348,348,1019,1019,47,348,348,348,348,348,348,47,1019,1019,1019,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,601,601,620,602,620,601,601,601,601,601,600,601,600,622,621,621,621,620,621,602,600,1019,1019,1019,1019,1019,1019,1019,1019,1019,349,348,349,349,348,349,348,348,348,348,348,348,348,1019,1019,1019,47,47,348,348,348,348,47,47,1019,47,47,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,1019,1019,1019,1019,1019,47,47,47,47,601,601,601,602,47,47,47,601,620,601,601,601,602,601,600,621,601,621,602,622,600,621,1019,1019,1019,1019,1019,1019,1019,1019,349,348,349,348,348,349,348,348,348,348,348,348,348,1019,1019,1019,1019,47,47,348,348,47,47,1019,1019,47,47,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,1019,1019,1019,1019,1019,1019,47,47,601,601,601,622,620,47,622,621,620,600,622,620,622,621,600,600,600,602,621,621,601,602,622,621,1019,1019,1019,1019,1019,47,47,47,349,348,348,349,349,348,348,348,348,348,348,1019,1019,1019,1019,1019,1019,47,47,47,47,1019,1019,1019,1019,1019,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,47,47,1019,1019,1019,1019,1019,601,601,601,601,601,621,601,47,602,621,600,600,602,600,601,620,601,601,600,600,601,601,601,601,621,620,601,1019,1019,1019,1019,1019,47,47,47,349,348,349,349,348,348,348,348,348,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,47,47,1019,1019,1019,1019,601,601,601,601,601,601,602,47,47,47,620,600,621,602,601,602,602,621,601,601,622,601,601,601,601,602,600,602,622,1019,1019,1019,1019,1019,47,47,47,349,349,349,348,348,348,348,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1019,1294,1294,1294,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,1019,1019,1019,601,601,601,601,601,601,601,601,601,47,621,601,601,601,601,601,601,601,601,47,47,620,600,602,602,621,602,600,622,622,621,1019,1019,1019,1019,1019,47,47,47,348,349,348,348,348,1019,1019,1019,1019,1019,1019,1019,47,47,47,1019,1019,1019,1019,1019,47,1294,1294,1294,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,1019,1019,601,601,601,601,601,601,601,601,620,620,47,600,601,600,620,622,622,602,47,47,47,621,601,621,600,600,600,621,621,600,601,600,601,1019,1019,1019,1019,1019,47,47,47,349,348,348,1019,1019,1019,1019,1019,1019,47,47,47,47,47,1019,1019,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1019,1019,1019,601,601,601,601,601,601,601,601,601,601,602,47,621,602,620,620,602,621,47,47,47,47,602,622,602,602,620,600,600,601,600,621,601,622,621,1019,1019,1019,1019,1019,47,47,47,348,1019,1019,1019,1019,1019,1019,1019,47,47,47,47,1019,1019,1019,1019,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,939,939,940,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,938,939,940,47,47,47,47,955,955,956,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,954,955,955,955,955,955,955,955,955,956,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,954,955,955,955,955,955,955,955,955,956,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,970,971,971,971,971,971,971,971,971,972,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1195,1195,1196,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1194,1195,1196,47,47,47,47,1211,1211,1212,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1210,1211,1211,1211,1211,1211,1211,1211,1211,1212,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1210,1211,1211,1211,1211,1211,1211,1211,1211,1212,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,1226,1227,1227,1227,1227,1227,1227,1227,1227,1228,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,
@ -87,24 +104,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,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,543,544,545,544,545,0,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,562,563,564,565,564,565,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,582,583,584,585,584,585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,798,799,800,801,800,801,0,0,0,0,0,0,0,0,0,0,389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,818,819,820,821,820,821,0,0,0,0,0,0,0,0,0,0,405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,839,840,841,840,841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,41,33,0,0,0,0,0,0,0,0,0,0,0,0,435,436,0,0,140,0,0,0,0,118,0,103,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,87,0,0,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,456,0,0,156,0,0,0,0,134,0,119,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,143,987,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,143,143,143,143,143,172,990,990,989,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,145,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,0,41,33,0,0,0,0,0,0,0,0,0,0,0,0,691,692,0,0,396,0,0,0,0,374,0,359,0,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,0,87,0,0,0,87,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,711,712,0,0,412,0,0,0,0,390,0,375,0,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,143,1243,143,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,143,143,143,143,143,428,1246,1246,1245,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,145,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,148,149,0,0,0,0,0,0,160,161,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,164,165,0,0,0,0,0,0,176,177,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330,331,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,351,352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,370,371,372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,586,587,588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179,180,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,606,607,608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626,627,628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,1091,1075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1331,1347,1331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -142,29 +159,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,719,720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,724,725,726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,718,719,720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,975,976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,980,981,982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,974,975,976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,722,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,977,978,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,721,722,723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,977,978,979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,715,716,717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,971,972,973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -202,7 +219,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,0,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,0,0,170,170,170,170,170,170,0,170,170,170,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,0,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,0,0,426,426,426,426,426,426,0,426,426,426,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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
mods

@ -1 +1 @@
Subproject commit b41850de623d95edb42ec789503ef10d4837efa2
Subproject commit 502584b9aff0c932c74d140fe3fc55f81296ce4d

View file

@ -5,8 +5,4 @@
<mod name="Graveyard(original) - Ledz" description="Graveyard(original) - Ledz -- The original, lighter graveyard tiles" help="COPYING" localdir="mods/gy_original_ledz/" />
<mod name="Level Up - Ledz" description="Level Up - Ledz -- A longer and more noticeable sound and matching particle length" help="COPYING" localdir="mods/levelup_ledz/" />
<mod name="Pirate Cave Music - Ledz" description="Pirate Cave Music - Ledz -- candr2.ogg by Elite is used as the music for Pirate Caves" help="COPYING" localdir="mods/pirate_music_ledz/" />
<mod name="Moonshroom Hat particle off" description="Moonshroom Hat -- Disable the particle effect." help="COPYING" localdir="mods/mushroom_hat_moon_no_particle/" />
<mod name="Rainshroom Hat particle off" description="Rainshroom Hat -- Disable the particle effect." help="COPYING" localdir="mods/mushroom_hat_rain_no_particle/" />
<mod name="Snowshroom Hat particle off" description="Snowshroom Hat -- Disable the particle effect." help="COPYING" localdir="mods/mushroom_hat_snow_no_particle/" />
<mod name="Sunshroom Hat particle off" description="Sunshroom Hat -- Disable the particle effect." help="COPYING" localdir="mods/mushroom_hat_sun_no_particle/" />
</mods>

View file

@ -9,7 +9,7 @@
</monster>
<monster id="1003" name="Scorpion">
<sprite>monsters/scorpion.xml|#4d422d,826242,d8c282,ffffff</sprite>
<sprite>monsters/scorpion.xml|#423822,785838,d0b878,ffffff</sprite>
<sound event="hit">monsters/scorpion/scorpion-hit1.ogg</sound>
<sound event="hit">monsters/scorpion/scorpion-hit2.ogg</sound>
<sound event="hit">monsters/scorpion/scorpion-hit3.ogg</sound>
@ -351,7 +351,6 @@
<sprite>equipment/legs/chaps.xml</sprite>
<sprite>equipment/chest/warlordplate.xml</sprite>
<sprite>equipment/head/warlordhelm.xml</sprite>
<sprite>equipment/hands/generic.xml|#4e2e18,c8752f</sprite>
<sprite>equipment/weapons/dagger.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff</sprite>
<sound event="die">monsters/fallen/fallen-die1.ogg</sound>
<sound event="die">monsters/fallen/fallen-die2.ogg</sound>
@ -367,7 +366,7 @@
</monster>
<monster id="1046" name="Tame Scorpion">
<sprite>monsters/scorpion.xml|#4d422d,826242,d8c282,ffffff</sprite>
<sprite>monsters/scorpion.xml|#5d523d,927252,e8d292,ffffff</sprite>
<sound event="hit">monsters/scorpion/scorpion-hit1.ogg</sound>
<sound event="hit">monsters/scorpion/scorpion-hit2.ogg</sound>
<sound event="hit">monsters/scorpion/scorpion-hit3.ogg</sound>
@ -730,6 +729,7 @@
<monster id="1091" name="Blue Slime">
<sprite>monsters/slime.xml|#2121ae,ffffff</sprite>
<sprite>monsters/accessories/slime-littleslime.xml|#2121ae,ffffff</sprite>
<sound event="die">monsters/slime/slime-die1.ogg</sound>
<sound event="hit">monsters/slime/slime-hit1.ogg</sound>
<sound event="hurt">monsters/slime/slime-hurt1.ogg</sound>
@ -1699,8 +1699,8 @@
<sprite>monsters/bobone.xml</sprite>
</monster>
<monster id="1185" name="Wonder Woodling" targetCursor="large">
<sprite>monsters/wonderwoodling.xml</sprite>
<monster id="1185" name="Ent Abomination" targetCursor="large">
<sprite>monsters/ent.xml</sprite>
<sound event="hit">monsters/crocotree/die1.ogg</sound>
<sound event="hit">monsters/frostiana/hit1.ogg</sound>
<sound event="hit">monsters/shroom/shroom-hit1.ogg</sound>
@ -2095,19 +2095,6 @@
<sound event="move">monsters/slime-super/slime-super-move2.ogg</sound>
</monster>
<monster id="1237" name="Rainshroom">
<sprite>monsters/mushroom-rain.xml</sprite>
<particlefx>graphics/particles/monster-mushroom-rain.particle.xml</particlefx>
<attack id="1" missile-particle="graphics/particles/monster-mushroom-rain-attack.particle.xml" action="attack"/>
<sound event="hit">monsters/shroom/shroom-hit1.ogg</sound>
<sound event="hurt">monsters/shroom/shroom-hurt1.ogg</sound>
<sound event="die">monsters/shroom/shroom-die1.ogg</sound>
</monster>
<monster id="1238" name="Freddy" targetCursor="small">
<sprite>monsters/frog-big.xml</sprite>
</monster>
<!-- Mods should use the following code -->
<include name="mods/monsters.xml" />
</monsters>

View file

@ -239,8 +239,6 @@
<include name="npcs/npc435.xml"/>
<include name="npcs/npc436.xml"/>
<include name="npcs/npc441.xml"/>
<include name="npcs/npc447.xml"/>
<include name="npcs/npc448.xml"/>
<include name="npcs/npc800.xml"/>
<include name="npcs/npc801.xml"/>
<include name="npcs/npc802.xml"/>

View file

@ -1,6 +0,0 @@
<?xml version="1.0"?>
<npcs>
<npc id="447">
<sprite>npcs/portal_32x64-01.xml</sprite>
</npc>
</npcs>

View file

@ -1,6 +0,0 @@
<?xml version="1.0"?>
<npcs>
<npc id="448">
<sprite variant="0">npcs/teapot.xml</sprite>
</npc>
</npcs>

View file

@ -1,13 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<quests>
<include name="quests/argeas/alan.xml"/>
<include name="quests/argeas/bandit_bounty.xml"/>
<include name="quests/argeas/soup_and_slimes.xml"/>
<include name="quests/argeas/banu.xml"/>
<include name="quests/argeas/beheader.xml"/>
<include name="quests/argeas/celestia.xml"/>
<include name="quests/argeas/hinnak.xml"/>
<include name="quests/argeas/inspector.xml"/>
<include name="quests/argeas/jack.xml"/>
<include name="quests/argeas/katze.xml"/>
<include name="quests/argeas/soup_and_slimes.xml"/>
</quests>

View file

@ -1,37 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<quests>
<var id="29">
<!-- Alan -->
<effect map="009-2.tmx" npc="125" value="0" effect="45"/>
<effect map="009-2.tmx" npc="125" value="1,2,3,4" effect="46"/>
<!-- Jack should show a '?' for '1', but it conflicts with his own quest -->
<quest name="Forest Bow" group="Argeas" incomplete="1">
<name>Forest Bow</name>
<text>Ask Jack why he can't deliver logs to Alan.</text>
</quest>
<quest name="Forest Bow" group="Argeas" incomplete="2">
<name>Forest Bow</name>
<text>Return to Alan with Jack's explanation.</text>
</quest>
<quest name="Forest Bow" group="Argeas" incomplete="3">
<name>Forest Bow</name>
<text>Bring Alan Raw Logs for a forest bow.</text>
<text/>
<text>Raw Logs can be collected from Log Heads southeast of Hurnscald.</text>
</quest>
<quest name="Forest Bow" group="Argeas" incomplete="4">
<name>Forest Bow</name>
<text>Bring Alan 10,000 GP for a Forest Bow.</text>
</quest>
<quest name="Forest Bow" group="Argeas" complete="5">
<name>Forest Bow</name>
<text>You helped Alan make a Forest Bow.</text>
</quest>
</var>
</quests>

View file

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<quests>
<var id="26">
<!-- Lena -->
<effect map="009-2" npc="182" value="0" effect="45"/>
<effect map="009-2" npc="182" value="1,2,5" effect="46"/>
<!-- Bryant -->
<effect map="009-2" npc="182" value="3" effect="46"/>
<quest name="Bandit Bounty" group="Argeas" incomplete="1">
<name>Bandit Bounty</name>
<text>Bring Lena 10 Bandit Hoods.</text>
</quest>
<quest name="Bandit Bounty" group="Argeas" incomplete="2">
<name>Bandit Bounty</name>
<text>Talk to Lena about the growing bandit threat.</text>
</quest>
<quest name="Bandit Bounty" group="Argeas" incomplete="3">
<name>Bandit Bounty</name>
<text>Find a way into the bandit leader's hideout.</text>
</quest>
<quest name="Bandit Bounty" group="Argeas" incomplete="4">
<name>Bandit Bounty</name>
<text>Use the key to enter the bandit leader's hideout.</text>
</quest>
<quest name="Bandit Bounty" group="Argeas" incomplete="5">
<name>Bandit Bounty</name>
<text>Return to Lena with the news of your success.</text>
</quest>
<quest name="Bandit Bounty" group="Argeas" complete="6">
<name>Bandit Bounty</name>
<text>You eliminated the bandits near Hurnscald.</text>
</quest>
</var>
</quests>

View file

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<quests>
<var id="28">
<effect map="008-1.tmx" npc="142" value="0" effect="45"/>
<effect map="008-1.tmx" npc="142" value="1" effect="46"/>
<quest name="Hinnak" group="Argeas" incomplete="1">
<name>Hinnak</name>
<text>Hinnak asked for 10 Pink Antennas.</text>
</quest>
<quest name="Hinnak" group="Argeas" complete="2">
<name>Hinnak</name>
<text>You gave Hinnak 10 Pink Antennas, and received a scythe as reward.</text>
</quest>
</var>
</quests>

View file

@ -1,97 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<quests>
<var id="32">
<!-- Inspector -->
<effect map="009-2.tmx" npc="150" value="0" effect="45"/>
<effect map="009-2.tmx" npc="150" value="3,5,8,12,14" effect="46"/>
<!-- Old Woman -->
<effect map="009-1.tmx" npc="154" value="2,7,9" effect="46"/>
<!-- Old Man -->
<effect map="009-1.tmx" npc="159" value="6" effect="46"/>
<!-- Malek -->
<effect map="018-2.tmx" npc="109" value="10" effect="46"/>
<!-- Troupe Leader -->
<effect map="002-2.tmx" npc="165" value="4,13" effect="46"/>
<!-- books & unrelated NPCs aren't given icons, and values 1 and 11 don't either -->
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="1">
<name>Robberies In Hurnscald</name>
<text>Ask the residents of Hurnscald about the recent robberies.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="2">
<name>Robberies In Hurnscald</name>
<text>The Old Woman will only talk to the Inspector. Or someone who looks like him.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="3">
<name>Robberies In Hurnscald</name>
<text>Tell the Inspector about the person with a theater mask.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="4">
<name>Robberies In Hurnscald</name>
<text>Ask the Troupe Leader in Tulimshar about the robberies.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="5">
<name>Robberies In Hurnscald</name>
<text>Tell the Inspector about the Old Man.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="6">
<name>Robberies In Hurnscald</name>
<text>Ask the Old Man what he was doing near the theater.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="7">
<name>Robberies In Hurnscald</name>
<text>Verify the Old Man's alibi with the Old Woman.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="8">
<name>Robberies In Hurnscald</name>
<text>Tell the Inspector about the Old Man's alibi.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="9">
<name>Robberies In Hurnscald</name>
<text>Ask around Hurnscald for more information about the robberies.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="10">
<name>Robberies In Hurnscald</name>
<text>Follow the Old Woman's lead north of Hurnscald.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="11">
<name>Robberies In Hurnscald</name>
<text>Investigate the basement of the mining camp.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="12">
<name>Robberies In Hurnscald</name>
<text>Return to the Inspector with the mask and the note.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="13">
<name>Robberies In Hurnscald</name>
<text>Return the stolen mask to the Troupe Leader.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" incomplete="14">
<name>Robberies In Hurnscald</name>
<text>Talk to the Inspector to conclude the investigation.</text>
</quest>
<quest name="Robberies In Hurnscald" group="Argeas" complete="15">
<name>Robberies In Hurnscald</name>
<text>You helped the Inspector recover stolen items.</text>
</quest>
</var>
</quests>

View file

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<quests>
<var id="30">
<!-- Jack -->
<effect map="009-1.tmx" npc="141" value="0" effect="45"/>
<effect map="009-1.tmx" npc="141" value="1,2" effect="46"/>
<quest name="Wooden Shield" group="Argeas" incomplete="1">
<name>Wooden Shield</name>
<text>Ask Jack about his offer for a Wooden Shield.</text>
</quest>
<quest name="Wooden Shield" group="Argeas" incomplete="2">
<name>Wooden Shield</name>
<text>Bring Jack 40 Raw Logs and 5,000 GP for a Wooden Shield.</text>
</quest>
<quest name="Wooden Shield" group="Argeas" complete="3">
<name>Wooden Shield</name>
<text>You helped Jack make a Wooden Shield.</text>
</quest>
</var>
</quests>

View file

@ -1,87 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<quests>
<var id="31">
<!-- There is no '0' value, as the quest begins when you enter the cave -->
<!-- Katze -->
<effect map="015-3.tmx" npc="172" value="1,3,5,6,7,9,10,11,12" effect="46"/>
<!-- Pot -->
<effect map="015-3.tmx" npc="400" value="1,3,5,7" effect="46"/>
<!-- Alice: clues in the player about what the cat needs -->
<effect map="015-1.tmx" npc="106" value="1,2,3,4,5,6,7,8,9" effect="46"/>
<quest name="Mad Katze" group="Argeas" incomplete="1">
<name>Mad Katze</name>
<text>The strange cat doesn't like you. What could you give her to help her warm up to you?</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="2">
<name>Mad Katze</name>
<text>Give the strange cat privacy to drink the milk.</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="3">
<name>Mad Katze</name>
<text>The strange cat liked the milk. Maybe she's hungry as well?</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="4">
<name>Mad Katze</name>
<text>Give the strange cat privacy to eat.</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="5">
<name>Mad Katze</name>
<text>The strange cat is warming up to you! Maybe she'd like to play with something?</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="6">
<name>Mad Katze</name>
<text>The strange cat can talk! What else can she say?</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="7">
<name>Mad Katze</name>
<text>The talking cat asked for something to scratch her claws on.</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="8">
<name>Mad Katze</name>
<text>Give the strange cat privacy to scratch her claws.</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="9">
<name>Mad Katze</name>
<text>What a curious experience, finding a talking cat. What else can she say?</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="10">
<name>Mad Katze</name>
<text>The talking cat wants to make you a present, but needs:</text>
<text/>
<text> 2 Snake Skins</text>
<text> 2 Snake Tongues</text>
<text> 2 Insect Slimes</text>
<text> 2 White Furs</text>
<text> 2 Hard Spikes</text>
<text> 2 Tiny Healing Potions</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="11">
<name>Mad Katze</name>
<text>Give the talking cat privacy to make a present for you.</text>
</quest>
<quest name="Mad Katze" group="Argeas" incomplete="12">
<name>Mad Katze</name>
<text>The talking cat has a present for you!</text>
</quest>
<quest name="Mad Katze" group="Argeas" complete="13">
<name>Mad Katze</name>
<text>You befriended a talking cat, and she made you a pair of cat ears.</text>
</quest>
</var>
</quests>

View file

@ -3,7 +3,6 @@
<include name="quests/candor/tutorial.xml"/>
<include name="quests/candor/hasan.xml"/>
<include name="quests/candor/valon.xml"/>
<include name="quests/candor/morgan.xml"/>
<include name="quests/candor/zegas.xml"/>
<include name="quests/candor/vincent.xml"/>
<include name="quests/candor/hide-n-seek.xml"/>

View file

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<quests>
<var id="3">
<effect map="029-2.tmx" npc="355" value="0" effect="45"/>
<effect map="029-2.tmx" npc="355" value="1,2,3" effect="46"/>
<quest name="The Sorcerer's Apprentice" group="Candor Island" incomplete="1">
<name>The Sorcerer's Apprentice</name>
<text>Speak to Morgan in Candor to learn the basics of magic.</text>
</quest>
<quest name="The Sorcerer's Apprentice" group="Candor Island" incomplete="2">
<name>The Sorcerer's Apprentice</name>
<text>A wand? Well, give it a wave!</text>
</quest>
<quest name="The Sorcerer's Apprentice" group="Candor Island" incomplete="3">
<name>The Sorcerer's Apprentice</name>
<text>Talk to Morgan again.</text>
</quest>
<quest name="The Sorcerer's Apprentice" group="Candor Island" complete="4">
<name>The Sorcerer's Apprentice</name>
<text>You learned a basic wand attack from Morgan.</text>
</quest>
</var>
</quests>

View file

@ -4,5 +4,4 @@
<include name="quests/kaizei/cindy.xml"/>
<include name="quests/kaizei/baktar.xml"/>
<include name="quests/kaizei/blue_sage.xml"/>
<include name="quests/kaizei/furquest.xml"/>
</quests>

Some files were not shown because too many files have changed in this diff Show more